/* Global Styles */
:root {
    --primary-color: #003366;
    --secondary-color: #0056b3;
    --accent-color: #00d2ff;
    --text-dark: #333333;
    --text-light: #f8f9fa;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
* {list-style-type: none;margin: 0;padding: 0; font-family: 'Open Sans', sans-serif;}

a { text-decoration: none !important;color: #555}
a:hover {
    text-decoration: none;
}
html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
    position: relative;
}

body {
    font-family:  'Open Sans', 'Inter', 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
}

.side-menu{display: none}
#navToggle{display: none;}
/*.container {max-width: 1650px;margin: 0 auto;padding: 0 2%;}*/

@media (min-width: 1600px) {
    .container {
        max-width: 1550px;
    }
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', sans-serif;
}

/* Navbar */
.nav-box{max-width: 1800px}
.logo-icon img{filter: brightness(0) invert(1);height: 4.2rem;width:auto;padding-bottom: .5rem}
.scrolled .logo-icon img{filter:none;padding-bottom: 0;height: 4.2rem;width:auto;}
.lang-switcher .bi{font-size: 1.1rem;margin-right: .2rem;}
.navbar {
    transition: var(--transition);
    padding: 0;
    backdrop-filter: blur(0px);
}
.nav-w{width: 80%}
.navbar-expand-lg .navbar-nav .nav-link{display: inline}
.navbar.scrolled {
    padding: 0.5rem 0;
    background: #ffffff !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.nav-top-actions {
    font-size: 14px;
    opacity: 0.9;
}

.navbar.scrolled .nav-top-actions {
    opacity: 1;
}

.navbar .navbar-brand,
.navbar .nav-link,
.navbar .lang-switcher {
    color: #ffffff !important;
    transition: var(--transition);
}


.navbar.scrolled .navbar-brand,
.navbar.scrolled .nav-link,
.navbar.scrolled .lang-switcher {
    color: #333333 !important;
}

.navbar.scrolled .navbar-toggler-icon {
    filter: invert(1);
}

.nav-link {
    font-weight: 500;
    margin-left: 30px;
    margin-right: 0;
    position: relative;
    font-size: 16px;
    padding: 5px 0 !important;
}

.navbar-nav {
    margin-bottom: 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #8cc63f;
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active {
    color: #8cc63f !important;
}

/* Mega Menu */
.navbar-nav .position-static {
    position: static !important;
}
.dropdown-menu-mega {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease;
    border-top: 1px solid #eee;
    z-index: 1000;
    padding: 10px 0;
}
.dropdown-nav{display: flex;justify-content: space-between;padding: .8rem 0}
.dropdown-nav-item{display: flex;flex:1;width: 100%;}
/*.dropdown-nav-item a{display: flex;align-items: center;}*/
/*.dropdown-nav-item img{height: 3.2rem;width: auto;padding-bottom: 1rem}*/
.index-banner-text{width: 75%}
.index-banner-text h1{font-size:3.2rem}




@media (min-width: 992px) {
    .dropdown-mega:hover .dropdown-menu-mega {
        visibility: visible;
        opacity: 1;
        top: 100%;
    }
}
@media (max-width: 991px) {
    .dropdown-menu-mega {
        position: static;
        visibility: visible;
        opacity: 1;
        display: none;
    }
    .dropdown-mega:hover .dropdown-menu-mega {
        display: block;
    }
}
.mega-item {
    display: block;
    padding: 15px;
    transition: all 0.3s ease;
    border-radius: 8px;
    text-align: center;
    width: 100%;
}
.mega-item:hover {
    background-color: #f8f9fa;
    transform: translateY(-3px);
}
.mega-item h5 {
    font-size: 16px;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}
.mega-item:hover h5 {
    color: #8cc63f !important;
}
.mega-item p {
    font-size: 13px;
    color: #888;
}

/* Search Button */
.btn-search {
    background-color: #8cc63f;
    color: white !important;
    border: none;
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
}

.btn-search:hover {
    background-color: #7ab52d;
    transform: scale(1.05);
}

.cursor-pointer {
    cursor: pointer;
}

.line-height-1 {
    line-height: 1;
}

/* Hero Carousel Section */

.hero-carousel-section {
    position: relative;
    overflow: hidden;
}

.heroSwiper {
    width: 100%;
    height: 100vh;
}
.heroSwiper img{width: 100%;height: auto}

.hero-slide {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}

.slide-title {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.slide-desc {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) 0.2s;
}

.slide-btns {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) 0.4s;
}

/* Swiper Active Slide Animations */
.swiper-slide-active .slide-title,
.swiper-slide-active .slide-desc,
.swiper-slide-active .slide-btns {
    opacity: 1;
    transform: translateY(0);
}

.text-gradient {
    background: linear-gradient(to right, #ffffff, #00d2ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
}

/* Custom Swiper Navigation */
.heroSwiper .swiper-button-next,
.heroSwiper .swiper-button-prev {
    color: white;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    backdrop-filter: blur(5px);
    transition: var(--transition);
}

.heroSwiper .swiper-button-next:after,
.heroSwiper .swiper-button-prev:after {
    font-size: 20px;
}

.heroSwiper .swiper-button-next:hover,
.heroSwiper .swiper-button-prev:hover {
    background: rgba(255, 255, 255, 0.3);
}

.heroSwiper .swiper-pagination-bullet {
    width: 30px;
    height: 4px;
    border-radius: 2px;
    background: white;
    opacity: 0.5;
    transition: var(--transition);
}

.heroSwiper .swiper-pagination-bullet-active {
    opacity: 1;
    width: 50px;
    background: var(--accent-color);
}

.banner .container{max-width: 1700px}
.banner span{display: block}
.social{}
.social .bi{font-size:1.2rem;color:#ccc}
.social a{padding:0 .5rem}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-30px) rotate(5deg);
    }
}

/* About Section */
.about-box{width: 100%;background: url("../images/about-bg.jpg") no-repeat;background-size:cover;padding: 120px 0 250px;}
.about-info{width: 100%;background: url("../images/about-titleBg.png") no-repeat top center;}
.about-content{max-width: 1600px;padding:  0 20px;display: flex;justify-content: space-around;margin:0 auto 85px;}
.about-l{width: 460px;height:266px;background:linear-gradient(to left,#3551a4 ,#2c8ec4 50%,#31cdb0);
    color: #fff;display: flex;align-items: center;justify-content: center;flex-direction: column;
    border-top-right-radius: 140px;border-bottom-right-radius: 140px;}
.about-r{width: calc(100%  - 520px);font-size: 1.05rem;line-height: 2;color: #444;}
.about-card {
    background: linear-gradient(135deg, #003366 0%, #0056b3 100%);
    border-radius: 100px 40px 40px 100px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    transition: var(--transition);
}

.about-card:hover::before {
    transform: translate(10%, 10%);
}

.about-card:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 51, 102, 0.3);
}

.arrow-icon {
    display: inline-block;
    transition: var(--transition);
}

.about-card:hover .arrow-icon {
    transform: translateX(10px);
}

/* Stats Section */
.icon-box {
    width: 85px;
    height: 85px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: var(--transition);
}

.stat-item:hover .icon-box {
    transform: rotateY(180deg);
}
.about-box .fw-bold{font-size: 3rem}
.about-box  .text-muted{font-size: 1.1rem}

.about-num .row1{display: flex;justify-content: space-between;padding: 0 3%}
.about-num .item{display:inline-flex;}

/* Product Section */
.product-section{padding: 1rem 0 2rem;margin-top: -150px;background: rgba(241,242,245,.75);overflow: hidden}
.pro-head{padding:2rem 0 1.5rem}
.pro-head  p{margin-bottom: 0}
.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    padding-bottom: 15px;
    margin-bottom:2rem;
}

.product-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0, 51, 102, 0.15);
}

.product-img {
    position: relative;
    overflow: hidden;
}

.product-img img {
    transition: var(--transition);
    width: 100%;
    aspect-ratio: 1/1;
}

.product-card:hover .product-img img {
    transform: scale(1.05);
}
.product-card .title{font-size: 1.3rem;color: #333;margin: .5rem 0}
.product-card .summary{font-size:.95rem;color: #777;line-height: 1.6;margin-bottom: 20px;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;min-height:3.2rem}
.pro-btn-more{border: solid 1px #7fbe25;padding: 5px 25px;border-radius: 20px;color: #7fbe25;margin-top: 20px;font-size: .95rem}
.product-card:hover .pro-btn-more{color: #fff;background: #7fbe25}
.index-more{background: linear-gradient(to right,#007099, #7fbe25);color: #fff;border-radius:30px;padding: 6px 30px}

.btn-more {
    display: inline-block;
    margin-top: 15px;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.btn-more:hover {
    color: var(--accent-color);
    padding-left: 10px;
}

/* Application Section */
.app-section {
    overflow: hidden;}
.app-head{display: flex!important;align-items: flex-end!important;justify-content: space-between;margin-bottom: 60px;padding-top: 15px}
.app-head .headline{}
.app-head .headline h2{font-size:2.5rem;color: #fff;font-weight: 700}
.app-head .headline p{font-size: 1rem;color: #fff;margin-bottom: 0}
.app-head-more{background: #fff;text-align: center;padding: 8px 25px;color: #333;border-radius: 20px}
.app-head-more:hover{color: #0a53be}

.app-section-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: url("../images/app-bg.jpg") no-repeat left center;background-size:cover ;
}

.app-content-card {
    position: relative;
    z-index: 2;
    padding: 2rem;
    box-shadow: 0 .1rem .6rem rgba(var(--bs-body-color-rgb), .175) !important;

}

.app-slide-content img {
    width: 100%;
    aspect-ratio: 68/36;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.app-slide-content p{font-size:1.2rem;overflow: hidden;text-overflow: ellipsis;white-space: nowrap}
.app-prev,
.app-next {
    width: 60px;
    height: 40px;
    border: 1px solid #ddd;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    background: white;
    color: #333;
}

.app-prev:hover,
.app-next:hover {
    background: #f8f9fa;
    border-color: #bbb;
    transform: scale(1.05);
}

.z-1 {
    z-index: 1;
}





/* News Section */

/*news*/
.news-bg{background: url(../images/newsbg.jpg) no-repeat top center;background-size: cover;padding: 50px 0 100px}
.news-box{width: 100%;display: flex;justify-content: space-between;align-items:stretch}
.news-l{width:36%;background: #fff;border-radius: 1.2rem;overflow: hidden;position: relative}
.news-l:hover img{transform:scale(1.09);}

.news-l .time{position: absolute;bottom: 0;background:linear-gradient(to right,#029ee1,#0071d0);color: #fff;padding:1rem 0;border-radius: 1.1rem;
    display: flex;width: 90px;flex-direction: column;align-items: center}
.news-l .time .year{font-size:1.5rem}
.news-l .time .year::after{display:block;width: 20px;height: 2px;background: #eee;content: ""}
.news-l .time .date{font-size:1.1rem}
.news-l .title-box{background:rgba(0,0,0,.6);position: absolute;bottom: 0;width: 100%;padding: .3rem 0 .8rem;display: block}
.news-l .title{width:calc(100% - 100px);float:right}
.news-l .title h2{font-size: 1.2rem;color: #fff;font-weight: 700;
    overflow:hidden;width: 100%;text-overflow: ellipsis;line-height:1.5;padding: .3rem 0 0 0;white-space: nowrap}
.news-l .title p{font-size: 1rem;color: #ddd;overflow:hidden;width: 100%;text-overflow: ellipsis;white-space: nowrap;line-height: 1.5;margin-bottom: 0}
.news-l img{width: 100%;margin: 0 auto;aspect-ratio: 4/2.8;object-fit: cover;transition: all .3s}
.news-m {width: 30%;background: #fff;border-radius:1.2rem;padding:2.5rem 2rem;}
.news-m  a{width: 100%;height:100%;display: flex;justify-content: space-between;flex-flow: column nowrap}
.news-m h2{font-size: 1.3rem;font-weight: bold;line-height: 1.6;display: -webkit-box;overflow: hidden;
    -webkit-line-clamp:2;text-overflow: ellipsis; -webkit-box-orient: vertical;min-height: 2.3rem}
.news-m:hover h2{color:#3551a4}
.news-m p{font-size: 1rem;color: #666;margin: 1rem auto ;line-height:1.8;display: -webkit-box;overflow: hidden;
    -webkit-line-clamp:2;text-overflow: ellipsis; -webkit-box-orient: vertical;}
.news-m time{border-top: solid 1px #eee;margin: 2.5rem auto 0;width: 100%;
    display: flex;justify-content: space-between;align-items: center;padding-top:1rem}
.news-m .date{font-size: .95rem;color: #666;display: flex}
.news-m .date img{height:1.2rem;width: auto}
.news-m .icon img{transition: all .3s}
.news-m:hover .icon img{transform: translateX(.5rem)}






.news-card-main {
    transition: var(--transition);
    cursor: pointer;
}
.news-card-main img{width: 100%;aspect-ratio: 4/3;object-fit: cover;}

.news-card-main:hover {
    transform: translateY(-10px);
}

.date-overlay-box {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--secondary-color);
    color: white;
    padding: 10px 15px;
    border-radius: 10px;
    text-align: center;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.news-main-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    z-index: 1;
}

.news-card-text {
    transition: var(--transition);
    cursor: pointer;
    border: 1px solid transparent;
}

.news-card-text:hover {
    transform: translateY(-10px);
    border-color: #eee;
    background: #fff !important;
}

.btn-arrow {
    width: 40px;
    height: 40px;
    border: 1px solid #ddd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    text-decoration: none;
    transition: var(--transition);
}

.news-card-text:hover .btn-arrow {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* Honor Section */
.cert-card {
    display: flex;
    height: 100%;
    transition: var(--transition);
    box-shadow:1px 5px 10px 0 rgba(0,0,0,.12) ;
    margin-top:5px;
}

.cert-side-banner {
    width: 50px;
    background: #003366;
    color: rgba(255, 255, 255, 0.8);
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 15px 0;
}

.cert-content {
    flex: 1;
}

.cert-prev,
.cert-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    border: 1px solid #28a745;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #28a745;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
}

.cert-prev {
    left: 0;
}

.cert-next {
    right: 0;
}

.cert-prev:hover,
.cert-next:hover {
    background: #28a745;
    color: white;
}

.grayscale {
    filter: grayscale(1);
    opacity: 0.6;
    transition: var(--transition);
}

.partner-logo:hover .grayscale {
    filter: grayscale(0);
    opacity: 1;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border: none;
    transition: var(--transition);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 51, 102, 0.3);
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
}
.partner-box{padding: 0px 0 }
.partner-row{display: grid;grid-template-columns:repeat(5, 1fr);gap:2rem}
.partner-box ul{padding-left: 0!important;}
.partner-row li{padding: .5rem 2rem;background: #fff}
.partner-row li img{width: 100%;height: auto}

/*bottom*/
.bottom{display: flex;justify-content: space-between;margin-top: 1rem;padding-top:1.5rem!important}
.bottom-l{width: calc(100% - 240px);display: grid;grid-template-columns:repeat(5,1fr);gap: 1rem}
.end-menu h2{font-size: 1.1rem;color: #ccc;margin:0 auto 1rem}
.end-menu ul{padding: 0;margin: 0}
.end-menu li{font-size: .9rem;padding: .2rem 0}
.end-menu li a{color: #979595;line-height: 1.6}
.social{margin:1rem auto 0;display: flex;}
.wechat{background: #121011;border-radius: 45px;width: 42px;height: 42px;border: solid 1px #b1b1b1;display: flex;align-items: center;justify-content: center;margin-right: 1.5rem;position:relative;cursor:pointer}
.wechat:last-of-type{margin-right:0}
.wechat-float{position:absolute;top:-105px;left:-25px;width:100px;height:100px;border-radius:10px;background:#fff;padding:5px;display:none}
.wechat-float img{width:100%;height:auto}
.wechat:hover .wechat-float{display:block}

.bottom-full{background: #020617;padding: 1rem 0}
.bottom-full .container-full{border-top: none}
.bottom-full .bottom-logo{margin-bottom: 1rem}
.bottom-full .bottom-logo img{height:4rem;width:auto;filter: brightness(0) invert(1);}
.bottom-full .copyright{padding: .5rem 0}
.bottom-r{width: 230px}
.bottom-r .phone-text{font-size: 1rem;color: #eee}
.bottom-r .phone-num{font-size:1.1rem;color: #eee}
.bottom-r .QR{width: 110px;border-radius: .8rem;height: 110px;background: #fff;display: flex;align-items: center;margin:.5rem 0}
.bottom-r .QR img{width:100px;height: 100px;display: block;margin:0 auto}
.bottom-r .QR-text{font-size: .95rem;color: #eee;width: 115px;text-align: center;line-height: 1.5}
.copyright{font-size: .85rem;color: #979797;justify-content: space-between;display:flex;margin:.5rem auto 1.5rem;margin-bottom: 0;padding-bottom: .8rem}
.copyright .r{display: flex;align-items: center;padding-bottom: .5rem}
.container-full{margin:.5rem auto;border-top: solid 1px #403e3f;border-bottom: solid 1px #403e3f;padding:1rem 0;width: 100%}
.bottom-space{padding:3rem 0 0 0}
/*  top-search*/
#aa{
    cursor:pointer;border: none;
}
.searchBox{
    display:none;
    position:fixed;
    width: 100%;background:rgba(255,255,255,.99);
    padding: 1.5rem 0 ;
    box-shadow:0 4px 5px rgba(0,0,0,.05);
    z-index: 9;
}
.search-content{position: relative}
.searchBox   .search-content .close{
    position:absolute;
    right:10px;
    top:-5px;
    background:none;
    border:none;
    color:#000;
    font-size:2.5rem;
    cursor:pointer;
}
.search-form{width: 100%;}
.search-form .input-box{width: 70%; border-bottom: solid 1px #eee;display: flex;align-items: center;font-size:.95rem}
.search-form .input-box img{width: 1.2rem;height: 1.2rem;margin-right: .5rem ;
    filter: grayscale(100%) invert(1);opacity: 1;
}
.search-form .input-box input{width: 100%;background: none;height:2.3rem;outline:none;border: none;font-size:1rem;}
.search-form .input-box input:focus{outline: none;--tw-ring-color:none!important}

.search-info{margin:1.5rem auto 0;display: flex;justify-content: space-between}
.search-info-l{width:55%;}
.search-info-l h2{font-size: 1.1rem;font-weight: 700}
.search-info-l li{font-size: .95rem;line-height:1.5;display:inline-block}
.search-info-l li a{color: #666;padding: .5rem 2rem .5rem 0;display: block}
.search-info-r{width: 40%;display: flex;justify-content: flex-end}
.search-info-r ul,.search-info-l ul{margin-top: 1rem;padding: 0}
.search-info-r .about{padding: 0 1rem;color: #666;font-size: .95rem}
.search-info-r .about h2{font-size: 1.1rem;color: #333}
.search-info-r .about li a{padding: .3rem 0;font-size: .95rem;}
/*list-news*/
.listNews-rec {background:linear-gradient(0,#fff,#f5f5f5);border: solid 1px #fafafa;box-shadow:0 3px 8px 0 #e1e1e1;
    padding: 1.5rem;margin:3rem auto 4rem;
    border-radius: 10px;display:flex;justify-content: space-between;align-items: center;}
.listNews-rec time{font-size:1.2rem;color: #666}
.listNews-rec .left{width:55%;padding: 1rem 1.5rem }
.listNews-rec .left .title{font-size: 1.2rem;font-weight: 700;margin:.5rem auto;overflow: hidden;white-space: nowrap;text-overflow: ellipsis;transition: all .5s}
.listNews-rec .left .summary{font-size: 1rem;color: #666;display: -webkit-box;line-height: 1.8;
    overflow: hidden;
    -webkit-line-clamp: 2;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;}
.listNews-rec .right{width: 38%;overflow: hidden;border-radius: .5rem}
.listNews-rec .right img{width: 100%;aspect-ratio:4/2;object-fit:cover;border-radius: .5rem;transition: all .3s}
.listNews-rec .more{background: #8cc63f;color: #fff;width: 180px;margin:1rem 0;padding:.5rem 0;display: flex;align-items: center;justify-content: center;
    text-align: center;font-size: .95rem;border-radius: 1.5rem;transition: all .5s}
.listNews-rec .more img{width:20px;    filter: brightness(0) invert(1);margin-left: 5px}
.listNews-rec .right:hover img{transform:scale(1.07)}
.listNews-rec .left:hover .more{transform:translateX(.5rem)}
.listNews-rec .left:hover  .title{color: #333;}
.listNews-box{margin:1.5rem auto 2rem; display: grid;grid-template-columns: repeat(3, 1fr);grid-gap:3rem;overflow: hidden;}
.listNews-box .news{border-radius: .5rem;background: #f8f8f8}
.listNews-box .img-box{width: 100%;overflow: hidden;border-radius: .5rem;}
.listNews-box .news .img-box img{width: 100%;aspect-ratio: 4/2.2;object-fit: cover;border-radius: .5rem;transition: all .3s}
.listNews-box .news-info{padding: 1rem}
.listNews-box .news h2{font-size: 1.1rem;font-weight: bold;line-height: 1.6;display: -webkit-box;overflow: hidden;color: #333;
    -webkit-line-clamp:1;text-overflow: ellipsis; -webkit-box-orient: vertical;}
.listNews-box .news p{font-size: .9rem;color: #888;margin: .5rem auto 1.2rem ;line-height:1.6;display: -webkit-box;overflow: hidden;
    -webkit-line-clamp:2;text-overflow: ellipsis; -webkit-box-orient: vertical;}
.listNews-box .news time{border-top: solid 1px #eee;margin: .5rem auto 0;width: 100%;
    display: flex;justify-content: space-between;align-items: center;padding-top:.2rem}
.listNews-box .news .date{font-size: .9rem;color: #666;display: flex;align-items: center}
.listNews-box .news .date img{height:1.1rem;width: auto}
.listNews-box .news .icon img{transition: all .3s;height: 1.5rem;margin-top: .3rem}
.listNews-box .news:hover .icon img{transform: translateX(.5rem)}
.listNews-box .news:hover h2{color: #023894;}
.listNews-box .news:hover .img-box img{transform: scale(1.07)}
/*弹出*/
.modal.show .modal-dialog {
    max-width: 800px;
}
.modal-header{padding:2rem 2rem .5rem;background: #fafafa}
.popup-title{font-size: 1.1rem;margin:10px auto;color: #555;background: #fafafa;padding: 1rem 2rem;width: 92%;border:solid 1px #8cc63f;font-weight: 700;
    border-top-left-radius:20px;border-bottom-right-radius:20px }
.modal-body{padding:1rem 2rem 2rem}
.modal-body button{width: 90%;color: #fff}
    /*news-arcticle*/
.news-article-box{display:flex;justify-content:space-between;margin:4rem auto;width: 95%;}
.news-article-l{width:calc(100% - 460px)}
.news-article-r{width:410px;}
.news-right-rec{width:100%;margin:10px auto;background:#f8f8f8;padding:1.5rem}
.news-right-rec .headline{font-size:1.8rem;font-weight:700;display:flex;justify-content:space-between;align-items:center}
.news-right-rec .headline:hover a{transform:translateX(-5px)}
.news-right-rec .headline a{background:#023894;border-radius:20px;font-size:.9rem;color:#fff;padding:0.2rem 1.5rem;border:solid 1px #023894;font-weight:normal;transition:all .3s}
.news-right-rec li{margin:1rem auto;border-bottom:solid 1px #dedede}
.news-right-rec li .title{font-size:1.1rem;font-weight: 700;color: #333;
    overflow: hidden;text-align:left;display: -webkit-box;overflow: hidden;
    -webkit-line-clamp:2;text-overflow: ellipsis; -webkit-box-orient: vertical;line-height: 1.5;

}
.news-right-rec li:hover .title{color:#023894}

.detail-title {
    font-size: 1.8rem;
    text-align: left;
    font-weight: 700;
    color: #444;
    margin-bottom: .8rem
}
.detail-subtitle {
    font-size: 1rem;
    color: #666;
    line-height: 27px;
    border-bottom: solid 1px #dedede;
    padding: 0 0 .5rem;
    text-align: left;
    margin-bottom: 1rem;

    span {
        margin: 0 2px 0 4px
    }
}
.detail-subtitle .bi{color: #8cc63f;}
.inner-content {
    font-size: 1rem;
    line-height: 2;
    color: #555;
}

.inner-content h2 {
    font-weight: 700;
    font-size: 1.1rem;
    line-height: 2.2;
    margin-bottom: 0
}

.inner-content h3 {
    font-weight: 700;
    font-size: .95rem;
    line-height: 2.3rem;
    margin-bottom: 3px;
}

.inner-content img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 5px auto;
    min-width: 900px;
    border-radius: 8px;
}
.next {
    width: 100%;
    font-size: .95rem;
    color: #333;
    background: #fafafa;
    padding: 5px 0
}

.next a {
    color: #555
}

.next ul {
    overflow: hidden;
    max-width: 1600px;
    margin: 15px auto;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap
}

.next li {
    width: 100%;
    text-overflow: ellipsis;
    overflow: hidden;
    padding: 5px 0;
    white-space: nowrap;
}

.bread{    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 30px 20px;
    margin-top:-20px;width:100%;
}


    #CB_ContentHide{background:rgba(0,0,0,.8)!important}
/* Responsive Adjustments */
@media (max-width: 1600px) {
    .banner .col-lg-8{padding-left: 5%}
}
@media (max-width: 1440px) {
    .about-r{font-size: 1rem}
.banner h1{font-size: 3.2rem;padding-top: 2%}
.banner p{font-size: 1rem}
.banner .col-lg-8{padding-left: 7%}

}
@media (max-width: 1280px) {
    .nav-w{width:100%}
}

@media (max-width: 1024px) {
.about-box{width: 100%;background: url("../images/about-bg.jpg") no-repeat;background-size:cover;padding:50px 0 50px;}
.about-info{width: 100%;background: url("../images/about-titleBg.png") no-repeat top left;background-size:100% 240px}
.about-content{max-width: 1600px;padding:  0 20px;display: flex;justify-content: space-around;margin:0 auto 85px;}
.about-l{width: 460px;height:240px;background:linear-gradient(to left,#3551a4 ,#2c8ec4 50%,#31cdb0);
    color: #fff;display: flex;align-items: center;justify-content: center;flex-direction: column;
    border-top-right-radius: 140px;border-bottom-right-radius: 140px;}
.about-r{width: calc(100%  - 520px);font-size: .95rem;line-height: 2;color: #444; overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 10;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
}
    .product-section{padding: 1rem 0;margin-top:30px;background: rgba(241,242,245,.75)}
    .product-info .title{font-size: 1.2rem}
    .nav-w{width:100%}
}
@media (max-width: 991px) {
    .index-banner-text{width: 100%}
    .lang-switcher .bi{font-size: 1.2rem;margin-right: .2rem;}
    .lang-switcher {font-size: 1rem;padding-right: .5rem}
    .navbar-collapse {
        background: rgba(0, 31, 63, 0.98);
        backdrop-filter: blur(15px);
        margin:1rem -1.5rem;
        padding: 2rem 1.5rem;
        width: calc(100% + 3rem);
    }
    .navbar-toggler-icon {
        display: inline-block;
        width: 1.6em;
        height: 1.2em;
    }
    .nav-box .pd-2{margin-bottom: 0!important;}
    .nav-box .mb-3{margin-bottom: 0!important;}
    .scrolled .navbar-collapse {
        background: rgba(255, 255, 255, 0.98);
    }

    .scrolled .navbar-collapse .lang-switcher {
        color: #333 !important;
    }

    .navbar-toggler {
        border: 1px solid rgba(255, 255, 255, 0.5);
        padding: 0.5rem;
        border-radius: 8px;
    }

    .scrolled .navbar-toggler {
        border-color: #ddd;
    }

    .hero-section {
        text-align: center;
    }

    .sphere {
        display: none;
    }
    .navbar{padding:0  0 .5rem!important;}
    /*banner*/
    .logo-icon img{height:3.2rem;width: auto}
    .scrolled .logo-icon img{filter:none;padding-bottom: 0;height: 3rem;width:auto;}
    .heroSwiper {
        width: 100%;
        height: 50vh;
        display: flex;

    }
    .nav-box{width: 100%;
        display: flex!important;}
    .logo-wrapper{width:50%}
    .top-right-line{border-bottom: solid 1px #dedede!important;}
    .banner h1{font-size:1.6rem;padding-top: 15%;margin-bottom: 0;width: 90%}
    .banner span{display:inline}
    .banner  .mb-4{margin-bottom:.5rem!important;}
    .banner p{font-size: 1rem;width: 90%}
    .banner .col-lg-8{padding-left: 7%;}
    .banner .swiper-slide:nth-of-type(2) h1{width: 95%}
    /*about*/
    .about-box{width: 100%;background: url("../images/about-bg.jpg") no-repeat;background-size:cover;padding:30px 0 0 0;overflow: hidden}
    .about-info{width: 100%;background:none;background-size:100% 240px}
    .about-content{max-width: 1600px;padding:  0 20px;display:block;margin:0 auto 20px;}
    .about-l{width:100%;background:linear-gradient(to left,#3551a4 ,#2c8ec4 50%,#31cdb0);height: auto;margin-left:-25px;
        padding:15px 0;margin-bottom: 15px;
        color: #fff;display: flex;align-items: center;justify-content: center;flex-direction: column;
        border-top-right-radius: 140px;border-bottom-right-radius: 140px;}
    .about-l h2{font-size: 1.5rem;}
    .about-l .mb-3{margin-bottom: 0!important;}
    .about-l p{font-size:.9rem;margin-bottom: 0!important;}
    .about-l h3{font-size: 1rem;margin:3px 0!important;}
    .about-r{width: 100%;font-size: .9rem;line-height:1.8;color: #444; overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 5;
        text-overflow: ellipsis;
        -webkit-box-orient: vertical;
    }

    .about-num .row1 {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        padding: 0;
    }
    .about-num .item {
        width: 25%;
        display: flex;
        justify-content: center;
        margin-bottom: 20px;
    }
    .about-box .fw-bold{font-size: 1.4rem;margin-bottom: 0}
    .about-box .text-muted{font-size:.85rem}
    .about-box .icon-box{width:2.6rem;height: auto; margin: 0 auto;}
    .about-box .icon-box img{width: 100%;height: auto}
    .about-num p{margin-bottom: 0!important; color: #999!important;}
    .product-section{padding: 1rem 0;margin-top:30px;background: rgba(241,242,245,.75)}
    .mb-3{margin-bottom: .5rem!important;}

.product-card{margin-bottom: .5rem!important;padding-bottom: .5rem!important;}
    .product-card .title{font-size: 1rem;color: #333;text-align: center;overflow: hidden;text-overflow: ellipsis;white-space: nowrap;}
    .product-card .summary{font-size:.85rem;color: #666;line-height: 1.6;margin-bottom: 10px;
        display: -webkit-box;
        overflow: hidden;
        -webkit-line-clamp: 2;
        text-overflow: ellipsis;
        -webkit-box-orient: vertical;min-height:2rem;display: none}
    .pro-btn-more{border: solid 1px #7fbe25;margin: .5em auto;display: block;
        padding: 2px 20px;border-radius: 20px;color: #7fbe25;font-size: .8rem!important;width: 80%}
    .product-card .p-3{padding: .5rem!important;}
    .pro-head{padding:1rem 0!important;}
    .mb-5{margin-bottom: .5rem!important;}
    .pro-head .fw-bold{font-size: 1.5rem;width: 95%;text-align: center;margin-bottom: .5rem}
    .pro-head .text-muted{font-size:.85rem;width: 95%;margin:0 auto;text-align: center;color: #666!important;}
    .index-more{width: 200px;margin:10px auto;text-align: center}
/*    应用*/
    .py-5{    padding-top: 1rem !important;
        padding-bottom: 1rem !important}
    .app-section {
        overflow: hidden;}
    .app-head{display: flex!important;align-items: flex-end!important;justify-content: space-between;margin-bottom: 20px;}
    .app-head .headline{width: 100%}
    .app-head .headline h2{font-size:1.5rem;color: #fff;font-weight: 700;text-align: center;width: 100%;padding-top: 15px}
    .app-head .headline p{font-size: .85rem;color: #eee;margin-bottom: 0;width: 100%;overflow: hidden;text-overflow: ellipsis;white-space: nowrap;}
    .app-head-more{background: #fff;text-align: center;padding: 8px 25px;color: #333;border-radius: 20px;display: none!important;}
    .app-head-more:hover{color: #0a53be}
    .app-slide-content p{overflow: hidden;text-overflow: ellipsis;white-space: nowrap;font-size: .9rem}
    /*partner*/
    .partner-bg{background: url(../images/partnerbg.jpg) no-repeat top center;background-size: cover;padding: 0 5%}
    .partner-scroll{margin:1rem auto;position: relative;overflow: hidden}
    .partner-scroll .swiper{height: auto!important}
    .partner-scroll .swiper-wrapper{height:280px}
    .partner-scroll .swiper-slide img{display: block;margin: 0 auto;max-width: 100%;height: auto}
    .partner-li{border-radius: .5rem;background: #fff;padding:1rem .5rem}
    .swiper-button-next:after, .swiper-button-prev:after{display: none}
    /*news*/
    .news-head{width: 100%}
    .news-bg{background: url(../images/newsbg.jpg) no-repeat top center;background-size: cover;padding:10px 4%}
    .news-box{width: 100% !important;display: block;overflow: hidden}
    .news-l{width:100%;background: #fff;border-radius: 1.2rem;overflow: hidden;position: relative}
    .news-l .time{position: absolute;bottom: 0;background: #0056b3;color: #fff;padding:1rem 0;border-radius: 1.1rem;
        display: flex;width: 60px;flex-direction: column;align-items: center}
    .news-l .time .year{font-size:1rem}
    .news-l .time .year::after{display:block;width: 20px;height: 2px;background: #eee;content: ""}
    .news-l .time .date{font-size:.9rem}
    .news-l .title-box{background:rgba(0,0,0,.6);position: absolute;bottom: 0;width: 100%;padding: .3rem 0 .8rem;display: block}
    .news-l .title{width:calc(100% - 70px);float:right}
    .news-l .title h2{font-size: 1rem;color: #fff;overflow:hidden;width: 100%;font-weight: bold;
        text-overflow: ellipsis;line-height:1.5;padding: .3rem 0;white-space: nowrap}
    .news-l .title p{font-size: .85rem;color: #ddd;overflow:hidden;width: 100%;text-overflow: ellipsis;white-space: nowrap;line-height: 1.5;margin-bottom: 0}
    .news-l img{width: 100%;margin: 0 auto;aspect-ratio: 4/2.8;object-fit: cover}
    .news-m {width: 100%;background: #fff;border-radius:1.2rem;padding:1rem 1rem;margin-top: 1rem}
    .news-m  a{width: 100%;display: block;}
    .news-m h2{font-size: 1rem;font-weight: bold;white-space: nowrap;color: #333;min-height: auto!important;}
    .news-m p{font-size: .9rem;color: #666;margin: .5rem auto ;line-height:1.8;display: -webkit-box;overflow: hidden;
        -webkit-line-clamp:2;text-overflow: ellipsis; -webkit-box-orient: vertical;}
    .news-m time{border-top: solid 1px #eee;margin: .5rem auto 0;width: 100%;
        display: flex;justify-content: space-between;align-items: center;padding-top:.2rem}
    .news-m .date{font-size: .95rem;color: #666;display: flex;align-items: center}
    .news-m .date img{height:1.1rem;width: auto;margin-right: .3rem}
    .news-m .icon img{transition: all .3s;height: 1.5rem}
    .news-m:hover .icon img{transform: translateX(.5rem)}
    .news-m:last-of-type{display: none}
/*   boottom*/
    .bottom-full{background: #020617;padding: 0rem 0}
    .bottom-full .container-full{border-top: none}
    .bottom-full .bottom-logo{margin-bottom: 0}
    .bottom-full .copyright{padding: .5rem  3%}
    .bottom-r .phone-num{font-size: 1.4rem;}
    .bottom{display: flex;justify-content: space-between;width: 85%;margin:0 auto}
    .bottom-logo{display: none!important;}
    .bottom-l{width: calc(100% - 240px);grid-template-columns:repeat(5,1fr);gap: 1rem;display: none}
    .end-menu h2{font-size: 1.1rem;color: #ccc;margin:0 auto 1rem}
    .end-menu ul{padding: 0;margin: 0}
    .end-menu li{font-size: .9rem;padding: .2rem 0}
    .end-menu li a{color: #bfbfbf;line-height: 1.6}
    .social{margin:1rem auto 0;display: flex;}
    .wechat{background: #121011;border-radius: 45px;width: 42px;height: 42px;border: solid 1px #b1b1b1;display: flex;align-items: center;justify-content: center;margin-right: .5rem}
    .bottom-r{width: 100%;margin:0 auto}
    .bottom-r .phone-text{font-size: 1.1rem;color: #eee}
    .bottom-r .phone-num{font-size:1.6rem;color: #eee}
    .bottom-r .QR{width: 110px;border-radius: .8rem;height: 110px;background: #fff;display: flex;align-items: center;margin:.5rem 0;display: none}
    .bottom-r .QR img{width:100px;height: 100px;margin:0 auto;display: none}
    .bottom-r .QR-text{font-size: .95rem;color: #eee;width: 115px;text-align: center;line-height: 1.5;display: none}
    .copyright{display: block;width: 90%;margin:0 auto}
    .copyright .r{width: 100%}
    .copyright .l{font-size: .95rem;width: 100%}
    .copyright .l span{display: none;}
    .partner-section{display: none}
/*    phone-nav*/
    #navToggle{display: block;}
    .navbar-toggler{display: none;}
    .nav-toggle{background:none;border: solid 1px #fff;
        color: #fff;border-radius:.3rem;padding:0 .3rem .1rem;margin-right:.5rem}
    .nav-toggle img{width: 1.5rem;filter: brightness(0) invert(1);}
    .scrolled .nav-toggle{color: #444;border: solid 1px #444}
    .scrolled .nav-toggle img{filter: none;}
    .topNavBg2{background:#fff!important}
    .logo-img{z-index:99999}
    .side-menu {
        display: block;
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100%;
        background:rgba(255,255,255,.9);
        transition: right 0.3s ease;
        z-index: 2000;
        -webkit-backdrop-filter: blur(5px);
        backdrop-filter: blur(5px);
        background: hsla(0,0%,97%,.5);


    }
    .side-menu .right-menu{width:70%;float:right;height:100%;padding-top:3.5rem;background:#fff;}
    .side-menu .right-menu .bi{color:#888;font-size:.9rem}
    .side-menu ul{padding: 0;width: 90%;margin: 0 auto;}
    .side-menu.active {
        right: 0;
    }
    .close-btn{font-size: 1.8rem;border:none;padding-left: 1rem;margin-top: .5rem;background: none;position:absolute;right:1rem}
    .side-menu li{display: flex;justify-content: space-between;align-items: center;border-bottom: solid 1px #dedede;padding: .8rem 0}
    .side-menu li .classify{color: #333;font-size:.9rem}
    .side-menu li a{color: #333;font-size: 1rem;display: flex;justify-content: space-between;align-items: center;width: 100%}
    .menu-item{font-size: 1.2rem}
    .side-menu .phone{background: linear-gradient(to right, #007099, #7fbe25);padding:.5rem 1rem;font-size: 1.1rem;margin:0 auto;color: #fff;border-radius: .5rem;}
    .side-menu .phone .bi{font-size: 1.2rem;color: #fff}
    .side-menu .phone a{color: #fff}
    /* submenu */
    .sub-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: #f5f5f5;
        transition: left 0.3s ease;
        z-index: 1001;
    }
    .search-info-phone{width:95%;margin:1rem auto}
    .search-info-phone h2{font-size:1rem;font-weight:700;margin-bottom:.5rem}
    .search-info-phone .pro{width:46%;margin:1% 1.5%;font-size:.9rem;float:left;background:#eee;text-align:center;border-radius:5px;}
    .search-info-phone .pro a{display: block;padding:.2rem 0}
    /*phone-search*/
    .search-form1{        width: 100%;
        margin: .5rem auto;
        background: #f1f1f1;
        padding: 0 2.5%;}
    .search-form1 .input-box{width: 100%;height:2.8rem; border-bottom: solid 1px #ccc;display: flex;align-items: center;font-size: 1rem}
    .search-form1 .input-box img{width: 1.2rem;height: 1.2rem;margin-right:0;filter: grayscale(80%) invert(1); }
    .search-form1 .input-box input{width: 80%;background: none;height:2.3rem;outline:none;border: none;font-size: .92rem;}
    .search-form1 .input-box button{width: 20%;font-size: .9rem;text-align: center;color: #fff;border: none;line-height: 2rem;
        border-radius: 2.5rem;background: #023894}
    .popup-title{font-size: 1rem;margin:10px auto;color: #555;background: #fafafa;padding:.5rem 1rem;width: 92%;border:solid 1px #8cc63f;
        border-top-left-radius:20px;border-bottom-right-radius:20px }
    .modal-body {
        padding: 1rem 1rem 2rem;
    }
}

@media (max-width: 767.98px) {
    .listNews-rec {background: #f8f8f8;padding:0;border-radius: .5rem;display:flex;flex-direction: column;}
    .listNews-rec time{font-size:1rem;color: #666;}
    .listNews-rec .left{width:90%;padding:1rem 0;margin:0 auto}
    .listNews-rec .left .title{font-size: 1rem;font-weight: 700;margin:.5rem auto;overflow: hidden;white-space: nowrap;text-overflow: ellipsis;transition: all .5s}
    .listNews-rec .left .summary{font-size: .85rem;color: #666;display: -webkit-box;line-height: 1.6;
        overflow: hidden;
        -webkit-line-clamp: 2;
        text-overflow: ellipsis;
        -webkit-box-orient: vertical;}
    .listNews-rec .right{width: 100%;overflow: hidden;border-radius: .5rem;order: -1;}
    .listNews-rec .right img{width: 100%;aspect-ratio:4/2;object-fit:cover;border-radius: .5rem;transition: all .3s}
    .listNews-rec .more{background: #8cc63f;color: #fff;width: 100%;margin:.5rem auto 0;padding:.3rem 0;display: flex;align-items: center;justify-content: center;
        text-align: center;font-size: .9rem;border-radius: 1.5rem;transition: all .5s}
    .listNews-rec .more img{width:20px;    filter: brightness(0) invert(1);margin-left: 5px}
    .listNews-rec .right:hover img{transform:scale(1.07)}
    .listNews-rec .left:hover .more{transform:translateX(.5rem)}
    .listNews-rec .left:hover  .title{color: #333;}
    .listNews-box{margin:1.5rem auto 2rem; display: grid;grid-template-columns: repeat(1, 1fr);grid-gap:1rem;overflow: hidden;}
    .listNews-box .news{border-radius: .5rem;background: #f8f8f8;width: 95%;margin:0 auto}
    .listNews-box .img-box{width: 100%;overflow: hidden;border-radius: .5rem;}
    .listNews-box .news .img-box img{width: 100%;aspect-ratio: 4/2.2;object-fit: cover;border-radius: .5rem;transition: all .3s}
    .listNews-box .news-info{padding:.5rem 1rem}
    .listNews-box .news h2{font-size: 1rem;font-weight: bold;line-height: 1.6;display: -webkit-box;overflow: hidden;color: #555;
        -webkit-line-clamp:1;text-overflow: ellipsis; -webkit-box-orient: vertical;}
    .listNews-box .news p{font-size: .85rem;color: #888;margin: .5rem auto ;line-height:1.5;display: -webkit-box;overflow: hidden;
        -webkit-line-clamp:2;text-overflow: ellipsis; -webkit-box-orient: vertical;}
    .listNews-box .news time{border-top: solid 1px #eee;margin: .5rem auto 0;width: 100%;font-size: .85rem;
        display: flex;justify-content: space-between;align-items: center;padding-top:.2rem}
    .listNews-box .news .date{font-size: .8rem;color: #666;display: flex;align-items: center}
    .listNews-box .news .date img{height:1rem;width: auto;margin-right: .2rem}
    .listNews-box .news .icon img{transition: all .3s;height: 1.2rem;margin-top: .3rem}
    .listNews-box .news:hover .icon img{transform: translateX(.5rem)}
    .listNews-box .news:hover h2{color: #8cc63f;}
    .listNews-box .news:hover .img-box img{transform: scale(1.07)}
    .news-article-box{display:block;margin:2.5rem auto}
    .news-article-l{width: 100%}
    .inner-box {
        max-width: 1600px;
        margin: 0 auto
    }

    .inner-title {
        font-size: 1.2rem;
        text-align: center;
        font-weight: 700;
        color: #444;
        margin-bottom: 1rem
    }

    .inner-content {
        font-size: .95rem;
        line-height:1.8;
        color: #555;
    }

    .inner-content h2 {
        font-weight: 700;
        font-size: 1.1rem;
        line-height: 2.2;
        margin-bottom: 0
    }

    .inner-content h3 {
        font-weight: 700;
        font-size: .95rem;
        line-height: 2.3rem;
        margin-bottom: 3px;
    }

    .inner-content img {
        max-width: 100%;
        height: auto;
        display: block;
        margin: 10px auto
    }
    .next {
        width: 100%;
        font-size: .95rem;
        color: #333;
        background: #fafafa;
        padding: 5px 0
    }

    .next a {
        color: #555
    }

    .next ul {
        overflow: hidden;
        max-width: 1600px;
        margin: 15px auto;
        padding: 0 1rem;
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap
    }

    .next li {
        width: 100%;
        text-overflow: ellipsis;
        overflow: hidden;
        padding: 5px 0;
        white-space: nowrap;
    }
    .detail-title {
        font-size: 1.4rem;
        text-align: center;
        font-weight: 700;
        color: #444;
        margin-bottom: .8rem
    }
    .detail-subtitle {
        font-size: .9rem;
        color: #666;
        line-height: 27px;
        border-bottom: solid 1px #dedede;
        padding: 0 0 .5rem;
        text-align: center;
        margin-bottom: 1rem;

        span {
            margin: 0 2px 0 4px;
        }
    }

    .detail-subtitle .bi{color: #8cc63f;}
}
