123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118 |
- .pay-content {
- padding: 40rpx;
- .pay-list {
- &-item {
- display: flex;
- justify-content: space-between;
- align-items: center;
- height: 104rpx;
- border-top: solid 1px #eeeeee;
- &-image {
- display: flex;
- font-size: 30rpx;
- color: #1E1E1E;
- .image {
- width: 54rpx;
- height: 45rpx;
- margin-right: 20rpx;
- }
- text {
- font-size: 20rpx;
- color: #FA6400;
- margin-left: 10rpx;
- }
- }
- &:last-child {
- border-bottom: solid 1px #eeeeee;
- }
- }
- }
- .pay-money {
- text-align: center;
- font-size: 38rpx;
- color: #008CFF;
- margin-top: 20rpx;
- font-weight: bold;
- .original-discount-money {
- text-decoration: line-through;
- color: #333;
- font-size: 24rpx;
- margin-left: 20rpx;
- }
- }
- .pay-btn {
- margin-top: 34rpx;
- }
- }
- .coupon-popup {
- position: relative;
- min-height: 100vh;
- overflow-y: auto;
- background-color: #F9F9F9;
- &-list {
- padding: 30rpx;
- &-item {
- background-color: #fff;
- border-radius: 17rpx;
- margin-bottom: 20rpx;
- &-top {
- padding: 30rpx;
- display: flex;
- justify-content: space-between;
- align-items: baseline;
- border-bottom: 1px solid #EEEEEE;
- &-left {
- display: flex;
- align-items: baseline;
- .cplitl-left {
- color: #FF6D6D;
- font-size: 20rpx;
- margin-right: 34rpx;
- text:last-child {
- font-size: 60rpx;
- font-weight: bold;
- }
- &-bottom {
- color: #333333;
- font-size: 24rpx;
- }
- }
- .cplitl-right {
- view {
- &:first-child {
- font-size: 32rpx;
- color: #333333;
- font-weight: 700;
- margin-bottom: 8rpx;
- }
- &:last-child {
- font-size: 20rpx;
- color: #666;
- }
- }
- }
- }
- }
- &-bottom {
- color: #999999;
- padding: 10rpx 30rpx;
- font-size: 20rpx;
- .cplib-point {
- margin-top: 10rpx;
- &-content {
- padding-top: 10rpx;
- font-size: 24rpx;
- color: #999999;
- }
- }
- }
- }
- }
- &-btn {
- width: 100%;
- padding: 80rpx 30rpx;
- position: absolute;
- bottom: 0;
- left: 0;
- }
- }
|