/**
 * banner styles
 **/
.banner .swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
.banner .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet{
    width: 30px;
    height: 2px;
    background-color: #FFFFFF;
    border-radius: 0;
    margin: 0 4px;
    opacity: 1;
}
.banner .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet-active{
    background-color: #1E5CB3;
}

.banner{
    position: relative;
}
.banner .swiper-slide-text{
    position: absolute;
    top: calc(50% + 35px);
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1516px;
    z-index: 1;
    text-align: center;
}
.banner .swiper-slide-text .swiper-slide-text-title{
    font-weight: bold;
    font-size: 60px;
    color: #FFFFFF;
    line-height: 75px;
}
.banner .swiper-slide-text .swiper-slide-text-content{
    font-size: 30px;
    color: #FFFFFF;
    line-height: 45px;
}

@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: 40px;
    }
    .banner .swiper-slide-text .swiper-slide-text-content{
        font-size: 20px;
        line-height: 40px;
    }
}
@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: 30px;
    }
    .banner .swiper-slide-text .swiper-slide-text-content{
        font-size: 16px;
        line-height: 30px;
    }
}

/**
 * hot products styles
 **/
.hot-products {
    width: 1200px;
    margin: 60px auto;
}
.index-title .index-title-text{
    font-weight: bold;
    font-size: 40px;
    color: #000000;
    line-height: 48px;
    float: left;
}
.index-title-more{
    width: 181px;
    height: 46px;
    font-size: 14px;
    color: #262626;
    line-height: 46px;
    float: right;
    cursor: pointer;
    text-align: center;
    border: 1px solid #E6E6E6;
}
.index-title-more a{
    color: #666666;
}
.index-title-more .active{
    display: none;
}
.index-title-more:hover{
    border-color: #1562C5;
}
.index-title-more:hover a{
    color: #1562C5;
}
.index-title-more:hover .active{
    display: inline-block;
}
.index-title-more:hover .normal{
    display: none;
}

.hot-products .products{
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
}
.hot-products .products .products-list{
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.hot-products .products .products-list li{
    width: 24%;
    background-color: #FFFFFF;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 40px;
}
.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: 15px 0 5px;
    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 .product-list-more{
    font-size: 14px;
    color: #1562C5;
    margin-top: 10px;
}
.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;
    }
    .hot-products .products .products-list li .product-list-title{
        font-size: 14px;
        line-height: 20px;
        height: 50px;
    }
}

@media only screen and (max-width: 1000px) {
    .hot-products{
        width: 700px;
    }
    .hot-products .products .products-list li .product-list-title{
        font-size: 12px;
        line-height: 18px;
        height: 46px;
    }
}

.about-warp{
    width: 100%;
    margin: 60px auto 0;
    background-repeat: no-repeat;
    background-size: 100% 100%;
}
.about{
    width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
}
.about .about-content{
    margin-top: 50px;
    display: flex;
    align-items: center;
}
.about .about-content img.about-img{
    width: 51.7%;
}
.about .about-content .about-right{
    width: 43.3%;
    margin-left: 5%;
}
.about .about-content .about-right .about-title{
    font-weight: bold;
    font-size: 20px;
    color: #333333;
    line-height: 20px;
}
.about .about-content .about-right .about-line{
    width: 36px;
    height: 2px;
    margin: 20px 0;
    background-color: #1562C5;
}
.about .about-content .about-right .about-desc{
    font-size: 14px;
    color: #1A1A1A;
    line-height: 24px;
}


@media only screen and (min-width: 1000px) and (max-width: 1440px) {
    .about{
        width: 900px;
    }
    .about .about-content .about-right{
        padding: 10px;
    }
}
@media only screen and (max-width: 1000px) {
    .about{
        width: 700px;
    }
    .about .about-content .about-right .about-desc{
        font-size: 12px;
        line-height: 18px;
    }
}

.partner{
    width: 1200px;
    margin: 0 auto;
    position: relative;
}
.partner .title span{
    color: #1E5CB3;
}
.partner .partner-line{
    width: 100%;
    height: 1px;
    background: #EEEEEE;
    margin-top: 40px;
}
.partner .partner-content{
    width: 100%;
    overflow: hidden;
}
.partner .partner-content .swiper-slide{
}
.partner .partner-content .swiper-slide img{
    width: 100%;
    transition: all 0.3s;
    cursor: pointer;
}
.partner .partner-content .swiper-slide:hover img{
    transform: scale(1.1);
}
.partner .partner-content .swiper-pagination-partner{
    margin-top: 40px;
    display: flex;
    justify-content: center;
}
.partner .partner-swiper-button-next,
.partner .partner-swiper-button-prev{
    opacity: 1!important;
    width: 42px;
    height: 42px;
    background-repeat: no-repeat;
    background-size: 100% 100%;
}
.swiper-button-prev:after,
.swiper-button-next:after{
    content: '';
}
.partner .partner-swiper-button-prev{
    background-image: url("../images/arrow-left-active.webp");
    left: -62px;
}
.partner .partner-swiper-button-prev.swiper-button-disabled{
    background-image: url("../images/arrow-left.webp");
}
.partner .partner-swiper-button-next{
    background-image: url("../images/arrow-right-active.webp");
    right: -62px;
}
.partner .partner-swiper-button-next.swiper-button-disabled{
    background-image: url("../images/arrow-right.webp");
}

@media only screen and (min-width: 1000px) and (max-width: 1440px) {
    .partner{
        width: 900px;
    }
}
@media only screen and (max-width: 1000px) {
    .partner{
        width: 700px;
    }
    .partner .partner-swiper-button-next, .partner .partner-swiper-button-prev{
        width: 30px;
        height: 30px;
        margin-top: -15px;
    }
}



.create{
    width: 100%;
    aspect-ratio: 1920 / 800;
    position: relative;
    color: #FFFFFF;
}
.create .create-bg{
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
}
.create .create-bg img{
    width: 100%;
    height: 100%;
}
.create .create-content{
    width: 1200px;
    margin: 0 auto;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: calc((100% - 1200px) / 2);
}
.create .create-content .create-content-left{
    width: 61.25%;
}
.create .create-content .create-content-title{
    font-weight: bold;
    font-size: 30px;
    line-height: 56px;
}
.create .create-content .create-content-list{
    margin-top: 20px;
}
.create .create-content .create-content-list .create-content-item{
    width: 50%;
    margin-top: 80px;
    font-weight: bold;
    font-size: 40px;
    line-height: 24px;
    float: left;
    color: transparent;
    text-stroke: 1px #FFFFFF;
    -webkit-text-stroke: 1px #FFFFFF;
}
.create .create-content .create-content-list .create-content-item span{
    cursor: pointer;
}
.create .create-content .create-content-list .create-content-item span:hover{
    color: #FFFFFF;
    text-stroke: unset;
    -webkit-text-stroke: unset;
}
.create .create-content .create-content-right{
    width: 38.75%;
    margin-top: -150px;
    float: right;
}
.create .create-content .create-content-right .create-content-right-title{
    font-weight: bold;
    font-size: 28px;
    line-height: 40px;
    text-align: right;
}
.create .create-content .create-content-right .create-content-right-content{
    font-weight: bold;
    font-size: 14px;
    line-height: 30px;
    text-align: right;
    margin-top: 40px;
}
.create .index-title-more{
    margin-top: 60px;
}
.create .index-title-more a{
    color: #FFFFFF;
}
.create .index-title-more:hover a{
    color: #1562C5;
}

@media only screen and (min-width: 1000px) and (max-width: 1440px) {
    .create .create-content{
        width: 900px;
        left: calc((100% - 900px) / 2);
    }
    .create .create-content .create-content-title{
        font-size: 24px;
        line-height: 40px;
    }
    .create .create-content .create-content-list .create-content-item{
        font-size: 32px;
        margin-top: 60px;
    }
    .create .create-content .create-content-right .create-content-right-content{
        margin-top: 20px;
    }
    .create .index-title-more{
        margin-top: 40px;
    }
}
@media only screen and (max-width: 1000px) {
    .create .create-content{
        width: 700px;
        left: calc((100% - 700px) / 2);
    }
    .create .create-content .create-content-title{
        font-size: 20px;
        line-height: 30px;
    }
    .create .create-content .create-content-list .create-content-item{
        font-size: 24px;
        margin-top: 40px;
    }
    .create .create-content .create-content-right .create-content-right-content{
        margin-top: 10px;
        font-size: 12px;
        line-height: 20px;
    }
    .create .index-title-more{
        margin-top: 10px;
        width: 120px;
        height: 30px;
        line-height: 30px;
        font-size: 12px;
    }
}



.market{
    width: 100%;
    background-color: #F8F8F8;
    padding: 100px 0;
}
.market .market-title{
    width: 1200px;
    font-weight: bold;
    font-size: 36px;
    color: #1A1A1A;
    line-height: 56px;
    margin: 0 auto;
}


.market .market-customer{
    width: 1200px;
    margin: 40px auto 0;
    display: flex;
    justify-content: space-between;
    text-align: center;
}
.market .market-customer-item{
    cursor: pointer;
}
.market .market-customer-item .market-customer-item-img{
    width: 124px;
    height: 84px;
    overflow:  hidden;
}
.market .market-customer-item .market-customer-item-img img{
    width: 100%;
    height: 100%;
    transition: all 0.3s ease-in-out;
}
.market .market-customer-item .market-customer-item-title{
    width: 100%;
    font-size: 14px;
    color: #1A1A1A;
    margin-top: 10px;
}
.market .market-customer-item .market-customer-item-img:hover img{
    transform: scale(1.1);
}

@media only screen and (min-width: 1000px) and (max-width: 1440px) {
    .market .market-title{
        width: 900px;
    }
    .market .market-customer{
        width: 900px;
    }
    .market .market-customer-item .market-customer-item-img{
        width: 100px;
        height: 68px;
    }
    .market .market-customer-item .market-customer-item-title{
        font-size: 12px;
    }
}
@media only screen and (max-width: 1000px) {
    .market .market-title{
        width: 700px;
        font-size: 24px;
        line-height: 36px;
    }
    .market .market-customer{
        width: 700px;
    }
    .market .market-customer-item .market-customer-item-img{
        width: 80px;
        height: 54px;
    }
    .market .market-customer-item .market-customer-item-title{
        font-size: 12px;
    }
}