index.css 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214
  1. ::-webkit-scrollbar {
  2. width: 8px;
  3. height: 0;
  4. background: #f2f2f2;
  5. /* background-color: transparent; */
  6. padding-right: 2px;
  7. }
  8. ::-webkit-scrollbar-thumb {
  9. background: #999ca0;
  10. border-radius: 10px;
  11. border: 0;
  12. }
  13. .scroller{
  14. overflow-y: scroll;
  15. scrollbar-width: thin;
  16. border-radius: 10px;
  17. scrollbar-color: #b4bbc5 #f2f2f2;
  18. scrollbar-track-color: #b4bbc5 #f2f2f2;
  19. -ms-scrollbar-track-color: #b4bbc5 #f2f2f2;
  20. }
  21. *{
  22. margin: 0;
  23. padding: 0;
  24. }
  25. html,body{
  26. width: 100%;
  27. height: 100%;
  28. /* overflow: hidden; */
  29. }
  30. body{
  31. position:relative;
  32. }
  33. .base{
  34. width:100%;
  35. height: 100%;
  36. position: relative;
  37. }
  38. .back-picture{
  39. position: absolute;
  40. border-width: 0;
  41. left:50%;
  42. top:0;
  43. transform: translate(-50%);
  44. width:100%;
  45. background-color:darkseagreen;
  46. }
  47. .titles{
  48. position:absolute;
  49. top:12%;
  50. width:100%;
  51. text-align: center;
  52. }
  53. .locate1{
  54. top:20%;
  55. }
  56. .locate2{
  57. top:32%;
  58. }
  59. .buttons{
  60. position:absolute;
  61. bottom: 12%;
  62. left:0;
  63. width: 100%;
  64. display:flex;
  65. justify-content: center;
  66. font-size: 1.4em;
  67. font-family:'Microsoft YaHei','Arial Negreta', 'Arial Normal', 'Arial';
  68. }
  69. .button{
  70. margin:0 20px 0 20px;
  71. display: flex;
  72. justify-content: center;
  73. align-items: center;
  74. }
  75. .text{
  76. position: absolute;
  77. left: inherit;
  78. text-align: center;
  79. color:#FFFFFF;
  80. font-weight: normal;
  81. }
  82. .text a{
  83. color: inherit;
  84. }
  85. .text a:link{
  86. text-decoration:none;
  87. }
  88. .text a:visited{
  89. text-decoration:none;
  90. }
  91. .text a:hover{
  92. text-decoration:none;
  93. }
  94. .text a:active{
  95. text-decoration:none;
  96. }
  97. .herald{
  98. position: fixed;
  99. top:45%;
  100. left: 50%;
  101. transform: translateX(-50%);
  102. border-radius: 50px / 45px;
  103. color:#000000;
  104. font-size: 12px;
  105. padding:0 10px 0 10px;
  106. width: 25%;
  107. text-align: center;
  108. visibility: hidden;
  109. }
  110. .herald .toast{
  111. width: 100%;
  112. }
  113. .herald .toast-content{
  114. width: 52%;
  115. position: absolute;
  116. top: 37%;
  117. left: 50%;
  118. transform: translateX(-50%);
  119. }
  120. .ready:hover .herald{
  121. visibility: visible;
  122. }
  123. .contact{
  124. position: fixed;
  125. top:20px;
  126. right: 20px;
  127. }
  128. .contact-icon{
  129. width:105px;
  130. height:25px;
  131. display: flex;
  132. justify-content:space-between;
  133. }
  134. .contact-content{
  135. position: absolute;
  136. top:33px;
  137. right:0;
  138. visibility: hidden;
  139. }
  140. .contact:hover .contact-content{
  141. visibility: visible;
  142. }
  143. .items{
  144. position: absolute;
  145. top:28px;
  146. left:28px;
  147. display: flex;
  148. flex-direction: column;
  149. justify-content: space-between;
  150. font-size: 12px;;
  151. }
  152. .item{
  153. color:#FFFFFF;
  154. }
  155. .item-title{
  156. color:#D06814;
  157. }
  158. .block1{
  159. height: 60px;
  160. }
  161. .block2{
  162. top:122px;
  163. height:35px;
  164. }
  165. .block3{
  166. top:193px;
  167. height:103px;
  168. }
  169. .qrcode{
  170. width: 75px;
  171. }
  172. .backcloth{
  173. position:relative;
  174. left: 0;
  175. top:1080px;
  176. }