.product_read_box {
    width: 100%;
    padding-top: calc(30px + 5rem);

}

.product_read {
    max-width: 1440px;
    width: 85%;
    margin: auto;
}

.product_read_main {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product_read_pic {
    width: 52.5%;
    height: calc(72px + 20rem);
}

.product_read_pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product_read_right {
    width: 42.2222%;
}

.product_read_right .p1 {
    font-family: Alibaba;
    font-size: calc(4px + 1.5rem);
    color: #971D32;
    line-height: calc(8px + 2rem);
    margin-bottom: calc(6px + 1.5rem);
}

.product_read_right .p2 .p2_title {
    font-family: pingfang_regular;
    font-weight: 400;
    font-size: calc(2px + 1rem);
    color: #333333;
    line-height: calc(10px + 1rem);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: calc(5px + 0.25rem);
}

.product_read_right .p2 .p2_title .dot {
    width: calc(5px + 0.25rem);
    height: calc(5px + 0.25rem);
    background: #971D32;
    border-radius: 50%;
}

.product_read_right .p2 .p3 {
    font-family: pingfang_regular;
    font-weight: 400;
    font-size: calc(6px + 0.5rem);
    color: #666666;
    line-height: calc(10px + 1rem);
    text-align: justify;
    margin-top: calc(2px + 0.5rem);
}

.product_read_details {
    width: 100%;
    margin-top: calc(10px + 5rem);
}

.product_read_details_title {
    width: 100%;
    line-height: calc(4px + 3rem);
    background: #971D32;
    text-align: center;
    font-family: pingfang_medium;
    font-weight: 500;
    font-size: calc(4px + 1rem);
    color: #FFFFFF;

}

.product_read_details_con {
    font-family: pingfang_regular;
    font-weight: 400;
    font-size: calc(6px + 0.5rem);
    color: #666666;
    line-height: calc(2px + 1rem);
    text-align: justify;
    padding: calc(10px + 1.5rem) calc(4px + 1rem);
}

.recommend_box {
    width: 100%;
    background: #FDFBF7;
    padding-top: calc(6px + 4rem);
    padding-bottom: calc(62px + 5rem);
}

.recommend {
    max-width: 1440px;
    width: 85%;
    margin: auto;
}

.recommend_title .p1 {
    font-family: Alibaba;
    font-size: calc(4px + 1.5rem);
    color: #333333;
    line-height: calc(20px + 2rem);
    text-align: center;
}

.recommend_title .p2 {
    font-family: pingfang_regular;
    font-weight: 400;
    font-size: calc(10px + 0.5rem);
    color: #777777;
    line-height: calc(8px + 1rem);
    text-align: center;
    margin-top: calc(3px + 0.5rem);
}

.recommend_list{
    display: flex;
    justify-content: space-between;
    margin-top: calc(20px + 2rem);
}
.recommend_item{
    width: 24.4444%;
}
.recommend_item_pic{
width: 100%;
height: calc(96px + 20rem);
overflow: hidden;
}
.recommend_item_pic img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s;
}
.recommend_item_name{
font-family: pingfang_regular;
font-weight: 400;
font-size: calc(2px + 1rem);
color: #333333;
line-height: calc(10px + 1rem);
text-align: center;
margin-top: calc(8px + 0.5rem);
}
.recommend_item:nth-child(even){
    margin-top: calc(16px + 4rem);
}
.recommend_item:hover img{
    transform: scale(1.1);
}

@media screen and (max-width: 1100px){
    .product_read_main{
        flex-direction: column;
        justify-content: flex-start;
        gap: calc(10px + 1rem);
    }
    .product_read_pic{
        width: 100%;
        height: auto;
    }
    .product_read_right{
        width: 100%;
    }
    .product_read_right .p1{
        font-size: calc(16px + 1rem);
        margin-bottom: calc(12px + 1.5rem);
    }
    .product_read_right .p2 .p2_title{
        font-size: calc(12px + 1rem);
    }
    .product_read_right .p2 .p3{
        font-size: calc(10px + 1rem);
        line-height: 1.5;
    }
    .product_read_details_title {
      
        line-height: calc(22px + 3rem);
   font-size: calc(12px + 1rem);
    }
    .product_read_details_con{
        font-size: calc(10px + 1rem);
    }
    .recommend_title .p1{
        font-size: calc(14px + 1rem);
    }
    .recommend_title .p2{
        font-size: calc(10px + 1rem);
        line-height: 1.5;
    }
    .recommend_item_name{
        font-size: calc(10px + 1rem);
        line-height: 1.5;
    }
}