main.css 21 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000
  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. }
  418. .manual-search-reader .search-item:hover{
  419. background-color: #F5F5F5;
  420. }
  421. .manual-search-reader .search-item a{
  422. color: #0886E9;
  423. }
  424. .manual-search-reader .search-item em{
  425. color: #FF802C;
  426. font-style:normal;
  427. }
  428. .manual-search-reader .search-item .title{
  429. font-size: 16px;
  430. font-weight: 400;
  431. }
  432. .manual-search-reader .search-item .description{
  433. color: #666;
  434. line-height: 25px;
  435. min-height: 20px;
  436. font-size: 12px;
  437. }
  438. .manual-search-reader .search-item .site {
  439. overflow: hidden;
  440. text-overflow: ellipsis;
  441. -o-text-overflow: ellipsis;
  442. white-space: nowrap;
  443. max-width: 600px;
  444. color: #008000;
  445. font-size: 12px;
  446. }
  447. .manual-search-reader .search-item .source .item {
  448. display: inline-block;
  449. margin-right: 15px;
  450. }
  451. .manual-search-reader .search-item .source,.manual-search-reader .search-item .source a{
  452. font-size: 12px;
  453. color: #999999;
  454. }
  455. /**************用户登录界面样式*******************/
  456. .login .login-body{
  457. width: 400px;
  458. padding: 5px 30px 25px 30px;
  459. margin: 0 auto;
  460. margin-top: 30px;
  461. background-color: #FFF;
  462. border: 1px solid #ddd;
  463. border-radius: 5px;
  464. }
  465. .login .login-body .tooltip.bottom .tooltip-arrow,.has-error .tooltip.bottom .tooltip-arrow{
  466. border-bottom-color: #a94442;
  467. }
  468. .login .login-body .tooltip.top .tooltip-arrow,.has-error .tooltip.top .tooltip-arrow{
  469. border-top-color: #a94442;
  470. }
  471. .login .login-body .tooltip.right .tooltip-arrow,.has-error .tooltip.right .tooltip-arrow{
  472. border-top-color: #a94442;
  473. }
  474. .login .login-body .tooltip.left .tooltip-arrow,.has-error .tooltip.left .tooltip-arrow{
  475. border-top-color: #a94442;
  476. }
  477. .login .login-body .tooltip-inner,.has-error .tooltip-inner{
  478. background-color: #a94442;
  479. }
  480. /************图片上传样式*******************/
  481. #upload-logo-panel .wraper{
  482. float: left;
  483. background: #f6f6f6;
  484. position: relative;
  485. width: 360px;
  486. height: 360px;
  487. overflow: hidden;
  488. }
  489. #upload-logo-panel .watch-crop-list{
  490. width: 170px;
  491. padding:10px 20px;
  492. margin-left: 10px;
  493. background-color: #f6f6f6;
  494. text-align: center;
  495. float: right;
  496. height: 360px;
  497. }
  498. #image-wraper{
  499. text-align: center;
  500. }
  501. .webuploader-pick{
  502. }
  503. .webuploader-pick-hover{
  504. }
  505. .webuploader-container{
  506. padding: 0;
  507. border: 0;
  508. height: 40px;
  509. }
  510. .watch-crop-list>ul{
  511. list-style: none;
  512. padding: 0;
  513. margin: 0;
  514. }
  515. .webuploader-container div{
  516. width: 77px !important;
  517. height: 40px !important;
  518. left: 0 !important;
  519. }
  520. .img-preview {
  521. margin: 5px auto 10px auto;
  522. text-align: center;
  523. overflow: hidden;
  524. }
  525. .img-preview > img {
  526. max-width: 100%;
  527. }
  528. .preview-lg{
  529. width: 120px;
  530. height: 120px;
  531. }
  532. .preview-sm{
  533. width: 60px;
  534. height: 60px;
  535. }
  536. #error-message{
  537. font-size: 13px;
  538. color: red;
  539. vertical-align: middle;
  540. margin-top: -10px;
  541. display: inline-block;
  542. height: 40px;
  543. }
  544. .manager .dashboard-item{
  545. float: left;
  546. width: 100px;
  547. height: 115px;
  548. padding: 10px;
  549. font-size: 10px;
  550. line-height: 1.4;
  551. text-align: center;
  552. background-color: #f9f9f9;
  553. border: 1px solid #fff;
  554. cursor: pointer;
  555. color: #333;
  556. }
  557. .manager .dashboard-item:hover{
  558. background-color: #563D7C;
  559. color: #ffffff;
  560. }
  561. .manager .dashboard-item .fa{
  562. margin-top: 5px;
  563. margin-bottom: 10px;
  564. font-size: 24px;
  565. }
  566. .manager .dashboard-item .fa-class {
  567. display: block;
  568. text-align: center;
  569. word-wrap: break-word; /* Help out IE10+ with class names */
  570. }
  571. .pagination-container {
  572. margin: 5px auto;
  573. display: block !important;
  574. }
  575. .pagination-container .pagination{
  576. box-shadow: 0 1px 2px 0 #e3e3e0;
  577. }
  578. .pagination-container .pagination>li>a,.pagination-container .pagination>li>span{
  579. padding: 8px 16px !important;
  580. }
  581. .pagination-container .pagination>li>a,.pagination-container .pagination>li>span{
  582. color: #272727;
  583. }
  584. .pagination-container .pagination>.active>a{
  585. /*color: #fff;*/
  586. background-color: #f3f3f3;
  587. border: 1px solid #e3e3e0;
  588. }
  589. .pagination-container .pagination>.active>a, .pagination>.active>a:focus, .pagination>.active>a:hover, .pagination>.active>span, .pagination>.active>span:focus, .pagination>.active>span:hover{
  590. color: #272727;
  591. }
  592. /*************文章相关样式**********/
  593. .ui.items>.item>.content>.header {
  594. display: inline-block;
  595. margin: -.21425em 0 0;
  596. font-family: 'PingFang SC','Helvetica Neue','Microsoft YaHei UI','Microsoft YaHei','Noto Sans CJK SC',Sathu,EucrosiaUPC,Arial,Helvetica,sans-serif;
  597. font-weight: 700;
  598. color: rgba(0,0,0,.85)
  599. }
  600. .ui.items>.item {
  601. display: -webkit-box;
  602. display: -ms-flexbox;
  603. display: flex;
  604. margin: 1em 0;
  605. width: 100%;
  606. min-height: 0;
  607. background: 0 0;
  608. padding: 0;
  609. border: none;
  610. border-radius: 0;
  611. -webkit-box-shadow: none;
  612. box-shadow: none;
  613. -webkit-transition: -webkit-box-shadow .1s ease;
  614. transition: -webkit-box-shadow .1s ease;
  615. transition: box-shadow .1s ease;
  616. transition: box-shadow .1s ease,-webkit-box-shadow .1s ease;
  617. z-index: ''
  618. }
  619. .ui.items>.item a {
  620. cursor: pointer
  621. }
  622. .ui.items {
  623. margin: 1.5em 0
  624. }
  625. .ui.items:first-child {
  626. margin-top: 0!important
  627. }
  628. .ui.items:last-child {
  629. margin-bottom: 0!important
  630. }
  631. .ui.items>.item:after {
  632. display: block;
  633. content: ' ';
  634. height: 0;
  635. clear: both;
  636. overflow: hidden;
  637. visibility: hidden
  638. }
  639. .ui.items>.item:first-child {
  640. margin-top: 0
  641. }
  642. .ui.items>.item:last-child {
  643. margin-bottom: 0
  644. }
  645. .ui.items>.item>.image {
  646. position: relative;
  647. -webkit-box-flex: 0;
  648. -ms-flex: 0 0 auto;
  649. flex: 0 0 auto;
  650. display: block;
  651. float: none;
  652. margin: 0;
  653. padding: 0;
  654. max-height: '';
  655. -ms-flex-item-align: top;
  656. align-self: top
  657. }
  658. .ui.items>.item>.image>img {
  659. display: block;
  660. width: 100%;
  661. height: auto;
  662. border-radius: .125rem;
  663. border: none
  664. }
  665. .ui.items>.item>.image:only-child>img {
  666. border-radius: 0
  667. }
  668. .ui.items>.item>.content {
  669. display: block;
  670. -webkit-box-flex: 1;
  671. -ms-flex: 1 1 auto;
  672. flex: 1 1 auto;
  673. background: 0 0;
  674. margin: 0;
  675. padding: 0;
  676. -webkit-box-shadow: none;
  677. box-shadow: none;
  678. font-size: 1em;
  679. border: none;
  680. border-radius: 0
  681. }
  682. .ui.items>.item>.content:after {
  683. display: block;
  684. content: ' ';
  685. height: 0;
  686. clear: both;
  687. overflow: hidden;
  688. visibility: hidden
  689. }
  690. .ui.items>.item>.image+.content {
  691. min-width: 0;
  692. width: auto;
  693. display: block;
  694. margin-left: 0;
  695. -ms-flex-item-align: top;
  696. align-self: top;
  697. padding-left: 1.5em
  698. }
  699. .ui.items>.item>.content>.header {
  700. display: inline-block;
  701. margin: -.21425em 0 0;
  702. font-family: 'PingFang SC','Helvetica Neue','Microsoft YaHei UI','Microsoft YaHei','Noto Sans CJK SC',Sathu,EucrosiaUPC,Arial,Helvetica,sans-serif;
  703. font-weight: 700;
  704. color: rgba(0,0,0,.85)
  705. }
  706. .ui.items>.item>.content>.header:not(.ui) {
  707. font-size: 1.14285714em
  708. }
  709. .ui.items>.item [class*="left floated"] {
  710. float: left
  711. }
  712. .ui.items>.item [class*="right floated"] {
  713. float: right
  714. }
  715. .ui.items>.item .content img {
  716. -ms-flex-item-align: middle;
  717. align-self: middle;
  718. width: ''
  719. }
  720. .ui.items>.item .avatar img,.ui.items>.item img.avatar {
  721. width: '';
  722. height: '';
  723. border-radius: 500rem
  724. }
  725. .ui.items>.item>.content>.description {
  726. margin-top: .6em;
  727. max-width: auto;
  728. font-size: 1em;
  729. line-height: 1.4285em;
  730. color: rgba(0,0,0,.87);
  731. min-height: 40px;
  732. }
  733. .ui.items>.item>.content p {
  734. margin: 0 0 .5em
  735. }
  736. .ui.items>.item>.content p:last-child {
  737. margin-bottom: 0
  738. }
  739. .ui.items>.item .meta {
  740. margin: .5em 0 .5em;
  741. font-size: 1em;
  742. line-height: 1em;
  743. color: rgba(0,0,0,.6)
  744. }
  745. .ui.items>.item .meta * {
  746. margin-right: .3em
  747. }
  748. .ui.items>.item .meta :last-child {
  749. margin-right: 0
  750. }
  751. .ui.items>.item .meta [class*="right floated"] {
  752. margin-right: 0;
  753. margin-left: .3em
  754. }
  755. .ui.items>.item>.content a:not(.ui) {
  756. color: '';
  757. -webkit-transition: color .1s ease;
  758. transition: color .1s ease
  759. }
  760. .ui.items>.item>.content a:not(.ui):hover {
  761. color: ''
  762. }
  763. .ui.items>.item>.content>a.header {
  764. color: rgba(0,0,0,.85)
  765. }
  766. .ui.items>.item>.content>a.header:hover {
  767. color: #1e70bf
  768. }
  769. .ui.items>.item .meta>a:not(.ui) {
  770. color: rgba(0,0,0,.4)
  771. }
  772. .ui.items>.item .meta>a:not(.ui):hover {
  773. color: rgba(0,0,0,.87)
  774. }
  775. .ui.items>.item>.content .favorite.icon {
  776. cursor: pointer;
  777. opacity: .75;
  778. -webkit-transition: color .1s ease;
  779. transition: color .1s ease
  780. }
  781. .ui.items>.item>.content .favorite.icon:hover {
  782. opacity: 1;
  783. color: #ffb70a
  784. }
  785. .ui.items>.item>.content .active.favorite.icon {
  786. color: #ffe623
  787. }
  788. .ui.items>.item>.content .like.icon {
  789. cursor: pointer;
  790. opacity: .75;
  791. -webkit-transition: color .1s ease;
  792. transition: color .1s ease
  793. }
  794. .ui.items>.item>.content .like.icon:hover {
  795. opacity: 1;
  796. color: #ff2733
  797. }
  798. .ui.items>.item>.content .active.like.icon {
  799. color: #ff2733
  800. }
  801. .ui.items>.item .extra {
  802. display: block;
  803. position: relative;
  804. background: 0 0;
  805. margin: .5rem 0 0;
  806. width: 100%;
  807. padding: 0 0 0;
  808. top: 0;
  809. left: 0;
  810. color: rgba(0,0,0,.4);
  811. -webkit-box-shadow: none;
  812. box-shadow: none;
  813. -webkit-transition: color .1s ease;
  814. transition: color .1s ease;
  815. border-top: none
  816. }
  817. .ui.items>.item .extra>* {
  818. margin: .25rem .5rem .25rem 0
  819. }
  820. .ui.items>.item .extra>[class*="right floated"] {
  821. margin: .25rem 0 .25rem .5rem
  822. }
  823. .ui.items>.item .extra:after {
  824. display: block;
  825. content: ' ';
  826. height: 0;
  827. clear: both;
  828. overflow: hidden;
  829. visibility: hidden
  830. }
  831. .ui.items>.item>.image:not(.ui) {
  832. width: 175px
  833. }
  834. .ui.horizontal.list {
  835. display: inline-block;
  836. font-size: 0
  837. }
  838. .ui.horizontal.list>.item {
  839. display: inline-block;
  840. margin-left: 1em;
  841. font-size: 1rem
  842. }
  843. .ui.horizontal.list:not(.celled)>.item:first-child {
  844. margin-left: 0!important;
  845. padding-left: 0!important
  846. }
  847. .ui.horizontal.list .list {
  848. padding-left: 0;
  849. padding-bottom: 0
  850. }
  851. .ui.horizontal.list a{
  852. color: rgba(0,0,0,.4);
  853. }
  854. .ui.horizontal.list a:hover {
  855. color: rgba(0,0,0,.87)
  856. }
  857. .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 {
  858. vertical-align: middle
  859. }
  860. .ui.horizontal.list>.item:first-child,.ui.horizontal.list>.item:last-child {
  861. padding-top: .21428571em;
  862. padding-bottom: .21428571em
  863. }
  864. .ui.horizontal.list>.item>i.icon {
  865. margin: 0;
  866. padding: 0 .25em 0 0
  867. }
  868. .ui.horizontal.list>.item>.icon,.ui.horizontal.list>.item>.icon+.content {
  869. float: none;
  870. display: inline-block
  871. }
  872. .ui.teal.label {
  873. background-color: #00b5ad!important;
  874. border-color: #00b5ad!important;
  875. color: #fff!important
  876. }
  877. .ui.items>.item {
  878. border-bottom: 1px solid #efefef;
  879. margin: 0;
  880. padding: 1em 0
  881. }
  882. /**************网站底部样式*************************/
  883. .footer{
  884. color: #777;
  885. padding: 30px 0;
  886. margin-top: 70px;
  887. font-size: 12px;
  888. background-color: #ffffff;
  889. bottom: 0;
  890. }
  891. .footer .container{
  892. padding: 0;
  893. }
  894. .footer .container .row{
  895. margin-left: 220px;
  896. padding-top: 20px;
  897. opacity : 0.8;
  898. font-size: 13px;
  899. }
  900. .footer .container .border-top{
  901. border-top: 2px solid #DDDDD9;
  902. }
  903. .manual-container .footer .container .row{
  904. margin-left: 0;
  905. }
  906. .footer a{
  907. color: #222;
  908. text-decoration: none;
  909. }
  910. .footer a:hover {
  911. color: #2b85ae
  912. }
  913. @media screen and (max-width: 840px) {
  914. .manual-body .page-left{
  915. display: none;
  916. }
  917. .manual-body .page-right {
  918. margin-left: 0;
  919. }
  920. .manual-body .page-right .box-body .form-right{
  921. display: none;
  922. }
  923. .manual-body .page-right .box-body{
  924. padding-right: 0 !important;
  925. }
  926. .footer .container .row{
  927. margin-left: 0;
  928. }
  929. }