.shop_main_container {
    padding: 64px 0;
}

.shop_main_container .product_list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px 0;
}

.shop_main_container .product_list>li {
    width: calc((100% - 48px)/3);
    cursor: pointer;
}

.shop_main_container .product_list>li .product_img {
    position: relative;
    margin-bottom: 16px;
}

.shop_main_container .product_list>li .product_img::after {
    content: '';
    display: block;
    padding-bottom: 70%;
}

.shop_main_container .product_list>li .product_img>img {
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 99;
}

.shop_main_container .product_list>li .product_name {
    font-size: 18px;
    font-weight: 700;
    display: block;
    margin-bottom: 8px;
    color: #222;
}

.shop_main_container .product_list>li .product_intro {
    font-size: 14px;
    font-weight: 400;
    color: #A7A7A7;
    margin-bottom: 16px;
}

.shop_main_container .product_list>li .product_price {
    font-size: 18px;
    font-weight: 400;
    color: #222;
}