browser.css 21 KB

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