coupon.wxss 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. /* coupon.wxss */
  2. .container{
  3. text-align: center;
  4. margin-top:45rpx;
  5. }
  6. .coupon_wrap{
  7. display: block;
  8. width: 610rpx;
  9. padding: 0 40rpx;
  10. margin:0 auto 20rpx;
  11. background-color: #fff;
  12. }
  13. .coupon_title_wrap{
  14. position: relative
  15. }
  16. .coupon_title{
  17. text-align: left;
  18. line-height: 110rpx;
  19. color: #b4a078;
  20. font-size: 78rpx;
  21. padding: 16rpx 0 0 0;
  22. }
  23. .use_state{
  24. width: 116rpx;
  25. height: 46rpx;
  26. font-size: 24rpx;
  27. line-height: 46rpx;
  28. position: absolute;
  29. top:50%;
  30. right: 0;
  31. margin-top:-15rpx;
  32. /* border-radius: 6rpx; */
  33. }
  34. .use_state_0{
  35. color: #b4a078;
  36. border: 1rpx solid #b4a078;
  37. }
  38. .use_state_1{
  39. color: #c8c8c8;
  40. border: 1rpx solid #c8c8c8;
  41. }
  42. .coupon_line image{
  43. width: 615rpx;
  44. height: 30rpx;
  45. }
  46. .coupon_infor_left,.coupon_rule{
  47. float: left;
  48. font-size: 24rpx;
  49. line-height: 44rpx;
  50. color:#222;
  51. padding:0 0 12rpx 0;
  52. }
  53. .coupon_rule{
  54. float: right;
  55. }
  56. /* 已过期 */
  57. .coupon_wrap_2 view{
  58. color:#c8c8c8;
  59. }
  60. .use_state_2{
  61. width: 83rpx;
  62. height: 83rpx;
  63. right: 14rpx;
  64. margin-top:-33rpx;
  65. }
  66. .use_state_2 image{
  67. width: 100%;
  68. height: 100%;
  69. }
  70. .modal_wrap{
  71. position: fixed;
  72. top:0;
  73. left:0;
  74. width: 100%;
  75. height: 100%;
  76. display: flex;
  77. justify-content: center;
  78. align-items: center;
  79. }
  80. .modal{
  81. font-size: 28rpx;
  82. color:#fff;
  83. padding:15rpx 20rpx;
  84. background-color: rgba(0,0,0,0.6);
  85. }
  86. .hidden{
  87. display: none;
  88. }