﻿#warp {
    -webkit-overflow-scrolling: auto;
    overflow-x: hidden;
}

.coupon_box {
    max-width: 1500px;
    margin: 20px auto;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.coupon_box .coupon_item {
    width: 25%;
    padding: 10px;
}

.coupon_image {
    width: 100%;
    height: 220px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
}

.coupon_image::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0px;
    right: 0px;
    pointer-events: none;
    background-color: #00000007;
}

.coupon_image img {
    max-width: 80%;
    max-height: 80%;
}

.coupon_type {
    width: 100%;
    color: #000;      
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 1;
    font-size: 16px;
}

.coupon_a {
    padding: 0px 0px 20px;
    font-size: 16px;
}

@media screen and (max-width:880px) {
    .coupon_box .coupon_item {
        width: 100%;
    }
}