main.css 17 KB

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