index.css 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308
  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. box-shadow: 0 0 10px #000;
  96. border-radius: 5px;
  97. width: 12.3rem;
  98. height: 2.91rem;
  99. background: linear-gradient(180deg,#D06814,#FFCDB2);
  100. border: solid 0px #D06814;
  101. }
  102. .text{
  103. position: absolute;
  104. left: inherit;
  105. text-align: center;
  106. color:#FFFFFF;
  107. font-weight: normal;
  108. }
  109. .text a{
  110. color: inherit;
  111. }
  112. .text a:link{
  113. text-decoration:none;
  114. }
  115. .text a:visited{
  116. text-decoration:none;
  117. }
  118. .text a:hover{
  119. text-decoration:none;
  120. }
  121. .text a:active{
  122. text-decoration:none;
  123. }
  124. .herald{
  125. position: fixed;
  126. top:43%;
  127. left: 50%;
  128. -webkit-transform: translateX(-50%);
  129. -ms-transform: translateX(-50%);
  130. transform: translateX(-50%);
  131. border-radius: 50px / 45px;
  132. color:#000000;
  133. font-size: 12px;
  134. padding:0 10px 0 10px;
  135. width: 25%;
  136. text-align: center;
  137. /* visibility: hidden; */
  138. display: none;
  139. }
  140. .herald .toast{
  141. width: 100%;
  142. }
  143. .herald .toast-content{
  144. width: 52%;
  145. position: absolute;
  146. top: 37%;
  147. left: 50%;
  148. -webkit-transform: translateX(-50%);
  149. -ms-transform: translateX(-50%);
  150. transform: translateX(-50%);
  151. }
  152. .ready:hover .herald{
  153. /* visibility: visible; */
  154. display: block;
  155. }
  156. .contact{
  157. /* position: fixed; */
  158. position:absolute;
  159. top:4.9rem;
  160. right: 2rem;
  161. z-index:9999;
  162. }
  163. .contact-icon{
  164. width:105px;
  165. height:25px;
  166. display: -webkit-box;
  167. display: -webkit-flex;
  168. display: -ms-flexbox;
  169. display: flex;
  170. -webkit-box-pack:justify;
  171. -webkit-justify-content:space-between;
  172. -ms-flex-pack:justify;
  173. justify-content:space-between;
  174. }
  175. .contact-content{
  176. position: absolute;
  177. top:33px;
  178. right:0;
  179. visibility: hidden;
  180. }
  181. /* @media screen and (min-width:320px) and (max-width:480px) {
  182. .contact-icon{
  183. width:5.4rem;
  184. height:1.3rem;
  185. display: -webkit-box;
  186. display: -webkit-flex;
  187. display: -ms-flexbox;
  188. display: flex;
  189. -webkit-box-pack:justify;
  190. -webkit-justify-content:space-between;
  191. -ms-flex-pack:justify;
  192. justify-content:space-between;
  193. }
  194. .contact-content{
  195. position: absolute;
  196. top:1.17rem;
  197. right:0;
  198. visibility: hidden;
  199. }
  200. } */
  201. .contact:hover .contact-content{
  202. visibility: visible;
  203. }
  204. .items{
  205. position: absolute;
  206. top:28px;
  207. left:28px;
  208. display: -webkit-box;
  209. display: -webkit-flex;
  210. display: -ms-flexbox;
  211. display: flex;
  212. -webkit-box-orient: vertical;
  213. -webkit-box-direction: normal;
  214. -webkit-flex-direction: column;
  215. -ms-flex-direction: column;
  216. flex-direction: column;
  217. -webkit-box-pack: justify;
  218. -webkit-justify-content: space-between;
  219. -ms-flex-pack: justify;
  220. justify-content: space-between;
  221. font-size: 12px;;
  222. }
  223. .item{
  224. color:#FFFFFF;
  225. }
  226. .item-title{
  227. color:#D06814;
  228. }
  229. .block1{
  230. height: 60px;
  231. }
  232. .block2{
  233. top:122px;
  234. height:35px;
  235. }
  236. .block3{
  237. top:193px;
  238. height:103px;
  239. }
  240. .qrcode{
  241. width: 75px;
  242. }
  243. img.img1{
  244. height:2.4rem;
  245. }
  246. img.img2{
  247. height:5.68rem;
  248. }
  249. img.img3{
  250. height:3.5rem;
  251. }
  252. img.img4{
  253. width:12.3rem;
  254. height:2.91rem;
  255. }
  256. img.img4:hover{
  257. box-shadow: 2px 2px 5px;
  258. }