* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Microsoft YaHei", sans-serif;
}

body {
    color: #333;
    background-color: #fff;
    line-height: 1.6;
}

.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 78px 0 98px;
}

/* 导航栏 */
.header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-bottom: 2px solid #E8E8E8;
}

.nav-bg {
    position: relative;
    width: 100%;
    height: 24px;
    background: #313332;
}

.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;
}

.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;
}

.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;
}

.logo a img {
    border: 0;
    outline: 0;
    box-shadow: none;
    display: block;
}

.nav-menu {
    margin-left: 166px;
    display: flex;
    list-style: none;
}

.nav-menu li {
    margin-left: 80px;
}

/* 小于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: 20px;
    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;
    display: block;
}

.kefu {
    position: fixed;
    right: 0;
    bottom: 200px;
    width: 64px;
    height: 64px;
    background: #0AD69E;
    border-radius: 10px 0px 0px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.kefu img {
    width: 48px;
    height: 48px;
}

.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;
}

.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;
}

.article-desc {
    margin-top: 24px;
    margin-bottom: 30px;
    display: flex;
    font-weight: 400;
    font-size: 20px;
    color: #737877;
    line-height: 48px;
}

.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;
}

.article-container img {
    max-width: 100%;
    height: auto;
    display: block;
}

.article-content img {
    width: 100%;
    height: auto;
    display: block;   
}
.article-content{
    video{
        width: 100%;
    }
}

.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;
}

.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;
}
.nav-layer{
    .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;
            .flex-a{
               display: flex;
               width: 100%;
               height: 100%;
               flex-direction: column;
               justify-content: center;
               align-items: center;
               img{
                    width: 72px;
                    height: 72px;
               }
               .flex-text{
                    font-weight: 400;
                    font-size: 20px;
                    color: #313332;
                    margin-top: 24px;
               }
               .view{
                    width: 72px;
                    height: 32px;
                    text-align: center;
                    line-height: 32px;
                    background: #FFFFFF;
                    border-radius: 4px;
                    border: 1px solid #D8D8D8;
                    margin-top: 48px;
               }
            }
       }
       .flex-item: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);
           .view{
               border: 1px solid #09BD81;
               color: #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);
}
#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: hidden;
}
.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: 0.95rem;
    .nav-sm-logo{
        flex: 1;
        padding: 0 0.2rem;
        img{
            width: 1.46rem;
            height: 0.48rem;
        }
    }
    .nav-sm-user{
        margin-left: 0.18rem;
    }
    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;
    }
    
    button.navbar-toggle.collapsed .icon-bar {
        margin: 4px 0 0;
        position: static
    }
    
    button.navbar-toggle.collapsed .icon-bar:nth-child(1) {
        margin-top: 0;
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0)
    }
    
    button.navbar-toggle.collapsed .icon-bar:nth-child(2) {
        opacity: 1
    }
    
    button.navbar-toggle.collapsed .icon-bar:nth-child(3) {
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0)
    }
    
    button.navbar-toggle .icon-bar {
        left: 50%;
        margin-left: -11px;
        margin-top: -1px;
        position: absolute;
        top: 50%
    }
    
    button.navbar-toggle .icon-bar:nth-child(1) {
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg)
    }
    
    button.navbar-toggle .icon-bar:nth-child(2) {
        opacity: 0
    }
    
    button.navbar-toggle .icon-bar:nth-child(3) {
        -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        transform: rotate(-45deg)
    }

}
/* 小屏幕语言栏 */
.language-sm-box{
    position: fixed;
    width: 100%;
    bottom: 1rem;
    left: 0;
    z-index: 999999999;
    display: none;
    .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;
                i{
                    font-size: 0.4rem;
                    text-align: center;
                    color: #666;
                }
            }
            p{
                color: #666;
                margin-top: 0.1rem;
            }
        }       
    }
}
.language-show{
    display: block;
}
.language-hidden{
    display: none !important;
}
.language-item-box{
    .language-content{
        padding: 0.2rem;
        .homeColse{
            font-size: 0.24rem;
        }
        .worldwide-contact{
            .worldwide-language{
                h3{
                    font-size: 0.3rem;
                    padding: 0.2rem 0;
                    border-bottom: solid 1px #d4d4d4;
                }
            }
            .list-unstyled{
                li{
                    .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;
                    }
                    .language-option:hover {
                        background-color: rgba(0, 0, 0, 0);
                    }
                }
            }
        }
    }
}
#websites li{
    border-bottom: solid 1px #d4d4d4;
}
/* 小屏幕语言栏 */
@media (max-width: 1025px) {
    .nav-container{
        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; 
    }
}
/* 响应式导航 */

/* 公共样式 */
.blank-space{
	/* padding: 0 2.4rem; */
    width: 75%;
}
@media (max-width: 767px) {
    .blank-space{
        width: 90%;
        margin:  0 auto;
    }
}
@media (min-width: 768px) and (max-width: 1250px){
    .blank-space{
        width: 75%;
        margin:  0 auto;
    }
}
@media (min-width: 1251px) {
    .blank-space{
        width: 75%;
        margin:  0 auto;
    }
}
/* 公共样式 */