coupon.acss 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  1. /* required by usingComponents */
  2. /* pages/coupon/coupon.wxss */
  3. page{
  4. background-color: #f2f3f5;
  5. }
  6. .coupon{
  7. padding: 30rpx;
  8. }
  9. .coupon-dui{
  10. height: 100rpx;
  11. line-height:100rpx;
  12. text-align: center;
  13. border-radius: 8rpx;
  14. font-size: 34rpx;
  15. background-color: var(--globleColor);
  16. color: var(--fontColor);
  17. }
  18. .coupon-item{
  19. background-color: #fff;
  20. margin-top: 30rpx;
  21. display: flex;
  22. }
  23. .left{
  24. flex:0 0 30%;
  25. padding: 50rpx 0;
  26. border-right: dashed 2rpx #ebebeb;
  27. text-align: center;
  28. color: var(--orgFont);
  29. font-weight: 600;
  30. font-size: 30rpx;
  31. }
  32. .num{
  33. font-size: 50rpx;
  34. font-weight: bold;
  35. }
  36. .right{
  37. flex: 1;
  38. padding: 40rpx 0;
  39. padding-left: 10%;
  40. /* text-align: center; */
  41. }
  42. .right-title{
  43. font-size: 30rpx;
  44. }
  45. .right-text{
  46. font-size: 24rpx;
  47. color: var(--orgFont);
  48. margin-top: 20rpx;
  49. }
  50. .frame{
  51. height: 100vh;
  52. width: 100%;
  53. position: fixed;
  54. top: 0;
  55. left: 0;
  56. background-color: rgba(0, 0, 0, 0.6);
  57. }
  58. .frame-content{
  59. border-radius: 12rpx;
  60. padding:30rpx 50rpx 80rpx;
  61. width: 70%;
  62. margin: 0 auto;
  63. margin-top: 45%;
  64. background-color: #fff;
  65. opacity: 1;
  66. font-size: 28rpx;
  67. }
  68. .top{
  69. height: 50rpx;
  70. font-size: 30rpx;
  71. color: #333333;
  72. font-weight: 500;
  73. margin-bottom: 20rpx;
  74. text-align: right;
  75. }
  76. input{
  77. border: solid 1rpx #ebebeb;
  78. padding: 20rpx;
  79. border-radius: 5rpx;
  80. }
  81. .no-input{
  82. color: #cfcece;
  83. }
  84. .sure-button{
  85. height: 80rpx;
  86. line-height: 80rpx;
  87. text-align: center;
  88. background-color: var(--globleColor);
  89. color: var(--fontColor);
  90. margin: 0 30rpx;
  91. margin-top: 40rpx;
  92. border-radius: 40rpx;
  93. font-size: 28rpx;
  94. }
  95. .no-card {
  96. color: #979797;
  97. text-align: center;
  98. margin-top: 45%;
  99. font-size: 26rpx;
  100. }
  101. .no-card image{
  102. height: 150rpx;
  103. width: 150rpx;
  104. margin-bottom: 30rpx;
  105. }
  106. .tab{
  107. display: flex;
  108. }
  109. .tab-item{
  110. flex: 1;
  111. text-align: center;
  112. font-size: 28rpx;
  113. color: #5e5d5d;
  114. }
  115. .tab-item1{
  116. flex: 1;
  117. text-align: center;
  118. font-size: 32rpx;
  119. height: 60rpx;
  120. border-bottom:solid 2rpx var(--orgFont);
  121. color:var(--orgFont);
  122. }