coupon.wxss 594 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. /* component/coupon/coupon.wxss */
  2. @import '../../common.wxss';
  3. .coupons_box{
  4. background-color: #fff;
  5. box-sizing: border-box;
  6. }
  7. .coupons_box_top{
  8. display: flex;
  9. justify-content: space-between;
  10. align-items: center;
  11. }
  12. .coupons_box_top_left{
  13. display: flex;
  14. flex-direction: column;
  15. }
  16. .money{
  17. display: flex;
  18. color: var(--mainmoneycolor);
  19. align-items: center;
  20. }
  21. .money_text{
  22. font-size: 50rpx;
  23. }
  24. .green{
  25. color: #62CB81;
  26. }
  27. .coupon-btn{
  28. width: 136rpx;
  29. height: 56rpx;
  30. color: #fff;
  31. background: #62CB81;
  32. }
  33. .use{
  34. background: rgba(98, 203, 129, 0.1);
  35. color: #62CB81;
  36. }