
.coupon-list {
    margin: 0 -5px;
}
.coupon-list .item {
    width: 25%;
    padding: 0 5px;
}
.coupon-list .item:nth-child(4n+1) {
    clear: both;
}
.coupon-list .box {
    max-width: 350px;
    margin: 0 auto 20px;
    position: relative;
    padding: 15px;
    transition: all .4s ease-in-out;
    box-sizing: border-box;
    border:solid 1px #DCDCDC;
}
.coupon-list .box:before{
    content: '';
    position: absolute;
    bottom: -2px;
    height: 3px;
    background: #338CDD;
    left: 0;
    right: 0;
    width: 100%;
    display: block;
    transition: all .4s ease-in-out;
}
.coupon-list .box:hover:before{
    background: #ABD0F1;
}
.coupon-list .pic{
    position: relative;
    overflow: hidden;
}
.coupon-list .pic:before {
    content: '';
    background: url(../../images/common/coupon/hover.png);
    background-size: cover;
    display: block;
    position: absolute;
    z-index: 1;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 0;
    transition: all 0.5s;
}
.coupon-list .box:hover .pic:before {
    opacity: 1;
}
.coupon-list .box .pic img{
    display: block;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
    width: 100%;
}
.coupon-list .box:hover .pic img{
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
}
.coupon-list .box .cover{
    font-size: 0;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index:30;
}
.coupon-list .name {
    color: #000;
    font-size: 18px;
    font-weight: normal;
    text-align: center;
    margin: 10px 0;
    font-family: 'Inter', sans-serif;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 55px;
}

.coupon-list .description{
    font-family: 'Inter', sans-serif;
    color: #888888;
    font-size: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    position: relative;
    line-height: 1.5;
    height: 69px;
}

.receive{
    display: inline-block;
    font-size: 0;
    background: url(../../images/common/coupon/btn.jpg);
    width: 270px;
    height: 44px;
    transition: all ease .3s;
    cursor: pointer;
}
.receive:hover{
    opacity: 0.8;
}

.receive2{
    display: inline-block;
    font-size: 0;
    background: url(../../images/common/coupon/btn.jpg);
    width: 270px;
    height: 44px;
    transition: all ease .3s;
    cursor: pointer;
}
.receive2:hover{
    opacity: 0.8;
}

.coupon-intro {
    display: flex;
    justify-content: space-between;
    padding:0 0 50px;
}
.gallery{
    width: 44.249%;
}
.intro{
    width: 51.505%;
}
.coupon-name{
   font-family: 'Inter', sans-serif;
    font-weight: normal;
    font-size: 26px;
    color: #000000;
    line-height: 1.31;
    margin: 0 0 25px;
    padding: 10px 0 20px;
    position: relative;
    border-bottom: solid 2px #DDDDDD;

}
.coupon-name:before{
    content: '';
    display: block;
    width: 130px;
    height: 2px;
    background: #338CDE;
    position: absolute;
    bottom: -2px;
    left: 0;
}
.coupon-txt{
    color: #555555;
    font-size: 15px;
    line-height: 1.4;
}
.fancybox{
    display: none;
}

@media screen and (max-width: 1260px) {
    .coupon-list .item {
        width: 33.33%;
    }
    .coupon-list .item:nth-child(n) {
        clear: none;
    }
    .coupon-list .item:nth-child(3n+1) {
        clear: left;
    }
}
@media screen and (max-width: 1000px) {
    .coupon-list .item {
        width: 50%;
    }
    .coupon-list .item:nth-child(n) {
        clear: none;
    }
    .coupon-list .item:nth-child(2n+1) {
        clear: left;
    }
    .coupon-intro{
        flex-wrap: wrap;
    }
    .gallery,
    .intro{
        width: 100%;
    }
    .coupon-name{
        font-size: 18px;
    }
}
@media screen and (max-width: 767px) {
    .receive2 {
        margin-top: 15px;
        margin-left: auto;
        margin-right: auto;
    }
}
@media screen and (max-width: 600px) {
    .coupon-list .item {
        width: 100%;
    }
    .coupon-list .item:nth-child(n) {
        clear: none;
    }
}