install.css 12 KB

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