browser.css 20 KB

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