promate_pop.wxss 2.01 KB
@import '../../app.wxss';
/* 自定义弹出窗口 */
.cx-popup {
    width: 100%;
    background: #fff;
    z-index: 35;
    border-top-left-radius: 10rpx;
    border-top-right-radius: 10rpx;
    position: fixed;
    bottom: 0;
}
.xc-top-content {
    width: 88%;
    height: 85rpx;
    padding-top: 50rpx;
    font-size: 36rpx;
}
.xc-valid-coupon {
    width: 90%;
    height: 40rpx;
    padding-top: 24rpx;
    overflow: hidden;
}
.xc-frame {
    padding: 20rpx;
}
.xc-frame .list-frame {
    width: 90%;
    height: 100%;
    overflow-y: scroll;
    margin-top: 20rpx;
}

.xc-close-frame {
    margin-top: 30rpx;
    width: 15%;
    display: flex;
}

.xc-close {
    width: 70rpx;
    height: 70rpx;
    border-radius: 50%;
    border: 5rpx solid #a5a5a7;
    text-align: center;
    line-height: 55rpx;
    font-size: 80rpx;
    color: #a5a5a7;
    font-family: "微软正黑体";
    margin-top: 8rpx;
}
.xc-money {
    color: #ff0013;
}

.xc-coupon-effect {
    width: 99%;
    height: 128rpx;
    border-bottom: 3rpx solid #ddd;
}

.xc-goods-coupon {
    width: 80%;
    height: 100%;
}

.xc-title {
    width: 50%;
    margin-left: 222rpx;
}

.xc-coupon-money {
    color: #c91e31;
    font-size: 35rpx;
    margin-top: 20rpx;

}

.xc-coupon-time {
    height: 50rpx;
    font-size: 27rpx;
    color: #a4a4a4;
}

.xc-coupon-time .time {
    margin-left: 15rpx;
    font-size: 27rpx;
}

.xc-coupon-selection {
    width: 99%;
    height: 100%;
}

.xc-confirm {
    width: 90%;
    height: 75rpx;
    margin: 0 auto;
    background: #c41830;
    color: #fff;
    border-radius: 10rpx;
    font-size: 30rpx;
    margin-top: 50rpx;
}

.xc-not-Selection {
    width: 60rpx;
    height: 60rpx;
    background: #eeeeee;
}

.up_pro {
    animation: up .7s;
}

.down_pro {
    animation: down 1s;
}

@keyframes up_pro {
    0% {
        transform: translateY(550rpx);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes down_pro {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(550rpx);
    }
}