browser.css 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290
  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,
  16. html {
  17. height: 100%;
  18. -webkit-text-size-adjust: 100%;
  19. -ms-text-size-adjust: 100%;
  20. }
  21. ul,
  22. li {
  23. margin: 0;
  24. padding: 0;
  25. list-style: none;
  26. }
  27. button:focus,
  28. button {
  29. outline: none;
  30. cursor: pointer;
  31. }
  32. a,
  33. a:hover,
  34. a:link,
  35. a:visited,
  36. button,
  37. button:focus,
  38. button:hover,
  39. i,
  40. i:hover,
  41. img,
  42. img:hover,
  43. input,
  44. input:focus,
  45. input:hover,
  46. select:focus,
  47. span,
  48. span:hover,
  49. textarea:focus {
  50. -webkit-transition: all .35s;
  51. -moz-transition: all .35s;
  52. -o-transition: all .35s;
  53. }
  54. a:hover,
  55. a:link,
  56. a:visited {
  57. text-decoration: none;
  58. }
  59. button:hover {
  60. opacity: .8;
  61. cursor: pointer;
  62. }
  63. [ripple],
  64. button {
  65. position: relative;
  66. transform: translate3d(0, 0, 0);
  67. overflow: hidden;
  68. }
  69. [ripple]:after,
  70. button:after {
  71. content: "";
  72. display: block;
  73. position: absolute;
  74. width: 100%;
  75. height: 100%;
  76. top: 0;
  77. left: 0;
  78. pointer-events: none;
  79. background-image: radial-gradient(circle, #666 10%, transparent 10.01%);
  80. background-repeat: no-repeat;
  81. background-position: 50%;
  82. transform: scale(10, 10);
  83. opacity: 0;
  84. transition: transform .3s, opacity .5s;
  85. }
  86. [ripple]:active:after,
  87. button:active:after {
  88. transform: scale(0, 0);
  89. opacity: .3;
  90. transition: 0s;
  91. }
  92. .clearfix {
  93. zoom: 1;
  94. }
  95. /*通用头部样式*/
  96. .bowerTop {
  97. width: 100%;
  98. height: 1px;
  99. }
  100. .bowerHeader {
  101. position: relative;
  102. height: 20px;
  103. }
  104. .browerHeaderControl {
  105. position: absolute;
  106. right: 0px;
  107. }
  108. .browerHeaderControl button {
  109. width: 50px;
  110. height: 25px;
  111. border: transparent;
  112. background: #fff;
  113. font-size: 13px;
  114. }
  115. .browerHeaderControl button:hover {
  116. background: #eee;
  117. }
  118. .browerHeaderControl .close:hover {
  119. background: #E83C3C!important;
  120. color: #fff!important;
  121. }
  122. .browerHeaderControl .icon-cancel:hover {
  123. background: #e66350 !important;
  124. color: #fff;
  125. }
  126. .browerHeaderControl .icon-minus {
  127. color: #333;
  128. }
  129. /*浏览器搜索样式*/
  130. .BrowerHead {
  131. width: 100%;
  132. height: 26px;
  133. display: inline-flex;
  134. padding: 4px 0;
  135. background: #f5f5f5;
  136. border-top: 1px solid #ccc;
  137. border-bottom: 1px solid #ccc;
  138. }
  139. .Favorites {
  140. width: 100%;
  141. height: 26px;
  142. display: inline-flex;
  143. padding: 4px 0;
  144. background: #ffffff;
  145. /* border-top: 1px solid #ccc; */
  146. border-bottom: 1px solid #ccc;
  147. }
  148. .Favorites>ul>li {
  149. height: 25px;
  150. margin: 0 3px;
  151. border-radius: 5px;
  152. padding: 0 5px;
  153. background: -webkit-linear-gradient(left, white, #f1f1ff);
  154. -webkit-transition: all .3s;
  155. -moz-transition: all .3s;
  156. -ms-transition: all .3s;
  157. -o-transition: all .3s;
  158. transition: all .3s;
  159. cursor: pointer;
  160. float: left;
  161. -moz-user-select: none;
  162. -webkit-user-select: none;
  163. -ms-user-select: none;
  164. -khtml-user-select: none;
  165. user-select: none;
  166. }
  167. .Favorites>ul>li:hover {
  168. background: #f1f1f1;
  169. }
  170. .Favorites>ul>li img {
  171. width: 20px;
  172. float: left;
  173. line-height: 25px;
  174. margin: 3px 3px;
  175. }
  176. .Favorites>ul>li p {
  177. width: auto;
  178. max-width: 81px;
  179. float: left;
  180. font-size: 12px;
  181. line-height: 25px;
  182. margin: 0 3px;
  183. overflow: hidden;
  184. }
  185. .BrowerHead button {
  186. float: left;
  187. overflow: hidden;
  188. margin: 0 5px;
  189. background: none;
  190. width: 26px;
  191. border: none;
  192. font-size: 16px;
  193. }
  194. .BrowerHead button:hover {
  195. background: #dcdcdc;
  196. border-radius: 3px;
  197. }
  198. .BrowerUrlArea {
  199. width: calc(100% - 150px) !important;
  200. padding: 2px 5px !important;
  201. text-align: left !important;
  202. border: 1px solid #dcdcdc;
  203. background: #fff;
  204. border-radius: 3px;
  205. }
  206. .BrowerUrlArea>i {
  207. margin: 2px;
  208. }
  209. .BrowerUrlArea * {
  210. float: left;
  211. }
  212. .BrowerUrlArea span {
  213. float: left;
  214. width: 20px;
  215. text-align: center;
  216. line-height: 22px;
  217. font-size: 14px;
  218. }
  219. .BrowerUrlArea input {
  220. float: left;
  221. width: calc(100% - 42px) !important;
  222. height: 20px;
  223. border: 0 solid #d2d2d2;
  224. outline: none;
  225. text-indent: 10px;
  226. border-left: 1px solid #d2d2d2;
  227. display: block;
  228. background: none;
  229. }
  230. .BrowerHead .icon-ellipsis-vert {
  231. color: #8c8c8c;
  232. font-weight: lighter;
  233. font-size: 18px;
  234. padding-top: 2px;
  235. }
  236. .FavoritesMore {
  237. position: absolute;
  238. right: 5px;
  239. padding: 2px;
  240. cursor: pointer;
  241. color: #CCCCCC;
  242. }
  243. #FavoritesUl {
  244. overflow: hidden;
  245. z-index: 99999999;
  246. }
  247. /* 标签页右键菜单样式 */
  248. #US_TagSet {
  249. z-index: 999;
  250. }
  251. .icon-ellipsis-verter {
  252. color: #8c8c8c;
  253. font-weight: lighter;
  254. font-size: 18px;
  255. padding-top: 2px;
  256. }
  257. .bowerHeaderSeach .bowerMenu {
  258. float: right;
  259. }
  260. .bowerHeaderSeach .bowerMenu:hover {
  261. background: #ddd;
  262. }
  263. .bowerHeaderSeach .icon-menu {
  264. font-size: 21px;
  265. color: #5a5a5a;
  266. }
  267. /*选项卡样式*/
  268. .bowerCreaterWindow li {
  269. position: relative;
  270. max-width: 180px !important;
  271. width: 150px;
  272. min-width: 10px !important;
  273. top: 1px;
  274. height: 30px;
  275. display: initial;
  276. margin-right: 10px;
  277. text-align: center;
  278. color: #000;
  279. line-height: 43px;
  280. background-color: #e2e2e2;
  281. border-top: 1px solid #a2a2a2;
  282. z-index: 1;
  283. -webkit-app-region: no-drag;
  284. -webkit-transition: all .3s cubic-bezier(0.3, .1, .58, 1);
  285. -moz-transition: all .3s cubic-bezier(0.3, .1, .58, 1);
  286. transition: all .3s cubic-bezier(0.3, .1, .58, 1);
  287. -moz-user-select: none;
  288. -webkit-user-select: none;
  289. -ms-user-select: none;
  290. -khtml-user-select: none;
  291. user-select: none;
  292. }
  293. .BrowerActive {
  294. background-color: #f2f2f2 !important;
  295. border-top-color: #a9a9a9 !important;
  296. z-index: 999 !important;
  297. }
  298. .Listindex {
  299. z-index: 999 !important;
  300. }
  301. .BrowerActive {
  302. border-top: 1px solid #ccc!important;
  303. }
  304. .BrowerActive:before {
  305. border-top: 1px solid #ccc!important;
  306. background-color: #f2f2f2 !important;
  307. border-right-color: #ccc !important;
  308. }
  309. .BrowerActive:after {
  310. border-top: 1px solid #ccc!important;
  311. background-color: #f2f2f2 !important;
  312. border-left-color: #ccc !important;
  313. }
  314. .bowerCreaterWindow li:before,
  315. .bowerCreaterWindow li:after {
  316. content: '';
  317. position: absolute;
  318. display: block;
  319. width: 10px;
  320. height: 29px;
  321. top: -1px;
  322. background-color: #e2e2e2;
  323. border-top: 1px solid #a2a2a2;
  324. -webkit-transition: all .3s cubic-bezier(0.3, .1, .58, 1);
  325. -moz-transition: all .3s cubic-bezier(0.3, .1, .58, 1);
  326. transition: all .3s cubic-bezier(0.3, .1, .58, 1);
  327. }
  328. .bowerCreaterWindow li:before {
  329. right: -6px;
  330. border-right: 1px solid #a2a2a2;
  331. transform: skewX(20deg);
  332. }
  333. .bowerCreaterWindow li:after {
  334. left: -6px;
  335. transform: skewX(-20deg);
  336. border-left: 1px solid #a2a2a2;
  337. }
  338. .bowerCreaterWindow {
  339. float: left;
  340. width: calc(100% - 195px);
  341. height: 29px;
  342. display: inline-flex;
  343. overflow: unset;
  344. margin-left: 20px;
  345. -webkit-transition: all .3s cubic-bezier(0.3, .1, .58, 1);
  346. -moz-transition: all .3s cubic-bezier(0.3, .1, .58, 1);
  347. transition: all .3s cubic-bezier(0.3, .1, .58, 1);
  348. }
  349. .BrowerListBody {
  350. display: inline-block;
  351. position: relative;
  352. width: calc(100% - 3px);
  353. height: 32px;
  354. z-index: 2;
  355. top: -2px;
  356. }
  357. .BrowerList img {
  358. float: left;
  359. width: 16px;
  360. height: 16px;
  361. margin-top: 8px;
  362. }
  363. .BrowerList p {
  364. float: left;
  365. min-width: 0;
  366. max-width: 80%;
  367. width: calc(100% - 40px);
  368. margin: 0 3px;
  369. overflow: hidden;
  370. text-overflow: ellipsis;
  371. white-space: nowrap;
  372. line-height: 34px;
  373. text-align: left;
  374. font-size: 12px;
  375. margin-top: -1px;
  376. }
  377. .BrowerList i {
  378. float: right;
  379. width: 8px;
  380. height: 8px;
  381. padding: 4px;
  382. border-radius: 50%;
  383. font-size: 11px;
  384. text-align: center;
  385. line-height: 9px;
  386. margin-top: 8px;
  387. color: #888888;
  388. }
  389. .BrowerList i:hover {
  390. background: #ba4848;
  391. color: #fff;
  392. }
  393. button.BrowwerAdd {
  394. width: 32px !important;
  395. height: 18px;
  396. padding: 7px;
  397. margin: 6px 0 0 0;
  398. -webkit-transform: skew(20deg);
  399. -moz-transform: skew(20deg);
  400. -o-transform: skew(20deg);
  401. background: white;
  402. border: 1px solid #ccc;
  403. border-radius: 3px;
  404. -webkit-app-region: no-drag;
  405. }
  406. /*浏览器显示网页部分样式*/
  407. .BrowerContainer {
  408. height: calc(100% - 115px);
  409. position: absolute;
  410. width: 100%;
  411. left: 0;
  412. top: 116px;
  413. }
  414. .BrowerContainer webview,
  415. webview object {
  416. height: 100% !important;
  417. width: 100% !important;
  418. }
  419. /*右键菜单样式*/
  420. .MouseMenuMain {
  421. position: absolute;
  422. z-index: 22;
  423. display: none;
  424. width: auto;
  425. height: auto;
  426. min-width: 90pt;
  427. background: #fff;
  428. 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);
  429. -moz-user-select: none;
  430. -webkit-user-select: none;
  431. -ms-user-select: none;
  432. -khtml-user-select: none;
  433. user-select: none;
  434. }
  435. .MouseMenuMain li {
  436. width: auto;
  437. max-width: 400px;
  438. font-size: 13px;
  439. padding: 6px 18px;
  440. color: #333;
  441. text-align: left;
  442. white-space: nowrap;
  443. margin-bottom: 2px;
  444. }
  445. .MouseMenuMain li span {
  446. float: right;
  447. margin-left: 40px;
  448. color: #bfbfbf;
  449. }
  450. .MouseMenuMain li:hover {
  451. background-color: #eee;
  452. color: #000;
  453. cursor: pointer;
  454. }
  455. .US_BookmarkSet {
  456. position: absolute;
  457. z-index: 22;
  458. width: auto;
  459. height: auto;
  460. display: none;
  461. min-width: 90pt;
  462. background: #fff;
  463. 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);
  464. -moz-user-select: none;
  465. -webkit-user-select: none;
  466. -ms-user-select: none;
  467. -khtml-user-select: none;
  468. user-select: none;
  469. }
  470. .US_BookmarkSet li {
  471. width: auto;
  472. max-width: 400px;
  473. font-size: 13px;
  474. padding: 6px 18px;
  475. color: #333;
  476. text-align: left;
  477. white-space: nowrap;
  478. margin-bottom: 2px;
  479. }
  480. .US_BookmarkSet li:hover {
  481. background-color: #eee;
  482. color: #000;
  483. cursor: pointer;
  484. }
  485. .MouseMenuMainer {
  486. position: absolute;
  487. z-index: 22;
  488. width: auto;
  489. height: auto;
  490. min-width: 90pt;
  491. background: #fff;
  492. 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);
  493. -moz-user-select: none;
  494. -webkit-user-select: none;
  495. -ms-user-select: none;
  496. -khtml-user-select: none;
  497. user-select: none;
  498. }
  499. .MouseMenuMainer {
  500. width: 300px;
  501. }
  502. .MouseMenuMainer li {
  503. width: auto;
  504. max-width: 400px;
  505. font-size: 13px;
  506. padding: 6px 18px;
  507. color: #333;
  508. text-align: left;
  509. white-space: nowrap;
  510. margin-bottom: 2px;
  511. }
  512. .MouseMenuMainer li img {
  513. width: 20px;
  514. float: left;
  515. line-height: 25px;
  516. margin: 3px 3px;
  517. }
  518. .MouseMenuMainer li p {
  519. font-size: 12px;
  520. line-height: 25px;
  521. margin: 0 3px;
  522. }
  523. .MouseMenuMainer li:hover {
  524. background-color: #eee;
  525. color: #000;
  526. cursor: pointer;
  527. }
  528. .MouseMenuMainStep {
  529. width: 100%;
  530. padding: 0 !important;
  531. height: 1px;
  532. background: #e8e8e8;
  533. margin: 5px 0;
  534. }
  535. /*查找菜单样式*/
  536. .BrowerFind {
  537. width: 320px;
  538. height: 35px;
  539. background: #fff;
  540. box-shadow: 0 1px 2px rgba(0, 0, 0, .4), 0 0 1px rgba(0, 0, 0, .2);
  541. position: absolute;
  542. right: 20px;
  543. top: 80px;
  544. padding: 5px;
  545. z-index: 10;
  546. -webkit-animation-duration: .35s;
  547. animation-duration: .35s;
  548. -webkit-animation-fill-mode: both;
  549. animation-fill-mode: both;
  550. -webkit-animation-name: fadeIn;
  551. animation-name: fadeIn;
  552. display: none;
  553. overflow: hidden;
  554. -moz-user-select: none;
  555. -webkit-user-select: none;
  556. -ms-user-select: none;
  557. -khtml-user-select: none;
  558. user-select: none;
  559. }
  560. .BrowerFind * {
  561. float: left;
  562. }
  563. .BrowerFind input {
  564. width: 150px;
  565. height: 35px;
  566. border: none;
  567. font-size: 14px;
  568. padding: 0 2px;
  569. }
  570. .BrowerFind input:focus {
  571. outline: none;
  572. }
  573. .BrowerFind span {
  574. width: 50px;
  575. font-size: 12px;
  576. line-height: 35px;
  577. color: #888888;
  578. background: #fff;
  579. text-align: center;
  580. border-right: 1px solid #eee;
  581. }
  582. .BrowerFind button {
  583. background: none;
  584. border: none;
  585. width: 32px;
  586. margin: 0 3px;
  587. height: 35px;
  588. color: #888888;
  589. font-weight: bold;
  590. font-size: 18px;
  591. }
  592. .BrowerFind .icon-times {
  593. font-size: 14px;
  594. }
  595. /* 历史记录样式 */
  596. .HistoryMain{
  597. width: 100%;
  598. height: 100%;
  599. }
  600. .HistoryMain *{
  601. box-sizing: border-box;
  602. }
  603. .HistoryHead{
  604. width: 100%;
  605. height: 55px;
  606. background: #0b7aeb;
  607. -moz-user-select:none;
  608. -webkit-user-select:none;
  609. -ms-user-select:none;
  610. -khtml-user-select:none;
  611. user-select:none;
  612. }
  613. input::-webkit-input-placeholder {
  614. /* WebKit browsers */
  615. color: #fff;
  616. }
  617. input:-moz-placeholder {
  618. /* Mozilla Firefox 4 to 18 */
  619. color: #fff;
  620. }
  621. input::-moz-placeholder {
  622. /* Mozilla Firefox 19+ */
  623. color: #fff;
  624. }
  625. input::-ms-input-placeholder {
  626. /* Internet Explorer 10+ */
  627. color: #fff;
  628. }
  629. .HistorySelect{
  630. width: 500px;
  631. height: 100%;
  632. margin: auto;
  633. }
  634. .HistorySelect div {
  635. width: 450px;
  636. height: 45px;
  637. background: #0062ea;
  638. position: relative;
  639. top: 5px;
  640. margin: auto;
  641. }
  642. .HistorySelect input {
  643. border: 0px;
  644. background: #0062ea;
  645. width: 400px;
  646. height: 35px;
  647. position: relative;
  648. top: 5px;
  649. color: #ffffff;
  650. margin-left: 20px;
  651. outline: none;
  652. z-index: 99999;
  653. }
  654. .browerHeaderControler {
  655. position: relative;
  656. }
  657. .HistoryHead p{
  658. float: left;
  659. font-size: 18px;
  660. color: #fff;
  661. line-height: 55px;
  662. padding-left: 15px;
  663. }
  664. .HistoryContainer {
  665. padding: 0px 100px 20px;
  666. height: 866px;
  667. background: #eee;
  668. overflow: auto;
  669. width: 1200px;
  670. float: right;
  671. }
  672. .Historyoperating{
  673. height: 866px;
  674. background: #eee;
  675. overflow: auto;
  676. width: 240px;
  677. float: left;
  678. }
  679. .Historyoperating ul {
  680. margin: 40px 00px;
  681. }
  682. .Historyoperating ul li {
  683. width: auto;
  684. transition: all .3s;
  685. height: 40px;
  686. line-height: 40px;
  687. padding: 0px 20px;
  688. cursor: pointer;
  689. }
  690. .Historyoperating ul li:hover {
  691. background: #dfdfdf;
  692. }
  693. .HistoryCard{
  694. width: 100%;
  695. background: #fff;
  696. /*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);*/
  697. margin-top: 20px;
  698. box-shadow: 0px 1px 1px 1px #c7c7c7;
  699. border-radius: 4px;
  700. }
  701. .HistoryCardContainer{
  702. width: 100%;
  703. }
  704. .HistoryCardContainer li{
  705. width: 100%;
  706. height: 35px;
  707. line-height: 25px;
  708. margin-bottom: 2px;
  709. padding: 5px;
  710. }
  711. .HistoryCardContainer li:hover{
  712. background: #eee;
  713. cursor: pointer;
  714. }
  715. .HistoryCardContainer li *{
  716. float: left;
  717. }
  718. .HistoryCardContainer li span{
  719. width: 80px;
  720. font-size: 12px;
  721. color: #7f7e7e;
  722. -moz-user-select:none;
  723. -webkit-user-select:none;
  724. -ms-user-select:none;
  725. -khtml-user-select:none;
  726. user-select:none;
  727. }
  728. .HistoryCardContainer li div{
  729. width: calc(100% - 100px);
  730. height: 100%;
  731. font-size: 13px;
  732. }
  733. .HistoryCardContainer li img{
  734. width: 15px;
  735. margin: 5px;
  736. }
  737. .HistoryCardContainer li p{
  738. height: 25px;
  739. width: 200px;
  740. overflow: hidden;
  741. text-overflow: ellipsis;
  742. white-space: nowrap;
  743. }
  744. .HistoryCardHead{
  745. width: 100%;
  746. font-weight: bold;
  747. font-size: 18px;
  748. padding: 5px;
  749. border-bottom: 1px solid #eee;
  750. line-height: 40px;
  751. -moz-user-select:none;
  752. -webkit-user-select:none;
  753. -ms-user-select:none;
  754. -khtml-user-select:none;
  755. user-select:none;
  756. }
  757. .history_body span {
  758. padding-right: 20px;
  759. overflow: hidden;
  760. text-overflow: ellipsis;
  761. width: 180px;
  762. }
  763. .history_body p {
  764. width: 270px;
  765. height: 20px;
  766. padding-right: 20px;
  767. overflow: hidden;
  768. text-overflow: ellipsis;
  769. }
  770. .history_body {
  771. display: inline-flex;
  772. margin-bottom: 10px;
  773. overflow: hidden;
  774. text-overflow: ellipsis;
  775. }
  776. /* 反馈样式 */
  777. .FeedBackMain * {
  778. box-sizing: border-box;
  779. }
  780. .FeedBackMain {
  781. width: 100%;
  782. height: 100%;
  783. -moz-user-select: none;
  784. -webkit-user-select: none;
  785. -ms-user-select: none;
  786. -khtml-user-select: none;
  787. user-select: none;
  788. }
  789. .FeedBackHead {
  790. width: 100%;
  791. height: 55px;
  792. border-bottom: 2px solid #38f;
  793. }
  794. .FeedBackHead img {
  795. float: left;
  796. width: 30px;
  797. margin: 11px;
  798. }
  799. .FeedBackHead p {
  800. line-height: 55px;
  801. font-size: 16px;
  802. }
  803. .FeedBackContainer {
  804. width: 100%;
  805. padding: 10px;
  806. }
  807. .FeedBackContainer input,
  808. .FeedBackContainer textarea {
  809. width: 100%;
  810. border: 1px solid #eee;
  811. height: 35px;
  812. border-radius: 3px;
  813. margin-bottom: 10px;
  814. padding: 4px;
  815. resize: none;
  816. }
  817. .FeedBackContainer textarea {
  818. height: 150px!important;
  819. }
  820. .FeedBackContainer input:focus,
  821. .FeedBackContainer textarea:focus {
  822. outline: none;
  823. border: 1px solid #38f;
  824. }
  825. .FeedBackContainer span {
  826. float: left;
  827. color: #e85151;
  828. font-size: 14px;
  829. margin-top: 10px;
  830. text-indent: 10px;
  831. }
  832. .FeedBackContainer button {
  833. float: right;
  834. padding: 0 10px;
  835. height: 35px;
  836. background: #38f;
  837. color: #fff;
  838. border: 1px solid #eee;
  839. border-radius: 3px;
  840. overflow: hidden;
  841. }
  842. .HistoryBottom {
  843. width: 100%;
  844. height: 55px;
  845. transition: all .3s;
  846. position: fixed;
  847. background: #0b7aeb;
  848. bottom: -55px;
  849. }
  850. .HistoryBottomContent{
  851. width: 700px;
  852. height: auto;
  853. margin: auto;
  854. color: #ffffff;
  855. }
  856. .Historycount{
  857. width: auto;
  858. float: left;
  859. padding: 16px;
  860. font-size: 17px;
  861. z-index: 100;
  862. }
  863. .HistoryPick{
  864. width: auto;
  865. float: right;
  866. }
  867. .HistoryPick div {
  868. float: left;
  869. padding: 16px;
  870. font-size: 17px;
  871. z-index: 100;
  872. cursor: pointer;
  873. }
  874. #qingchu > div {
  875. width: 35px;
  876. height: 20px;
  877. font-size: 12px;
  878. float: right;
  879. text-align: center;
  880. line-height: 20px;
  881. border: 1px solid #ccc;
  882. border-radius: 5px;
  883. margin: 10px 5px 5px 5px;
  884. transition: all .3s;
  885. opacity: 0;
  886. cursor: pointer;
  887. }
  888. .item {
  889. /*z-index: 9999;*/
  890. }
  891. .Historyinput{
  892. margin-top: 7px;
  893. -webkit-app-region: no-drag;
  894. margin-right: 4px;
  895. }
  896. /*加载提示*/
  897. .BrowerTips {
  898. left: 0px;
  899. bottom: 0px;
  900. float: left;
  901. position: absolute;
  902. max-width: 30%;
  903. height: 30px;
  904. line-height: 30px;
  905. z-index: 2;
  906. font-size: 12px;
  907. box-shadow: 0 1px 2px rgba(0, 0, 0, .4), 0 0 1px rgba(0, 0, 0, .2);
  908. word-wrap: normal;
  909. background: #fff;
  910. text-overflow: ellipsis;
  911. word-spacing: normal;
  912. word-break: break-all;
  913. -webkit-transition: all .35s;
  914. -moz-transition: all .35s;
  915. -o-transition: all .35s;
  916. -moz-user-select: none;
  917. -webkit-user-select: none;
  918. -ms-user-select: none;
  919. -khtml-user-select: none;
  920. user-select: none;
  921. }
  922. /*关于我们*/
  923. .FeedBackContainer p {
  924. padding: 10px;
  925. font-size: 14px;
  926. font-weight: bold;
  927. }
  928. .FeedBackContainer p span {
  929. float: unset;
  930. }
  931. /* 首页end */
  932. .column.over {
  933. border: 1px dashed #000;
  934. }
  935. .column {
  936. cursor: move;
  937. }
  938. .animated {
  939. -webkit-animation-duration: .35s;
  940. animation-duration: .35s;
  941. -webkit-animation-fill-mode: both;
  942. animation-fill-mode: both
  943. }
  944. .animated.infinite {
  945. -webkit-animation-iteration-count: infinite;
  946. animation-iteration-count: infinite
  947. }
  948. @-webkit-keyframes fadeIn {
  949. from {
  950. opacity: 0
  951. }
  952. to {
  953. opacity: 1
  954. }
  955. }
  956. @keyframes fadeIn {
  957. from {
  958. opacity: 0
  959. }
  960. to {
  961. opacity: 1
  962. }
  963. }
  964. .fadeIn {
  965. -webkit-animation-name: fadeIn;
  966. animation-name: fadeIn
  967. }
  968. @font-face {
  969. font-family: 'fontello';
  970. src: url('../font/fontello.eot?70736739');
  971. src: url('../font/fontello.eot?70736739#iefix') format('embedded-opentype'), url('../font/fontello.woff?70736739') format('woff'), url('../font/fontello.ttf?70736739') format('truetype'), url('../font/fontello.svg?70736739#fontello') format('svg');
  972. font-weight: normal;
  973. font-style: normal;
  974. }
  975. [class^="icon-"],
  976. [class*=" icon-"] {
  977. display: inline-block;
  978. font: normal normal normal 14px/1 fontello, Microsoft YaHei;
  979. font-size: inherit;
  980. text-rendering: auto;
  981. -webkit-font-smoothing: antialiased;
  982. -moz-osx-font-smoothing: grayscale;
  983. }
  984. .icon-left:before {
  985. content: '\e800';
  986. }
  987. /* '' */
  988. .icon-right:before {
  989. content: '\e801';
  990. }
  991. /* '' */
  992. .icon-cancel:before {
  993. content: '\e802';
  994. }
  995. /* '' */
  996. .icon-minus:before {
  997. content: '\e803';
  998. }
  999. /* '' */
  1000. .icon-menu:before {
  1001. content: '\e804';
  1002. }
  1003. /* '' */
  1004. .icon-play-circled2:before {
  1005. content: '\e805';
  1006. }
  1007. /* '' */
  1008. .icon-play:before {
  1009. content: '\e806';
  1010. }
  1011. /* '' */
  1012. .icon-lock:before {
  1013. content: '\e807';
  1014. }
  1015. /* '' */
  1016. .icon-plus:before {
  1017. content: '\e808';
  1018. }
  1019. /* '' */
  1020. .icon-cog:before {
  1021. content: '\e809';
  1022. }
  1023. /* '' */
  1024. .icon-cw:before {
  1025. content: '\e80a';
  1026. }
  1027. /* '' */
  1028. .icon-times:before {
  1029. content: '\ebc4';
  1030. }
  1031. /* '' */
  1032. .icon-window-maximize:before {
  1033. content: '\ec0f';
  1034. }
  1035. /* '' */
  1036. .icon-window-minimize:before {
  1037. content: '\ec10';
  1038. }
  1039. /* '' */
  1040. .icon-window-restore:before {
  1041. content: '\ec11';
  1042. }
  1043. /* '' */
  1044. .icon-angle-up:before {
  1045. content: '\f106';
  1046. }
  1047. /* '' */
  1048. .icon-angle-down:before {
  1049. content: '\f107';
  1050. }
  1051. /* '' */
  1052. .icon-ellipsis-vert:before {
  1053. content: '\f142';
  1054. }
  1055. /* '' */
  1056. /*滚动条*/
  1057. *::-webkit-scrollbar {
  1058. width: 7px;
  1059. height: 7px;
  1060. background: none;
  1061. }
  1062. *::-webkit-scrollbar-button {
  1063. display: none;
  1064. }
  1065. *::-webkit-scrollbar-track {
  1066. background: none;
  1067. }
  1068. *::-webkit-scrollbar-track-piece {
  1069. display: none;
  1070. }
  1071. *::-webkit-scrollbar-thumb {
  1072. background: rgba(0, 0, 0, 0.3);
  1073. position: absolute;
  1074. width: 3px;
  1075. right: 0;
  1076. top: 0;
  1077. bottom: 0;
  1078. visibility: hidden\9;
  1079. /* Target only IE7 and IE8 with this hack */
  1080. opacity: .01;
  1081. -webkit-transition: .2s;
  1082. -moz-transition: .2s;
  1083. -o-transition: .2s;
  1084. transition: .2s;
  1085. -moz-border-radius: 3px;
  1086. -webkit-border-radius: 3px;
  1087. border-radius: 3px;
  1088. }
  1089. *::-webkit-scrollbar-thumb:active,
  1090. *::-webkit-scrollbar-thumb:hover {
  1091. background: rgba(0, 0, 0, .50);
  1092. }
  1093. *::-webkit-scrollbar-corner {
  1094. display: none;
  1095. }
  1096. *::-webkit-scrollbar-resizer {
  1097. display: none;
  1098. }