
.banner{
    position: relative;
}
.banner p{
    height: max-content;
    font-family: PINGFANG;
    font-weight: 800;
    font-size: calc(6px + 2rem);
    color: #FFFFFF;
    text-align: center;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

.product_list_box{
    width: 100%;
    padding: calc(30px + 5rem) 0;
}

.product_list{
    max-width: 1400px;
    width: 85%;
    margin: auto;
}

.product_pic_box{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    row-gap: calc(2px + 1rem);
    margin-top: calc(17px + 2rem);
}
.product_pic{
    width: 23.8571%;
    height: calc(34px + 15rem);
    overflow: hidden;
}

.product_pic img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s;
}

.product_pic img:hover{
    transform: scale(1.2);
}