browser.css 14 KB

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