base.css 2.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188
  1. * {
  2. margin: 0;
  3. padding: 0;
  4. box-sizing: border-box;
  5. }
  6. html, body {
  7. font-size: 14px;
  8. color: #111;
  9. background-color: #f2f2f2;
  10. font-family: 微软雅黑,Microsoft Yahei,LiHei Pro,Hiragino Sans,GBHelvetica Neue,Helvetica,Arial,PingFang SC,WenQuanYi Micro Hei,sans-serif;
  11. }
  12. li {
  13. list-style: none;
  14. }
  15. /* header */
  16. .header {
  17. width: 100%;
  18. height: 90px;
  19. background-color: white;
  20. box-shadow: 0 0 8px rgba(0, 0, 0, .2);
  21. }
  22. .header .header-content {
  23. position: relative;
  24. width: 1300px;
  25. height: 90px;
  26. margin: 0 auto;
  27. overflow: hidden;
  28. }
  29. .header .header-content .logo {
  30. width: 210px;
  31. margin: 23px 0;
  32. float: left;
  33. }
  34. .header .header-content .logo .pic {
  35. width: 160px;
  36. }
  37. .header .header-content .title {
  38. position: absolute;
  39. top: 25px;
  40. left: 50%;
  41. width: 500px;
  42. height: 40px;
  43. font-size: 22px;
  44. line-height: 40px;
  45. font-weight: 600;
  46. text-align: center;
  47. margin-left: -250px;
  48. }
  49. .header .header-content .concat-us {
  50. height: 40px;
  51. font-size: 15px;
  52. margin: 25px 0;
  53. float: right;
  54. }
  55. .header .header-content .concat-us .icon {
  56. width: 20px;
  57. height: 20px;
  58. margin: 10px 5px;
  59. float: left;
  60. }
  61. .header .header-content .concat-us .desc {
  62. margin: 10px 0;
  63. float: left;
  64. }
  65. /* top */
  66. .top {
  67. width: 790px;
  68. height: 65px;
  69. margin: 0 auto;
  70. }
  71. /* container */
  72. .container {
  73. width: 790px;
  74. min-height: 493px;
  75. background-color: white;
  76. border: 1px solid #e1e1e1;
  77. margin: 0 auto;
  78. }
  79. /* footer */
  80. .footer {
  81. width: 100%;
  82. height: 120px;
  83. }
  84. .footer .content {
  85. width: 820px;
  86. text-align: center;
  87. font-size: 15px;
  88. color: #8c8c8c;
  89. line-height: 30px;
  90. margin: 0 auto;
  91. padding: 30px 0;
  92. }
  93. /* step */
  94. .step-group {
  95. width: 66%;
  96. margin: 0 auto;
  97. overflow: hidden;
  98. }
  99. .step {
  100. width: 24%;
  101. height: 25px;
  102. text-align: center;
  103. margin: 20px 0;
  104. float: left;
  105. }
  106. .step.line {
  107. width: 10%;
  108. height: 2px;
  109. background-color: #d1d1d1;
  110. margin: 31px 2%;
  111. }
  112. .step .sort {
  113. width: 25px;
  114. height: 25px;
  115. color: white;
  116. line-height: 25px;
  117. text-align: center;
  118. font-size: 14px;
  119. border-radius: 50%;
  120. background-color: #d1d1d1;
  121. margin-right: 5px;
  122. display: inline-block;
  123. }
  124. .step .desc {
  125. height: 25px;
  126. line-height: 25px;
  127. display: inline-block;
  128. color: #d8d8d8;
  129. }
  130. .step.active .sort {
  131. background-color: #3e84e9;
  132. }
  133. .step.active .desc {
  134. color: #3e84e9;
  135. }
  136. .step.active.line {
  137. background-color: #3e84e9;
  138. }
  139. .btn {
  140. width: 120px;
  141. height: 40px;
  142. text-align: center;
  143. line-height: 40px;
  144. font-size: 16px;
  145. color: #3e84e9;
  146. border-radius: 40px;
  147. background-color: white;
  148. border: 1px solid #3e84e9;
  149. display: inline-block;
  150. cursor: pointer;
  151. }
  152. .btn.primary {
  153. background-color: #3e84e9;
  154. color: white;
  155. }
  156. .base-top {
  157. width: 100%;
  158. height: 54px;
  159. line-height: 54px;
  160. background-color: #f7f7f7;
  161. padding: 0 26px;
  162. border-bottom: 1px solid #e1e1e1;
  163. }
  164. .base-top .title {
  165. color: #8c8c8c;
  166. font-size: 16px;
  167. }
  168. .base-top .version {
  169. font-size: 13px;
  170. color: #d1d1d1;
  171. float: right;
  172. }