index.css 5.9 KB

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