browser.css 22 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327
  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. z-index: 999999999;
  464. 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);
  465. -moz-user-select: none;
  466. -webkit-user-select: none;
  467. -ms-user-select: none;
  468. -khtml-user-select: none;
  469. user-select: none;
  470. }
  471. .US_BookmarkSet li {
  472. width: auto;
  473. max-width: 400px;
  474. font-size: 13px;
  475. padding: 6px 18px;
  476. color: #333;
  477. text-align: left;
  478. white-space: nowrap;
  479. margin-bottom: 2px;
  480. }
  481. .US_BookmarkSet li:hover {
  482. background-color: #eee;
  483. color: #000;
  484. cursor: pointer;
  485. }
  486. .MouseMenuMainer {
  487. position: absolute;
  488. z-index: 22;
  489. width: auto;
  490. height: auto;
  491. min-width: 90pt;
  492. background: #fff;
  493. 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);
  494. -moz-user-select: none;
  495. -webkit-user-select: none;
  496. -ms-user-select: none;
  497. -khtml-user-select: none;
  498. user-select: none;
  499. }
  500. .MouseMenuMainer {
  501. width: 300px;
  502. }
  503. .MouseMenuMainer li {
  504. width: auto;
  505. max-width: 400px;
  506. font-size: 13px;
  507. padding: 6px 18px;
  508. color: #333;
  509. text-align: left;
  510. white-space: nowrap;
  511. margin-bottom: 2px;
  512. }
  513. .MouseMenuMainer li img {
  514. width: 20px;
  515. float: left;
  516. line-height: 25px;
  517. margin: 3px 3px;
  518. }
  519. .MouseMenuMainer li p {
  520. font-size: 12px;
  521. line-height: 25px;
  522. margin: 0 3px;
  523. }
  524. .MouseMenuMainer li:hover {
  525. background-color: #eee;
  526. color: #000;
  527. cursor: pointer;
  528. }
  529. .MouseMenuMainStep {
  530. width: 100%;
  531. padding: 0 !important;
  532. height: 1px;
  533. background: #e8e8e8;
  534. margin: 5px 0;
  535. }
  536. /*查找菜单样式*/
  537. .BrowerFind {
  538. width: 320px;
  539. height: 35px;
  540. background: #fff;
  541. box-shadow: 0 1px 2px rgba(0, 0, 0, .4), 0 0 1px rgba(0, 0, 0, .2);
  542. position: absolute;
  543. right: 20px;
  544. top: 80px;
  545. padding: 5px;
  546. z-index: 10;
  547. -webkit-animation-duration: .35s;
  548. animation-duration: .35s;
  549. -webkit-animation-fill-mode: both;
  550. animation-fill-mode: both;
  551. -webkit-animation-name: fadeIn;
  552. animation-name: fadeIn;
  553. display: none;
  554. overflow: hidden;
  555. -moz-user-select: none;
  556. -webkit-user-select: none;
  557. -ms-user-select: none;
  558. -khtml-user-select: none;
  559. user-select: none;
  560. }
  561. .BrowerFind * {
  562. float: left;
  563. }
  564. .BrowerFind input {
  565. width: 150px;
  566. height: 35px;
  567. border: none;
  568. font-size: 14px;
  569. padding: 0 2px;
  570. }
  571. .BrowerFind input:focus {
  572. outline: none;
  573. }
  574. .BrowerFind span {
  575. width: 50px;
  576. font-size: 12px;
  577. line-height: 35px;
  578. color: #888888;
  579. background: #fff;
  580. text-align: center;
  581. border-right: 1px solid #eee;
  582. }
  583. .BrowerFind button {
  584. background: none;
  585. border: none;
  586. width: 32px;
  587. margin: 0 3px;
  588. height: 35px;
  589. color: #888888;
  590. font-weight: bold;
  591. font-size: 18px;
  592. }
  593. .BrowerFind .icon-times {
  594. font-size: 14px;
  595. }
  596. /* 历史记录样式 */
  597. .HistoryMain {
  598. width: 100%;
  599. height: 100%;
  600. }
  601. .HistoryMain * {
  602. box-sizing: border-box;
  603. }
  604. .HistoryHead {
  605. width: 100%;
  606. height: 55px;
  607. background: #0b7aeb;
  608. -moz-user-select: none;
  609. -webkit-user-select: none;
  610. -ms-user-select: none;
  611. -khtml-user-select: none;
  612. user-select: none;
  613. }
  614. input::-webkit-input-placeholder {
  615. /* WebKit browsers */
  616. color: #fff;
  617. }
  618. input:-moz-placeholder {
  619. /* Mozilla Firefox 4 to 18 */
  620. color: #fff;
  621. }
  622. input::-moz-placeholder {
  623. /* Mozilla Firefox 19+ */
  624. color: #fff;
  625. }
  626. input::-ms-input-placeholder {
  627. /* Internet Explorer 10+ */
  628. color: #fff;
  629. }
  630. .HistorySelect {
  631. width: 500px;
  632. height: 100%;
  633. margin: auto;
  634. }
  635. .HistorySelect div {
  636. width: 450px;
  637. height: 45px;
  638. background: #0062ea;
  639. position: relative;
  640. top: 5px;
  641. margin: auto;
  642. }
  643. .HistorySelect input {
  644. border: 0px;
  645. background: #0062ea;
  646. width: 400px;
  647. height: 35px;
  648. position: relative;
  649. top: 5px;
  650. color: #ffffff;
  651. margin-left: 20px;
  652. outline: none;
  653. z-index: 99999;
  654. }
  655. .browerHeaderControler {
  656. position: relative;
  657. }
  658. .HistoryHead p {
  659. float: left;
  660. font-size: 18px;
  661. color: #fff;
  662. line-height: 55px;
  663. padding-left: 15px;
  664. }
  665. .HistoryContainer {
  666. padding: 0px 100px 20px;
  667. height: 866px;
  668. background: #eee;
  669. overflow: auto;
  670. width: 1200px;
  671. float: right;
  672. }
  673. .Historyoperating {
  674. height: 866px;
  675. background: #eee;
  676. overflow: auto;
  677. width: 251px;
  678. float: left;
  679. }
  680. .Historyoperating ul {
  681. margin: 40px 00px;
  682. }
  683. .Historyoperating ul li {
  684. width: auto;
  685. transition: all .3s;
  686. height: 40px;
  687. line-height: 40px;
  688. padding: 0px 20px;
  689. cursor: pointer;
  690. }
  691. .Historyoperating ul li:hover {
  692. background: #dfdfdf;
  693. }
  694. .HistoryCard {
  695. width: 100%;
  696. background: #fff;
  697. /*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);*/
  698. margin-top: 20px;
  699. box-shadow: 0px 1px 1px 1px #c7c7c7;
  700. border-radius: 4px;
  701. }
  702. .HistoryCardContainer {
  703. width: 100%;
  704. }
  705. .HistoryCardContainer li {
  706. width: 100%;
  707. height: 35px;
  708. line-height: 25px;
  709. margin-bottom: 2px;
  710. padding: 5px;
  711. }
  712. .HistoryCardContainer li:hover {
  713. background: #eee;
  714. cursor: pointer;
  715. }
  716. .HistoryCardContainer li * {
  717. float: left;
  718. }
  719. .HistoryCardContainer li span {
  720. width: 80px;
  721. font-size: 12px;
  722. color: #7f7e7e;
  723. -moz-user-select: none;
  724. -webkit-user-select: none;
  725. -ms-user-select: none;
  726. -khtml-user-select: none;
  727. user-select: none;
  728. }
  729. .HistoryCardContainer li div {
  730. width: calc(100% - 100px);
  731. height: 100%;
  732. font-size: 13px;
  733. }
  734. .HistoryCardContainer li img {
  735. width: 15px;
  736. margin: 5px;
  737. }
  738. .HistoryCardContainer li p {
  739. height: 25px;
  740. width: 200px;
  741. overflow: hidden;
  742. text-overflow: ellipsis;
  743. white-space: nowrap;
  744. }
  745. .HistoryCardHead {
  746. width: 100%;
  747. font-weight: bold;
  748. font-size: 18px;
  749. padding: 5px;
  750. border-bottom: 1px solid #eee;
  751. line-height: 40px;
  752. -moz-user-select: none;
  753. -webkit-user-select: none;
  754. -ms-user-select: none;
  755. -khtml-user-select: none;
  756. user-select: none;
  757. }
  758. .history_body span {
  759. padding-right: 20px;
  760. overflow: hidden;
  761. text-overflow: ellipsis;
  762. width: 180px;
  763. }
  764. .history_body p {
  765. width: 270px;
  766. height: 20px;
  767. padding-right: 20px;
  768. overflow: hidden;
  769. text-overflow: ellipsis;
  770. }
  771. .history_body {
  772. display: inline-flex;
  773. margin-bottom: 10px;
  774. overflow: hidden;
  775. text-overflow: ellipsis;
  776. }
  777. /* 反馈样式 */
  778. .FeedBackMain * {
  779. box-sizing: border-box;
  780. }
  781. .FeedBackMain {
  782. width: 100%;
  783. height: 100%;
  784. -moz-user-select: none;
  785. -webkit-user-select: none;
  786. -ms-user-select: none;
  787. -khtml-user-select: none;
  788. user-select: none;
  789. }
  790. .FeedBackHead {
  791. width: 100%;
  792. height: 55px;
  793. border-bottom: 2px solid #38f;
  794. }
  795. .FeedBackHead img {
  796. float: left;
  797. width: 30px;
  798. margin: 11px;
  799. }
  800. .FeedBackHead p {
  801. line-height: 55px;
  802. font-size: 16px;
  803. }
  804. .FeedBackContainer {
  805. width: 100%;
  806. padding: 10px;
  807. }
  808. .FeedBackContainer input,
  809. .FeedBackContainer textarea {
  810. width: 100%;
  811. border: 1px solid #eee;
  812. height: 35px;
  813. border-radius: 3px;
  814. margin-bottom: 10px;
  815. padding: 4px;
  816. resize: none;
  817. }
  818. .FeedBackContainer textarea {
  819. height: 150px!important;
  820. }
  821. .FeedBackContainer input:focus,
  822. .FeedBackContainer textarea:focus {
  823. outline: none;
  824. border: 1px solid #38f;
  825. }
  826. .FeedBackContainer span {
  827. float: left;
  828. color: #e85151;
  829. font-size: 14px;
  830. margin-top: 10px;
  831. text-indent: 10px;
  832. }
  833. .FeedBackContainer button {
  834. float: right;
  835. padding: 0 10px;
  836. height: 35px;
  837. background: #38f;
  838. color: #fff;
  839. border: 1px solid #eee;
  840. border-radius: 3px;
  841. overflow: hidden;
  842. }
  843. .HistoryBottom {
  844. width: 100%;
  845. height: 55px;
  846. transition: all .3s;
  847. position: fixed;
  848. background: #0b7aeb;
  849. bottom: -55px;
  850. }
  851. .HistoryBottomContent {
  852. width: 700px;
  853. height: auto;
  854. margin: auto;
  855. color: #ffffff;
  856. }
  857. .Historycount {
  858. width: auto;
  859. float: left;
  860. padding: 16px;
  861. font-size: 17px;
  862. z-index: 100;
  863. }
  864. .HistoryPick {
  865. width: auto;
  866. float: right;
  867. }
  868. .HistoryPick div {
  869. float: left;
  870. padding: 16px;
  871. font-size: 17px;
  872. z-index: 100;
  873. cursor: pointer;
  874. }
  875. #qingchu>div {
  876. width: 35px;
  877. height: 20px;
  878. font-size: 12px;
  879. float: right;
  880. text-align: center;
  881. line-height: 20px;
  882. border: 1px solid #ccc;
  883. border-radius: 5px;
  884. margin: 10px 5px 5px 5px;
  885. transition: all .3s;
  886. opacity: 0;
  887. cursor: pointer;
  888. }
  889. .item {
  890. /*z-index: 9999;*/
  891. }
  892. .Historyinput {
  893. margin-top: 7px;
  894. -webkit-app-region: no-drag;
  895. margin-right: 4px;
  896. }
  897. /*加载提示*/
  898. .BrowerTips {
  899. left: 0px;
  900. bottom: 0px;
  901. float: left;
  902. position: absolute;
  903. max-width: 30%;
  904. height: 30px;
  905. line-height: 30px;
  906. z-index: 2;
  907. font-size: 12px;
  908. box-shadow: 0 1px 2px rgba(0, 0, 0, .4), 0 0 1px rgba(0, 0, 0, .2);
  909. word-wrap: normal;
  910. background: #fff;
  911. text-overflow: ellipsis;
  912. word-spacing: normal;
  913. word-break: break-all;
  914. -webkit-transition: all .35s;
  915. -moz-transition: all .35s;
  916. -o-transition: all .35s;
  917. -moz-user-select: none;
  918. -webkit-user-select: none;
  919. -ms-user-select: none;
  920. -khtml-user-select: none;
  921. user-select: none;
  922. }
  923. /*关于我们*/
  924. .FeedBackContainer p {
  925. padding: 10px;
  926. font-size: 14px;
  927. font-weight: bold;
  928. }
  929. .FeedBackContainer p span {
  930. float: unset;
  931. }
  932. /* 首页end */
  933. .column.over {
  934. border: 1px dashed #000;
  935. }
  936. .column {
  937. cursor: move;
  938. }
  939. .animated {
  940. -webkit-animation-duration: .35s;
  941. animation-duration: .35s;
  942. -webkit-animation-fill-mode: both;
  943. animation-fill-mode: both
  944. }
  945. .animated.infinite {
  946. -webkit-animation-iteration-count: infinite;
  947. animation-iteration-count: infinite
  948. }
  949. @-webkit-keyframes fadeIn {
  950. from {
  951. opacity: 0
  952. }
  953. to {
  954. opacity: 1
  955. }
  956. }
  957. @keyframes fadeIn {
  958. from {
  959. opacity: 0
  960. }
  961. to {
  962. opacity: 1
  963. }
  964. }
  965. .fadeIn {
  966. -webkit-animation-name: fadeIn;
  967. animation-name: fadeIn
  968. }
  969. @font-face {
  970. font-family: 'fontello';
  971. src: url('../font/fontello.eot?70736739');
  972. 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');
  973. font-weight: normal;
  974. font-style: normal;
  975. }
  976. [class^="icon-"],
  977. [class*=" icon-"] {
  978. display: inline-block;
  979. font: normal normal normal 14px/1 fontello, Microsoft YaHei;
  980. font-size: inherit;
  981. text-rendering: auto;
  982. -webkit-font-smoothing: antialiased;
  983. -moz-osx-font-smoothing: grayscale;
  984. }
  985. .icon-left:before {
  986. content: '\e800';
  987. }
  988. /* '' */
  989. .icon-right:before {
  990. content: '\e801';
  991. }
  992. /* '' */
  993. .icon-cancel:before {
  994. content: '\e802';
  995. }
  996. /* '' */
  997. .icon-minus:before {
  998. content: '\e803';
  999. }
  1000. /* '' */
  1001. .icon-menu:before {
  1002. content: '\e804';
  1003. }
  1004. /* '' */
  1005. .icon-play-circled2:before {
  1006. content: '\e805';
  1007. }
  1008. /* '' */
  1009. .icon-play:before {
  1010. content: '\e806';
  1011. }
  1012. /* '' */
  1013. .icon-lock:before {
  1014. content: '\e807';
  1015. }
  1016. /* '' */
  1017. .icon-plus:before {
  1018. content: '\e808';
  1019. }
  1020. /* '' */
  1021. .icon-cog:before {
  1022. content: '\e809';
  1023. }
  1024. /* '' */
  1025. .icon-cw:before {
  1026. content: '\e80a';
  1027. }
  1028. /* '' */
  1029. .icon-times:before {
  1030. content: '\ebc4';
  1031. }
  1032. /* '' */
  1033. .icon-window-maximize:before {
  1034. content: '\ec0f';
  1035. }
  1036. /* '' */
  1037. .icon-window-minimize:before {
  1038. content: '\ec10';
  1039. }
  1040. /* '' */
  1041. .icon-window-restore:before {
  1042. content: '\ec11';
  1043. }
  1044. /* '' */
  1045. .icon-angle-up:before {
  1046. content: '\f106';
  1047. }
  1048. /* '' */
  1049. .icon-angle-down:before {
  1050. content: '\f107';
  1051. }
  1052. /* '' */
  1053. .icon-ellipsis-vert:before {
  1054. content: '\f142';
  1055. }
  1056. /* '' */
  1057. /*滚动条*/
  1058. *::-webkit-scrollbar {
  1059. width: 7px;
  1060. height: 7px;
  1061. background: none;
  1062. }
  1063. *::-webkit-scrollbar-button {
  1064. display: none;
  1065. }
  1066. *::-webkit-scrollbar-track {
  1067. background: none;
  1068. }
  1069. *::-webkit-scrollbar-track-piece {
  1070. display: none;
  1071. }
  1072. *::-webkit-scrollbar-thumb {
  1073. background: rgba(0, 0, 0, 0.3);
  1074. position: absolute;
  1075. width: 3px;
  1076. right: 0;
  1077. top: 0;
  1078. bottom: 0;
  1079. visibility: hidden\9;
  1080. /* Target only IE7 and IE8 with this hack */
  1081. opacity: .01;
  1082. -webkit-transition: .2s;
  1083. -moz-transition: .2s;
  1084. -o-transition: .2s;
  1085. transition: .2s;
  1086. -moz-border-radius: 3px;
  1087. -webkit-border-radius: 3px;
  1088. border-radius: 3px;
  1089. }
  1090. *::-webkit-scrollbar-thumb:active,
  1091. *::-webkit-scrollbar-thumb:hover {
  1092. background: rgba(0, 0, 0, .50);
  1093. }
  1094. *::-webkit-scrollbar-corner {
  1095. display: none;
  1096. }
  1097. *::-webkit-scrollbar-resizer {
  1098. display: none;
  1099. }