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-content ul{
  197. margin:10px 0 0 0;
  198. padding:0;
  199. }
  200. .detail-content ul li{
  201. list-style-type: none;
  202. width:100%;
  203. padding:10px 0;
  204. }
  205. .detail-content ul li .float-right{
  206. margin-top: -4px;
  207. }
  208. .color-gray{
  209. color:#888;
  210. }
  211. .software-left{
  212. position: absolute;
  213. width:27%;
  214. top:0;
  215. bottom:0;
  216. left:0;
  217. background:#fff;
  218. }
  219. .local-software{
  220. position:absolute;
  221. width:100%;
  222. top:0;
  223. left:0;
  224. bottom:47px;
  225. overflow-y:auto;
  226. }
  227. .software{
  228. position:relative;
  229. padding:12px 0;
  230. margin:0 15px;
  231. border-bottom: 1px solid #f5ede7;
  232. cursor:pointer;
  233. }
  234. .software a{
  235. color:#333;
  236. text-decoration: none;
  237. }
  238. .software:hover a{
  239. color:#ff6501;
  240. }
  241. .software.active{
  242. font-weight: bold;
  243. color:#ff6501;
  244. }
  245. .software.active:before{
  246. position:absolute;
  247. content: "";
  248. top:20px;
  249. right:-15px;
  250. height: 0px;
  251. width: 0px;
  252. border-top: 7px solid transparent;
  253. border-right: 8px solid #fbf6f3;
  254. border-bottom: 8px solid transparent;
  255. }
  256. .software.active a{
  257. color:#ff6501;
  258. }
  259. .software.active .software-num,.software:hover .software-num{
  260. background:#ff6501;
  261. color:#fff;
  262. }
  263. .open-left{
  264. position:absolute;
  265. top:0;
  266. right:0;
  267. z-index: 999;
  268. }
  269. .open-left span{
  270. display:inline-block;
  271. font-size: 12px;
  272. width:12px;
  273. text-align: center;
  274. padding:5px 0;
  275. background:#5A4A47;
  276. color:#fff;
  277. border-radius: 0 0 0 4px;
  278. cursor:pointer;
  279. }
  280. .software-num{
  281. position:absolute;
  282. top:15px;
  283. right:0;
  284. background:#e9e9e9;
  285. color:#555;
  286. display:inline-block;
  287. padding:3px 8px;
  288. }
  289. .software-left-bottomV1,.software-left-bottomV2{
  290. z-index: 999;
  291. position:absolute;
  292. width:100%;
  293. bottom:0;
  294. left:0;
  295. background:#fff;
  296. height:55px;
  297. }
  298. .local-install{
  299. position:absolute;
  300. top: 0;
  301. left:27%;
  302. bottom:0;
  303. width:73%;
  304. overflow-y:auto;
  305. }
  306. .software-content{
  307. position:absolute;
  308. width:100%;
  309. }
  310. .software-tab-pane{
  311. background:#fff;
  312. padding:15px;
  313. overflow-y:auto;
  314. }
  315. .software-content .tab-pane{
  316. padding:0 15px;
  317. }
  318. .software-nav{
  319. position:absolute;
  320. right:15px;
  321. top:0;
  322. border-color: #fff;
  323. }
  324. .nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active{
  325. border-color: #fff;
  326. }
  327. .nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus {
  328. border-color: #fff;
  329. background:#fff;
  330. }
  331. .nav-link{
  332. padding:13px 25px;
  333. }
  334. .iconbg{
  335. display:block;
  336. width:30px;
  337. padding:10px 0;
  338. margin:0 0 5px 9px;
  339. text-align: center;
  340. }
  341. .iconbg-purple{
  342. background:#8a7bfd;
  343. color:#fff;
  344. }
  345. .iconbg-green{
  346. background:#0fb890;
  347. color:#fff;
  348. }
  349. .iconbg-yellow{
  350. background:#bfad6a;
  351. color:#fff;
  352. }
  353. .details{
  354. background:#fbf6f3;
  355. padding:15px;
  356. border: 2px solid #fff;
  357. border-radius: 3px;
  358. margin:0 0 15px;
  359. color:#888;
  360. font-size: 14px;
  361. }
  362. .software-tab-pane .details:last-child{
  363. margin-bottom: 0;
  364. }
  365. .details-title{
  366. width:72%;
  367. font-size: 16px;
  368. color:#333;
  369. }
  370. .details .w-25{
  371. font-size: 16px;
  372. font-weight: bold;
  373. color:#333;
  374. }
  375. .details .details-title .w-25{
  376. width:62%!important;
  377. font-weight: 500;
  378. }
  379. .details .w-25{
  380. font-size: 16px;
  381. font-weight: bold;
  382. color:#333;
  383. }
  384. .local-software-content{
  385. height:364px;
  386. overflow-y:auto;
  387. padding-right: 15px;
  388. }
  389. #dropdownMenuButton{
  390. cursor:pointer;
  391. }
  392. .dropdown-toggle::after{
  393. border:none;
  394. }
  395. .vide-title{
  396. margin:0 0 20px 0;
  397. font-size: 16px;
  398. }
  399. .bolangbanner {
  400. top: 98px;
  401. height: 100px;
  402. position: absolute;
  403. width: 100%;
  404. z-index:1;
  405. overflow:hidden;
  406. }
  407. #banner_bolang_bg_1{
  408. position: absolute;
  409. height:85px;
  410. background: url(wave01.png) repeat-x;
  411. width:300%;
  412. bottom:0;
  413. }
  414. #banner_bolang_bg_2{
  415. position: absolute;
  416. height:100px;
  417. background: url(wave02.png) repeat-x;
  418. width:300%;
  419. top:0;
  420. }
  421. .colorblack{
  422. color:#212529;
  423. }
  424. .colorblack:hover{
  425. color:#333;
  426. }
  427. .downloaded{
  428. background:#fbf6f3;
  429. border-radius: 3px;
  430. padding:10px;
  431. font-size: 14px;
  432. border:2px solid #fbf6f3;
  433. margin:10px 0 10px 0;
  434. }
  435. .downloaded:hover{
  436. border:2px solid rgba(255,101,5,0.2);
  437. }
  438. .progress-content .float-right{
  439. font-size: 16px;
  440. }
  441. .progress-width{
  442. width:85%;
  443. }
  444. .dropdown-wrap{
  445. min-width: 0;
  446. }
  447. .btn-white {
  448. color: #333;
  449. background-color: #fff;
  450. border-color: #ddd;
  451. }
  452. .btn-orange {
  453. color: #fff;
  454. background-color: #ff6501;
  455. border-color: #ff6501;
  456. }
  457. .btn-orange:hover {
  458. color: #fff;
  459. background-color: #e55a00;
  460. border-color: #e55a00;
  461. }
  462. .btn-orange:focus, .btn-orange.focus {
  463. box-shadow: 0 0 0 0.2rem rgba(45, 174, 191, 0.5);
  464. }
  465. .btn-orange.disabled, .btn-orange:disabled {
  466. color: #fff;
  467. background-color: #e55a00;
  468. border-color: #e55a00;
  469. }
  470. .btn-orange:not(:disabled):not(.disabled):active, .btn-orange:not(:disabled):not(.disabled).active,
  471. .show > .btn-orange.dropdown-toggle {
  472. color: #fff;
  473. background-color: #e55a00;
  474. border-color: #e55a00;
  475. }
  476. .btn-orange:not(:disabled):not(.disabled):active:focus, .btn-orange:not(:disabled):not(.disabled).active:focus,
  477. .show > .btn-orange.dropdown-toggle:focus {
  478. box-shadow: 0 0 0 0.2rem rgba(45, 174, 191, 0.5);
  479. }
  480. .btn-blue {
  481. color: #fff;
  482. background-color: #14a5e8;
  483. border-color: #14a5e8;
  484. }
  485. .btn-blue:hover {
  486. color: #fff;
  487. background-color: #0e90cc;
  488. border-color: #0e90cc;
  489. }
  490. .btn-blue:focus, .btn-blue.focus {
  491. box-shadow: 0 0 0 0.2rem rgba(45, 174, 191, 0.5);
  492. }
  493. .btn-blue.disabled, .btn-blue:disabled {
  494. color: #fff;
  495. background-color: #0e90cc;
  496. border-color: #0e90cc;
  497. }
  498. .btn-blue:not(:disabled):not(.disabled):active, .btn-blue:not(:disabled):not(.disabled).active,
  499. .show > .btn-blue.dropdown-toggle {
  500. color: #fff;
  501. background-color: #0e90cc;
  502. border-color: #0e90cc;
  503. }
  504. .btn-blue:not(:disabled):not(.disabled):active:focus, .btn-blue:not(:disabled):not(.disabled).active:focus,
  505. .show > .btn-blue.dropdown-toggle:focus {
  506. box-shadow: 0 0 0 0.2rem rgba(45, 174, 191, 0.5);
  507. }
  508. .badge-orange{
  509. background:#ff9900;
  510. }
  511. .badge-red{
  512. background:#f00;
  513. }
  514. .modal-dialog{
  515. margin: 3.7rem auto 0 auto !important;
  516. }
  517. .modal-body{
  518. height:356px;
  519. overflow-y:auto;
  520. }
  521. .head-img{
  522. margin-top: -5px;
  523. width:26px;
  524. height:26px;
  525. border-radius: 13px;
  526. }
  527. .downloading .dropdown-item{
  528. color:#007bff;
  529. }
  530. .modal-online .media{
  531. background:#fbf6f3;
  532. margin:0 0 15px 0;
  533. padding:15px;
  534. border: 2px solid #fbf6f3;
  535. border-radius: 3px;
  536. }
  537. .modal-online .media:hover{
  538. border:2px solid rgba(255,101,5,0.2);
  539. }
  540. .alert-sm{
  541. padding: .25rem .5rem;
  542. }