/**
 * banner styles
 **/
.banner{
    height: auto;
}
.banner .swiper-pagination-bullet{
    width: 13px;
    height: 13px;
    background-color: #FFFFFF;
    opacity: 1;
    border-radius: 7px;
}
.banner .swiper-pagination-bullet-active{
    width: 30px;
}
.banner .banner-content{
    position: absolute;
    top: calc(50% + 20px);
    left: var(--wp);
    transform: translateY(-50%);
    width: 669px;
    max-width: 50%;
    background: rgba(255, 255, 255, 0.65);
    padding: 50px 40px;
    bottom: auto;
}
.banner .banner-content .banner-title{
    font-weight: bold;
    font-size: 40px;
    color: #1A1A1A;
}
.banner .banner-content .banner-desc{
    font-size: 20px;
    color: #333333;
    margin-top: 30px;
}
.banner .banner-content .quote-btn{
    margin-top: 30px;
}

@media only screen and (min-width: 1000px) and (max-width: 1400px) {
    .banner .banner-content{
        padding: 30px;
    }
    .banner .banner-content .banner-title{
        font-size: 30px;
    }
    .banner .banner-content .banner-desc{
        font-size: 16px;
        margin-top: 20px;
    }
    .banner .banner-content .quote-btn{
        margin-top: 20px;
    }
}
@media only screen and (max-width: 768px) and (max-width: 1000px) {
    .banner .banner-content{
        padding: 20px;
    }
    .banner .banner-content .banner-title{
        font-size: 24px;
    }
    .banner .banner-content .banner-desc{
        font-size: 14px;
        margin-top: 10px;
    }
    .banner .banner-content .quote-btn{
        margin-top: 10px;
    }
}
@media only screen and (max-width: 768px) {
    .banner .banner-content{
        background: rgba(0, 0, 0, 0.2);
        max-width: 100%;
        height: 100%;
        padding: 0;
        left: 0;
        top: 50%;
    }
    .banner .banner-content .banner-title{
        max-width: 80%;
        font-size: 18px;
        text-align: center;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
        color: var(--cw);
    }
    .banner .banner-content .banner-desc,
    .banner .banner-content .quote-btn{
        display: none;
    }
    .banner .swiper-pagination-bullet{
        width: 6px;
        height: 6px;
        border-right: 3px;
    }
    .banner .swiper-pagination-bullet-active{
        width: 15px;
    }
}


/**
 * hot products styles
 **/
.product{
    padding: var(--wpt) var(--wp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
}
.product .product-category{
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    width: 100%;
    margin-top: 20px;
}
.product .product-category .product-category-item{
    padding-left: 5px;
    padding-right: 5px;
    flex: 0 0 20%;
    max-width: 100%;
    max-height: 100%;
}
.product .product-category .product-category-item a{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
    width: 100%;
    height: 44px;
    line-height: normal;
    max-width: 294px;
    border: 1px solid var(--c);
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
    border-radius: 5px;
    color: var(--c);
}
.product .product-category .product-category-item a:hover,
.product .product-category .product-category-item.active a{
    background: var(--c);
    color: var(--cw);
}


.product-list{
    margin-top: 30px;
    padding-bottom: 40px;
}
.product-item{
    padding: 15px 10px;
}
.product-item .product-item-content{
    width: 100%;
    padding: 50px 30px;
    background: #fff;
    height: 100%;
    transition: all 0.3s ease-in-out;
}
.product-item .product-item-category{
    font-weight: bold;
    font-size: 14px;
    color: var(--c);
    text-align: center;
}
.product-item .product-item-title{
    font-weight: bold;
    font-size: 26px;
    color: #333333;
    text-align: center;
}
.product-item .product-item-image{
    width: 100%;
    margin-top: 30px;
}
.product-item .product-item-image img{
    width: 100%;
    transition: all 0.3s ease-in-out;
}
.product-item .product-item-btn-wrap{
    display: flex;
    justify-content: space-between;
}
.product-item .product-item-btn{
    width: 48%;
    max-width: 150px;
    height: 48px;
    background: var(--cw);
    border-radius: 4px;
    border: 1px solid var(--c);
    font-size: 16px;
    color: var(--c);
    line-height: 46px;
    text-align: center;
    display: block;
}
.product-item .product-item-btn.product-item-consult{
    background: var(--c);
    color: var(--cw);
    cursor: pointer;
}
.product-item .product-item-btn:hover{
    background: var(--c);
    color: var(--cw);
}
.product-item:hover .product-item-content{
    box-shadow: 0 8px 8px rgba(0, 0, 0, 0.1);
}
.product-item:hover .product-item-image img{
    transform: scale(1.1);
}
.product-list .product-pagination{
    bottom: 18px;
    top: auto;
    width: calc(100% - 140px);
    left: 50%;
    transform: translateX(-50%);
}
.product-list .product-pagination .swiper-pagination-progressbar-fill{
    background: var(--c);
}
.product-list .product-prev,
.product-list .product-next{
    top: auto;
    bottom: 0;
    width: 40px;
    height: 40px;
}
.product-list .product-prev::after,
.product-list .product-next::after{
    content: "";
    width: 100%;
    height: 100%;
    background-image: url(../images/prev-active.webp);
    background-size: 100% 100%;
}
.product-list .product-next::after{
    background-image: url(../images/next-active.webp);
}
.product-list .product-prev.swiper-button-disabled::after{
    background-image: url(../images/prev.webp);
}
.product-list .product-next.swiper-button-disabled::after{
    background-image: url(../images/next.webp);
}
@media only screen and (min-width: 1000px) and (max-width: 1400px) {
    .product-item .product-item-content{
        padding: 40px 25px;
    }
    .product-item .product-item-title{
        font-size: 22px;
    }
    .product-item .product-item-image{
        margin-top: 20px;
    }
    .product-item .product-item-btn{
        height: 44px;
        line-height: 42px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 1000px) {
    .product-item .product-item-content{
        padding: 30px 20px;
    }
    .product-item .product-item-title{
        font-size: 18px;
    }
    .product-item .product-item-image{
        margin-top: 10px;
    }
    .product-item .product-item-btn{
        height: 40px;
        line-height: 38px;
    }
}
@media only screen and (max-width: 768px) {
    .product{
        padding: 40px 10px;
    }
    .product .product-category{
        display: none;
    }
    .product-list{
        margin-top: 20px;
        padding-bottom: 30px;
    }
    .product-item .product-item-content{
        padding: 10px;
    }
    .product-item .product-item-category{
        font-size: 12px;
    }
    .product-item .product-item-title{
        font-size: 16px;
    }
    .product-item .product-item-image{
        margin-top: 10px;
    }
    .product-item .product-item-btn{
        height: 36px;
        line-height: 34px;
        font-size: 14px;
    }
    .product-list .product-prev, .product-list .product-next{
        width: 30px;
        height: 30px;
    }
    .product-list .product-pagination{
        bottom: 12px;
        width: calc(100% - 100px);
    }
}


/**
 * application styles
 **/
.application{
    padding: var(--wpt) var(--wp);
    background-repeat: no-repeat;
    background-position: left bottom;
    display: flex;
    justify-content: space-between;
}
.application .app-content{
    width: 30%;
    padding-right: 50px;
}
.application .app-content .sub-title,
.application .app-content .title,
.application .app-content .description{
    text-align: left;
}
.application .app-content .description{
    margin-top: 30px;
}
.application .app-list{
    width: 70%;
    display: flex;
}
.application .app-list .app-item{
    width: 33.33%;
    position: relative;
}
.application .app-list .app-item .app-item-image{
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    clip-path: polygon(15% 0%, 100% 0%, 85% 100%, 0% 100%) !important;
    transition: transform 0.3s ease;
}
.application .app-list .app-item .app-item-title{
    height: 60px;
    text-align: center;
    color: rgba(255, 255, 255, 1);
    background-color: rgba(0, 0, 0, 1);
    font-size: 20px;
    line-height: 60px;
    position: absolute;
    width: 200px;
    bottom: 30px;
    z-index: 3;
}

@media only screen and (min-width: 1000px) and (max-width: 1400px) {
    .application .app-content{
        padding-right: 40px;
    }
    .application .app-content .description{
        margin-top: 20px;
    }
    .application .app-list .app-item .app-item-title{
        width: 160px;
        height: 50px;
        line-height: 50px;
        font-size: 16px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 1000px) {
    .application .app-content{
        padding-right: 30px;
    }
    .application .app-content .description{
        margin-top: 10px;
    }
    .application .app-list .app-item .app-item-title{
        width: 140px;
        height: 40px;
        line-height: 40px;
        font-size: 14px;
    }
}
@media only screen and (max-width: 768px) {
    .application{
        padding: 40px 10px;
        flex-direction: column;
    }
    .application .app-content{
        width: 100%;
    }
    .application .app-content .description{
        margin-top: 10px;
    }
    .application .app-list{
        width: 100%;
        margin-top: 20px;
        flex-direction: column;
    }
    .application .app-list .app-item{
        width: 100%;
    }
    .application .app-list .app-item .app-item-title{
        height: 40px;
        line-height: 40px;
        font-size: 16px;
    }
}



/**
 * service styles
 **/
.service{
    padding: var(--wpt) var(--wp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
}
.service .sub-title,
.service .title,
.service .description{
    color: var(--cw);
}
.service .service-list{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.service .service-list .service-item{
    width: 49%;
    position: relative;
    border: 1px rgba(255, 255, 255, 0.5) solid;
    border-top-right-radius: 50px;
    border-bottom-left-radius: 50px;
    background: rgba(255, 255, 255, .1);
    backdrop-filter: blur(20px);
    margin-top: 50px;
    padding: 30px;
    color: var(--cw);
    display: flex;
    flex-direction: column;
}
.service .service-list .service-item:nth-child(-n+3){
    width: 32%;
}
.service .service-list .service-item .service-item-num{
    text-align: right;
    font-size: 18px;
}
.service .service-list .service-item .service-item-title{
    font-size: 20px;
    margin: 20px 0;
}
.service .service-list .service-item .service-item-desc{
    font-size: 18px;
    flex: 1;
}
.service .service-list .service-item .service-item-bottom{
    margin-top: 50px;
    display: flex;
}
.service .service-list .service-item .service-item-img{
    width: 60px;
    height: 60px;
    margin-left: auto;
    margin-right: 0;
}
.service .service-list .service-item .service-item-btn{
    display: block;
    width: 150px;
    height: 48px;
    background: var(--c);
    border-radius: 4px;
    font-size: 16px;
    color: var(--cw);
    line-height: 48px;
    text-align: center;
}
@media only screen and (min-width: 1000px) and (max-width: 1400px) {
    .service .service-list .service-item{
        border-top-right-radius: 40px;
        border-bottom-left-radius: 40px;
        margin-top: 40px;
        padding: 20px;
    }
    .service .service-list .service-item .service-item-num{
        font-size: 16px;
    }
    .service .service-list .service-item .service-item-title{
        font-size: 18px;
        margin: 10px 0;
    }
    .service .service-list .service-item .service-item-desc{
        font-size: 16px;
    }
    .service .service-list .service-item .service-item-bottom{
        margin-top: 30px;
    }
    .service .service-list .service-item .service-item-img{
        width: 50px;
        height: 50px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 1000px) {
    .service .service-list .service-item{
        border-top-right-radius: 30px;
        border-bottom-left-radius: 30px;
        margin-top: 30px;
        padding: 10px;
    }
    .service .service-list .service-item .service-item-num{
        font-size: 14px;
    }
    .service .service-list .service-item .service-item-title{
        font-size: 16px;
        margin: 0 0 5px;
    }
    .service .service-list .service-item .service-item-desc{
        font-size: 14px;
    }
    .service .service-list .service-item .service-item-bottom{
        margin-top: 10px;
    }
    .service .service-list .service-item .service-item-img{
        width: 40px;
        height: 40px;
    }
    .service .service-list .service-item .service-item-btn{
        width: 120px;
        height: 40px;
        font-size: 14px;
        line-height: 40px;
    }
}
@media only screen and (max-width: 768px) {
    .service{
        padding: 40px 10px;
    }
    .service .service-list .service-item{
        width: 100%!important;
        border-top-right-radius: 20px;
        border-bottom-left-radius: 20px;
        margin-top: 20px;
        padding: 10px;
    }
    .service .service-list .service-item .service-item-num{
        font-size: 12px;
    }
    .service .service-list .service-item .service-item-title{
        font-size: 16px;
        margin: 0 0 5px;
    }
    .service .service-list .service-item .service-item-desc{
        font-size: 12px;
    }
    .service .service-list .service-item .service-item-bottom{
        margin-top: 10px;
    }
    .service .service-list .service-item .service-item-img{
        width: 40px;
        height: 40px;
    }
    .service .service-list .service-item .service-item-btn{
        width: 100px;
        height: 36px;
        font-size: 14px;
        line-height: 36px;
    }
}


/**
 * about styles
 **/
.about{
    padding: var(--wpt) var(--wp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
}
.title-wrap{
    display: flex;
    justify-content: space-between;
}
.title-wrap .title-left{
    max-width: 85%;
}
.title-wrap .sub-title,
.title-wrap .title,
.title-wrap .description{
    text-align: left;
}
.title-wrap .title-right{
    font-size: 20px;
    color: var(--c);
    text-align: right;
}
.title-wrap .title-right .about-year {
    font-size: clamp(28px, 3.125vw, 90px);
    font-weight: bold;
}
.about-more{
    display: block;
    width: 150px;
    height: 48px;
    background: #000000;
    border-radius: 4px;
    font-size: 16px;
    color: #FFFFFF;
    line-height: 48px;
    text-align: center;
}
.about .about-more{
    margin-top: 100px;
}
.about-more:hover{
    background: var(--c);
    color: #FFFFFF;
}
.company-list{
    display: flex;
    justify-content: space-between;
}
.company-list .company-item{
    width: 24%;
    aspect-ratio: 4 / 3;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}
.company-list .company-item img{
    width: 100%;
    height: 100%;
    transition: all .3s ease-in-out;
}
.company-list .company-item .company-item-title{
    line-height: normal;
    padding: 10px 20px;
    text-align: center;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    width: 220px;
    position: absolute;
    bottom: 30px;
}
.company-list .company-item:hover img{
    transform: scale(1.1);
}

@media only screen and (min-width: 1000px) and (max-width: 1400px) {
    .about .about-more{
        margin-top: 60px;
    }
    .company-list .company-item .company-item-title{
        width: 180px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 1000px) {
    .about .about-more{
        margin-top: 20px;
    }
    .company-list{
        flex-wrap: wrap;
    }
    .company-list .company-item{
        width: 49%;
        margin-top: 20px;
    }
}
@media only screen and (max-width: 768px) {
    .about{
        padding: 40px 10px;
    }
    .about .about-more{
        margin-top: 10px;
        width: 120px;
        height: 40px;
        line-height: 40px;
        font-size: 14px;
    }
    .company-list{
        flex-wrap: wrap;
    }
    .company-list .company-item{
        width: 100%;
        margin-top: 10px;
    }
    .company-list .company-item .company-item-title{
        padding: 10px;
    }
}



/**
 * news styles
 **/
.news{
    padding: var(--wpt) var(--wp);
    background: #F8F8F8;
}
.news .title-wrap{
    align-items: center;
}
.news-list{
    display: flex;
    margin-top: 40px;
}
.news-list .news-item{
    width: 32%;
    margin-right: 2%;
    background: var(--cw);
    overflow: hidden;
    position: relative;
}
.news-list .news-item:last-child{
    margin-right: 0;
}
.news-list .news-item .news-item-img{
    width: 100%;
    aspect-ratio: 539 / 303;
}
.news-list .news-item .news-item-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .3s ease-in-out;
}
.news-list .news-item .news-item-content{
    padding: 20px;
}
.news-list .news-item .news-item-title{
    font-weight: bold;
    font-size: 18px;
    color: #000000;
    -webkit-line-clamp: 1;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.news-list .news-item .news-item-date{
    font-weight: bold;
    font-size: 14px;
    color: var(--c);
    margin-top: 10px;
}
.news-list .news-item .news-item-desc{
    font-size: 14px;
    color: #000000;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-top: 10px;
}
.news-list .news-item:hover .news-item-img img{
    transform: scale(1.1);
}
.news-list .news-item:hover .news-item-title{
    color: var(--c);
}
.news-list .news-item::after{
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 4px;
    background: var(--c);
    transition: all .5s ease;
    transform: translateX(0%);
}
.news-list .news-item:hover::after{
    width: 100%;
}

@media only screen and (min-width: 1000px) and (max-width: 1400px) {
    .news-list .news-item .news-item-content{
        padding: 15px;
    }
    .news-list .news-item .news-item-title{
        font-size: 16px;
    }
    .news-list .news-item .news-item-date,
    .news-list .news-item .news-item-desc{
        margin-top: 6px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 1000px) {
    .news-list{
        margin-top: 30px;
    }
    .news-list .news-item .news-item-content{
        padding: 10px;
    }
    .news-list .news-item .news-item-title{
        font-size: 14px;
    }
    .news-list .news-item .news-item-date,
    .news-list .news-item .news-item-desc{
        margin-top: 2px;
        font-size: 12px;
    }
}
@media only screen and (max-width: 768px) {
    .news{
        padding: 40px 10px;
    }
    .about-more{
        width: 120px;
        height: 40px;
        line-height: 40px;
        font-size: 14px;
    }
    .news-list{
        margin-top: 20px;
        flex-wrap: wrap;
    }
    .news-list .news-item{
        margin-top: 10px;
        width: 100%;
    }
    .news-list .news-item .news-item-content{
        padding: 10px;
    }
    .news-list .news-item .news-item-title{
        font-size: 14px;
    }
    .news-list .news-item .news-item-date,
    .news-list .news-item .news-item-desc{
        margin-top: 2px;
        font-size: 12px;
    }
}





/**
 * quote styles
 **/
.quote{
    padding: 0 var(--wp) var(--wpt);
    background: #F8F8F8;
}
.quote .quote-title{
    font-weight: bold;
    font-size: 26px;
    color: var(--c);
}
.quote .quote-line{
    width: 100%;
    height: 4px;
    background: var(--c);
    margin-top: 10px;
}
.quote .quote-desc{
    font-size: 16px;
    color: #666666;
    margin-top: 40px;
}
.quote .quote-form{
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.quote .quote-form .quote-item{
    width: 32%;
    margin-top: 20px;
}
.quote .quote-form .quote-item .quote-item-title{
    font-size: 16px;
    color: #333333;
    margin-bottom: 10px;
}
.quote .quote-form .quote-item .quote-item-title span{
    color: var(--c);
}
.quote .quote-form .quote-item .quote-item-input{
    width: 100%;
    height: 35px;
    border-radius: 4px;
    border: 1px solid #E0E0E0;
    font-size: 16px;
    outline: none;
    padding-left: 14px;
    background: transparent;
}
.quote .quote-form .quote-content{
    width: 100%;
}
.quote .quote-form .quote-content .quote-item-content{
    width: 100%;
    height: 300px;
    border: 1px solid #E0E0E0;
    border-radius: 4px;
    outline: none;
    resize: none;
    padding: 10px 14px;
    font-size: 16px;
    background: transparent;
}
.quote .quote-form .quote-item .quote-item-input::placeholder,
.quote .quote-form .quote-item .quote-item-content::placeholder{
    color: #999999;
}
.quote .quote-form .quote-btn {
    width: 100%;
    margin-top: 14px;
}

@media only screen and (min-width: 1000px) and (max-width: 1400px) {
    .quote .quote-title{
        font-size: 22px;
    }
    .quote .quote-line{
        margin-top: 8px;
    }
    .quote .quote-desc{
        font-size: 15px;
        margin-top: 30px;
    }
    .quote .quote-form{
        margin-top: 10px;
    }
    .quote .quote-form .quote-item{
        margin-top: 10px;
    }
    .quote .quote-form .quote-item .quote-item-title{
        font-size: 15px;
        margin-bottom: 8px;
    }
    .quote .quote-form .quote-item .quote-item-input{
        font-size: 15px;
    }
    .quote .quote-form .quote-content .quote-item-content{
        height: 240px;
        font-size: 15px;
    }
    .quote .quote-form .quote-btn{
        margin-top: 10px;
    }
}
@media only screen and (max-width: 1000px) {
    .quote .quote-title{
        font-size: 18px;
    }
    .quote .quote-line{
        margin-top: 6px;
    }
    .quote .quote-desc{
        font-size: 14px;
        margin-top: 20px;
    }
    .quote .quote-form{
        margin-top: 0;
    }
    .quote .quote-form .quote-item{
        margin-top: 10px;
    }
    .quote .quote-form .quote-item .quote-item-title{
        font-size: 14px;
        margin-bottom: 6px;
    }
    .quote .quote-form .quote-item .quote-item-input{
        font-size: 14px;
    }
    .quote .quote-form .quote-content .quote-item-content{
        height: 200px;
        font-size: 14px;
    }
    .quote .quote-form .quote-btn{
        margin-top: 6px;
    }
}
@media only screen and (max-width: 768px) {
    .quote{
        padding: 0 10px 40px;
    }
    .quote .quote-form .quote-item{
        width: 100%;
    }
    .quote .quote-form .quote-item .quote-item-input{
        font-size: 12px;
        padding-left: 5px;
    }
}