@font-face {
    font-family: 'Noto Sans SC';
    font-weight: 300;
    src:url('./fonts/SourceHanSansCN-Regular-Alphabetic.woff') format('woff'),
        url('./fonts/SourceHanSansCN-Regular-Alphabetic.woff2') format('woff2');
    font-display: swap;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #333;
    background-color: #fff;
    font-family: 'Noto Sans SC', sans-serif;
    font-family: 'Source Han Sans SC', 
    -apple-system, 
    BlinkMacSystemFont, 
    'Segoe UI', 
    'Microsoft YaHei', 
    sans-serif;
}

.container {
    width: 1440px;
    margin: 0 auto;
    padding: 0 15px;
}

/* 当屏幕宽度小于等于1440px时 */
@media screen and (max-width: 1440px) {
    .container {
        width: 100%;
        max-width: 1440px;
    }
}

.nav-container {
    width: 100%;
    margin: 0 auto;
    padding: 0 0.78rem 0 0.98rem;
    position: relative;
}

/* 导航栏 */
.header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-bottom: 2px solid #E8E8E8;
    position: relative;
}

.nav-bg {
    position: relative;
    width: 100%;
    height: 24px;
    background: #313332;
}
@media (max-width: 1025px) {
    .nav-bg{
        display: none;
    }
}
.switch {
    position: absolute;
    right: 78px;
    height: 24px;
    display: flex;
    align-items: center;
}

.switch-item {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    transition: background-color 0.3s;
    position: relative;
    align-items: center;
}
.switch-item img{
    width: 0.12rem;
}
.switch-item:hover {
    background-color: #FFFFFF;
    color: #313332;
}

.switch-item:hover .s-txt {
    color: #313332;
}

.switch-item .layui-icon-down,
.switch-item .layui-icon-up {
    font-size: 10px !important;
    margin-left: 4px !important;
}

.s-txt {
    margin-left: 4px;
    font-weight: 400;
    font-size: 12px;
    color: #FFFFFF;
    line-height: normal;
}

.nav {
    position: relative;
    display: flex;
    align-items: center;
    height: 80px;
}

.opt {
    display: flex;
    align-items: center;
    /* position: absolute;
    right: 0; */
}

.opt img {
    margin-left: 24px;
    width: 32px;
    height: 32px;
}

.logo img {
    /* width: 146px;
    height: 48px; */
    width: 1.46rem;
    height: 0.48rem;
}

.logo a img {
    border: 0;
    outline: 0;
    box-shadow: none;
    display: block;
}

.nav-menu {
    /* margin-left: 1.6rem; */
    display: flex;
    list-style: none;
    flex: 1;
    justify-content: center;
    -webkit-transition: all .3s;
    transition: all .3s;
    overflow: visible;
}
.nav-hide {
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    visibility: hidden;
}
.nav-menu li {
    margin-left: 0.8rem;
}
@media (min-width: 1026px) and (max-width: 1440px){
    .nav-menu li {
        margin-left: 0.4rem;
    }

    /* .nav-menu {
        margin-left: 0.8rem;
    } */
}
/* 小于1440px时调整 */
/* @media screen and (max-width: 1440px) {
    .nav-menu li {
        margin-left: 40px;
    }

    .nav-menu {
        margin-left: 126px;
        display: flex;
        list-style: none;
    }

} */

.nav-menu a {
    text-decoration: none;
    font-weight: 400;
    font-size: 0.2rem;
    color: #313332;
    padding: 10px 0;
    position: relative;
}

.nav-menu a:hover {
    color: #2ecc71;
}

.nav-menu a:after {
    content: '';
    position: absolute;
    bottom: -18px;
    left: 0;
    width: 0;
    height: 4px;
    background-color: #2ecc71;
    transition: width 0.3s;
}
.nav-menu .clickLi a:after {
    width: 100% !important;
}

.nav-menu a:hover:after {
    width: 100%;
}

/* 主视觉区 */
.banner {
    width: 100%;
    overflow: hidden;
    position: relative;
    justify-content: center;
    display: flex;
    align-items: center;
    text-align: center;
    color: #fff;
}

.banner img {
    width: 100%;
    object-fit: cover;
    height: auto;
}

.kefu {
    position: fixed;
    right: 0;
    bottom: 200px;
    width: 0.64rem;
    height: 0.64rem;
    background: #0AD69E;
    border-radius: 0.1rem 0px 0px 0.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.kefu img {
    width: 0.48rem;
    height: 0.48rem;
}
@media (max-width: 1024px) {
    .kefu {
        width: 1rem;
        height: 1rem;  
    }   
}
.banner-content {
    width: 100%;
}

.banner h1 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 700;
}

.banner p {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto 40px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #2ecc71;
    color: #fff;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #27ae60;
}

/* 页脚 */
.footer {
    background-color: #333;
    color: #fff;
    padding: 50px 0 20px;
}

.footer-content {
    display: flex;
    margin-bottom: 40px;
}


.footer-column h3 {
    width: 80px;
    margin-bottom: 20px;
    margin-right: 100px;
    font-weight: 500;
    font-size: 16px;
    color: #FFFFFF;
    line-height: 24px;
}

/* 当屏幕宽度小于等于1440px时 */
@media screen and (max-width: 1440px) {
    .footer-column h3 {
        margin-right: 60px;
    }
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    font-weight: 400;
    font-size: 14px;
    color: #737877;
    line-height: 24px;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #2ecc71;
}

.news-title a:hover {
    color: #2ecc71;
}


.contact-info {
    color: #ccc;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info p {
    margin-bottom: 24px;
    display: flex;
    align-items: center;
}

.contact-info p img {
    margin-right: 10px;
    width: 0.24rem;
    object-fit: cover;
}

.copyright {
    width: 100%;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
    font-size: 14px;
    color: #999;
}

.white {
    color: white !important;
}

.mt40 {
    margin-top: 80px;
}

.s-t1 {
    font-weight: 400;
    font-size: 14px;
    color: #737877;
    line-height: 24px;
}

.s-t2 {
    font-weight: 400;
    font-size: 24px;
    color: #939997;
    line-height: 24px;
}

.s-t3 {
    font-weight: 400;
    font-size: 16px;
    color: #737877;
    line-height: 24px;
}

.gzh {
    margin-left: 50px;
    margin-top: 25px;
}

.article-title {
    font-weight: 500;
    font-size: 32px;
    color: #313332;
    line-height: 48px;
    margin-top: 1rem;
    text-align: center;
}

.article-desc {
    margin-top: 24px;
    margin-bottom: 30px;
    display: flex;
    font-weight: 400;
    font-size: 20px;
    color: #737877;
    line-height: 48px;
   justify-content: center;
}

.article-desc .article-time {
    margin: 0 80px;
}

.article-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 1440px;
    margin: 0 auto;
    padding: 80px 0;
}
@media (max-width: 1025px) {
    .article-title {
        font-weight: 500;
        font-size: 0.44rem;
        color: #313332;
        line-height: 0.68rem;
        padding-top: 0.64rem;
        padding-bottom: 0.4rem;
        text-align: center;
        margin-top: 0;
    }
    .article-desc {
        display: flex;
        flex-direction: row;
        font-weight: 400;
        font-size: 0.28rem;
        color: #737877;
        line-height: 0.56rem;
        flex-wrap: wrap;
        margin-top: 0;
        margin-bottom: 0.4rem;
    }
    .article-desc .article-time {
        margin: 0;
        margin-right: 0.64rem;       
    }
    .click-box{
        width: auto;
    }
    .zuozhe{
        width: auto;
        margin-right: 0.64rem;
    }
    .banner-details-news .layui-carousel{
       position: relative;
    }
    .banner-text-details{
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        text-align: left;
    }
    .banner-text-details p:nth-child(1){
        font-size: 0.36rem;
        line-height: 0.36rem;
        max-width:none;
        margin: 0;
        margin-left: 2.5%;
    }
    .banner-text-details p:nth-child(2){
        font-weight: 400;
        font-size: 0.24rem;
        color: #FFFFFF;
        margin: 0;
        margin-top: 0.32rem;
        margin-left: 2.5%;
    }
}
.article-container img {
    max-width: 100%;
    height: auto;
    display: block;
}

.article-content img {
    width: 100%;
    height: auto;
    display: block;   
}
.article-content video{
    width: 100% !important;
}


.language-switcher {
    position: relative;
    display: inline-block;
}

.language-icon {
    width: 14px;
    height: 14px;
    margin-right: 4px;
}

.dropdown-arrow {
    width: 14px;
    height: 14px;
    margin-left: 4px;
    transition: transform 0.3s ease;
}

.language-trigger {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: 400;
    font-size: 12px;
    color: #FFFFFF;
    padding: 8px;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.layui-icon-down,
.layui-icon-up {
    font-size: 10px !important;
    margin-left: 4px !important;
}

.language-trigger:hover,
.language-switcher:hover .language-trigger {
    background-color: #FFFFFF;
    color: #313332;
}

.language-trigger span {
    margin-left: 4px;
    line-height: normal;
}

.language-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    width: 127px;
    background-color: #000000;
    border-radius: 10px;
    opacity: 0.68;
    visibility: hidden;
    transform: translateY(-5px);
    transition: all 0.3s ease;
    z-index: 1000;
    margin-top: 2px;
}

.language-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-option {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px 15px;
    font-weight: 400;
    font-size: 16px;
    color: #FFFFFF;
    line-height: 28px;
    cursor: pointer;
    transition: background-color 0.2s;
    position: relative;
}

.language-option:hover {
    background-color: #34495e;
}

.group-site {
    display: flex;
    max-width: 11920px;
    height: 176px;
    background: #F4F7F6;
}

.layui-icon-right {
    color: #09C788 !important;
    font-size: 14px !important;
    margin-top: 2px;
}

.site-item {
    width: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.s-i-head {
    display: flex;
    align-items: center;
}

.s-i-txt {
    margin: 0 8px;
    font-weight: 500;
    font-size: 20px;
    color: #323333;
    line-height: 48px;
}

.s-i-desc {
    margin-left: 20px;
    height: 48px;
    font-weight: 400;
    font-size: 16px;
    color: #737877;
    line-height: 48px;
}

.s-i-desc2 {
    margin-left: 10px;
    height: 48px;
    font-weight: 400;
    font-size: 16px;
    color: #737877;
    line-height: 48px;
}

.group-site {
    width: 100%;
    margin: 0 auto;
    padding: 0 78px 0 98px;
}

.switch-item.hover {
    background-color: #FFFFFF;
    color: #313332;
}

.switch-item.hover .s-txt {
    color: #313332;
}

.content-box {
    width: 100%;
    position: relative;
}

.nav-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    background: #F4F7F6;
    padding: 12px 260px 32px 240px;
    display: flex;
    flex-direction: column;
    z-index: 999999;
}

.other-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    background-color: rgb(0, 0, 0);
    opacity: 0.6;
    display: none;
}

.l-i-head {
    width: 100%;
    height: 120px;
    position: relative;
    display: flex;
    align-items: center;
}

.l-i-title {
    font-weight: 400;
    font-size: 32px;
    color: #313332;
}

.l-i-line {
    width: 640px;
    height: 1px;
    background: #E8E8E8;
}

.close-me {
    position: absolute;
    font-size: 24px;
    top: 0;
    right: 0;
}

.l-i-content {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    font-weight: 400;
    font-size: 20px;
    line-height: 48px;
    color: #737877;
}

.l-i-content a:hover {
    color: #09BD81;
}

#translate {
    display: none;
}

.honor-search {
    margin-top: 30px;
    width: 720px;
    height: 68px;
    background: #FFFFFF;
    border-radius: 32px;
    border: 1px solid #09BD81;
    position: relative;
    display: flex;
    align-items: center;
}

@media screen and (max-width: 1440px) {
    .honor-search {
        width: auto;
    }

}

.honor-input {
    margin-left: 32px;
    width: 450px;
    height: 68px;
    display: flex;
    align-items: center;
}

.honor-input input {
    border: none;
    outline: none;
    width: 450px;
    font-weight: 400;
    font-size: 20px;
    line-height: 48px;
}

.search-btn {
    position: absolute;
    right: 2px;
    width: 158px;
    height: 58px;
    background: #09BD81;
    border-radius: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 400;
    font-size: 26px;
    color: #FFFFFF;
    cursor: pointer;
}

.no-more-data {
    display: none;
    text-align: center;
    padding: 20px;
    color: #999;
}

.loading-indicator {
    display: none;
    text-align: center;
    padding: 20px;
}
.flex-container{
    display: flex;
    flex-wrap: wrap;   
 }
 .flex-item{
    width: 240px;
    height: 292px;
    border-radius: 16px;
    background-color: #fff;
    margin-left: 24px;
    margin-top: 20px;
    color: #313332;  
}
.flex-a{
    display: flex;
    width: 100%;
    height: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-color: #D8D8D8;
    border-radius: 0.16rem;   
 }
 .flex-a img{
    width: 72px;
    height: 72px;
}
.flex-a .flex-text{
    font-weight: 400;
    font-size: 20px;
    color: #313332;
    margin-top: 24px;
}
.flex-a .view{
    width: 72px;
    height: 32px;
    text-align: center;
    line-height: 32px;
    background: #FFFFFF;
    border-radius: 4px;
    /* border: 1px solid #D8D8D8; */
    margin-top: 48px;
    color: inherit;
    border-color: inherit;
    border-style: solid;
    border-width: 1px;
}
.flex-a:hover{
    background-image: url('../images/base/navClick.png');
    background-size: 110%;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: 0px 0px 6px 1px rgba(0,0,0,0.06);
    color: #09BD81; 
    border-color: #09BD81;   
}
/* .view{
    border: 1px solid #09BD81;
    
} */
.layui-carousel-ind ul li.layui-this{
    background-color: #313332;
    width: 32px;
    border-radius: 5px;
    margin-left: 0px;
}
.layui-carousel-ind ul{
    background-color: rgba(0, 0, 0, 0);
    position: relative;
}
.layui-carousel-ind ul li{
    margin: 0 12px;
    background-color: rgba(49, 51, 50, 0.2);
    position: absolute;
    top: 0;
    left: 0;
}
.layui-carousel-ind ul li:nth-child(2){
   left: 60px;
}
.layui-carousel-ind ul li:nth-child(3){
    left: 120px;
 }
.layui-carousel-ind{
    top: -60px;
}
.layui-carousel-ind ul:hover {
    background-color: rgba(0, 0, 0, 0);
}

/* 响应式导航 */
.nav-container-sm{
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99999999;
    width: 100%; 
    background-color: #fff;
    box-shadow: 2px 0 10px rgba(0, 0, 0, .2);
}
.nav-container-zIndex{
    z-index: 9999999;
}
#ID-demo-sm .grid-demo{
    /* box-shadow: 0px 0px 6px 1px rgba(0,0,0,0.06); */
    background-color: #fff;
    border-radius: 0.2rem;
    padding: 0.6rem 0;
    display: block;
}
#ID-demo-sm .layui-col-space1>* {
    padding: 0.15rem;
}
.layui-layer-page .layui-layer-content{
    overflow: auto;
}
.nav-sm-img{
    width: 25%;
    margin: auto;
    img{
        width: 100%;
    }
}
.nav-sm-text{
    font-size: 0.18rem;
    text-align: center;
    margin-top: 0.2rem;
}
.layui-collapse .layui-icon-right {
    color: #333 !important;
    font-size: 0.24rem !important;
    margin-top: -0.12rem;
    left: auto;
    right: 0.2rem;
}
.layui-collapse  .layui-colla-title{
    padding: 0 0.2rem;
    background-color: #fff;
    height: 0.95rem;
    line-height: 0.95rem;
}
.layui-collapse .layui-colla-item.layui-show>.layui-colla-content {
    background-color: #F4F7F6;
}
.layui-collapse  .layui-colla-item{
    border-color: #E8E8E8;
}
.nav-href{
    display: flex;
    width: 100%;
    height: 100%;
}
.nav-sm-flex{
    display: flex;
    flex-direction: row;
    align-items: center;
    height: 1.28rem;       
}
.nav-sm-logo{
    flex: 1;
    padding: 0 0.2rem;   
}
.nav-sm-logo img{
    width: 2rem;
    /* height: 0.48rem; */
}
.nav-sm-user{
    margin-left: 0.18rem;
}
.nav-sm-search,.nav-sm-user{
    width: 0.65rem;
    height: 0.65rem;    
}
.nav-sm-search img,.nav-sm-user img{
    width: 100%;
    object-fit: cover;
}
.nav-sm-flex button.navbar-toggle {
    height: 34px;
    margin-bottom: 16px;
    margin-top: 16px;
    width: 44px;
    border: none;
    background-color: transparent;
    position: relative;
    margin-left: 0.3rem;
}
.navbar-toggle .icon-bar {
    border-radius: 1px;
    display: block;
    height: 2px;
    width: 22px;
    background-color: #333;
}
.nav-sm-flex button.navbar-toggle.collapsed .icon-bar {
    margin: 4px 0 0;
    position: static
}
.nav-sm-flex button.navbar-toggle.collapsed .icon-bar:nth-child(1) {
    margin-top: 0;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0)
}
 
.nav-sm-flex button.navbar-toggle.collapsed .icon-bar:nth-child(2) {
    opacity: 1
}
.nav-sm-flex button.navbar-toggle.collapsed .icon-bar:nth-child(3) {
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0)
}
.nav-sm-flex button.navbar-toggle .icon-bar {
    left: 50%;
    margin-left: -11px;
    margin-top: -1px;
    position: absolute;
    top: 50%
}
.nav-sm-flex button.navbar-toggle .icon-bar:nth-child(1) {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg)
}

.nav-sm-flex button.navbar-toggle .icon-bar:nth-child(2) {
    opacity: 0
}

.nav-sm-flex button.navbar-toggle .icon-bar:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg)
}
.search-padding{
    background-color: #fff;
    height: 100vh;   
}
.history-item-box{
    padding: 0 2.5%;
    display: flex;
    flex-flow: row wrap; /* 主轴为水平方向，并允许换行 */
}
.history-item{
    padding: 0.05rem 0.1rem;
    border: #ccc solid 1px;
    border-radius: 0.05rem;
    margin-top: 0.2rem;
    margin-left: 0.2rem;
    cursor: pointer;
}
.search-sm-item{
    display: flex;
    flex-direction: row;
    height: 1.28rem;
    align-items: center;
    padding: 0 2.5%;
    box-shadow: 2px 0 10px rgba(0, 0, 0, .2);   
}
.search-sm-item .search-input{
    flex: 1;  
}
.search-sm-item .search-sm-icon{
    width: 0.6rem;
    text-align: right;
    cursor: pointer;    
}
.search-sm-item .search-sm-icon .layui-icon{
    font-size: 0.4rem;
}

.history-title-box{
    display: flex;
    align-items: center;
    padding: 0 2.5%;  
}
.history-title-box .history-title{
    font-size: 0.32rem;
    color: #333;
    font-weight: 700;
    position: relative;
    flex: 1;
}
.history-title-box .history-icon{
    width: 20px;
    cursor: pointer;    
}
.history-title-box .history-icon .layui-icon{
    font-size: 0.25rem; 
    color: rgb(102, 102, 102);
}
.history-title-box .history-clear{
    cursor: pointer;
    font-weight: 400;
    font-size: 0.32rem;
    color: rgb(102, 102, 102);
    margin-left: 0.1rem;
}
@media (max-width: 1025px) {
    .history-title-box .history-icon .layui-icon{
        font-size: 0.4rem; 
        color: rgb(102, 102, 102);
    }
    .history-title-box{
        margin-top: 0.2rem;   
    }
    .nav-sm-text{
        font-weight: 400;
        font-size: 0.32rem;
        color: #313332;
    }
}
/* 小屏幕语言栏 */
.language-sm-box{
    /* position: fixed; */
    width: 100%;
    bottom: 1rem;
    left: 0;
    z-index: 999999999;
    display: none;
    margin-top: 0.6rem;    
}
.language-sm-flex{
    display: flex;
    flex-direction: row;
    justify-content: center;    
}
.language-sm-item{
    width: 2.5rem;
    display: flex;
    align-items: anchor-center;
    flex-direction: column;    
}
.language-sm-img{
    width: 0.7rem;
    height: 0.7rem;
    border-radius: 50%;
    border: 1px solid #666;
    display: flex;
    justify-content: center;    
}
.language-sm-img i{
    font-size: 0.4rem;
    text-align: center;
    color: #666;
}
.language-sm-item p{
    color: #666;
    margin-top: 0.1rem;
}       
.language-show{
    display: block;
}
.language-hidden{
    display: none !important;
}

.language-content{
    padding: 0.2rem;   
}
.homeColse{
    font-size: 0.24rem;
}

.language-option:hover {
    background-color: rgba(0, 0, 0, 0);
}

.worldwide-language h3{
    font-size: 0.3rem;
    padding: 0.2rem 0;
    border-bottom: solid 1px #d4d4d4;
}
#websites li{
    border-bottom: solid 1px #d4d4d4;
}
/* 小屏幕语言栏 */
/* 小屏幕页脚 */
.footer-sm{
    padding: 0.2rem 0;      
}
.footer-sm .layui-collapse .layui-colla-title{
    background-color: #313332;
    color: #fff;
    padding: 0 0.1rem;
}
.footer-sm .layui-collapse .layui-colla-item{
    border: none;
    border-bottom: 1px solid #737877;
 }
 .footer-sm .layui-collapse{
    border: none;
}
.footer-sm .layui-collapse .layui-icon-right{
    color: #fff !important;
    right: 0.1rem; 
}
.footer-sm .layui-collapse .layui-colla-item.layui-show>.layui-colla-content {
    background-color: #313332;
    border-color: #737877;
    padding: 0;
}
.footer-sm ul{
    padding: 0 0.1rem;      
}
.footer-sm ul li:nth-last-child(1){
    border-bottom:none;
}
.footer-sm li{
    line-height: 0.6rem;
    font-size: 0.18rem;
    border-bottom: 1px solid #737877;   
}
@media (max-width: 1025px) {
    .footer-sm li{
        font-weight: 400;
        font-size: 0.28rem;
        color: #737877;
        line-height: 0.28rem;
        padding: 0.4rem 0;  
    }
    .footer-sm .layui-collapse .layui-colla-title{
        font-weight: 500;
        font-size: 0.28rem;
        color: #FFFFFF;
    }
    .layui-collapse .layui-colla-title{
        height: 1.2rem;
        line-height: 1.2rem;
    }
    .language-option {
        font-size: 0.28rem;
        line-height: 0.72rem;
    }
    .worldwide-language h3{
        padding: 0.4rem 0;
    }
    .homeColse{
        font-size: 0.28rem;
    }
    .language-content{
        padding: 0.4rem 0.2rem;
    }
    .site-item{
        width: auto;
    }
    .s-i-txt{
        margin: 0 8px;
        font-weight: 500;
        font-size: 0.28rem;
        color: #323333;
        line-height: 0.72rem;
    }
    .s-i-desc {
        margin-left: 0.3rem;
        height: auto;
        font-weight: 400;
        font-size: 0.28rem;
        color: #737877;
        line-height: 0.72rem;
    }
    .language-option {
        display: flex;
        justify-content: left;
        align-items: center;
        padding: 0.2rem 0;
        font-weight: 400;
        /* font-size: 0.2rem; */
        color: #333;
        /* line-height: 0.3rem; */
        cursor: pointer;
        transition: background-color 0.2s;
        position: relative;
        border-bottom: solid 1px #d4d4d4;
    }
}
.footer-sm ul li a{
    color: #737877;
}
.qrcode-box{
    display: flex;
    align-items: center;
    padding: 0.2rem 0;       
}
.qrcode-address{
    flex: 1;   
}
.qrcode-address .address{
    display: flex;
    margin-top: 0.2rem;    
}
.qrcode-address .address img{
    width: 0.3rem;
    object-fit: contain;
}
.qrcode-address .address p{
    font-size: 0.18rem;
    margin-left: 0.15rem;
}
.qrcode-box .qrcode{
    width: 1rem;   
}
.qrcode-box .qrcode img{
    width: 100%;
}
.qrcode-box .qrcode p{
    font-size: 0.16rem;
    margin-top: 0.15rem;
    text-align: center;
}
.cooperation-box{
    display: flex;
    align-items: center;
    border-top: 1px solid #737877;
    padding: 0.15rem 0;   
}
.cooperation-text{
    flex: 1;   
}
.cooperation-text a{
    font-size: 0.2rem;
    color: #fff;
    margin-left: 0.1rem;
}
.cooperation-img{
    width: 0.6rem;    
}
.cooperation-img img{
    width: 100%;
    object-fit: contain;
}
.copyright-box{
    font-size: 0.2rem;
    padding: 0.1rem 0;
    line-height: 0.36rem;
    background-color: #282929;
    text-align: center;
}
@media (max-width: 1025px) {
    .qrcode-address .address img{
        width: 0.32rem;
        align-self: flex-start;
        margin-top: 0.1rem;
    }
    .qrcode-address .address {
        margin-top: 0.4rem;
    }
    .qrcode-address .address p{
        font-weight: 400;
        font-size: 0.28rem;
        color: #737877;
        line-height: 0.48rem;
        margin-left: 0.2rem;
    }
    .qrcode-box {
        padding: 0.4rem 0;
    }
    .qrcode-box .qrcode{
        width: 1.76rem;
    }
    .qrcode-box .qrcode p{
        font-size: 0.24rem;
        margin-top: 0.2rem;
        color: #737877;
    }
    .qrcode-address{
        padding-right: 0.3rem;
    }
    .cooperation-text a{
        font-weight: 400;
        font-size: 0.28rem;
        color: #737877;
        line-height: 0.28rem;
        margin-left: 0.64rem;
    }
    .cooperation-text a:nth-child(1){
        margin-left: 0;
    }
    .cooperation-box{
        padding: 0.4rem 0;
    }
    .copyright-box{
        padding-top: 0.24rem;
        padding-bottom: 0.2rem;
        padding-left: 0.32rem;
        padding-right: 0.32rem;
        font-weight: 400;
        font-size: 0.2rem;
        color: #737877;
        line-height: 0.36rem;
        text-align: center;
    }
    .cooperation-img{
        width: 0.64rem;
    }
    .footer-sm {
        padding-top: 0.08rem;
        padding-bottom: 0;
    }
}
/* 小屏幕页脚 */
@media (max-width: 1025px) {
    .nav-container{
        display: none;
    }
    .footer-xl{
        display: none; 
    }
}
@media (min-width: 1025px) {
    .nav-container-sm{
        display: none;
    }
    #ID-demo-sm{
        display: none;
    }
    #layui-layer1{
        display: none;
    }
    #layui-layer2{
        display: none;
    }
    .layui-layer-shade{
        display: none;
    }   
    .language-sm-box{
        display: none; 
    }
    .footer-sm{
        display: none;
    }
}
/* 响应式导航 */

/* 公共样式 */
.blank-space{
	/* padding: 0 2.4rem; */
    width: 75%;
}
/* 公共样式 */
/* 每个栏目的底部边距公共样式 */
.common-bottom{
    padding-bottom: 1.2rem;
}
/* 每个栏目的底部边距公共样式 */
/* 公共标题 */
.common-title{
   padding-top: 1.2rem;
   padding-bottom: 0.6rem; 
}
.common-title h1{
    font-weight: 500;
    font-size: 0.48rem;
    color: #313332;
    text-align: center;
    line-height: 0.48rem; 
}
.common-title p{
    text-transform:uppercase;
    text-align: center;
    margin-top: 0.16rem;
    font-weight: 400;
    font-size: 0.16rem;
    line-height: 0.16rem;
    color: #BBBBBB;
}
@media (max-width: 1025px) {
    .common-title {
        padding-top: 0.64rem;
        padding-bottom: 0.4rem;
    }
    .common-title h1{
        font-size: 0.36rem;
        line-height: 0.36rem; 
    }
    .common-title p{
        font-weight: 400;
        font-size: 0.24rem;
        line-height: 0.24rem;
        color: #BBBBBB;
        margin-top: 0.2rem;
    }
    .common-bottom{
        padding-bottom: 0.64rem;
    }
}
/* 公共标题 */
/* 大屏页脚 */
.footer-box{
    padding-top: 0.4rem;
    background-color: #313332;    
}
.footer-com-box{
    display: flex;
    flex-direction: row;
    padding-bottom: 0.56rem;
}
.footer-left-nav-box{
    flex: 1;
}
.footer-nav-item-box{
    display: flex;
}
.footer-nav-item{ 
    width: 20%;    
}
.footer-title-nav{
    font-weight: 550;
    font-size: 0.16rem;
    color: #FFFFFF;
}
.footer-href a{
    font-weight: 400;
    font-size: 0.14rem;
    list-style: 0.14rem;
    color: #737877;
}
.footer-href{
    margin-top: 0.32rem;       
}
.footer-arrt-box{
    display: flex;
    align-items: center;
    padding-right: 0.2rem;                    
 }
 .footer-arrt-img{
    width: 0.24rem;   
}
.footer-arrt-img img{
    width: 100%;
 }
 .footer-arrt-text{
    flex: 1;
    font-weight: 400;
    font-size: 0.14rem;
    color: #737877;
    line-height: 0.24rem;
    margin-left: 0.1rem;
}
.footer-arrt-iphone{
    font-size: 0.24rem;
    color: #939997;
}
.footer-arrt-box:nth-child(2),.footer-arrt-box:nth-child(3){
    margin-top: 0.24rem;
} 
.footer-qr-code-box{                
    height: auto;
    align-self: flex-end;    
}
.footer-qr-code-box img{
    width: 1rem;
    height: 1rem;
    object-fit: cover;
}
.footer-qr-code-box p{
    font-weight: 400;
    font-size: 0.14rem;
    line-height: 0.14rem;
    color: #737877;
    margin-top: 0.1rem;
    text-align: center;
}
.daidu-box{
    display: flex;
    align-items: center;
    border-top: 1px solid #424544;
    padding-top: 0.27rem;
    padding-bottom: 0.27rem;   
}
.baidu-left{
    flex: 1;
    display: flex;
    flex-direction: row;       
}
.baidu-text{
    font-weight: 400;
    font-size: 0.14rem;
    line-height: 0.14rem;
    color: #737877;
}
.baidu-text:nth-child(2),.baidu-text:nth-child(3){
    margin-left: 0.54rem;
}
.baidu-right{
    width: 0.48rem;
    height: 0.48rem;   
}
.baidu-right img{
    width: 100%;
}
.beian-box{
    background-color: #282929;
    height: 0.34rem;
    line-height: 0.34rem;
    font-weight: 400;
    font-size: 0.12rem;
    color: #737877;
    text-align: center;
}
/* 搜索 */
.search-box {
    background-color: #fff;
    height: 100%;
    left: 0;
    padding-left: 20px;
    padding-right: 50px;
    padding-top: 9px;
    position: fixed;
    top: 0;
    -webkit-transform-origin: 100% center;
    -ms-transform-origin: 100% center;
    transform-origin: 100% center;
    -webkit-transition: all .3s;
    transition: all .3s;
    width: 100%;
    z-index: 98;    
}
.search-box .layui-input-wrap{
    margin-top: 2px;  
 }
 .search-box .layui-input-wrap .layui-input{
    background-color: #fff;
    border: 1px solid #d4d4d4;
    font-size: 16px;
    height: 48px;
    line-height: 48px;
    outline: none;
    padding-right: 70px;
}
.search-box .layui-input-wrap .layui-input-suffix{
    padding-left: 20px;
    padding-right: 50px;
    display: flex;
    align-items: center;
    cursor: pointer;
}
.search-box .layui-input-wrap .layui-icon-search{
    font-size: 28px;
}
.search-box .layui-input-wrap .layui-input-suffix {
 pointer-events:all;
}
.search-hide {
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    visibility: hidden;
    left: auto;
}
.hwic_cross{
    position: absolute;
    right: 5px;
    top:15px;
    cursor: pointer;   
}
.hwic_cross .layui-icon{
    font-size: 32px;
    cursor: pointer;
}
.hidden {
    display: none !important;
}
.show {
    display: block !important;
}
.results-box {
    background: #fff;
    border-radius: 5px;
    box-shadow: 1px 2px 5px rgba(0, 0, 0, .2);
    margin-top: 17px;
    padding: 20px 0 30px;
    position: absolute;
    z-index: 119;
}
.results-box {
    display: none;
    -webkit-transition: opacity .5s ease;
    -o-transition: opacity .5s ease;
    transition: opacity .5s ease;
}
.newResults {
    padding: 24px 20px;   
}
.newResults .history-title-box{
    display: flex;
    align-items: center;    
}
.newResults .history-title-box .history-title{
    font-size: 0.16rem;
    color: #333;
    font-weight: 700;
    position: relative;
    flex: 1;
}
.newResults .history-title-box.history-icon{
    width: 20px;
    cursor: pointer;
    .layui-icon{
        font-size: 20px; 
        color: rgb(102, 102, 102);
    }
}
.newResults .history-title-box .history-clear{
    cursor: pointer;
    font-weight: 400;
    font-size: 0.16rem;
    color: rgb(102, 102, 102);
    margin-left: 5px;
}
.history-item-box{
    display: flex;
    flex-flow: row wrap; /* 主轴为水平方向，并允许换行 */    
}
.history-item-box .history-item{
    padding: 0.05rem 0.1rem;
    border: #ccc solid 1px;
    border-radius: 0.05rem;
    margin-top: 0.1rem;
    margin-left: 0.1rem;
    cursor: pointer;
}
@media (min-width: 1025px) {
    .newResults {
        z-index: 1000;
        margin-top: 2px;
    }
}
@media (min-width: 1025px) {
    .search-box.search-hide {
        left: auto;
        -webkit-transform: scale(0);
        -ms-transform: scale(0);
        transform: scale(0);
    }
}
@media (min-width: 1025px) {
    .search-box {
        height: 76px;
        left: auto;
        padding-top: 15px;
        position: absolute;
        right: 0.78rem;
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
        width: 500px;
    }
}
/* 搜索 */
/* 大屏页脚 */
@media (max-width: 767px) {
    .blank-space{
        width: 95%;
        margin:  0 auto;
    }
    .navTop-box-padding{
        padding-top: 1.28rem;
    }
    .pc-box{
        display: none;
    }
    .yidong-box{
        display: block;
    }
}
@media (min-width: 768px) and (max-width: 1025px){
    .blank-space{
        width: 95%;
        margin:  0 auto;
    }
    .navTop-box-padding{
        padding-top: 1.28rem;
    }
    .pc-box{
        display: none;
    }
    .yidong-box{
        display: block;
    }
}
@media (min-width: 1024px) and (max-width: 1250px){
    .blank-space{
        width: 85%;
        margin:  0 auto;
    }
}
@media (min-width: 1025px) {
    .blank-space{
        width: 75%;
        margin:  0 auto;
    }
    .pc-box{
        display: block;
    }
    .yidong-box{
        display: none;
    }
}
img{
    width: 100%;
}

.layui-laypage a, .layui-laypage span {
    display: inline-block;
    vertical-align: middle;
    padding: 0 0.11rem;
    height: 0.32rem;
    line-height: 0.32rem;
    margin: 0 -1px 0.16rem 0.08rem;
    background-color: #EBF5F2;
    color: #313332;
    font-size: 0.18rem;
    border-radius: 0.08rem;
}
.layui-laypage select {
    height: 0.32rem;
    padding: 0;
    border-radius: 0.08rem;
    cursor: pointer;
}
.layui-laypage .layui-laypage-limits, .layui-laypage .layui-laypage-refresh {
    vertical-align: baseline;
}
.layui-laypage button, .layui-laypage input {
    height: 0.32rem;
    line-height: 0.32rem;
    border-radius: 0.08rem;
    vertical-align: baseline;
    background-color: #fff;
    box-sizing: border-box;
}
.layui-laypage .layui-laypage-curr .layui-laypage-em{
    border-radius: 0.08rem;
    background-color: #09BD81;
}
.layui-laypage .layui-laypage-skip{
    background-color: rgba(0, 0, 0, 0);
}
.layui-laypage .layui-laypage-count{
    background-color: rgba(0, 0, 0, 0);
}
/* 公共样式 */
