global.css 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699
  1. @charset "utf-8";
  2. /*样式初始化*/
  3. @font-face {
  4. font-family: 'pingfang SC';
  5. src:url('font/pingfang.ttf') format('truetype');
  6. }
  7. body{
  8. font-family:-apple-system, BlinkMacSystemFont, 'PingFang SC', 'Hiragino Sans GB', 'Microsoft Yahei', '微软雅黑', sans-serif;
  9. font-size:12px !important;
  10. }
  11. .nav-link,.btn-link{
  12. color:#ff6501;
  13. }
  14. .nav-link:hover,.btn-link:hover{
  15. color:#d45300;
  16. text-decoration: none;
  17. }
  18. .container-width{
  19. /*position:relative;*/
  20. padding:20px;
  21. /*width:900px;
  22. height:564px;*/
  23. /*overflow: hidden;*/
  24. background: -prefix-linear-gradient(left top,#6d5855,#3b2d2a);
  25. background: linear-gradient(to bottom right,#6d5855,#3b2d2a);
  26. }
  27. ::-webkit-scrollbar-track
  28. {
  29. background-color: #fff;
  30. }
  31. ::-webkit-scrollbar
  32. {
  33. width: 5px;
  34. height:5px;
  35. }
  36. ::-webkit-scrollbar:hover{
  37. background:#ddd5cf;
  38. }
  39. ::-webkit-scrollbar-thumb
  40. {
  41. background-color: #ddd5cf;
  42. }
  43. .header{
  44. margin-top: -20px;
  45. padding-top: 5px;
  46. height:60px;
  47. color:#fff;
  48. }
  49. .header i{
  50. color:#fff;
  51. }
  52. .header-return{
  53. display:inline-block;
  54. font-size: 20px;
  55. font-weight: bold;
  56. padding:9px 5px 0 0;
  57. }
  58. .header i{
  59. cursor:pointer;
  60. }
  61. .version-name{
  62. margin-left: 15px;
  63. color:#ddd;
  64. font-size: 12px;
  65. }
  66. .top-nav .nav-link{
  67. color:#ccc;
  68. font-size:18px;
  69. }
  70. .top-nav .nav-link.active{
  71. color:#fff;
  72. text-shadow:0px 0px 6px #fff, 0px 0px 20px #f72, 0px 0px 30px #f84,0px 0px 70px #fa5;
  73. position: relative;
  74. }
  75. .top-nav .nav-link.active:before{
  76. position:absolute;
  77. content: "";
  78. top:39px;
  79. left:50%;
  80. margin-left:-8px;
  81. height: 0px;
  82. width: 0px;
  83. border-left: 7px solid transparent;
  84. border-bottom: 8px solid #fbf6f3;
  85. border-right: 8px solid transparent;
  86. }
  87. .top-nav .nav-link:hover{
  88. color:#fff;
  89. text-shadow: 0px 0px 20px #f72;
  90. }
  91. .top-nav .nav-link.active:hover{
  92. color:#fff;
  93. text-shadow:0px 0px 6px #fff, 0px 0px 20px #f72, 0px 0px 30px #f84,0px 0px 70px #fa5;
  94. cursor: default;
  95. }
  96. .software-wrap{
  97. position:relative;
  98. background:#fbf6f3;
  99. overflow:hidden;
  100. }
  101. .software-down{
  102. padding: 50px 0;
  103. }
  104. .images-usb{
  105. width:100%;
  106. text-align: center;
  107. }
  108. .lock-detail{
  109. width:100%;
  110. }
  111. .text-orange{
  112. color:#ff6501;
  113. padding:0 10px;
  114. }
  115. .info-title{
  116. width:100%;
  117. height:60px;
  118. line-height: 60px;
  119. text-align: center;
  120. font-size: 16px;
  121. z-index: 10;
  122. }
  123. .info-list{
  124. width:100%;
  125. overflow-y:auto;
  126. }
  127. .software-info{
  128. padding-top: 5px;
  129. font-size: 14px;
  130. }
  131. .software-wrapscroll{
  132. width:100%;
  133. overflow-y:auto;
  134. }
  135. .software-list{
  136. background:#fff;
  137. border:2px solid #fff;
  138. border-radius: 3px;
  139. padding:12px;
  140. margin:0 15px 15px;
  141. }
  142. .software-list .software-body{
  143. width:85% !important;
  144. }
  145. .software-list:hover,.details:hover{
  146. border:2px solid rgba(255,101,5,0.2);
  147. }
  148. .software-list:hover .btn-white,.details:hover .btn-white{
  149. background:#ff6501;
  150. color:#fff;
  151. border:1px solid #ff6501;
  152. }
  153. .software-list a{
  154. color:#333;
  155. }
  156. .software-list a:hover{
  157. text-decoration: none;
  158. }
  159. .freewrap{
  160. background:#eee5df;
  161. margin:0 15px 15px 15px;
  162. padding:0 0 5px 0;
  163. border-radius: 3px;
  164. }
  165. .free-title{
  166. padding:10px 15px;
  167. font-size: 18px;
  168. border-radius: 3px 3px 0 0;
  169. }
  170. .free-content{
  171. position:relative;
  172. background:#fff;
  173. padding:15px;
  174. height:90px;
  175. border:2px solid #fff;
  176. border-radius: 3px;
  177. }
  178. .free-content:hover{
  179. border:2px solid rgba(255,101,5,0.2);
  180. }
  181. .free-content:hover .btn-white{
  182. background:#ff6501;
  183. color:#fff;
  184. border:1px solid #ff6501;
  185. display:block;
  186. }
  187. .free-content .btn-white{
  188. display:none;
  189. }
  190. .free-right{
  191. position:absolute;
  192. right:15px;
  193. bottom:10px;
  194. }
  195. .obtian-list{
  196. width:100%;
  197. overflow-y:auto;
  198. }
  199. .obtian-top{
  200. background:rgba(107,91,89,0.4);
  201. color:#333;
  202. border:1px solid #ddd;
  203. border-radius: 7px;
  204. padding:15px;
  205. margin:15px 15px 16px 15px;
  206. font-size: 16px;
  207. }
  208. .software-title{
  209. font-size: 16px;
  210. font-weight: bold;
  211. }
  212. .software-version{
  213. font-size: 14px;
  214. color:#888;
  215. }
  216. .software-stitle{
  217. font-size: 14px;
  218. color:#888;
  219. }
  220. .details-title a{
  221. color:#333;
  222. }
  223. .details-title a:hover{
  224. background:#fff;
  225. text-decoration: none;
  226. }
  227. .detail-download{
  228. width:530px;
  229. padding: 10px 15px;
  230. font-size: 14px;
  231. overflow-y:auto;
  232. }
  233. .detail-content ul{
  234. margin:10px 0 0 0;
  235. padding:0;
  236. }
  237. .detail-content ul li{
  238. list-style-type: none;
  239. width:100%;
  240. padding:10px 0;
  241. }
  242. .detail-content ul li .float-right{
  243. margin-top: -4px;
  244. }
  245. .color-gray{
  246. color:#888;
  247. }
  248. .software-left{
  249. position: absolute;
  250. width:27%;
  251. top:0;
  252. bottom:0;
  253. left:0;
  254. background:#fff;
  255. }
  256. .local-software{
  257. position:absolute;
  258. width:100%;
  259. top:0;
  260. left:0;
  261. bottom:47px;
  262. overflow-y:auto;
  263. }
  264. .software{
  265. position:relative;
  266. padding:12px 0;
  267. margin:0 15px;
  268. border-bottom: 1px solid #f5ede7;
  269. cursor:pointer;
  270. }
  271. .software a{
  272. color:#333;
  273. text-decoration: none;
  274. }
  275. .software:hover a{
  276. color:#ff6501;
  277. }
  278. .software.active{
  279. font-weight: bold;
  280. color:#ff6501;
  281. }
  282. .software.active:before{
  283. position:absolute;
  284. content: "";
  285. top:20px;
  286. right:-15px;
  287. height: 0px;
  288. width: 0px;
  289. border-top: 7px solid transparent;
  290. border-right: 8px solid #fbf6f3;
  291. border-bottom: 8px solid transparent;
  292. }
  293. .software.active a{
  294. color:#ff6501;
  295. }
  296. .software.active .software-num,.software:hover .software-num{
  297. background:#ff6501;
  298. color:#fff;
  299. }
  300. .open-left{
  301. position:absolute;
  302. top:0;
  303. right:0;
  304. z-index: 999;
  305. }
  306. .open-left span{
  307. display:inline-block;
  308. font-size: 12px;
  309. width:12px;
  310. text-align: center;
  311. padding:5px 0;
  312. background:#5A4A47;
  313. color:#fff;
  314. border-radius: 0 0 0 4px;
  315. cursor:pointer;
  316. }
  317. .software-num{
  318. position:absolute;
  319. top:15px;
  320. right:0;
  321. background:#e9e9e9;
  322. color:#555;
  323. display:inline-block;
  324. padding:3px 8px;
  325. }
  326. .software-left-bottomV1,.software-left-bottomV2{
  327. z-index: 999;
  328. position:absolute;
  329. width:100%;
  330. bottom:0;
  331. left:0;
  332. background:#fff;
  333. height:55px;
  334. }
  335. .local-install{
  336. position:absolute;
  337. top: 0;
  338. left:27%;
  339. bottom:0;
  340. width:73%;
  341. overflow-y:hidden;
  342. }
  343. .software-content{
  344. width:100%;
  345. }
  346. .software-tab-pane{
  347. background:#fff;
  348. overflow-y:auto;
  349. }
  350. .software-content .tab-pane{
  351. padding:0 15px;
  352. }
  353. .software-nav{
  354. position:absolute;
  355. right:15px;
  356. top:0;
  357. border-color: #fff;
  358. }
  359. .nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active{
  360. border-color: #fff;
  361. }
  362. .nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus {
  363. border-color: #fff;
  364. background:#fff;
  365. }
  366. .nav-link{
  367. padding:13px 25px;
  368. }
  369. .iconbg{
  370. display:block;
  371. width:30px;
  372. padding:7px 0;
  373. margin:0 0 5px 9px;
  374. text-align: center;
  375. }
  376. .iconbg-purple{
  377. background:#8a7bfd;
  378. color:#fff;
  379. }
  380. .iconbg-green{
  381. background:#0fb890;
  382. color:#fff;
  383. }
  384. .iconbg-yellow{
  385. background:#bfad6a;
  386. color:#fff;
  387. }
  388. .details{
  389. background:#fbf6f3;
  390. padding:15px;
  391. border: 2px solid #fff;
  392. border-radius: 3px;
  393. margin:15px;
  394. color:#888;
  395. font-size: 14px;
  396. }
  397. .details-title{
  398. width:85%;
  399. font-size: 16px;
  400. color:#333;
  401. }
  402. .details .w-25{
  403. font-size: 16px;
  404. font-weight: bold;
  405. color:#333;
  406. }
  407. .details .details-title .w-25{
  408. width:62%!important;
  409. font-weight: 500;
  410. }
  411. .local-software-content{
  412. height:364px;
  413. overflow-y:auto;
  414. padding-right: 15px;
  415. }
  416. #dropdownMenuButton{
  417. cursor:pointer;
  418. }
  419. .no-drop::after{
  420. border:none;
  421. content:none;
  422. }
  423. .vide-title{
  424. margin:0 0 20px 0;
  425. font-size: 16px;
  426. }
  427. .bolangbanner {
  428. top: 98px;
  429. height: 100px;
  430. position: absolute;
  431. width: 100%;
  432. z-index:1;
  433. overflow:hidden;
  434. }
  435. #banner_bolang_bg_1{
  436. position: absolute;
  437. height:85px;
  438. background: url(wave01.png) repeat-x;
  439. width:300%;
  440. bottom:0;
  441. }
  442. #banner_bolang_bg_2{
  443. position: absolute;
  444. height:100px;
  445. background: url(wave02.png) repeat-x;
  446. width:300%;
  447. top:0;
  448. }
  449. .colorblack{
  450. color:#212529;
  451. }
  452. .colorblack:hover{
  453. color:#333;
  454. }
  455. .downloaded{
  456. background:#fbf6f3;
  457. border-radius: 3px;
  458. padding:10px;
  459. font-size: 14px;
  460. border:2px solid #fbf6f3;
  461. margin:10px 0 10px 0;
  462. }
  463. .downloaded:hover{
  464. border:2px solid rgba(255,101,5,0.2);
  465. }
  466. .progress-content .float-right{
  467. font-size: 16px;
  468. }
  469. .progress-width{
  470. width:85%;
  471. }
  472. .dropdown-wrap{
  473. min-width: 0;
  474. }
  475. .btn-white {
  476. color: #333;
  477. background-color: #fff;
  478. border-color: #ddd;
  479. }
  480. .btn-white:hover{
  481. background:#d45300 !important;
  482. color:#fff !important;
  483. border:1px solid #d45300 !important;
  484. }
  485. .btn-orange {
  486. color: #fff;
  487. background-color: #ff6501;
  488. border-color: #ff6501;
  489. }
  490. .btn-orange:hover {
  491. color: #fff;
  492. background-color: #e55a00;
  493. border-color: #e55a00;
  494. }
  495. .btn-orange:focus, .btn-orange.focus {
  496. box-shadow: 0 0 0 0.2rem rgba(45, 174, 191, 0.5);
  497. }
  498. .btn-orange.disabled, .btn-orange:disabled {
  499. color: #fff;
  500. background-color: #e55a00;
  501. border-color: #e55a00;
  502. }
  503. .btn-orange:not(:disabled):not(.disabled):active, .btn-orange:not(:disabled):not(.disabled).active,
  504. .show > .btn-orange.dropdown-toggle {
  505. color: #fff;
  506. background-color: #e55a00;
  507. border-color: #e55a00;
  508. }
  509. .btn-orange:not(:disabled):not(.disabled):active:focus, .btn-orange:not(:disabled):not(.disabled).active:focus,
  510. .show > .btn-orange.dropdown-toggle:focus {
  511. box-shadow: 0 0 0 0.2rem rgba(45, 174, 191, 0.5);
  512. }
  513. .btn-blue {
  514. color: #fff;
  515. background-color: #14a5e8;
  516. border-color: #14a5e8;
  517. }
  518. .btn-blue:hover {
  519. color: #fff;
  520. background-color: #0e90cc;
  521. border-color: #0e90cc;
  522. }
  523. .btn-blue:focus, .btn-blue.focus {
  524. box-shadow: 0 0 0 0.2rem rgba(45, 174, 191, 0.5);
  525. }
  526. .btn-blue.disabled, .btn-blue:disabled {
  527. color: #fff;
  528. background-color: #0e90cc;
  529. border-color: #0e90cc;
  530. }
  531. .btn-blue:not(:disabled):not(.disabled):active, .btn-blue:not(:disabled):not(.disabled).active,
  532. .show > .btn-blue.dropdown-toggle {
  533. color: #fff;
  534. background-color: #0e90cc;
  535. border-color: #0e90cc;
  536. }
  537. .btn-blue:not(:disabled):not(.disabled):active:focus, .btn-blue:not(:disabled):not(.disabled).active:focus,
  538. .show > .btn-blue.dropdown-toggle:focus {
  539. box-shadow: 0 0 0 0.2rem rgba(45, 174, 191, 0.5);
  540. }
  541. .badge-orange{
  542. background:#ff9900;
  543. }
  544. .badge-red{
  545. background:#f00;
  546. }
  547. .modal-dialog{
  548. margin: 3.7rem auto 0 auto !important;
  549. }
  550. .modal-body{
  551. max-height:385px;
  552. overflow-y:auto;
  553. }
  554. .head-img{
  555. margin-top: -5px;
  556. width:26px;
  557. height:26px;
  558. border-radius: 13px;
  559. }
  560. .downloading .dropdown-item{
  561. color:#007bff;
  562. }
  563. .modal-online .media{
  564. background:#fbf6f3;
  565. margin:0 0 15px 0;
  566. padding:15px;
  567. border: 2px solid #fbf6f3;
  568. border-radius: 3px;
  569. }
  570. .modal-online .media:hover{
  571. border:2px solid rgba(255,101,5,0.2);
  572. }
  573. .alert-sm{
  574. padding: .25rem .5rem;
  575. }
  576. .card-width{
  577. width:189px;
  578. }
  579. /*新闻页面*/
  580. .news-content .software-left{
  581. width:15%;
  582. }
  583. .news-content .local-install{
  584. width:85%;
  585. left:15%;
  586. }
  587. .news-list a{
  588. color:#212529;
  589. }
  590. .news-list a:hover{
  591. text-decoration: none;
  592. }
  593. .news-list .news-item{
  594. border:1px solid #fff;
  595. overflow: hidden;
  596. padding:20px;
  597. background:#fff;
  598. }
  599. .news-list .news-item:hover{
  600. border:1px solid rgba(255,101,5,0.3);
  601. box-shadow: 0 0 10px #ccc
  602. }
  603. /*培训*/
  604. .train-nav .nav-link{
  605. padding:5px 15px 0px;
  606. position: relative;
  607. color:#333;
  608. font-size: 14px
  609. }
  610. .train-nav .nav-link.active{
  611. color:#ff6501;
  612. font-weight: 600
  613. }
  614. .train-nav .nav-link:hover{
  615. color:#ff6501;
  616. }
  617. .train-nav .nav-link.active:before{
  618. position:absolute;
  619. content: "";
  620. top:34px;
  621. left:20px;
  622. height: 0px;
  623. width: 0px;
  624. border-left: 7px solid transparent;
  625. border-bottom: 8px solid #fbf6f3;
  626. border-right: 8px solid transparent
  627. }
  628. .train-content{
  629. position:relative;
  630. background:#fff;
  631. }
  632. .train-mode{
  633. position:absolute;
  634. right:0;
  635. top:-40px;
  636. color: #fff;
  637. font-size: 14px;
  638. line-height: 30px;
  639. height: 30px;
  640. padding: 0 30px;
  641. }
  642. .return{
  643. color:#007bff !important;
  644. }
  645. .train-table ul{
  646. margin:0;
  647. padding:0;
  648. }
  649. .train-table ul li{
  650. margin:15px 0 0 0;
  651. list-style-type: none;
  652. }
  653. .train-table .form-th{
  654. width: 80px;
  655. height: 34px;
  656. line-height: 34px;
  657. text-align: center;
  658. background: linear-gradient(to bottom right,#6d5855,#3b2d2a);
  659. color: #fff;
  660. margin:0 0 10px 0;
  661. }
  662. .form-group{
  663. position:relative;
  664. }
  665. .erroT{
  666. border:1px solid #f00;
  667. }
  668. .form-group span.text-danger{
  669. position:absolute;
  670. top:40px;
  671. }
  672. .text-big{
  673. margin-top: -10px;
  674. font-size: 26px;
  675. }
  676. .new-function{
  677. padding:15px 0;
  678. display:none;
  679. }
  680. .white-bg{
  681. background:#fff;
  682. }