install.css 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346
  1. @charset "utf-8";
  2. /* 全局控制 */
  3. html {
  4. /*overflow: hidden;*/
  5. }
  6. body {
  7. margin: 0;
  8. padding: 0;
  9. font-family: "微软雅黑", Arial, "宋体";
  10. font-size: 13px;
  11. color: #333;
  12. }
  13. html, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, textarea, p, blockquote, th, td, p {
  14. margin: 0;
  15. padding: 0;
  16. }
  17. input, select, textarea {
  18. vertical-align: middle;
  19. font-family: "微软雅黑", Arial, "宋体";
  20. font-size: 12px;
  21. }
  22. img {
  23. border: 0;
  24. }
  25. ul, li {
  26. list-style-type: none;
  27. }
  28. a {
  29. color: #333;
  30. text-decoration: none;
  31. }
  32. a:hover {
  33. text-decoration: underline;
  34. color: #333;
  35. }
  36. a:focus {
  37. outline: none;
  38. }
  39. a {
  40. transition-duration: 300ms;
  41. }
  42. /*全局函数*/
  43. .hr_1, .hr_8, .hr_10 {
  44. font-size: 1px;
  45. line-height: 1px;
  46. clear: both;
  47. overflow: hidden;
  48. }
  49. .hr_1 {
  50. height: 1px;
  51. }
  52. .hr_8 {
  53. height: 8px;
  54. }
  55. .hr_10 {
  56. height: 10px;
  57. }
  58. .col-red {
  59. color: red;
  60. }
  61. /*定义新型浏览器特性*/
  62. ::-webkit-scrollbar {
  63. width: 10px;
  64. height: 10px
  65. }
  66. ::-webkit-scrollbar-button:vertical {
  67. display: none
  68. }
  69. ::-webkit-scrollbar-track:vertical {
  70. background: #000
  71. }
  72. ::-webkit-scrollbar-track-piece {
  73. background: #f6f6f6
  74. }
  75. ::-webkit-scrollbar-thumb:vertical {
  76. background: #d0d0d0;
  77. }
  78. ::-webkit-scrollbar-thumb:vertical:hover {
  79. background: #3B3B3B
  80. }
  81. ::-webkit-scrollbar-corner:vertical {
  82. background: #535353
  83. }
  84. ::-webkit-scrollbar-resizer:vertical {
  85. background: #FF6E00
  86. }
  87. input[type="text"]:focus, input[type="password"]:focus {
  88. border: none;
  89. outline: none;
  90. }
  91. .header, .mainBody, .footer {
  92. width: 960px;
  93. margin: 0 auto;
  94. }
  95. /*头部区域*/
  96. .header {
  97. height: 90px;
  98. margin-bottom: 20px;
  99. background: url(../images/logo.png) no-repeat 0 center;
  100. border-bottom: 1px solid #d4d4d4;
  101. }
  102. /*主要区域*/
  103. .mainBody {
  104. overflow-x: hidden;
  105. overflow-y: auto;
  106. padding: 0 10px;
  107. }
  108. .mainBody .correct, .mainBody .error {
  109. padding-left: 22px;
  110. }
  111. .mainBody .correct {
  112. background: url(../images/correctBg.png) no-repeat 0 center;
  113. color: green;
  114. }
  115. .mainBody .error {
  116. background: url(../images/errorBg.png) no-repeat 0 center;
  117. color: red;
  118. }
  119. .mainBody .text {
  120. line-height: 25px;
  121. }
  122. .mainBody .text h3 {
  123. font-size: 14px;
  124. text-align: center;
  125. margin-bottom: 10px;
  126. color: #333;
  127. }
  128. .mainBody .text h4 {
  129. font-size: 13px;
  130. margin: 10px 0 5px 0;
  131. color: #333;
  132. }
  133. .mainBody .forms .head {
  134. font-weight: bold;
  135. font-size: 14px;
  136. }
  137. .mainBody .forms .firstCol {
  138. padding-left: 5px;
  139. }
  140. .mainBody .forms .endCol {
  141. padding-right: 5px;
  142. text-align: right;
  143. }
  144. .mainBody .table .title {
  145. font-weight: bold;
  146. font-size: 14px;
  147. }
  148. .mainBody .table .input, .readonly {
  149. width: 280px;
  150. height: 24px;
  151. line-height: 24px;
  152. margin: 1px;
  153. border: 1px solid #ccc;
  154. padding: 0 3px;
  155. }
  156. .mainBody .table .readonly {
  157. display: inline-block;
  158. border: none;
  159. }
  160. .mainBody .table .inputOn {
  161. width: 280px;
  162. height: 24px;
  163. line-height: 24px;
  164. padding: 2px 5px;
  165. background: url(../images/inputOnBg.png) no-repeat 0 center;
  166. border: 0;
  167. }
  168. .mainBody .table .cnote {
  169. margin-left: 20px;
  170. color: #999;
  171. }
  172. .mainBody .note {
  173. width: 400px;
  174. margin: 80px auto 0;
  175. }
  176. .mainBody .note .complete, .mainBody .note .already {
  177. width: 400px;
  178. padding: 90px 0 0 95px;
  179. line-height: 22px;
  180. }
  181. .mainBody .note .complete {
  182. background: url(../images/complete.png) no-repeat;
  183. }
  184. .mainBody .note .already {
  185. background: url(../images/already.png) no-repeat;
  186. }
  187. .mainBody .note span {
  188. color: #999;
  189. padding: 0 5px;
  190. }
  191. .mainBody .note a {
  192. text-decoration: underline;
  193. }
  194. .mainBody .note a:hover {
  195. text-decoration: none;
  196. }
  197. .mainBody .note a.link {
  198. text-decoration: none;
  199. }
  200. .mainBody .note a.link:hover {
  201. text-decoration: underline;
  202. }
  203. /* 页脚区域 */
  204. .footer {
  205. margin-top: 20px;
  206. height: 50px;
  207. border-top: 3px solid #f0f0f0;
  208. background: #fff;
  209. position: relative;
  210. }
  211. .footer .step, .footer .step2, .footer .step3, .footer .step4, .footer .step5 {
  212. display: block;
  213. height: 3px;
  214. position: absolute;
  215. left: 0;
  216. bottom: 50px;
  217. background: #0cd7f7;
  218. overflow: hidden;
  219. z-index: 999;
  220. }
  221. .footer .step {
  222. width: 25%;
  223. }
  224. .footer .step2 {
  225. width: 50%;
  226. }
  227. .footer .step3 {
  228. width: 75%;
  229. }
  230. .footer .step4 {
  231. width: 100%;
  232. }
  233. .footer .step5 {
  234. width: 100%;
  235. }
  236. .footer .copyright {
  237. float: left;
  238. padding-left: 10px;
  239. line-height: 50px;
  240. font-family: Verdana;
  241. }
  242. .footer .formSubBtn {
  243. width: 200px;
  244. float: right;
  245. margin-top: 10px;
  246. padding-right: 20px;
  247. text-align: right;
  248. }
  249. .footer .formSubBtn .submit, .formSubBtn .back {
  250. display: inline-block;
  251. width: 78px;
  252. height: 28px;
  253. line-height: 28px;
  254. text-align: center;
  255. font-family: "微软雅黑";
  256. font-size: 14px;
  257. }
  258. .footer .formSubBtn .submit {
  259. background: #3d566d;
  260. border: 1px solid #3d566d;
  261. color: #fff;
  262. }
  263. .footer .formSubBtn .submit:hover {
  264. background: #4f6880;
  265. text-decoration: none;
  266. }
  267. .footer .formSubBtn .back {
  268. margin-right: 10px;
  269. background: #fff;
  270. border: 1px solid #999;
  271. color: #666;
  272. }
  273. .footer .formSubBtn .back:hover {
  274. border: 1px solid #666;
  275. text-decoration: none;
  276. }