index.css 6.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380
  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: 50px;
  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. transition: all 0.2s ease;
  86. }
  87. .element.hide {
  88. visibility: hidden;
  89. opacity: 0;
  90. transition: all 0.2s ease;
  91. }
  92. .element .symbolBox {
  93. display: block;
  94. width: 98px;
  95. height: 98px;
  96. overflow: hidden;
  97. border-radius: 50%;
  98. border: 3px solid #4daaff;
  99. }
  100. .element .symbolBox img {
  101. width: 100%;
  102. height: 100%;
  103. }
  104. .element .details {
  105. padding-top: 15px;
  106. font-size: 22px;
  107. color: #374693;
  108. font-weight: 500;
  109. max-width: 100px;
  110. overflow: hidden;
  111. text-overflow: ellipsis;
  112. white-space: nowrap;
  113. }
  114. #table {
  115. width: 171px;
  116. height: 69px;
  117. background: url('../img/icon-start-btn.png') no-repeat center;
  118. background-size: contain;
  119. border: none;
  120. cursor: pointer;
  121. transition: opacity 0.2s ease;
  122. }
  123. #table:hover {
  124. opacity: 0.9;
  125. transition: opacity 0.2s ease;
  126. }
  127. #table.disabled {
  128. background: url('../img/icon-start-btn-disabled.png') no-repeat center;
  129. background-size: contain;
  130. cursor: not-allowed;
  131. }
  132. #table.disabled:hover {
  133. opacity: 1;
  134. }
  135. #backBtn {
  136. width: 171px;
  137. height: 69px;
  138. background: url('../img/back.png') no-repeat center;
  139. background-size: contain;
  140. border: none;
  141. cursor: pointer;
  142. transition: opacity 0.2s ease;
  143. margin: 0 20px;
  144. }
  145. #backBtn:hover {
  146. opacity: 0.9;
  147. transition: opacity 0.2s ease;
  148. }
  149. #sphere {
  150. width: 171px;
  151. height: 69px;
  152. background: url('../img/icon-over-btn.png') no-repeat center;
  153. background-size: contain;
  154. border: none;
  155. cursor: pointer;
  156. transition: opacity 0.2s ease;
  157. }
  158. #sphere:hover {
  159. opacity: 0.9;
  160. transition: opacity 0.2s ease;
  161. }
  162. .changeImgBoxs {
  163. position: relative;
  164. overflow: hidden;
  165. width: 257px;
  166. height: 292px;
  167. background: #ffffff;
  168. box-shadow: 0px 7px 16px 0px rgba(108, 200, 220, 0.53);
  169. border-radius: 15px;
  170. display: flex;
  171. align-items: center;
  172. justify-content: center;
  173. flex-direction: column;
  174. }
  175. .changeImgBoxs .details {
  176. padding-top: 22px;
  177. font-weight: 500;
  178. font-size: 35px;
  179. color: #374693;
  180. line-height: 49px;
  181. text-align: center;
  182. max-width: 200px;
  183. overflow: hidden;
  184. text-overflow: ellipsis;
  185. white-space: nowrap;
  186. }
  187. .symbolBox2 {
  188. width: 166px;
  189. height: 166px;
  190. border: 6px solid #4daaff;
  191. position: relative;
  192. overflow: hidden;
  193. border-radius: 50%;
  194. }
  195. .symbol2 {
  196. position: absolute;
  197. top: 0;
  198. left: 50%;
  199. height: 100%;
  200. transform: translateX(-50%);
  201. }
  202. .priceLists {
  203. position: absolute;
  204. width: 100%;
  205. height: 100%;
  206. background: rgba(0, 0, 0, 0.9);
  207. }
  208. .closeBtn {
  209. position: absolute;
  210. right: 30px;
  211. top: 20px;
  212. width: 40px;
  213. height: 40px;
  214. font-size: 38px;
  215. line-height: 40px;
  216. text-align: center;
  217. border-radius: 50%;
  218. border: 2px solid rgba(127, 255, 255, 0.75);
  219. color: rgba(127, 255, 255, 0.75);
  220. cursor: pointer;
  221. }
  222. .listBoxs {
  223. width: 80%;
  224. height: 80%;
  225. border-radius: 20px;
  226. border: 2px solid rgba(127, 255, 255, 0.75);
  227. box-shadow: 0 0 20px rgba(127, 255, 255, 0.75);
  228. margin: 0 auto;
  229. margin-top: 80px;
  230. display: flex;
  231. flex-direction: column;
  232. position: relative;
  233. }
  234. .listBoxs .tit {
  235. height: 80px;
  236. width: 100%;
  237. font-size: 38px;
  238. text-align: center;
  239. line-height: 80px;
  240. color: rgba(127, 255, 255, 0.75);
  241. }
  242. .listBoxs .listBox {
  243. min-height: 80px;
  244. padding: 20px;
  245. display: flex;
  246. align-content: center;
  247. padding-left: 60px;
  248. }
  249. .listBox label {
  250. font-size: 24px;
  251. color: rgba(127, 255, 255, 0.75);
  252. display: block;
  253. width: 120px;
  254. text-align: right;
  255. padding-right: 20px;
  256. line-height: 80px;
  257. }
  258. .listBox dl {
  259. width: 110px;
  260. height: 150px;
  261. padding: 10px;
  262. border: 2px solid rgba(127, 255, 255, 0.75);
  263. border-radius: 5px;
  264. box-shadow: 0 0 10px rgba(127, 255, 255, 0.75);
  265. background: rgba(127, 255, 255, 0.25);
  266. margin-right: 20px;
  267. }
  268. .listBox dl dt {
  269. width: 100%;
  270. height: 80%;
  271. position: relative;
  272. overflow: hidden;
  273. }
  274. .listBox dl dt img {
  275. height: 100%;
  276. position: relative;
  277. left: 50%;
  278. transform: translateX(-50%);
  279. }
  280. .listBox dl dd {
  281. text-align: center;
  282. font-size: 15px;
  283. line-height: 40px;
  284. color: rgba(127, 255, 255, 0.75);
  285. }
  286. .listBoxs .clear {
  287. position: absolute;
  288. left: 30px;
  289. bottom: 30px;
  290. width: 120px;
  291. height: 50px;
  292. font-size: 20px;
  293. text-align: center;
  294. line-height: 50px;
  295. cursor: pointer;
  296. color: rgba(127, 255, 255, 0.75);
  297. border-radius: 5px;
  298. border: 2px solid rgba(127, 255, 255, 0.75);
  299. box-shadow: 0 0 10px rgba(127, 255, 255, 0.75);
  300. background: rgba(127, 255, 255, 0.25);
  301. }
  302. .listBoxs .clear2 {
  303. right: 30px;
  304. left: auto;
  305. }
  306. .spic {
  307. position: absolute;
  308. right: 20px;
  309. top: 70px;
  310. width: 400px;
  311. height: 80%;
  312. }
  313. /*特等奖*/
  314. .spic p {
  315. color: rgba(127, 255, 255, 0.75);
  316. font-size: 25px;
  317. line-height: 3;
  318. }
  319. .spic dl {
  320. width: 240px;
  321. height: 320px;
  322. padding: 20px;
  323. border: 2px solid rgba(127, 255, 255, 0.75);
  324. border-radius: 10px;
  325. box-shadow: 0 0 20px rgba(127, 255, 255, 0.75);
  326. background: rgba(127, 255, 255, 0.25);
  327. margin-right: 20px;
  328. }
  329. .spic dl dt {
  330. width: 100%;
  331. height: 83%;
  332. position: relative;
  333. overflow: hidden;
  334. }
  335. .spic dl dt img {
  336. height: 100%;
  337. position: relative;
  338. left: 50%;
  339. transform: translateX(-50%);
  340. }
  341. .spic dl dd {
  342. text-align: center;
  343. font-size: 32px;
  344. line-height: 70px;
  345. color: rgba(127, 255, 255, 0.75);
  346. }
  347. /*礼包*/
  348. .imgBox {
  349. position: absolute;
  350. left: 0;
  351. top: 0;
  352. width: 300px;
  353. height: 400px;
  354. background: rgba(0, 0, 0, 0.3);
  355. margin-top: 100px;
  356. }
  357. .imgBox p {
  358. height: 100px;
  359. line-height: 140px;
  360. color: rgba(127, 255, 255, 0.75);
  361. font-size: 36px;
  362. text-align: center;
  363. }
  364. .imgBox img {
  365. width: 300px;
  366. height: 300px;
  367. }