install.css 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710
  1. /*
  2. ===================
  3. 初始化【请勿修改】
  4. ===================
  5. */
  6. html,body,
  7. div, dl, dt, dd, ul, p, th, td,
  8. h1, h2, h3, h4, h5, h6,
  9. pre, code, form,
  10. fieldset, legend{
  11. margin: 0;
  12. padding: 0;
  13. }
  14. cite,
  15. em,
  16. strong,
  17. th {
  18. font-style: normal;
  19. }
  20. td,
  21. th,
  22. div {
  23. word-break:break-all;
  24. word-wrap:break-word;
  25. }
  26. form{
  27. display:inline;
  28. }
  29. table {
  30. border-collapse: collapse;
  31. border-spacing:0;
  32. }
  33. th {
  34. text-align: left;
  35. font-weight:100;
  36. }
  37. ol li {
  38. list-style: decimal outside;
  39. }
  40. ol{
  41. padding:0 0 0 18px;
  42. margin:0;
  43. }
  44. li {
  45. list-style:none;
  46. }
  47. img {
  48. border: 0;
  49. }
  50. html {
  51. -webkit-text-size-adjust:none;
  52. overflow-y:scroll;
  53. }
  54. /*
  55. ===================
  56. html5标签
  57. ===================
  58. */
  59. article,
  60. aside,
  61. details,
  62. figcaption,
  63. figure,
  64. footer,
  65. header,
  66. hgroup,
  67. nav,
  68. section {
  69. display: block;
  70. }
  71. /*
  72. ===================
  73. 清除浮动【请勿修改】
  74. >> cc 作用于父模型
  75. >> c 作用于浮动模型后,父模型区域里
  76. ===================
  77. */
  78. .cc{
  79. zoom:1;
  80. }
  81. .cc:after{
  82. content:'\20';
  83. display:block;
  84. height:0;
  85. clear:both;
  86. visibility: hidden;
  87. }
  88. .c{
  89. clear:both;
  90. height:0;
  91. font:0/0 Arial;
  92. overflow:hidden;
  93. width:0;
  94. }
  95. /*
  96. ===================
  97. 基础样式
  98. >> b 加粗
  99. >> u 下划线
  100. >> i 斜体
  101. >> w 文本不换行
  102. >> tal 文本靠左显示
  103. >> tac 文本居中显示
  104. >> tar 文本靠右显示
  105. >> fl 左浮动
  106. >> fr 右浮动
  107. >> pr 相对定位
  108. >> cp 鼠标点击手势
  109. >> vt 表格内容靠上显示
  110. ===================
  111. */
  112. .b{
  113. font-weight:700 !important;
  114. }
  115. .u{
  116. text-decoration:underline !important;
  117. }
  118. .i{
  119. font-style:italic !important;
  120. }
  121. .w{
  122. white-space:nowrap;
  123. }
  124. .tal{
  125. text-align:left !important;
  126. }
  127. .tac{
  128. text-align:center !important;
  129. }
  130. .tar{
  131. text-align:right !important;
  132. }
  133. .fl{
  134. float:left !important;
  135. }
  136. .fr{
  137. float:right !important;
  138. }
  139. .pr{
  140. position:relative;
  141. }
  142. .cp{
  143. cursor:pointer;
  144. }
  145. .vt{
  146. vertical-align:top;
  147. }
  148. .dn{
  149. display:none;
  150. }
  151. /*
  152. ===================
  153. 字体
  154. >> f10 小字体
  155. >> f12 正常字
  156. >> f14 大字
  157. >> f16 更大
  158. >> f24 标题类
  159. >> fn 文本去粗
  160. ===================
  161. */
  162. .f10{
  163. font-size:10px;
  164. }
  165. .f12{
  166. font-size:12px !important;
  167. }
  168. .f14{
  169. font-size:14px;
  170. }
  171. .f16{
  172. font-size:16px;
  173. }
  174. .f24{
  175. font-size:24px;
  176. font-family:Arial, "Microsoft Yahei", Simsun;
  177. }
  178. .fn{
  179. font-weight:normal !important;
  180. }
  181. .s1{
  182. color:#ff0000;
  183. }
  184. /*
  185. ===================
  186. 全局
  187. ===================
  188. */
  189. body{
  190. display: flex;
  191. align-items: center;
  192. flex-direction: column;
  193. justify-content: center;
  194. height: 100vh;
  195. font:12px/1.5 Arial,Microsoft Yahei,Simsun;
  196. color:#333;
  197. background:url(../images/install/bg.png);
  198. }
  199. a:link{
  200. color:#246EA5;
  201. text-decoration:none;
  202. }
  203. a:hover{
  204. text-decoration:underline;
  205. }
  206. a:visited{
  207. color:#762e9c;
  208. }
  209. /*
  210. ===================
  211. 包裹
  212. ===================
  213. */
  214. .wrap{
  215. margin:0px auto 0;
  216. box-shadow:0 0 10px #ccc;
  217. width:800px;
  218. background:#fff;
  219. }
  220. /*
  221. ===================
  222. 头部
  223. ===================
  224. */
  225. .header{
  226. height:80px;
  227. box-shadow:0 3px 3px #ddd;
  228. position:relative;
  229. color:#fff;
  230. background:#246fa6 url(../images/install/header.png) 0 0 repeat-x;
  231. }
  232. /*
  233. ===================
  234. 主体
  235. ===================
  236. */
  237. .main{
  238. padding-top:35px;
  239. }
  240. /*
  241. ===================
  242. 底部
  243. ===================
  244. */
  245. .footer{
  246. text-align:center;
  247. padding:15px 0 50px;
  248. color:#999999;
  249. }
  250. .footer a{
  251. color:#999;
  252. text-decoration:none;
  253. }
  254. .bottom{
  255. padding:0 0 25px;
  256. }
  257. /*
  258. ===================
  259. 协议
  260. ===================
  261. */
  262. .pact{
  263. box-shadow:5px 5px 5px #f7f7f7 inset;
  264. border:1px solid #bdbcbc;
  265. width:730px;
  266. height:500px;
  267. padding:10px;
  268. overflow:hidden;
  269. display:block;
  270. overflow-y:scroll;
  271. margin:0 auto;
  272. font-size:12px;
  273. line-height:1.5;
  274. margin-bottom:22px;
  275. outline:none;
  276. }
  277. pre{
  278. white-space: pre-wrap;
  279. white-space: -moz-pre-wrap;
  280. white-space: -pre-wrap;
  281. white-space: -o-pre-wrap;
  282. word-wrap: break-word;
  283. word-break : normal;
  284. }
  285. /*
  286. ===================
  287. 版本号
  288. ===================
  289. */
  290. .version{
  291. float:right;
  292. margin:50px 25px 0 0;
  293. }
  294. /*
  295. ===================
  296. LOGO
  297. ===================
  298. */
  299. .logo{
  300. float:left;
  301. width:261px;
  302. height:80px;
  303. background:url(../images/install/logo.png) no-repeat center;
  304. overflow:hidden;
  305. text-indent:-2000em;
  306. }
  307. /*
  308. ===================
  309. 安装类型文案
  310. ===================
  311. */
  312. .icon_install,
  313. .icon_update{
  314. float:left;
  315. margin-top:35px;
  316. width:90px;
  317. height:30px;
  318. overflow:hidden;
  319. text-indent:-2000em;
  320. }
  321. .icon_install{
  322. background:url(../images/install/icon_install.png) no-repeat;
  323. }
  324. .icon_update{
  325. background:url(../images/install/icon_update.png) no-repeat;
  326. }
  327. /*
  328. ===================
  329. 按钮
  330. ===================
  331. */
  332. .btn,
  333. .btn_old{
  334. display:inline-block;
  335. width:100px;
  336. height:30px;
  337. background:url(../images/install/btn.png) no-repeat;
  338. font:bold 14px/30px Arial,"Microsoft Yahei",Simsun;
  339. text-decoration:none;
  340. color:#fff !important;
  341. margin:0 5px;
  342. border:0 none;
  343. cursor:pointer;
  344. vertical-align:top;
  345. }
  346. .btn:hover{
  347. background-position:0 -30px;
  348. text-decoration:none;
  349. }
  350. a.btn:visited{
  351. color:#ffffff;
  352. }
  353. .btn_old,
  354. .btn_old:hover{
  355. background-position:0 -60px;
  356. color:#999 !important;
  357. cursor:default;
  358. text-decoration:none;
  359. }
  360. a.btn_old:visited{
  361. color:#999 !important;
  362. }
  363. /*
  364. ===================
  365. 步骤
  366. ===================
  367. */
  368. .step,
  369. .step li em,
  370. .step li{
  371. background:url(../images/install/step.png) repeat-x;
  372. }
  373. .step{
  374. border-bottom:1px solid #dce1e5;
  375. height:60px;
  376. background-color:#fff;
  377. }
  378. .step li{
  379. float:left;
  380. height:60px;
  381. line-height:60px;
  382. width:33%;
  383. text-align:center;
  384. font-size:14px;
  385. color:#6f7885;
  386. font-weight:700;
  387. }
  388. .step li em{
  389. width:32px;
  390. height:32px;
  391. text-align:center;
  392. line-height:32px;
  393. display:inline-block;
  394. background-position:0 -70px;
  395. font-size:20px;
  396. color:#fff;
  397. font-family:Microsoft Yahei;
  398. margin-right:10px;
  399. vertical-align:0;
  400. }
  401. .step li.current{
  402. background-position:right -106px;
  403. background-repeat:no-repeat;
  404. color:#246ea5;
  405. }
  406. .step li.current em{
  407. background-position:-35px -70px;
  408. }
  409. .step li.on{
  410. background-position:0 -176px;
  411. }
  412. .step li.on em{
  413. background-position:-70px -70px;
  414. }
  415. /*
  416. ===================
  417. 服务器检测/信息输入
  418. ===================
  419. */
  420. .server{
  421. padding:20px 20px 20px 35px;
  422. }
  423. .server table{
  424. margin-bottom:20px;
  425. }
  426. .server td{
  427. padding:3px 5px;
  428. }
  429. .server .td1{
  430. color:#417b9d;
  431. font-weight:700;
  432. }
  433. .server .input{
  434. border:1px solid;
  435. border-color:#e3e9ef;
  436. padding:3px;
  437. width:200px;
  438. }
  439. .server .input:hover,
  440. .server .input:focus{
  441. border:1px solid #0e85d5;
  442. outline:none;
  443. }
  444. .gray{
  445. color:#bbb;
  446. }
  447. .server tr:hover .gray{
  448. color:#333;
  449. }
  450. /*
  451. ===================
  452. 正确错误
  453. ===================
  454. */
  455. .correct_span,
  456. .error_span{
  457. display:block;
  458. float:left;
  459. width:20px;
  460. height:16px;
  461. text-indent:-2000em;
  462. overflow:hidden;
  463. background:url(../images/install/icon.png) no-repeat;
  464. margin-right:5px;
  465. }
  466. .error_span{
  467. background-position:0 -23px;
  468. }
  469. /*
  470. ===================
  471. 数据表写入
  472. ===================
  473. */
  474. .install{
  475. box-shadow:5px 5px 5px #f7f7f7 inset;
  476. border:1px solid #bdbcbc;
  477. width:670px;
  478. height:350px;
  479. padding:10px;
  480. overflow:hidden;
  481. display:block;
  482. overflow-y:scroll;
  483. margin:25px auto;
  484. font-size:12px;
  485. margin-bottom:22px;
  486. outline:none;
  487. }
  488. .install ul{
  489. line-height:1.8;
  490. }
  491. /*
  492. ===================
  493. 成功提示
  494. ===================
  495. */
  496. .success_tip{
  497. /*border:1px solid #e0e9f0;*/
  498. background:#fff url(../images/install/complete.png) 210px center no-repeat;
  499. padding:50px 80px 50px 300px;
  500. line-height:2;
  501. }
  502. .success_tip a,.s4{
  503. color:#0166a5;
  504. text-decoration:none;
  505. }
  506. .success_tip a:hover{
  507. text-decoration:underline;
  508. }
  509. .error_tip{
  510. background:url(../images/install/ignore.png) 130px 45px no-repeat;
  511. padding:50px 80px 60px 230px;
  512. }
  513. /*founder login*/
  514. .login{
  515. border:1px solid #e0e9f0;
  516. background:#fff;
  517. margin:30px 120px 130px;
  518. }
  519. /*
  520. ===================
  521. 操作提示
  522. >> tips 普通
  523. >> tips_error 错误
  524. >> tips_success 正确
  525. >> tips_loading 加载中
  526. 使用方法
  527. 可独立样式使用,亦可与tips组装,例:
  528. <div class="tips"><span class="tips_error">错误内容</span></div>
  529. 可在外出包裹 tips_block 对错误提示进行块级效果展示
  530. ===================
  531. */
  532. .tips,
  533. .tips_block span{
  534. line-height:25px;
  535. padding:0 6px;
  536. }
  537. .tips{
  538. border:1px solid #faebd2;
  539. background:#ffffe9;
  540. color:#666;
  541. }
  542. .tips_error,
  543. .tips_success{
  544. color:#cc3333;
  545. padding-left:16px;
  546. background:url(../images/install/tips_system.png) -20px 2px no-repeat;
  547. display:inline-block;
  548. line-height:18px;
  549. }
  550. .tips_success{
  551. color:#008800;
  552. background-position:0 -19px;
  553. }
  554. .tips_loading{
  555. color:#cc3333;
  556. color:#333333;
  557. display:inline-block;
  558. line-height:20px;
  559. }
  560. /*
  561. ===================
  562. loading
  563. ===================
  564. */
  565. .loading{
  566. border-radius: 16px;
  567. width: 100px;
  568. height: 30px;
  569. line-height: 30px;
  570. text-align: center;
  571. background:#000;
  572. background-color: rgba(0, 0, 0, 0.5);
  573. color: white;
  574. position: fixed;
  575. _position:absolute;
  576. left: 50%;
  577. margin-left: -50px;
  578. top: 50%;
  579. margin-top:-15px;
  580. }
  581. .loading span{
  582. background:url(../images/install/pop_loading.gif) 0 center no-repeat;
  583. padding-left:24px;
  584. }
  585. /*
  586. ===================
  587. 升级类型选择
  588. ===================
  589. */
  590. .updata_type{
  591. padding:20px 30px 40px;
  592. }
  593. .updata_type .hd{
  594. font-size:16px;
  595. }
  596. /*切换选择*/
  597. .updata_type .tab{
  598. padding-top:10px;
  599. }
  600. .updata_type .tab li{
  601. float:left;
  602. width:50%;
  603. display:inline;
  604. }
  605. .updata_type .tab li a{
  606. display:block;
  607. text-decoration:none;
  608. border:1px solid #ccc;
  609. text-align:center;
  610. height:60px;
  611. line-height:60px;
  612. font-weight:700;
  613. background:#fff url(../images/install/tab.png);
  614. color:#246EA5;
  615. font-size:22px;
  616. font-weight:100;
  617. }
  618. .updata_type .tab li a.fen{
  619. line-height:50px;
  620. border-right:0;
  621. }
  622. .updata_type .tab li a span{
  623. display:block;
  624. font-size:12px;
  625. color:#999;
  626. line-height:18px;
  627. margin-top:-12px;
  628. font-weight:100;
  629. }
  630. .updata_type .tab li.current a{
  631. background:#fdfdfd;
  632. color:#6F7885;
  633. border-bottom:1px solid #fdfdfd;
  634. }
  635. .updata_type .tab_cont{
  636. border:1px solid #ccc;
  637. border-top:0 none;
  638. padding:30px;
  639. background:#fdfdfd;
  640. box-shadow:1px 1px 1px #fff inset,-1px -1px 1px #fff inset;
  641. }
  642. .updata_type .tab_cont h3{
  643. font-size:16px;
  644. margin-bottom:15px;
  645. }
  646. .updata_type .tab_cont h3 span{
  647. font-size:12px;
  648. font-weight:100;
  649. color:#666;
  650. }
  651. .updata_type .tab_cont h4{
  652. font-size:14px;
  653. }
  654. .updata_type .tab_cont h4 span{
  655. padding-left:10px;
  656. font-size:12px;
  657. font-weight:100;
  658. color:#f60;
  659. }
  660. .updata_type .tab_cont ol li{
  661. margin-bottom:10px;
  662. }
  663. .updata_type .tab_cont div{
  664. color:#666;
  665. padding-left:20px;
  666. }
  667. .updata_type .tab_cont ul li{
  668. margin:0;
  669. padding-left:50px;
  670. list-style:none;
  671. color:#666;
  672. }
  673. /*立即升级*/
  674. .once_updata{
  675. text-align:center;
  676. padding:100px 0;
  677. }
  678. .once_updata button{
  679. font-size:32px;
  680. font-weight:700;
  681. background:#186196 url(../images/install/header.png) repeat-x;
  682. color:#fff;
  683. padding:30px 80px;
  684. font-weight:100;
  685. font-family:"Microsoft Yahei";
  686. border:1px solid #186196;
  687. cursor:pointer;
  688. letter-spacing:2px;
  689. }