kancloud.css 22 KB

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