.product_wrap {
    padding-top: 0.8rem;
    background: #F8F8F8;
    padding-bottom: 1.5rem;
}

.product_wrap .main {
    display: flex;
    gap: 0.4rem;
}

.product_left {
    width: 2.6rem;
}

.product_left_head {
    width: 100%;
    height: 0.8rem;
    background: var(--c1);
    border-radius: 0.1rem 0rem 0rem 0rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product_left_head p {
    font-family: csb;
    font-size: 0.24rem;
    color: #FFFFFF;
}

.product_left_body {
    width: 100%;
    height: fit-content;
    padding-bottom: 0.37rem;
    background: #FFFFFF;
    box-shadow: 0rem 0rem 0.04rem 0.01rem rgba(99, 99, 99, 0.16);
    border-radius: 0rem 0rem 0.1rem 0.1rem;
}

.product_left_box {
    height: 0.58rem;
    border-bottom: 0.01rem solid #E5E5E5;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 0.25rem;
    position: relative;
    cursor: pointer;
}

.product_left_box::before {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: 0.04rem;
    height: 0;
    background: var(--c1);
    transition: 0.3s;
}

.product_left_box p {
    font-family: cm;
    font-size: 0.16rem;
    color: #666666;
    transition: 0.3s;
}

.product_left_box img {
    width: 0.06rem;
    height: 0.12rem;
    object-fit: contain;
    filter: grayscale(1) brightness(1.5);
    transition: 0.3s;
}

.product_left_box:hover p,
.product_left_box.active p {
    color: var(--c1);
}

.product_left_box:hover img,
.product_left_box.active img {
    filter: none;
}

.product_left_box:hover::before,
.product_left_box.active::before {
    height: 0.36rem;
}

.product_right{
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.product_right_box {
    width: calc((100% - 0.8rem)/3);
    height: fit-content;
    background: #FFFFFF;
    border-radius: 0rem 0rem 0rem 0rem;
}

.product_right_box .scale_box {
    width: 100%;
    height: 3.23rem;
}

.product_right_flex {
    padding-top: 0.12rem;
    padding-bottom: 0.22rem;
    margin: 0 0.35rem;
    display: flex;
    justify-content: space-between;
    position: relative;
}

.product_right_flex::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 0.01rem;
    background: #E2E2E2;
}

.product_right_flex::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 0;
    height: 0.01rem;
    background: var(--c1);
    z-index: 10;
    transition: 0.3s;
}

.product_right_flex_p {
    font-family: cm;
    font-size: 0.22rem;
    color: #1C1C1C;
}

.product_right_flex_img {
    width: 0.3rem;
    height: 0.3rem;
    background: #D6D6D6;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
}

.product_right_flex_img img {
    width: 0.06rem;
    height: 0.12rem;
    object-fit: contain;
}

.product_right_box:hover .product_right_flex::after {
    left: 0;
    width: 100%;
}

.product_right_box:hover .product_right_flex_img {
    background: var(--c2);
}

.product_right_box:hover {}

.product_right_box:hover {}

.product_right_box:hover {}