global.css 9.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557
  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. .container-width{
  12. /*position:relative;*/
  13. padding:20px;
  14. /*width:900px;
  15. height:564px;*/
  16. /*overflow: hidden;*/
  17. background: -prefix-linear-gradient(left top,#6d5855,#3b2d2a);
  18. background: linear-gradient(to bottom right,#6d5855,#3b2d2a);
  19. }
  20. ::-webkit-scrollbar-track
  21. {
  22. background-color: #fff;
  23. }
  24. ::-webkit-scrollbar
  25. {
  26. width: 5px;
  27. height:5px;
  28. }
  29. ::-webkit-scrollbar:hover{
  30. background:#ddd5cf;
  31. }
  32. ::-webkit-scrollbar-thumb
  33. {
  34. background-color: #ddd5cf;
  35. }
  36. .header{
  37. margin-top: -20px;
  38. padding-top: 5px;
  39. height:60px;
  40. color:#fff;
  41. background:url(header-bg.png) no-repeat 140px 0;
  42. }
  43. .header i{
  44. color:#fff;
  45. }
  46. .header-return{
  47. display:inline-block;
  48. font-size: 20px;
  49. font-weight: bold;
  50. padding:13px 5px 0 0;
  51. }
  52. .header i{
  53. cursor:pointer;
  54. }
  55. .version-name{
  56. margin-left: 15px;
  57. color:#ddd;
  58. font-size: 12px;
  59. }
  60. .software-wrap{
  61. position:relative;
  62. background:#fbf6f3;
  63. overflow:hidden;
  64. }
  65. .software-down{
  66. padding: 50px 0;
  67. }
  68. .lock-detail{
  69. width:100%;
  70. position:relative;
  71. }
  72. .text-orange{
  73. color:#ff6501;
  74. padding:0 10px;
  75. }
  76. .info-title{
  77. position:absolute;
  78. width:100%;
  79. height:60px;
  80. line-height: 60px;
  81. text-align: center;
  82. font-size: 16px;
  83. z-index: 10;
  84. }
  85. .info-list{
  86. position:absolute;
  87. top:67px;
  88. width:100%;
  89. overflow-y:auto;
  90. }
  91. .software-info{
  92. padding-top: 5px;
  93. font-size: 14px;
  94. }
  95. .software-wrapscroll{
  96. position:absolute;
  97. width:100%;
  98. overflow-y:auto;
  99. }
  100. .software-list{
  101. background:#fff;
  102. border:2px solid #fff;
  103. border-radius: 3px;
  104. padding:12px;
  105. margin:0 15px 15px;
  106. }
  107. .software-list .software-body{
  108. width:85% !important;
  109. }
  110. .software-list:hover,.details:hover{
  111. border:2px solid rgba(255,101,5,0.2);
  112. }
  113. .software-list:hover .btn-white,.details:hover .btn-white{
  114. background:#ff6501;
  115. color:#fff;
  116. border:1px solid #ff6501;
  117. }
  118. .software-list a{
  119. color:#333;
  120. }
  121. .software-list a:hover{
  122. text-decoration: none;
  123. }
  124. .freewrap{
  125. background:#eee5df;
  126. margin:0 15px 15px 15px;
  127. padding:0 0 5px 0;
  128. border-radius: 3px;
  129. }
  130. .free-title{
  131. padding:10px 15px;
  132. font-size: 18px;
  133. border-radius: 3px 3px 0 0;
  134. }
  135. .free-content{
  136. position:relative;
  137. background:#fff;
  138. padding:15px;
  139. margin:0 15px 15px;
  140. height:90px;
  141. border:2px solid #fff;
  142. border-radius: 3px;
  143. }
  144. .free-content:hover{
  145. border:2px solid rgba(255,101,5,0.2);
  146. }
  147. .free-content:hover .btn-white{
  148. background:#ff6501;
  149. color:#fff;
  150. border:1px solid #ff6501;
  151. }
  152. .free-right{
  153. position:absolute;
  154. right:15px;
  155. bottom:10px;
  156. }
  157. .obtian-list{
  158. position:absolute;
  159. width:100%;
  160. overflow-y:auto;
  161. }
  162. .obtian-top{
  163. background:rgba(107,91,89,0.4);
  164. color:#333;
  165. border:1px solid #ddd;
  166. border-radius: 7px;
  167. padding:15px;
  168. margin:15px;
  169. font-size: 16px;
  170. }
  171. .software-title{
  172. font-size: 16px;
  173. font-weight: bold;
  174. }
  175. .software-version{
  176. font-size: 14px;
  177. color:#888;
  178. }
  179. .software-stitle{
  180. font-size: 14px;
  181. color:#888;
  182. }
  183. .details-title a{
  184. color:#333;
  185. }
  186. .details-title a:hover{
  187. background:#fff;
  188. text-decoration: none;
  189. }
  190. .detail-download{
  191. width:530px;
  192. padding: 10px 15px;
  193. font-size: 14px;
  194. overflow-y:auto;
  195. }
  196. .detail-download button{
  197. font-size: 12px;
  198. }
  199. .detail-content ul{
  200. margin:10px 0 0 0;
  201. padding:0;
  202. }
  203. .detail-content ul li{
  204. list-style-type: none;
  205. width:100%;
  206. padding:10px 0;
  207. }
  208. .detail-content ul li .float-right{
  209. margin-top: -4px;
  210. }
  211. .color-gray{
  212. color:#888;
  213. }
  214. .software-left{
  215. position: absolute;
  216. width:27%;
  217. top:0;
  218. bottom:0;
  219. left:0;
  220. background:#fff;
  221. }
  222. .local-software{
  223. position:absolute;
  224. width:100%;
  225. top:0;
  226. left:0;
  227. bottom:47px;
  228. overflow-y:auto;
  229. }
  230. .software{
  231. position:relative;
  232. padding:12px 0;
  233. margin:0 15px;
  234. border-bottom: 1px solid #f5ede7;
  235. cursor:pointer;
  236. }
  237. .software a{
  238. color:#333;
  239. text-decoration: none;
  240. }
  241. .software:hover a{
  242. color:#ff6501;
  243. }
  244. .software.active{
  245. font-weight: bold;
  246. color:#ff6501;
  247. }
  248. .software.active:before{
  249. position:absolute;
  250. content: "";
  251. top:20px;
  252. right:-15px;
  253. height: 0px;
  254. width: 0px;
  255. border-top: 7px solid transparent;
  256. border-right: 8px solid #fbf6f3;
  257. border-bottom: 8px solid transparent;
  258. }
  259. .software.active a{
  260. color:#ff6501;
  261. }
  262. .software.active .software-num,.software:hover .software-num{
  263. background:#ff6501;
  264. color:#fff;
  265. }
  266. .open-left{
  267. position:absolute;
  268. top:0;
  269. right:0;
  270. z-index: 999;
  271. }
  272. .open-left span{
  273. display:inline-block;
  274. font-size: 12px;
  275. width:12px;
  276. text-align: center;
  277. padding:5px 0;
  278. background:#5A4A47;
  279. color:#fff;
  280. border-radius: 0 0 0 4px;
  281. cursor:pointer;
  282. }
  283. .software-num{
  284. position:absolute;
  285. top:15px;
  286. right:0;
  287. background:#e9e9e9;
  288. color:#555;
  289. display:inline-block;
  290. padding:3px 8px;
  291. }
  292. .software-left-bottomV1,.software-left-bottomV2{
  293. z-index: 999;
  294. position:absolute;
  295. width:100%;
  296. bottom:0;
  297. left:0;
  298. background:#fff;
  299. height:55px;
  300. }
  301. .local-install{
  302. position:absolute;
  303. top: 0;
  304. left:27%;
  305. bottom:0;
  306. width:73%;
  307. overflow-y:auto;
  308. }
  309. .software-content{
  310. position:absolute;
  311. width:100%;
  312. }
  313. .software-tab-pane{
  314. background:#fff;
  315. padding:15px;
  316. overflow-y:auto;
  317. }
  318. .software-content .tab-pane{
  319. padding:0 15px;
  320. }
  321. .software-nav{
  322. position:absolute;
  323. right:15px;
  324. top:0;
  325. border-color: #fff;
  326. }
  327. .nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active{
  328. border-color: #fff;
  329. }
  330. .nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus {
  331. border-color: #fff;
  332. background:#fff;
  333. }
  334. .nav-link{
  335. padding:13px 25px;
  336. }
  337. .iconbg{
  338. display:block;
  339. width:30px;
  340. padding:10px 0;
  341. margin:0 0 5px 9px;
  342. text-align: center;
  343. }
  344. .iconbg-purple{
  345. background:#8a7bfd;
  346. color:#fff;
  347. }
  348. .iconbg-green{
  349. background:#0fb890;
  350. color:#fff;
  351. }
  352. .iconbg-yellow{
  353. background:#bfad6a;
  354. color:#fff;
  355. }
  356. .details{
  357. background:#fbf6f3;
  358. padding:15px;
  359. border: 2px solid #fff;
  360. border-radius: 3px;
  361. margin:0 0 15px;
  362. color:#888;
  363. font-size: 14px;
  364. }
  365. .software-tab-pane .details:last-child{
  366. margin-bottom: 0;
  367. }
  368. .details-title{
  369. width:72%;
  370. font-size: 16px;
  371. color:#333;
  372. }
  373. .details .w-25{
  374. font-size: 16px;
  375. font-weight: bold;
  376. color:#333;
  377. }
  378. .details .details-title .w-25{
  379. width:62%!important;
  380. font-weight: 500;
  381. }
  382. .details .w-25{
  383. font-size: 16px;
  384. font-weight: bold;
  385. color:#333;
  386. }
  387. .local-software-content{
  388. height:364px;
  389. overflow-y:auto;
  390. padding-right: 15px;
  391. }
  392. #dropdownMenuButton{
  393. cursor:pointer;
  394. }
  395. .dropdown-toggle::after{
  396. border:none;
  397. }
  398. .vide-title{
  399. margin:0 0 20px 0;
  400. font-size: 16px;
  401. }
  402. .bolangbanner {
  403. top: 98px;
  404. height: 100px;
  405. position: absolute;
  406. width: 100%;
  407. z-index:1;
  408. overflow:hidden;
  409. }
  410. #banner_bolang_bg_1{
  411. position: absolute;
  412. height:85px;
  413. background: url(wave01.png) repeat-x;
  414. width:300%;
  415. bottom:0;
  416. }
  417. #banner_bolang_bg_2{
  418. position: absolute;
  419. height:100px;
  420. background: url(wave02.png) repeat-x;
  421. width:300%;
  422. top:0;
  423. }
  424. .colorblack{
  425. color:#212529;
  426. }
  427. .colorblack:hover{
  428. color:#333;
  429. }
  430. .downloaded{
  431. background:#fbf6f3;
  432. border-radius: 3px;
  433. padding:10px;
  434. font-size: 14px;
  435. border:2px solid #fbf6f3;
  436. margin:10px 0 10px 0;
  437. }
  438. .downloaded:hover{
  439. border:2px solid rgba(255,101,5,0.2);
  440. }
  441. .progress-content .float-right{
  442. font-size: 16px;
  443. }
  444. .progress-width{
  445. width:85%;
  446. }
  447. .dropdown-wrap{
  448. min-width: 0;
  449. }
  450. .btn-white {
  451. color: #333;
  452. background-color: #fff;
  453. border-color: #ddd;
  454. }
  455. .btn-orange {
  456. color: #fff;
  457. background-color: #ff6501;
  458. border-color: #ff6501;
  459. }
  460. .btn-orange:hover {
  461. color: #fff;
  462. background-color: #e55a00;
  463. border-color: #e55a00;
  464. }
  465. .btn-orange:focus, .btn-orange.focus {
  466. box-shadow: 0 0 0 0.2rem rgba(45, 174, 191, 0.5);
  467. }
  468. .btn-orange.disabled, .btn-orange:disabled {
  469. color: #fff;
  470. background-color: #e55a00;
  471. border-color: #e55a00;
  472. }
  473. .btn-orange:not(:disabled):not(.disabled):active, .btn-orange:not(:disabled):not(.disabled).active,
  474. .show > .btn-orange.dropdown-toggle {
  475. color: #fff;
  476. background-color: #e55a00;
  477. border-color: #e55a00;
  478. }
  479. .btn-orange:not(:disabled):not(.disabled):active:focus, .btn-orange:not(:disabled):not(.disabled).active:focus,
  480. .show > .btn-orange.dropdown-toggle:focus {
  481. box-shadow: 0 0 0 0.2rem rgba(45, 174, 191, 0.5);
  482. }
  483. .btn-blue {
  484. color: #fff;
  485. background-color: #14a5e8;
  486. border-color: #14a5e8;
  487. }
  488. .btn-blue:hover {
  489. color: #fff;
  490. background-color: #0e90cc;
  491. border-color: #0e90cc;
  492. }
  493. .btn-blue:focus, .btn-blue.focus {
  494. box-shadow: 0 0 0 0.2rem rgba(45, 174, 191, 0.5);
  495. }
  496. .btn-blue.disabled, .btn-blue:disabled {
  497. color: #fff;
  498. background-color: #0e90cc;
  499. border-color: #0e90cc;
  500. }
  501. .btn-blue:not(:disabled):not(.disabled):active, .btn-blue:not(:disabled):not(.disabled).active,
  502. .show > .btn-blue.dropdown-toggle {
  503. color: #fff;
  504. background-color: #0e90cc;
  505. border-color: #0e90cc;
  506. }
  507. .btn-blue:not(:disabled):not(.disabled):active:focus, .btn-blue:not(:disabled):not(.disabled).active:focus,
  508. .show > .btn-blue.dropdown-toggle:focus {
  509. box-shadow: 0 0 0 0.2rem rgba(45, 174, 191, 0.5);
  510. }
  511. .badge-orange{
  512. background:#ff9900;
  513. }
  514. .badge-red{
  515. background:#f00;
  516. }
  517. .modal-dialog{
  518. margin: 3.7rem auto 0 auto !important;
  519. }
  520. .modal-body{
  521. height:356px;
  522. overflow-y:auto;
  523. }
  524. .head-img{
  525. margin-top: -5px;
  526. width:26px;
  527. height:26px;
  528. border-radius: 13px;
  529. }
  530. .downloading .dropdown-item{
  531. color:#007bff;
  532. }
  533. .modal-online .media{
  534. background:#fbf6f3;
  535. margin:0 0 15px 0;
  536. padding:15px;
  537. border: 2px solid #fbf6f3;
  538. border-radius: 3px;
  539. }
  540. .modal-online .media:hover{
  541. border:2px solid rgba(255,101,5,0.2);
  542. }