index.css 7.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392
  1. html,
  2. body {
  3. height: 100%;
  4. }
  5. * {
  6. padding: 0;
  7. margin: 0;
  8. box-sizing: border-box;
  9. }
  10. body {
  11. background-color: #000000;
  12. margin: 0;
  13. font-family: Helvetica, sans-serif;
  14. overflow: hidden;
  15. background: url('../img/startBg2.png') no-repeat center #000000;
  16. background-size: cover;
  17. }
  18. .pageTitle {
  19. width: 217px;
  20. height: 103px;
  21. background: url('../img/icon-title.png') no-repeat center;
  22. background-size: contain;
  23. position: fixed;
  24. left: 50%;
  25. transform: translateX(-50%);
  26. }
  27. .iconBack {
  28. width: 54px;
  29. height: 54px;
  30. background: url('../img/icon-back.png') no-repeat center;
  31. background-size: contain;
  32. position: fixed;
  33. left: 36px;
  34. top: 30px;
  35. cursor: pointer;
  36. transition: opacity 0.2s ease;
  37. }
  38. .iconBack:hover {
  39. opacity: 0.9;
  40. transition: opacity 0.2s ease;
  41. }
  42. a {
  43. color: #ffffff;
  44. }
  45. #info {
  46. position: absolute;
  47. width: 100%;
  48. color: #ffffff;
  49. padding: 5px;
  50. font-family: Monospace;
  51. font-size: 13px;
  52. font-weight: bold;
  53. text-align: center;
  54. z-index: 1;
  55. }
  56. #menu {
  57. position: absolute;
  58. bottom: 20px;
  59. width: 100%;
  60. text-align: center;
  61. }
  62. #menu.menuRight{
  63. display: flex;
  64. padding: 0 100px;
  65. flex-direction: row-reverse;
  66. }
  67. #menu.menuLeft{
  68. display: flex;
  69. padding: 0 100px;
  70. }
  71. .bss {
  72. height: 100vh;
  73. width: 100%;
  74. }
  75. .element {
  76. width: 152px;
  77. height: 172px;
  78. box-shadow: 0px 3px 7px 0px rgba(99, 171, 186, 0.53);
  79. text-align: center;
  80. cursor: default;
  81. display: flex;
  82. align-items: center;
  83. justify-content: center;
  84. flex-direction: column;
  85. }
  86. .element.hide {
  87. visibility: hidden;
  88. opacity: 0;
  89. }
  90. .element .symbolBox {
  91. position: absolute;
  92. top: 20px;
  93. left: 27px;
  94. right: 0px;
  95. /* font-size: 60px;
  96. font-weight: bold;
  97. color: rgba(255,255,255,0.75); */
  98. /* text-shadow: 0 0 10px rgba(0,255,255,0.95); */
  99. display: block;
  100. width: 98px;
  101. height: 98px;
  102. overflow: hidden;
  103. border-radius: 50%;
  104. border: 3px solid #4daaff;
  105. }
  106. .element .symbolBox img {
  107. height: 100%;
  108. position: absolute;
  109. left: 50%;
  110. transform: translateX(-50%);
  111. }
  112. .element .details {
  113. position: absolute;
  114. bottom: 12px;
  115. right: 0px;
  116. padding-top: 15px;
  117. font-size: 22px;
  118. display: block;
  119. color: #374693;
  120. font-weight: 500;
  121. max-width: 100px;
  122. overflow: hidden;
  123. text-overflow: ellipsis;
  124. white-space: nowrap;
  125. left: 50%;
  126. margin-left: -50px;
  127. }
  128. #table {
  129. width: 171px;
  130. height: 69px;
  131. background: url('../img/icon-start-btn.png') no-repeat center;
  132. background-size: contain;
  133. border: none;
  134. cursor: pointer;
  135. transition: opacity 0.2s ease;
  136. }
  137. #table:hover {
  138. opacity: 0.9;
  139. transition: opacity 0.2s ease;
  140. }
  141. #table.disabled {
  142. background: url('../img/icon-start-btn-disabled.png') no-repeat center;
  143. background-size: contain;
  144. cursor: not-allowed;
  145. }
  146. #table.disabled:hover {
  147. opacity: 1;
  148. }
  149. #backBtn {
  150. width: 171px;
  151. height: 69px;
  152. background: url('../img/back.png') no-repeat center;
  153. background-size: contain;
  154. border: none;
  155. cursor: pointer;
  156. transition: opacity 0.2s ease;
  157. }
  158. #backBtn:hover {
  159. opacity: 0.9;
  160. transition: opacity 0.2s ease;
  161. }
  162. #sphere {
  163. width: 171px;
  164. height: 69px;
  165. background: url('../img/icon-over-btn.png') no-repeat center;
  166. background-size: contain;
  167. border: none;
  168. cursor: pointer;
  169. transition: opacity 0.2s ease;
  170. }
  171. #sphere:hover {
  172. opacity: 0.9;
  173. transition: opacity 0.2s ease;
  174. }
  175. .changeImgBoxs {
  176. position: relative;
  177. overflow: hidden;
  178. width: 257px;
  179. height: 292px;
  180. background: #ffffff;
  181. box-shadow: 0px 7px 16px 0px rgba(108, 200, 220, 0.53);
  182. border-radius: 15px;
  183. display: flex;
  184. align-items: center;
  185. justify-content: center;
  186. flex-direction: column;
  187. }
  188. .changeImgBoxs .details {
  189. padding-top: 22px;
  190. font-weight: 500;
  191. font-size: 35px;
  192. color: #374693;
  193. line-height: 49px;
  194. text-align: center;
  195. max-width: 200px;
  196. overflow: hidden;
  197. text-overflow: ellipsis;
  198. white-space: nowrap;
  199. }
  200. .symbolBox2 {
  201. width: 166px;
  202. height: 166px;
  203. border: 6px solid #4daaff;
  204. position: relative;
  205. overflow: hidden;
  206. border-radius: 50%;
  207. }
  208. .symbol2 {
  209. position: absolute;
  210. top: 0;
  211. left: 50%;
  212. height: 100%;
  213. transform: translateX(-50%);
  214. }
  215. .priceLists {
  216. position: absolute;
  217. width: 100%;
  218. height: 100%;
  219. background: rgba(0, 0, 0, 0.8);
  220. }
  221. .closeBtn {
  222. position: absolute;
  223. right: 30px;
  224. top: 20px;
  225. width: 40px;
  226. height: 40px;
  227. font-size: 38px;
  228. line-height: 40px;
  229. text-align: center;
  230. border-radius: 50%;
  231. border: 2px solid rgba(127, 255, 255, 0.75);
  232. color: rgba(127, 255, 255, 0.75);
  233. cursor: pointer;
  234. }
  235. .listBoxs {
  236. width: 80%;
  237. height: 80%;
  238. border-radius: 20px;
  239. border: 2px solid rgba(127, 255, 255, 0.75);
  240. box-shadow: 0 0 20px rgba(127, 255, 255, 0.75);
  241. margin: 0 auto;
  242. margin-top: 80px;
  243. display: flex;
  244. flex-direction: column;
  245. position: relative;
  246. }
  247. .listBoxs .tit {
  248. height: 80px;
  249. width: 100%;
  250. font-size: 38px;
  251. text-align: center;
  252. line-height: 80px;
  253. color: rgba(127, 255, 255, 0.75);
  254. }
  255. .listBoxs .listBox {
  256. min-height: 80px;
  257. padding: 20px;
  258. display: flex;
  259. align-content: center;
  260. padding-left: 60px;
  261. }
  262. .listBox label {
  263. font-size: 24px;
  264. color: rgba(127, 255, 255, 0.75);
  265. display: block;
  266. width: 120px;
  267. text-align: right;
  268. padding-right: 20px;
  269. line-height: 80px;
  270. }
  271. .listBox dl {
  272. width: 110px;
  273. height: 150px;
  274. padding: 10px;
  275. border: 2px solid rgba(127, 255, 255, 0.75);
  276. border-radius: 5px;
  277. box-shadow: 0 0 10px rgba(127, 255, 255, 0.75);
  278. background: rgba(127, 255, 255, 0.25);
  279. margin-right: 20px;
  280. }
  281. .listBox dl dt {
  282. width: 100%;
  283. height: 80%;
  284. position: relative;
  285. overflow: hidden;
  286. }
  287. .listBox dl dt img {
  288. height: 100%;
  289. position: relative;
  290. left: 50%;
  291. transform: translateX(-50%);
  292. }
  293. .listBox dl dd {
  294. text-align: center;
  295. font-size: 15px;
  296. line-height: 40px;
  297. color: rgba(127, 255, 255, 0.75);
  298. }
  299. .listBoxs .clear {
  300. position: absolute;
  301. left: 30px;
  302. bottom: 30px;
  303. width: 120px;
  304. height: 50px;
  305. font-size: 20px;
  306. text-align: center;
  307. line-height: 50px;
  308. cursor: pointer;
  309. color: rgba(127, 255, 255, 0.75);
  310. border-radius: 5px;
  311. border: 2px solid rgba(127, 255, 255, 0.75);
  312. box-shadow: 0 0 10px rgba(127, 255, 255, 0.75);
  313. background: rgba(127, 255, 255, 0.25);
  314. }
  315. .listBoxs .clear2 {
  316. right: 30px;
  317. left: auto;
  318. }
  319. .spic {
  320. position: absolute;
  321. right: 20px;
  322. top: 70px;
  323. width: 400px;
  324. height: 80%;
  325. }
  326. /*特等奖*/
  327. .spic p {
  328. color: rgba(127, 255, 255, 0.75);
  329. font-size: 25px;
  330. line-height: 3;
  331. }
  332. .spic dl {
  333. width: 240px;
  334. height: 320px;
  335. padding: 20px;
  336. border: 2px solid rgba(127, 255, 255, 0.75);
  337. border-radius: 10px;
  338. box-shadow: 0 0 20px rgba(127, 255, 255, 0.75);
  339. background: rgba(127, 255, 255, 0.25);
  340. margin-right: 20px;
  341. }
  342. .spic dl dt {
  343. width: 100%;
  344. height: 83%;
  345. position: relative;
  346. overflow: hidden;
  347. }
  348. .spic dl dt img {
  349. height: 100%;
  350. position: relative;
  351. left: 50%;
  352. transform: translateX(-50%);
  353. }
  354. .spic dl dd {
  355. text-align: center;
  356. font-size: 32px;
  357. line-height: 70px;
  358. color: rgba(127, 255, 255, 0.75);
  359. }
  360. /*礼包*/
  361. .imgBox {
  362. position: absolute;
  363. left: 0;
  364. top: 0;
  365. width: 300px;
  366. height: 400px;
  367. background: rgba(0, 0, 0, 0.3);
  368. margin-top: 100px;
  369. }
  370. .imgBox p {
  371. height: 100px;
  372. line-height: 140px;
  373. color: rgba(127, 255, 255, 0.75);
  374. font-size: 36px;
  375. text-align: center;
  376. }
  377. .imgBox img {
  378. width: 300px;
  379. height: 300px;
  380. }