browser.css 12 KB

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