main.css 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026
  1. /*building SAAS 0.1*/
  2. /*bootstrap 初始化*/
  3. body {
  4. font-size: 14px;
  5. overflow: hidden;
  6. font-family: "Helvetica Neue","Hiragino Sans GB",stheiti,"Microsoft Yahei","微软雅黑",tahoma,sans-serif
  7. }
  8. a{
  9. outline: none
  10. }
  11. .dropdown-menu {
  12. font-size: 0.9rem
  13. }
  14. .btn.disabled, .btn:disabled {
  15. color:#999
  16. }
  17. .btn-link:focus, .btn-link:hover{
  18. text-decoration: none
  19. }
  20. .dropdown-menu {
  21. padding:.2rem 0;
  22. }
  23. .dropdown-item:focus, .dropdown-item:hover{
  24. background-color: #f7f7f9
  25. }
  26. .text-indent {
  27. text-indent:26px;
  28. }
  29. .modal-header{
  30. background:#f2f2f2;
  31. border-bottom:1px solid #ccc;
  32. padding:.8rem 1rem;
  33. }
  34. .modal-title{
  35. font-size:1rem;
  36. }
  37. .modal-footer{
  38. padding:.8rem 1rem;
  39. }
  40. .form-check .form-check-label,.form-radio .form-radio-label{
  41. cursor: pointer
  42. }
  43. .custom-file-sm,.custom-file-sm .custom-file-label{
  44. height: calc(1.5em + .5rem + 2px);
  45. padding-top: .25rem;
  46. padding-bottom: .25rem;
  47. padding-left: .5rem;
  48. }
  49. .custom-file-sm .custom-file-label:after{
  50. height: calc(1.4em + .5rem + 2px);
  51. padding-top: .25rem;
  52. padding-bottom: .25rem;
  53. font-size: .875rem;
  54. }
  55. .custom-file-sm input{
  56. height: calc(1.5em + .5rem + 2px);
  57. font-size: .875rem;
  58. }
  59. .btn-xs{
  60. padding:0rem .5rem;
  61. font-size:.875rem;
  62. }
  63. .table-sc thead tr{
  64. background-color: #f1f1f1
  65. }
  66. /*自定义css*/
  67. .login-body,.login-html{
  68. height:100%;
  69. }
  70. .login-bg{
  71. width: 100%;
  72. height: 100%;
  73. background: #f2f6f5 url("login-bg.jpg") bottom center no-repeat;
  74. background-size: 100% auto;
  75. display: inline-block;
  76. position: absolute;
  77. }
  78. .login-panel {
  79. width: 500px;
  80. margin: 0 auto;
  81. position: absolute;
  82. left: 0;
  83. right: 0;
  84. top: 20%;
  85. padding:30px;
  86. background:#fff;
  87. box-shadow:#333 1px 1px 5px
  88. }
  89. .login-img-cr{
  90. right:0;
  91. font-size:9px;
  92. }
  93. .ver-panel {
  94. width:100%;
  95. top:10%;
  96. }
  97. .header {
  98. border-bottom: 1px solid #ff6501
  99. }
  100. .header .header-logo {
  101. background: #ff6501;
  102. float: left;
  103. margin-right: 1rem;
  104. font-size: 1rem;
  105. height:38px;
  106. background:url(logo.png) no-repeat 0 0;
  107. padding-left:50px;
  108. }
  109. .header-logo div.v-title{
  110. font-size:11px;
  111. color:#666;
  112. line-height: 12px;
  113. margin-top:3px;
  114. }
  115. .header-logo div.p-title{
  116. font-size:16px;
  117. color:#ff6501;
  118. }
  119. .header-logo div.b-title{
  120. font-size:24px;
  121. color:#ff6501;
  122. }
  123. /*.free-version {
  124. background:#a8797f;
  125. }
  126. .free-version .header-logo .p-title,.free-version .header-logo .v-title,.free-version .nav-link,.free-version .navbar-crumb{
  127. color:#fff;
  128. }
  129. .pro-version {
  130. background:#798b73;
  131. }
  132. .pro-version .header-logo .p-title,.pro-version .header-logo .v-title,.pro-version .nav-link,.pro-version .navbar-crumb{
  133. color:#fff;
  134. }
  135. .pay-version {
  136. background:#9fa5bb;
  137. }
  138. .pay-version .header-logo .p-title,.pay-version .header-logo .v-title,.pay-version .nav-link,.pay-version .navbar-crumb{
  139. color:#fff;
  140. }*/
  141. .top-msg{
  142. position: fixed;
  143. top:10px;
  144. width:900px;
  145. z-index: 9999;
  146. left:50%;
  147. margin-left:-450px;
  148. }
  149. .top-nav .nav-link{
  150. padding:5px 10px;
  151. border:1px solid #ccc;
  152. border-radius: 0;
  153. margin-right:3px;
  154. margin-top:2px;
  155. color:#666;
  156. background:#f2f2f2;
  157. }
  158. .top-nav .nav-link.active{
  159. border:1px solid #ff6501;
  160. background-color: #ff6501;
  161. padding:7px 10px;
  162. margin-top:0px;
  163. }
  164. .top-nav .nav-link:hover{
  165. background-color:#fff;
  166. }
  167. .top-nav .nav-link.active:hover{
  168. background-color: #ff6501;
  169. cursor: default;
  170. }
  171. .top-nav .nav-del {
  172. width:16px;
  173. height:16px;
  174. border-radius:50%;
  175. font-size:10px;
  176. text-align: center;
  177. display:inline-block;
  178. line-height:16px
  179. }
  180. .top-nav .nav-del:hover{
  181. background-color:#f90000;
  182. color:#fff;
  183. }
  184. .main {
  185. position: relative;
  186. background: #f7f7f9;
  187. }
  188. .project-nav {
  189. width:210px;
  190. position: absolute;
  191. left:0;
  192. border-right:1px solid #ccc;
  193. background: #fff
  194. }
  195. .project-nav-unfold {
  196. width:28px;
  197. position: absolute;
  198. left:0;
  199. border-right:1px solid #ccc;
  200. background: #fff;
  201. text-align: center;
  202. }
  203. .project-nav-unfold .item{
  204. margin-top:38px;
  205. color:#999;
  206. }
  207. .main-nav {
  208. position: absolute;
  209. text-align: center;
  210. z-index: 999;
  211. padding: 0 0 0 2px;
  212. }
  213. .project-nav + .main-nav{
  214. left:210px;
  215. }
  216. .project-nav-unfold + .main-nav{
  217. left:28px;
  218. }
  219. .main-nav .project-switch{
  220. padding:1px 8px 2px 6px;
  221. display: inline-block;
  222. font-size: 18px
  223. }
  224. .main-nav .nav a {
  225. display: block;
  226. width: 28px;
  227. text-align: center;
  228. line-height: 18px;
  229. padding: 10px 0;
  230. border-right: 1px solid #ccc;
  231. }
  232. .main-nav .nav a:hover {
  233. background: #fff;
  234. color: #333;
  235. text-decoration: none;
  236. }
  237. .main-nav .nav a.active {
  238. border: 1px solid #ccc;
  239. border-right: 1px solid #fff;
  240. background: #fff;
  241. color: #333
  242. }
  243. .main-nav .nav-tabs{
  244. border-bottom: none
  245. }
  246. .poj-manage .col-auto{
  247. background:#f7f7f9
  248. }
  249. .poj-cate {
  250. width:58px;
  251. margin-right:-1px;
  252. margin-top:2px;
  253. }
  254. .poj-cate .nav-pills .nav-link{
  255. border-radius: 0;
  256. font-size: 24px;
  257. color: #007bff
  258. }
  259. .poj-cate .nav-item{
  260. position: relative;
  261. }
  262. .poj-cate .nav-pills .badge{
  263. position: absolute;
  264. right:5px;
  265. top:5px;
  266. }
  267. .poj-cate .nav-pills .nav-link:hover{
  268. color:#0056b3
  269. }
  270. .poj-cate .nav-pills .nav-link.active, .nav-pills .show > .nav-link{
  271. background-color: #6c757d;
  272. color:#fff
  273. }
  274. .gl-side.gl-side-lg{
  275. width:200px;
  276. }
  277. .nav-side .nav-link{
  278. padding:.5rem;
  279. }
  280. .nav-side .nav-link.active{
  281. background:#ddd;
  282. color:#333;
  283. }
  284. .pm-side{
  285. position: fixed;
  286. left:0;
  287. height:100%;
  288. border-right:1px solid #ccc;
  289. background: #f7f7f9
  290. }
  291. .pm-content{
  292. padding-left:58px
  293. }
  294. .content {
  295. border-left: 1px solid #ccc;
  296. margin-left: 57px;
  297. background: #fff
  298. }
  299. .content.exist-project-nav{
  300. margin-left:239px;
  301. }
  302. .toolsbar,.toolsbar-f {
  303. background: #f7f7f9;
  304. border-bottom: 1px solid #ccc
  305. }
  306. .tools-btn {
  307. height: 30px;
  308. line-height: 30px
  309. }
  310. .toolsbar .tools-btn.btn:hover,.toolsbar-f .tools-btn.btn:hover {
  311. background: #f7f7f9;
  312. }
  313. .toolsbar .btn-light {
  314. color:#007bff;
  315. min-width: 34px;
  316. }
  317. .toolsbar .btn-light.disabled {
  318. color:#999;
  319. }
  320. .main-side {
  321. border-left: 1px solid #ccc;
  322. overflow-y: hidden;
  323. }
  324. .main-data-top,.main-data-full{
  325. overflow: hidden;
  326. width:100%
  327. }
  328. .main-data-top-side{
  329. overflow: hidden
  330. }
  331. .main-content.col-lg-8{
  332. width:66.666667%
  333. }
  334. .main-content.col-lg-12{
  335. width:100%
  336. }
  337. .main-side.col-lg-4{
  338. width: 33.333333%;
  339. }
  340. .main-side.col-lg-0{
  341. width:0%;
  342. }
  343. .sidebar-middle{
  344. height:80px;
  345. }
  346. .sidebar-bottom,.sidebar-bottom .col-lg-6,.sidebar-bottom .col-lg-12 {
  347. height:300px
  348. }
  349. .top-content, .fluid-content {
  350. overflow: auto;
  351. border-bottom: 1px solid #ccc;
  352. width: 100%
  353. }
  354. .bottom-content .nav {
  355. background: #f7f7f9;
  356. padding:1px 0 0 2px
  357. }
  358. .bottom-content .nav-tabs .nav-link, .side-tabs .nav-tabs .nav-link {
  359. border-radius: 0;
  360. padding: 0.2em 0.5em
  361. }
  362. .bottom-tools {
  363. height: 30px;
  364. line-height: 30px;
  365. background:#fff;
  366. bottom:20px;
  367. left:22px;
  368. z-index: 999
  369. }
  370. .side-tabs .nav-tabs .nav-item {
  371. z-index: 999
  372. }
  373. .side-tabs .nav-tabs {
  374. border-bottom: none;
  375. margin-bottom: -1px
  376. }
  377. .side-tabs .nav-tabs .nav-link {
  378. border-radius: 0;
  379. padding: 0em 0.5em;
  380. line-height: 30px;
  381. z-index: 999
  382. }
  383. .bottom-content .nav-tabs .nav-link.active {
  384. border:1px solid #ccc;
  385. border-bottom: 1px solid #fff
  386. }
  387. .side-tabs .nav-tabs .nav-link.active {
  388. border-top: none;
  389. border-bottom:1px solid #fff
  390. }
  391. .side-tabs a.active, .sub-nav a.active {
  392. background: #ccc
  393. }
  394. .poj-manage {
  395. background: #fff
  396. }
  397. .slide-sidebar {
  398. border-left: 1px solid #E1E1E1;
  399. box-shadow: 0px 15px 15px rgba(0, 0, 0, 0.1);
  400. background: none repeat scroll 0% 0% #ffffff;
  401. overflow: hidden;
  402. position: absolute;
  403. right: 0px;
  404. top: 0;
  405. z-index: 999;
  406. width: 0px;
  407. }
  408. .new-msg {
  409. -webkit-animation: tada 1s infinite .2s ease both;
  410. -moz-animation: tada 1s infinite .2s ease both;
  411. }
  412. @-webkit-keyframes tada {
  413. 0% {
  414. -webkit-transform: scale(1)
  415. }
  416. 10%, 20% {
  417. -webkit-transform: scale(0.9) rotate(-3deg)
  418. }
  419. 30%, 50%, 70%, 90% {
  420. -webkit-transform: scale(1.1) rotate(3deg)
  421. }
  422. 40%, 60%, 80% {
  423. -webkit-transform: scale(1.1) rotate(-3deg)
  424. }
  425. 100% {
  426. -webkit-transform: scale(1) rotate(0)
  427. }
  428. }
  429. @-moz-keyframes tada {
  430. 0% {
  431. -moz-transform: scale(1)
  432. }
  433. 10%, 20% {
  434. -moz-transform: scale(0.9) rotate(-3deg)
  435. }
  436. 30%, 50%, 70%, 90% {
  437. -moz-transform: scale(1.1) rotate(3deg)
  438. }
  439. 40%, 60%, 80% {
  440. -moz-transform: scale(1.1) rotate(-3deg)
  441. }
  442. 100% {
  443. -moz-transform: scale(1) rotate(0)
  444. }
  445. }
  446. .has-danger {
  447. -webkit-animation: shake_a 1s .2s ease both;
  448. -moz-animation: shake_a 1s .2s ease both;
  449. animation: shake_a 1s .2s ease both;
  450. }
  451. @-webkit-keyframes shake_a {
  452. 0%, 100% {
  453. -webkit-transform: translateX(0);
  454. }
  455. 10%, 30%, 50%, 70%, 90% {
  456. -webkit-transform: translateX(-10px);
  457. }
  458. 20%, 40%, 60%, 80% {
  459. -webkit-transform: translateX(10px);
  460. }
  461. }
  462. @-moz-keyframes shake_a {
  463. 0%, 100% {
  464. -moz-transform: translateX(0);
  465. }
  466. 10%, 30%, 50%, 70%, 90% {
  467. -moz-transform: translateX(-10px);
  468. }
  469. 20%, 40%, 60%, 80% {
  470. -moz-transform: translateX(10px);
  471. }
  472. }
  473. @keyframes shake_a {
  474. 0%, 100% {
  475. transform: translateX(0);
  476. }
  477. 10%, 30%, 50%, 70%, 90% {
  478. transform: translateX(-10px);
  479. }
  480. 20%, 40%, 60%, 80% {
  481. transform: translateX(10px);
  482. }
  483. }
  484. .gl-side{
  485. border-right:1px solid #ccc;
  486. width:120px
  487. }
  488. .bottom-content .tab-content .main-data-bottom{
  489. height: 300px;
  490. overflow: auto;
  491. }
  492. .bottom-content .main-data-bottom2{
  493. height: 331px;
  494. overflow: hidden;
  495. }
  496. .bottom-content .tab-content .ovf-hidden{
  497. overflow: hidden;
  498. }
  499. .tn-nav,.rn-nav{
  500. width:30px;
  501. height: 100%;
  502. border-left:1px solid #dee2e6 ;
  503. }
  504. .tn-nav,.cn-nav{
  505. border-right:1px solid #dee2e6 ;
  506. border-left:none;
  507. }
  508. .tn-nav > span{
  509. width:20px;
  510. }
  511. .tn-nav:hover{
  512. background:#f7f7f9;
  513. cursor: pointer;
  514. }
  515. .rn-nav {
  516. background: #f7f7f9
  517. }
  518. .rn-nav .nav{
  519. padding: 0
  520. }
  521. .rn-nav .nav-tabs {
  522. border:none;
  523. margin-top:2px;
  524. }
  525. .rn-nav .nav-tabs .nav-link{
  526. padding:0.4em 0.4em;
  527. line-height: 16px
  528. }
  529. .rn-nav .nav-tabs .nav-link.active {
  530. border:none;
  531. background-color: #fff;
  532. border-left:1px solid #fff;
  533. margin-left:-1px;
  534. border-top:1px solid #ccc;
  535. border-right:1px solid #ccc;
  536. border-bottom:1px solid #ccc;
  537. }
  538. .cn-nav .nav-tabs .nav-link.active {
  539. border:none;
  540. background-color: #fff;
  541. border-right:1px solid #fff;
  542. margin-right:-1px;
  543. border-top:1px solid #ccc;
  544. border-left:1px solid #ccc;
  545. border-bottom:1px solid #ccc;
  546. }
  547. .rn-nav .nav-tabs .nav-link span{
  548. display:none;
  549. }
  550. .rn-nav .nav-tabs .nav-link.active span{
  551. display: inline-block;
  552. }
  553. .poj-list, .side-content ,.form-view{
  554. overflow: auto;
  555. }
  556. .print-toolsbar{
  557. padding:5px
  558. }
  559. .print-toolsbar .panel {
  560. display:inline-block;
  561. vertical-align:top
  562. }
  563. .print-toolsbar .panel .panel-foot{
  564. text-align: center;
  565. font-size: 12px;
  566. padding-bottom:3px;
  567. background:#F2F2F2
  568. }
  569. .print-list {
  570. border-right:1px solid #ccc
  571. }
  572. .print-list .form-list {
  573. overflow: auto
  574. }
  575. .print-list .list-tools{
  576. height:50px;
  577. padding:10px 0;
  578. border-bottom:1px solid #f2f2f2
  579. }
  580. .pageContainer {
  581. text-align: center
  582. }
  583. .pageContainer .page{
  584. border:9px solid transparent;
  585. display: inline-block;
  586. }
  587. .pageContainer .page img{
  588. width:inherit;
  589. height: inherit;
  590. }
  591. .modal-auto-height {
  592. height: 400px;
  593. overflow-y: auto;
  594. }
  595. .modal-toolbar + .modal-auto-height{
  596. height:369px
  597. }
  598. .modal-fixed-height {
  599. height: 400px;
  600. overflow-y: hidden;
  601. }
  602. .sidebar-tools-bar {
  603. background:#fff
  604. }
  605. .side-search-box{
  606. background:#fff;
  607. border-bottom:1px solid #ddd
  608. }
  609. .navbar-crumb span{
  610. float:left;
  611. }
  612. .navbar-crumb span.text-truncate{
  613. max-width: 200px;
  614. }
  615. .dropdown-item{
  616. color:#007bff
  617. }
  618. .dropdown-item:hover{
  619. color:#0056b3
  620. }
  621. .dropdown-item.disabled, .dropdown-item:disabled{
  622. pointer-events:none
  623. }
  624. .tools-symbol{
  625. width:450px
  626. }
  627. .tools-symbol p{
  628. margin: 0
  629. }
  630. .tools-symbol a.btn{
  631. font-size: .95rem;
  632. width:26px;
  633. padding: 0;
  634. height:26px;
  635. }
  636. .custom-file-input:lang(zh) ~ .custom-file-label::after {
  637. content: "浏览";
  638. }
  639. .message-box {
  640. position:absolute;
  641. background:#000;
  642. padding:8px 10px;
  643. line-height: 18px;
  644. border-radius:4px;
  645. box-shadow:2px 2px 6px #ccc;
  646. color:#fff;
  647. }
  648. .triangle-border {
  649. position:absolute;
  650. left:10px;
  651. overflow:hidden;
  652. width:0;
  653. height:0;
  654. border-width:6px;
  655. border-style:solid dashed dashed dashed;
  656. }
  657. .tb-border {
  658. bottom:-12px;
  659. border-color:#000 transparent transparent transparent;
  660. }
  661. .tb-background {
  662. bottom:-11px;
  663. border-color:#000 transparent transparent transparent;
  664. }
  665. .box-text-style {
  666. font-size: 12px;
  667. font-family:"Microsoft YaHei"
  668. }
  669. .box-text-style p{
  670. margin:0 0 2px 0;
  671. }
  672. .box-text-style table{
  673. width: 100%;
  674. text-align: center;
  675. }
  676. .box-text-style table th,.box-text-style table td{
  677. border:1px solid #fff;
  678. }
  679. .box-text-style table p{
  680. text-align: left;
  681. }
  682. .sys-setting-nav .nav-link{
  683. padding:.3rem 1rem;
  684. }
  685. /*快捷切换单位工程*/
  686. .navbar-crumb{
  687. position: relative;
  688. }
  689. .navbar-crumb .f-nav,.navbar-crumb .s-nav{
  690. position: absolute;
  691. z-index: 999;
  692. width: 200px;
  693. background:#fff;
  694. border: 1px solid rgba(0,0,0,.15);
  695. padding: .5rem 0;
  696. }
  697. .navbar-crumb .f-nav{
  698. right:50px;
  699. top:35px;
  700. }
  701. .navbar-crumb .s-nav{
  702. left:200px
  703. }
  704. .navbar-crumb .f-nav li{
  705. padding: .25rem 1rem;
  706. cursor: default;
  707. }
  708. .navbar-crumb .f-nav li.focus{
  709. color: #16181b;
  710. background-color: #f7f7f9;
  711. }
  712. .navbar-crumb .f-nav li .s-nav{
  713. display: none
  714. }
  715. .navbar-crumb .f-nav li.focus .s-nav{
  716. display: block
  717. }
  718. /*书签颜色*/
  719. .annotate-color-1{
  720. background: #E2F2C5;
  721. color: #E2F2C5;
  722. }
  723. .annotate-color-1::before{
  724. color: #E2F2C5;
  725. -webkit-text-stroke:.5px #ced4da;
  726. }
  727. .annotate-color-2{
  728. background: #F9E2CF;
  729. color:#F9E2CF
  730. }
  731. .annotate-color-2::before{
  732. color: #F9E2CF;
  733. -webkit-text-stroke:.5px #ced4da;
  734. }
  735. .annotate-color-3{
  736. background: #F2EFD9;
  737. color:#F2EFD9
  738. }
  739. .annotate-color-3::before{
  740. color:#F2EFD9;
  741. -webkit-text-stroke:.5px #ced4da;
  742. }
  743. .annotate-color-4{
  744. background: #F5D1DA;
  745. color:#F5D1DA
  746. }
  747. .annotate-color-4::before{
  748. color:#F5D1DA;
  749. -webkit-text-stroke:.5px #ced4da;
  750. }
  751. .annotate-color-5{
  752. background: #E3E3E3;
  753. color:#E3E3E3
  754. }
  755. .annotate-color-5::before{
  756. color:#E3E3E3;
  757. -webkit-text-stroke:.5px #ced4da;
  758. }
  759. .annotate-color-6{
  760. background: #B6F3F2;
  761. color:#B6F3F2
  762. }
  763. .annotate-color-6::before{
  764. color:#B6F3F2;
  765. -webkit-text-stroke:.5px #ced4da;
  766. }
  767. .annotate-color-7{
  768. background: #ECE0F5;
  769. color:#ECE0F5
  770. }
  771. .annotate-color-7::before{
  772. color:#ECE0F5;
  773. -webkit-text-stroke:.5px #ced4da;
  774. }
  775. .input-group-text.active{
  776. color:#666;
  777. }
  778. /*宽屏菜单*/
  779. @media screen and (min-width: 900px) {
  780. #fluid-menu{
  781. }
  782. #min-menu{
  783. display: none
  784. }
  785. }
  786. @media screen and (min-width: 912px) {
  787. #share-info{
  788. overflow: auto;
  789. text-overflow: ellipsis;
  790. white-space: nowrap;
  791. max-width:inherit;
  792. }
  793. }
  794. /*窄屏菜单*/
  795. @media screen and (max-width: 900px) {
  796. #fluid-menu{
  797. display: none
  798. }
  799. #min-menu{
  800. }
  801. }
  802. @media screen and (max-width: 1018px) {
  803. #share-info{
  804. overflow: hidden;
  805. text-overflow: ellipsis;
  806. white-space: nowrap;
  807. max-width:80px;
  808. }
  809. }
  810. /*联系人列表*/
  811. .book-list{
  812. list-style: none;
  813. padding:0;
  814. margin:0;
  815. height:285px;
  816. overflow-y: auto;
  817. }
  818. .book-list li{
  819. padding:8px 10px 8px 60px;
  820. position: relative;
  821. }
  822. .book-list li:hover{
  823. background:#f2f2f2;
  824. cursor: pointer;
  825. }
  826. .book-list li .avatar{
  827. position: absolute;
  828. left:10px;
  829. height:40px;
  830. line-height: 40px;
  831. text-align: center;
  832. width:40px;
  833. background:#999;
  834. color:#fff;
  835. border-radius: 30px
  836. }
  837. .avatar-list {
  838. padding:0;
  839. margin:0 0 0 5px;
  840. list-style: none;
  841. }
  842. .avatar-list li{
  843. float:left;
  844. margin-right: 5px
  845. }
  846. .avatar-list li .avatar{
  847. height: 24px;
  848. line-height: 24px;
  849. width:24px;
  850. border-radius: 20px;
  851. color:#fff;
  852. font-size: 10px;
  853. text-align: center;
  854. display: inline-block;
  855. }
  856. .book-list li .avatar.bg-1,.avatar-list li .avatar.bg-1{
  857. background:rgb(16,109,156)
  858. }
  859. .book-list li .avatar.bg-2,.avatar-list li .avatar.bg-2{
  860. background:rgb(90,146,173)
  861. }
  862. .book-list li .avatar.bg-3,.avatar-list li .avatar.bg-3{
  863. background:rgb(132, 118, 104)
  864. }
  865. .book-list li .avatar.bg-4,.avatar-list li .avatar.bg-4{
  866. background:rgb(196, 160, 93)
  867. }
  868. .book-list li .avatar.bg-5,.avatar-list li .avatar.bg-5{
  869. background:rgb(148, 129, 170)
  870. }
  871. .book-list li .avatar.bg-6,.avatar-list li .avatar.bg-6{
  872. background:rgb(61,89,171)
  873. }
  874. .book-list li .avatar.bg-7,.avatar-list li .avatar.bg-7{
  875. background:rgb(200, 132, 146)
  876. }
  877. .book-list li .avatar.bg-8,.avatar-list li .avatar.bg-8{
  878. background:rgb(102, 138, 92)
  879. }
  880. .book-list li .avatar.bg-9,.avatar-list li .avatar.bg-9{
  881. background:rgb(215, 75, 75)
  882. }
  883. .book-list li .avatar.bg-0,.avatar-list li .avatar.bg-0{
  884. background:rgb(134, 131, 131)
  885. }
  886. .book-list li .book-body{
  887. color:#666;
  888. }
  889. .book-list li .book-body h5{
  890. font-size: 16px;
  891. margin-bottom:0;
  892. color:#333;
  893. }
  894. .avatar .pic {
  895. height: 35px;
  896. width: 35px;
  897. border-radius: 100%;
  898. display: inline-block;
  899. float:left;
  900. margin:7px 7px 0 0
  901. }
  902. .avatar .pic img{
  903. display: block;
  904. width: 100%;
  905. height: 100%;
  906. border-radius: 100%;
  907. }
  908. .avatar > a,.msg >a{
  909. display: block;
  910. height:50px;
  911. line-height: 50px;
  912. color:#666;
  913. padding:0 15px;
  914. cursor: pointer;
  915. }
  916. .avatar > a:hover,.msg > a:hover{
  917. text-decoration: none;
  918. box-shadow: inset 0 3px 5px rgba(0,0,0,.125)
  919. }
  920. .avatar.s-1x{
  921. height: 26px;
  922. line-height: 26px;
  923. width: 26px;
  924. font-size: 11px;
  925. border: none
  926. }
  927. .avatar{
  928. height: 40px;
  929. line-height:38px;
  930. width:40px;
  931. border-radius: 20px;
  932. color:#fff;
  933. font-size: 11px;
  934. text-align: center;
  935. display: inline-block;
  936. border:1px solid #fff;
  937. }
  938. .avatar:hover{
  939. text-decoration:none;
  940. color:#fff;
  941. }
  942. .avatar.bg-1{
  943. background:rgb(16,109,156)
  944. }
  945. .avatar.bg-2{
  946. background:rgb(90,146,173)
  947. }
  948. .avatar.bg-3{
  949. background:rgb(132, 118, 104)
  950. }
  951. .avatar.bg-4{
  952. background:rgb(196, 160, 93)
  953. }
  954. .avatar.bg-5{
  955. background:rgb(148, 129, 170)
  956. }
  957. .avatar.bg-6{
  958. background:rgb(61,89,171)
  959. }
  960. .avatar.bg-7{
  961. background:rgb(200, 132, 146)
  962. }
  963. .avatar.bg-8{
  964. background:rgb(102, 138, 92)
  965. }
  966. .avatar.bg-9{
  967. background:rgb(215, 75, 75)
  968. }
  969. .avatar.bg-0{
  970. background:rgb(134, 131, 131)
  971. }
  972. .avatar.bg-10{
  973. border:1px solid #007bff;
  974. color:#007bff;
  975. line-height: 24px
  976. }
  977. .avatar.bg-10:hover{
  978. background-color: #007bff;
  979. color:#fff;
  980. }
  981. .top-avatar {
  982. margin-top:3px;
  983. }
  984. .top-avatar li .avatar{
  985. height:30px;
  986. width: 30px;
  987. line-height: 30px;
  988. font-size:12px;
  989. }
  990. .big-avatar li .avatar{
  991. height:80px;
  992. width: 80px;
  993. line-height: 80px;
  994. font-size:24px;
  995. border-radius: 80px
  996. }
  997. .edit-tag-btn{
  998. display: none
  999. }
  1000. .tag-item:hover .edit-tag-btn{
  1001. display: block
  1002. }
  1003. .tag-item:hover .tag-date{
  1004. display: none
  1005. }
  1006. .in-1 {
  1007. padding-left:15px;
  1008. }
  1009. .in-2 {
  1010. padding-left:30px;
  1011. }
  1012. .in-3 {
  1013. padding-left:45px;
  1014. }
  1015. .in-4 {
  1016. padding-left:55px;
  1017. }
  1018. .in-5 {
  1019. padding-left:65px;
  1020. }
  1021. .in-6 {
  1022. padding-left:75px;
  1023. }