/**
 * banner styles
 **/
.banner .swiper-pagination {
    height: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    bottom: 20px;
}
.banner .swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
.banner .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet{
    width: 30px;
    height: 6px;
    background-color: #FFFFFF;
    border-radius: 0;
    margin: 0 3px;
    opacity: 1;
}
.banner .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet-active{
    background-color: #1E5CB3;
    height: 8px;
    margin-top: 1px;
}

.banner{
    position: relative;
}
.banner .swiper-slide-text{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    text-align: center;
    width: 1200px;
    color: #FFFFFF;
}
.banner .swiper-slide-text .swiper-slide-text-title{
    font-size: 20px;
    line-height: 22px;
}
.banner .swiper-slide-text .swiper-slide-text-desc{
    font-weight: 900;
    font-size: 60px;
    line-height: 85px;
    margin: 20px 0;
}
.banner .swiper-slide-text .swiper-slide-text-content{
    font-size: 20px;
    line-height: 30px;
}
.banner .swiper-slide-text .swiper-slide-text-btn{
    margin-top: 30px;
}
.banner .swiper-slide-text .swiper-slide-text-btn a{
    width: 203px;
    height: 50px;
    background: #FFFFFF;
    border-radius: 4px 4px 4px 4px;
    font-size: 20px;
    color: #1A1A1A;
    text-align: center;
    line-height: 50px;
    display: inline-block;
}
.banner .swiper-slide-text .swiper-slide-text-btn a:first-child{
    margin-right: 20px;
}
.banner .swiper-slide-text .swiper-slide-text-btn a:hover{
    background: #1562C5;
    color: #FFFFFF;
}

@media only screen and (min-width: 1000px) and (max-width: 1440px) {
    .banner .swiper-slide-text{
        width: 900px;
        font-size: 40px;
        line-height: 60px;
    }
    .banner .swiper-slide-text .swiper-slide-text-title{
        font-size: 18px;
    }
    .banner .swiper-slide-text .swiper-slide-text-desc{
        font-size: 40px;
        line-height: 60px;
    }
    .banner .swiper-slide-text .swiper-slide-text-content{
        font-size: 18px;
    }
}
@media only screen and (max-width: 1000px) {
    .banner .swiper-slide-text{
        width: 700px;
        font-size: 30px;
        line-height: 45px;
    }
    .banner .swiper-slide-text .swiper-slide-text-title{
        font-size: 16px;
    }
    .banner .swiper-slide-text .swiper-slide-text-desc{
        font-size: 30px;
        line-height: 45px;
        margin: 10px 0;
    }
    .banner .swiper-slide-text .swiper-slide-text-content{
        font-size: 16px;
        line-height: 24px;
    }
    .banner .swiper-slide-text .swiper-slide-text-btn{
        margin-top: 20px;
    }
    .banner .swiper-slide-text .swiper-slide-text-btn a{
        width: 150px;
        height: 40px;
        font-size: 16px;
        line-height: 40px;
    }
}

/**
 * hot products styles
 **/
.hot-products {
    width: 1200px;
    margin: 80px auto;
}


.hot-products .products-category{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 40px;
}
.hot-products .products-category .products-category-item{
    width: 19%;
    margin-right: 1.25%;
    margin-top: 18px;
    height: 40px;
    background: #FFFFFF;
    border: 1px solid #ECECEC;
    line-height: 40px;
    text-align: center;
    font-size: 14px;
    color: #1A1A1A;
    cursor: pointer;
    transition: all 0.3s;
}
.hot-products .products-category .products-category-item:nth-child(-n+5){
    margin-top: 0;
}
.hot-products .products-category .products-category-item:nth-child(5n),
.hot-products .products-category .products-category-item:last-child{
    margin-right: 0;
}
.hot-products .products-category .products-category-item.active,
.hot-products .products-category .products-category-item:hover{
    border: 1px solid #1562C5;
    background: #1562C5;
    color: #FFFFFF;
}


.hot-products .products{
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
}
.hot-products .products .products-list{
    width: 100%;
    flex-wrap: wrap;
    display: none;
}
.hot-products .products .products-list.active{
    display: flex;
}
.hot-products .products .products-list li{
    width: 24%;
    background-color: #FFFFFF;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 40px;
    margin-right: 1.333%;
}
.hot-products .products .products-list li:nth-child(4n){
    margin-right: 0;
}
.hot-products .products .products-list li .products-img{
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}
.hot-products .products .products-list li .products-img img{
    width: 100%;
    height: 100%;
    transition: all 0.3s;

}
.hot-products .products .products-list li .product-list-title{
    /*height: 50px;*/
    margin: 5px 0;
    font-size: 18px;
    color: #333333;
    line-height: 25px;
    font-weight: bold;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.hot-products .products .products-list li .product-list-apply{
    font-size: 14px;
    color: #666666;
    line-height: 20px;
    /*height: 60px;*/
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
.hot-products .products .products-list li:hover .products-img img{
    transform: scale(1.1);
}
.hot-products .products .products-list li:hover .product-list-title{
    color: #1562C5;
}


@media only screen and (min-width: 1000px) and (max-width: 1440px) {
    .hot-products{
        width: 900px;
        margin: 60px auto;
    }
    .hot-products .products-category .products-category-item {
        font-size: 13px;
    }
    .hot-products .products .products-list li .product-list-title{
        font-size: 16px;
        line-height: 20px;
        height: 40px;
    }
    .hot-products .products .products-list li .product-list-apply{
        font-size: 13px;
    }
}

@media only screen and (max-width: 1000px) {
    .hot-products{
        width: 700px;
        margin: 40px auto;
    }
    .hot-products .products-category{
        margin-top: 20px;
    }
    .hot-products .products-category .products-category-item {
        font-size: 12px;
        width: auto;
        min-width: 19%;
        padding: 0 3px;
        height: 32px;
        line-height: 32px;
        margin-top: 10px;
    }
    .hot-products .products .products-list li{
        margin-top: 20px;
    }
    .hot-products .products .products-list li .product-list-title{
        font-size: 12px;
        line-height: 18px;
        height: 36px;
    }
    .hot-products .products .products-list li .product-list-apply{
        font-size: 12px;
        line-height: 18px;
    }
}

.about-warp{
    width: 100%;
    margin: 0 auto;
    padding: 80px 0;
    background: #F4F4F4;
}
.about{
    width: 1200px;
    margin: 0 auto;
}
.about .about-content{
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
}
.about .about-content .about-item{
    width: 24%;
    background: #FFFFFF;
    border: 1px solid #E4E4E4;
    padding: 30px 16px;
    cursor: pointer;
}
.about .about-content .about-item .about-item-icon{
    width: 40px;
    height: 40px;
    overflow: hidden;
}
.about .about-content .about-item .about-item-icon img{
    width: 100%;
    height: 100%;
    transition: all 0.5s;
}
.about .about-content .about-item:hover .about-item-icon img{
    transform: rotateY(180deg);
}
.about .about-content .about-item .about-item-title{
    font-weight: bold;
    font-size: 20px;
    color: #1A1A1A;
    line-height: 22px;
    margin: 20px 0;
}
.about .about-content .about-item .about-item-desc{
    font-size: 14px;
    color: #666666;
    line-height: 21px;
}


@media only screen and (min-width: 1000px) and (max-width: 1440px) {
    .about-warp{
        padding: 60px 0;
    }
    .about{
        width: 900px;
    }
    .about .about-content{
        margin-top: 30px;
    }
    .about .about-content .about-item{
        padding: 20px 10px;
    }
    .about .about-content .about-item .about-item-icon{
        width: 30px;
        height: 30px;
    }
    .about .about-content .about-item .about-item-title{
        font-size: 16px;
        line-height: 18px;
        margin: 15px 0;
    }
    .about .about-content .about-item .about-item-desc{
        font-size: 12px;
        line-height: 18px;
    }
}
@media only screen and (max-width: 1000px) {
    .about-warp{
        padding: 40px 0;
    }
    .about{
        width: 700px;
    }
    .about .about-content{
        margin-top: 20px;
    }
    .about .about-content .about-item{
        padding: 10px;
    }
    .about .about-content .about-item .about-item-icon{
        width: 24px;
        height: 24px;
    }
    .about .about-content .about-item .about-item-title{
        font-size: 14px;
        line-height: 16px;
        margin: 10px 0;
    }
    .about .about-content .about-item .about-item-desc{
        font-size: 12px;
        line-height: 18px;
    }
}

.service{
    width: 1200px;
    margin: 80px auto;
}
.service .service-content{
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
}
.service .service-content .service-content-item{
    width: 24%;
    cursor: pointer;
}
.service .service-content .service-content-item .service-img{
    width: 100%;
    aspect-ratio: 285 / 214;
    overflow: hidden;
}
.service .service-content .service-content-item .service-img img{
    width: 100%;
    height: 100%;
    transition: all 0.5s;
}
.service .service-content .service-content-item:hover .service-img img{
    transform: scale(1.1);
}
.service .service-content .service-content-item .service-title{
    font-weight: bold;
    font-size: 18px;
    color: #1A1A1A;
    line-height: 20px;
    margin-top: 20px;
}
.service .service-content .service-content-item .service-desc{
    font-size: 14px;
    color: #666666;
    line-height: 21px;
    margin-top: 10px;
}

@media only screen and (min-width: 1000px) and (max-width: 1440px) {
    .service{
        width: 900px;
        margin: 60px auto;
    }
    .service .service-content{
        margin-top: 30px;
    }
    .service .service-content .service-content-item .service-title{
        font-size: 16px;
        line-height: 18px;
        margin-top: 15px;
    }
    .service .service-content .service-content-item .service-desc{
        font-size: 12px;
        line-height: 18px;
        margin-top: 8px;
    }
}
@media only screen and (max-width: 1000px) {
    .service{
        width: 700px;
        margin: 40px auto;
    }
    .service .service-content{
        margin-top: 20px;
    }
    .service .service-content .service-content-item .service-title{
        font-size: 14px;
        line-height: 16px;
        margin-top: 10px;
    }
    .service .service-content .service-content-item .service-desc{
        font-size: 12px;
        line-height: 18px;
        margin-top: 8px;
    }
}



.news-warp{
    width: 100%;
    margin: 0 auto;
    padding: 80px 0;
    background: #F4F4F4;
}
.news{
    width: 1200px;
    margin: 0 auto;
}
.news .news-content{
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
}
.news .news-content .news-item{
    width: 32%;
    background: #FFFFFF;
}
.news .news-item .news-item-img{
    width: 100%;
    aspect-ratio: 386 / 290;
    overflow: hidden;
}
.news .news-item .news-item-img img{
    width: 100%;
    height: 100%;
    transition: all 0.5s;
}
.news .news-item:hover .news-item-img img{
    transform: scale(1.1);
}
.news .news-item .news-item-text{
    padding: 16px;
}
.news .news-item .news-item-text .news-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;
}
.news .news-item .news-item-text .news-desc{
    font-size: 14px;
    color: #666666;
    line-height: 21px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    margin-top: 10px;
}

@media only screen and (min-width: 1000px) and (max-width: 1440px) {
    .news-warp{
        padding: 60px 0;
    }
    .news{
        width: 900px;
    }
    .news .news-content{
        margin-top: 30px;
    }
    .news .news-item .news-item-text{
        padding: 12px;
    }
    .news .news-item .news-item-text .news-title{
        font-size: 16px;
        line-height: 24px;
    }
    .news .news-item .news-item-text .news-desc{
        font-size: 12px;
        line-height: 18px;
        margin-top: 8px;
    }
}
@media only screen and (max-width: 1000px) {
    .news-warp{
        padding: 40px 0;
    }
    .news{
        width: 700px;
    }
    .news .news-content{
        margin-top: 20px;
    }
    .news .news-item .news-item-text{
        padding: 8px;
    }
    .news .news-item .news-item-text .news-title{
        font-size: 14px;
        line-height: 21px;
    }
    .news .news-item .news-item-text .news-desc{
        font-size: 12px;
        line-height: 18px;
        margin-top: 4px;
    }
}


.partner{
    width: 1200px;
    margin: 80px auto;
}
.partner .partner-content{
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
}
.partner .partner-content .partner-item{
    width: 20%;
    aspect-ratio: 240 / 104;
    overflow: hidden;
}
.partner .partner-content .partner-item img{
    width: 100%;
    height: 100%;
    transition: all 0.5s;
}
.partner .partner-content .partner-item:hover img{
    transform: scale(1.1);
}

@media only screen and (min-width: 1000px) and (max-width: 1440px) {
    .partner{
        width: 900px;
        margin: 60px auto;
    }
    .partner .partner-content{
        margin-top: 30px;
    }
}
@media only screen and (max-width: 1000px) {
    .partner{
        width: 700px;
        margin: 40px auto;
    }
    .partner .partner-content{
        margin-top: 20px;
    }
}