.con {
    width: 100%;
    padding: 0.28rem 4% 0.3rem 4%;
}

.list li {
    width: 100%;
    height: 2.5rem;
    box-shadow: 0rem 0.06rem 0.40rem rgba(0, 0, 0, 0.06);
    margin-bottom: 0.24rem;
    padding: 0rem 0.28rem;
    color: #fff;
}

.list li.couponBg1 {
    background: url(../images/couponBg1.png)no-repeat center center;
    background-size: 100% 100%;
}

.list li.couponBg2 {
    background: url(../images/couponBg2.png)no-repeat center center;
    background-size: 100% 100%;
}

.list li.couponBg3 {
    background: url(../images/couponBg3.png)no-repeat center center;
    background-size: 100% 100%;
}

.list li>div {
    height: 50%;
    width: 100%;
    display: flex;
    align-items: center;
}

.list li>div:first-child {
    border-bottom: 0.02rem dashed rgba(255, 255, 255, 0.35);
}

.couponTop1 {
    width: 25%;
    flex-shrink: 0;
}

.couponTop1 h3 {
    font-size: 0.48rem;
    font-weight: normal;
}

.couponTop1 span {
    font-size: 0.24rem;
    padding-right: 0.1rem;
}

.couponTop1 p {
    font-size: 0.24rem;
    margin-top: -0.06rem;
}

.couponTop2 {
    max-width: 75%;
}

.couponTop2 h3 {
    font-size: 0.36rem;
    font-weight: normal;
}

.couponTop2 p {
    font-size: 0.24rem;
}

.couponBtm {
    justify-content: space-between;
}

.couponBtm1 {
    font-size: 0.24rem;
}

.couponBtm1 p:first-child {
    margin-bottom: 0.04rem;
}

.couponBtm button {
    height: 0.60rem;
    border: 0.02rem solid #FFFFFF;
    border-radius: 200rem;
    background: none;
    color: #fff;
    padding: 0rem 0.26rem;
    font-size: 0.24rem;
}



/* ========================= 弹窗 ========================= */
.takePopUp {
    position: fixed;
    top: 0rem;
    left: 0rem;
    z-index: 999;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: none;
}

@keyframes scaleAni {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.takePopUp>div {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    animation: scaleAni 0.3s ease;
}

.popUpCon {
    width: 80%;
    text-align: center;
    position: relative;
    padding: 0.7rem 0.3rem 0.6rem 0.3rem;
    background: #fff;
    box-shadow: 0rem 0.03rem 0.15rem rgba(192, 221, 242, 0.2);
    border-radius: 0.10rem;
}

.popUpCon img {
    width: 2rem;
    height: auto;
    margin: 0rem auto 0.2rem auto;
}

.popUpCon h3 {
    color: #333;
    font-size: 0.32rem;
    margin-bottom: 0.2rem;
}

.popUpCon p {
    color: #666;
    font-size: 0.28rem;
    margin-bottom: 0.18rem;
}

.popUpCon button {
    font-size: 0.28rem;
    color: #fff;
    width: 80%;
    height: 0.84rem;
    background: #FFA730;
    box-shadow: 0rem 0.06rem 0.30rem rgba(245, 113, 28, 0.35);
    border-radius: 400rem;
    border: none;
    text-align: center;
    margin: 0rem;
}

.popUpCon a {
    display: inline-block;
    font-size: 0.28rem;
    color: #fff;
    width: 80%;
    line-height: 0.84rem;
    background: #FFA730;
    box-shadow: 0rem 0.06rem 0.30rem rgba(245, 113, 28, 0.35);
    border-radius: 400rem;
    border: none;
    text-align: center;
    margin: 0rem;
}

.popUpCon .close {
    position: absolute;
    top: -0.16rem;
    right: 0rem;
    transform: translateY(-100%);
    width: 0.52rem;
    height: 0.52rem;
    background: url(../images/close.png)no-repeat center center;
    background-size: 100% 100%;
    opacity: 1;
}