index.css 6.4 KB

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