kancloud.css 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995
  1. html,body {
  2. height: 100%;
  3. font-size: 12px;
  4. }
  5. body,form,ul,ol,table,input,button,p,h1,h2,h3,h4,h5,h6,blockquote,pre,dl,dt,dd,div,span,b,i {
  6. margin: 0;
  7. padding: 0;
  8. -webkit-tap-highlight-color: transparent;
  9. }
  10. body {
  11. color: #222;
  12. background-color: #fff;
  13. font-size: 14px;
  14. word-wrap: break-word;
  15. line-height: 1em;
  16. }
  17. input,select,textarea,button,body,code {
  18. font-family: "Microsoft Yahei","Helvetica Neue",Helvetica,Arial,sans-serif
  19. }
  20. h1 {
  21. font-size: 2.25em;
  22. font-weight: 500;
  23. }
  24. h2 {
  25. font-size: 1.75em;
  26. font-weight: 500;
  27. }
  28. h3 {
  29. font-size: 1.5em;
  30. font-weight: 500
  31. }
  32. h4 {
  33. font-size: 1.2em;
  34. font-weight: 300
  35. }
  36. h5 {
  37. font-size: 1.0em;
  38. font-weight: 300
  39. }
  40. h6 {
  41. font-size: .8em;
  42. font-weight: 200
  43. }
  44. .m-manual:not(.manual-mobile) ::-webkit-scrollbar {
  45. height: 10px;
  46. width: 7px;
  47. background: rgba(0,0,0,.1);
  48. }
  49. .m-manual:not(.manual-mobile) ::-webkit-scrollbar:hover {
  50. background: rgba(0,0,0,.2)
  51. }
  52. .m-manual:not(.manual-mobile) ::-webkit-scrollbar-thumb {
  53. background: rgba(0,0,0,.3);
  54. -webkit-border-radius: 6px;
  55. -moz-border-radius: 6px;
  56. -ms-border-radius: 6px;
  57. -o-border-radius: 6px;
  58. border-radius: 6px
  59. }
  60. .m-manual:not(.manual-mobile)::-webkit-scrollbar-thumb:hover {
  61. -webkit-box-shadow: inset 1px 1px 1px rgba(0,0,0,.25);
  62. -moz-box-shadow: inset 1px 1px 1px rgba(0,0,0,.25);
  63. -ms-box-shadow: inset 1px 1px 1px rgba(0,0,0,.25);
  64. -o-box-shadow: inset 1px 1px 1px rgba(0,0,0,.25);
  65. box-shadow: inset 1px 1px 1px rgba(0,0,0,.25);
  66. background-color: rgba(0,0,0,.4)
  67. }
  68. .m-manual.manual-reader .manual-head .slidebar {
  69. display: none
  70. }
  71. .m-manual .manual-head {
  72. min-width: 980px;
  73. height: 54px;
  74. line-height: 54px;
  75. padding: 0 .8em;
  76. z-index: 900;
  77. position: fixed;
  78. top: 0;
  79. left: 0;
  80. right: 0;
  81. background-color: #fff;
  82. transition-property: top;
  83. transition-duration: .3s;
  84. transition-timing-function: linear;
  85. transition-delay: 0s;
  86. -moz-transition-property: top;
  87. -moz-transition-duration: .3s;
  88. -moz-transition-timing-function: linear;
  89. -moz-transition-delay: 0s;
  90. -webkit-transition-property: top;
  91. -webkit-transition-duration: .3s;
  92. -webkit-transition-timing-function: linear;
  93. -webkit-transition-delay: 0s;
  94. -o-transition-property: top;
  95. -o-transition-duration: .3s;
  96. -o-transition-timing-function: linear;
  97. -o-transition-delay: 0s
  98. }
  99. .m-manual .slidebar{
  100. display: none;
  101. }
  102. .m-manual .manual-head .manual-title{
  103. display: inline-block;
  104. height: 30px;
  105. line-height: 54px;
  106. color: #333;
  107. font-size: 16px;
  108. font-weight: bold;
  109. }
  110. .m-manual .manual-tab {
  111. position: absolute;
  112. top: 0;
  113. bottom: 0;
  114. left: 0;
  115. right: 0
  116. }
  117. .m-manual .manual-left {
  118. position: absolute;
  119. left: 0;
  120. top: 55px;
  121. z-index: 301;
  122. bottom: 0;
  123. width: 279px;
  124. border-right: 1px solid #ddd;
  125. background-color: #fafafa;
  126. }
  127. .m-manual .manual-tab .tab-navg {
  128. zoom:1;border-bottom: 1px solid #ddd
  129. }
  130. .m-manual .manual-tab .tab-navg {
  131. zoom:1;border-bottom: 1px solid #ddd
  132. }
  133. .m-manual .manual-tab .tab-util {
  134. position: absolute;
  135. top: 50%;
  136. right: -14px
  137. }
  138. .m-manual .manual-tab .tab-util .item {
  139. color: #999;
  140. cursor: pointer;
  141. height: 24px;
  142. line-height: 24px;
  143. display: inline-block;
  144. margin-top: 4px
  145. }
  146. .manual-fullscreen-switch {
  147. display: block
  148. }
  149. .manual-fullscreen-switch .open,.manual-fullscreen-switch .close {
  150. display: inline-block;
  151. width: 30px;
  152. height: 30px;
  153. cursor: pointer;
  154. background-color: #5cb85c;
  155. border-radius: 50%;
  156. color: #fff;
  157. position: relative;
  158. font-size: 16px;
  159. vertical-align: top;
  160. opacity : 1;
  161. text-shadow:none;
  162. font-weight: 400;
  163. }
  164. .manual-fullscreen-switch .open:hover,.manual-fullscreen-switch .close:hover {
  165. background-color: #449d44;
  166. }
  167. .manual-fullscreen-switch .open:before,.manual-fullscreen-switch .close:before {
  168. position: absolute;
  169. top: 7px;
  170. right: 5px;
  171. }
  172. .manual-fullscreen-switch .open {
  173. display: none;
  174. }
  175. .m-manual.manual-fullscreen-active .manual-fullscreen-switch {
  176. /*margin-top: 30px;*/
  177. }
  178. .m-manual.manual-fullscreen-active .manual-fullscreen-switch .open {
  179. display: inline-block;
  180. }
  181. .m-manual.manual-fullscreen-active .manual-fullscreen-switch .close {
  182. display: none;
  183. }
  184. .m-manual.manual-fullscreen-active .manual-left .m-copyright,.m-manual.manual-fullscreen-active .manual-left .tab-navg,.m-manual.manual-fullscreen-active .manual-left .tab-wrap{
  185. display: none;
  186. }
  187. .m-manual.manual-fullscreen-active .manual-left{
  188. width: 0px;
  189. }
  190. .m-manual .manual-tab .tab-navg:after {
  191. content: '.';
  192. display: block;
  193. width: 0;
  194. height: 0;
  195. line-height: 9;
  196. overflow: hidden;
  197. clear: both;
  198. visibility: hidden;
  199. }
  200. .m-manual .manual-tab .tab-navg .navg-item {
  201. font-size: 14px;
  202. padding: 0 9px;
  203. cursor: pointer;
  204. float: left;
  205. height: 30px;
  206. line-height: 30px;
  207. color: #999
  208. }
  209. .m-manual .manual-tab .tab-navg .navg-item .fa {
  210. margin-right: 4px;
  211. color: #aaa
  212. }
  213. .m-manual .manual-tab .tab-navg .navg-item .text {
  214. font-weight: 200
  215. }
  216. .m-manual .manual-tab .tab-navg .navg-item.active,.m-manual .manual-tab .tab-navg .navg-item.active:hover,.m-manual .manual-tab .tab-navg .navg-item:hover {
  217. color: #333
  218. }
  219. .m-manual .manual-tab .tab-navg .navg-item.active .icon,.m-manual .manual-tab .tab-navg .navg-item.active:hover .icon,.m-manual .manual-tab .tab-navg .navg-item:hover .icon {
  220. color: #333
  221. }
  222. .m-manual .manual-catalog {
  223. display: block !important;
  224. }
  225. .m-manual .manual-tab .tab-navg .navg-item.active {
  226. border-bottom: 1px solid #fafafa;
  227. margin-bottom: -1px;
  228. border-left: 1px solid #ddd;
  229. border-right: 1px solid #ddd;
  230. padding-left: 8px;
  231. padding-right: 8px
  232. }
  233. .m-manual .manual-tab .tab-item {
  234. display: none;
  235. position: absolute;
  236. top: 31px;
  237. bottom: 0;
  238. left: 0;
  239. right: 0;
  240. overflow-y: auto;
  241. background-color: #fafafa;
  242. margin-bottom: 35px;
  243. }
  244. .m-manual .manual-tab .tab-item.active {
  245. display: block
  246. }
  247. .m-manual .manual-left .m-copyright {
  248. border-top: 0;
  249. background: #fafafa;
  250. border-top: 1px solid #ccc;
  251. opacity: 1;
  252. filter: alpha(opacity=100);
  253. position: absolute;
  254. bottom: 0;
  255. margin: 0;
  256. font-size: 12px;
  257. z-index: 999;
  258. height: auto;
  259. width: 100%;
  260. padding: 5px 0;
  261. text-align: center;
  262. line-height: 24px
  263. }
  264. .m-manual .manual-right {
  265. position: absolute;
  266. left: 280px;
  267. top: 55px;
  268. z-index: 300;
  269. overflow-y: auto;
  270. bottom: 0;
  271. right: 0;
  272. transition-property: top;
  273. transition-duration: .3s;
  274. transition-timing-function: linear;
  275. transition-delay: 0s;
  276. -moz-transition-property: top;
  277. -moz-transition-duration: .3s;
  278. -moz-transition-timing-function: linear;
  279. -moz-transition-delay: 0s;
  280. -webkit-transition-property: top;
  281. -webkit-transition-duration: .3s;
  282. -webkit-transition-timing-function: linear;
  283. -webkit-transition-delay: 0s;
  284. -o-transition-property: top;
  285. -o-transition-duration: .3s;
  286. -o-transition-timing-function: linear;
  287. -o-transition-delay: 0s
  288. }
  289. .m-manual.manual-fullscreen-active .manual-right{
  290. left: 0;
  291. }
  292. .m-manual .manual-right .manual-article{
  293. background: #ffffff;
  294. }
  295. .manual-article .article-head {
  296. position: relative;
  297. zoom:1;padding: 10px 20px
  298. }
  299. .manual-article .article-head h1 {
  300. margin: 0;
  301. font-size: 20px;
  302. font-weight: 200;
  303. text-align: center;
  304. line-height: 30px;
  305. overflow: hidden;
  306. text-overflow: ellipsis;
  307. white-space: nowrap;
  308. color: #7e888b
  309. }
  310. .manual-article .article-content{
  311. min-width: 980px;
  312. max-width: 98%;
  313. padding: 10px 20px;
  314. margin-left: auto!important;
  315. margin-right: auto!important
  316. }
  317. @media screen and (max-width: 840px) {
  318. .manual-article .article-content{
  319. min-width: inherit;
  320. }
  321. }
  322. .manual-article .article-content .article-body{
  323. min-height: 90px;
  324. padding: 5px;
  325. }
  326. .m-manual .manual-progress {
  327. position: fixed;
  328. top: 54px;
  329. left: 0;
  330. right: 0;
  331. height: 1px;
  332. z-index: 302;
  333. background-color: #ddd;
  334. transition-property: top;
  335. transition-duration: .3s;
  336. transition-timing-function: linear;
  337. transition-delay: 0s;
  338. -moz-transition-property: top;
  339. -moz-transition-duration: .3s;
  340. -moz-transition-timing-function: linear;
  341. -moz-transition-delay: 0s;
  342. -webkit-transition-property: top;
  343. -webkit-transition-duration: .3s;
  344. -webkit-transition-timing-function: linear;
  345. -webkit-transition-delay: 0s;
  346. -o-transition-property: top;
  347. -o-transition-duration: .3s;
  348. -o-transition-timing-function: linear;
  349. -o-transition-delay: 0s
  350. }
  351. .m-manual .manual-progress .progress-bar {
  352. display: block;
  353. background-color: #136ec2;
  354. height: 100%
  355. }
  356. .m-comment{
  357. margin: 30px auto 70px auto;
  358. }
  359. .m-comment .comment-result .title {
  360. display: block;
  361. font-size: 16px;
  362. padding-bottom: 6px;
  363. line-height: 1.5em;
  364. border-bottom: 1px solid #ddddd9;
  365. margin-bottom: 10px;
  366. }
  367. .w-textarea.textarea-full {
  368. display: block;
  369. }
  370. .w-fragment.fragment-tip {
  371. color: #999;
  372. }
  373. .w-textarea .textarea-input {
  374. font-size: 14px;
  375. padding: 5px 10px;
  376. border-radius: 3px;
  377. border: 1px solid #ccc;
  378. line-height: 1.7em;
  379. font-weight: 200;
  380. }
  381. .m-comment .comment-post .form .enter textarea {
  382. resize: none;
  383. min-height: 72px;
  384. overflow: hidden;
  385. width: 100%;
  386. }
  387. .m-comment .comment-list {
  388. padding-bottom: 12px
  389. }
  390. .m-comment .comment-post {
  391. padding-bottom: 35px
  392. }
  393. .m-comment .comment-item {
  394. position: relative;
  395. font-size: 1em;
  396. border-top: 1px dotted #eee;
  397. margin-bottom: -1px;
  398. padding: 12px 0;
  399. line-height: 1.7em
  400. }
  401. .m-comment .comment-item .avatar {
  402. position: absolute;
  403. left: 0;
  404. top: 12px;
  405. display: inline-block;
  406. border-radius: 50%;
  407. background: #eee
  408. }
  409. .m-comment .comment-item .avatar img {
  410. border-radius: 50%
  411. }
  412. .m-comment .comment-item .date {
  413. font-weight: 200;
  414. color: #999;
  415. margin-left: 12px
  416. }
  417. .m-comment .comment-item .name {
  418. color: #136ec2
  419. }
  420. .m-comment .comment-item .content {
  421. margin: 6px 0 9px;
  422. font-size: 1.14em;
  423. padding: 3px 0
  424. }
  425. .m-comment .comment-item .content pre {
  426. padding: 16px;
  427. overflow: auto;
  428. font-size: 85%;
  429. line-height: 1.45;
  430. background-color: #f7f7f7;
  431. border: 0;
  432. border-radius: 3px;
  433. font-family: Consolas,"Liberation Mono",Menlo,Courier,monospace
  434. }
  435. .m-comment .comment-item .content pre>code {
  436. display: inline;
  437. max-width: 100%;
  438. padding: 0;
  439. margin: 0;
  440. overflow: initial;
  441. line-height: inherit;
  442. background-color: transparent;
  443. border: 0;
  444. font-size: 100%
  445. }
  446. .m-comment .comment-item .operate {
  447. position: absolute;
  448. top: 12px;
  449. right: 0;
  450. height: 24px;
  451. line-height: 24px
  452. }
  453. .m-comment .comment-item .operate .number {
  454. color: #999
  455. }
  456. .m-comment .comment-item .operate .delete {
  457. display: none
  458. }
  459. .m-comment .comment-item:hover .operate.toggle .delete {
  460. display: inline-block
  461. }
  462. .m-comment .comment-item:hover .operate.toggle .number {
  463. display: none
  464. }
  465. .m-comment .comment-item .info {
  466. height: 24px;
  467. line-height: 24px
  468. }
  469. .m-comment .comment-item .vote {
  470. display: inline-block;
  471. margin-right: 12px
  472. }
  473. .m-comment .comment-item .vote .agree,.m-comment .comment-item .vote .oppose {
  474. display: inline-block;
  475. vertical-align: top;
  476. width: 30px;
  477. height: 30px;
  478. text-align: center;
  479. line-height: 30px;
  480. background-color: #f5f5f5;
  481. color: #666666;
  482. }
  483. .m-comment .comment-item .vote .agree:hover,.m-comment .comment-item .vote .oppose:hover{
  484. color: #333333;
  485. }
  486. .m-comment .comment-item .vote .count {
  487. height: 30px;
  488. line-height: 30px;
  489. color: #999;
  490. display: inline-block;
  491. text-align: center;
  492. padding: 0 6px;
  493. min-width: 12px;
  494. font-weight: 200;
  495. vertical-align: top;
  496. background-color: #f5f5f5;
  497. border-left: 1px solid #eee;
  498. border-right: 1px solid #eee
  499. }
  500. .m-comment .comment-item .vote .agree {
  501. border-top-right-radius: 0;
  502. border-bottom-right-radius: 0
  503. }
  504. .m-comment .comment-item .vote .oppose {
  505. border-top-left-radius: 0;
  506. border-bottom-left-radius: 0
  507. }
  508. .m-comment .comment-item .vote.disabled .agree,.m-comment .comment-item .vote.disabled .oppose {
  509. cursor: default
  510. }
  511. .m-comment .comment-item .vote.disabled .agree i,.m-comment .comment-item .vote.disabled .oppose i {
  512. color: #ccc
  513. }
  514. .m-comment .comment-item .vote.disabled .agree:hover i,.m-comment .comment-item .vote.disabled .oppose:hover i {
  515. color: #ccc
  516. }
  517. .m-comment .comment-item .reply {
  518. float: right;
  519. line-height: 30px;
  520. display: none
  521. }
  522. .m-comment .comment-item:hover .reply {
  523. display: inline-block
  524. }
  525. .m-comment .comment-empty {
  526. text-align: center;
  527. display: block;
  528. padding-top: 36px;
  529. padding-bottom: 36px
  530. }
  531. .m-comment .comment-empty .text {
  532. color: #666;
  533. font-weight: 200
  534. }
  535. .m-comment .comment-empty.empty-active {
  536. display: block
  537. }
  538. .m-comment .comment-more,.m-comment .comment-replace {
  539. display: none;
  540. text-align: center;
  541. margin-bottom: 24px
  542. }
  543. .m-comment .comment-more .more-inner,.m-comment .comment-replace .more-inner {
  544. display: inline-block;
  545. text-align: center;
  546. height: 36px;
  547. line-height: 36px;
  548. cursor: pointer;
  549. min-width: 300px;
  550. border-radius: 4px;
  551. border: 1px solid #aaa
  552. }
  553. .m-comment .comment-more .more-inner:hover,.m-comment .comment-replace .more-inner:hover {
  554. background-color: #f3f3f3;
  555. border-color: #888
  556. }
  557. .m-comment .comment-more .more-inner:active,.m-comment .comment-replace .more-inner:active {
  558. box-shadow: 0 3px 6px rgba(99,99,99,.1) inset
  559. }
  560. .m-comment .comment-more.more-active,.m-comment .comment-replace.more-active {
  561. display: block
  562. }
  563. .m-comment .comment-more.replace-active,.m-comment .comment-replace.replace-active {
  564. display: block
  565. }
  566. .m-comment .think-loading.loading-ripple-empty {
  567. text-align: center
  568. }
  569. .m-comment .comment-post-disabeld {
  570. display: none;
  571. height: 72px;
  572. border: 1px solid #ccc;
  573. border-radius: 3px;
  574. padding: 5px 10px;
  575. text-align: center;
  576. line-height: 72px
  577. }
  578. .m-comment.comment-disabled .comment-post {
  579. display: none
  580. }
  581. .m-comment.comment-disabled .comment-post-disabeld {
  582. display: block
  583. }
  584. .editor-content {
  585. line-height: 1.7em;
  586. font-size: 14px
  587. }
  588. .editor-content p{
  589. margin-bottom: 14px;
  590. line-height: 1.7em;
  591. font-size: 1.3rem;
  592. color: #5D5D5D;
  593. }
  594. .editor-content a {
  595. color: #3eb1d0
  596. }
  597. .editor-content h1 {
  598. font-size: 1.7rem;
  599. line-height: 1.2
  600. }
  601. .editor-content h2 {
  602. padding-bottom: 0.3em;
  603. font-size: 1.6rem;
  604. line-height: 2.5em;
  605. border-bottom: 1px solid #eee
  606. }
  607. .editor-content h3 {
  608. font-size: 1.65rem;
  609. line-height: 2em;
  610. border-bottom: 1px solid #eee
  611. }
  612. .editor-content h4 {
  613. font-size: 1.5rem
  614. }
  615. .editor-content h5 {
  616. font-size: 1.45em
  617. }
  618. .editor-content h6 {
  619. font-size: 1.4em;
  620. color: #777
  621. }
  622. .editor-content br {
  623. display: block;
  624. margin: .2em
  625. }
  626. .editor-content hr {
  627. border: 0;
  628. border-bottom: 1px solid #ddd
  629. }
  630. .editor-content ul {
  631. padding-left: 28px
  632. }
  633. .editor-content ol {
  634. padding-left: 28px
  635. }
  636. .editor-content h1,.editor-content h2,.editor-content h3,.editor-content h4,.editor-content h5,.editor-content h6,.editor-content p,.editor-content ul,.editor-content ol,.editor-content blockquote,.teditor-content pre,.editor-content table {
  637. margin-bottom: 14px
  638. }
  639. .editor-content table {
  640. border-collapse: collapse;
  641. table-layout: fixed;
  642. display: block;
  643. width: 100%;
  644. overflow: auto;
  645. word-break: keep-all;
  646. margin: 10px 0
  647. }
  648. .editor-content th {
  649. text-align: left
  650. }
  651. .editor-content table thead tr{
  652. background-color: #0088CC;
  653. color: #ffffff;
  654. }
  655. .editor-content table tr:nth-child(2n) {
  656. background-color: #f8f8f8
  657. }
  658. .editor-content table td,.editor-content table th {
  659. padding: 6px 13px;
  660. border: 1px solid #ddd;
  661. }
  662. .editor-content img {
  663. max-width: 100%
  664. }
  665. .editor-content table pre {
  666. margin-bottom: 0
  667. }
  668. .editor-content table p {
  669. margin: 0
  670. }
  671. .editor-content blockquote {
  672. padding: 5px 5px 5px 15px;
  673. color: #777;
  674. border-left: 4px solid #ddd
  675. }
  676. .editor-content blockquote.info {
  677. border-left-color: #5bc0de;
  678. color: #5bc0de;
  679. background-color: #f4f8fa
  680. }
  681. .editor-content blockquote.warning {
  682. background-color: #fcf8f2;
  683. border-color: #f0ad4e;
  684. color: #f0ad4e
  685. }
  686. .editor-content blockquote.danger {
  687. color: #d9534f;
  688. background-color: #fdf7f7;
  689. border-color: #d9534f
  690. }
  691. .editor-content blockquote.success {
  692. background-color: #f3f8f3;
  693. border-color: #50af51;
  694. color: #50af51
  695. }
  696. .editor-content blockquote>:last-child {
  697. margin-bottom: 0
  698. }
  699. .editor-content .markdown-toc-list ul:only-child {
  700. padding-left: 0;
  701. margin-bottom: 0
  702. }
  703. .editor-content pre{
  704. border: 0;
  705. margin-bottom:14px;
  706. }
  707. .editor-content code, .editor-content pre {
  708. border-radius: 0;
  709. font-family: Menlo,Monaco,Consolas,"Courier New",monospace;
  710. }
  711. .editor-content pre>code{
  712. word-break: break-all;
  713. white-space: inherit;
  714. }
  715. .editor-content blockquote {
  716. border-color: inherit;
  717. color: inherit;
  718. background: 0
  719. }
  720. .hljs-line-numbers {
  721. text-align: right;
  722. border-right: 1px solid #ccc;
  723. color: #999;
  724. -webkit-touch-callout: none;
  725. -webkit-user-select: none;
  726. -khtml-user-select: none;
  727. -moz-user-select: none;
  728. -ms-user-select: none;
  729. user-select: none;
  730. }
  731. .editor-content .markdown-toc{
  732. padding: 15px 5px;
  733. background-color: #FFFFFF;
  734. line-height: 25px;
  735. border: 1px solid #CCCCCC;
  736. width: 300px;
  737. float: right;
  738. overflow-x: auto;
  739. margin: 0 0 10px 10px;
  740. }
  741. .http-method .default{
  742. width: 70px;
  743. display: inline-block;
  744. background-color: #333333;
  745. -webkit-border-radius: 3px;
  746. border-radius: 3px;
  747. vertical-align: middle;
  748. margin-bottom: 3px;
  749. margin-right: 15px;
  750. color: #FFF !important;
  751. font-size: 11px;
  752. height: 24px;
  753. line-height: 24px;
  754. text-transform: uppercase;
  755. text-align: center;
  756. -webkit-box-sizing: border-box;
  757. -moz-box-sizing: border-box;
  758. box-sizing: border-box;
  759. }
  760. .http-method .post{
  761. background-color: #F47023 !important;
  762. }
  763. .http-method .get{
  764. background-color:#27AE60 !important;
  765. }
  766. .http-method .put{
  767. background-color:#4A90E2!important;
  768. }
  769. .http-method .del{
  770. background-color:red!important;
  771. }
  772. .http-method .trace{
  773. background-color:#e09d43 !important;
  774. }
  775. @media screen and (max-width: 840px) {
  776. .m-manual.manual-reader {
  777. font-size:12px;
  778. min-width: initial
  779. }
  780. .m-manual.manual-reader .manual-head {
  781. min-width: initial
  782. }
  783. .m-manual.manual-reader .manual-head .manual-menu{
  784. display: none;
  785. }
  786. .m-manual.manual-reader .manual-body {
  787. padding-left: 0
  788. }
  789. .m-manual.manual-reader .manual-left {
  790. width: 80%;
  791. max-width: 360px;
  792. left: -80%;
  793. top: 0;
  794. z-index: 4000
  795. }
  796. .m-manual.manual-reader .manual-head .pull-left {
  797. right: 0;
  798. left: 0;
  799. position: relative
  800. }
  801. .m-manual.manual-reader .manual-head .pull-left .slidebar {
  802. display: inline-block;
  803. /*position: absolute;*/
  804. /*left: 0;*/
  805. /*top: 0;*/
  806. /*font-size: 20px*/
  807. }
  808. .m-manual.manual-reader .manual-head .pull-left .slidebar i {
  809. display: inline-block;
  810. vertical-align: top;
  811. margin-top: 20px;
  812. line-height: 100%
  813. }
  814. .m-manual.manual-reader .manual-head .pull-left .manual-title {
  815. padding-left: 30px;
  816. height: 54px;
  817. line-height: 54px;
  818. display: block;
  819. white-space: nowrap;
  820. text-overflow: ellipsis;
  821. overflow: hidden
  822. }
  823. .m-manual.manual-reader .manual-navg {
  824. display: block
  825. }
  826. .m-manual.manual-reader .manual-head .left .manual-navg {
  827. margin-left: 36px;
  828. margin-right: 36px
  829. }
  830. .m-manual.manual-reader .manual-navg .title {
  831. float: none;
  832. text-align: center;
  833. display: block
  834. }
  835. .m-manual.manual-reader .manual-tab .tab-util {
  836. display: none
  837. }
  838. .m-manual.manual-reader .article-view .head-util {
  839. display: none
  840. }
  841. .m-manual.manual-reader .article-jump .jump-up,.m-manual.manual-reader .article-jump .jump-down {
  842. float: none;
  843. display: block
  844. }
  845. .m-manual.manual-reader .m-article .think-loading.loading-ripple {
  846. margin-left: -48px
  847. }
  848. .m-manual.manual-reader .manual-right {
  849. left: 0
  850. }
  851. .m-manual.manual-reader.manual-auto-close .manual-head {
  852. top: -55px
  853. }
  854. .m-manual.manual-reader.manual-auto-close .manual-progress {
  855. top: 0
  856. }
  857. .m-manual.manual-reader.manual-auto-open .manual-head {
  858. top: 0
  859. }
  860. .m-manual.manual-reader .manual-article .article-view {
  861. padding: 0 12px
  862. }
  863. .m-manual.manual-reader .manual-article .article-comment {
  864. padding: 0 12px
  865. }
  866. .m-manual.manual-reader .manual-article .article-head{
  867. display: none
  868. }
  869. .m-manual.manual-reader .manual-article .editor-content .markdown-toc{
  870. display: none;
  871. }
  872. .m-manual.manual-reader .manual-mask {
  873. position: fixed;
  874. top: 0;
  875. left: 0;
  876. right: 0;
  877. bottom: 0;
  878. z-index: -10;
  879. background-color: #000;
  880. opacity: 0
  881. }
  882. .m-manual.manual-reader.manual-mobile-show-left .manual-left {
  883. left: 0;
  884. z-index: 3001
  885. }
  886. .m-manual.manual-reader.manual-mobile-show-left .manual-mask {
  887. opacity: .3;
  888. z-index: 3000
  889. }
  890. }