lottery.css 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144
  1. * {
  2. margin: 0;
  3. padding: 0;
  4. }
  5. .check_result{
  6. position: absolute;
  7. top: 5px;
  8. right: 5px;
  9. color: black;
  10. }
  11. .background {
  12. width: 100%;
  13. height: auto;
  14. }
  15. .pool {
  16. position: absolute;
  17. width: 84%;
  18. height: auto;
  19. left: 7%;
  20. top: 250px;
  21. }
  22. .container {
  23. display: flex;
  24. flex-wrap: wrap;
  25. justify-content: space-around;
  26. position: absolute;
  27. width: 76%;
  28. height: 90%;
  29. left: 11%;
  30. }
  31. .item {
  32. border-radius: 18px;
  33. width: 32%;
  34. }
  35. .active {
  36. box-shadow : 0 0 0 2px aqua;
  37. }
  38. .title{
  39. width: 100%;
  40. text-align: center;
  41. font-size: 20px;
  42. font-weight: 700;
  43. position: absolute;
  44. left: 0;
  45. }
  46. .tips{
  47. color: #470C82;
  48. position: absolute;
  49. width: 90%;
  50. left: 5%;
  51. }
  52. .mask{
  53. position: absolute;
  54. top: 0;
  55. height: 100%;
  56. width: 100%;
  57. background-color: rgba(0, 0, 0, 0.7);
  58. z-index: 10;
  59. }
  60. .result{
  61. position: absolute;
  62. width: 100%;
  63. left: 0;
  64. top: 0;
  65. z-index: 11;
  66. }
  67. .result_failed_button{
  68. position: absolute;
  69. left: 24%;
  70. width: 52%;
  71. z-index: 12;
  72. }
  73. .result_failed_text{
  74. position: absolute;
  75. width: 100%;
  76. text-align: center;
  77. z-index: 13;
  78. color: white;
  79. font-size: 20px;
  80. }
  81. .result_success_title{
  82. position: absolute;
  83. width: 100%;
  84. text-align: center;
  85. z-index: 12;
  86. color: orange;
  87. font-size: 20px;
  88. }
  89. .result_success_logo{
  90. position: absolute;
  91. width: 30%;
  92. left: 35%;
  93. z-index: 12;
  94. }
  95. input{
  96. position: absolute;
  97. left: 24%;
  98. width: 45%;
  99. z-index: 12;
  100. height: 40px;
  101. border: orange solid 3px;
  102. border-radius: 40px;
  103. padding-left: 20px;
  104. }
  105. .result_success_button{
  106. position: absolute;
  107. left: 24%;
  108. width: 52%;
  109. z-index: 12;
  110. }
  111. /*滚动*/
  112. .case {
  113. position: absolute;
  114. width: 95%;
  115. left: 5%;
  116. height: 70px;
  117. overflow: hidden;
  118. }
  119. .case .part2 {
  120. float: left;
  121. width: 93%;
  122. height: 70px;
  123. text-indent: 1em;
  124. overflow: hidden;
  125. }
  126. #part2 ul {
  127. width: 100%;
  128. height: auto;
  129. list-style: none;
  130. padding: 0;
  131. margin: 0;
  132. }
  133. #part2 ul li {
  134. width: 100%;
  135. height: 30px;
  136. font-size: 16px;
  137. line-height: 30px;
  138. color: white;
  139. overflow: hidden;
  140. white-space: nowrap;
  141. text-overflow: ellipsis;
  142. }