.products-list {
    width: 24%;
    margin-right: 1%;
}

.product-products {
    width: 90%;
    margin: auto;
}

.product-products .product {
    text-align: center;
    background: #F5F5F5;
    margin-bottom: 40px;
}

.product-products .product .product-list {
    width: 99%;
    padding-bottom: 24px;
    background: #fff;
    border-radius: 24px;
}

.product-products img {
    width: 100%;
    border-radius: 24px 24px 0px 0px;
}

.product-products .product .product-list .product-name {
    margin-top: 40px;
    font-size: 20px;
    font-family: PingFang SC, PingFang SC;
    font-weight: 600;
    color: #000000;
    line-height: 20px;
}

.product-products .product .product-list .product-desc {
    margin-top: 12px;
    font-size: 12px;
    font-family: PingFang SC, PingFang SC;
    font-weight: 400;
    color: #757575;
    line-height: 17px;
}

.product-products .product .product-list .product-btn {
    margin-top: 12px;
    font-size: 13px;
    font-family: PingFang SC, PingFang SC;
    font-weight: 600;
    color: #000000;
    line-height: 13px;
    cursor: pointer;
}

.product-products .product .product-list .product-btn:hover {
    color: #E5002D;
}

.product-products .product .btn-product {
    position: relative;
    top: -50px;
    right: -420px;
    height: 32px;
    width: 100px;
    background-image: url('../images/btn-product-normal.png');
    background-size: cover;
    transition: background-image 0.3s ease;
    /* 添加平滑过渡效果 */
}

.product-products .product .btn-product:hover {
    background-image: url('../images/btn-product-active.png');
    cursor: pointer;
}

/* 详情页面css */

.detail {
    background: #fff;
    padding-top: 20px;
    padding-bottom: 20px;
}

.detail .detail-top {
    height: 78px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0px 12px;
}

.detail .detail-title {
    padding-left: 65px;
    font-size: 24px;
    font-family: PingFang SC, PingFang SC;
    font-weight: 600;
    color: #000000;
    line-height: 78px;
}

.detail .detail-btn {
    display: flex;
    cursor: pointer;
}

.detail .detail-btn .detail-btn1 {
    font-size: 16px;
    font-family: PingFang SC, PingFang SC;
    font-weight: 600;
    color: #000000;
    line-height: 78px;
    margin-right: 20px;
}

.detail .detail-btn .active {
    color: #E5002D;
}

.detail .detail-btn .detail-btn2 {
    width: 120px;
    height: 40px;
    line-height: 40px;
    background: #E5002D;
    border-radius: 8px 8px 8px 8px;
    opacity: 1;
    color: #fff;
    text-align: center;
    margin-top: 20px;
}

.detail .detail-content {
    margin: auto;
    overflow: hidden;
}

.detail .detail-content img {
    width: 100%;
}