| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- .useCoupon {
- // padding-top: 16px;
- // padding-bottom: 16px;
- border-radius: 10px;
- .couponCount {
- color: #ff3535;
- font-size: 14px;
- font-weight: 500;
- i {
- font-style: normal;
- font-size: 14px;
- }
- }
- }
- .choiceCoupon {
- display: flex;
- flex-direction: column;
- overflow: hidden;
- height: 100%;
- }
- .couponTitle {
- display: flex;
- align-items: center;
- justify-content: space-between;
- flex-shrink: 0;
- padding: 0 17px;
- height: 60px;
- line-height: 60px;
- font-size: 18px;
- font-weight: 600;
- color: #1a1a1a;
- .iconClose {
- display: inline-block;
- width: 24px;
- height: 24px;
- background: url('../../coupons/images/icon_close.png') no-repeat center;
- background-size: contain;
- }
- }
- .couponContent {
- flex: 1 auto;
- overflow-y: auto;
- -webkit-overflow-scrolling: touch;
- padding: 12px 14px;
- --coupon-point: #fff;
- }
- .couponFooter {
- display: flex;
- align-items: center;
- justify-content: space-between;
- line-height: 56px;
- padding: 0 16px;
- .couponSelectText {
- font-size: 16px;
- color: #1a1a1a;
- span {
- padding: 0 9px;
- font-weight: 600;
- color: #fc1a19;
- }
- }
- .btnTenant {
- background-color: #FE2451;
- border: none;
- font-size: 16px;
- }
- }
|