index.wxss 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271
  1. /**index.wxss**/
  2. .container{
  3. padding: 0;
  4. }
  5. .c_bg{
  6. position: fixed;
  7. left: 0;
  8. top: 0;
  9. height: 100%;
  10. z-index: -1;
  11. width: 100%;
  12. }
  13. .body{
  14. width: 100%;
  15. min-height: 100%;
  16. overflow-y: auto;
  17. }
  18. .swp{
  19. position: relative;
  20. }
  21. .swiper{
  22. font-size: 0;
  23. height: 30vh;
  24. }
  25. .swiper-item{
  26. width: 100%;
  27. height: 100%;
  28. }
  29. .swiper-item image{
  30. width: 100%;
  31. height: 100%;
  32. }
  33. .dots{
  34. position: absolute;
  35. bottom: 10px;
  36. transform: translateX(-50%);
  37. left: 50%;
  38. z-index: 9999;
  39. display: flex;
  40. }
  41. .dots >image{
  42. width: 30rpx;
  43. height: 30rpx;
  44. margin: 0 12rpx;
  45. }
  46. .body .title{
  47. width: 90%;
  48. margin: 20rpx 5% 30rpx;
  49. display: flex;
  50. align-items: flex-end;
  51. height: 80rpx;
  52. }
  53. .body .title image{
  54. width: 22%;
  55. height: 100%;
  56. }
  57. .body .title text{
  58. display: inline-block;
  59. color: #999999;
  60. margin-left: 30rpx;
  61. margin-bottom: -4rpx;
  62. font-size: 24rpx;
  63. }
  64. .body .lunbo{
  65. width: 100%;
  66. display: inline-block;
  67. overflow-x: auto;
  68. white-space: nowrap;
  69. /* justify-content: space-between;
  70. align-items: center;
  71. flex-wrap: wrap; */
  72. }
  73. .body .lunbo > image{
  74. width: 28%;
  75. height: 336rpx;
  76. margin: 0 1%;
  77. }
  78. .body .record{
  79. padding-bottom: var(--paddingbtm);
  80. }
  81. .body .record >view{
  82. background-color: #fff;
  83. width: 90%;
  84. margin: 0 auto 28rpx;
  85. padding: 20rpx;
  86. box-shadow: 0 0 16rpx 2rpx rgba(0,0,0,0.1);
  87. border-radius: 10rpx;
  88. opacity: 1;
  89. }
  90. .body .record >view > text{
  91. font-weight: bold;
  92. font-size: 32rpx;
  93. color: #666666;
  94. }
  95. .body .record >view > view{
  96. color: #999999;
  97. margin-top: 20rpx;
  98. display: flex;
  99. justify-content: space-between;
  100. align-items: flex-end;
  101. }
  102. .body .record >view > view>text{
  103. font-size: 28rpx;
  104. }
  105. .body .record >view > view>text:last-of-type{
  106. font-size: 24rpx;
  107. }
  108. .body .record .norecord >view{
  109. margin-top: 0;
  110. }
  111. .body .record .norecord > .record-title{
  112. color: #000;
  113. font-size: 30rpx;
  114. font-weight: bold;
  115. }
  116. .body .record .norecord > .norecord-text{
  117. text-align: center;
  118. width: 100%;
  119. display: inline-block;
  120. margin-top: 20rpx;
  121. font-size: 28rpx;
  122. }
  123. .body .btn_paise{
  124. position: fixed;
  125. z-index: 99;
  126. left: 50%;
  127. transform: translateX(-50%);
  128. width: 100%;
  129. /* bottom: var(--bottom); */
  130. bottom: 0;
  131. display: flex;
  132. justify-content: space-between;
  133. font-size: 0;
  134. max-height: 180rpx;
  135. }
  136. .body .btn_paise > view{
  137. width: 50%;
  138. text-align: center;
  139. height: auto;
  140. padding: 30rpx 0;
  141. font-size: 0;
  142. }
  143. .body .btn_paise > .rescan{
  144. width: 100%;
  145. padding: 0;
  146. background: #FFFFFF;
  147. box-shadow: 0 -4rpx 4rpx 2rpx rgba(0,0,0,0.1);
  148. }
  149. .body .btn_paise > .rescan> text {
  150. font-size: 28rpx;
  151. color: #999999;
  152. background-color: #fff;
  153. padding: 10rpx 0;
  154. display: inline-block;
  155. width: 100%;
  156. }
  157. .body .btn_paise > .rescan> view {
  158. background-color: #FF8500;
  159. width: 100%;
  160. padding: 20rpx 0;
  161. }
  162. .body .btn_paise > .rescan> view > image{
  163. width: 50%;
  164. }
  165. .body .btn_paise > view > image{
  166. width: 50%;
  167. }
  168. .body .btn_paise .luxiang{
  169. background-color: #00B3EC;
  170. }
  171. .body .btn_paise .paizhao{
  172. background-color: #FF8500;
  173. }
  174. .shotting{
  175. position: fixed;
  176. z-index: 999;
  177. top: 0;
  178. left: 0;
  179. width: 100%;
  180. height: 100%;
  181. }
  182. .shotting .shot_bg{
  183. width: 100%;
  184. height: 100%;
  185. }
  186. .shotting .tips{
  187. position: absolute;
  188. top: 40%;
  189. left: 50%;
  190. transform: translateX(-50%);
  191. z-index: 9999;
  192. width: 80%;
  193. }
  194. .shotting .record{
  195. position: absolute;
  196. top: 30rpx;
  197. left: 30rpx;
  198. z-index: 9999;
  199. color: #fff;
  200. width: 50%;
  201. display: flex;
  202. align-items: center;
  203. }
  204. .shotting .tips > image{
  205. width: 100%;
  206. }
  207. .shotting .record > image{
  208. width: 50rpx;
  209. margin-right: 10rpx;
  210. }
  211. .shotting .tips .xiaolian{
  212. background: rgba(25, 25, 25, 0.75);
  213. border-radius: 20rpx;
  214. text-align: center;
  215. color: #fff;
  216. width: 80%;
  217. margin:0 auto;
  218. padding: 10% 0;
  219. }
  220. .shotting .tips .xiaolian image{
  221. width: 20%;
  222. }
  223. .shotting .tips .xiaolian text{
  224. display: block;
  225. margin-top: 20rpx;
  226. }
  227. .shotcon{
  228. width: 100%;
  229. height: 100%;
  230. left: 0;
  231. top: 0;
  232. position: absolute;
  233. }