article.css 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614
  1. body {
  2. background: #eee;
  3. }
  4. .topmenu {
  5. background: #ddd;
  6. }
  7. .fart-editor-content .menu, .fart-editor-menu nav, .fart-editor-content .con2 .con .itembox, .fart-preview .title, .adddiv, .fart-editor-menu .savebtn {
  8. moz-user-select: -moz-none;
  9. -moz-user-select: none;
  10. -o-user-select: none;
  11. -khtml-user-select: none;
  12. -webkit-user-select: none;
  13. -ms-user-select: none;
  14. user-select: none;
  15. }
  16. .loading {
  17. background: #ddd;
  18. border: 1px solid #ccc;
  19. color: #999;
  20. }
  21. .mylink-con {
  22. height: 300px;
  23. overflow-y: auto;
  24. }
  25. .mylink-line {
  26. height: 36px;
  27. border-bottom: 1px dashed #eee;
  28. line-height: 36px;
  29. color: #999;
  30. }
  31. .mylink-sub {
  32. height: 36px;
  33. width: 50px;
  34. padding-right: 15px;
  35. float: right;
  36. text-align: right;
  37. }
  38. .mylink-con .good {
  39. height: 70px;
  40. width: 330px;
  41. padding: 5px;
  42. margin: 5px 2px 0px;
  43. background: #f5f5f5;
  44. float: left;
  45. }
  46. .mylink-con .good .img {
  47. height: 60px;
  48. width: 60px;
  49. background: #eee;
  50. float: left;
  51. }
  52. .mylink-con .good .img img {
  53. height: 100%;
  54. width: 100%;
  55. border: 0px;
  56. display: block;
  57. }
  58. .mylink-con .good .choosebtn {
  59. height: 60px;
  60. width: 80px;
  61. float: right;
  62. line-height: 30px;
  63. text-align: right;
  64. }
  65. .mylink-con .good .info {
  66. height: 60px;
  67. word-break: break-all;
  68. padding-left: 70px;
  69. color: #999;
  70. }
  71. .mylink-con .good .info-title {
  72. height: 40px;
  73. line-height: 20px;
  74. overflow: hidden;
  75. }
  76. .mylink-con .good .info-price {
  77. height: 20px;
  78. line-height: 20px;
  79. font-size: 12px;
  80. }
  81. .fart-main ::-webkit-scrollbar {
  82. width: 6px;
  83. }
  84. .fart-main ::-webkit-scrollbar-track {
  85. }
  86. .fart-main ::-webkit-scrollbar-thumb {
  87. background: rgba(0, 0, 0, 0.2);
  88. }
  89. .fart-main ::-webkit-scrollbar-thumb:window-inactive {
  90. background: rgba(0, 0, 0, 0.1);
  91. }
  92. .fart-main ::-webkit-scrollbar-thumb:vertical:hover {
  93. background-color: rgba(0, 0, 0, 0.3);
  94. }
  95. .fart-main ::-webkit-scrollbar-thumb:vertical:active {
  96. background-color: rgba(0, 0, 0, 0.5);
  97. }
  98. .edui-default .edui-editor-toolbarboxouter, .edui-default .edui-editor-toolbarbox {
  99. border: 0px;
  100. border-radius: 0px
  101. }
  102. .datetimepicker {
  103. margin: 0px;
  104. }
  105. section a, section a:hover {
  106. color: inherit;
  107. }
  108. .fart-main {
  109. height: auto;
  110. width: 1400px;
  111. overflow: hidden;
  112. }
  113. .fart-preview {
  114. height: 800px;
  115. width: 400px;
  116. float: left;
  117. background: #f1f1f1;
  118. }
  119. .fart-preview section {
  120. padding: 0px;
  121. margin: 0px;
  122. }
  123. .fart-preview .title {
  124. height: 50px;
  125. background: #00a8e8;
  126. color: #fff;
  127. text-align: center;
  128. line-height: 50px;
  129. font-size: 18px;
  130. cursor: default;
  131. display: none;
  132. }
  133. .fart-preview .top {
  134. height: 50px;
  135. background: #3366d7;
  136. background: #3e4144 url('./top_bg.png') center -3px no-repeat;
  137. overflow: hidden;
  138. cursor: default;
  139. }
  140. .fart-preview .top p {
  141. height: 20px;
  142. width: 260px;
  143. margin: auto;
  144. font-size: 16px;
  145. color: #fff;
  146. margin-top: 24px;
  147. text-align: center;
  148. line-height: 20px;
  149. overflow: hidden;
  150. white-space: nowrap;
  151. text-overflow: ellipsis;
  152. content: "...";
  153. }
  154. .fart-preview .main {
  155. height: 750px;
  156. overflow-y: auto;
  157. }
  158. .fart-rich-primary {
  159. min-height: 750px;
  160. padding: 20px 15px 15px;
  161. background: #fff;
  162. cursor: default;
  163. }
  164. .fart-rich-title {
  165. margin-bottom: 10px;
  166. line-height: 1.4;
  167. font-weight: 400;
  168. font-size: 24px;
  169. }
  170. .fart-rich-mate {
  171. margin-bottom: 18px;
  172. line-height: 20px;
  173. overflow: hidden;
  174. }
  175. .fart-rich-mate-text {
  176. margin-right: 8px;
  177. margin-bottom: 10px;
  178. font-size: 16px;
  179. color: #8c8c8c;
  180. float: left;
  181. }
  182. .fart-rich-mate .href {
  183. color: #607fa6;
  184. }
  185. .fart-rich-content {
  186. /* min-height: 544px; */
  187. height: 544px;
  188. overflow-y: auto;
  189. font-size: 16px;
  190. }
  191. .fart-rich-content img {
  192. max-width: 100%;
  193. }
  194. .fart-rich-tool {
  195. height: auto;
  196. padding-top: 15px;
  197. line-height: 32px;
  198. overflow: hidden;
  199. }
  200. .fart-rich-tool-text {
  201. margin-right: 10px;
  202. font-size: 16px;
  203. color: #8c8c8c;
  204. text-decoration: none;
  205. float: left;
  206. }
  207. .fart-rich-tool .link {
  208. color: #607fa6;
  209. }
  210. .fart-rich-tool .right {
  211. float: right;
  212. }
  213. .fart-rich-tool-like {
  214. height: 13px;
  215. width: 13px;
  216. margin-left: 8px;
  217. background: url('./like.png') 0 0 no-repeat;
  218. background-size: 100% auto;
  219. display: inline-block;
  220. }
  221. .fart-rich-sift {
  222. height: auto;
  223. background: #ddd;
  224. padding: 30px 15px 0px;
  225. display: none;
  226. }
  227. .fart-rich-sift-line {
  228. height: 21px;
  229. position: relative;
  230. }
  231. .fart-rich-sift-border {
  232. height: 0px;
  233. width: 100%;
  234. border-top: 1px dashed #eee;
  235. position: absolute;
  236. top: 10px;
  237. left: 0px;
  238. z-index: 1;
  239. }
  240. .fart-rich-sift-text {
  241. height: 21px;
  242. width: 100%;
  243. font-size: 14px;
  244. color: #999;
  245. line-height: 21px;
  246. text-align: center;
  247. font-size: 16px;
  248. z-index: 2;
  249. position: absolute;
  250. top: 0px;
  251. left: 0px;
  252. }
  253. .fart-rich-sift-text a {
  254. display: inline-block;
  255. padding: 0px 5px;
  256. background: #ddd;
  257. color: #999;
  258. height: 21px;
  259. max-width: 80%;
  260. overflow: hidden;
  261. white-space: nowrap;
  262. text-overflow: ellipsis;
  263. content: "...";
  264. }
  265. .fart-rich-sift-img {
  266. min-height: 10px;
  267. background: #fff;
  268. margin-top: 12px;
  269. padding: 6px;
  270. }
  271. .fart-rich-sift-img img {
  272. width: 100%;
  273. border: 0px;
  274. display: block;
  275. }
  276. .fart-rich-sift-more {
  277. line-height: 60px;
  278. font-size: 16px;
  279. color: #607fa6;
  280. text-align: center;
  281. height: 60px;
  282. margin: auto;
  283. max-width: 80%;
  284. overflow: hidden;
  285. white-space: nowrap;
  286. text-overflow: ellipsis;
  287. content: "...";
  288. }
  289. .fart-editor {
  290. height: 800px;
  291. width: 1000px;
  292. background: #f1f1f1;
  293. float: left;
  294. font-weight: 100;
  295. }
  296. .fart-editor-menu {
  297. height: 50px;
  298. background: #00a8e8;
  299. }
  300. .fart-editor-menu nav {
  301. height: 50px;
  302. width: 30%;
  303. text-align: center;
  304. line-height: 50px;
  305. font-size: 18px;
  306. color: #fff;
  307. float: left;
  308. cursor: pointer;
  309. }
  310. .fart-editor-menu .navon {
  311. background: #00b3f7;
  312. }
  313. .fart-editor-menu .savebtn {
  314. height: 50px;
  315. width: 10%;
  316. background: #6c9;
  317. float: left;
  318. line-height: 50px;
  319. text-align: center;
  320. font-size: 18px;
  321. color: #fff;
  322. cursor: pointer;
  323. }
  324. .fart-editor-content {
  325. height: 750px;
  326. background: #f1f1f1;
  327. display: none;
  328. overflow: hidden;
  329. }
  330. .fart-editor-content .menu {
  331. height: 40px;
  332. cursor: default;
  333. }
  334. .fart-editor-content .nav1 {
  335. height: 40px;
  336. width: 500px;
  337. background: #ffba75;
  338. font-size: 16px;
  339. color: #fff;
  340. line-height: 40px;
  341. text-align: center;
  342. float: left;
  343. position: relative;
  344. }
  345. .fart-editor-content .nav1 .trash {
  346. height: 24px;
  347. width: 24px;
  348. position: absolute;
  349. top: 8px;
  350. right: 8px;
  351. font-size: 20px;
  352. line-height: 24px;
  353. text-align: center;
  354. cursor: pointer;
  355. }
  356. .fart-editor-content .nav2 {
  357. height: 40px;
  358. width: 500px;
  359. background: #b4b4da;
  360. font-size: 16px;
  361. color: #fff;
  362. line-height: 40px;
  363. text-align: center;
  364. float: left;
  365. position: relative;
  366. }
  367. .fart-editor-content .nav2 .tip {
  368. height: 20px;
  369. width: 40px;
  370. position: absolute;
  371. right: 55px;
  372. top: 10px;
  373. font-size: 12px;
  374. color: #fff;
  375. line-height: 20px;
  376. text-align: center;
  377. }
  378. .fart-editor-content .nav2 .color {
  379. height: 20px;
  380. width: 40px;
  381. position: absolute;
  382. right: 15px;
  383. top: 10px;
  384. cursor: pointer;
  385. border: 0px;
  386. padding: 0px;
  387. outline: none;
  388. }
  389. .fart-editor-content .nav2 .color::-webkit-color-swatch-wrapper {
  390. border: 0px;
  391. padding: 0px;
  392. }
  393. .fart-editor-content .content {
  394. height: 710px;
  395. }
  396. .fart-editor-content .con1 {
  397. height: 710px;
  398. width: 500px;
  399. background: #f4f4f4;
  400. float: left;
  401. }
  402. .fart-editor-content .con2 {
  403. height: 710px;
  404. width: 500px;
  405. background: #f4f4f4;
  406. float: left;
  407. }
  408. .fart-editor-content .con2 .tab {
  409. height: 710px;
  410. width: 74px;
  411. background: #ccc;
  412. float: left;
  413. }
  414. .fart-editor-content .con2 .tab .nav {
  415. height: 42px;
  416. line-height: 42px;
  417. text-align: center;
  418. font-size: 16px;
  419. color: #fff;
  420. cursor: pointer;
  421. }
  422. .fart-editor-content .con2 .tab .navon {
  423. background: #aaa;
  424. }
  425. .fart-editor-content .con2 .con {
  426. height: 710px;
  427. width: 426px;
  428. float: left;
  429. display: none;
  430. overflow-y: auto;
  431. background: #fff;
  432. }
  433. .fart-editor-content .con2 .con img {
  434. max-width: 100%;
  435. }
  436. .fart-editor-content .con2 .con .itembox {
  437. border-bottom: 1px dashed #ddd;
  438. padding: 10px;
  439. cursor: pointer;
  440. }
  441. .fart-form {
  442. min-height: 500px;
  443. padding: 40px;
  444. }
  445. .fart-form input::-webkit-input-placeholder {
  446. color: #999;
  447. }
  448. .fart-form input {
  449. color: #333;
  450. }
  451. .fart-form .line {
  452. height: auto;
  453. overflow: hidden;
  454. }
  455. .fart-form .line2 {
  456. height: auto;
  457. width: 455px;
  458. float: left;
  459. }
  460. .fart-form .product {
  461. display: none;
  462. }
  463. .fart-form .product .advs {
  464. min-height: 10px;
  465. background: #eee;
  466. padding: 5px;
  467. margin-bottom: 15px;
  468. border: 2px dashed #ccc;
  469. border-radius: 5px;
  470. overflow: hidden;
  471. }
  472. .fart-form .product .advs .addbtn {
  473. height: 40px;
  474. border: 2px dashed #ccc;
  475. line-height: 40px;
  476. font-size: 18px;
  477. color: #bbb;
  478. text-align: center;
  479. cursor: pointer;
  480. margin: 5px;
  481. background: #fff;
  482. }
  483. .fart-form .product .adv {
  484. height: 100px;
  485. background: #fff;
  486. border: 1px solid #ddd;
  487. margin: 5px;
  488. padding: 5px;
  489. border-radius: 5px;
  490. position: relative;
  491. }
  492. .fart-form .product .adv .img {
  493. height: 88px;
  494. width: auto;
  495. min-width: 88px;
  496. max-width: 250px;
  497. background: #ccc;
  498. float: left;
  499. margin-right: 15px;
  500. }
  501. .fart-form .product .adv .img img {
  502. height: 100%;
  503. width: auto;
  504. }
  505. .fart-form .product .adv .info {
  506. height: 90px;
  507. }
  508. .fart-form .product .adv .del {
  509. height: 24px;
  510. width: 24px;
  511. background: rgba(0, 0, 0, 0.5);
  512. text-align: center;
  513. line-height: 24px;
  514. color: #fff;
  515. font-size: 18px;
  516. position: absolute;
  517. top: -10px;
  518. right: -10px;
  519. border-radius: 30px;
  520. cursor: pointer;
  521. }
  522. .page-header {
  523. height: 40px;
  524. }
  525. .mylink-nav {
  526. margin: 5px 0;
  527. }