main.css 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269
  1. /*building SAAS 0.1*/
  2. /*bootstrap 初始化*/
  3. body {
  4. font-size: 0.9rem;
  5. overflow: hidden;
  6. background: #e4e7ea;
  7. }
  8. .text-warning {
  9. color: #da9500 !important;
  10. }
  11. .dropdown-menu {
  12. font-size: 12px
  13. }
  14. .btn.text-primary.disabled, .btn.text-primary:disabled {
  15. color:#666!important
  16. }
  17. .btn,.btn-group {
  18. vertical-align: baseline;
  19. }
  20. .nav-pills .nav-link.active, .nav-pills .show > .nav-link{
  21. background-color: #e4e7ea;
  22. color:#333;
  23. font-weight: 600
  24. }
  25. .custom-file-sm,.custom-file-sm .custom-file-label{
  26. height: calc(1.5em + .5rem + 2px);
  27. padding-top: .25rem;
  28. padding-bottom: .25rem;
  29. padding-left: .5rem;
  30. }
  31. .custom-file-sm .custom-file-label:after{
  32. height: calc(1.4em + .5rem + 2px);
  33. padding-top: .25rem;
  34. padding-bottom: .25rem;
  35. font-size: .875rem;
  36. }
  37. .custom-file-sm input{
  38. height: calc(1.5em + .5rem + 2px);
  39. font-size: .875rem;
  40. }
  41. .table th {
  42. background: #e9ecef;
  43. font-weight: normal;
  44. color:#000;
  45. }
  46. .form-check,.form-check-label{
  47. cursor: pointer;
  48. line-height: 22px;
  49. }
  50. .input-group-text .group-checkbox[type="checkbox"],.input-group-text .group-checkbox[type="radio"]{
  51. margin-top: .3rem;
  52. }
  53. .custom-control-label::before {
  54. top:.1rem;
  55. }
  56. .custom-control-label::after{
  57. top:.1rem;
  58. }
  59. .custom-switch .custom-control-label::after{
  60. top:.25rem;
  61. }
  62. .custom-control {
  63. min-height: 1.2rem
  64. }
  65. .custom-control-label {
  66. cursor: pointer;
  67. }
  68. .popover {
  69. background-color: #000
  70. }
  71. .popover-body{
  72. color:#fff;
  73. }
  74. .bs-popover-auto[x-placement^="bottom"] .arrow::after, .bs-popover-bottom .arrow::after{
  75. border-bottom-color:#000;
  76. }
  77. .custom-control-warning-input:checked ~ .custom-control-warning-label::before{
  78. border-color:#da9500 ;
  79. background-color:#da9500
  80. }
  81. .custom-control-warning-label{
  82. color:#da9500;
  83. }
  84. /*
  85. .btn.disabled, .btn:disabled {
  86. opacity:.4
  87. }*/
  88. .btn-primary.disabled, .btn-primary:disabled {
  89. color:#fff;
  90. border-color:#666;
  91. background: #666
  92. }
  93. .btn-outline-primary.disabled, .btn-outline-primary:disabled {
  94. color:#666;
  95. border-color:#666;
  96. background: #ddd
  97. }
  98. .btn-outline-primary.disabled .badge, .btn-outline-primary:disabled .badge{
  99. background: #999
  100. }
  101. .group-tab .btn-light{
  102. color:#007bff;
  103. border-color:#d3d9df;
  104. cursor: pointer;
  105. }
  106. .group-tab .btn-light.active{
  107. cursor: default;
  108. }
  109. .text-info-50{
  110. color: #bee5eb;
  111. }
  112. .text-danger-50{
  113. color: #ed969e;
  114. }
  115. .text-success-50{
  116. color: #c3e6cb;
  117. }
  118. .text-primary-50{
  119. color: #cce5ff;
  120. }
  121. .text-warning-50{
  122. color: #ffddc5;
  123. }
  124. .text-secondary-50{
  125. color: #dcdcdc;
  126. }
  127. .bg-info-50{
  128. background-color: #d0f6fd;
  129. }
  130. .bg-danger-50{
  131. background-color: #f8d7da;
  132. }
  133. .bg-success-50{
  134. background-color: #d4edda;
  135. }
  136. .bg-primary-50{
  137. background-color: #cce5ff;
  138. }
  139. .bg-warning-50{
  140. background-color: #ffddc5;
  141. }
  142. .bg-secondary-50{
  143. background-color: #dcdcdc;
  144. }
  145. .border-info-50{
  146. border:1px solid #9be6f4;
  147. }
  148. .border-danger-50{
  149. border:1px solid #f5c6cb;
  150. }
  151. .border-success-50{
  152. border:1px solid #c3e6cb;
  153. }
  154. .border-primary-50{
  155. border:1px solid #b8daff;
  156. }
  157. .border-warning-50{
  158. border:1px solid #fbc7a3;
  159. }
  160. .border-secondary-50{
  161. border:1px solid #ccc;
  162. }
  163. .input-group-cancel{
  164. position: absolute;
  165. margin-left: -15px;
  166. margin-top: 2px;
  167. font-size: 14px
  168. }
  169. /*在谷歌下移除input[number]的上下箭头*/
  170. input.nospin[type='number']::-webkit-outer-spin-button,
  171. input.nospin[type='number']::-webkit-inner-spin-button{
  172. -webkit-appearance: none !important;
  173. margin: 0;
  174. }
  175. /*在firefox下移除input[number]的上下箭头*/
  176. input.nospin[type="number"]{-moz-appearance:textfield;}
  177. /*自定义css*/
  178. .in-1{padding-left:5px!important}
  179. .in-2{padding-left:21px!important}
  180. .in-3{padding-left:42px!important}
  181. .in-4{padding-left:63px!important}
  182. .in-5{padding-left:84px!important}
  183. .in-6{padding-left:105px!important}
  184. /*滚动条*/
  185. /* 滚动条 */
  186. /*水平滚动条的样式*/
  187. /*::-webkit-scrollbar-thumb:horizontal {
  188. width: 5px;
  189. background-color: #e9ecef;
  190. -webkit-border-radius: 0;
  191. }*/
  192. /*滚动条的背景颜色,滚动条的圆角宽度*/
  193. /*::-webkit-scrollbar-track-piece {
  194. background-color: #efefef;
  195. -webkit-border-radius: 0;
  196. }*/
  197. /*滚动条的宽度,滚动条的高度*/
  198. /*::-webkit-scrollbar {
  199. width: 14px;
  200. height: 14px;
  201. }*/
  202. /*垂直滚动条的样式*/
  203. /*::-webkit-scrollbar-thumb:vertical {
  204. height: 50px;
  205. background-color: #e9ecef;
  206. -webkit-border-radius: 0;
  207. outline: 1px solid #fff;
  208. outline-offset: -1px;
  209. border: 1px solid #ced4da;
  210. }*/
  211. /*滚动条的hover样式*/
  212. /*::-webkit-scrollbar-thumb:hover {
  213. height: 50px;
  214. background-color: #ced4da;
  215. -webkit-border-radius: 0;
  216. }*/
  217. .sjs-height-1,.sjs-height-2,.sjs-sh,.sjs-sh-1,.sjs-sh-2,.sjs-sh-3,.sjs-sh-4,.sjs-sh-5{
  218. overflow: hidden;
  219. }
  220. .sjs-height-4,.sjs-height-5,.sjs-height-6,.sjs-option-height{
  221. overflow: auto;
  222. }
  223. .sjs-bar-1,.sjs-bar-2,.sjs-bar-3,.sjs-bar-4,.sjs-bar-5{
  224. height:30px;
  225. padding-top:3px;
  226. }
  227. .sjs-bar{
  228. height:30px;
  229. padding-top:3px;
  230. }
  231. .sjs-bar .nav {
  232. margin-top:-3px;
  233. }
  234. .sjs-bottom{
  235. height:250px;
  236. }
  237. .sjs-bottom-2{
  238. height:360px;
  239. overflow-y: auto;
  240. }
  241. .form-signin {
  242. max-width:400px;
  243. margin-left:auto;
  244. background: #fff;
  245. padding:30px;
  246. border:1px solid #ddd;
  247. border-radius: .25rem
  248. }
  249. .bg-404{
  250. background:#dcdcdc url("404.png") bottom center no-repeat;
  251. }
  252. .has-danger {
  253. -webkit-animation: shake 1s .2s ease both;
  254. -moz-animation: shake 1s .2s ease both;
  255. animation: shake 1s .2s ease both;
  256. }
  257. @-webkit-keyframes shake {
  258. 0%, 100% {
  259. -webkit-transform: translateX(0);
  260. }
  261. 10%, 30%, 50%, 70%, 90% {
  262. -webkit-transform: translateX(-10px);
  263. }
  264. 20%, 40%, 60%, 80% {
  265. -webkit-transform: translateX(10px);
  266. }
  267. }
  268. @-moz-keyframes shake {
  269. 0%, 100% {
  270. -moz-transform: translateX(0);
  271. }
  272. 10%, 30%, 50%, 70%, 90% {
  273. -moz-transform: translateX(-10px);
  274. }
  275. 20%, 40%, 60%, 80% {
  276. -moz-transform: translateX(10px);
  277. }
  278. }
  279. @keyframes shake {
  280. 0%, 100% {
  281. transform: translateX(0);
  282. }
  283. 10%, 30%, 50%, 70%, 90% {
  284. transform: translateX(-10px);
  285. }
  286. 20%, 40%, 60%, 80% {
  287. transform: translateX(10px);
  288. }
  289. }
  290. /*2.主体框架*/
  291. .header {
  292. background:#fff;
  293. position: fixed;
  294. z-index: 10;
  295. width: 100%;
  296. height: 50px;
  297. top: 0;
  298. left: 0
  299. }
  300. .main{
  301. position: relative;
  302. z-index: 4;
  303. }
  304. .main-nav {
  305. position: fixed;
  306. z-index: 99;
  307. width:55px;
  308. left: 0;
  309. top: 0;
  310. height: 100%;
  311. background: #33425b;
  312. }
  313. .main-panel{
  314. padding-left:55px;
  315. box-sizing: border-box;
  316. }
  317. .panel-sidebar{
  318. box-sizing: border-box;
  319. background: #fbfcfd;
  320. position: fixed;
  321. height: 100%;
  322. z-index: 4;
  323. left:55px;
  324. /*padding-top:50px;*/
  325. border-right: 1px solid #ddd;
  326. width: 200px;
  327. }
  328. .side-fold{
  329. position: absolute;
  330. bottom:10px;
  331. right:20px;
  332. }
  333. .min-side .side-fold{
  334. position: absolute;
  335. bottom:15px;
  336. right:5px;
  337. height: 20px
  338. }
  339. .min-side{
  340. border-right: 1px solid #ddd;
  341. margin-right:10px;
  342. padding-right:15px;
  343. position: relative;
  344. }
  345. .min-side .side-switch i{
  346. font-size: 20px
  347. }
  348. .min-side .side-menu{
  349. position: absolute;
  350. left:-15px;
  351. top:50px;
  352. background:#fff;
  353. width:150px;
  354. border-right:1px solid #ddd;
  355. border-bottom:1px solid #ddd;
  356. box-shadow: 0 1px 3px rgba(0,0,0,.1);
  357. }
  358. .panel-content{
  359. padding:65px 0 0;
  360. position: relative;
  361. z-index: 3;
  362. box-sizing: border-box;
  363. overflow-y: auto;
  364. height: 100vh;
  365. }
  366. .panel-content .content-wrap{
  367. margin:0 15px 15px;
  368. position: relative;
  369. }
  370. .panel-sidebar+.panel-content{
  371. padding: 65px 0 0 200px;
  372. }
  373. .panel-title, .panel-title>.title-bar {
  374. height:50px;
  375. line-height: 50px
  376. }
  377. .panel-title .dropdown-item,.panel-title .dropdown-item-text,.panel-title .form-group {
  378. line-height: normal;
  379. }
  380. .panel-title{
  381. position: fixed;
  382. top:0px;
  383. z-index: 98;
  384. width: 100%;
  385. box-sizing: border-box;
  386. background: #fff;
  387. box-shadow: 0 1px 3px rgba(0,0,0,.05);
  388. border-top: 1px solid #ddd;
  389. }
  390. .panel-sidebar .panel-title{
  391. width:200px;
  392. border-right: 1px solid #ddd;
  393. box-shadow: 0 1px 3px rgba(0,0,0,.1);
  394. }
  395. .panel-content .panel-title{
  396. left: 0;
  397. padding-left: 255px;
  398. padding-right: 20px;
  399. }
  400. .panel-content .panel-title.fluid{
  401. padding-left:55px
  402. }
  403. .panel-title>.title-bar{
  404. padding-left: 20px
  405. }
  406. .panel-title>.title-bar>h2,.panel-title>.title-main>h2{
  407. font-size: 16px;
  408. margin:0;
  409. height: 50px;
  410. line-height: 50px;
  411. display:block
  412. }
  413. .panel-title>.title-bar>h2 .btn{
  414. margin-right:15px
  415. }
  416. .panel-title>.title-main .btn.pull-right {
  417. margin:10px 0 0 10px
  418. }
  419. .panel-title>.title-main .form-control {
  420. margin:10px 0 0 0
  421. }
  422. .panel-title>.title-main{
  423. padding-left: 15px
  424. }
  425. .panel-title .alert {
  426. line-height: normal;
  427. z-index: 999
  428. }
  429. .sidebar-title{
  430. padding: 10px;
  431. border-bottom: 1px solid #ddd;
  432. margin-bottom: 10px;
  433. }
  434. .side-menu{
  435. position: fixed;
  436. right:15px;
  437. top:65px
  438. }
  439. .side-menu .nav-link{
  440. line-height: 16px;
  441. font-size: 14px;
  442. color:#007bff;
  443. }
  444. .side-menu .nav-link:hover{
  445. background:#dcdee3;
  446. color:#333;
  447. }
  448. .sub-content{
  449. margin:0;
  450. }
  451. .pr-46{
  452. padding-right:36px
  453. }
  454. .bcontent-wrap{
  455. height: 350px
  456. }
  457. @media only screen and (max-height: 768px) {
  458. .bcontent-wrap{
  459. height: 250px
  460. }
  461. }
  462. .modal-xl {
  463. max-width: 1200px
  464. }
  465. .border-right-1 {
  466. border-right:1px solid #dee2e6;
  467. }
  468. .border-left-1 {
  469. border-left:1px solid #dee2e6;
  470. }
  471. .border-top-1 {
  472. border-top:1px solid #dee2e6;
  473. }
  474. .border-bottom-1 {
  475. border-bottom:1px solid #dee2e6;
  476. }
  477. /*滚动*/
  478. .scrollbar-auto {
  479. overflow-y: auto;
  480. position: absolute;
  481. bottom: 0;
  482. left: 0;
  483. top: 0;
  484. right: 0;
  485. }
  486. .panel-sidebar .scrollbar-auto{
  487. padding-top: 20px;
  488. box-sizing: border-box;
  489. }
  490. .panel-sidebar .scrollbar-auto {
  491. height: calc(100vh - 100px);
  492. width: 100%;
  493. overflow-y: auto;
  494. position: static;
  495. }
  496. /*结构宽度高度调整条*/
  497. .resize-y{
  498. height:5px;
  499. width:100%;
  500. float: left;
  501. margin-top:-5px;
  502. cursor: s-resize;
  503. z-index: 999
  504. }
  505. .resize-x{
  506. width:5px;
  507. height:100%;
  508. float: left;
  509. margin-left:-5px;
  510. cursor: w-resize;
  511. z-index: 999
  512. }
  513. /*头部*/
  514. .header .logo {
  515. float: left;
  516. box-shadow: 1px 0 6px rgba(0,0,0,.06);
  517. margin-right: 20px;
  518. margin:0
  519. }
  520. .header .logo>a{
  521. width:120px;
  522. height:50px;
  523. line-height: 50px;
  524. display: inline-block;
  525. color:#fff;
  526. font-size:24px;
  527. padding:0 10px;
  528. transition: all ease .4s;
  529. background:#207fd1 url(logo.png) no-repeat;
  530. text-indent: -9999px;
  531. vertical-align: top
  532. }
  533. .header .logo>a:hover{
  534. background-color:#5596cf;
  535. text-decoration: none;
  536. }
  537. .header-user > div {
  538. float:left
  539. }
  540. .avatar .pic {
  541. height: 35px;
  542. width: 35px;
  543. border-radius: 100%;
  544. display: inline-block;
  545. float:left;
  546. margin:7px 7px 0 0
  547. }
  548. .avatar .pic img{
  549. display: block;
  550. width: 100%;
  551. height: 100%;
  552. border-radius: 100%;
  553. }
  554. .avatar > a,.msg >a{
  555. display: block;
  556. height:50px;
  557. line-height: 50px;
  558. color:#666;
  559. padding:0 15px;
  560. cursor: pointer;
  561. }
  562. .avatar > a:hover,.msg > a:hover{
  563. text-decoration: none;
  564. box-shadow: inset 0 3px 5px rgba(0,0,0,.125)
  565. }
  566. .header-user .msg{
  567. border-left:1px solid #eee
  568. }
  569. .header-user .msg .glyphicon{
  570. font-size:20px;
  571. vertical-align: middle;
  572. }
  573. .header-user .msg .badge{
  574. margin:0 0 0 5px
  575. }
  576. .header .poj-name {
  577. float:left;
  578. padding:0 0 0 15px;
  579. font-size:18px
  580. }
  581. .header .poj-name a{
  582. color:#666
  583. }
  584. .header .poj-name > span{
  585. height:50px;
  586. line-height:50px;
  587. }
  588. /*登陆相关*/
  589. .login-body{
  590. background:linear-gradient(#192948,#33425b);
  591. height:100%
  592. }
  593. .login-infoinput {
  594. margin-top:15%
  595. }
  596. .login-body .container{
  597. position:absolute;
  598. top:10%;
  599. margin:0 auto;
  600. left:0;
  601. right:0;
  602. }
  603. .login-bg.img-1{
  604. background:url("undraw_all_the_data_h4ki.svg") no-repeat;
  605. }
  606. .login-bg.img-2{
  607. background:url("undraw_order_a_car_3tww.svg") no-repeat;
  608. }
  609. .login-bg.img-3{
  610. background:url("undraw_work_chat_erdt.svg") no-repeat;
  611. }
  612. .login-body .login-bg{
  613. width: 100%;
  614. height: 100%;
  615. background-position:25% 95%;
  616. background-size: 40% auto;
  617. display: inline-block;
  618. opacity: .8
  619. }
  620. /*侧栏主菜单*/
  621. .nav-top,.nav-bottom{
  622. width: 55px
  623. }
  624. .bg-nav a{
  625. color:#7786ab;
  626. width:55px;
  627. text-align: center;
  628. display: inline-block;
  629. padding:15px 0;
  630. font-size: 12px
  631. }
  632. .bg-nav a i{
  633. font-size:22px;
  634. }
  635. .bg-nav a span{
  636. display: none;
  637. }
  638. .bg-nav > li{
  639. width:120px
  640. }
  641. .bg-nav > li.active{
  642. background: #192948
  643. }
  644. .bg-nav > li.active a{
  645. border-radius: 0;
  646. background: #192948
  647. }
  648. .bg-nav > li > a:hover,.bg-nav > li.active > a:hover{
  649. background: #192948;
  650. color:#f2f2f2;
  651. text-decoration: none;
  652. }
  653. .bg-nav > li > a.maintain-icon:hover{
  654. background:none;
  655. color:none;
  656. text-decoration: none;
  657. }
  658. .bg-nav > li.active a span{
  659. display: block;
  660. }
  661. .bg-nav > li + li {
  662. margin-top:0;
  663. }
  664. .bg-nav .sub-menu {
  665. list-style:none;
  666. padding:0 0 0 20px;
  667. width:120px;
  668. display: none
  669. }
  670. .bg-nav .sub-menu a {
  671. width:100px;
  672. height:30px;
  673. line-height:30px
  674. }
  675. .bg-nav .sub-menu:last-child{
  676. margin:0 0 20px 0
  677. }
  678. .bg-nav .menu-arrow{
  679. margin:22px 8px 0 0
  680. }
  681. .nav-box h3{
  682. font-size: 14px;
  683. font-weight: 700;
  684. padding-bottom: 4px;
  685. border-bottom: 1px solid #e2eaec;
  686. padding-right: 15px;
  687. margin-bottom: 10px;
  688. margin-left: 17px
  689. }
  690. .nav-box > .sub-list > li > a{
  691. padding-left: 40px
  692. }
  693. .nav-box .tips-dot {
  694. right:20px;
  695. top:8px
  696. }
  697. .nav-box .nav-list li{
  698. position: relative;
  699. }
  700. .contarl-box{
  701. padding:1rem 2rem 1rem 2rem;
  702. border-top:1px solid #ddd;
  703. }
  704. .nav-list li a{
  705. color: #333;
  706. display: block;
  707. height: 35px;
  708. line-height: 35px;
  709. box-sizing: border-box;
  710. padding-left: 17px;
  711. padding-right: 45px;
  712. text-overflow: ellipsis;
  713. position: relative;
  714. }
  715. .nav-list li a:hover{
  716. text-decoration: none;
  717. background:#e4e7ea;
  718. cursor: pointer;
  719. }
  720. .nav-list li a .badge{
  721. position: absolute;
  722. right:17px;
  723. top:9px
  724. }
  725. .nav-list li.active a{
  726. background:#e4e7ea;
  727. font-weight: 600
  728. }
  729. .side-menu .nav-link{
  730. padding:.5rem .6rem;
  731. }
  732. /*内容区*/
  733. .c-header {
  734. padding:0 0 5px
  735. }
  736. .c-body{
  737. padding:1px;
  738. background:#fff;
  739. }
  740. .right-nav{
  741. width:36px
  742. }
  743. .right-nav .nav-link.active{
  744. background: #fff;
  745. color:#495057
  746. }
  747. .form-group .necessary{
  748. font-size:18px;
  749. color:#f90000
  750. }
  751. .bg-gray {
  752. background-color:#bbb!important;
  753. }
  754. .datepickers-container {
  755. z-index: 9999
  756. }
  757. .modal-height-500{
  758. height:450px;
  759. overflow: hidden
  760. }
  761. .modal-height-300{
  762. height:300px;
  763. overflow:auto
  764. }
  765. .scroll-y {
  766. overflow-y: auto;
  767. }
  768. .scroll-x {
  769. overflow-x: auto;
  770. }
  771. .modal-lgx {
  772. max-width:1000px
  773. }
  774. .title-main .nav{
  775. line-height: 16px;
  776. margin-top:8px
  777. }
  778. .msg-content {
  779. font-size: 14px
  780. }
  781. .bd-toc {
  782. position: sticky;
  783. top:3rem;
  784. height: calc(100vh - 10rem);
  785. overflow-y: auto;
  786. }
  787. /*草图编辑器*/
  788. .img-view{
  789. height:400px;
  790. border:.2rem solid #ccc;
  791. position: relative;
  792. width:100%;
  793. overflow: hidden;
  794. }
  795. .img-view::after{
  796. content:"草图编辑区";
  797. color:#ddd;
  798. position: absolute;
  799. left:50%;
  800. top:50%;
  801. margin-left:-80px;
  802. margin-top:-24px;
  803. font-size:36px
  804. }
  805. .img-view .img-item{
  806. position: absolute;
  807. }
  808. .img-view .img-item .img-bar{
  809. position:absolute;
  810. right:0;
  811. top:0;
  812. display:none
  813. }
  814. .img-item:hover .img-bar{
  815. display: block;
  816. }
  817. .batch-l-t{
  818. height: 180px;
  819. overflow: hidden
  820. }
  821. .batch-l-b{
  822. height: 320px;
  823. overflow: hidden
  824. }
  825. .batch-r {
  826. height:522px;
  827. overflow: hidden
  828. }
  829. /*打印工具栏*/
  830. .print-toolsbar{
  831. padding-bottom:5px
  832. }
  833. .print-toolsbar .panel {
  834. display:inline-block;
  835. vertical-align:top;
  836. background:#f7f7f9
  837. }
  838. .print-toolsbar .panel .panel-foot{
  839. text-align: center;
  840. font-size: 12px
  841. }
  842. .print-list {
  843. border-right:1px solid #ccc
  844. }
  845. .print-list .form-list {
  846. overflow: auto
  847. }
  848. .print-list .list-tools{
  849. height:50px;
  850. padding:10px 0;
  851. border-bottom:1px solid #f2f2f2
  852. }
  853. .pageContainer {
  854. background: #ededed;
  855. text-align: center
  856. }
  857. .pageContainer .page{
  858. border:9px solid transparent;
  859. display: inline-block;
  860. }
  861. .pageContainer .page img{
  862. width:inherit;
  863. height: inherit;
  864. }
  865. .pageContainer canvas{
  866. background: #fff
  867. }
  868. .m-close-side{
  869. position: absolute;
  870. right:-1px;
  871. top:250px;
  872. background: #f2f2f2;
  873. padding:30px 3px;
  874. }
  875. .m-close-side:hover{
  876. background:#eae9e9;
  877. }
  878. .baobiao-close-side{
  879. position: absolute;
  880. left:15px;
  881. top:250px;
  882. background: #e1e1e1
  883. }
  884. .baobiao-close-side a{
  885. color:#007bff;
  886. height:80px;
  887. line-height: 80px;
  888. display: inline-block
  889. }
  890. .baobiao-close-side:hover{
  891. background:#007bff;
  892. }
  893. .baobiao-close-side:hover a{
  894. color:#fff;
  895. }
  896. .edit-tag-btn{
  897. display: none
  898. }
  899. .tag-item:hover .edit-tag-btn{
  900. display: block
  901. }
  902. /*电子签名*/
  903. .add-sign-list-item{
  904. padding:.5rem .5rem .5rem 1rem;
  905. }
  906. .add-sign-list-item:hover{
  907. box-shadow:0 0 3px rgba(0,0,0,.18)
  908. }
  909. .add-sign-list-item .btn-link {
  910. display: none
  911. }
  912. .add-sign-list-item:hover .btn-link {
  913. display: block
  914. }
  915. /*标段类表折叠收起*/
  916. .fold-switch {
  917. cursor: pointer;
  918. }
  919. .fold-switch:hover{
  920. color:#0056b3;
  921. }
  922. /*界面紧凑相关代码*/
  923. body{
  924. font-size:12px;
  925. }
  926. .btn-group-sm > .btn, .btn-sm{
  927. font-size: 12px;
  928. padding:1px 0.6rem;
  929. }
  930. .panel-title, .panel-title > .title-bar{
  931. height:34px;
  932. line-height: 30px;
  933. }
  934. .panel-title > .title-main .btn.pull-right {
  935. margin: 5px 0 0 0
  936. }
  937. .panel-content{
  938. padding-top:35px;
  939. overflow: hidden
  940. }
  941. .panel-content .content-wrap{
  942. margin:0;
  943. }
  944. .table td, .table th {
  945. padding:.3rem;
  946. }
  947. .form-control-sm {
  948. font-size:12px;
  949. padding-top:.1rem;
  950. }
  951. label{
  952. margin-bottom:.3rem;
  953. color:#757575;
  954. }
  955. .form-control-plaintext.form-control-lg, .form-control-plaintext.form-control-sm {
  956. padding-left:.5rem;
  957. background: #f2f2f280
  958. }
  959. .invalid-feedback{
  960. font-size:100%;
  961. }
  962. .modal-header{
  963. padding:.5rem 1rem
  964. }
  965. .modal-title{
  966. font-size:16px;
  967. }
  968. .modal-footer {
  969. padding:.5rem 1rem
  970. }
  971. .modal-body h6,.modal-body h5{
  972. font-size:12px;
  973. }
  974. .panel-title > .title-bar{
  975. padding-left:10px;
  976. }
  977. .panel-sidebar .panel-title{
  978. width:120px;
  979. }
  980. .panel-title > .title-bar > h2, .panel-title > .title-main > h2{
  981. height:34px;
  982. line-height: 34px;
  983. font-size: 12px
  984. }
  985. .panel-title > .title-main .form-control {
  986. margin: 4px 0 0 0;
  987. }
  988. .panel-sidebar {
  989. width:120px;
  990. }
  991. .panel-sidebar .scrollbar-auto{
  992. padding-top:0;
  993. }
  994. .nav-list li a{
  995. padding-right:0px;
  996. height:30px;
  997. line-height: 30px
  998. }
  999. .nav-box h3{
  1000. margin-left:12px;
  1001. }
  1002. .nav-box > .sub-list > li > a{
  1003. padding-left:32px;
  1004. }
  1005. .panel-sidebar + .panel-content{
  1006. padding:35px 0 0 120px;
  1007. overflow: hidden;
  1008. }
  1009. .contarl-box{
  1010. padding:1rem 1rem;
  1011. }
  1012. .min-side .side-menu {
  1013. top:34px;
  1014. }
  1015. .panel-content .panel-title{
  1016. padding-left:175px;
  1017. background: linear-gradient( #ccc,2%, #ffffff);
  1018. }
  1019. .nav-link{
  1020. padding:.3rem .5rem;
  1021. }
  1022. .side-menu .nav-link{
  1023. font-size:12px;
  1024. }
  1025. legend {
  1026. font-size:16px;
  1027. }
  1028. .input-group-sm > .custom-select, .input-group-sm > .form-control:not(textarea) {
  1029. height: calc(1.4125rem + 2px);
  1030. }
  1031. .input-group-sm>.form-control, .input-group-sm>.input-group-append>.btn, .input-group-sm>.input-group-append>.input-group-text, .input-group-sm>.input-group-prepend>.btn, .input-group-sm>.input-group-prepend>.input-group-text{
  1032. height: calc(1.4125rem + 2px);
  1033. }
  1034. .input-group-sm > .custom-select, .input-group-sm > .form-control, .input-group-sm > .input-group-append > .btn, .input-group-sm > .input-group-append > .input-group-text, .input-group-sm > .input-group-prepend > .btn, .input-group-sm > .input-group-prepend > .input-group-text {
  1035. font-size:12px;
  1036. padding:.1rem .5rem;
  1037. }
  1038. .side-menu{
  1039. right:0;
  1040. top:35px;
  1041. }
  1042. .form-control-sm{
  1043. height:calc(1.4125rem + 2px);
  1044. }
  1045. .form-group {
  1046. margin-bottom:.5rem;
  1047. }
  1048. .badge{
  1049. font-size:100%;
  1050. }
  1051. .sjs-height-0{
  1052. overflow: auto;
  1053. }
  1054. .nav-box h3{
  1055. margin-bottom:5px;
  1056. }
  1057. .min-side .side-menu{
  1058. padding-bottom:10px;
  1059. }
  1060. .side-fold {
  1061. right:50px;
  1062. bottom:5px;
  1063. }
  1064. .side-fold a{
  1065. font-size:24px;
  1066. }
  1067. .min-side {
  1068. padding-bottom:5px;
  1069. }
  1070. .min-side .side-fold{
  1071. bottom:10px;
  1072. }
  1073. .min-side .side-fold a{
  1074. font-size:18px;
  1075. }
  1076. .form-text{
  1077. font-size:12px;
  1078. }
  1079. .btn-sm .badge{
  1080. font-size:10px;
  1081. padding:.2em .4em;
  1082. top:0;
  1083. }
  1084. .search-group {
  1085. position: relative;
  1086. }
  1087. .search-group .remove-btn {
  1088. position:absolute;
  1089. right:10px;
  1090. top:3px;
  1091. }
  1092. /*菜单栏系统维护图标*/
  1093. a.maintain-icon{
  1094. position:relative;
  1095. }
  1096. a.maintain-icon span{
  1097. position: absolute;
  1098. left:55px;
  1099. height:53px;
  1100. line-height: 53px;
  1101. width:390px;
  1102. top:0;
  1103. display:none;
  1104. font-size:14px;
  1105. }
  1106. a.maintain-icon:hover span{
  1107. display: inline-block;
  1108. }
  1109. a.maintain-icon .fa{
  1110. -webkit-animation: shake_a 2s .2s ease both;
  1111. -moz-animation: shake_a 2s .2s ease both;
  1112. animation: shake_a 2s .2s ease both;
  1113. animation-iteration-count:infinite
  1114. }
  1115. @-webkit-keyframes shake_a {
  1116. 0%, 100% {
  1117. -webkit-transform: rotate(0);
  1118. }
  1119. 10%, 30%, 50%, 70%, 90% {
  1120. -webkit-transform: rotate(5deg);
  1121. }
  1122. 20%, 40%, 60%, 80% {
  1123. -webkit-transform: rotate(-5deg);
  1124. }
  1125. }
  1126. @-moz-keyframes shake_a {
  1127. 0%, 100% {
  1128. -moz-transform: rotate(0);
  1129. }
  1130. 10%, 30%, 50%, 70%, 90% {
  1131. -moz-transform: rotate(5deg);
  1132. }
  1133. 20%, 40%, 60%, 80% {
  1134. -moz-transform: rotate(-5deg);
  1135. }
  1136. }
  1137. @keyframes shake_a {
  1138. 0%, 100% {
  1139. transform: rotate(0);
  1140. }
  1141. 10%, 30%, 50%, 70%, 90% {
  1142. transform: rotate(5deg);
  1143. }
  1144. 20%, 40%, 60%, 80% {
  1145. transform: rotate(-5deg);
  1146. }
  1147. }
  1148. a.maintain-icon:hover .fa{
  1149. animation-iteration-count:0
  1150. }
  1151. /*审批列表*/
  1152. .timeline-list .timeline-list-item{
  1153. position: relative;
  1154. }
  1155. .timeline-list-item .timeline-item-date{
  1156. width:50px;
  1157. position:absolute;
  1158. left:0px;
  1159. text-align: center;
  1160. color:#ccc;
  1161. }
  1162. .timeline-list-item .timeline-item-date span{
  1163. display: block;
  1164. color: #333;
  1165. text-align: center;
  1166. }
  1167. .timeline-list-item .timeline-item-tail{
  1168. position: absolute;
  1169. top: 10px;
  1170. left: 55px;
  1171. height: calc(100% - 10px);
  1172. border-left: 1px solid #ddd ;
  1173. }
  1174. .timeline-list-item .timeline-item-icon{
  1175. width:20px;
  1176. height:20px;
  1177. position: absolute;
  1178. border-radius: 100px;
  1179. text-align: center;
  1180. line-height: 20px;
  1181. left:45px;
  1182. }
  1183. .timeline-list-item .timeline-item-content{
  1184. position: relative;
  1185. margin: 0 0 0 70px;
  1186. word-break: break-word;
  1187. }
  1188. .book-list{
  1189. padding: 0;
  1190. margin: 0;
  1191. height: 285px;
  1192. overflow-y: auto;
  1193. }
  1194. .book-list dt{
  1195. padding:5px 0 5px 5px;
  1196. background-color: #f2f2f2;
  1197. }
  1198. .book-list dd{
  1199. padding-left:15px;
  1200. cursor: pointer;
  1201. }
  1202. .book-list dd:hover{
  1203. background-color: #f2f2f2
  1204. }
  1205. .dd-content {
  1206. display: none;
  1207. }
  1208. .fold-card {
  1209. display: none;
  1210. }
  1211. .att-file-btn {
  1212. display: none;
  1213. }
  1214. .list-table tr:hover .att-file-btn{
  1215. display: inline-block;
  1216. }
  1217. /*头像颜色*/
  1218. .avatar{
  1219. height: 40px;
  1220. line-height:38px;
  1221. width:40px;
  1222. border-radius: 20px;
  1223. color:#fff;
  1224. font-size: 11px;
  1225. text-align: center;
  1226. display: inline-block;
  1227. border:1px solid #fff;
  1228. }
  1229. .avatar:hover{
  1230. text-decoration:none;
  1231. color:#fff;
  1232. }
  1233. .avatar.bg-1{
  1234. background:rgb(16,109,156)
  1235. }
  1236. .avatar.bg-2{
  1237. background:rgb(90,146,173)
  1238. }
  1239. .avatar.bg-3{
  1240. background:rgb(132, 118, 104)
  1241. }
  1242. .avatar.bg-4{
  1243. background:rgb(196, 160, 93)
  1244. }
  1245. .avatar.bg-5{
  1246. background:rgb(148, 129, 170)
  1247. }
  1248. .avatar.bg-6{
  1249. background:rgb(61,89,171)
  1250. }
  1251. .avatar.bg-7{
  1252. background:rgb(200, 132, 146)
  1253. }
  1254. .avatar.bg-8{
  1255. background:rgb(102, 138, 92)
  1256. }
  1257. .avatar.bg-9{
  1258. background:rgb(215, 75, 75)
  1259. }
  1260. .avatar.bg-0{
  1261. background:rgb(134, 131, 131)
  1262. }