index.css 6.8 KB

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