.pop-coupon-card {
    width: 100%;
    height: .67rem;
    box-sizing: border-box;
    background: #FDF6F0;
    border-radius: .05rem;
    margin-bottom: .13rem;
}
.pop-coupon-card .coupon-left {
    width: .79rem;
    display: flex;
    align-items: center;
    justify-content: space-around;
    position: relative;
    height: 100%;
}
.pop-coupon-card .coupon-left .willprice {
    font-size: .1rem;
    font-weight: 500;
    color: #EE2D1B;
}
.pop-coupon-card .coupon-left .price {
    font-size: .2rem;
    font-weight: 500;
    color: #EE2D1B;
    margin-left: -3px;
}
.pop-coupon-card .coupon-left::after {
    content: "";
    position: absolute;
    top: 15%;
    right: 0;
    height: 70%;
    border-right: 1px dashed #FF6330;
}
.pop-coupon-card .coupon-right {
    width: calc(100% - 0.6rem - 0.79rem);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    padding-left: .1rem;
    box-sizing: border-box;
}
.pop-coupon-card .coupon-right .face-price {
    font-size: .13rem;
    font-weight: 500;
    color: #333;
    margin-bottom: .1rem;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
.pop-coupon-card .coupon-right .limit-time {
    font-size: .1rem;
    font-weight: 400;
    color: #666;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
.pop-coupon-card .coupon-right::before {
    content: "";
    position: absolute;
    left: -7px;
    width: 13px;
    height: 13px;
    background-color: #fff;
    border-radius: 50%;
    top: -7px;
}
.pop-coupon-card .coupon-right::after {
    content: "";
    position: absolute;
    left: -7px;
    width: 13px;
    height: 13px;
    background-color: #fff;
    border-radius: 50%;
    bottom: -7px;
}
.pop-coupon-card .coupon-get {
    width: .6rem;
    height: 100%;
    display: flex;
    align-items: center;
}
.pop-coupon-card .coupon-get .coupon-btn {
    width: .51rem;
    height: .22rem;
    line-height: .22rem;
    border-radius: .11rem;
    background: #fff;
    border: 1px solid #EE2D1B;
    color: #EE2D1B;
    font-size: .12rem;
    font-weight: 500;
    text-align: center;
}
