index.css 7.3 KB

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