browser.css 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621
  1. @charset "utf-8";
  2. *{
  3. margin: 0;
  4. padding: 0;
  5. font-family:Microsoft YaHei,fontello;
  6. -webkit-font-smoothing: antialiased;
  7. -moz-osx-font-smoothing: grayscale;
  8. list-style: none;
  9. }
  10. body{
  11. margin: 0;
  12. padding: 0;
  13. overflow: hidden;
  14. }
  15. ul,li{
  16. margin: 0;
  17. padding: 0;
  18. list-style: none;
  19. }
  20. button:focus,button{
  21. outline: none;
  22. cursor: pointer;
  23. }
  24. .clearfix:after{
  25. content: "";
  26. height: 0;
  27. line-height: 0;
  28. display: block;
  29. visibility: hidden;
  30. clear: both;
  31. }
  32. .clearfix{
  33. zoom:1;
  34. }
  35. .bowerHeader {
  36. position: relative;
  37. height: 20px;
  38. }
  39. .bowerHeaderMenu{
  40. float: right;
  41. }
  42. .bowerHeader .bowerHeaderMenu button {
  43. width: 50px;
  44. height: 25px;
  45. border: transparent;
  46. background: #fff;
  47. font-size: 13px;
  48. }
  49. .bowerHeader .bowerHeaderMenu button:hover{
  50. background: #eee;
  51. }
  52. .icon-cancel:hover{
  53. background: #e66350 !important;
  54. color: #fff;
  55. }
  56. .icon-minus{
  57. color: #333;
  58. }
  59. .bowerHeaderSeach {
  60. width: 100%;
  61. height: 26px;
  62. display: inline-flex;
  63. padding: 4px 0;
  64. background: #f5f5f5;
  65. border-top: 1px solid #ccc;
  66. border-bottom: 1px solid #ccc;
  67. }
  68. .bowerHeaderSeach li {
  69. width: 30px;
  70. padding: 4px 2px;
  71. text-align: center;
  72. color: #5a5a5a;
  73. }
  74. .bowerHeaderSeach .bowerSeach {
  75. position: relative;
  76. width: calc(100% - 150px) !important;
  77. padding: 2px 5px !important;
  78. text-align: left !important;
  79. border: 1px solid #dcdcdc;
  80. border-radius: 5px;
  81. }
  82. .bowerHeaderSeach .bowerSeach span{
  83. padding: 2px 5px;
  84. }
  85. .bowerHeaderSeach li span{
  86. font-size: 16px;
  87. }
  88. .bowerHeaderSeach .bowerSeach input {
  89. position: absolute;
  90. top: 0;
  91. width: calc(100% - 27px) !important;
  92. height: 24px;
  93. border: 0 solid #d2d2d2;
  94. border-top-right-radius: 5px;
  95. outline: none;
  96. text-indent: 10px;
  97. border-left: 1px solid #d2d2d2;
  98. }
  99. .bowerHeaderSeach .bowerMenu {
  100. float: right;
  101. }
  102. .bowerHeaderSeach .bowerMenu:hover{
  103. background: #ddd;
  104. }
  105. .bowerHeaderSeach .icon-menu{
  106. font-size: 21px;
  107. color: #5a5a5a;
  108. }
  109. .bowerCreaterWindow li {
  110. position: relative;
  111. max-width: 180px !important;
  112. width: 150px;
  113. min-width: 10px !important;
  114. top: -1px;
  115. height: 29px;
  116. display: initial;
  117. margin-right: 10px;
  118. text-align: center;
  119. color: #000;
  120. line-height: 43px;
  121. background-color: #dadada;
  122. border-top: 1px solid #a2a2a2;
  123. z-index: 30;
  124. -webkit-app-region: no-drag;
  125. -webkit-transition: all .3s cubic-bezier(0.3,.1,.58,1);
  126. -moz-transition: all .3s cubic-bezier(0.3,.1,.58,1);
  127. transition: all .3s cubic-bezier(0.3,.1,.58,1);
  128. }
  129. .BrowerActive{
  130. background-color: #f2f2f2 !important;
  131. border-top-color:#a9a9a9 !important;
  132. z-index: 999 !important;
  133. }
  134. .Listindex{
  135. z-index: 999 !important;
  136. }
  137. .BrowerActive:before {
  138. background-color:#f2f2f2 !important;
  139. border-right-color:#a9a9a9 !important;
  140. }
  141. .BrowerActive:after {
  142. background-color:#f2f2f2 !important;
  143. border-left-color:#a9a9a9 !important;
  144. }
  145. .bowerCreaterWindow li:before {
  146. content: '';
  147. position: absolute;
  148. display: block;
  149. right: -6px;
  150. top: 0;
  151. width: 30px;
  152. height: 29px;
  153. transform: skewX(20deg);
  154. background-color: #dadada;
  155. border-right: 1px solid #a2a2a2;
  156. -webkit-transition: all .3s cubic-bezier(0.3,.1,.58,1);
  157. -moz-transition: all .3s cubic-bezier(0.3,.1,.58,1);
  158. transition: all .3s cubic-bezier(0.3,.1,.58,1);
  159. }
  160. .bowerCreaterWindow li:after {
  161. content: '';
  162. position: absolute;
  163. display: block;
  164. top: 0;
  165. width: 30px;
  166. height: 29px;
  167. margin-left: -5px;
  168. transform: skewX(-20deg);
  169. background-color: #dadada;
  170. border-left: 1px solid #a2a2a2;
  171. -webkit-transition: all .3s cubic-bezier(0.3,.1,.58,1);
  172. -moz-transition: all .3s cubic-bezier(0.3,.1,.58,1);
  173. transition: all .3s cubic-bezier(0.3,.1,.58,1);
  174. }
  175. .bowerCreaterWindow {
  176. float: left;
  177. width: calc(100% - 195px);
  178. height: 29px;
  179. display: inline-flex;
  180. overflow: unset;
  181. margin-left: 20px;
  182. -webkit-transition: all .3s cubic-bezier(0.3,.1,.58,1);
  183. -moz-transition: all .3s cubic-bezier(0.3,.1,.58,1);
  184. transition: all .3s cubic-bezier(0.3,.1,.58,1);
  185. }
  186. .BrowerListBody {
  187. position: relative;
  188. display: inline-block;
  189. width: calc(100% - 3px);
  190. z-index: 99;
  191. line-height: 22px;
  192. }
  193. .BrowerList img {
  194. display: inline-block;
  195. float: left;
  196. width: 16px;
  197. height: 16px;
  198. }
  199. .BrowerList p {
  200. display: inline-block;
  201. float: left;
  202. min-width: 0;
  203. max-width: 80%;
  204. width: calc(100% - 40px);
  205. margin: 0 3px;
  206. overflow: hidden;
  207. text-overflow: ellipsis;
  208. white-space: nowrap;
  209. line-height: 18px;
  210. text-align: left;
  211. }
  212. .BrowerList i {
  213. float: right;
  214. width: 10px;
  215. height: 10px;
  216. padding: 4px;
  217. border-radius: 50%;
  218. }
  219. button.BrowwerAdd {
  220. width: 32px !important;
  221. height: 18px;
  222. padding: 7px;
  223. margin: 6px 0 0 0;
  224. -webkit-transform: skew(20deg);
  225. -moz-transform: skew(20deg);
  226. -o-transform: skew(20deg);
  227. background: white;
  228. border: 1px solid #c7c7c7;
  229. border-radius: 3px;
  230. -webkit-app-region: no-drag;
  231. }
  232. .BrowerContainer {
  233. height: calc(100% - 93px) !important;
  234. }
  235. .BrowerContainer webview, webview object{
  236. height: 100% !important;
  237. width: 100% !important;
  238. }
  239. .OnclickMenu{
  240. position: absolute;
  241. right: 0;
  242. top: 80px;
  243. min-width:90pt;
  244. display: none;
  245. background:#fff;
  246. box-shadow: 0 3px 3px 0 rgba(0,0,0,0.14), 0 1px 7px 0 rgba(0,0,0,0.12), 0 3px 1px -1px rgba(0,0,0,0.2);
  247. -moz-user-select:none;
  248. -webkit-user-select:none;
  249. -ms-user-select:none;
  250. -khtml-user-select:none;
  251. user-select:none;
  252. }
  253. .MouseMenuMain{
  254. position:absolute;
  255. z-index:22;
  256. display:none;
  257. width:auto;
  258. height:auto;
  259. min-width:90pt;
  260. background:#fff;
  261. box-shadow: 0 3px 3px 0 rgba(0,0,0,0.14), 0 1px 7px 0 rgba(0,0,0,0.12), 0 3px 1px -1px rgba(0,0,0,0.2);
  262. -moz-user-select:none;
  263. -webkit-user-select:none;
  264. -ms-user-select:none;
  265. -khtml-user-select:none;
  266. user-select:none;
  267. }
  268. .MouseMenuMain li ,.OnclickMenu li{
  269. width: auto;
  270. max-width: 400px;
  271. font-size:12px;
  272. padding: 6px 8px;
  273. color: #333;
  274. text-align: left;
  275. white-space: nowrap;
  276. }
  277. .MouseMenuMain li:hover{
  278. background-color:#ddd;
  279. color:#000;
  280. cursor:pointer;
  281. }
  282. .OnclickMenu li:hover{
  283. background-color:#ddd;
  284. color:#000;
  285. cursor:pointer;
  286. }
  287. .MouseMenuMainStep{
  288. width: 100%;
  289. padding: 0 !important;
  290. height: 1px;
  291. background: #e8e8e8;
  292. margin: 5px 0;
  293. }
  294. /* .HistoryBody {
  295. padding-right: 25px;
  296. }
  297. .BrowserHistory{
  298. left: auto;
  299. width: 60% !important;
  300. padding: 0 20px;
  301. margin: 0 auto;
  302. box-shadow: rgb(202, 202, 202) 0px 0px 30px 5px !important;
  303. border: 1px solid #e4e4e4 !important;
  304. background-color: #fff !important;
  305. z-index: 999 !important;
  306. }
  307. .BrowserHistoryTitle{
  308. padding: 5px 0;
  309. background-color: transparent !important;
  310. color: #666 !important;
  311. text-align: center;
  312. }
  313. .BrowserHistoryClose{
  314. top: 9px !important;
  315. right: 10px !important;
  316. }
  317. .history_body {
  318. overflow: hidden;
  319. width: 100%;
  320. line-height: 20px;
  321. margin: 3px 0 10px;
  322. display: inline-flex;
  323. }
  324. .history_body span{
  325. margin-right: 20px;
  326. }
  327. .history_body p {
  328. max-width: 35%;
  329. height: 20px;
  330. margin-right: 20px;
  331. text-overflow: ellipsis;
  332. overflow: hidden;
  333. line-height: 20px;
  334. } */
  335. /* new history */
  336. .BrowserHistoryTitle {
  337. padding: 5px 0;
  338. text-align: center;
  339. font-size: 16px;
  340. color: #676767;
  341. }
  342. .CampusInfoBrowserHistory {
  343. height: 600px;
  344. padding: 30px;
  345. color: #505050;
  346. font-size: 14px;
  347. overflow-y: auto;
  348. }
  349. .history_body span {
  350. padding-right: 20px;
  351. overflow: hidden;
  352. text-overflow: ellipsis;
  353. width: 180px;
  354. }
  355. .history_body p {
  356. width: 270px;
  357. height: 20px;
  358. padding-right: 20px;
  359. overflow: hidden;
  360. text-overflow: ellipsis;
  361. }
  362. .history_body {
  363. display: inline-flex;
  364. margin-bottom: 10px;
  365. overflow: hidden;
  366. text-overflow: ellipsis;
  367. }
  368. /* new history end */
  369. /* CampusInfo-AboutUs */
  370. .CampusInfo-AboutUs{
  371. min-width: 1180px;
  372. }
  373. .CampusInfo-AboutUs .CampusInfoBanner{
  374. position: relative;
  375. height: 600px;
  376. background-image: url(../img/index/banner.png);
  377. background-size: contain;
  378. background-position: 50% 50%;
  379. background-repeat: no-repeat;
  380. background-size: cover;
  381. z-index: 200;
  382. }
  383. .CampusInfo-AboutUs .CampusInfoContainer{
  384. max-width: 1180px;
  385. min-width: 1180px;
  386. height: inherit;
  387. margin: 0 auto;
  388. -webkit-font-smoothing: subpixel-antialiased;
  389. text-align: center;
  390. }
  391. .CampusInfo-AboutUs .CampusInfoContainer .fl{
  392. float: left;
  393. }
  394. .CampusInfo-AboutUs .CampusInfoContainer .fr {
  395. float: right;
  396. text-align: left;
  397. }
  398. .CampusInfo-AboutUs .CampusInfoBanner a {
  399. float: left;
  400. width: auto;
  401. padding: 20px 0;
  402. display: -webkit-inline-box;
  403. max-width: 200px;
  404. text-decoration: none;
  405. }
  406. .CampusInfo-AboutUs .CampusInfoBanner img{
  407. width: 25px;
  408. }
  409. .CampusInfo-AboutUs .CampusInfoBanner span{
  410. display: block;
  411. padding-left: 10px;
  412. line-height: 28px;
  413. font-size: 16px;
  414. color: #e0e0e0;
  415. }
  416. .CampusInfo-AboutUs .CampusInfoBannerItem {
  417. width: 730px;
  418. padding-top: 160px;
  419. margin: auto;
  420. }
  421. .CampusInfo-AboutUs .CampusInfoBannerItem h1{
  422. font-size: 64px;
  423. color: #fff;
  424. }
  425. .CampusInfo-AboutUs .CampusInfoBannerItem p {
  426. padding-top: 10px;
  427. font-size: 18px;
  428. color: #fff;
  429. }
  430. .CampusInfo-AboutUs .CampusInfoDownloadItem {
  431. display: flex;
  432. justify-content: center;
  433. align-items: center;
  434. padding: 10px 20px;
  435. }
  436. .CampusInfo-AboutUs .CampusInfoDownload {
  437. width: 730px;
  438. margin: 45px auto 0;
  439. }
  440. .CampusInfo-AboutUs .CampusInfoDownload li {
  441. display: inline-block;
  442. padding: 0 15px;
  443. width: 150px;
  444. text-align: center;
  445. }
  446. .CampusInfo-AboutUs .BtnDownload {
  447. display: flex;
  448. justify-content: center;
  449. align-items: center;
  450. width: 150px;
  451. height: 40px;
  452. background: #0077e6;
  453. border: transparent;
  454. border-radius: 5px;
  455. line-height: 12px;
  456. }
  457. .CampusInfo-AboutUs .CampusInfoIntroduce {
  458. position: relative;
  459. top: -130px;
  460. height: 520px;
  461. z-index: 999;
  462. }
  463. .CampusInfo-AboutUs .CampusInfoIntroduce img{
  464. text-align: left;
  465. }
  466. .CampusInfo-AboutUs .BtnDownload img{
  467. width: 18px;
  468. }
  469. .CampusInfo-AboutUs .BtnDownload span{
  470. display:inline-block;
  471. }
  472. .CampusInfo-AboutUs .CampusInfoIntroduce .CampusInfoTitle {
  473. padding: 235px 0 0;
  474. line-height: 3;
  475. }
  476. .CampusInfo-AboutUs .CampusInfoTitle {
  477. margin: 40px;
  478. line-height: 50px;
  479. line-height: 3;
  480. }
  481. .CampusInfo-AboutUs .CampusInfoTitle h3 {
  482. font-size: 36px;
  483. color: #333;
  484. }
  485. .CampusInfo-AboutUs .CampusInfoTitle p {
  486. width: 300px;
  487. margin: auto;
  488. font-size: 16px;
  489. color: rgb(105, 105, 105);
  490. line-height: 2;
  491. }
  492. .CampusInfo-AboutUs .CampusInfoKernel {
  493. height: 460px;
  494. padding: 20px 0;
  495. background: #f5f5f5;
  496. }
  497. .CampusInfo-AboutUs .CampusInfoKernel li {
  498. display: inline-block;
  499. padding: 0 60px;
  500. line-height: 30px;
  501. font-size: 16px;
  502. color: #979696;
  503. }
  504. .CampusInfo-AboutUs .CampusInfoTools {
  505. height: 500px;
  506. padding: 80px 0;
  507. }
  508. .CampusInfo-AboutUs .CampusInfoTools .CampusInfoTitle {
  509. padding-top: 100px;
  510. }
  511. .CampusInfo-AboutUs .CampusInfoSafety {
  512. height: 420px;
  513. padding: 75px 0;
  514. background: #f5f5f5;
  515. }
  516. .CampusInfo-AboutUs .CampusInfoSafety .CampusInfoTitle {
  517. padding-top: 60px;
  518. }
  519. .CampusInfo-AboutUs .CampusInfoFooter {
  520. height: 200px;
  521. background: #494949;
  522. }
  523. .CampusInfo-AboutUs .CampusInfoFooter li {
  524. display: inline-block;
  525. padding: 45px 15px;
  526. }
  527. .CampusInfo-AboutUs .CampusInfoContainer li span{
  528. color: #ccc;
  529. font-size: 14px;
  530. }
  531. .CampusInfo-AboutUs .CampusInfoFooter .line{
  532. width: 100%;
  533. height: 2px;
  534. background: rgba(255, 255, 255, 0.23);
  535. }
  536. .CampusInfo-AboutUs .author{
  537. padding-bottom: 30px;
  538. font-size: 14px;
  539. color: #ccc;
  540. }
  541. .CampusInfo-AboutUs .CampusInfoFooter .copyright{
  542. padding: 30px 0;
  543. text-align: center;
  544. font-size: 16px;
  545. color: #ccc;
  546. }
  547. /* 首页end */
  548. @font-face {
  549. font-family: 'fontello';
  550. src: url('../font/fontello.eot?70736739');
  551. src: url('../font/fontello.eot?70736739#iefix') format('embedded-opentype'),
  552. url('../font/fontello.woff?70736739') format('woff'),
  553. url('../font/fontello.ttf?70736739') format('truetype'),
  554. url('../font/fontello.svg?70736739#fontello') format('svg');
  555. font-weight: normal;
  556. font-style: normal;
  557. }
  558. [class^="icon-"], [class*=" icon-"]{
  559. display: inline-block;
  560. font: normal normal normal 14px/1 fontello,Microsoft YaHei;
  561. font-size: inherit;
  562. text-rendering: auto;
  563. -webkit-font-smoothing: antialiased;
  564. -moz-osx-font-smoothing: grayscale;
  565. }
  566. .icon-left:before {
  567. content: "\e800";
  568. }
  569. .icon-right:before {
  570. content: "\e801";
  571. }
  572. .icon-cancel:before {
  573. content: "\e802";
  574. }
  575. .icon-minus:before {
  576. content: "\e803";
  577. }
  578. .icon-menu:before {
  579. content: "\e804";
  580. }
  581. .icon-play-circled2:before {
  582. content: "\e805";
  583. }
  584. .icon-play:before {
  585. content: "\e806";
  586. }
  587. .icon-lock:before {
  588. content: "\e807";
  589. }
  590. .icon-plus:before {
  591. content: "\e808";
  592. }
  593. .icon-cog:before {
  594. content: "\e809";
  595. }
  596. .icon-th-list:before {
  597. content: "\f009";
  598. }
  599. .icon-ccw:before {
  600. content: "\f025";
  601. }
  602. .icon-play-circled:before {
  603. content: "\f144";
  604. }
  605. .icon-times:before {
  606. content: "\ebc4";
  607. }
  608. .icon-window-maximize:before {
  609. content: "\ec0f";
  610. }
  611. .icon-window-minimize:before {
  612. content: "\ec10";
  613. }
  614. .icon-window-restore:before {
  615. content: "\ec11";
  616. }