.header .header-content .header-bottom .header-nav .header-nav-item:nth-child(1)::after{
    content: "";
}
/**
 * banner styles
 **/
.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal{
    width: 1200px;
    left: 50%;
    transform: translateX(-50%);
    text-align: left;
}
.swiper-pagination-bullet{
    width: 30px;
    height: 2px;
    background: #FFFFFF;
    opacity: 1;
}
.swiper-pagination-bullet-active{
    background: #2980D3;
}

.banner-item{
    position: relative;
}
.banner-item .slide-text{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 900px;
    text-align: center;
}
.banner-item .slide-desc{
    font-weight: bold;
    font-size: 50px;
    color: #FFFFFF;
    line-height: 75px;
}
.banner-item .slide-content{
    font-size: 20px;
    color: rgba(255, 255, 255, .8);
    line-height: 30px;
    margin-top: 10px;
}
.banner-item .slide-btn{
    width: 200px;
    height: 58px;
    background: #F5B219;
    border-radius: 29px;
    margin: 40px auto 0;
    font-size: 18px;
    color: #FFFFFF;
    line-height: 58px;
    text-align: center;
}
.banner-item .slide-btn a{
    display: block;
    color: #FFFFFF;
}



@media only screen and (min-width: 1000px) and (max-width: 1440px) {
    .banner-item .slide-text{
        width: 700px;
    }
    .banner-item .slide-desc{
        font-size: 36px;
        line-height: 48px;
    }
    .banner-item .slide-content{
        font-size: 16px;
        line-height: 24px;
    }
    .banner-item .slide-btn{
        width: 160px;
        height: 50px;
        margin-top: 30px;
        line-height: 50px;
    }
}
@media only screen and (max-width: 1000px) {
    .banner-item .slide-text{
        width: 550px;
    }
    .banner-item .slide-desc{
        font-size: 28px;
        line-height: 36px;
    }
    .banner-item .slide-content{
        font-size: 14px;
        line-height: 21px;
    }
    .banner-item .slide-btn{
        width: 120px;
        height: 40px;
        margin-top: 20px;
        line-height: 40px;
    }
}



/**
 * hot products styles
 **/
.hot-products{
    width: 1200px;
    margin: 80px auto;
}
.hot-products .product-list{
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
}
.hot-products .product-list .product-item{
    width: 49.5%;
    cursor: pointer;
    background: #F9FAFC;
    margin-right: 1%;
    margin-top: 20px;
}
.hot-products .product-list .product-item:nth-child(2n){
    margin-right: 0;
}
.hot-products .product-list .product-item a{
    display: flex;
    align-items: center;
}
.hot-products .product-list .product-item .product-item-img{
    width: 40%;
    aspect-ratio: 1/1;
    position: relative;
    overflow: hidden;
}
.hot-products .product-list .product-item .product-item-img img{
    width: 100%;
    height: 100%;
}
.hot-products .product-list .product-item .product-item-img-icon{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0,0,0,.4);
    display: none;
}
.hot-products .product-list .product-item .product-item-img-icon img{
    width: 30px;
    height: 30px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.hot-products .product-list .product-item .product-item-content{
    width: 60%;
    padding: 0 20px;
}
.hot-products .product-list .product-item .product-item-title{
    font-weight: bold;
    font-size: 18px;
    color: #1A1A1A;
    line-height: 27px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.hot-products .product-list .product-item .product-item-attr{
    display: grid;
    grid-template-columns: 90px 1fr;
    margin-top: 10px;
    font-size: 12px;
    word-break: break-all;
}
.hot-products .product-list .product-item .product-item-attr .product-attr-key{
    color: #666666;
}
.hot-products .product-list .product-item .product-item-attr .product-attr-value{
    color: #333333;
    font-weight: bold;
}
.hot-products .product-list .product-item .product-item-more{
    width: 18px;
    height: 18px;
    margin-top: 20px;
}
.hot-products .product-list .product-item .product-item-more img{
    width: 100%;
    height: 100%;
}
.hot-products .product-list .product-item:hover .product-item-img-icon{
    display: block;
}
.hot-products .product-list .product-item:hover .product-item-title{
    color: #0056B3;
}


@media only screen and (min-width: 1000px) and (max-width: 1440px) {
    .hot-products{
        width: 900px;
        margin: 60px auto;
    }
    .hot-products .product-list{
        margin-top: 10px;
    }
    .hot-products .product-list .product-item .product-item-content {
        padding: 0 10px;
    }
    .hot-products .product-list .product-item .product-item-title{
        font-size: 16px;
        line-height: 21px;
    }
    .hot-products .product-list .product-item .product-item-attr{
        margin-top: 6px;
    }
    .hot-products .product-list .product-item .product-item-more{
        margin-top: 10px;
    }
}
@media only screen and (max-width: 1000px) {
    .hot-products{
        width: 700px;
        margin: 40px auto;
    }
    .hot-products .product-list{
        margin-top: 10px;
    }
    .hot-products .product-list .product-item{
        margin-top: 10px;
    }
    .hot-products .product-list .product-item .product-item-img-icon img{
        width: 24px;
        height: 24px;
    }
    .hot-products .product-list .product-item .product-item-content {
        padding: 0 4px;
    }
    .hot-products .product-list .product-item .product-item-title{
        font-size: 14px;
        line-height: 18px;
    }
    .hot-products .product-list .product-item .product-item-attr{
        margin-top: 2px;
    }
    .hot-products .product-list .product-item .product-item-more{
        margin-top: 5px;
    }
}



/**
 * SERVICE STYLES
 **/
.service-wrap{
    width: 100%;
    background: url("../images/service-bg.webp") no-repeat center bottom;
    background-size: 100%;
}
.service{
    width: 1200px;
    padding-bottom: 150px;
    margin: 80px auto;
}
.service .service-list{
    margin-top: 40px;
    display: flex;
}
.service .service-list .service-item{
    width: 300px;
    height: 300px;
    overflow: hidden;
    position: relative;
    transition: all 0.3s;
}
.service .service-list .service-item.active{
    width: 600px;
}
.service .service-list .service-item img{
    height: 100%;
}
.service .service-list .service-item .service-content{
    position: absolute;
    max-width: 440px;
    bottom: 0;
    left: 0;
    padding: 20px;
}
.service .service-list .service-item .service-content .service-title{
    font-weight: bold;
    font-size: 18px;
    color: #FFFFFF;
    line-height: 30px;
}
.service .service-list .service-item .service-content .service-desc{
    font-size: 14px;
    color: rgba(255, 255, 255, .8);
    line-height: 21px;
    margin-top: 10px;
    height: 63px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    visibility: hidden;
    transition: all 0.1s;
}
.service .service-list .service-item .service-content .service-more-normal{
    width: 30px;
    height: 30px;
    margin-top: 16px;
    transition: all 0.1s;
}
.service .service-list .service-item .service-content .service-more-normal img{
    width: 100%;
    height: 100%;
}
.service .service-list .service-item .service-content .service-more-active{
    width: 100px;
    height: 30px;
    background: #F5B219;
    border-radius: 15px;
    margin-top: 16px;
    font-size: 12px;
    color: #FFFFFF;
    line-height: 30px;
    text-align: center;
    display: none;
    transition: all 0.1s;
}
.service .service-list .service-item .service-content .service-more-active a{
    color: #FFFFFF;
}
.service .service-list .service-item.active .service-content .service-desc{
    visibility: unset;
}
.service .service-list .service-item.active .service-content .service-more-normal{
    display: none;
}
.service .service-list .service-item.active .service-content .service-more-active{
    display: block;
}


@media only screen and (min-width: 1000px) and (max-width: 1440px) {
    .service{
        width: 900px;
        padding-bottom: 100px;
        margin: 60px auto;
    }
    .service .service-list .service-item{
        width: 225px;
        height: 225px;
    }
    .service .service-list .service-item.active{
        width: 450px;
    }
    .service .service-list .service-item .service-content{
        padding: 12px;
    }
    .service .service-list .service-item .service-content .service-desc{
        font-size: 12px;
        line-height: 18px;
        margin-top: 5px;
        height: 54px;
    }
    .service .service-list .service-item .service-content .service-title{
        font-size: 16px;
        line-height: 24px;
    }
    .service .service-list .service-item .service-content .service-more-normal,
    .service .service-list .service-item .service-content .service-more-active{
        margin-top: 10px;
    }
}
@media only screen and (max-width: 1000px) {
    .service{
        width: 700px;
        padding-bottom: 50px;
        margin: 40px auto;
    }
    .service .service-list .service-item{
        width: 175px;
        height: 175px;
    }
    .service .service-list .service-item.active{
        width: 350px;
    }
    .service .service-list .service-item .service-content{
        padding: 8px;
    }
    .service .service-list .service-item .service-content .service-desc{
        font-size: 12px;
        line-height: 16px;
        margin-top: 5px;
        height: 48px;
    }
    .service .service-list .service-item .service-content .service-title{
        font-size: 14px;
        line-height: 20px;
    }
    .service .service-list .service-item .service-content .service-more-normal{
        width: 24px;
        height: 24px;
        margin-top: 5px;
    }
    .service .service-list .service-item .service-content .service-more-active{
        width: 75px;
        height: 24px;
        line-height: 24px;
        margin-top: 5px;
    }
}



/**
 * ABOUT STYLES
 **/
.about{
    width: 1200px;
    margin: 80px auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.about .about-text{
    width: 48%;
}
.about .title{
    text-align: left;
}
.about .about-desc{
    font-size: 12px;
    color: #666666;
    line-height: 18px;
    margin-top: 26px;
}
.about .more{
    width: 200px;
    height: 58px;
    border-radius: 29px;
    background: #0056B3;
    font-size: 14px;
    line-height: 58px;
    color: #FFFFFF;
    text-align: center;
    margin-top: 40px;
}
.about .more a{
    display: block;
    color: #FFFFFF;
}
.about .about-right{
    width: 50%;
}
.about .about-right .about-right-title{
    width: 60%;
    height: 120px;
    background: #0056B3;
    font-weight: bold;
    font-size: 30px;
    color: rgba(255, 255, 255, .6);
    line-height: 33px;
    text-align: center;
    float: right;
    padding-top: 20px;
    margin-bottom: -47px;
}
.about .about-video-wrap{
    width: calc(100% - 60px);
    aspect-ratio: 540 / 341;
    position: relative;
    overflow: hidden;

}
.about .about-video-wrap .about-img{
    width: 100%;
    height: 100%;
}
.about .about-video-wrap .about-img img{
    width: 100%;
    height: 100%;
}
.about .about-video-wrap .about-img .about-img-icon{
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50px;
    height: 50px;
    transform: translate(-50%,-50%);
    cursor: pointer;
    z-index: 1;
}
.about .about-video-wrap .about-video{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 2;
    background-color: #E6E6E6;
    display: none;
}
.about .about-video-wrap .about-video video{
    width: 100%;
    height: 100%;
}

@media only screen and (min-width: 1000px) and (max-width: 1440px) {
    .about{
        width: 900px;
        margin: 60px auto;
    }
    .about .about-desc{
        margin-top: 12px;
        line-height: 16px;
    }
    .about .more{
        width: 160px;
        height: 50px;
        line-height: 50px;
        border-radius: 25px;
        margin-top: 20px;
    }
    .about .about-right .about-right-title{
        height: 100px;
        font-size: 24px;
        line-height: 27px;
        padding-top: 10px;
    }
    .about .about-video-wrap{
        width: calc(100% - 40px);
    }
    .about .about-video-wrap .about-img .about-img-icon{
        width: 40px;
        height: 40px;
    }
}
@media only screen and (max-width: 1000px) {
    .about{
        width: 700px;
        margin: 40px auto;
    }
    .about .about-desc{
        margin-top: 8px;
        line-height: 16px;
    }
    .about .more{
        width: 120px;
        height: 40px;
        line-height: 40px;
        border-radius: 20px;
        margin-top: 10px;
    }
    .about .about-right .about-right-title{
        height: 80px;
        font-size: 20px;
        line-height: 22px;
        padding-top: 10px;
    }
    .about .about-video-wrap{
        width: calc(100% - 10px);
    }
    .about .about-video-wrap .about-img .about-img-icon{
        width: 36px;
        height: 36px;
    }
}


/**
 * NEWS STYLES
 **/
.news{
    width: 1200px;
    margin: 80px auto;
}

.news .news-list{
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.news .news-list .news-item{
    width: 32%;
}
.news .news-list .news-item .news-item-img{
    width: 100%;
    aspect-ratio: 386 / 240;
    position: relative;
}
.news .news-list .news-item .news-item-img img{
    width: 100%;
    height: 100%;
}
.news .news-list .news-item .news-item-img .news-item-img-icon{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0,0,0,.4);
    display: none;
}
.news .news-list .news-item .news-item-img .news-item-img-icon img{
    width: 40px;
    height: 40px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.news .news-list .news-item .news-item-img:hover .news-item-img-icon{
    display: block;
}
.news .news-list .news-item .news-item-content{
    padding: 16px 20px 20px;
    position: relative;
}
.news .news-list .news-item .news-item-date{
    font-size: 12px;
    color: #999999;
    line-height: 14px;
}
.news .news-list .news-item .news-item-title{
    font-weight: bold;
    font-size: 18px;
    color: #1A1A1A;
    line-height: 27px;
    height: 54px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.news .news-list .news-item .news-item-desc{
    font-size: 12px;
    color: #666666;
    line-height: 18px;
    margin-top: 10px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
.news .news-list .news-item .news-item-more{
    font-size: 14px;
    color: #0056B3;
    line-height: 16px;
    margin-top: 10px;
}
.news .news-list .news-item .news-item-content-line{
    width: 4px;
    height: 30px;
    background: #0056B3;
    position: absolute;
    top: 20px;
    left: 0;
}
.news .news-list .news-item:hover .news-item-content{
    box-shadow: 0px 10px 10px 1px rgba(0,0,0,0.16);
}


@media only screen and (min-width: 1000px) and (max-width: 1440px) {
    .news{
        width: 900px;
        margin: 60px auto;
    }
    .news .news-list{
        margin-top: 30px;
    }
    .news .news-list .news-item .news-item-img .news-item-img-icon img{
        width: 30px;
        height: 30px;
    }
    .news .news-list .news-item .news-item-content{
        padding: 8px 12px 12px;
    }
    .news .news-list .news-item .news-item-content-line{
        width: 3px;
        height: 25px;
    }
    .news .news-list .news-item .news-item-title{
        font-size: 16px;
        line-height: 24px;
        height: 48px;
    }
    .news .news-list .news-item .news-item-desc{
        margin-top: 5px;
    }
    .news .news-list .news-item .news-item-more{
        font-size: 12px;
        margin-top: 8px;
    }
}
@media only screen and (max-width: 1000px) {
    .news{
        width: 700px;
        margin: 40px auto;
    }
    .news .news-list{
        margin-top: 20px;
    }
    .news .news-list .news-item .news-item-img .news-item-img-icon img{
        width: 24px;
        height: 24px;
    }
    .news .news-list .news-item .news-item-content{
        padding: 5px 8px 8px;
    }
    .news .news-list .news-item .news-item-content-line{
        width: 2px;
        height: 20px;
    }
    .news .news-list .news-item .news-item-title{
        font-size: 14px;
        line-height: 21px;
        height: 42px;
    }
    .news .news-list .news-item .news-item-desc{
        margin-top: 0;
    }
    .news .news-list .news-item .news-item-more{
        font-size: 12px;
        margin-top: 4px;
    }
}
