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