mycoupon.wxss 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213
  1. page{
  2. background-color: #f0f0f0;
  3. }
  4. .couponlist {
  5. margin-top: 18rpx;
  6. width: 95%;
  7. margin-left: 2.5%;
  8. margin-right: 2.5%;
  9. height: 264rpx;
  10. background-image: url("https://yuesuo.yueguanjia.com/MiniProgram/couponbk.png");
  11. background-size:100% 100%;
  12. background-repeat:no-repeat;
  13. display: flex;
  14. flex-wrap: wrap;
  15. }
  16. .list1 {
  17. display: flex;
  18. flex: 1;
  19. flex-direction:column;
  20. height: 180rpx;
  21. width: 50%;
  22. }
  23. .couponname {
  24. margin-left: 28rpx;
  25. margin-top: 44rpx;
  26. }
  27. .txtcouponname {
  28. font-size: 40rpx;
  29. font-weight: Bold;
  30. color: #000000;
  31. }
  32. .coupondatetitle {
  33. margin-left: 58rpx;
  34. margin-top: 10rpx;
  35. font-size: 24rpx;
  36. color: #A7A7A7;
  37. font-weight: Regular;
  38. }
  39. .coupondate {
  40. margin-left: 28rpx;
  41. margin-top: 8rpx;
  42. color: #BBBBBB;
  43. font-weight: 500;
  44. font-size: 28rpx;
  45. }
  46. .list2 {
  47. flex: 1;
  48. display: flex;
  49. flex-direction:column;
  50. text-align: right;
  51. }
  52. .couponvalue {
  53. display: flex;
  54. margin-left: 164rpx;
  55. text-align: left;
  56. }
  57. .money {
  58. margin-top: 20rpx;
  59. color: #fc6961;
  60. font-size: 60rpx;
  61. font-weight: 500;
  62. }
  63. .yuan {
  64. margin-left: 8rpx;
  65. margin-top: 48rpx;
  66. flex: 1;
  67. text-align: left;
  68. font-size: 28rpx;
  69. font-weight: Regular;
  70. color: #000000;
  71. }
  72. .button {
  73. margin-top: 8rpx;
  74. width: 120rpx;
  75. height: 42rpx;
  76. margin-left: 165rpx;
  77. border-radius:10rpx;
  78. background-color: #fc6961;
  79. text-align: center;
  80. color: #ffffff;
  81. font-size: 24rpx;
  82. line-height: 42rpx;
  83. }
  84. .packages {
  85. width: 82%;
  86. margin-left: 8%;
  87. margin-right: 10%;
  88. height: 60rpx;
  89. text-align: left;
  90. line-height: 60rpx;
  91. color: #A7A7A7;
  92. font-size: 24rpx;
  93. font-weight: Regular;
  94. }
  95. .topp {
  96. width: 100%;
  97. margin-top: 30rpx;
  98. }
  99. .none {
  100. margin-top: 306rpx;
  101. text-align: center;
  102. width: 100%;
  103. height: 260rpx;
  104. }
  105. .noneimg {
  106. height: 280rpx;
  107. width: 280rpx;
  108. }
  109. .nonedesc {
  110. margin-top: 90rpx;
  111. height: 30rpx;
  112. color: #7A7777;
  113. font-size: 32rpx;
  114. font-weight: Heavy;
  115. }
  116. .bg {
  117. display: none;
  118. position: absolute;
  119. top: 0%;
  120. left: 0%;
  121. width: 100%;
  122. height: 100%;
  123. background-color: black;
  124. z-index: 1001;
  125. -moz-opacity: 0.7;
  126. opacity: 0.60;
  127. filter: alpha(opacity=70);
  128. }
  129. .show {
  130. display: none;
  131. position: absolute;
  132. flex-direction:column ;
  133. top: 18%;
  134. left: 10%;
  135. width: 80%;
  136. background-color: white;
  137. z-index: 1002;
  138. overflow: auto;
  139. }
  140. .showtitle {
  141. text-align: center;
  142. margin-top: 28rpx;
  143. font-size: 38rpx;
  144. font-weight: 400;
  145. color: #000000;
  146. margin-bottom: 20rpx;
  147. }
  148. .showcontent{
  149. margin-bottom: 6rpx;
  150. margin-left: 10%;
  151. margin-right: 10%;
  152. width: 80%;
  153. text-align: justify;
  154. font-size: 28rpx;
  155. color: #A8A8A8;
  156. font-weight: 400;
  157. }
  158. .showline {
  159. margin-top: 26rpx;
  160. height: 1rpx;
  161. background-color: #f8f8f8;
  162. }
  163. .showbutton {
  164. margin-top: 20rpx;
  165. margin-bottom: 20rpx;
  166. text-align: center;
  167. color: #20BAA5;
  168. font-size: 38rpx;
  169. font-weight: 400;
  170. }
  171. .couponbox {
  172. width: 92%;
  173. margin-left: 4%;
  174. margin-right: 4%;
  175. background:#ffffff;
  176. box-shadow:0rpx 14rpx 44rpx 2rpx rgba(172,172,172,0.5);
  177. border-radius:30rpx;
  178. height: 274rpx;
  179. margin-top: 40rpx;
  180. display: flex;
  181. flex-direction: column;
  182. }
  183. .couponinfo {
  184. height: 54rpx;
  185. width:156rpx;
  186. margin-top: 32rpx;
  187. margin-left: 30rpx;
  188. background:#00C7C6;
  189. border-radius:30rpx;
  190. color: #FFFFFF;
  191. font-size: 24rpx;
  192. font-weight: Bold;
  193. text-align: center;
  194. line-height: 54rpx;
  195. }
  196. .load {
  197. width: 100%;
  198. height: 2400rpx;
  199. position: absolute;
  200. left: 0;
  201. top: 0;
  202. z-index: 9999;
  203. background-color: #ffffff;
  204. text-align: center;
  205. line-height: 1300rpx;
  206. }
  207. .loadimg {
  208. width: 200rpx;
  209. height: 200rpx;
  210. }