index.css 6.7 KB

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