index.css 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298
  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. font-size: 1vw;
  21. }
  22. *{
  23. margin: 0;
  24. padding: 0;
  25. }
  26. html,body{
  27. width: 100rem;
  28. /* height: 100rem; */
  29. /* overflow: hidden; */
  30. }
  31. body{
  32. position:relative;
  33. }
  34. #base{
  35. width:100rem;
  36. height: 56rem;
  37. position: relative;
  38. margin-top:-4rem;
  39. }
  40. .back-picture{
  41. position: absolute;
  42. border-width: 0;
  43. left:50%;
  44. top:0;
  45. -webkit-transform: translate(-50%);
  46. -ms-transform: translate(-50%);
  47. transform: translate(-50%);
  48. width:100%;
  49. height: 100%;
  50. background-color:darkseagreen;
  51. }
  52. .titles{
  53. position:absolute;
  54. top:10rem;
  55. width:100rem;
  56. text-align: center;
  57. }
  58. .locate1{
  59. top:14rem;
  60. }
  61. .locate2{
  62. top:18.8rem;
  63. }
  64. .buttons{
  65. position:absolute;
  66. /* bottom: 12%; */
  67. top:46rem;
  68. left:0;
  69. width: 100%;
  70. display:-webkit-box;
  71. display:-webkit-flex;
  72. display:-ms-flexbox;
  73. display:flex;
  74. -webkit-box-pack: center;
  75. -webkit-justify-content: center;
  76. -ms-flex-pack: center;
  77. justify-content: center;
  78. font-size: 1rem;
  79. font-family:'Microsoft YaHei','Arial Negreta', 'Arial Normal', 'Arial';
  80. }
  81. .button{
  82. margin:0 2rem 0;
  83. display: -webkit-box;
  84. display: -webkit-flex;
  85. display: -ms-flexbox;
  86. display: flex;
  87. -webkit-box-pack: center;
  88. -webkit-justify-content: center;
  89. -ms-flex-pack: center;
  90. justify-content: center;
  91. -webkit-box-align: center;
  92. -webkit-align-items: center;
  93. -ms-flex-align: center;
  94. align-items: center;
  95. }
  96. .text{
  97. position: absolute;
  98. left: inherit;
  99. text-align: center;
  100. color:#FFFFFF;
  101. font-weight: normal;
  102. }
  103. .text a{
  104. color: inherit;
  105. }
  106. .text a:link{
  107. text-decoration:none;
  108. }
  109. .text a:visited{
  110. text-decoration:none;
  111. }
  112. .text a:hover{
  113. text-decoration:none;
  114. }
  115. .text a:active{
  116. text-decoration:none;
  117. }
  118. .herald{
  119. position: fixed;
  120. top:43%;
  121. left: 50%;
  122. -webkit-transform: translateX(-50%);
  123. -ms-transform: translateX(-50%);
  124. transform: translateX(-50%);
  125. border-radius: 50px / 45px;
  126. color:#000000;
  127. font-size: 12px;
  128. padding:0 10px 0 10px;
  129. width: 25%;
  130. text-align: center;
  131. /* visibility: hidden; */
  132. display: none;
  133. }
  134. .herald .toast{
  135. width: 100%;
  136. }
  137. .herald .toast-content{
  138. width: 52%;
  139. position: absolute;
  140. top: 37%;
  141. left: 50%;
  142. -webkit-transform: translateX(-50%);
  143. -ms-transform: translateX(-50%);
  144. transform: translateX(-50%);
  145. }
  146. .ready:hover .herald{
  147. /* visibility: visible; */
  148. display: block;
  149. }
  150. .contact{
  151. /* position: fixed; */
  152. position:absolute;
  153. top:4.9rem;
  154. right: 2rem;
  155. z-index:9999;
  156. }
  157. .contact-icon{
  158. width:105px;
  159. height:25px;
  160. display: -webkit-box;
  161. display: -webkit-flex;
  162. display: -ms-flexbox;
  163. display: flex;
  164. -webkit-box-pack:justify;
  165. -webkit-justify-content:space-between;
  166. -ms-flex-pack:justify;
  167. justify-content:space-between;
  168. }
  169. .contact-content{
  170. position: absolute;
  171. top:33px;
  172. right:0;
  173. visibility: hidden;
  174. }
  175. /* @media screen and (min-width:320px) and (max-width:480px) {
  176. .contact-icon{
  177. width:5.4rem;
  178. height:1.3rem;
  179. display: -webkit-box;
  180. display: -webkit-flex;
  181. display: -ms-flexbox;
  182. display: flex;
  183. -webkit-box-pack:justify;
  184. -webkit-justify-content:space-between;
  185. -ms-flex-pack:justify;
  186. justify-content:space-between;
  187. }
  188. .contact-content{
  189. position: absolute;
  190. top:1.17rem;
  191. right:0;
  192. visibility: hidden;
  193. }
  194. } */
  195. .contact:hover .contact-content{
  196. visibility: visible;
  197. }
  198. .items{
  199. position: absolute;
  200. top:28px;
  201. left:28px;
  202. display: -webkit-box;
  203. display: -webkit-flex;
  204. display: -ms-flexbox;
  205. display: flex;
  206. -webkit-box-orient: vertical;
  207. -webkit-box-direction: normal;
  208. -webkit-flex-direction: column;
  209. -ms-flex-direction: column;
  210. flex-direction: column;
  211. -webkit-box-pack: justify;
  212. -webkit-justify-content: space-between;
  213. -ms-flex-pack: justify;
  214. justify-content: space-between;
  215. font-size: 12px;;
  216. }
  217. .item{
  218. color:#FFFFFF;
  219. }
  220. .item-title{
  221. color:#D06814;
  222. }
  223. .block1{
  224. height: 60px;
  225. }
  226. .block2{
  227. top:122px;
  228. height:35px;
  229. }
  230. .block3{
  231. top:193px;
  232. height:103px;
  233. }
  234. .qrcode{
  235. width: 75px;
  236. }
  237. img.img1{
  238. height:2.4rem;
  239. }
  240. img.img2{
  241. height:5.68rem;
  242. }
  243. img.img3{
  244. height:3.5rem;
  245. }
  246. img.img4{
  247. width:12.3rem;
  248. height:2.91rem;
  249. }