style.css 7.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489
  1. *{
  2. padding:0px;
  3. margin:0px;
  4. }
  5. body{
  6. font-family:Verdana, Arial, Helvetica, sans-serif;
  7. font-size:12px;
  8. color: #333;
  9. background-color: #edf0f3;
  10. }
  11. ul{
  12. list-style:none;
  13. }
  14. a{
  15. color: #333;
  16. text-decoration: none;
  17. }
  18. a:hover{
  19. color:#FF6A00;
  20. text-decoration:none;
  21. }
  22. input,button,select{
  23. vertical-align:middle;
  24. outline: none;
  25. }
  26. .fc-690{
  27. color:#333;
  28. }
  29. .fs-14{
  30. font-size:14px;
  31. }
  32. .head-block{
  33. margin-bottom: 20px;
  34. background-color: #fff;
  35. }
  36. .top{
  37. overflow:hidden;
  38. display: flex;
  39. justify-content: space-between;
  40. align-items: center;
  41. width: 1200px;
  42. height: 80px;
  43. margin: auto;
  44. }
  45. .top .top-logo{
  46. overflow:hidden;
  47. width:142px;
  48. height: 100%;
  49. background:url(../img/logo.png) no-repeat center;
  50. }
  51. .top-sub{
  52. flex:1;
  53. font-size:19px;
  54. font-weight: bold;
  55. margin-left:10px;
  56. }
  57. .top .top-logo h1{
  58. font-size:0px;
  59. line-height:1000%;
  60. }
  61. .top .top-link{
  62. height:15px;
  63. }
  64. .top .top-link li{
  65. display: inline-block;
  66. margin-left: 15px;
  67. line-height:14px;
  68. font-size: 16px;
  69. }
  70. .install-content{
  71. margin: 0 auto 50px;
  72. width: 1200px;
  73. background-color: #fff;
  74. }
  75. .install-content::after{
  76. content:"";
  77. display: block;
  78. clear: both;
  79. }
  80. .install-content-procedure{
  81. border: 1px solid #EDF0F3;
  82. height: 116px;
  83. }
  84. .install-content-procedure .content-procedure-list{
  85. width: 1000px;
  86. margin: 15px auto;
  87. display: flex;
  88. position: relative;
  89. top: 50%;
  90. transform: translateY(-50%);
  91. }
  92. .install-content-procedure .content-procedure-item{
  93. flex: 1;
  94. height: 36px;
  95. font-size: 14px;
  96. line-height: 36px;
  97. text-align: center;
  98. background: url("../img/not_complete.png") no-repeat center / contain;
  99. }
  100. .install-content-procedure .content-procedure-item:first-of-type{
  101. color: #fff;
  102. background: url("../img/complete_one.png") no-repeat center / contain;
  103. }
  104. .install-content-procedure .content-procedure-item:last-of-type{
  105. background: url("../img/not_complete_two.png") no-repeat center / contain;
  106. }
  107. /* 第一个页面 */
  108. .pright{
  109. margin: 0px auto 0;
  110. padding-bottom: 40px;
  111. width:1100px;
  112. padding-top: 40px;
  113. }
  114. .pright .pr-title{
  115. padding-left: 30px;
  116. height: 50px;
  117. font-size: 16px;
  118. font-weight: bold;
  119. line-height: 50px;
  120. background-color: #e7e7e7;
  121. }
  122. .pr-agreement{
  123. overflow-y:scroll;
  124. padding: 10px 30px;
  125. border:1px solid #ddd;
  126. height:300px;
  127. line-height:21px;
  128. color:#666;
  129. }
  130. .pr-agreement::-webkit-scrollbar {
  131. width: 6px;
  132. background-color: #FFF;
  133. }
  134. .pr-agreement::-webkit-scrollbar-thumb {
  135. border-radius: 10px;
  136. background-color: #494E51;
  137. }
  138. .pr-agreement::-webkit-scrollbar-track {
  139. -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
  140. background-color: #F5F5F5;
  141. }
  142. .pr-agreement strong{
  143. display:block;
  144. color:#333;
  145. line-height:27px;
  146. margin-top:6px;
  147. }
  148. .pr-agreement p{
  149. text-indent:30px;
  150. }
  151. .pr-agreement .describe{
  152. text-indent: 0;
  153. }
  154. .btn-box{
  155. margin-top: 30px;
  156. text-align: right;
  157. vertical-align: middle;
  158. height: 34px;
  159. line-height: 34px;
  160. }
  161. .btn-back, .btn-next{
  162. width:100px;
  163. height:34px;
  164. border:none;
  165. background-color:#ff8143;
  166. color:#FFF;
  167. cursor:pointer;
  168. margin-left:10px;
  169. overflow:hidden;
  170. font-size: 14px;
  171. border-radius:3px;
  172. }
  173. .btn-back{
  174. border: 1px solid #C7C7C7;
  175. color: #333;
  176. background-color: #fff;
  177. }
  178. .btn-box-text{
  179. position: relative;
  180. display: inline-block;
  181. height: 16px;
  182. line-height: 16px;
  183. }
  184. #readpact{
  185. position: relative;
  186. height: 16px;
  187. width: 16px;
  188. vertical-align: bottom;
  189. z-index: 8;
  190. opacity: 0;
  191. cursor: pointer;
  192. }
  193. .btn-box-selection{
  194. position: absolute;
  195. top: 0;
  196. left: 0;
  197. width: 16px;
  198. height: 16px;
  199. background: url("../img/no_agree.png") no-repeat center;
  200. }
  201. .btn-box .agreement{
  202. font-size: 14px;
  203. font-weight: bold;
  204. }
  205. /* 第二个页面 */
  206. .testing{
  207. padding: 25px 25px 35px;
  208. }
  209. .testing-item{
  210. margin-bottom: 30px;
  211. }
  212. .testing-item:last-of-type{
  213. margin-bottom: 0;
  214. }
  215. .testing-item h3{
  216. height: 50px;
  217. line-height: 50px;
  218. font-size: 16px;
  219. font-weight: bold;
  220. }
  221. .testing .testing-item .desc{
  222. margin-left: 5px;
  223. color: #666;
  224. font-size: 12px;
  225. font-weight: normal;
  226. }
  227. .testing .twbox{
  228. width: 100%;
  229. font-size: 14px;
  230. border: 1px solid #e7e7e7;
  231. }
  232. .testing .twbox th{
  233. height: 50px;
  234. text-align: left;
  235. background-color: #e7e7e7;
  236. }
  237. .testing .twbox td{
  238. height: 50px;
  239. border-top: 1px solid #e7e7e7;
  240. }
  241. .testing .twbox th:first-of-type, .testing .twbox td:first-of-type{
  242. padding-left: 30px;
  243. }
  244. /* 第三个页面 */
  245. .parameter .twbox{
  246. border-top: 0;
  247. }
  248. .parameter .input-txt{
  249. padding-left: 11px;
  250. width: 180px;
  251. height: 30px;
  252. border:1px solid #c7c7c7;
  253. font-size:12px;
  254. color: #333;
  255. outline: none;
  256. }
  257. .parameter .onetd{
  258. padding: 0 !important;
  259. width:120px;
  260. font-weight: 400;
  261. text-align:right;
  262. line-height:25px;
  263. }
  264. .parameter small{
  265. margin-left: 20px;
  266. color: #999;
  267. }
  268. .waitpage {
  269. top:0;
  270. left:0;
  271. filter:Alpha(opacity=70);
  272. -moz-opacity:0.7;
  273. position:absolute;
  274. z-index:10000;
  275. background:url(../img/loading1.gif) #ababab no-repeat center 200px;
  276. width:100%;
  277. height:2500px;
  278. display:none;
  279. }
  280. .install-code{
  281. height:27px;line-height:27px;
  282. }
  283. .installimg-btn{
  284. background-color:#777;
  285. }
  286. /* 第四个页面 */
  287. .install-success{
  288. padding: 10px 0 50px;
  289. margin-left: 50px;
  290. margin-right: 50px;
  291. border-bottom: 1px dashed #E7E7E7;
  292. text-align: center;
  293. padding-top: 50px;
  294. }
  295. .install-content .install-success-box{
  296. display: inline-block;
  297. align-self: center;
  298. margin: auto;
  299. }
  300. .install-content .install-success-pic{
  301. width: 45px;
  302. height: 45px;
  303. margin-right: 20px;
  304. vertical-align: middle;
  305. }
  306. .install-content .install-success-text{
  307. display: inline-block;
  308. text-align: left;
  309. vertical-align: middle;
  310. }
  311. .install-content .install-success-title{
  312. margin-bottom: 5px;
  313. font-size: 18px;
  314. font-weight: bolder;
  315. }
  316. .install-content .install-success-desc{
  317. color: #999;
  318. font-size: 14px;
  319. }
  320. .install-content .other-links{
  321. padding: 39px 50px 300px;
  322. font-size: 14px;
  323. }
  324. .install-content .other-links-list{
  325. display: flex;
  326. margin-top: 60px;
  327. justify-content: space-around;
  328. }
  329. .install-content .other-links-item{
  330. display: flex;
  331. align-self: center;
  332. }
  333. .install-content .other-links-pic{
  334. margin-right: 20px;
  335. width: 45px;
  336. height: 45px;
  337. line-height: 45px;
  338. text-align: center;
  339. }
  340. .install-content .other-links-pic img{
  341. display: block;
  342. max_width: 100%;
  343. max-height: 100%;
  344. }
  345. .install-content .other-links-text{
  346. line-height: 45px;
  347. }
  348. .step-content{
  349. margin: 0 auto 3px;
  350. width: 1200px;
  351. background-color: #fff;
  352. padding-bottom:30px;
  353. }
  354. input{
  355. vertical-align:middle;
  356. margin-right:3px;
  357. font-size:12px;
  358. }
  359. input.but{
  360. height:26px;
  361. padding-left:6px;
  362. padding-right:6px;
  363. line-height:26px;
  364. font-weight:bold;
  365. letter-spacing:1px;
  366. color:#FFF;
  367. background-color:#FC3;
  368. }
  369. /*步骤*/
  370. .processBar{
  371. float: left;
  372. width: 329px;
  373. margin-top: 15px;
  374. }
  375. .processBar .bar{
  376. background: #fbeeea;
  377. height: 3px;
  378. position: relative;
  379. width: 314px;
  380. margin-left: 10px;
  381. }
  382. .processBar .b-select{
  383. background: #ff8143;
  384. }
  385. .processBar .bar .c-step{
  386. position: absolute;
  387. width: 16px;
  388. height: 16px;
  389. border-radius: 50%;
  390. background-image: url(../img/step_point.png);
  391. left: -16px;
  392. top: 50%;
  393. margin-top: -8px;
  394. }
  395. .processBar .bar .c-select{
  396. width: 16px;
  397. height: 16px;
  398. margin: -9px 1px;
  399. background-image: url(../img/step_point_check.png);
  400. }
  401. .main-hide {
  402. position: absolute;
  403. top: -9999px;
  404. left: -9999px;
  405. }
  406. .poetry{
  407. color: #000;
  408. font-size: 13px;
  409. background-color: transparent;
  410. font-weight: 800;
  411. }
  412. button{
  413. width: 80px;
  414. line-height: 30px;
  415. font-size: 11px;
  416. color: #ff8143;
  417. text-align: center;
  418. border-radius: 6px;
  419. border: 1px solid #e2e2e2;
  420. cursor: pointer;
  421. background-color: #fff;
  422. outline:none;
  423. }
  424. button:hover{
  425. border: 1px solid #fbeeea;
  426. }
  427. .layui-form-item .layui-form-checkbox[lay-skin=primary]{
  428. margin-top: 3px !important;
  429. }
  430. .mysql-message{
  431. height: 32px;
  432. line-height: 32px;
  433. margin-left: 10px;
  434. }