.two_product_box {
    width: 100%;
    padding-top: calc(30px + 5rem);
    padding-bottom: calc(80px + 5rem);
}

.two_product {
    max-width: 1440px;
    width: 85%;
    margin: auto;
}

.two_product_title .p1 {
    font-family: Alibaba;
    font-size: calc(4px + 1.5rem);
    color: #333333;
    line-height: calc(8px + 2rem);
}

.two_product_title .p2 {
    width: 73.75%;
    font-family: pingfang_regular;
    font-weight: 400;
    font-size: calc(8px + 0.5rem);
    color: #333333;
    line-height: calc(2px + 1.5rem);
    margin-top: calc(5px + 1rem);
}

.two_product_list {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: calc(6px + 0.5rem);
    row-gap: calc(8px + 1rem);
    margin-top: calc(10px + 5rem);
}

.two_product_item {
    width: 24.0567%;
}

.two_product_item_pic {
    width: 100%;
    height: calc(34px + 10rem);
    overflow: hidden;
}

.two_product_item_pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s;
}

.two_product_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);
    transition: .3s;
}

.two_product_item:hover img {
    transform: scale(1.1);
}

.two_product_item:hover p {
    color: #971D32;
}

@media screen and (max-width: 1100px){
    .two_product_title .p1{
        font-size: calc(14px + 1rem);
        line-height: 1.5;
    }
    .two_product_title .p2{
        width: 100%;
        font-size: calc(10px + 1rem);
        line-height: 1.5;
    }
    .two_product_item{
        width: 48.5%;
    }
    .two_product_item_pic { 
        height: calc(36px + 16rem);
    }
    .two_product_item_name{
        font-size: calc(10px + 1rem);
    }
}