index.css 4.9 KB

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