main.css 22 KB

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