main.css 20 KB

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