index.css 5.0 KB

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