browser.css 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717
  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. body,html {
  16. height:100%;
  17. -webkit-text-size-adjust:100%;
  18. -ms-text-size-adjust:100%;
  19. }
  20. ul,li{
  21. margin: 0;
  22. padding: 0;
  23. list-style: none;
  24. }
  25. button:focus,button{
  26. outline: none;
  27. cursor: pointer;
  28. }
  29. a,a:hover,a:link,a:visited,button,button:focus,button:hover,i,i:hover,img,img:hover,input,input:focus,input:hover,select:focus,span,span:hover,textarea:focus {
  30. -webkit-transition:all .35s;
  31. -moz-transition:all .35s;
  32. -o-transition:all .35s;
  33. }
  34. a:hover,a:link,a:visited {
  35. text-decoration:none;
  36. }
  37. button:hover {
  38. opacity: .8;
  39. cursor:pointer;
  40. }
  41. [ripple],button{
  42. position: relative;
  43. transform: translate3d(0,0,0);
  44. overflow: hidden;
  45. }
  46. [ripple]:after,button:after {
  47. content: "";
  48. display: block;
  49. position: absolute;
  50. width: 100%;
  51. height: 100%;
  52. top: 0;
  53. left: 0;
  54. pointer-events: none;
  55. background-image: radial-gradient(circle, #666 10%, transparent 10.01%);
  56. background-repeat: no-repeat;
  57. background-position: 50%;
  58. transform: scale(10, 10);
  59. opacity: 0;
  60. transition: transform .3s, opacity .5s;
  61. }
  62. [ripple]:active:after,button:active:after {
  63. transform: scale(0, 0);
  64. opacity: .3;
  65. transition: 0s;
  66. }
  67. .clearfix{
  68. zoom:1;
  69. }
  70. /*通用头部样式*/
  71. .bowerTop{
  72. width: 100%;
  73. height: 1px;
  74. }
  75. .bowerHeader {
  76. position: relative;
  77. height: 20px;
  78. }
  79. .browerHeaderControl{
  80. position: absolute;
  81. right: 0px;
  82. }
  83. .browerHeaderControl button {
  84. width: 50px;
  85. height: 25px;
  86. border: transparent;
  87. background: #fff;
  88. font-size: 13px;
  89. }
  90. .browerHeaderControl button:hover{
  91. background: #eee;
  92. }
  93. .browerHeaderControl .close:hover{
  94. background: #E83C3C!important;
  95. color: #fff!important;
  96. }
  97. .browerHeaderControl .icon-cancel:hover{
  98. background: #e66350 !important;
  99. color: #fff;
  100. }
  101. .browerHeaderControl .icon-minus{
  102. color: #333;
  103. }
  104. /*浏览器搜索杨思*/
  105. .BrowerHead {
  106. width: 100%;
  107. height: 26px;
  108. display: inline-flex;
  109. padding: 4px 0;
  110. background: #f5f5f5;
  111. border-top: 1px solid #ccc;
  112. border-bottom: 1px solid #ccc;
  113. }
  114. .BrowerHead button{
  115. float: left;
  116. overflow: hidden;
  117. margin: 0 5px;
  118. background: none;
  119. width: 26px;
  120. border: none;
  121. font-size: 16px;
  122. }
  123. .BrowerHead button:hover{
  124. background: #dcdcdc;
  125. border-radius: 3px;
  126. }
  127. .BrowerUrlArea {
  128. width: calc(100% - 150px) !important;
  129. padding: 2px 5px !important;
  130. text-align: left !important;
  131. border: 1px solid #dcdcdc;
  132. background: #fff;
  133. border-radius: 3px;
  134. }
  135. .BrowerUrlArea *{
  136. float: left;
  137. }
  138. .BrowerUrlArea span{
  139. float: left;
  140. width: 20px;
  141. text-align: center;
  142. line-height: 22px;
  143. font-size: 14px;
  144. }
  145. .BrowerUrlArea input {
  146. float: left;
  147. width: calc(100% - 21px) !important;
  148. height: 20px;
  149. border: 0 solid #d2d2d2;
  150. outline: none;
  151. text-indent: 10px;
  152. border-left: 1px solid #d2d2d2;
  153. display: block;
  154. background: none;
  155. }
  156. .BrowerHead .icon-ellipsis-vert{
  157. color: #8c8c8c;
  158. font-weight: lighter;
  159. font-size: 18px;
  160. padding-top: 2px;
  161. }
  162. .bowerHeaderSeach .bowerMenu {
  163. float: right;
  164. }
  165. .bowerHeaderSeach .bowerMenu:hover{
  166. background: #ddd;
  167. }
  168. .bowerHeaderSeach .icon-menu{
  169. font-size: 21px;
  170. color: #5a5a5a;
  171. }
  172. /*选项卡样式*/
  173. .bowerCreaterWindow li {
  174. position: relative;
  175. max-width: 180px !important;
  176. width: 150px;
  177. min-width: 10px !important;
  178. top: 1px;
  179. height: 30px;
  180. display: initial;
  181. margin-right: 10px;
  182. text-align: center;
  183. color: #000;
  184. line-height: 43px;
  185. background-color: #e2e2e2;
  186. border-top: 1px solid #a2a2a2;
  187. z-index: 1;
  188. -webkit-app-region: no-drag;
  189. -webkit-transition: all .3s cubic-bezier(0.3,.1,.58,1);
  190. -moz-transition: all .3s cubic-bezier(0.3,.1,.58,1);
  191. transition: all .3s cubic-bezier(0.3,.1,.58,1);
  192. -moz-user-select:none;
  193. -webkit-user-select:none;
  194. -ms-user-select:none;
  195. -khtml-user-select:none;
  196. user-select:none;
  197. }
  198. .BrowerActive{
  199. background-color: #f2f2f2 !important;
  200. border-top-color:#a9a9a9 !important;
  201. z-index: 999 !important;
  202. }
  203. .Listindex{
  204. z-index: 999 !important;
  205. }
  206. .BrowerActive{
  207. border-top: 1px solid #ccc!important;
  208. }
  209. .BrowerActive:before {
  210. border-top: 1px solid #ccc!important;
  211. background-color:#f2f2f2 !important;
  212. border-right-color:#ccc !important;
  213. }
  214. .BrowerActive:after {
  215. border-top: 1px solid #ccc!important;
  216. background-color:#f2f2f2 !important;
  217. border-left-color:#ccc !important;
  218. }
  219. .bowerCreaterWindow li:before,.bowerCreaterWindow li:after{
  220. content: '';
  221. position: absolute;
  222. display: block;
  223. width: 10px;
  224. height: 29px;
  225. top: -1px;
  226. background-color: #e2e2e2;
  227. border-top: 1px solid #a2a2a2;
  228. -webkit-transition: all .3s cubic-bezier(0.3,.1,.58,1);
  229. -moz-transition: all .3s cubic-bezier(0.3,.1,.58,1);
  230. transition: all .3s cubic-bezier(0.3,.1,.58,1);
  231. }
  232. .bowerCreaterWindow li:before {
  233. right: -6px;
  234. border-right: 1px solid #a2a2a2;
  235. transform: skewX(20deg);
  236. }
  237. .bowerCreaterWindow li:after {
  238. left: -6px;
  239. transform: skewX(-20deg);
  240. border-left: 1px solid #a2a2a2;
  241. }
  242. .bowerCreaterWindow {
  243. float: left;
  244. width: calc(100% - 195px);
  245. height: 29px;
  246. display: inline-flex;
  247. overflow: unset;
  248. margin-left: 20px;
  249. -webkit-transition: all .3s cubic-bezier(0.3,.1,.58,1);
  250. -moz-transition: all .3s cubic-bezier(0.3,.1,.58,1);
  251. transition: all .3s cubic-bezier(0.3,.1,.58,1);
  252. }
  253. .BrowerListBody {
  254. display: inline-block;
  255. position: relative;
  256. width: calc(100% - 3px);
  257. height: 32px;
  258. z-index: 2;
  259. top: -2px;
  260. }
  261. .BrowerList img {
  262. float: left;
  263. width: 16px;
  264. height: 16px;
  265. margin-top: 8px;
  266. }
  267. .BrowerList p {
  268. float: left;
  269. min-width: 0;
  270. max-width: 80%;
  271. width: calc(100% - 40px);
  272. margin: 0 3px;
  273. overflow: hidden;
  274. text-overflow: ellipsis;
  275. white-space: nowrap;
  276. line-height: 34px;
  277. text-align: left;
  278. font-size: 12px;
  279. margin-top: -1px;
  280. }
  281. .BrowerList i {
  282. float: right;
  283. width: 8px;
  284. height: 8px;
  285. padding: 4px;
  286. border-radius: 50%;
  287. font-size: 11px;
  288. text-align: center;
  289. line-height: 9px;
  290. margin-top: 8px;
  291. color: #888888;
  292. }
  293. .BrowerList i:hover{
  294. background: #ba4848;
  295. color: #fff;
  296. }
  297. button.BrowwerAdd {
  298. width: 32px !important;
  299. height: 18px;
  300. padding: 7px;
  301. margin: 6px 0 0 0;
  302. -webkit-transform: skew(20deg);
  303. -moz-transform: skew(20deg);
  304. -o-transform: skew(20deg);
  305. background: white;
  306. border: 1px solid #ccc;
  307. border-radius: 3px;
  308. -webkit-app-region: no-drag;
  309. }
  310. /*浏览器显示网页部分样式*/
  311. .BrowerContainer {
  312. height: calc(100% - 80px);
  313. position: absolute;
  314. width: 100%;
  315. left: 0;
  316. top: 81px;
  317. }
  318. .BrowerContainer webview, webview object{
  319. height: 100% !important;
  320. width: 100% !important;
  321. }
  322. /*右键菜单样式*/
  323. .MouseMenuMain{
  324. position:absolute;
  325. z-index:22;
  326. display:none;
  327. width:auto;
  328. height:auto;
  329. min-width:90pt;
  330. background:#fff;
  331. 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);
  332. -moz-user-select:none;
  333. -webkit-user-select:none;
  334. -ms-user-select:none;
  335. -khtml-user-select:none;
  336. user-select:none;
  337. }
  338. .MouseMenuMain li{
  339. width: auto;
  340. max-width: 400px;
  341. font-size: 13px;
  342. padding: 6px 18px;
  343. color: #333;
  344. text-align: left;
  345. white-space: nowrap;
  346. margin-bottom: 2px;
  347. }
  348. .MouseMenuMain li span{
  349. float: right;
  350. margin-left: 40px;
  351. color: #bfbfbf;
  352. }
  353. .MouseMenuMain li:hover{
  354. background-color:#eee;
  355. color:#000;
  356. cursor:pointer;
  357. }
  358. .MouseMenuMainStep{
  359. width: 100%;
  360. padding: 0 !important;
  361. height: 1px;
  362. background: #e8e8e8;
  363. margin: 5px 0;
  364. }
  365. /*查找菜单样式*/
  366. .BrowerFind{
  367. width: 320px;
  368. height: 35px;
  369. background: #fff;
  370. box-shadow: 0 1px 2px rgba(0,0,0,.4), 0 0 1px rgba(0,0,0,.2);
  371. position: absolute;
  372. right: 20px;
  373. top: 80px;
  374. padding: 5px;
  375. z-index: 10;
  376. -webkit-animation-duration:.35s;animation-duration:.35s;-webkit-animation-fill-mode:both;animation-fill-mode:both;
  377. -webkit-animation-name:fadeIn;animation-name:fadeIn;
  378. display: none;
  379. overflow: hidden;
  380. -moz-user-select:none;
  381. -webkit-user-select:none;
  382. -ms-user-select:none;
  383. -khtml-user-select:none;
  384. user-select:none;
  385. }
  386. .BrowerFind *{
  387. float: left;
  388. }
  389. .BrowerFind input{
  390. width: 150px;
  391. height: 35px;
  392. border: none;
  393. font-size: 14px;
  394. padding: 0 2px;
  395. }
  396. .BrowerFind input:focus{
  397. outline: none;
  398. }
  399. .BrowerFind span{
  400. width: 50px;
  401. font-size: 12px;
  402. line-height: 35px;
  403. color: #888888;
  404. background: #fff;
  405. text-align: center;
  406. border-right: 1px solid #eee;
  407. }
  408. .BrowerFind button{
  409. background: none;
  410. border: none;
  411. width: 32px;
  412. margin: 0 3px;
  413. height: 35px;
  414. color: #888888;
  415. font-weight: bold;
  416. font-size: 18px;
  417. }
  418. .BrowerFind .icon-times{
  419. font-size: 14px;
  420. }
  421. /* 历史记录样式 */
  422. .HistoryMain{
  423. width: 100%;
  424. height: 100%;
  425. }
  426. .HistoryMain *{
  427. box-sizing: border-box;
  428. }
  429. .HistoryHead{
  430. width: 100%;
  431. height: 55px;
  432. background: #0b7aeb;
  433. -moz-user-select:none;
  434. -webkit-user-select:none;
  435. -ms-user-select:none;
  436. -khtml-user-select:none;
  437. user-select:none;
  438. }
  439. .HistoryHead p{
  440. font-size: 18px;
  441. color: #fff;
  442. line-height: 55px;
  443. padding-left: 15px;
  444. }
  445. .HistoryContainer {
  446. padding: 0px 100px 20px;
  447. overflow-y: auto;
  448. height: 545px;
  449. background: #eee;
  450. }
  451. .HistoryCard{
  452. width: 100%;
  453. background: #fff;
  454. 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);
  455. margin-bottom: 20px;
  456. }
  457. .HistoryCardContainer{
  458. width: 100%;
  459. }
  460. .HistoryCardContainer li{
  461. width: 100%;
  462. height: 35px;
  463. line-height: 25px;
  464. margin-bottom: 2px;
  465. padding: 5px;
  466. }
  467. .HistoryCardContainer li:hover{
  468. background: #eee;
  469. cursor: pointer;
  470. }
  471. .HistoryCardContainer li *{
  472. float: left;
  473. }
  474. .HistoryCardContainer li span{
  475. width: 100px;
  476. font-size: 12px;
  477. color: #7f7e7e;
  478. -moz-user-select:none;
  479. -webkit-user-select:none;
  480. -ms-user-select:none;
  481. -khtml-user-select:none;
  482. user-select:none;
  483. }
  484. .HistoryCardContainer li div{
  485. width: calc(100% - 100px);
  486. height: 100%;
  487. font-size: 13px;
  488. }
  489. .HistoryCardContainer li img{
  490. width: 15px;
  491. margin: 5px;
  492. }
  493. .HistoryCardContainer li p{
  494. height: 25px;
  495. width: calc(100% - 30px);
  496. overflow: hidden;
  497. text-overflow: ellipsis;
  498. white-space: nowrap;
  499. }
  500. .HistoryCardHead{
  501. width: 100%;
  502. font-weight: bold;
  503. font-size: 18px;
  504. padding: 5px;
  505. border-bottom: 1px solid #eee;
  506. line-height: 40px;
  507. -moz-user-select:none;
  508. -webkit-user-select:none;
  509. -ms-user-select:none;
  510. -khtml-user-select:none;
  511. user-select:none;
  512. }
  513. .history_body span {
  514. padding-right: 20px;
  515. overflow: hidden;
  516. text-overflow: ellipsis;
  517. width: 180px;
  518. }
  519. .history_body p {
  520. width: 270px;
  521. height: 20px;
  522. padding-right: 20px;
  523. overflow: hidden;
  524. text-overflow: ellipsis;
  525. }
  526. .history_body {
  527. display: inline-flex;
  528. margin-bottom: 10px;
  529. overflow: hidden;
  530. text-overflow: ellipsis;
  531. }
  532. /* 反馈样式 */
  533. .FeedBackMain *{
  534. box-sizing: border-box;
  535. }
  536. .FeedBackMain{
  537. width: 100%;
  538. height: 100%;
  539. -moz-user-select:none;
  540. -webkit-user-select:none;
  541. -ms-user-select:none;
  542. -khtml-user-select:none;
  543. user-select:none;
  544. }
  545. .FeedBackHead{
  546. width: 100%;
  547. height: 55px;
  548. border-bottom: 2px solid #38f;
  549. }
  550. .FeedBackHead img{
  551. float: left;
  552. width: 30px;
  553. margin: 11px;
  554. }
  555. .FeedBackHead p{
  556. line-height: 55px;
  557. font-size: 16px;
  558. }
  559. .FeedBackContainer{
  560. width: 100%;
  561. padding: 10px;
  562. }
  563. .FeedBackContainer input,.FeedBackContainer textarea{
  564. width: 100%;
  565. border: 1px solid #eee;
  566. height: 35px;
  567. border-radius: 3px;
  568. margin-bottom: 10px;
  569. padding: 4px;
  570. resize: none;
  571. }
  572. .FeedBackContainer textarea{
  573. height: 150px!important;
  574. }
  575. .FeedBackContainer input:focus,.FeedBackContainer textarea:focus{
  576. outline: none;
  577. border: 1px solid #38f;
  578. }
  579. .FeedBackContainer span{
  580. float: left;
  581. color: #e85151;
  582. font-size: 14px;
  583. margin-top: 10px;
  584. text-indent: 10px;
  585. }
  586. .FeedBackContainer button{
  587. float: right;
  588. padding: 0 10px;
  589. height: 35px;
  590. background: #38f;
  591. color: #fff;
  592. border: 1px solid #eee;
  593. border-radius: 3px;
  594. overflow: hidden;
  595. }
  596. /*加载提示*/
  597. .BrowerTips{
  598. left: 0px;
  599. bottom: 0px;
  600. float: left;
  601. position: absolute;
  602. max-width: 30%;
  603. height: 30px;
  604. line-height: 30px;
  605. z-index: 2;
  606. font-size: 12px;
  607. box-shadow: 0 1px 2px rgba(0,0,0,.4), 0 0 1px rgba(0,0,0,.2);
  608. word-wrap: normal;
  609. background: #fff;
  610. text-overflow: ellipsis;
  611. word-spacing: normal;
  612. word-break: break-all;
  613. -webkit-transition: all .35s;
  614. -moz-transition: all .35s;
  615. -o-transition: all .35s;
  616. -moz-user-select:none;
  617. -webkit-user-select:none;
  618. -ms-user-select:none;
  619. -khtml-user-select:none;
  620. user-select:none;
  621. }
  622. /*关于我们*/
  623. .FeedBackContainer p{
  624. padding: 10px;
  625. font-size: 14px;
  626. font-weight: bold;
  627. }
  628. .FeedBackContainer p span{
  629. float: unset;
  630. }
  631. /* 首页end */
  632. .animated{-webkit-animation-duration:.35s;animation-duration:.35s;-webkit-animation-fill-mode:both;animation-fill-mode:both}
  633. .animated.infinite{-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite}
  634. @-webkit-keyframes fadeIn{from{opacity:0}
  635. to{opacity:1}
  636. }
  637. @keyframes fadeIn{from{opacity:0}
  638. to{opacity:1}
  639. }
  640. .fadeIn{-webkit-animation-name:fadeIn;animation-name:fadeIn}
  641. @font-face {
  642. font-family: 'fontello';
  643. src: url('../font/fontello.eot?70736739');
  644. src: url('../font/fontello.eot?70736739#iefix') format('embedded-opentype'),
  645. url('../font/fontello.woff?70736739') format('woff'),
  646. url('../font/fontello.ttf?70736739') format('truetype'),
  647. url('../font/fontello.svg?70736739#fontello') format('svg');
  648. font-weight: normal;
  649. font-style: normal;
  650. }
  651. [class^="icon-"], [class*=" icon-"]{
  652. display: inline-block;
  653. font: normal normal normal 14px/1 fontello,Microsoft YaHei;
  654. font-size: inherit;
  655. text-rendering: auto;
  656. -webkit-font-smoothing: antialiased;
  657. -moz-osx-font-smoothing: grayscale;
  658. }
  659. .icon-left:before { content: '\e800'; } /* '' */
  660. .icon-right:before { content: '\e801'; } /* '' */
  661. .icon-cancel:before { content: '\e802'; } /* '' */
  662. .icon-minus:before { content: '\e803'; } /* '' */
  663. .icon-menu:before { content: '\e804'; } /* '' */
  664. .icon-play-circled2:before { content: '\e805'; } /* '' */
  665. .icon-play:before { content: '\e806'; } /* '' */
  666. .icon-lock:before { content: '\e807'; } /* '' */
  667. .icon-plus:before { content: '\e808'; } /* '' */
  668. .icon-cog:before { content: '\e809'; } /* '' */
  669. .icon-cw:before { content: '\e80a'; } /* '' */
  670. .icon-times:before { content: '\ebc4'; } /* '' */
  671. .icon-window-maximize:before { content: '\ec0f'; } /* '' */
  672. .icon-window-minimize:before { content: '\ec10'; } /* '' */
  673. .icon-window-restore:before { content: '\ec11'; } /* '' */
  674. .icon-angle-up:before { content: '\f106'; } /* '' */
  675. .icon-angle-down:before { content: '\f107'; } /* '' */
  676. .icon-ellipsis-vert:before { content: '\f142'; } /* '' */
  677. /*滚动条*/
  678. *::-webkit-scrollbar{
  679. width:7px;
  680. height:7px;
  681. background:none;
  682. }
  683. *::-webkit-scrollbar-button{
  684. display:none;
  685. }
  686. *::-webkit-scrollbar-track{
  687. background:none;
  688. }
  689. *::-webkit-scrollbar-track-piece {
  690. display:none;
  691. }
  692. *::-webkit-scrollbar-thumb{
  693. background : rgba(0,0,0,0.3);
  694. position : absolute;
  695. width : 3px;
  696. right : 0;
  697. top : 0;
  698. bottom : 0;
  699. visibility : hidden\9; /* Target only IE7 and IE8 with this hack */
  700. opacity : .01;
  701. -webkit-transition : .2s;
  702. -moz-transition : .2s;
  703. -o-transition : .2s;
  704. transition : .2s;
  705. -moz-border-radius : 3px;
  706. -webkit-border-radius : 3px;
  707. border-radius : 3px;
  708. }
  709. *::-webkit-scrollbar-thumb:active,*::-webkit-scrollbar-thumb:hover{
  710. background : rgba(0,0,0,.50);
  711. }
  712. *::-webkit-scrollbar-corner {
  713. display:none;
  714. }
  715. *::-webkit-scrollbar-resizer {
  716. display:none;
  717. }