index.css 6.8 KB

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