index.css 6.9 KB

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