/**
 * brands styles
 **/
.brands{
    width: 100%;
    padding: 60px 0;
    background: #E53F29;
}
.brands .brands-content{
    width: 1200px;
    margin: 0 auto;

}
.brands .brands-content .brands-title{
    font-weight: bold;
    font-size: 22px;
    color: #FFFFFF;
    line-height: 25px;
    text-align: center;
}
.brands .brands-content .brands-list{
    margin-top: 60px;
    position: relative;
}
.brands .swiper-slide img{
    width: 100%;
}

.brands .swiper-button-prev,
.brands .swiper-button-next{
    width: 20px;
    height: 20px;
    border: 1px solid #FFFFFF;
    top: 50%;
    transform: translateY(50%);
}
.brands .swiper-button-prev{
    left: -62px;
}
.brands .swiper-button-next{
    right: -62px;
}
.brands .swiper-button-prev::after,
.brands .swiper-button-next::after{
    font-size: 12px;
    color: #FFFFFF;
}


@media only screen and (min-width: 1000px) and (max-width: 1440px) {
    .brands .brands-content{
        width: 900px;
    }
}
@media only screen and (max-width: 1000px) {
    .brands .brands-content{
        width: 700px;
    }
}


/**
 * hot products styles
 **/
.hot-products {
    width: 1200px;
    margin: 80px auto 60px;
}
.hot-products .products-category {
    margin: 40px 0;
}
.hot-products .products-category .category-slide{
    height: 60px;
    background-color: #FFFFFF;
    font-size: 14px;
    color: #1C1C1C;
    line-height: 60px;
    text-align: center;
    cursor: pointer;
    border: 1px solid #B7B7B7;
}
.hot-products .products-category .category-slide.active{
    background-color: #1C1C1C;
    border-color: #1C1C1C;
    color: #FFFFFF;
}
.hot-products .products-category .category-slide.active::after{
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #1C1C1C;
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}


.hot-products .products{
    overflow: hidden;
}
.hot-products .products .products-list{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}
.hot-products .products .products-item{
    width: 48%;
    background-color: #FFFFFF;
    cursor: pointer;
    transition: all 0.3s;
    margin-bottom: 30px;
    margin-right: 2%;
}
.hot-products .products .products-item:nth-child(2n){
    margin-right: 0;
}
.hot-products .products .products-item .products-img{
    width: 287px;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border: 1px solid #B7B7B7;
    float: left;
}
.hot-products .products .products-item .products-img img{
    width: 100%;
    height: 100%;
    transition: all 0.3s;
}
.hot-products .products .products-item:hover img{
    transform: scale(1.1);
}
.hot-products .products .products-item .products-item-content{
    float: right;
    width: calc(100% - 307px);
    height: 100%;
    position: relative;
}
.hot-products .products .products-item .products-item-content .products-item-title{
    height: 54px;
    font-size: 18px;
    color: #1C1C1C;
    line-height: 30px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-top: -6px;
}
.hot-products .products .products-item .products-item-content .products-item-tag{
    margin-top: 16px;
    font-size: 12px;
    color: #6A6A6A;
    line-height: 16px;
}
.hot-products .products .products-item .products-item-bottom{
    position: absolute;
    bottom: 0;
    width: 100%;
}
.hot-products .products .products-item .products-item-price{
    font-weight: bold;
    font-size: 20px;
    color: #E53F29;
    line-height: 22px;
    margin-bottom: 20px;
}
.hot-products .products .products-item .products-item-quote{
    float: left;
    line-height: 40px;
    background: #1C1C1C;
    border-radius: 20px;
    padding: 0 20px;
    font-size: 16px;
    color: #FFFFFF;
}
.hot-products .products .products-item .products-item-cart{
    float: right;
    margin-top: 5px;
    display: flex;
}
.hot-products .products .products-item .products-item-cart .products-item-cart-btn{
    width: 30px;
    height: 30px;
    background-size: 100% 100%;
    background-repeat: no-repeat;
}
.hot-products .products .products-item .products-item-cart .products-item-cart-subtract{
    background-image: url("../images/product-subtract.webp");
}
.hot-products .products .products-item .products-item-cart .products-item-cart-num{
    margin: 0 10px;
    font-size: 16px;
    color: #1C1C1C;
    line-height: 30px;
}
.hot-products .products .products-item .products-item-cart .products-item-cart-add{
    background-image: url("../images/product-add.webp");
}

.hot-products .more{
    width: 168px;
    border: 1px solid #E53F29;
    font-size: 16px;
    color: #1C1C1C;
    line-height: 60px;
    text-align: center;
    margin: 0 auto;
}
.hot-products .more a{
    color: #1C1C1C;
}


@media only screen and (min-width: 1000px) and (max-width: 1440px) {
    .hot-products{
        width: 900px;
    }
    .hot-products .products .products-item .products-img{
        width: 215px;
    }
    .hot-products .products .products-item .products-item-content{
        width: calc(100% - 235px);
    }
    .hot-products .products .products-item .products-item-content .products-item-title{
        font-size: 16px;
        line-height: 24px;
        margin-top: -4px;
        height: 44px;
    }
    .hot-products .products .products-item .products-item-content .products-item-tag{
        margin-top: 5px;
    }
    .hot-products .products .products-item .products-item-price{
        margin-bottom: 10px;
    }
    .hot-products .products .products-item .products-item-quote{
        font-size: 14px;
        padding: 0 10px;
    }
    .hot-products .products .products-item .products-item-cart{
        margin-top: 10px;
    }
    .hot-products .products .products-item .products-item-cart .products-item-cart-btn{
        width: 25px;
        height: 25px;
    }
    .hot-products .more{
        line-height: 50px;
    }
}

@media only screen and (max-width: 1000px) {
    .hot-products{
        width: 700px;
    }
    .hot-products .products-category .category-slide{
        line-height: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .hot-products .products .products-item{
        width: 100%;
        margin-right: 0;
    }
    .hot-products .products .products-item .products-item-content .products-item-title{
        font-size: 16px;
        line-height: 24px;
        margin-top: -4px;
        height: 44px;
    }
    .hot-products .more{
        line-height: 50px;
    }
}



/**
 * CHOOSE STYLES
 **/
.choose{
    width: 100%;
    display: flex;
    align-items: center;
}
.choose .choose-left{
    width: 50%;
    aspect-ratio: 960 / 806;
    padding-left: calc( (100% - 1200px) / 2 );
    padding-right: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
}
.choose .choose-left .choose-left-title{
    font-weight: bold;
    font-size: 20px;
    color: #E53F29;
    line-height: 22px;
}
@font-face {
    font-family: 'AaHouDiHei';
    src: url('../fonts/AaHouDiHei-2.ttf') format('ttf');
}
.choose .choose-left .choose-left-subtitle{
    font-family: 'AaHouDiHei';
    font-size: 30px;
    color: #FFFFFF;
    line-height: 45px;
    margin: 25px 0;
}
.choose .choose-left .choose-left-desc{
    font-size: 16px;
    color: #FFFFFF;
    line-height: 30px;
}
.choose .choose-left .choose-left-content{
    margin-top: 40px;
}
.choose .choose-left .choose-left-content .choose-content-item{
    width: 100%;
}
.choose .choose-left .choose-left-content .choose-content-item .choose-content-item-circle-warp{
    width: 60px;
    height: 60px;
    background: rgba(229, 63, 41, 0.3);
    border-radius: 50%;
    float: left;
}
.choose .choose-left .choose-left-content .choose-content-item .choose-content-item-circle-warp .choose-content-item-circle{
    width: 42px;
    height: 42px;
    background: #E53F29;
    border-radius: 50%;
    margin: 9px;
    font-family: DIN, DIN;
    font-weight: bold;
    font-size: 24px;
    color: #FFFFFF;
    line-height: 42px;
    text-align: center;
}
.choose .choose-left .choose-left-content .choose-content-item .choose-content-item-text{
    margin-left: 20px;
    max-width: calc(100% - 80px);
    float: left;
}
.choose .choose-left .choose-left-content .choose-content-item .choose-content-item-text .choose-content-item-title{
    font-weight: bold;
    font-size: 20px;
    color: #FFFFFF;
    line-height: 22px;
}
.choose .choose-left .choose-left-content .choose-content-item .choose-content-item-text .choose-content-item-desc{
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 30px;
    margin-top: 10px;
}
.choose .choose-left .choose-left-content .choose-content-item .choose_content-item-line{
    width: 2px;
    height: 26px;
    background: #E53F29;
    margin: 16px 29px;
}
.choose .choose-right{
    width: 50%;
}
.choose .choose-right img{
    width: 100%;
}

@media only screen and (min-width: 1000px) and (max-width: 1440px) {
    .choose .choose-left{
        padding-left: calc( (100% - 900px) / 2 );
    }
    .choose .choose-left .choose-left-title{
        font-size: 18px;
    }
    .choose .choose-left .choose-left-subtitle{
        font-size: 24px;
        line-height: 36px;
        margin: 10px 0;
    }
    .choose .choose-left .choose-left-desc{
        font-size: 14px;
        line-height: 24px;
    }
    .choose .choose-left .choose-left-content{
        margin-top: 20px;
    }
    .choose .choose-left .choose-left-content .choose-content-item .choose-content-item-circle-warp{
        width: 48px;
        height: 48px;
    }
    .choose .choose-left .choose-left-content .choose-content-item .choose-content-item-circle-warp .choose-content-item-circle{
        width: 32px;
        height: 32px;
        margin: 8px;
        font-size: 18px;
        line-height: 32px;
    }
    .choose .choose-left .choose-left-content .choose-content-item .choose-content-item-text{
        margin-left: 10px;
        max-width: calc(100% - 60px);
    }
    .choose .choose-left .choose-left-content .choose-content-item .choose-content-item-text .choose-content-item-title{
        font-size: 16px;
        line-height: 18px;
    }
    .choose .choose-left .choose-left-content .choose-content-item .choose-content-item-text .choose-content-item-desc{
        font-size: 12px;
        line-height: 20px;
    }
    .choose .choose-left .choose-left-content .choose-content-item .choose_content-item-line{
        height: 20px;
        margin: 10px 24px;
    }
}

@media only screen and (max-width: 1000px) {
    .choose{
        flex-direction: column;
    }
    .choose .choose-left{
        width: 100%;
        padding: 0 calc((100% - 700px) / 2);
    }
    .choose .choose-right{
        width: 100%;
    }
}


/***
 * SERVICE STYLES
 **/
.service{
    width: 1200px;
    margin: 80px auto;
}
.service .service-list{
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.service .service-list .service-item{
    width: 32%;
    margin-top: 20px;
    cursor: pointer;
}
.service .service-list .service-item .service-item-icon{
    width: 80px;
    height: 80px;
    margin: 0 auto;
}
.service .service-list .service-item .service-item-icon img{
    width: 100%;
    height: 100%;
}
.service .service-list .service-item .service-item-icon img.active{
    display: none;
}
.service .service-list .service-item .service-item-text{
    width: 100%;
    height: 208px;
    margin-top: -40px;
    padding: 70px 20px 20px;
}
.service .service-list .service-item .service-item-text .service-item-text-title{
    font-weight: bold;
    font-size: 20px;
    color: #1C1C1C;
    line-height: 22px;
    text-align: center;
}
.service .service-list .service-item .service-item-text .service-item-text-desc{
    font-size: 14px;
    color: #6A6A6A;
    line-height: 30px;
    margin-top: 15px;
}
.service .service-list .service-item:hover .service-item-icon img.active{
    display: inline-block;
}
.service .service-list .service-item:hover .service-item-icon img.normal{
    display: none;
}
.service .service-list .service-item:hover .service-item-text{
    background: #F7F7F7;
}


@media only screen and (min-width: 1000px) and (max-width: 1440px) {
    .service{
        width: 900px;
    }
    .service .service-list .service-item .service-item-text{
        height: 180px;
        padding-top: 50px;
    }
    .service .service-list .service-item .service-item-text .service-item-text-title{
        font-size: 18px;
    }
    .service .service-list .service-item .service-item-text .service-item-text-desc{
        line-height: 24px;
    }
}

@media only screen and (max-width: 1000px) {
    .service{
        width: 700px;
    }
    .service .service-list .service-item{
        width: 48%;
    }
    .service .service-list .service-item .service-item-text{
        height: 160px;
        padding-top: 50px;
    }
    .service .service-list .service-item .service-item-text .service-item-text-title{
        font-size: 18px;
    }
    .service .service-list .service-item .service-item-text .service-item-text-desc{
        line-height: 21px;
    }
}