lottery.css 2.4 KB

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