index.css 5.8 KB

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