金诚优选前端代码
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

48 lines
947 B

  1. @import '../../common/css/global';
  2. .coupon-warp-box {
  3. background: #FFFFFF;
  4. overflow:auto;
  5. white-space:nowrap;
  6. width:100%;
  7. padding: 10px 15px;
  8. .coupon-item-box {
  9. width: 160px;
  10. height: 65px;
  11. display: inline-block;
  12. background: @mainColor;
  13. margin-right: 5px;
  14. border-radius: 4px;
  15. .coupon-item {
  16. display: flex;
  17. align-items: center;
  18. justify-content: space-between;
  19. height: 100%;
  20. padding: 5px;
  21. color: #FFFFFF;
  22. .left {
  23. .money {
  24. font-size: 10px;
  25. }
  26. .num {
  27. font-size: 30px;
  28. }
  29. }
  30. .right {
  31. font-size: 10px;
  32. text-align: center;
  33. .label {
  34. }
  35. .btn{
  36. padding: 2px 10px;
  37. border-radius: 3px;
  38. background: #FFFFFF;
  39. color: @mainColor;
  40. margin-top: 5px;
  41. box-shadow:0px 2px 4px 0px rgba(0,0,0,0.1);
  42. }
  43. }
  44. }
  45. }
  46. }