browser.css 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176
  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. }
  162. .Favorites>ul>li:hover {
  163. background: #f1f1f1;
  164. }
  165. .Favorites>ul>li img {
  166. width: 20px;
  167. float: left;
  168. line-height: 25px;
  169. margin: 3px 3px;
  170. }
  171. .Favorites>ul>li p {
  172. width: auto;
  173. max-width: 81px;
  174. float: left;
  175. font-size: 12px;
  176. line-height: 25px;
  177. margin: 0 3px;
  178. overflow: hidden;
  179. }
  180. .BrowerHead button {
  181. float: left;
  182. overflow: hidden;
  183. margin: 0 5px;
  184. background: none;
  185. width: 26px;
  186. border: none;
  187. font-size: 16px;
  188. }
  189. .BrowerHead button:hover {
  190. background: #dcdcdc;
  191. border-radius: 3px;
  192. }
  193. .BrowerUrlArea {
  194. width: calc(100% - 150px) !important;
  195. padding: 2px 5px !important;
  196. text-align: left !important;
  197. border: 1px solid #dcdcdc;
  198. background: #fff;
  199. border-radius: 3px;
  200. }
  201. .BrowerUrlArea>i {
  202. margin: 2px;
  203. }
  204. .BrowerUrlArea * {
  205. float: left;
  206. }
  207. .BrowerUrlArea span {
  208. float: left;
  209. width: 20px;
  210. text-align: center;
  211. line-height: 22px;
  212. font-size: 14px;
  213. }
  214. .BrowerUrlArea input {
  215. float: left;
  216. width: calc(100% - 42px) !important;
  217. height: 20px;
  218. border: 0 solid #d2d2d2;
  219. outline: none;
  220. text-indent: 10px;
  221. border-left: 1px solid #d2d2d2;
  222. display: block;
  223. background: none;
  224. }
  225. .BrowerHead .icon-ellipsis-vert {
  226. color: #8c8c8c;
  227. font-weight: lighter;
  228. font-size: 18px;
  229. padding-top: 2px;
  230. }
  231. .FavoritesMore {
  232. position: absolute;
  233. right: 5px;
  234. padding: 2px;
  235. cursor: pointer;
  236. color: #CCCCCC;
  237. }
  238. #FavoritesUl {
  239. overflow: hidden;
  240. }
  241. /* 标签页右键菜单样式 */
  242. #US_TagSet {
  243. z-index: 999;
  244. }
  245. .icon-ellipsis-verter {
  246. color: #8c8c8c;
  247. font-weight: lighter;
  248. font-size: 18px;
  249. padding-top: 2px;
  250. }
  251. .bowerHeaderSeach .bowerMenu {
  252. float: right;
  253. }
  254. .bowerHeaderSeach .bowerMenu:hover {
  255. background: #ddd;
  256. }
  257. .bowerHeaderSeach .icon-menu {
  258. font-size: 21px;
  259. color: #5a5a5a;
  260. }
  261. /*选项卡样式*/
  262. .bowerCreaterWindow li {
  263. position: relative;
  264. max-width: 180px !important;
  265. width: 150px;
  266. min-width: 10px !important;
  267. top: 1px;
  268. height: 30px;
  269. display: initial;
  270. margin-right: 10px;
  271. text-align: center;
  272. color: #000;
  273. line-height: 43px;
  274. background-color: #e2e2e2;
  275. border-top: 1px solid #a2a2a2;
  276. z-index: 1;
  277. -webkit-app-region: no-drag;
  278. -webkit-transition: all .3s cubic-bezier(0.3, .1, .58, 1);
  279. -moz-transition: all .3s cubic-bezier(0.3, .1, .58, 1);
  280. transition: all .3s cubic-bezier(0.3, .1, .58, 1);
  281. -moz-user-select: none;
  282. -webkit-user-select: none;
  283. -ms-user-select: none;
  284. -khtml-user-select: none;
  285. user-select: none;
  286. }
  287. .BrowerActive {
  288. background-color: #f2f2f2 !important;
  289. border-top-color: #a9a9a9 !important;
  290. z-index: 999 !important;
  291. }
  292. .Listindex {
  293. z-index: 999 !important;
  294. }
  295. .BrowerActive {
  296. border-top: 1px solid #ccc!important;
  297. }
  298. .BrowerActive:before {
  299. border-top: 1px solid #ccc!important;
  300. background-color: #f2f2f2 !important;
  301. border-right-color: #ccc !important;
  302. }
  303. .BrowerActive:after {
  304. border-top: 1px solid #ccc!important;
  305. background-color: #f2f2f2 !important;
  306. border-left-color: #ccc !important;
  307. }
  308. .bowerCreaterWindow li:before,
  309. .bowerCreaterWindow li:after {
  310. content: '';
  311. position: absolute;
  312. display: block;
  313. width: 10px;
  314. height: 29px;
  315. top: -1px;
  316. background-color: #e2e2e2;
  317. border-top: 1px solid #a2a2a2;
  318. -webkit-transition: all .3s cubic-bezier(0.3, .1, .58, 1);
  319. -moz-transition: all .3s cubic-bezier(0.3, .1, .58, 1);
  320. transition: all .3s cubic-bezier(0.3, .1, .58, 1);
  321. }
  322. .bowerCreaterWindow li:before {
  323. right: -6px;
  324. border-right: 1px solid #a2a2a2;
  325. transform: skewX(20deg);
  326. }
  327. .bowerCreaterWindow li:after {
  328. left: -6px;
  329. transform: skewX(-20deg);
  330. border-left: 1px solid #a2a2a2;
  331. }
  332. .bowerCreaterWindow {
  333. float: left;
  334. width: calc(100% - 195px);
  335. height: 29px;
  336. display: inline-flex;
  337. overflow: unset;
  338. margin-left: 20px;
  339. -webkit-transition: all .3s cubic-bezier(0.3, .1, .58, 1);
  340. -moz-transition: all .3s cubic-bezier(0.3, .1, .58, 1);
  341. transition: all .3s cubic-bezier(0.3, .1, .58, 1);
  342. }
  343. .BrowerListBody {
  344. display: inline-block;
  345. position: relative;
  346. width: calc(100% - 3px);
  347. height: 32px;
  348. z-index: 2;
  349. top: -2px;
  350. }
  351. .BrowerList img {
  352. float: left;
  353. width: 16px;
  354. height: 16px;
  355. margin-top: 8px;
  356. }
  357. .BrowerList p {
  358. float: left;
  359. min-width: 0;
  360. max-width: 80%;
  361. width: calc(100% - 40px);
  362. margin: 0 3px;
  363. overflow: hidden;
  364. text-overflow: ellipsis;
  365. white-space: nowrap;
  366. line-height: 34px;
  367. text-align: left;
  368. font-size: 12px;
  369. margin-top: -1px;
  370. }
  371. .BrowerList i {
  372. float: right;
  373. width: 8px;
  374. height: 8px;
  375. padding: 4px;
  376. border-radius: 50%;
  377. font-size: 11px;
  378. text-align: center;
  379. line-height: 9px;
  380. margin-top: 8px;
  381. color: #888888;
  382. }
  383. .BrowerList i:hover {
  384. background: #ba4848;
  385. color: #fff;
  386. }
  387. button.BrowwerAdd {
  388. width: 32px !important;
  389. height: 18px;
  390. padding: 7px;
  391. margin: 6px 0 0 0;
  392. -webkit-transform: skew(20deg);
  393. -moz-transform: skew(20deg);
  394. -o-transform: skew(20deg);
  395. background: white;
  396. border: 1px solid #ccc;
  397. border-radius: 3px;
  398. -webkit-app-region: no-drag;
  399. }
  400. /*浏览器显示网页部分样式*/
  401. .BrowerContainer {
  402. height: calc(100% - 115px);
  403. position: absolute;
  404. width: 100%;
  405. left: 0;
  406. top: 116px;
  407. }
  408. .BrowerContainer webview,
  409. webview object {
  410. height: 100% !important;
  411. width: 100% !important;
  412. }
  413. /*右键菜单样式*/
  414. .MouseMenuMain {
  415. position: absolute;
  416. z-index: 22;
  417. display: none;
  418. width: auto;
  419. height: auto;
  420. min-width: 90pt;
  421. background: #fff;
  422. 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);
  423. -moz-user-select: none;
  424. -webkit-user-select: none;
  425. -ms-user-select: none;
  426. -khtml-user-select: none;
  427. user-select: none;
  428. }
  429. .MouseMenuMain li {
  430. width: auto;
  431. max-width: 400px;
  432. font-size: 13px;
  433. padding: 6px 18px;
  434. color: #333;
  435. text-align: left;
  436. white-space: nowrap;
  437. margin-bottom: 2px;
  438. }
  439. .MouseMenuMain li span {
  440. float: right;
  441. margin-left: 40px;
  442. color: #bfbfbf;
  443. }
  444. .MouseMenuMain li:hover {
  445. background-color: #eee;
  446. color: #000;
  447. cursor: pointer;
  448. }
  449. .US_BookmarkSet {
  450. position: absolute;
  451. z-index: 22;
  452. width: auto;
  453. height: auto;
  454. display: none;
  455. min-width: 90pt;
  456. background: #fff;
  457. 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);
  458. -moz-user-select: none;
  459. -webkit-user-select: none;
  460. -ms-user-select: none;
  461. -khtml-user-select: none;
  462. user-select: none;
  463. }
  464. .US_BookmarkSet li {
  465. width: auto;
  466. max-width: 400px;
  467. font-size: 13px;
  468. padding: 6px 18px;
  469. color: #333;
  470. text-align: left;
  471. white-space: nowrap;
  472. margin-bottom: 2px;
  473. }
  474. .US_BookmarkSet li:hover {
  475. background-color: #eee;
  476. color: #000;
  477. cursor: pointer;
  478. }
  479. .MouseMenuMainer {
  480. position: absolute;
  481. z-index: 22;
  482. width: auto;
  483. height: auto;
  484. min-width: 90pt;
  485. background: #fff;
  486. 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);
  487. -moz-user-select: none;
  488. -webkit-user-select: none;
  489. -ms-user-select: none;
  490. -khtml-user-select: none;
  491. user-select: none;
  492. }
  493. .MouseMenuMainer {
  494. width: 300px;
  495. }
  496. .MouseMenuMainer li {
  497. width: auto;
  498. max-width: 400px;
  499. font-size: 13px;
  500. padding: 6px 18px;
  501. color: #333;
  502. text-align: left;
  503. white-space: nowrap;
  504. margin-bottom: 2px;
  505. }
  506. .MouseMenuMainer li img {
  507. width: 20px;
  508. float: left;
  509. line-height: 25px;
  510. margin: 3px 3px;
  511. }
  512. .MouseMenuMainer li p {
  513. font-size: 12px;
  514. line-height: 25px;
  515. margin: 0 3px;
  516. }
  517. .MouseMenuMainer li:hover {
  518. background-color: #eee;
  519. color: #000;
  520. cursor: pointer;
  521. }
  522. .MouseMenuMainStep {
  523. width: 100%;
  524. padding: 0 !important;
  525. height: 1px;
  526. background: #e8e8e8;
  527. margin: 5px 0;
  528. }
  529. /*查找菜单样式*/
  530. .BrowerFind {
  531. width: 320px;
  532. height: 35px;
  533. background: #fff;
  534. box-shadow: 0 1px 2px rgba(0, 0, 0, .4), 0 0 1px rgba(0, 0, 0, .2);
  535. position: absolute;
  536. right: 20px;
  537. top: 80px;
  538. padding: 5px;
  539. z-index: 10;
  540. -webkit-animation-duration: .35s;
  541. animation-duration: .35s;
  542. -webkit-animation-fill-mode: both;
  543. animation-fill-mode: both;
  544. -webkit-animation-name: fadeIn;
  545. animation-name: fadeIn;
  546. display: none;
  547. overflow: hidden;
  548. -moz-user-select: none;
  549. -webkit-user-select: none;
  550. -ms-user-select: none;
  551. -khtml-user-select: none;
  552. user-select: none;
  553. }
  554. .BrowerFind * {
  555. float: left;
  556. }
  557. .BrowerFind input {
  558. width: 150px;
  559. height: 35px;
  560. border: none;
  561. font-size: 14px;
  562. padding: 0 2px;
  563. }
  564. .BrowerFind input:focus {
  565. outline: none;
  566. }
  567. .BrowerFind span {
  568. width: 50px;
  569. font-size: 12px;
  570. line-height: 35px;
  571. color: #888888;
  572. background: #fff;
  573. text-align: center;
  574. border-right: 1px solid #eee;
  575. }
  576. .BrowerFind button {
  577. background: none;
  578. border: none;
  579. width: 32px;
  580. margin: 0 3px;
  581. height: 35px;
  582. color: #888888;
  583. font-weight: bold;
  584. font-size: 18px;
  585. }
  586. .BrowerFind .icon-times {
  587. font-size: 14px;
  588. }
  589. /* 历史记录样式 */
  590. .HistoryMain {
  591. width: 100%;
  592. height: 100%;
  593. }
  594. .HistoryMain * {
  595. box-sizing: border-box;
  596. }
  597. .HistoryHead {
  598. width: 100%;
  599. height: 55px;
  600. background: #0b7aeb;
  601. -moz-user-select: none;
  602. -webkit-user-select: none;
  603. -ms-user-select: none;
  604. -khtml-user-select: none;
  605. user-select: none;
  606. }
  607. .HistoryHead p {
  608. font-size: 18px;
  609. color: #fff;
  610. line-height: 55px;
  611. padding-left: 15px;
  612. }
  613. .HistoryContainer {
  614. padding: 0px 100px 20px;
  615. overflow-y: auto;
  616. height: 545px;
  617. background: #eee;
  618. }
  619. .HistoryCard {
  620. width: 100%;
  621. background: #fff;
  622. 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);
  623. margin-bottom: 20px;
  624. }
  625. .HistoryCardContainer {
  626. width: 100%;
  627. }
  628. .HistoryCardContainer li {
  629. width: 100%;
  630. height: 35px;
  631. line-height: 25px;
  632. margin-bottom: 2px;
  633. padding: 5px;
  634. }
  635. .HistoryCardContainer li:hover {
  636. background: #eee;
  637. cursor: pointer;
  638. }
  639. .HistoryCardContainer li * {
  640. float: left;
  641. }
  642. .HistoryCardContainer li span {
  643. width: 100px;
  644. font-size: 12px;
  645. color: #7f7e7e;
  646. -moz-user-select: none;
  647. -webkit-user-select: none;
  648. -ms-user-select: none;
  649. -khtml-user-select: none;
  650. user-select: none;
  651. }
  652. .HistoryCardContainer li div {
  653. width: calc(100% - 100px);
  654. height: 100%;
  655. font-size: 13px;
  656. }
  657. .HistoryCardContainer li img {
  658. width: 15px;
  659. margin: 5px;
  660. }
  661. .HistoryCardContainer li p {
  662. height: 25px;
  663. width: calc(100% - 30px);
  664. overflow: hidden;
  665. text-overflow: ellipsis;
  666. white-space: nowrap;
  667. }
  668. .HistoryCardHead {
  669. width: 100%;
  670. font-weight: bold;
  671. font-size: 18px;
  672. padding: 5px;
  673. border-bottom: 1px solid #eee;
  674. line-height: 40px;
  675. -moz-user-select: none;
  676. -webkit-user-select: none;
  677. -ms-user-select: none;
  678. -khtml-user-select: none;
  679. user-select: none;
  680. }
  681. .history_body span {
  682. padding-right: 20px;
  683. overflow: hidden;
  684. text-overflow: ellipsis;
  685. width: 180px;
  686. }
  687. .history_body p {
  688. width: 270px;
  689. height: 20px;
  690. padding-right: 20px;
  691. overflow: hidden;
  692. text-overflow: ellipsis;
  693. }
  694. .history_body {
  695. display: inline-flex;
  696. margin-bottom: 10px;
  697. overflow: hidden;
  698. text-overflow: ellipsis;
  699. }
  700. /* 反馈样式 */
  701. .FeedBackMain * {
  702. box-sizing: border-box;
  703. }
  704. .FeedBackMain {
  705. width: 100%;
  706. height: 100%;
  707. -moz-user-select: none;
  708. -webkit-user-select: none;
  709. -ms-user-select: none;
  710. -khtml-user-select: none;
  711. user-select: none;
  712. }
  713. .FeedBackHead {
  714. width: 100%;
  715. height: 55px;
  716. border-bottom: 2px solid #38f;
  717. }
  718. .FeedBackHead img {
  719. float: left;
  720. width: 30px;
  721. margin: 11px;
  722. }
  723. .FeedBackHead p {
  724. line-height: 55px;
  725. font-size: 16px;
  726. }
  727. .FeedBackContainer {
  728. width: 100%;
  729. padding: 10px;
  730. }
  731. .FeedBackContainer input,
  732. .FeedBackContainer textarea {
  733. width: 100%;
  734. border: 1px solid #eee;
  735. height: 35px;
  736. border-radius: 3px;
  737. margin-bottom: 10px;
  738. padding: 4px;
  739. resize: none;
  740. }
  741. .FeedBackContainer textarea {
  742. height: 150px!important;
  743. }
  744. .FeedBackContainer input:focus,
  745. .FeedBackContainer textarea:focus {
  746. outline: none;
  747. border: 1px solid #38f;
  748. }
  749. .FeedBackContainer span {
  750. float: left;
  751. color: #e85151;
  752. font-size: 14px;
  753. margin-top: 10px;
  754. text-indent: 10px;
  755. }
  756. .FeedBackContainer button {
  757. float: right;
  758. padding: 0 10px;
  759. height: 35px;
  760. background: #38f;
  761. color: #fff;
  762. border: 1px solid #eee;
  763. border-radius: 3px;
  764. overflow: hidden;
  765. }
  766. /*加载提示*/
  767. .BrowerTips {
  768. left: 0px;
  769. bottom: 0px;
  770. float: left;
  771. position: absolute;
  772. max-width: 30%;
  773. height: 30px;
  774. line-height: 30px;
  775. z-index: 2;
  776. font-size: 12px;
  777. box-shadow: 0 1px 2px rgba(0, 0, 0, .4), 0 0 1px rgba(0, 0, 0, .2);
  778. word-wrap: normal;
  779. background: #fff;
  780. text-overflow: ellipsis;
  781. word-spacing: normal;
  782. word-break: break-all;
  783. -webkit-transition: all .35s;
  784. -moz-transition: all .35s;
  785. -o-transition: all .35s;
  786. -moz-user-select: none;
  787. -webkit-user-select: none;
  788. -ms-user-select: none;
  789. -khtml-user-select: none;
  790. user-select: none;
  791. }
  792. /*关于我们*/
  793. .FeedBackContainer p {
  794. padding: 10px;
  795. font-size: 14px;
  796. font-weight: bold;
  797. }
  798. .FeedBackContainer p span {
  799. float: unset;
  800. }
  801. /* 首页end */
  802. .column.over {
  803. border: 1px dashed #000;
  804. }
  805. .column {
  806. cursor: move;
  807. }
  808. .animated {
  809. -webkit-animation-duration: .35s;
  810. animation-duration: .35s;
  811. -webkit-animation-fill-mode: both;
  812. animation-fill-mode: both
  813. }
  814. .animated.infinite {
  815. -webkit-animation-iteration-count: infinite;
  816. animation-iteration-count: infinite
  817. }
  818. @-webkit-keyframes fadeIn {
  819. from {
  820. opacity: 0
  821. }
  822. to {
  823. opacity: 1
  824. }
  825. }
  826. @keyframes fadeIn {
  827. from {
  828. opacity: 0
  829. }
  830. to {
  831. opacity: 1
  832. }
  833. }
  834. .fadeIn {
  835. -webkit-animation-name: fadeIn;
  836. animation-name: fadeIn
  837. }
  838. @font-face {
  839. font-family: 'fontello';
  840. src: url('../font/fontello.eot?70736739');
  841. 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');
  842. font-weight: normal;
  843. font-style: normal;
  844. }
  845. [class^="icon-"],
  846. [class*=" icon-"] {
  847. display: inline-block;
  848. font: normal normal normal 14px/1 fontello, Microsoft YaHei;
  849. font-size: inherit;
  850. text-rendering: auto;
  851. -webkit-font-smoothing: antialiased;
  852. -moz-osx-font-smoothing: grayscale;
  853. }
  854. .icon-left:before {
  855. content: '\e800';
  856. }
  857. /* '' */
  858. .icon-right:before {
  859. content: '\e801';
  860. }
  861. /* '' */
  862. .icon-cancel:before {
  863. content: '\e802';
  864. }
  865. /* '' */
  866. .icon-minus:before {
  867. content: '\e803';
  868. }
  869. /* '' */
  870. .icon-menu:before {
  871. content: '\e804';
  872. }
  873. /* '' */
  874. .icon-play-circled2:before {
  875. content: '\e805';
  876. }
  877. /* '' */
  878. .icon-play:before {
  879. content: '\e806';
  880. }
  881. /* '' */
  882. .icon-lock:before {
  883. content: '\e807';
  884. }
  885. /* '' */
  886. .icon-plus:before {
  887. content: '\e808';
  888. }
  889. /* '' */
  890. .icon-cog:before {
  891. content: '\e809';
  892. }
  893. /* '' */
  894. .icon-cw:before {
  895. content: '\e80a';
  896. }
  897. /* '' */
  898. .icon-times:before {
  899. content: '\ebc4';
  900. }
  901. /* '' */
  902. .icon-window-maximize:before {
  903. content: '\ec0f';
  904. }
  905. /* '' */
  906. .icon-window-minimize:before {
  907. content: '\ec10';
  908. }
  909. /* '' */
  910. .icon-window-restore:before {
  911. content: '\ec11';
  912. }
  913. /* '' */
  914. .icon-angle-up:before {
  915. content: '\f106';
  916. }
  917. /* '' */
  918. .icon-angle-down:before {
  919. content: '\f107';
  920. }
  921. /* '' */
  922. .icon-ellipsis-vert:before {
  923. content: '\f142';
  924. }
  925. /* '' */
  926. /*滚动条*/
  927. *::-webkit-scrollbar {
  928. width: 7px;
  929. height: 7px;
  930. background: none;
  931. }
  932. *::-webkit-scrollbar-button {
  933. display: none;
  934. }
  935. *::-webkit-scrollbar-track {
  936. background: none;
  937. }
  938. *::-webkit-scrollbar-track-piece {
  939. display: none;
  940. }
  941. *::-webkit-scrollbar-thumb {
  942. background: rgba(0, 0, 0, 0.3);
  943. position: absolute;
  944. width: 3px;
  945. right: 0;
  946. top: 0;
  947. bottom: 0;
  948. visibility: hidden\9;
  949. /* Target only IE7 and IE8 with this hack */
  950. opacity: .01;
  951. -webkit-transition: .2s;
  952. -moz-transition: .2s;
  953. -o-transition: .2s;
  954. transition: .2s;
  955. -moz-border-radius: 3px;
  956. -webkit-border-radius: 3px;
  957. border-radius: 3px;
  958. }
  959. *::-webkit-scrollbar-thumb:active,
  960. *::-webkit-scrollbar-thumb:hover {
  961. background: rgba(0, 0, 0, .50);
  962. }
  963. *::-webkit-scrollbar-corner {
  964. display: none;
  965. }
  966. *::-webkit-scrollbar-resizer {
  967. display: none;
  968. }