东风启辰小程序端
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

5 лет назад
5 лет назад
5 лет назад
5 лет назад
5 лет назад
5 лет назад
5 лет назад
5 лет назад
5 лет назад
5 лет назад
5 лет назад
5 лет назад
5 лет назад
5 лет назад
5 лет назад
5 лет назад
5 лет назад
5 лет назад
5 лет назад
5 лет назад
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393
  1. /* pages/luckyStar/luckyStar.wxss */
  2. image{
  3. display: block;
  4. }
  5. view{
  6. -webkit-overflow-scrolling: touch;
  7. }
  8. .main{
  9. height: calc(100vh - 150rpx);
  10. overflow: auto;
  11. }
  12. .gameRuleBtn{
  13. width:81rpx;
  14. height:81rpx;
  15. position: fixed;
  16. right: 17rpx;
  17. top: 216rpx;
  18. }
  19. .gameRuleBtn2{
  20. background-color: #28568B;
  21. }
  22. .gameTip{
  23. width:81rpx;
  24. height:81rpx;
  25. position: fixed;
  26. right: 17rpx;
  27. top: 331rpx;
  28. }
  29. .gameRuleDesc{
  30. position: fixed;
  31. left: 0;
  32. top: 0;
  33. width: 100%;
  34. height: calc(100vh - 150rpx);
  35. background-color: rgba( 000, 000, 000, 0.3);
  36. display: flex;
  37. align-items: center;
  38. justify-content: center;
  39. z-index: 99;
  40. }
  41. .ruleGroup{
  42. position: relative;
  43. width: 487rpx;
  44. height: 459rpx;
  45. }
  46. .gameRuleIcon{
  47. width: 100%;
  48. height: 100%;
  49. }
  50. .gameRuleClose{
  51. position: absolute;
  52. top: -10rpx;
  53. right: -10rpx;
  54. height: 40rpx;
  55. width: 40rpx;
  56. }
  57. .gameStrat{
  58. width:277rpx;
  59. height:50rpx;
  60. position: absolute;
  61. bottom: 50rpx;
  62. left: 50%;
  63. transform: translateX(-50%);
  64. }
  65. .gameMain{
  66. position: relative;
  67. width: 750rpx;
  68. }
  69. .gameStarBg{
  70. width: 750rpx;
  71. height: 1038rpx;
  72. }
  73. .gameTitle{
  74. position: absolute;
  75. left: 49%;
  76. top: 0;
  77. transform: translateX(-50%);
  78. width: 343rpx;
  79. height: 97rpx;
  80. z-index: 10;
  81. }
  82. .downTime{
  83. position: absolute;
  84. top: 20rpx;
  85. right: 80rpx;
  86. font-size:34rpx;
  87. line-height: 34rpx;
  88. font-family:NissanBrand;
  89. color:rgba(35,33,34,1);
  90. font-weight: 500;
  91. }
  92. .gameClaw{
  93. position: absolute;
  94. left: 268rpx;
  95. top: -440rpx;
  96. width: 224rpx;
  97. height: 800rpx;
  98. transition: top 0.8s linear;
  99. transform: scale(2);
  100. transform-origin:50% 0 0;
  101. }
  102. .prizeIcon2{
  103. position: absolute;
  104. left: 74rpx;
  105. top: 558rpx;
  106. width: 561rpx;
  107. height: 187rpx;
  108. }
  109. .prizeIcon1{
  110. position: absolute;
  111. left: 77rpx;
  112. top: 571rpx;
  113. width: 673rpx;
  114. height: 287rpx;
  115. }
  116. .gameGetBtn{
  117. position: absolute;
  118. right: 70rpx;
  119. top: 920rpx;
  120. width: 304rpx;
  121. height: 80rpx;
  122. }
  123. .gameControlFrame{
  124. position: absolute;
  125. left: 120rpx;
  126. top: 915rpx;
  127. width: 174rpx;
  128. height: 106rpx;
  129. }
  130. .gameControlGroup{
  131. widows: 100%;
  132. height: 100%;
  133. position: relative;
  134. }
  135. .btnControlL{
  136. position: absolute;
  137. left: 0;
  138. top: 38rpx;
  139. width: 60rpx;
  140. height: 30rpx;
  141. /* background-color: rgba( 000, 000, 000, 0.3); */
  142. }
  143. .btnControlR{
  144. position: absolute;
  145. right: 0;
  146. top: 38rpx;
  147. width: 64rpx;
  148. height: 30rpx;
  149. /* background-color: rgba(228, 15, 15, 0.849); */
  150. }
  151. .btnControlT{
  152. position: absolute;
  153. left: 65rpx;
  154. top: 0;
  155. width: 48rpx;
  156. height: 44rpx;
  157. /* background-color: rgba(209, 135, 45, 0.5); */
  158. }
  159. .btnControlB{
  160. position: absolute;
  161. left: 60rpx;
  162. bottom: 0;
  163. width: 50rpx;
  164. height: 47rpx;
  165. /* background-color: rgba(233, 222, 111, 0.5); */
  166. }
  167. .successPop{
  168. position: fixed;
  169. top: 0;
  170. left: 0;
  171. width: 100%;
  172. height: calc(100vh - 150rpx);
  173. background-color: rgba( 000, 000, 000, 0.3);
  174. display: flex;
  175. align-items: center;
  176. justify-content: center;
  177. z-index: 99;
  178. }
  179. .successGroup{
  180. position: relative;
  181. width:455rpx;
  182. height:426rpx;
  183. background-color: white;
  184. display: flex;
  185. flex-direction: column;
  186. align-items: center;
  187. border-radius: 20rpx;
  188. }
  189. .successIcon{
  190. position: absolute;
  191. top: -33rpx;
  192. left: 50%;
  193. transform: translateX(-50%);
  194. width: 114rpx;
  195. height: 114rpx;
  196. }
  197. .titleGroup{
  198. width: 100%;
  199. height: 63rpx;
  200. background-color: #355485;
  201. border-top-left-radius: 20rpx;
  202. border-top-right-radius: 20rpx;
  203. }
  204. .startRegister{
  205. width:278rpx;
  206. height:50rpx;
  207. background-color: #345489;
  208. border-radius: 15rpx;
  209. text-align: center;
  210. font-size:21rpx;
  211. font-family:PingFangSC;
  212. font-weight:400;
  213. color:rgba(255,255,255,1);
  214. line-height:50rpx;
  215. position: relative;
  216. }
  217. .prizePic{
  218. width: 310rpx;
  219. height: 116rpx;
  220. margin-bottom: 10rpx;
  221. }
  222. .successTip{
  223. font-size:28rpx;
  224. font-family:PingFangSC;
  225. font-weight:bold;
  226. color:rgba(52,84,132,1);
  227. line-height: 28rpx;
  228. text-align: center;
  229. margin-top: 50rpx;
  230. margin-bottom: 13rpx;
  231. }
  232. .prizeName{
  233. font-size:21rpx;
  234. font-family:PingFangSC;
  235. font-weight:400;
  236. color:rgba(0,0,0,1);
  237. line-height:21rpx;
  238. text-align: center;
  239. margin-bottom: 30rpx;
  240. }
  241. .failText{
  242. font-size:28rpx;
  243. font-family:PingFangSC;
  244. font-weight:bold;
  245. color:rgba(52,84,132,1);
  246. line-height:28rpx;
  247. text-align: center;
  248. }
  249. .getPrizeTip{
  250. display: flex;
  251. align-items: center;
  252. justify-content: center;
  253. margin-top: 50rpx;
  254. margin-bottom: 16rpx;
  255. }
  256. .prizeTipLine{
  257. width:80rpx;
  258. height:5rpx;
  259. background-color: #1F4C76;
  260. }
  261. .prizeTipLine:first-child{
  262. margin-right: 20rpx;
  263. }
  264. .prizeTipLine:last-child{
  265. margin-left: 20rpx;
  266. }
  267. .prizeTipText{
  268. font-size:24rpx;
  269. font-family:PingFangSC;
  270. font-weight:600;
  271. color:rgba(21,83,136,1);
  272. line-height:24rpx;
  273. }
  274. .tipContentGroup{
  275. width:712rpx;
  276. height:72rpx;
  277. margin: 0 auto;
  278. box-sizing: border-box;
  279. border: 1rpx solid #4B6782;
  280. display: flex;
  281. align-items: center;
  282. justify-content: center;
  283. border-radius: 20rpx;
  284. overflow: hidden;
  285. position: relative;
  286. }
  287. /* .tipContentGroup::-webkit-scrollbar {
  288. display:none;
  289. width:0;
  290. height:0;
  291. color:transparent;
  292. } */
  293. .tipContent{
  294. font-size:21rpx;
  295. font-family:PingFangSC;
  296. font-weight:400;
  297. color:rgba(21,83,136,1);
  298. line-height:62rpx;
  299. padding-right: 10rpx;
  300. white-space: nowrap;
  301. }
  302. .prizeLookGroup{
  303. padding-top:40rpx;
  304. padding-bottom: 45rpx;
  305. display: flex;
  306. align-items: center;
  307. justify-content: center;
  308. }
  309. .prizeLook{
  310. width:710rpx;
  311. height:70rpx;
  312. }
  313. .shareBtn{
  314. position: absolute;
  315. left: 0;
  316. top: 0;
  317. z-index: 2;
  318. opacity: 0;
  319. }
  320. .getUserMsgBtn{
  321. position: absolute;
  322. left: 0;
  323. top: 0;
  324. width: 100%;
  325. height: 100%;
  326. opacity: 0;
  327. margin: 0;
  328. padding:0;
  329. }
  330. .scrollSty{
  331. margin-top: 10rpx;
  332. width:672rpx;
  333. height:72rpx;
  334. white-space: nowrap;
  335. }
  336. .tipContent{
  337. display:inline-block;
  338. }
  339. .scrollMask{
  340. position: absolute;
  341. left: 0;
  342. top: 0;
  343. width: 100%;
  344. height: 100%;
  345. opacity: 0;
  346. }
  347. .scrollFirstView{
  348. width:712rpx;
  349. height:72rpx;
  350. }
  351. .luckyClaw{
  352. width: 304rpx;
  353. height: 80rpx;
  354. margin-left: -2rpx;
  355. }
  356. .luckyLeft{
  357. width: 83rpx;
  358. height: 40rpx;
  359. margin-left: -4rpx;
  360. margin-top: -1rpx;
  361. }
  362. .luckyRight{
  363. width: 83rpx;
  364. height: 40rpx;
  365. margin-left: -5rpx;
  366. margin-top: -2rpx;
  367. }
  368. .luckyTop{
  369. width: 72rpx;
  370. height: 47rpx;
  371. }
  372. .luckyBottom{
  373. width: 73rpx;
  374. height: 47rpx;
  375. margin-left: -14rpx;
  376. margin-top: 6rpx;
  377. }
  378. .downTimeGroup{
  379. position: fixed;
  380. left: 0;
  381. top: 0;
  382. width: 100%;
  383. height: calc(100vh - 150rpx);
  384. background-color: rgba( 000, 000, 000, 0.3);
  385. display: flex;
  386. align-items: center;
  387. justify-content: center;
  388. z-index: 99;
  389. }
  390. .luckyNum{
  391. width: 221rpx;
  392. height: 131rpx;
  393. }