@charset "utf-8";

.coupon_tab ul{
    display: flex;
    padding-bottom:15px;
}
.coupon_tab ul li{
    border:1px solid #ddd;
    border-radius:20px;
    margin-right:10px;
}
.coupon_tab ul li a{
    padding:6px 15px;
    font-size:14px;
    color:#999;
}
.coupon_tab ul li a.on{
    background:#ddd;
    color:#000;
    border-radius:20px;
}
.coupon_list{
    display: flex;
    flex-wrap: wrap;
}
.coupon_list > div{
    width:48%;
    border-radius:10px;
    height:200px;
    margin-right:20px;
    margin-bottom:20px;
    border:1px solid #eee;
}
.coupon_list > div:nth-child(2n){
    margin-right:0;
}
.coupon_list > div a{
    display: block;
    width:100%;
    height:100%;
}
.coupon_list > div a img{
    width:100%;
    height:100%;
    border-radius:10px;
}

/*coupon view*/
.coupon_view_info{
    padding:20px 10px;
    border-top:1px solid #666;
    border-bottom:1px solid #ddd;
}
.coupon_view_info .tit{
    font-size:18px;
    font-weight: bold;
}
.coupon_view_info ul{
    /*padding:10px 0;*/
    padding: 10px 0 0px;
}
.coupon_view_info ul li{
    font-size:15px;
    padding-left:8px;
    padding-bottom:5px;
    position: relative;
}
.coupon_view_info ul li:last-child {
    padding-bottom: 0;
}
.coupon_view_info ul li:before{
    content:"";
    display: block;
    width:3px;
    height:3px;
    background:#000;
    border-radius:50%;
    position: absolute;
    left:0;
    top:8px;
}
.coupon_view_info .stit{
    font-size:20px;
    font-weight: bold;
    color:#f00059;
}
.coupon_view_way{
    padding:20px 10px;
    /*border-bottom:1px solid #ddd;*/
    margin-bottom:30px;
}
.coupon_view_way .tit{
    font-weight: bold;
    font-size:18px;
}
.coupon_view_way .step{
    padding:20px 10px;
}
.coupon_view_way .step div{
    display: flex;
    align-items: center;
    padding-bottom:20px;
    font-weight:bold;
    position: relative;
}
.coupon_view_way .step div:last-child{
    padding-bottom:0;
}
.coupon_view_way .step div:before{
    content:"";
    display: block;
    width:2px;
    height:100%;
    background:#eee;
    position: absolute;
    left:30px;
    top:0;
    z-index: 9;
}
.coupon_view_way .step div span{
    display: block;
    width:60px;
    height:30px;
    line-height:30px;
    text-align: center;
    margin-right:10px;
    background:#f00059;
    color:#fff;
    border-radius:20px;
    font-size:15px;
    position: relative;
    z-index:99;
}
.coupon_view_way .caption li{
    font-size:14px;
    padding-bottom:5px;
}
.coupon_btn{
    margin-top:20px;
}
.coupon_btn button{
    background:#000;
    color:#fff;
    height:50px;
    font-family: 'JalnanGothic', sans-serif;
}
.coupon_btn button i{
    margin-left:4px;
}
.coupon_prod_list{
    margin-bottom:20px !important;
}
.coupon_prod_list .list-box-wrap{
    display: flex;
    flex-wrap: wrap;
    align-items: center
}
.coupon_prod_list .list-pr-box{
    width: calc(25% - 20px);
    margin-right: 20px;
}
.coupon_prod_list  .list-pr-box .img-box{
    width: 100%;
    height: 240px;
}
.coupon_prod_list .txt-box{
    padding: 10px 0 30px;
}
.discount_coupon_btn{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    padding:20px 0;
    gap: 8px;
}
.discount_coupon{
    border:1px solid #f00059;
    border-radius:5px 8px 8px 5px;
    width:165px;
    height:100px;
    position: relative;
    margin-right: 30px;

}
.discount_coupon:after{
    content:"coupon";
    writing-mode: vertical-rl;
    text-orientation: upright;
    color:#fff;
    font-size:14px;
    width:30px;
    height:100%;
    border-radius:8px 5px 5px 8px;
    background:#f00059;
    position: absolute;
    right:-31px;
    top:50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    letter-spacing: -0.8px;
}
.discount_coupon a{
    display: flex;
    width:100%;
    height: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding:10px;
}
.discount_coupon a span{
    color:#666;
    padding-bottom:5px;
}

.discount_coupon.end{
    border:1px solid #999999;

}
.discount_coupon.end:after{
    background:#999999;
}
.discount_coupon.end a span, .discount_coupon.end .tit{
    color:#999999;
}


@media screen and (max-width:768px){
    .coupon_list > div{
        width:49%;
        height:auto;
        margin-right:10px;
        margin-bottom:10px;
    }
}
@media screen and (max-width:600px){
    .coupon_tab ul{
        flex-wrap: wrap;
        padding-bottom:0;
    }
    .coupon_tab ul li{
        margin-bottom:10px;
    }
    .coupon_list > div{
        width:48%;
    }
}