index.less 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248
  1. page {
  2. // background: #FFB82E;
  3. }
  4. .box {
  5. background-repeat:repeat;
  6. background-position: center top;
  7. background-size: 100% 60%;
  8. .my-integral {
  9. color: #CC0000;
  10. margin-left: 30rpx;
  11. }
  12. .draw {
  13. margin: 66rpx 0rpx 0rpx 110rpx;
  14. }
  15. .prize-box {
  16. margin: 20rpx 30rpx 0rpx 30rpx;
  17. background: #FFE4B2;
  18. border-radius: 50rpx;
  19. padding-bottom: 20rpx;
  20. .prize {
  21. padding: 30rpx 0rpx 0rpx 30rpx;
  22. font-size: 30rpx;
  23. font-family: Source Han Sans CN;
  24. font-weight: 400;
  25. color: #222222;
  26. line-height: 24rpx;
  27. }
  28. .details {
  29. margin: 20rpx 30rpx 0rpx 30rpx;
  30. }
  31. }
  32. .record {
  33. margin: 20rpx 30rpx 0rpx 30rpx;
  34. background: #FFD57F;
  35. border-radius: 50rpx;
  36. padding-bottom: 20rpx;
  37. .record-top {
  38. font-size: 30rpx;
  39. font-family: Source Han Sans CN;
  40. font-weight: 400;
  41. color: #CC0000;
  42. line-height: 24rpx;
  43. padding: 30rpx 0rpx 0rpx 30rpx;
  44. margin-bottom: 20rpx;
  45. }
  46. .record-x {
  47. white-space: nowrap;
  48. /* box-sizing: border-box; */
  49. height: 600rpx;
  50. .record-txt {
  51. display: flex;
  52. background: #FFEECB;
  53. border-radius: 20rpx;
  54. padding: 20rpx 0rpx 20rpx 0rpx;
  55. margin:0rpx 20rpx 20rpx 20rpx;
  56. .record-name {
  57. width: 200rpx;
  58. font-size: 30rpx;
  59. font-family: Source Han Sans CN;
  60. font-weight: 400;
  61. color: #CC0000;
  62. line-height: 24rpx;
  63. margin: 25rpx 0rpx 0rpx 30rpx;
  64. }
  65. .record-time {
  66. margin-top: 20rpx;
  67. font-size: 24rpx;
  68. color: #666666;
  69. }
  70. .record-title {
  71. margin-left: 40rpx;
  72. background: #DDDDDD;
  73. border-radius: 20rpx;
  74. padding: 10rpx 0rpx 10rpx 0rpx;
  75. width: 120rpx;
  76. text-align: center;
  77. }
  78. .record-titles {
  79. margin-left: 40rpx;
  80. background: #FFB82E;
  81. border-radius: 20rpx;
  82. padding: 10rpx 0rpx 10rpx 0rpx;
  83. width: 120rpx;
  84. text-align: center;
  85. }
  86. }
  87. }
  88. }
  89. }
  90. .top {
  91. display: flex;
  92. justify-content: space-between;
  93. padding: 30rpx;
  94. .rules {
  95. font-size: 24rpx;
  96. }
  97. }
  98. .shop-mask {
  99. width: 100%;
  100. height: 100%;
  101. position: fixed;
  102. bottom: 0;
  103. left: 0;
  104. z-index: 9000;
  105. background-color: rgba(0, 0, 0, 0.6);
  106. }
  107. .shop-button {
  108. width: 690rpx !important;
  109. height: 88rpx !important;
  110. background: #41B1FF;
  111. border-radius: 44px;
  112. margin: 30rpx 20rpx 70rpx 30rpx !important;
  113. color: #ffffff !important;
  114. font-size: 32rpx;
  115. font-family: PingFang SC;
  116. font-weight: 500;
  117. line-height: 40rpx;
  118. padding: 20rpx !important;
  119. }
  120. .shop-modalDlg {
  121. width: 750rpx;
  122. position: fixed;
  123. bottom: 0;
  124. left: 0;
  125. z-index: 9999;
  126. background-color: #ffffff;
  127. border-radius: 30rpx 30rpx 0rpx 0rpx;
  128. display: flex;
  129. flex-direction: column;
  130. .modalDlg-txtt {
  131. font-size: 32rpx;
  132. font-family: PingFang SC;
  133. font-weight: 500;
  134. color: #e61b1b;
  135. margin-top: 33rpx;
  136. text-align: center;
  137. }
  138. .input-txt {
  139. text-align: left;
  140. margin: 20rpx 30rpx 0rpx 40rpx;
  141. color: #777575;
  142. }
  143. .input {
  144. float: right;
  145. flex: 1;
  146. width: 660rpx;
  147. height: 88rpx;
  148. border-style: solid;
  149. border: 2rpx solid #DDDDDD;
  150. margin: 20rpx 0rpx 0rpx 30rpx;
  151. padding-left: 30rpx;
  152. }
  153. .confirm-next {
  154. width: 690rpx !important;
  155. height: 100rpx !important;
  156. border-radius: 44rpx !important;
  157. margin: 30rpx 20rpx 30rpx 30rpx !important;
  158. background: #d14545;
  159. color: #ffffff !important;
  160. font-size: 36rpx !important;
  161. font-family: Source Han Sans CN !important;
  162. font-weight: 400 !important;
  163. text-align: center;
  164. }
  165. .input-box {
  166. display: flex;
  167. width: 670rpx;
  168. border-bottom: 2rpx solid #f6f6f6;
  169. margin-left: 40rpx;
  170. .input-txt {
  171. text-align: left;
  172. margin: 20rpx 30rpx 0rpx 0rpx;
  173. color: #777575;
  174. }
  175. .input-address {
  176. float: left;
  177. flex: 1;
  178. display: flex;
  179. margin: 20rpx 0rpx 0rpx 40rpx;
  180. padding-left: 10rpx;
  181. .shop-inputs {
  182. font-size: 30rpx;
  183. font-family: PingFang SC;
  184. font-weight: 500;
  185. color: black;
  186. line-height: 40rpx;
  187. margin: 10rpx 0rpx 30rpx 0rpx;
  188. }
  189. }
  190. }
  191. .ruleHide {
  192. height: 30rpx !important;
  193. width: 30rpx !important;
  194. position: absolute;
  195. top: 40rpx;
  196. right: 20rpx;
  197. margin-right: 10rpx;
  198. }
  199. .return {
  200. height: 50rpx !important;
  201. width: 50rpx !important;
  202. position: absolute;
  203. top: 30rpx;
  204. left: 20rpx;
  205. font-size: 30rpx;
  206. font-family: Source Han Sans CN;
  207. font-weight: 400;
  208. color: #999999;
  209. line-height: 40rpx;
  210. text-align: left;
  211. }
  212. }