body{
    background: #920700;
}
.product-item{
    display: block;
    background: #fff;
    border-radius: 16px;
    padding: 10px 10px 20px;
}
.product-item .main-img{
    position: relative;
    aspect-ratio: 1;
    width: 100%;
}
.product-item .main-img .img{
    width: 100%;
    height: 100%;
    border-radius: 8px 8px 8px 8px;
    object-fit: contain;
}
.product-item .main-img .tag{
    position: absolute;
    width: 32px;
    object-fit: contain;
    left: 0;
    top: -5px;
}
.product-item .main-img .save-btn{
    width: 32px;
    height: 32px;
    background: rgba(0,0,0,0.1);
    border-radius: 30px 30px 30px 30px;
    position: absolute;
    bottom: 10px;
    right: 10px;
    backdrop-filter: blur(4px);
    cursor: pointer;
    font-size: 18px;
    color: #fff;
    text-align: center;
    line-height: 32px;
}
.product-item .main-img .save-btn:hover{
    background: var(--light-color);
    color: var(--base-color);
}
.product-item ._btm-info{
    padding: 20px 10px 0;
}
.product-item ._btm-info ._name{
    font-size: 16px;
    color: #333333;
    line-height: 22px;
    height: 22px;
    font-weight: bold;
}
.product-item ._btm-info ._desc{
    margin-top: 10px;
    font-size: 12px;
    color: #666666;
    line-height: 17px;
    height: 17px;
    margin-bottom: 15px;
}
.product-item ._btm-info ._price{
    font-size: 14px;
    color: #CA252D;
    font-weight: bold;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.product-item ._btm-info ._req-btn{
    background: #F5F6FA;
    border-radius: 30px 30px 30px 30px;
    padding: 6px 20px;
    cursor: pointer;
    font-size: 14px;
    color: #333333;
    line-height: 20px;
    white-space: nowrap;
    font-weight: bold;
}
.product-item ._btm-info ._req-btn:hover{
    color: var(--base-color);
    background: var(--light-color);
}
.banner{
    height: 260px;
display: flex;
    align-items: center;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.banner .text dt{
    font-size: 40px;color: #FFFFFF;
    margin-bottom: 0px;
}
.banner .text p{
    font-size: 20px;color: #FFFFFF;
}
.PopularProducts .hd{
    margin:20px 0;
    border-radius: 8px 8px 8px 8px;
    background: #fff;
    overflow: auto;
}
.PopularProducts .hd .list{
    display: flex;
}
.PopularProducts .hd .list .item{
    width: 260px;
    height: 40px;line-height: 40px;font-size: 16px;color: #333333;
    text-align: center;
    cursor: pointer;
}
.PopularProducts .hd .list .item.on{
    background: linear-gradient( 270deg, #FC573F 0%, #CA252D 100%);
    color: #fff;
}
.bot03{
    display: flex;
    justify-content: center;
    margin-top: 40px;
    margin-bottom: 100px;
}
.bot03 .btn{
    width: 183px;
    height: 32px;
    background: #F5F6FA;
    border-radius: 30px 30px 30px 30px;
    display: flex;
    align-items: center;
    justify-content: center;font-size: 14px;color: #333333;
    gap: 10px;
}
.bot03 .btn i{
    font-size: 14px;
}
@media (max-width: 768px) {
    .product-item ._btm-info {
        padding: 20px 0 0;
    }
    .product-item ._btm-info ._req-btn{
        padding: 6px 10px;
        font-size: 12px;
    }
}
