common.css 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239
  1. .headers {
  2. width: 100%;
  3. height: 64px;
  4. background: #536BF5;
  5. }
  6. .float-headers {
  7. position: absolute;
  8. top: 0;
  9. z-index: 1000;
  10. background: transparent;
  11. }
  12. .header-wrap {
  13. width: 1200px;
  14. height: 100%;
  15. margin: 0 auto;
  16. display: flex;
  17. justify-content: space-between;
  18. align-items: center;
  19. }
  20. .header-wrap .logo img {
  21. display: block;
  22. width: 150px;
  23. height: 51.5px;
  24. }
  25. .header-wrap .navigation {
  26. display: flex;
  27. justify-content: space-between;
  28. align-items: center;
  29. margin-left: 50px;
  30. font-size: 16px;
  31. height: 64px;
  32. line-height: 64px;
  33. color: #fff;
  34. }
  35. .header-wrap .navigation li {
  36. position: relative;
  37. margin: 0 20px;
  38. }
  39. .header-wrap .navigation li.active {
  40. transition: transform .4s;
  41. }
  42. .header-wrap .navigation li.active:after {
  43. content: '';
  44. display: block;
  45. position: absolute;
  46. left: 50%;
  47. bottom: 10px;
  48. transform: translateX(-50%);
  49. width: 30px;
  50. height: 3px;
  51. background: #fff;
  52. }
  53. .float {
  54. position: fixed;
  55. right: 60px;
  56. bottom: 80px;
  57. width: 100px;
  58. text-align: center;
  59. border-radius: 5px;
  60. background: #fff;
  61. box-shadow: 0 0 5px 5px rgba(200, 200, 200, .1);
  62. z-index: 1000;
  63. }
  64. .float > ul > li {
  65. padding: 13px 0;
  66. border-bottom: 1px solid #E7E7E7;
  67. position: relative;
  68. }
  69. .float > ul > li p {
  70. font-size: 12px;
  71. }
  72. .float > ul > li img {
  73. width: 36px;
  74. height: 36px;
  75. }
  76. .float > ul > li img.qrcode {
  77. width: 120px;
  78. height: 120px;
  79. position: absolute;
  80. top: 0;
  81. left: -120px;
  82. display: none;
  83. }
  84. .float > ul > li.wx-area:hover .qrcode {
  85. display: block;
  86. }
  87. .float > ul > li.qq-area:hover .qq-box {
  88. display: block;
  89. }
  90. .float .qq-box {
  91. border: 1px solid #E6E6E6;
  92. position: absolute;
  93. top: -60px;
  94. right: 100px;
  95. background: #fff;
  96. display: none;
  97. min-width: 170px;
  98. }
  99. .float .qq-box li a {
  100. display: flex;
  101. padding: 12px 13px;
  102. font-size: 14px;
  103. }
  104. .float .qq-box li a img {
  105. margin-right: 10px;
  106. }
  107. .float .qq-box li a p {
  108. font-size: 14px;
  109. }
  110. .float .qq-box li a span {
  111. color: #999;
  112. }
  113. .float .bottom {
  114. background: #536BF5;
  115. height: 40px;
  116. line-height: 40px;
  117. cursor: pointer;
  118. }
  119. .float .bottom img {
  120. width: 16px;
  121. height: 16px;
  122. transform: rotate(180deg);
  123. }
  124. .footer {
  125. background: #141818;
  126. color: #A7A7A7;
  127. }
  128. .footer-body {
  129. display: flex;
  130. justify-content: space-between;
  131. width: 1000px;
  132. margin: 0 auto;
  133. padding: 77px 0 60px;
  134. }
  135. .footer-body h6 {
  136. font-size: 18px;
  137. font-weight: bold;
  138. margin: 0;
  139. }
  140. .footer-body ul {
  141. display: flex;
  142. }
  143. .footer-body ul li {
  144. border-left: 1px solid #A7A7A7;
  145. padding-left: 50px;
  146. width: 200px;
  147. }
  148. .footer-body ul li p {
  149. margin: 20px 0;
  150. }
  151. .footer-body ul li p:last-child {
  152. margin: 0;
  153. }
  154. .footer-body .qrcode-area {
  155. text-align: center;
  156. }
  157. .footer-body .qrcode-area img {
  158. display: block;
  159. width: 120px;
  160. height: 120px;
  161. margin: 30px auto 20px;
  162. }
  163. .footer .backup {
  164. padding: 30px 0;
  165. width: 1000px;
  166. margin: 0 auto;
  167. /* display: none; */
  168. justify-content: space-between;
  169. align-items: center;
  170. }
  171. .footer .backup .auth-area img {
  172. width: 100px;
  173. height: 35px;
  174. margin-left: 20px;
  175. }
  176. .notice {
  177. position: relative;
  178. z-index: 1500;
  179. width: 100%;
  180. height: 80px;
  181. display: flex;
  182. justify-content: center;
  183. align-items: center;
  184. background-color: #fff;
  185. background-position: center;
  186. background-size: cover;
  187. background-repeat: no-repeat;
  188. box-shadow: 0 0 5px 5px rgba(222, 222, 222, .3);
  189. }
  190. .notice p {
  191. width: 50%;
  192. text-align: center;
  193. padding: 0 20px;
  194. line-height: 1.5;
  195. text-overflow: ellipsis;
  196. display: -webkit-box;
  197. -webkit-line-clamp: 2;
  198. -webkit-box-orient: vertical;
  199. overflow: hidden;
  200. }
  201. .notice .notice-right {
  202. position: absolute;
  203. top: 15px;
  204. right: 25px;
  205. display: flex;
  206. align-items: center;
  207. }
  208. .notice button {
  209. height: 30px;
  210. margin-right: 25px;
  211. padding: 0 10px;
  212. cursor: pointer;
  213. border-radius: 6px;
  214. font-size: 14px;
  215. }
  216. .notice img.tip-qrcode {
  217. display: block;
  218. width: 50px;
  219. height: 50px;
  220. margin: 0 25px;
  221. }
  222. .notice .tip-img-wrap {
  223. position: relative;
  224. }
  225. .notice .tip-img-wrap:hover .tip-qrcode-pop {
  226. display: block;
  227. }
  228. .notice img.tip-qrcode-pop {
  229. width: 200px;
  230. height: 200px;
  231. position: absolute;
  232. top: 50px;
  233. right: 25px;
  234. z-index: 1000;
  235. display: none;
  236. }