main.css 21 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001
  1. @import url("https://fonts.googleapis.com/css?family=Montserrat:300,400,500,600,700,800");
  2. body {
  3. position: relative;
  4. font-family: Helvetica, -apple-system, "Montserrat","Helvetica Neue",Helvetica,"Segoe UI",Arial,freesans,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Microsoft Yahei","Helvetica Neue",Helvetica;
  5. }
  6. a{
  7. text-decoration: none;
  8. }
  9. a:hover{
  10. text-decoration: none;
  11. outline: 0;
  12. }
  13. textarea{
  14. resize: none;
  15. }
  16. .text{
  17. font-size: 12px;
  18. color: #999999;
  19. font-weight: 200;
  20. }
  21. .error-message{
  22. color: #d9534f;
  23. font-size: 12px;
  24. }
  25. .success-message{
  26. color: #5cb85c;
  27. font-size: 12px;
  28. }
  29. .input-readonly{
  30. border: 1px solid rgba(34,36,38,.15);
  31. background-color: #fff !important;
  32. -webkit-box-shadow : none;
  33. box-shadow: none;
  34. }
  35. ::-webkit-scrollbar , body .scrollbar-track-color{
  36. height: 9px;
  37. width: 7px;
  38. background: #E6E6E6;
  39. }
  40. ::-webkit-scrollbar:hover {
  41. background: #CCCCCC;
  42. }
  43. ::-webkit-scrollbar-thumb {
  44. background: #A2A2A2;
  45. -webkit-border-radius: 6px;
  46. -moz-border-radius: 6px;
  47. -ms-border-radius: 6px;
  48. -o-border-radius: 6px;
  49. border-radius: 6px;
  50. }
  51. .bootstrap-tagsinput{
  52. display: block !important;
  53. }
  54. .manual-header{
  55. margin-bottom: 0;
  56. background-color: #fff;
  57. border-bottom: 0;
  58. box-shadow: rgba(0,0,0,.1)0 1px 5px;
  59. border-top: 1px solid #009a61;
  60. }
  61. .manual-header .navbar-brand,.manual-header a {
  62. font-weight: 500;
  63. color: #563d7c;
  64. max-width: 300px;
  65. white-space:nowrap;
  66. overflow: hidden;
  67. }
  68. .manual-header .navbar-nav li.active a{
  69. background-color: #009a61;
  70. color: #ffffff;
  71. }
  72. .manual-reader .slidebar {
  73. margin: 5px 10px 0 0;
  74. }
  75. .user-info{
  76. border: 0;
  77. background-color: #ffffff;
  78. padding: 5px 10px !important;
  79. cursor: pointer;
  80. }
  81. .user-info:hover{
  82. background-color: #F5F5F5;
  83. }
  84. .user-info-dropdown a{
  85. font-size: 14px;
  86. color: #333333;
  87. height: 30px !important;
  88. line-height: 25px !important;
  89. }
  90. .user-info-dropdown a>i{
  91. display: inline-block;
  92. margin-right: 5px;
  93. }
  94. .userbar-avatar{
  95. display: inline-block;
  96. width: 43px;
  97. height: 43px;
  98. margin-right: 15px;
  99. }
  100. .userbar-content{
  101. display: inline-block;
  102. vertical-align: middle;
  103. }
  104. .userbar-content span{
  105. display: inline-block;
  106. font-size: 14px;
  107. font-weight: 400;
  108. margin-right: 40px;
  109. color: #3d444f;
  110. }
  111. .userbar-content div{
  112. font-size: 12px;
  113. line-height: 1;
  114. color: #9ba3af;
  115. }
  116. /**************首页标签*******************/
  117. .tag-container-outer{
  118. border-bottom: 1px solid #eee;
  119. padding-top: 5px;
  120. padding-bottom: 5px;
  121. line-height: 30px;
  122. position: relative;
  123. display: block !important;
  124. margin-top: 15px;
  125. }
  126. .tag-container-outer .title{
  127. font-weight: 400;
  128. font-size: 14px;
  129. }
  130. .tag-container-outer .tags a{
  131. display: inline-block;
  132. vertical-align: baseline;
  133. line-height: 1;
  134. border-radius: 0.3rem;
  135. transition: background .1s ease;
  136. cursor: pointer;
  137. background-color: #e0e0e0;
  138. margin: 0 .5em .5em 0!important;
  139. padding: 0.5rem 0.8rem;
  140. color: #999999;
  141. opacity: 0.8;
  142. }
  143. .tag-container-outer .tags a:hover{
  144. color: #666666;
  145. opacity: 1;
  146. }
  147. .tag-container-outer .tags a>.detail{
  148. display: inline-block;
  149. vertical-align: top;
  150. font-weight: 400;
  151. margin-left: 1em;
  152. opacity: .8
  153. }
  154. /*********************************/
  155. .manual-body{
  156. margin-top: 53px;
  157. }
  158. .manual-body .page-left{
  159. position: fixed;
  160. overflow: auto;
  161. top: 50px;
  162. bottom: 0;
  163. z-index: 100;
  164. width: 199px;
  165. background-color: #f5f5f5;
  166. border-right: 1px solid #eaeaea
  167. }
  168. .manual-body .page-left .menu {
  169. padding: 18px 0
  170. }
  171. .manual-body .page-left .menu li {
  172. height: 36px;
  173. line-height: 0
  174. }
  175. .manual-body .page-left .menu .item {
  176. display: block;
  177. padding: 8px 24px;
  178. color: #666;
  179. white-space: nowrap;
  180. overflow: hidden;
  181. text-overflow: ellipsis;
  182. white-space: nowrap;
  183. line-height: 20px;
  184. text-decoration: none;
  185. }
  186. .manual-body .page-left .menu .item:hover {
  187. background-color: #eee;
  188. text-decoration: none;
  189. }
  190. .manual-body .page-left .menu a:visited{
  191. text-decoration: none;
  192. }
  193. .manual-body .page-left .menu li.active .item{
  194. background-color: #DDB;
  195. }
  196. .manual-body .page-right {
  197. padding: 15px 0 15px 24px;
  198. margin-left: 200px;
  199. min-width: 400px;
  200. }
  201. .manual-body .page-right .box-head{
  202. border-bottom: 1px solid #DDDDD9;
  203. }
  204. .m-box .box-head .box-title {
  205. display: inline-block;
  206. height: 36px;
  207. line-height: 36px;
  208. padding-bottom: 3px;
  209. border-bottom: 2px solid #44B035;
  210. margin-bottom: -1px;
  211. min-width: 80px;
  212. font-weight: 200;
  213. font-size: 18px;
  214. }
  215. .manual-body .page-right .box-body {
  216. padding: 12px 0;
  217. position: relative;
  218. }
  219. .manual-body .page-right .box-body label, .text-label{
  220. font-family: "Microsoft Yahei","Helvetica Neue",Helvetica,Arial,sans-serif;
  221. color: #222222;
  222. font-weight: 300;
  223. }
  224. .required>.text-label:after{
  225. color: #db2828;
  226. content: "*";
  227. vertical-align: middle;
  228. margin: -.2em 0 0 .2em;
  229. }
  230. .manual-body .page-right .box-body .form-right{
  231. position: absolute;
  232. right: 0;
  233. top: 34px
  234. }
  235. /*************网站首页******************/
  236. .manual-list{
  237. margin: 15px auto;
  238. }
  239. .manual-list .list-item{
  240. float: left;
  241. padding-left: 15px;
  242. padding-right: 15px;
  243. margin: 18px 0;
  244. height: 280px
  245. }
  246. .manual-list .list-item .manual-item-standard{
  247. float: left;
  248. width: 163px;
  249. line-height: 1.5em;
  250. position: relative;
  251. }
  252. .manual-list .list-item .manual-item-standard>dt{
  253. margin-bottom: 6px;
  254. height: 231px;
  255. position: relative;
  256. }
  257. .manual-list .list-item .manual-item-standard>dt>a {
  258. display: block;
  259. position: relative;
  260. width: 100%;
  261. }
  262. .manual-list .list-item .manual-item-standard>dt>a .image{
  263. position: relative;
  264. /*display: none;*/
  265. }
  266. .manual-list .list-item .manual-item-standard .cover {
  267. border: none;
  268. width: 170px;
  269. position: relative;
  270. display: inline-block;
  271. height: 230px;
  272. background-color: #eee;
  273. border-radius: 2px;
  274. box-shadow: 0 1px 3px 0 #d4d4d5, 0 0 0 1px #d4d4d5;
  275. }
  276. .manual-list .list-item .manual-item-standard .b-cover:hover {
  277. border-color: #4db559;
  278. box-shadow: 0 0 4px rgba(77,181,89,.7)
  279. }
  280. .manual-list .list-item .manual-item-standard a.name {
  281. vertical-align: top;
  282. word-wrap: normal;
  283. font-size: 16px;
  284. color: #666;
  285. display: inline-block;
  286. max-width: 100%;
  287. white-space: nowrap;
  288. text-overflow: ellipsis;
  289. overflow: hidden
  290. }
  291. .manual-list .list-item .manual-item-standard a.name:hover{
  292. color: #333333;
  293. }
  294. .manual-list .list-item .manual-item-standard .author{
  295. zoom:1;vertical-align: top;
  296. display: inline-block;
  297. height: 20px;
  298. line-height: 20px;
  299. color: #484848;
  300. font-size: 13px;
  301. }
  302. .manual-list .list-item .manual-item-standard .author>.text{
  303. font-weight: 200;
  304. color: #484848;
  305. }
  306. /*************文档列表******************/
  307. .book-list .list-item{
  308. display: block;
  309. width: 100%;
  310. margin: 0;
  311. border-bottom: 1px solid #dddddd;
  312. padding: 15px 10px;
  313. }
  314. .book-list .list-item:hover{
  315. background: #eaeaea;
  316. }
  317. .book-list .list-item a{
  318. color: #666666;
  319. font-size: 16px;
  320. text-decoration: none;
  321. }
  322. .book-list .list-item .pull-right a{
  323. font-size: 12px;
  324. }
  325. .book-list .list-item a:hover{
  326. text-decoration: none;
  327. color: #428bca;
  328. }
  329. .book-list .list-item .desc-text{
  330. font-size: 12px;
  331. margin: 5px;
  332. }
  333. .book-list .list-item .info{
  334. font-size: 12px;
  335. color: #666666;
  336. }
  337. .book-list .list-item .info span{
  338. display: inline-block;
  339. padding-right: 10px;
  340. }
  341. /************文档概述*****************/
  342. .dashboard{
  343. }
  344. .dashboard .list{
  345. zoom: 1;
  346. line-height: 35px;
  347. }
  348. .dashboard .summary{
  349. margin-top: 15px;
  350. }
  351. /************文档成员*************************/
  352. .users-list .list-item{
  353. padding: 12px;
  354. border-bottom: 1px dotted #EEE;
  355. }
  356. .users-list .list-item:hover {
  357. background-color: #F9F9F9
  358. }
  359. .users-list .list-item .operate{
  360. float: right;
  361. }
  362. /**************用户搜索界面样式********************/
  363. .searchbar{
  364. padding: 8px;
  365. }
  366. .searchbar .search-btn {
  367. display: inline-block;
  368. line-height: 100%;
  369. cursor: pointer;
  370. margin-top: -10px;
  371. margin-left: -45px;
  372. border: 0;
  373. background-color: transparent
  374. }
  375. .searchbar .search-btn>i.fa{
  376. padding: 10px;
  377. }
  378. .manual-search-reader .manual-body{
  379. margin-top: 60px;
  380. }
  381. .manual-search-reader .search-head{
  382. margin: 10px auto;
  383. padding-bottom: 15px;
  384. line-height: 1.5em;
  385. border-bottom: 3px solid #EEEEEE;
  386. }
  387. .manual-search-reader .search-head .search-title{
  388. font-size: 22px;
  389. font-weight: 300;
  390. }
  391. .manual-search-reader .search-body {
  392. margin-top: 80px;
  393. }
  394. .manual-search-reader .search-empty{
  395. margin:150px auto;
  396. text-align:center;
  397. }
  398. .manual-search-reader .search-empty .empty-text {
  399. font-size: 18px;
  400. display: block;
  401. margin: 24px;
  402. text-align: center;
  403. opacity: .5;
  404. filter: alpha(opacity=50)
  405. }
  406. .manual-search-reader .search-empty .empty-image{
  407. margin: 5px auto;
  408. display: block;
  409. text-align: center;
  410. opacity: 0.3;
  411. filter: alpha(opacity=30);
  412. }
  413. .manual-search-reader .search-item{
  414. margin: 0 15px;
  415. padding: 10px 20px;
  416. line-height: 25px;
  417. word-break: break-word;
  418. }
  419. .manual-search-reader .search-item:hover{
  420. background-color: #F5F5F5;
  421. }
  422. .manual-search-reader .search-item a{
  423. color: #0886E9;
  424. }
  425. .manual-search-reader .search-item em{
  426. color: #FF802C;
  427. font-style:normal;
  428. }
  429. .manual-search-reader .search-item .title{
  430. font-size: 16px;
  431. font-weight: 400;
  432. }
  433. .manual-search-reader .search-item .description{
  434. color: #666;
  435. line-height: 25px;
  436. min-height: 20px;
  437. font-size: 12px;
  438. }
  439. .manual-search-reader .search-item .site {
  440. overflow: hidden;
  441. text-overflow: ellipsis;
  442. -o-text-overflow: ellipsis;
  443. white-space: nowrap;
  444. max-width: 600px;
  445. color: #008000;
  446. font-size: 12px;
  447. }
  448. .manual-search-reader .search-item .source .item {
  449. display: inline-block;
  450. margin-right: 15px;
  451. }
  452. .manual-search-reader .search-item .source,.manual-search-reader .search-item .source a{
  453. font-size: 12px;
  454. color: #999999;
  455. }
  456. /**************用户登录界面样式*******************/
  457. .login .login-body{
  458. width: 400px;
  459. padding: 5px 30px 25px 30px;
  460. margin: 0 auto;
  461. margin-top: 30px;
  462. background-color: #FFF;
  463. border: 1px solid #ddd;
  464. border-radius: 5px;
  465. }
  466. .login .login-body .tooltip.bottom .tooltip-arrow,.has-error .tooltip.bottom .tooltip-arrow{
  467. border-bottom-color: #a94442;
  468. }
  469. .login .login-body .tooltip.top .tooltip-arrow,.has-error .tooltip.top .tooltip-arrow{
  470. border-top-color: #a94442;
  471. }
  472. .login .login-body .tooltip.right .tooltip-arrow,.has-error .tooltip.right .tooltip-arrow{
  473. border-top-color: #a94442;
  474. }
  475. .login .login-body .tooltip.left .tooltip-arrow,.has-error .tooltip.left .tooltip-arrow{
  476. border-top-color: #a94442;
  477. }
  478. .login .login-body .tooltip-inner,.has-error .tooltip-inner{
  479. background-color: #a94442;
  480. }
  481. /************图片上传样式*******************/
  482. #upload-logo-panel .wraper{
  483. float: left;
  484. background: #f6f6f6;
  485. position: relative;
  486. width: 360px;
  487. height: 360px;
  488. overflow: hidden;
  489. }
  490. #upload-logo-panel .watch-crop-list{
  491. width: 170px;
  492. padding:10px 20px;
  493. margin-left: 10px;
  494. background-color: #f6f6f6;
  495. text-align: center;
  496. float: right;
  497. height: 360px;
  498. }
  499. #image-wraper{
  500. text-align: center;
  501. }
  502. .webuploader-pick{
  503. }
  504. .webuploader-pick-hover{
  505. }
  506. .webuploader-container{
  507. padding: 0;
  508. border: 0;
  509. height: 40px;
  510. }
  511. .watch-crop-list>ul{
  512. list-style: none;
  513. padding: 0;
  514. margin: 0;
  515. }
  516. .webuploader-container div{
  517. width: 77px !important;
  518. height: 40px !important;
  519. left: 0 !important;
  520. }
  521. .img-preview {
  522. margin: 5px auto 10px auto;
  523. text-align: center;
  524. overflow: hidden;
  525. }
  526. .img-preview > img {
  527. max-width: 100%;
  528. }
  529. .preview-lg{
  530. width: 120px;
  531. height: 120px;
  532. }
  533. .preview-sm{
  534. width: 60px;
  535. height: 60px;
  536. }
  537. #error-message{
  538. font-size: 13px;
  539. color: red;
  540. vertical-align: middle;
  541. margin-top: -10px;
  542. display: inline-block;
  543. height: 40px;
  544. }
  545. .manager .dashboard-item{
  546. float: left;
  547. width: 100px;
  548. height: 115px;
  549. padding: 10px;
  550. font-size: 10px;
  551. line-height: 1.4;
  552. text-align: center;
  553. background-color: #f9f9f9;
  554. border: 1px solid #fff;
  555. cursor: pointer;
  556. color: #333;
  557. }
  558. .manager .dashboard-item:hover{
  559. background-color: #563D7C;
  560. color: #ffffff;
  561. }
  562. .manager .dashboard-item .fa{
  563. margin-top: 5px;
  564. margin-bottom: 10px;
  565. font-size: 24px;
  566. }
  567. .manager .dashboard-item .fa-class {
  568. display: block;
  569. text-align: center;
  570. word-wrap: break-word; /* Help out IE10+ with class names */
  571. }
  572. .pagination-container {
  573. margin: 5px auto;
  574. display: block !important;
  575. }
  576. .pagination-container .pagination{
  577. box-shadow: 0 1px 2px 0 #e3e3e0;
  578. }
  579. .pagination-container .pagination>li>a,.pagination-container .pagination>li>span{
  580. padding: 8px 16px !important;
  581. }
  582. .pagination-container .pagination>li>a,.pagination-container .pagination>li>span{
  583. color: #272727;
  584. }
  585. .pagination-container .pagination>.active>a{
  586. /*color: #fff;*/
  587. background-color: #f3f3f3;
  588. border: 1px solid #e3e3e0;
  589. }
  590. .pagination-container .pagination>.active>a, .pagination>.active>a:focus, .pagination>.active>a:hover, .pagination>.active>span, .pagination>.active>span:focus, .pagination>.active>span:hover{
  591. color: #272727;
  592. }
  593. /*************文章相关样式**********/
  594. .ui.items>.item>.content>.header {
  595. display: inline-block;
  596. margin: -.21425em 0 0;
  597. font-family: 'PingFang SC','Helvetica Neue','Microsoft YaHei UI','Microsoft YaHei','Noto Sans CJK SC',Sathu,EucrosiaUPC,Arial,Helvetica,sans-serif;
  598. font-weight: 700;
  599. color: rgba(0,0,0,.85)
  600. }
  601. .ui.items>.item {
  602. display: -webkit-box;
  603. display: -ms-flexbox;
  604. display: flex;
  605. margin: 1em 0;
  606. width: 100%;
  607. min-height: 0;
  608. background: 0 0;
  609. padding: 0;
  610. border: none;
  611. border-radius: 0;
  612. -webkit-box-shadow: none;
  613. box-shadow: none;
  614. -webkit-transition: -webkit-box-shadow .1s ease;
  615. transition: -webkit-box-shadow .1s ease;
  616. transition: box-shadow .1s ease;
  617. transition: box-shadow .1s ease,-webkit-box-shadow .1s ease;
  618. z-index: ''
  619. }
  620. .ui.items>.item a {
  621. cursor: pointer
  622. }
  623. .ui.items {
  624. margin: 1.5em 0
  625. }
  626. .ui.items:first-child {
  627. margin-top: 0!important
  628. }
  629. .ui.items:last-child {
  630. margin-bottom: 0!important
  631. }
  632. .ui.items>.item:after {
  633. display: block;
  634. content: ' ';
  635. height: 0;
  636. clear: both;
  637. overflow: hidden;
  638. visibility: hidden
  639. }
  640. .ui.items>.item:first-child {
  641. margin-top: 0
  642. }
  643. .ui.items>.item:last-child {
  644. margin-bottom: 0
  645. }
  646. .ui.items>.item>.image {
  647. position: relative;
  648. -webkit-box-flex: 0;
  649. -ms-flex: 0 0 auto;
  650. flex: 0 0 auto;
  651. display: block;
  652. float: none;
  653. margin: 0;
  654. padding: 0;
  655. max-height: '';
  656. -ms-flex-item-align: top;
  657. align-self: top
  658. }
  659. .ui.items>.item>.image>img {
  660. display: block;
  661. width: 100%;
  662. height: auto;
  663. border-radius: .125rem;
  664. border: none
  665. }
  666. .ui.items>.item>.image:only-child>img {
  667. border-radius: 0
  668. }
  669. .ui.items>.item>.content {
  670. display: block;
  671. -webkit-box-flex: 1;
  672. -ms-flex: 1 1 auto;
  673. flex: 1 1 auto;
  674. background: 0 0;
  675. margin: 0;
  676. padding: 0;
  677. -webkit-box-shadow: none;
  678. box-shadow: none;
  679. font-size: 1em;
  680. border: none;
  681. border-radius: 0
  682. }
  683. .ui.items>.item>.content:after {
  684. display: block;
  685. content: ' ';
  686. height: 0;
  687. clear: both;
  688. overflow: hidden;
  689. visibility: hidden
  690. }
  691. .ui.items>.item>.image+.content {
  692. min-width: 0;
  693. width: auto;
  694. display: block;
  695. margin-left: 0;
  696. -ms-flex-item-align: top;
  697. align-self: top;
  698. padding-left: 1.5em
  699. }
  700. .ui.items>.item>.content>.header {
  701. display: inline-block;
  702. margin: -.21425em 0 0;
  703. font-family: 'PingFang SC','Helvetica Neue','Microsoft YaHei UI','Microsoft YaHei','Noto Sans CJK SC',Sathu,EucrosiaUPC,Arial,Helvetica,sans-serif;
  704. font-weight: 700;
  705. color: rgba(0,0,0,.85)
  706. }
  707. .ui.items>.item>.content>.header:not(.ui) {
  708. font-size: 1.14285714em
  709. }
  710. .ui.items>.item [class*="left floated"] {
  711. float: left
  712. }
  713. .ui.items>.item [class*="right floated"] {
  714. float: right
  715. }
  716. .ui.items>.item .content img {
  717. -ms-flex-item-align: middle;
  718. align-self: middle;
  719. width: ''
  720. }
  721. .ui.items>.item .avatar img,.ui.items>.item img.avatar {
  722. width: '';
  723. height: '';
  724. border-radius: 500rem
  725. }
  726. .ui.items>.item>.content>.description {
  727. margin-top: .6em;
  728. max-width: auto;
  729. font-size: 1em;
  730. line-height: 1.4285em;
  731. color: rgba(0,0,0,.87);
  732. min-height: 40px;
  733. }
  734. .ui.items>.item>.content p {
  735. margin: 0 0 .5em
  736. }
  737. .ui.items>.item>.content p:last-child {
  738. margin-bottom: 0
  739. }
  740. .ui.items>.item .meta {
  741. margin: .5em 0 .5em;
  742. font-size: 1em;
  743. line-height: 1em;
  744. color: rgba(0,0,0,.6)
  745. }
  746. .ui.items>.item .meta * {
  747. margin-right: .3em
  748. }
  749. .ui.items>.item .meta :last-child {
  750. margin-right: 0
  751. }
  752. .ui.items>.item .meta [class*="right floated"] {
  753. margin-right: 0;
  754. margin-left: .3em
  755. }
  756. .ui.items>.item>.content a:not(.ui) {
  757. color: '';
  758. -webkit-transition: color .1s ease;
  759. transition: color .1s ease
  760. }
  761. .ui.items>.item>.content a:not(.ui):hover {
  762. color: ''
  763. }
  764. .ui.items>.item>.content>a.header {
  765. color: rgba(0,0,0,.85)
  766. }
  767. .ui.items>.item>.content>a.header:hover {
  768. color: #1e70bf
  769. }
  770. .ui.items>.item .meta>a:not(.ui) {
  771. color: rgba(0,0,0,.4)
  772. }
  773. .ui.items>.item .meta>a:not(.ui):hover {
  774. color: rgba(0,0,0,.87)
  775. }
  776. .ui.items>.item>.content .favorite.icon {
  777. cursor: pointer;
  778. opacity: .75;
  779. -webkit-transition: color .1s ease;
  780. transition: color .1s ease
  781. }
  782. .ui.items>.item>.content .favorite.icon:hover {
  783. opacity: 1;
  784. color: #ffb70a
  785. }
  786. .ui.items>.item>.content .active.favorite.icon {
  787. color: #ffe623
  788. }
  789. .ui.items>.item>.content .like.icon {
  790. cursor: pointer;
  791. opacity: .75;
  792. -webkit-transition: color .1s ease;
  793. transition: color .1s ease
  794. }
  795. .ui.items>.item>.content .like.icon:hover {
  796. opacity: 1;
  797. color: #ff2733
  798. }
  799. .ui.items>.item>.content .active.like.icon {
  800. color: #ff2733
  801. }
  802. .ui.items>.item .extra {
  803. display: block;
  804. position: relative;
  805. background: 0 0;
  806. margin: .5rem 0 0;
  807. width: 100%;
  808. padding: 0 0 0;
  809. top: 0;
  810. left: 0;
  811. color: rgba(0,0,0,.4);
  812. -webkit-box-shadow: none;
  813. box-shadow: none;
  814. -webkit-transition: color .1s ease;
  815. transition: color .1s ease;
  816. border-top: none
  817. }
  818. .ui.items>.item .extra>* {
  819. margin: .25rem .5rem .25rem 0
  820. }
  821. .ui.items>.item .extra>[class*="right floated"] {
  822. margin: .25rem 0 .25rem .5rem
  823. }
  824. .ui.items>.item .extra:after {
  825. display: block;
  826. content: ' ';
  827. height: 0;
  828. clear: both;
  829. overflow: hidden;
  830. visibility: hidden
  831. }
  832. .ui.items>.item>.image:not(.ui) {
  833. width: 175px
  834. }
  835. .ui.horizontal.list {
  836. display: inline-block;
  837. font-size: 0
  838. }
  839. .ui.horizontal.list>.item {
  840. display: inline-block;
  841. margin-left: 1em;
  842. font-size: 1rem
  843. }
  844. .ui.horizontal.list:not(.celled)>.item:first-child {
  845. margin-left: 0!important;
  846. padding-left: 0!important
  847. }
  848. .ui.horizontal.list .list {
  849. padding-left: 0;
  850. padding-bottom: 0
  851. }
  852. .ui.horizontal.list a{
  853. color: rgba(0,0,0,.4);
  854. }
  855. .ui.horizontal.list a:hover {
  856. color: rgba(0,0,0,.87)
  857. }
  858. .ui.horizontal.list .list>.item>.content,.ui.horizontal.list .list>.item>.icon,.ui.horizontal.list .list>.item>.image,.ui.horizontal.list>.item>.content,.ui.horizontal.list>.item>.icon,.ui.horizontal.list>.item>.image {
  859. vertical-align: middle
  860. }
  861. .ui.horizontal.list>.item:first-child,.ui.horizontal.list>.item:last-child {
  862. padding-top: .21428571em;
  863. padding-bottom: .21428571em
  864. }
  865. .ui.horizontal.list>.item>i.icon {
  866. margin: 0;
  867. padding: 0 .25em 0 0
  868. }
  869. .ui.horizontal.list>.item>.icon,.ui.horizontal.list>.item>.icon+.content {
  870. float: none;
  871. display: inline-block
  872. }
  873. .ui.teal.label {
  874. background-color: #00b5ad!important;
  875. border-color: #00b5ad!important;
  876. color: #fff!important
  877. }
  878. .ui.items>.item {
  879. border-bottom: 1px solid #efefef;
  880. margin: 0;
  881. padding: 1em 0
  882. }
  883. /**************网站底部样式*************************/
  884. .footer{
  885. color: #777;
  886. padding: 30px 0;
  887. margin-top: 70px;
  888. font-size: 12px;
  889. background-color: #ffffff;
  890. bottom: 0;
  891. }
  892. .footer .container{
  893. padding: 0;
  894. }
  895. .footer .container .row{
  896. margin-left: 220px;
  897. padding-top: 20px;
  898. opacity : 0.8;
  899. font-size: 13px;
  900. }
  901. .footer .container .border-top{
  902. border-top: 2px solid #DDDDD9;
  903. }
  904. .manual-container .footer .container .row{
  905. margin-left: 0;
  906. }
  907. .footer a{
  908. color: #222;
  909. text-decoration: none;
  910. }
  911. .footer a:hover {
  912. color: #2b85ae
  913. }
  914. @media screen and (max-width: 840px) {
  915. .manual-body .page-left{
  916. display: none;
  917. }
  918. .manual-body .page-right {
  919. margin-left: 0;
  920. }
  921. .manual-body .page-right .box-body .form-right{
  922. display: none;
  923. }
  924. .manual-body .page-right .box-body{
  925. padding-right: 0 !important;
  926. }
  927. .footer .container .row{
  928. margin-left: 0;
  929. }
  930. }