| 1234567891011121314151617181920212223242526272829303132333435363738 |
- /* component/coupon/coupon.wxss */
- @import '../../common.wxss';
- .coupons_box{
- background-color: #fff;
- box-sizing: border-box;
- }
- .coupons_box_top{
- display: flex;
- justify-content: space-between;
- align-items: center;
- }
- .coupons_box_top_left{
- display: flex;
- flex-direction: column;
- }
- .money{
- display: flex;
- color: var(--mainmoneycolor);
- align-items: center;
- }
- .money_text{
- font-size: 50rpx;
- }
- .green{
- color: #62CB81;
-
- }
- .coupon-btn{
- width: 136rpx;
- height: 56rpx;
- color: #fff;
- background: #62CB81;
- }
- .use{
- background: rgba(98, 203, 129, 0.1);
- color: #62CB81;
- }
|