main.css 43 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307
  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. .nav-padding .nav-link.active, .nav-padding .show > .nav-link{
  26. color: #fff;
  27. background-color: #007bff;
  28. }
  29. .custom-file-sm,.custom-file-sm .custom-file-label{
  30. height: calc(1.5em + .5rem + 2px);
  31. padding-top: .25rem;
  32. padding-bottom: .25rem;
  33. padding-left: .5rem;
  34. }
  35. .custom-file-sm .custom-file-label:after{
  36. height: calc(1.4em + .5rem + 2px);
  37. padding-top: .25rem;
  38. padding-bottom: .25rem;
  39. font-size: .875rem;
  40. }
  41. .custom-file-sm input{
  42. height: calc(1.5em + .5rem + 2px);
  43. font-size: .875rem;
  44. }
  45. .table th {
  46. background: #e9ecef;
  47. font-weight: normal;
  48. color:#000;
  49. vertical-align: middle;
  50. }
  51. .table td{
  52. vertical-align: middle;
  53. }
  54. .table.table-dark th {
  55. background:none;
  56. font-weight: normal;
  57. color:#fff;
  58. }
  59. .form-check,.form-check-label{
  60. cursor: pointer;
  61. line-height: 22px;
  62. }
  63. .input-group-text .group-checkbox[type="checkbox"],.input-group-text .group-checkbox[type="radio"]{
  64. margin-top: .3rem;
  65. }
  66. .custom-control-label::before {
  67. top:.1rem;
  68. }
  69. .custom-control-label::after{
  70. top:.1rem;
  71. }
  72. .custom-switch .custom-control-label::after{
  73. top:.25rem;
  74. }
  75. .custom-control {
  76. min-height: 1.2rem;
  77. line-height: 1.2rem
  78. }
  79. .custom-control-label {
  80. cursor: pointer;
  81. }
  82. .popover {
  83. background-color: #000
  84. }
  85. .popover-body{
  86. color:#fff;
  87. }
  88. .bs-popover-auto[x-placement^="bottom"] .arrow::after, .bs-popover-bottom .arrow::after{
  89. border-bottom-color:#000;
  90. }
  91. .custom-control-warning-input:checked ~ .custom-control-warning-label::before{
  92. border-color:#da9500 ;
  93. background-color:#da9500
  94. }
  95. .custom-control-warning-label{
  96. color:#da9500;
  97. }
  98. /*
  99. .btn.disabled, .btn:disabled {
  100. opacity:.4
  101. }*/
  102. .btn-primary.disabled, .btn-primary:disabled {
  103. color:#fff;
  104. border-color:#666;
  105. background: #666
  106. }
  107. .btn-outline-primary.disabled, .btn-outline-primary:disabled {
  108. color:#666;
  109. border-color:#666;
  110. background: #ddd
  111. }
  112. .btn-outline-primary.disabled .badge, .btn-outline-primary:disabled .badge{
  113. background: #999
  114. }
  115. .group-tab .btn-light{
  116. color:#007bff;
  117. border-color:#d3d9df;
  118. cursor: pointer;
  119. }
  120. .group-tab .btn-light.active{
  121. cursor: default;
  122. }
  123. .text-info-50{
  124. color: #bee5eb;
  125. }
  126. .text-danger-50{
  127. color: #ed969e;
  128. }
  129. .text-success-50{
  130. color: #c3e6cb;
  131. }
  132. .text-primary-50{
  133. color: #cce5ff;
  134. }
  135. .text-warning-50{
  136. color: #ffddc5;
  137. }
  138. .text-secondary-50{
  139. color: #dcdcdc;
  140. }
  141. .bg-info-50{
  142. background-color: #d0f6fd;
  143. }
  144. .bg-danger-50{
  145. background-color: #f8d7da;
  146. }
  147. .bg-success-50{
  148. background-color: #d4edda;
  149. }
  150. .bg-primary-50{
  151. background-color: #cce5ff;
  152. }
  153. .bg-warning-50{
  154. background-color: #ffddc5;
  155. }
  156. .bg-secondary-50{
  157. background-color: #dcdcdc;
  158. }
  159. .border-info-50{
  160. border:1px solid #9be6f4;
  161. }
  162. .border-danger-50{
  163. border:1px solid #f5c6cb;
  164. }
  165. .border-success-50{
  166. border:1px solid #c3e6cb;
  167. }
  168. .border-primary-50{
  169. border:1px solid #b8daff;
  170. }
  171. .border-warning-50{
  172. border:1px solid #fbc7a3;
  173. }
  174. .border-secondary-50{
  175. border:1px solid #ccc;
  176. }
  177. .input-group-cancel{
  178. position: absolute;
  179. margin-left: -15px;
  180. margin-top: 2px;
  181. font-size: 14px
  182. }
  183. /*在谷歌下移除input[number]的上下箭头*/
  184. input.nospin[type='number']::-webkit-outer-spin-button,
  185. input.nospin[type='number']::-webkit-inner-spin-button{
  186. -webkit-appearance: none !important;
  187. margin: 0;
  188. }
  189. /*在firefox下移除input[number]的上下箭头*/
  190. input.nospin[type="number"]{-moz-appearance:textfield;}
  191. /*自定义css*/
  192. .in-1{padding-left:5px!important}
  193. .in-2{padding-left:21px!important}
  194. .in-3{padding-left:42px!important}
  195. .in-4{padding-left:63px!important}
  196. .in-5{padding-left:84px!important}
  197. .in-6{padding-left:105px!important}
  198. .in-7{padding-left:126px!important}
  199. .in-8{padding-left:147px!important}
  200. .in-9{padding-left:168px!important}
  201. .in-10{padding-left:189px!important}
  202. /*滚动条*/
  203. /* 滚动条 */
  204. /*水平滚动条的样式*/
  205. /*::-webkit-scrollbar-thumb:horizontal {
  206. width: 5px;
  207. background-color: #e9ecef;
  208. -webkit-border-radius: 0;
  209. }*/
  210. /*滚动条的背景颜色,滚动条的圆角宽度*/
  211. /*::-webkit-scrollbar-track-piece {
  212. background-color: #efefef;
  213. -webkit-border-radius: 0;
  214. }*/
  215. /*滚动条的宽度,滚动条的高度*/
  216. /*::-webkit-scrollbar {
  217. width: 14px;
  218. height: 14px;
  219. }*/
  220. /*垂直滚动条的样式*/
  221. /*::-webkit-scrollbar-thumb:vertical {
  222. height: 50px;
  223. background-color: #e9ecef;
  224. -webkit-border-radius: 0;
  225. outline: 1px solid #fff;
  226. outline-offset: -1px;
  227. border: 1px solid #ced4da;
  228. }*/
  229. /*滚动条的hover样式*/
  230. /*::-webkit-scrollbar-thumb:hover {
  231. height: 50px;
  232. background-color: #ced4da;
  233. -webkit-border-radius: 0;
  234. }*/
  235. .sjs-height-1,.sjs-height-2,.sjs-sh,.sjs-sh-1,.sjs-sh-2,.sjs-sh-3,.sjs-sh-4,.sjs-sh-5{
  236. overflow: hidden;
  237. }
  238. .sjs-height-4,.sjs-height-5,.sjs-height-6,.sjs-option-height{
  239. overflow: auto;
  240. }
  241. .sjs-bar-1,.sjs-bar-2,.sjs-bar-3,.sjs-bar-4,.sjs-bar-5{
  242. height:30px;
  243. padding-top:3px;
  244. }
  245. .sjs-bar{
  246. height:30px;
  247. padding-top:3px;
  248. }
  249. .sjs-bar .nav {
  250. margin-top:-3px;
  251. }
  252. .sjs-bottom{
  253. height:250px;
  254. }
  255. .sjs-bottom-2{
  256. height:360px;
  257. overflow-y: auto;
  258. }
  259. .form-signin {
  260. max-width:400px;
  261. margin-left:auto;
  262. background: #fff;
  263. padding:30px;
  264. border:1px solid #ddd;
  265. border-radius: .25rem
  266. }
  267. .bg-404{
  268. background:#dcdcdc url("404.png") bottom center no-repeat;
  269. }
  270. .has-danger {
  271. -webkit-animation: shake 1s .2s ease both;
  272. -moz-animation: shake 1s .2s ease both;
  273. animation: shake 1s .2s ease both;
  274. }
  275. @-webkit-keyframes shake {
  276. 0%, 100% {
  277. -webkit-transform: translateX(0);
  278. }
  279. 10%, 30%, 50%, 70%, 90% {
  280. -webkit-transform: translateX(-10px);
  281. }
  282. 20%, 40%, 60%, 80% {
  283. -webkit-transform: translateX(10px);
  284. }
  285. }
  286. @-moz-keyframes shake {
  287. 0%, 100% {
  288. -moz-transform: translateX(0);
  289. }
  290. 10%, 30%, 50%, 70%, 90% {
  291. -moz-transform: translateX(-10px);
  292. }
  293. 20%, 40%, 60%, 80% {
  294. -moz-transform: translateX(10px);
  295. }
  296. }
  297. @keyframes shake {
  298. 0%, 100% {
  299. transform: translateX(0);
  300. }
  301. 10%, 30%, 50%, 70%, 90% {
  302. transform: translateX(-10px);
  303. }
  304. 20%, 40%, 60%, 80% {
  305. transform: translateX(10px);
  306. }
  307. }
  308. /*2.主体框架*/
  309. .header {
  310. background:#fff;
  311. position: fixed;
  312. z-index: 10;
  313. width: 100%;
  314. height: 50px;
  315. top: 0;
  316. left: 0
  317. }
  318. .main{
  319. position: relative;
  320. z-index: 4;
  321. }
  322. .main-nav {
  323. position: fixed;
  324. z-index: 99;
  325. width:110px;
  326. left: 0;
  327. top: 0;
  328. height: 100%;
  329. background: #33425b;
  330. }
  331. .main-panel{
  332. padding-left:110px;
  333. box-sizing: border-box;
  334. }
  335. .panel-sidebar{
  336. box-sizing: border-box;
  337. background: #fbfcfd;
  338. position: fixed;
  339. height: 100%;
  340. z-index: 4;
  341. left:110px;
  342. /*padding-top:50px;*/
  343. border-right: 1px solid #ddd;
  344. width: 200px;
  345. }
  346. .side-fold{
  347. position: absolute;
  348. bottom:10px;
  349. right:20px;
  350. }
  351. .min-side .side-fold{
  352. position: absolute;
  353. bottom:15px;
  354. right:5px;
  355. height: 20px
  356. }
  357. .min-side{
  358. border-right: 1px solid #ddd;
  359. margin-right:10px;
  360. padding-right:15px;
  361. position: relative;
  362. }
  363. .min-side .side-switch i{
  364. font-size: 20px
  365. }
  366. .min-side .side-menu{
  367. position: absolute;
  368. left:-15px;
  369. top:50px;
  370. background:#fff;
  371. width:150px;
  372. border-right:1px solid #ddd;
  373. border-bottom:1px solid #ddd;
  374. box-shadow: 0 1px 3px rgba(0,0,0,.1);
  375. }
  376. .panel-content{
  377. padding:65px 0 0;
  378. position: relative;
  379. z-index: 3;
  380. box-sizing: border-box;
  381. overflow-y: auto;
  382. height: 100vh;
  383. }
  384. .panel-content .content-wrap{
  385. margin:0 15px 15px;
  386. position: relative;
  387. }
  388. .panel-sidebar+.panel-content{
  389. padding: 65px 0 0 200px;
  390. }
  391. .panel-title, .panel-title>.title-bar {
  392. height:50px;
  393. line-height: 50px
  394. }
  395. .panel-title .dropdown-item,.panel-title .dropdown-item-text,.panel-title .form-group {
  396. line-height: normal;
  397. }
  398. .panel-title{
  399. position: fixed;
  400. top:0px;
  401. z-index: 98;
  402. width: 100%;
  403. box-sizing: border-box;
  404. background: #fff;
  405. box-shadow: 0 1px 3px rgba(0,0,0,.05);
  406. border-top: 1px solid #ddd;
  407. }
  408. .panel-sidebar .panel-title{
  409. width:200px;
  410. border-right: 1px solid #ddd;
  411. box-shadow: 0 1px 3px rgba(0,0,0,.1);
  412. }
  413. .panel-content .panel-title{
  414. left: 0;
  415. padding-left: 255px;
  416. padding-right: 20px;
  417. }
  418. .panel-content .panel-title.fluid{
  419. padding-left:110px
  420. }
  421. .panel-title>.title-bar{
  422. padding-left: 20px
  423. }
  424. .panel-title>.title-bar>h2,.panel-title>.title-main>h2{
  425. font-size: 16px;
  426. margin:0;
  427. height: 50px;
  428. line-height: 50px;
  429. display:block
  430. }
  431. .panel-title>.title-bar>h2 .btn{
  432. margin-right:15px
  433. }
  434. .panel-title>.title-main .btn.pull-right {
  435. margin:10px 0 0 10px
  436. }
  437. .panel-title>.title-main .form-control {
  438. margin:10px 0 0 0
  439. }
  440. .panel-title>.title-main{
  441. padding-left: 15px
  442. }
  443. .panel-title .alert {
  444. line-height: normal;
  445. z-index: 999
  446. }
  447. .sidebar-title{
  448. padding: 10px;
  449. border-bottom: 1px solid #ddd;
  450. margin-bottom: 10px;
  451. }
  452. .side-menu{
  453. position: fixed;
  454. right:15px;
  455. top:65px
  456. }
  457. .side-menu .nav-link{
  458. line-height: 16px;
  459. font-size: 14px;
  460. color:#007bff;
  461. }
  462. .side-menu .nav-link:hover{
  463. background:#dcdee3;
  464. color:#333;
  465. }
  466. .sub-content{
  467. margin:0;
  468. }
  469. .pr-46{
  470. padding-right:36px
  471. }
  472. .bcontent-wrap{
  473. height: 350px
  474. }
  475. @media only screen and (max-height: 768px) {
  476. .bcontent-wrap{
  477. height: 250px
  478. }
  479. }
  480. .modal-xl {
  481. max-width: 1200px
  482. }
  483. .modal-full{
  484. max-width: 99%;
  485. margin:10px auto;
  486. max-height:97%;
  487. }
  488. .border-right-1 {
  489. border-right:1px solid #dee2e6;
  490. }
  491. .border-left-1 {
  492. border-left:1px solid #dee2e6;
  493. }
  494. .border-top-1 {
  495. border-top:1px solid #dee2e6;
  496. }
  497. .border-bottom-1 {
  498. border-bottom:1px solid #dee2e6;
  499. }
  500. .save-confirm {
  501. position:absolute;
  502. }
  503. .nav-tabs.panel-card-tabs .nav-link{
  504. color:#ccc;
  505. font-size:1rem;
  506. padding-top:0;
  507. }
  508. .nav-tabs.panel-card-tabs .nav-link.active{
  509. color:#fff;
  510. background:none ;
  511. border:none ;
  512. border-bottom:2px solid #fff;
  513. }
  514. .nav-tabs.panel-card-tabs .nav-link:hover{
  515. background:none ;
  516. border:none ;
  517. border-bottom:2px solid #fff;
  518. }
  519. .nav-tabs.nav-white-tabs.panel-card-tabs .nav-link{
  520. color:#495057;
  521. }
  522. .nav-tabs.nav-white-tabs.panel-card-tabs .nav-link.active{
  523. color:#495057;
  524. border-bottom:2px solid #007bff;
  525. }
  526. .nav-tabs.nav-white-tabs.panel-card-tabs .nav-link:hover{
  527. color:#007bff;
  528. border-bottom:2px solid #007bff;
  529. }
  530. .panel-card-header {
  531. background-image: linear-gradient(to top, #586579, #2c3237 );
  532. }
  533. /*滚动*/
  534. .scrollbar-auto {
  535. overflow-y: auto;
  536. position: absolute;
  537. bottom: 0;
  538. left: 0;
  539. top: 0;
  540. right: 0;
  541. }
  542. .panel-sidebar .scrollbar-auto{
  543. padding-top: 20px;
  544. box-sizing: border-box;
  545. }
  546. .panel-sidebar .scrollbar-auto {
  547. height: calc(100vh - 50px);
  548. width: 100%;
  549. overflow-y: auto;
  550. position: static;
  551. }
  552. /*结构宽度高度调整条*/
  553. .resize-y{
  554. height:5px;
  555. width:100%;
  556. float: left;
  557. margin-top:-5px;
  558. cursor: s-resize;
  559. z-index: 999
  560. }
  561. .resize-x{
  562. width:5px;
  563. height:100%;
  564. float: left;
  565. margin-left:-5px;
  566. cursor: w-resize;
  567. z-index: 999
  568. }
  569. /*头部*/
  570. .header .logo {
  571. float: left;
  572. box-shadow: 1px 0 6px rgba(0,0,0,.06);
  573. margin-right: 20px;
  574. margin:0
  575. }
  576. .header .logo>a{
  577. width:120px;
  578. height:50px;
  579. line-height: 50px;
  580. display: inline-block;
  581. color:#fff;
  582. font-size:24px;
  583. padding:0 10px;
  584. transition: all ease .4s;
  585. background:#207fd1 url(logo.png) no-repeat;
  586. text-indent: -9999px;
  587. vertical-align: top
  588. }
  589. .header .logo>a:hover{
  590. background-color:#5596cf;
  591. text-decoration: none;
  592. }
  593. .logo .poj-info {
  594. position: absolute;
  595. width: 20px;
  596. height: 20px;
  597. border-radius: 10px;
  598. text-align: center;
  599. border:1px solid #000;
  600. right: 2px;
  601. top:34px;
  602. line-height: 16px
  603. }
  604. .logo .poj-info i{
  605. }
  606. .header-user > div {
  607. float:left
  608. }
  609. .avatar .pic {
  610. height: 35px;
  611. width: 35px;
  612. border-radius: 100%;
  613. display: inline-block;
  614. float:left;
  615. margin:7px 7px 0 0
  616. }
  617. .avatar .pic img{
  618. display: block;
  619. width: 100%;
  620. height: 100%;
  621. border-radius: 100%;
  622. }
  623. .avatar > a,.msg >a{
  624. display: block;
  625. height:50px;
  626. line-height: 50px;
  627. color:#666;
  628. padding:0 15px;
  629. cursor: pointer;
  630. }
  631. .avatar > a:hover,.msg > a:hover{
  632. text-decoration: none;
  633. box-shadow: inset 0 3px 5px rgba(0,0,0,.125)
  634. }
  635. .header-user .msg{
  636. border-left:1px solid #eee
  637. }
  638. .header-user .msg .glyphicon{
  639. font-size:20px;
  640. vertical-align: middle;
  641. }
  642. .header-user .msg .badge{
  643. margin:0 0 0 5px
  644. }
  645. .header .poj-name {
  646. float:left;
  647. padding:0 0 0 15px;
  648. font-size:18px
  649. }
  650. .header .poj-name a{
  651. color:#666
  652. }
  653. .header .poj-name > span{
  654. height:50px;
  655. line-height:50px;
  656. }
  657. /*登陆相关*/
  658. .login-body{
  659. background:linear-gradient(#192948,#33425b);
  660. height:100%
  661. }
  662. .login-infoinput {
  663. margin-top:15%
  664. }
  665. .login-body .container{
  666. position:absolute;
  667. top:10%;
  668. margin:0 auto;
  669. left:0;
  670. right:0;
  671. }
  672. .login-bg.img-1{
  673. background:url("undraw_all_the_data_h4ki.svg") no-repeat;
  674. }
  675. .login-bg.img-2{
  676. background:url("undraw_order_a_car_3tww.svg") no-repeat;
  677. }
  678. .login-bg.img-3{
  679. background:url("undraw_work_chat_erdt.svg") no-repeat;
  680. }
  681. .login-body .login-bg{
  682. width: 100%;
  683. height: 100%;
  684. background-position:25% 95%;
  685. background-size: 40% auto;
  686. display: inline-block;
  687. opacity: .8
  688. }
  689. /*侧栏主菜单*/
  690. .nav-top,.nav-bottom{
  691. width: 110px
  692. }
  693. .bg-nav a{
  694. display: flex;
  695. align-items: center; /* 垂直居中 */
  696. justify-content: flex-start; /* 图标和文字水平排列 */
  697. color:#fff;
  698. width:110px;
  699. text-align: center;
  700. /*display: inline-block;*/
  701. padding:10px 0;
  702. font-size: 12px
  703. }
  704. .bg-nav a i{
  705. margin: 0 5px 0 8px;
  706. width: 25px;
  707. font-size:15px;
  708. }
  709. .bg-nav a span{
  710. display: block;
  711. }
  712. .bg-nav > li{
  713. width:120px
  714. }
  715. .bg-nav > li.active{
  716. background: #192948
  717. }
  718. .bg-nav > li.active a{
  719. border-radius: 0;
  720. background: #192948
  721. }
  722. .bg-nav > li.active > a,.bg-nav > li > a:hover,.bg-nav > li.active > a:hover{
  723. background: #192948;
  724. color:#f2f2f2;
  725. text-decoration: none;
  726. }
  727. .bg-nav > li > a.maintain-icon:hover{
  728. background:none;
  729. color:none;
  730. text-decoration: none;
  731. }
  732. .bg-nav > li.active a span{
  733. display: block;
  734. }
  735. .bg-nav > li + li {
  736. margin-top:0;
  737. }
  738. .bg-nav .sub-menu {
  739. list-style:none;
  740. padding:0 0 0 20px;
  741. width:120px;
  742. display: none
  743. }
  744. .bg-nav .sub-menu a {
  745. width:100px;
  746. height:30px;
  747. line-height:30px
  748. }
  749. .bg-nav .sub-menu:last-child{
  750. margin:0 0 20px 0
  751. }
  752. .bg-nav .menu-arrow{
  753. margin:22px 8px 0 0
  754. }
  755. .bg-nav .child-bg {
  756. /*background-color: #10354D;*/
  757. }
  758. .child-up-down {
  759. width: 12px!important;
  760. margin: 0 0 0 8px!important;
  761. font-size: 12px!important;
  762. }
  763. .nav-padding{
  764. margin-top: 30px;
  765. }
  766. .nav-padding a{
  767. padding: 0.5rem 1rem;
  768. }
  769. .nav-box {
  770. padding-top: 5px
  771. }
  772. .nav-box ul{
  773. margin-bottom:0;
  774. }
  775. .nav-box h3{
  776. font-size: 14px;
  777. font-weight: 700;
  778. border-bottom: 1px solid #e2eaec;
  779. padding-right: 5px;
  780. margin-bottom:0px;
  781. margin-left: 17px;
  782. height: 30px;
  783. line-height: 30px
  784. }
  785. .nav-box .h3{
  786. font-size: 14px;
  787. font-weight: 700;
  788. padding-left:12px;
  789. }
  790. .nav-box > .sub-list > li > a{
  791. padding-left: 40px
  792. }
  793. .nav-box .tips-dot {
  794. right:20px;
  795. top:8px
  796. }
  797. .nav-box .nav-list li{
  798. position: relative;
  799. }
  800. .contarl-box{
  801. padding:1rem 2rem 1rem 2rem;
  802. border-top:1px solid #ddd;
  803. }
  804. .nav-list li a{
  805. color: #333;
  806. display: block;
  807. height: 35px;
  808. line-height: 35px;
  809. box-sizing: border-box;
  810. padding-left: 17px;
  811. padding-right: 45px;
  812. text-overflow: ellipsis;
  813. position: relative;
  814. }
  815. .nav-list li a:hover{
  816. text-decoration: none;
  817. background:#e4e7ea;
  818. cursor: pointer;
  819. }
  820. .nav-list li a .badge{
  821. position: absolute;
  822. right:17px;
  823. top:9px
  824. }
  825. .nav-list li.active a{
  826. background:#e4e7ea;
  827. font-weight: 600;
  828. }
  829. .side-menu .nav-link{
  830. padding:.5rem .6rem;
  831. }
  832. /*内容区*/
  833. .c-header {
  834. padding:0 0 5px
  835. }
  836. .c-body{
  837. padding:1px;
  838. background:#fff;
  839. }
  840. .c-body-white{
  841. background: #e4e7ea;
  842. }
  843. .right-nav{
  844. width:36px
  845. }
  846. .right-nav .nav-link.active{
  847. background: #fff;
  848. color:#495057
  849. }
  850. .form-group .necessary{
  851. font-size:18px;
  852. color:#f90000
  853. }
  854. .bg-gray {
  855. background-color:#bbb!important;
  856. }
  857. .datepickers-container {
  858. z-index: 9999
  859. }
  860. .modal-height-600{
  861. height:600px;
  862. overflow: hidden
  863. }
  864. .modal-height-500{
  865. height:450px;
  866. overflow: hidden
  867. }
  868. .modal-height-400{
  869. height:400px;
  870. overflow: hidden
  871. }
  872. .modal-height-300{
  873. height:300px;
  874. overflow:auto
  875. }
  876. .modal-height-250{
  877. height:250px;
  878. overflow:auto
  879. }
  880. .modal-height-150{
  881. height: 150px;
  882. overflow: auto;
  883. }
  884. .modal-height-max100{
  885. max-height: 100px;
  886. overflow: auto;
  887. }
  888. .modal-height-max150{
  889. max-height: 150px;
  890. overflow: auto;
  891. }
  892. .modal-fullscreen{
  893. overflow: auto;
  894. }
  895. .scroll-y {
  896. overflow-y: auto;
  897. }
  898. .scroll-x {
  899. overflow-x: auto;
  900. }
  901. .modal-lgx {
  902. max-width:1000px
  903. }
  904. .title-main .nav{
  905. line-height: 16px;
  906. margin-top:8px
  907. }
  908. .msg-content {
  909. font-size: 14px
  910. }
  911. .bd-toc {
  912. position: sticky;
  913. top:3rem;
  914. height: calc(100vh - 10rem);
  915. overflow-y: auto;
  916. }
  917. /*草图编辑器*/
  918. .img-view{
  919. height:400px;
  920. border:.2rem solid #ccc;
  921. position: relative;
  922. width:100%;
  923. overflow: hidden;
  924. }
  925. .img-view::after{
  926. content:"草图编辑区";
  927. color:#ddd;
  928. position: absolute;
  929. left:50%;
  930. top:50%;
  931. margin-left:-80px;
  932. margin-top:-24px;
  933. font-size:36px
  934. }
  935. .img-view .img-item{
  936. position: absolute;
  937. }
  938. .img-view .img-item .img-bar{
  939. position:absolute;
  940. right:0;
  941. top:0;
  942. display:none
  943. }
  944. .img-item:hover .img-bar{
  945. display: block;
  946. }
  947. .batch-l-t{
  948. height: 180px;
  949. overflow: hidden
  950. }
  951. .batch-l-b{
  952. height: 320px;
  953. overflow: hidden
  954. }
  955. .batch-r {
  956. height:522px;
  957. overflow: hidden
  958. }
  959. /*打印工具栏*/
  960. .print-toolsbar{
  961. padding-bottom:5px
  962. }
  963. .print-toolsbar .panel {
  964. display:inline-block;
  965. vertical-align:top;
  966. background:#f7f7f9
  967. }
  968. .print-toolsbar .panel .panel-body{
  969. height:22px;
  970. }
  971. .print-toolsbar .panel .panel-foot{
  972. text-align: center;
  973. font-size: 12px
  974. }
  975. .print-list {
  976. border-right:1px solid #ccc
  977. }
  978. .print-list .form-list {
  979. overflow: auto
  980. }
  981. .print-list .list-tools{
  982. height:50px;
  983. padding:10px 0;
  984. border-bottom:1px solid #f2f2f2
  985. }
  986. .pageContainer {
  987. background: #ededed;
  988. text-align: center
  989. }
  990. .pageContainer .page{
  991. border:9px solid transparent;
  992. display: inline-block;
  993. }
  994. .pageContainer .page img{
  995. width:inherit;
  996. height: inherit;
  997. }
  998. .pageContainer canvas{
  999. background: #fff
  1000. }
  1001. .m-close-side{
  1002. position: absolute;
  1003. right:-1px;
  1004. top:250px;
  1005. background: #f2f2f2;
  1006. padding:30px 3px;
  1007. }
  1008. .m-close-side:hover{
  1009. background:#eae9e9;
  1010. }
  1011. .baobiao-close-side{
  1012. position: absolute;
  1013. left:15px;
  1014. top:250px;
  1015. background: #e1e1e1
  1016. }
  1017. .baobiao-close-side a{
  1018. color:#007bff;
  1019. height:80px;
  1020. line-height: 80px;
  1021. display: inline-block
  1022. }
  1023. .baobiao-close-side:hover{
  1024. background:#007bff;
  1025. }
  1026. .baobiao-close-side:hover a{
  1027. color:#fff;
  1028. }
  1029. .edit-tag-btn{
  1030. display: none
  1031. }
  1032. .tag-item:hover .edit-tag-btn{
  1033. display: block
  1034. }
  1035. /*电子签名*/
  1036. .add-sign-list-item{
  1037. padding:.5rem .5rem .5rem 1rem;
  1038. }
  1039. .add-sign-list-item:hover{
  1040. box-shadow:0 0 3px rgba(0,0,0,.18)
  1041. }
  1042. .add-sign-list-item .btn-link {
  1043. display: none
  1044. }
  1045. .add-sign-list-item:hover .btn-link {
  1046. display: block
  1047. }
  1048. /*标段类表折叠收起*/
  1049. .fold-switch {
  1050. cursor: pointer;
  1051. }
  1052. .fold-switch:hover{
  1053. color:#0056b3;
  1054. }
  1055. /*界面紧凑相关代码*/
  1056. body{
  1057. font-size:12px;
  1058. }
  1059. .btn-group-sm > .btn, .btn-sm{
  1060. font-size: 12px;
  1061. padding:1px 0.6rem;
  1062. }
  1063. .panel-title, .panel-title > .title-bar{
  1064. height:34px;
  1065. line-height: 30px;
  1066. }
  1067. .panel-title > .title-main .btn.pull-right {
  1068. margin: 5px 0 0 0
  1069. }
  1070. .panel-content{
  1071. padding-top:35px;
  1072. overflow: hidden
  1073. }
  1074. .panel-content .content-wrap{
  1075. margin:0;
  1076. }
  1077. .table td, .table th {
  1078. padding:.3rem;
  1079. }
  1080. .form-control-sm {
  1081. font-size:12px;
  1082. }
  1083. label{
  1084. margin-bottom:.3rem;
  1085. color:#757575;
  1086. }
  1087. .form-control-plaintext.form-control-lg, .form-control-plaintext.form-control-sm {
  1088. padding-left:.5rem;
  1089. background: #f2f2f280
  1090. }
  1091. .invalid-feedback{
  1092. font-size:100%;
  1093. }
  1094. .modal-header{
  1095. padding:.5rem 1rem;
  1096. cursor: move;
  1097. }
  1098. .modal-title{
  1099. font-size:16px;
  1100. }
  1101. .modal-footer {
  1102. padding:.5rem 1rem
  1103. }
  1104. .modal-body h6,.modal-body h5{
  1105. font-size:12px;
  1106. }
  1107. .panel-title > .title-bar{
  1108. padding-left:10px;
  1109. }
  1110. .panel-sidebar .panel-title{
  1111. width:120px;
  1112. }
  1113. .panel-title > .title-bar > h2, .panel-title > .title-main > h2{
  1114. height:34px;
  1115. line-height: 34px;
  1116. font-size: 12px
  1117. }
  1118. .panel-title > .title-main .form-control {
  1119. margin: 4px 0 0 0;
  1120. }
  1121. .panel-sidebar {
  1122. width:120px;
  1123. }
  1124. .panel-sidebar .scrollbar-auto{
  1125. padding-top: 0;
  1126. /*padding-top:35px;*/
  1127. }
  1128. .panel-sidebar .show-back{
  1129. padding-top: 35px;
  1130. }
  1131. .nav-list li a{
  1132. padding-right:0px;
  1133. height:30px;
  1134. line-height: 30px
  1135. }
  1136. .nav-box h3{
  1137. margin-left:12px;
  1138. }
  1139. .nav-box > .sub-list > li > a{
  1140. padding-left:32px;
  1141. }
  1142. .panel-sidebar + .panel-content{
  1143. padding:35px 0 0 120px;
  1144. overflow: hidden;
  1145. }
  1146. .contarl-box{
  1147. padding:1rem 1rem;
  1148. }
  1149. .min-side .side-menu {
  1150. top:34px;
  1151. }
  1152. .panel-content .panel-title{
  1153. padding-left:230px;
  1154. background: linear-gradient( #ccc,2%, #ffffff);
  1155. }
  1156. .nav-link{
  1157. padding:.3rem .5rem;
  1158. }
  1159. .side-menu .nav-link{
  1160. font-size:12px;
  1161. }
  1162. legend {
  1163. font-size:16px;
  1164. }
  1165. .input-group-sm > .custom-select, .input-group-sm > .form-control:not(textarea) {
  1166. height: calc(1.4125rem - 1px);
  1167. }
  1168. .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{
  1169. height: calc(1.4125rem - 1px);
  1170. }
  1171. .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 {
  1172. font-size:12px;
  1173. padding:0rem .5rem;
  1174. }
  1175. .side-menu{
  1176. right:0;
  1177. top:35px;
  1178. }
  1179. .form-control-sm{
  1180. /*height:calc(1.4125rem - 1px);*/
  1181. }
  1182. .form-group {
  1183. margin-bottom:.5rem;
  1184. }
  1185. .badge{
  1186. font-size:100%;
  1187. }
  1188. .sjs-height-0{
  1189. overflow: auto;
  1190. }
  1191. .nav-box h3{
  1192. margin-bottom:5px;
  1193. }
  1194. .min-side .side-menu{
  1195. padding-bottom:10px;
  1196. }
  1197. .side-show {
  1198. position: absolute;
  1199. z-index:8;
  1200. right:0;
  1201. top: 0;
  1202. width: 15px;
  1203. height: calc(100vh);
  1204. }
  1205. .side-fold {
  1206. /*right:50px;*/
  1207. /*bottom:5px;*/
  1208. display:none;
  1209. z-index:9;
  1210. border-radius:2px;
  1211. right:0;
  1212. bottom:50%;
  1213. width:6px;
  1214. height:60px;
  1215. line-height:60px;
  1216. text-align:center;
  1217. cursor:pointer;
  1218. background-color: #2E6BE5;
  1219. color: #fff;
  1220. }
  1221. .side-fold i{
  1222. font-size: 20px;
  1223. vertical-align: text-bottom;
  1224. }
  1225. .side-fold a{
  1226. font-size:24px;
  1227. }
  1228. .min-side {
  1229. /*padding-bottom:5px;*/
  1230. }
  1231. .min-side .side-fold{
  1232. bottom:10px;
  1233. }
  1234. .min-side .side-fold a{
  1235. font-size:18px;
  1236. }
  1237. .form-text{
  1238. font-size:12px;
  1239. }
  1240. .btn-sm .badge{
  1241. font-size:10px;
  1242. padding:.2em .4em;
  1243. top:0;
  1244. }
  1245. .search-group {
  1246. position: relative;
  1247. }
  1248. .search-group .remove-btn {
  1249. position:absolute;
  1250. right:10px;
  1251. top:3px;
  1252. }
  1253. /*菜单栏系统维护图标*/
  1254. a.maintain-icon{
  1255. position:relative;
  1256. }
  1257. a.maintain-icon span{
  1258. position: absolute;
  1259. left:110px;
  1260. height:35px;
  1261. line-height: 35px;
  1262. width:390px;
  1263. top:0;
  1264. display:none;
  1265. font-size:14px;
  1266. }
  1267. a.maintain-icon:hover span{
  1268. display: inline-block;
  1269. }
  1270. a.maintain-icon .fa{
  1271. -webkit-animation: shake_a 2s .2s ease both;
  1272. -moz-animation: shake_a 2s .2s ease both;
  1273. animation: shake_a 2s .2s ease both;
  1274. animation-iteration-count:infinite
  1275. }
  1276. @-webkit-keyframes shake_a {
  1277. 0%, 100% {
  1278. -webkit-transform: rotate(0);
  1279. }
  1280. 10%, 30%, 50%, 70%, 90% {
  1281. -webkit-transform: rotate(5deg);
  1282. }
  1283. 20%, 40%, 60%, 80% {
  1284. -webkit-transform: rotate(-5deg);
  1285. }
  1286. }
  1287. @-moz-keyframes shake_a {
  1288. 0%, 100% {
  1289. -moz-transform: rotate(0);
  1290. }
  1291. 10%, 30%, 50%, 70%, 90% {
  1292. -moz-transform: rotate(5deg);
  1293. }
  1294. 20%, 40%, 60%, 80% {
  1295. -moz-transform: rotate(-5deg);
  1296. }
  1297. }
  1298. @keyframes shake_a {
  1299. 0%, 100% {
  1300. transform: rotate(0);
  1301. }
  1302. 10%, 30%, 50%, 70%, 90% {
  1303. transform: rotate(5deg);
  1304. }
  1305. 20%, 40%, 60%, 80% {
  1306. transform: rotate(-5deg);
  1307. }
  1308. }
  1309. a.maintain-icon:hover .fa{
  1310. animation-iteration-count:0
  1311. }
  1312. /*审批列表*/
  1313. .timeline-list .timeline-list-item{
  1314. position: relative;
  1315. }
  1316. .timeline-list-item .timeline-item-date{
  1317. width:50px;
  1318. position:absolute;
  1319. left:0px;
  1320. text-align: center;
  1321. color:#ccc;
  1322. }
  1323. .timeline-list-item .timeline-item-date span{
  1324. display: block;
  1325. color: #333;
  1326. text-align: center;
  1327. }
  1328. .timeline-list-item .timeline-item-tail{
  1329. position: absolute;
  1330. top: 10px;
  1331. left: 55px;
  1332. height: calc(100% - 10px);
  1333. border-left: 1px solid #ddd ;
  1334. }
  1335. .timeline-list-item .timeline-item-icon{
  1336. width:20px;
  1337. height:20px;
  1338. position: absolute;
  1339. border-radius: 100px;
  1340. text-align: center;
  1341. line-height: 20px;
  1342. left:45px;
  1343. }
  1344. .timeline-list-item .timeline-item-content{
  1345. position: relative;
  1346. margin: 0 0 0 70px;
  1347. word-break: break-word;
  1348. }
  1349. .book-list{
  1350. padding: 0;
  1351. margin: 0;
  1352. height: 285px;
  1353. overflow-y: auto;
  1354. }
  1355. .book-list dt{
  1356. padding:5px 0 5px 5px;
  1357. background-color: #f2f2f2;
  1358. }
  1359. .book-list dd{
  1360. padding-left:15px;
  1361. cursor: pointer;
  1362. }
  1363. .book-list dd:hover{
  1364. background-color: #f2f2f2
  1365. }
  1366. .dd-content {
  1367. display: none;
  1368. }
  1369. .fold-card {
  1370. display: none;
  1371. }
  1372. .att-file-btn {
  1373. display: none;
  1374. }
  1375. .list-table tr:hover .att-file-btn{
  1376. display: inline-block;
  1377. }
  1378. .context-menu-icon.context-menu-icon--fa.text-success::before {
  1379. color: #28a745;!important;
  1380. }
  1381. .context-menu-icon.context-menu-icon--fa.text-danger::before {
  1382. color: #dc3545;!important;
  1383. }
  1384. .context-menu-icon.context-menu-icon--fa.text-warning::before {
  1385. color: #da9500;!important;
  1386. }
  1387. .context-menu-icon.context-menu-icon--fa.text-info::before {
  1388. color: #17a2b8;!important;
  1389. }
  1390. .context-menu-icon.context-menu-icon--fa.fa-tag span{
  1391. color: #2f2f2f;!important;
  1392. }
  1393. .context-menu-icon.context-menu-hover.context-menu-icon--fa.fa-tag span{
  1394. color: #fff;!important;
  1395. }
  1396. /*.auto-main-height{
  1397. height: calc(100vh - 34px);
  1398. display: flex;
  1399. flex-direction: column;
  1400. }
  1401. .auto-main-height .main-height-one{
  1402. flex-grow: 10;
  1403. }
  1404. .auto-main-height .main-height-two{
  1405. flex-grow: 30;
  1406. }
  1407. .auto-main-height .main-height-three{
  1408. flex-grow: 1;
  1409. }
  1410. .bottom-height{
  1411. height:300px;
  1412. }*/
  1413. .bottom-height-two{
  1414. height: 300px;
  1415. }
  1416. .card-big-title{
  1417. font-size: 1.23rem;
  1418. margin-bottom: .30rem;
  1419. position: relative;
  1420. }
  1421. .card-big-title small{
  1422. position: absolute;
  1423. right: -15px;
  1424. top: -20px;
  1425. }
  1426. .circle-box{
  1427. float: left;
  1428. position: relative;
  1429. }
  1430. .circle{
  1431. width: 62px;
  1432. height: 62px;
  1433. border-radius: 50%;
  1434. background: none;
  1435. border: 4px solid #D7B014;
  1436. }
  1437. .circle-num{
  1438. position: absolute;
  1439. top: 50%;
  1440. margin-top: -32px;
  1441. width: 62px;
  1442. text-align: center;
  1443. font-size: 42px;
  1444. font-weight: 500;
  1445. }
  1446. .circle-text{
  1447. float: right;
  1448. margin-right: 20px;
  1449. margin-top: 10px;
  1450. font-size: 24px;
  1451. }
  1452. .dropdown-wd{
  1453. width: 80px;
  1454. text-align: center;
  1455. }
  1456. .btn-blueOne{
  1457. color: #fff;
  1458. background-color: rgba(24,144,255);
  1459. border-color: rgba(24,144,255);
  1460. }
  1461. .btn-blueOne:hover,.btn-blueOne:active {
  1462. color: #fff;
  1463. background-color: rgba(24,144,255);
  1464. border-color: rgba(24,144,255);
  1465. box-shadow: 0 0 0 0.2rem rgba(24,144,255);
  1466. }
  1467. .btn-green{
  1468. color: #fff;
  1469. background-color: rgba(69,183,149);
  1470. border-color: rgba(69,183,149);
  1471. }
  1472. .btn-green:hover,.btn-green:active{
  1473. color: #fff;
  1474. background-color: rgba(69,183,149);
  1475. border-color: rgba(69,183,149);
  1476. box-shadow: 0 0 0 0.2rem rgba(69,183,149);
  1477. }
  1478. .btn-yellow{
  1479. color: #fff;
  1480. background-color: rgba(250,204,20);
  1481. border-color: rgba(250,204,20);
  1482. }
  1483. .btn-yellow:hover,.btn-yellow:active{
  1484. color: #fff;
  1485. background-color: rgba(250,204,20);
  1486. border-color: rgba(250,204,20);
  1487. box-shadow: 0 0 0 0.2rem rgba(250,204,20);
  1488. }
  1489. .btn-purple{
  1490. color: #fff;
  1491. background-color: rgba(145,82,225);
  1492. border-color: rgba(145,82,225);
  1493. }
  1494. .btn-purple:hover,.btn-purple:active {
  1495. color: #fff;
  1496. background-color: rgba(145,82,225);
  1497. border-color: rgba(145,82,225);
  1498. box-shadow: 0 0 0 0.2rem rgba(145,82,225);
  1499. }
  1500. .btn-blueTwo{
  1501. color: #fff;
  1502. background-color: rgba(58,207,221);
  1503. border-color: rgba(58,207,221);
  1504. }
  1505. .btn-blueTwo:hover,.btn-blueTwo:active {
  1506. color: #fff;
  1507. background-color: rgba(58,207,221);
  1508. border-color: rgba(58,207,221);
  1509. box-shadow: 0 0 0 0.2rem rgba(58,207,221);
  1510. }
  1511. .btn-red{
  1512. color: #fff;
  1513. background-color: rgba(204,73,80);
  1514. border-color: rgba(204,73,80);
  1515. }
  1516. .btn-red:hover,.btn-red:active {
  1517. color: #fff;
  1518. background-color: rgba(204,73,80);
  1519. border-color: rgba(204,73,80);
  1520. box-shadow: 0 0 0 0.2rem rgba(204,73,80);
  1521. }
  1522. .bg-blueOne{
  1523. color: #fff;
  1524. background-color: rgba(24,144,255) !important;
  1525. border-color: rgba(24,144,255) !important;
  1526. }
  1527. .bg-green{
  1528. color: #fff;
  1529. background-color: rgba(69,183,149) !important;
  1530. border-color: rgba(69,183,149,1) !important;
  1531. }
  1532. .bg-yellow{
  1533. color: #fff;
  1534. background-color: rgba(250,204,20) !important;
  1535. border-color: rgba(250,204,20,1) !important;
  1536. }
  1537. .bg-purple{
  1538. color: #fff;
  1539. background-color: rgba(145,82,225) !important;
  1540. border-color: rgba(145,82,225) !important;
  1541. }
  1542. .bg-blueTwo{
  1543. color: #fff;
  1544. background-color: rgba(58,207,221) !important;
  1545. border-color: rgba(58,207,221) !important;
  1546. }
  1547. .bg-red{
  1548. color: #fff;
  1549. background-color: rgba(204,73,80) !important;
  1550. border-color: rgba(204,73,80) !important;
  1551. }
  1552. .btn-relative{
  1553. position: relative;
  1554. }
  1555. .icon-absolute{
  1556. position: absolute;
  1557. left: -3px;
  1558. top: -9px;
  1559. }
  1560. .icon-size{
  1561. font-size: 38px !important;
  1562. }
  1563. .text-blueOne{
  1564. color: rgba(24,144,255);
  1565. }
  1566. .text-green{
  1567. color: rgba(69,183,149);
  1568. }
  1569. .text-yellow{
  1570. color: rgba(250,204,20);
  1571. }
  1572. .text-purple{
  1573. color: rgba(145,82,225);
  1574. }
  1575. .text-blueTwo{
  1576. color: rgba(58,207,221);
  1577. }
  1578. .text-red{
  1579. color: rgba(204,73,80);
  1580. }
  1581. .flex-content{
  1582. height: 98%;
  1583. }
  1584. .left-content,.center-content,.right-content{
  1585. height: 100vh;
  1586. }
  1587. .left-card-content,.center-chart-content,.right-chart-content{
  1588. height: 65%;
  1589. }
  1590. .center-di{
  1591. height: 49%;
  1592. }
  1593. .center-chart,.right-month,.right-chart{
  1594. height: 50%;
  1595. }
  1596. .di-content{
  1597. height: 100%;
  1598. }
  1599. .left-chart,.center-table,.right-biaoduan{
  1600. height: 30%;
  1601. }
  1602. .card .card-small-body{
  1603. padding: 0;
  1604. }
  1605. .card-per-body{
  1606. width: 100%;
  1607. height: 100%;
  1608. padding: 0;
  1609. }
  1610. .card .card-approve-title{
  1611. font-size: 2.80rem;
  1612. position: relative;
  1613. }
  1614. .card .card-approve-title .card-approve-big{
  1615. position: absolute;
  1616. left: 45%;
  1617. bottom: -8px;
  1618. }
  1619. .card .card-approve-title small{
  1620. position: absolute;
  1621. font-size: 0.15rem;
  1622. bottom: -8px;
  1623. left: 70%;
  1624. }
  1625. .card-case-title{
  1626. height: 50%;
  1627. line-height: 200%;
  1628. font-size: 1.50rem;
  1629. }
  1630. .card-case-text{
  1631. height: 50%;
  1632. line-height: 200%;
  1633. }
  1634. .border-bottom-grey-1{
  1635. border-bottom: 1px solid rgba(0,0,0,.125);
  1636. }
  1637. .height-100{
  1638. height: 100%;
  1639. }
  1640. .height-99{
  1641. height: 99%;
  1642. }
  1643. .height-60{
  1644. height: 60%;
  1645. }
  1646. .height-50{
  1647. height: 50%;
  1648. }
  1649. .height-30{
  1650. height: 30%;
  1651. }
  1652. .height-36{
  1653. height: 38.7%;
  1654. }
  1655. .height-20{
  1656. height: 19%;
  1657. }
  1658. .review_box{
  1659. height: 100%;
  1660. overflow: hidden;
  1661. }
  1662. .right-bottom-50-fl{
  1663. width: 50%;
  1664. float: left;
  1665. }
  1666. .right-month-height{
  1667. height: -webkit-calc(100% - 53px);
  1668. height: -moz-calc(100% - 53px);
  1669. height: calc(100% - 53px);
  1670. }
  1671. .list-comment{
  1672. margin: 0;
  1673. padding: 0;
  1674. }
  1675. .tablebox {
  1676. width: 100%;
  1677. height: 100%;
  1678. overflow: hidden;
  1679. }
  1680. .tablebox table {
  1681. width:100%;
  1682. }
  1683. .tablebox table th,.tablebox table td {
  1684. padding: 5px 10px;
  1685. }
  1686. .tablebox table th {
  1687. color:#fff;
  1688. /*background-color:#fff;*/
  1689. background-color:#2C3034;
  1690. }
  1691. .tablebox table tbody tr{
  1692. background-color:#2C3034;
  1693. color: #fff;
  1694. border-bottom: 1px solid rgba(0,0,0,.125);
  1695. }
  1696. .left-small-card-content,.right-small-card-content{
  1697. height: 12%;
  1698. }
  1699. .left-big-chart-content,.right-big-chart-content{
  1700. height: 83%;
  1701. }
  1702. .login-new-body{
  1703. width: 100%;
  1704. height: 100%;
  1705. /*background-position:25% 95%;
  1706. background-size: 40% auto;
  1707. display: inline-block;
  1708. opacity: .8*/
  1709. /*animation: change 60s steps(1) infinite;*/
  1710. }
  1711. .login-new-body.img-1{
  1712. width: 100%;
  1713. height: 100%;
  1714. /*background: url(bg/bg_001.jpg) no-repeat;*/
  1715. background:#192948 url(https://jiliang-qa.oss-cn-shenzhen.aliyuncs.com/loginimg/bg_01.jpg) no-repeat;
  1716. background-size: 100% 100%;
  1717. background-size:cover;
  1718. /*background-size: contain;*/
  1719. }
  1720. .login-new-body.img-2{
  1721. background:#192948 url(https://jiliang-qa.oss-cn-shenzhen.aliyuncs.com/loginimg/bg_02.jpg) no-repeat;
  1722. background-size: 100% 100%;
  1723. background-size:cover;
  1724. /*background-size: contain;*/
  1725. }
  1726. .login-new-body.img-3{
  1727. background:#192948 url(https://jiliang-qa.oss-cn-shenzhen.aliyuncs.com/loginimg/bg_03.jpg) no-repeat;
  1728. background-size: 100% 100%;
  1729. background-size:cover;
  1730. /*background-size: contain;*/
  1731. }
  1732. .login-new-body.img-4{
  1733. background:#192948 url(https://jiliang-qa.oss-cn-shenzhen.aliyuncs.com/loginimg/bg_04.jpg) no-repeat;
  1734. background-size: 100% 100%;
  1735. background-size:cover;
  1736. /*background-size: contain;*/
  1737. }
  1738. .login-new-body.img-5{
  1739. background:#192948 url(https://jiliang-qa.oss-cn-shenzhen.aliyuncs.com/loginimg/bg_05.jpg) no-repeat;
  1740. background-size: 100% 100%;
  1741. background-size:cover;
  1742. /*background-size: contain;*/
  1743. }
  1744. .login-new-body.img-6{
  1745. background:#192948 url(https://jiliang-qa.oss-cn-shenzhen.aliyuncs.com/loginimg/bg_06.jpg) no-repeat;
  1746. background-size: 100% 100%;
  1747. background-size:cover;
  1748. /*background-size: contain;*/
  1749. }
  1750. .login-new-body.img-7{
  1751. background:#192948 url(https://jiliang-qa.oss-cn-shenzhen.aliyuncs.com/loginimg/bg_07.jpg) no-repeat;
  1752. background-size: 100% 100%;
  1753. background-size:cover;
  1754. /*background-size: contain;*/
  1755. }
  1756. .login-new-body.img-8{
  1757. background:#192948 url(https://jiliang-qa.oss-cn-shenzhen.aliyuncs.com/loginimg/bg_08.jpg) no-repeat;
  1758. background-size: 100% 100%;
  1759. background-size:cover;
  1760. /*background-size: contain;*/
  1761. }
  1762. .login-new-body.img-9{
  1763. background:#192948 url(https://jiliang-qa.oss-cn-shenzhen.aliyuncs.com/loginimg/bg_09.jpg) no-repeat;
  1764. background-size: 100% 100%;
  1765. background-size:cover;
  1766. /*background-size: contain;*/
  1767. }
  1768. /*@keyframes change {
  1769. 0% {
  1770. background-image: url(bg/bg_06.png);
  1771. }
  1772. 16% {
  1773. background-image: url(bg/bg_01.png);
  1774. }
  1775. 32% {
  1776. background-image: url(bg/bg_02.png)
  1777. }
  1778. 48% {
  1779. background-image: url(bg/bg_03.png)
  1780. }
  1781. 64% {
  1782. background-image: url(bg/bg_04.png)
  1783. }
  1784. 80% {
  1785. background-image: url(bg/bg_05.png)
  1786. }
  1787. }*/
  1788. /*.login-new-b{
  1789. border-right: 2px solid rgba(255, 255, 255, 0.6);
  1790. }*/
  1791. .logo-big-title{
  1792. font-size: 20px;
  1793. }
  1794. .logo-sm-title{
  1795. font-size: 14px;
  1796. color: rgba(255, 255, 255, 0.8);
  1797. }
  1798. .logo-parent{
  1799. display: flex;
  1800. align-items: center; /* 🔹让图标和文字整体上下居中 */
  1801. justify-content: flex-start;
  1802. box-sizing: border-box;
  1803. height: 55px; /* 固定高度 */
  1804. overflow: hidden; /* 防止内容超出 */
  1805. box-sizing: border-box;
  1806. }
  1807. .logo-project-name{
  1808. flex: 1;
  1809. line-height: 1.4; /* 行高 */
  1810. display: -webkit-box; /* Flex-like box for WebKit */
  1811. -webkit-box-orient: vertical;
  1812. -webkit-line-clamp: 2; /* 最多显示3行 */
  1813. overflow: hidden;
  1814. text-overflow: ellipsis;
  1815. word-break: break-word;
  1816. }
  1817. .side-border{
  1818. width: 2px;
  1819. height: 24px;
  1820. background: rgba(255, 255, 255, 0.6);
  1821. }
  1822. .top-subtitle{
  1823. font-size: 20px;
  1824. font-weight: 500;
  1825. color: rgb(255, 255, 255);
  1826. }
  1827. .login-new-body .container{
  1828. width: 936px;
  1829. margin: 0 auto;
  1830. }
  1831. .login-new-body .content-center{
  1832. position: absolute;
  1833. top: 50%;
  1834. left: 50%;
  1835. transform: translate(-50%, -45%);
  1836. }
  1837. .left-login{
  1838. width: 428px;
  1839. height: 462px;
  1840. border-radius: 8px;
  1841. background: rgba(51, 119, 255, 0.9);
  1842. box-shadow: 6px 0px 6px rgba(0, 0, 0, 0.16);
  1843. }
  1844. .right-login{
  1845. width: 414px;
  1846. height: 418px;
  1847. border-radius: 0 8px 8px 0;
  1848. background: rgba(255, 255, 255, 1);
  1849. }
  1850. .right-login .position-absolute{
  1851. right: 12px;
  1852. top: 12px;
  1853. }
  1854. .left-login-title{
  1855. font-size: 24px;
  1856. line-height: 48px;
  1857. }
  1858. .login-border{
  1859. width: 48px;
  1860. height: 4px;
  1861. background: rgba(255, 255, 255, 1);
  1862. }
  1863. .erweima img{
  1864. width: 240px;
  1865. height: 240px;
  1866. padding: 12px;
  1867. background: #fff;
  1868. border: 1px solid rgba(0, 0, 0, 0.12);
  1869. border-radius: 4px;
  1870. }
  1871. .right-login .bottom-text{
  1872. padding-top: 5px;
  1873. font-size: 14px;
  1874. line-height: 18px;
  1875. color: rgba(0, 0, 0, 0.6);
  1876. }
  1877. .card-icon{
  1878. display: inline-block;
  1879. width: 4px;
  1880. height: 12px;
  1881. background: rgba(51, 119, 255, 1);
  1882. }
  1883. .agency-partheight{
  1884. height: calc((100vh - 155px) / 2);
  1885. /*background:rgba(82, 196, 26, 1);*/
  1886. }
  1887. .contant-height-one{
  1888. height: calc(((100vh - 165px) / 2) - 65px);
  1889. overflow-y: auto;
  1890. }
  1891. .contant-height-two{
  1892. height: calc(((100vh - 165px) / 2) - 178px);
  1893. overflow-y: auto;
  1894. }
  1895. .contant-height-three{
  1896. height: calc(((100vh - 165px) / 2) - 118px);
  1897. overflow-y: auto;
  1898. }
  1899. .btn-table{
  1900. width: 70px;
  1901. text-align: center;
  1902. }
  1903. .bg-new-advance{
  1904. background: rgba(241, 82, 91, 0.08) !important;
  1905. }
  1906. .bg-new-ledger{
  1907. background: rgba(250, 140, 22, 0.08) !important;
  1908. }
  1909. .bg-new-revise{
  1910. background: rgba(251, 182, 45, 0.08) !important;
  1911. }
  1912. .bg-new-stage{
  1913. background: rgba(82, 196, 26, 0.08) !important;
  1914. }
  1915. .bg-new-changeProject{
  1916. background: rgba(51, 119, 255, 0.08) !important;
  1917. }
  1918. .bg-new-changePlan{
  1919. background: rgba(114, 46, 209, 0.08) !important;
  1920. }
  1921. .bg-new-change{
  1922. background: rgba(22, 208, 208, 0.08) !important;
  1923. }
  1924. .bg-new-changeApply{
  1925. background: rgba(41, 58, 210, 0.08) !important;
  1926. }
  1927. .bg-new-material{
  1928. background: rgba(187, 41, 210, 0.08) !important;
  1929. }
  1930. .bg-new-payment{
  1931. background: rgba(128, 128, 0, 0.08) !important;
  1932. }
  1933. .bg-new-financial{
  1934. background: rgba(58, 88, 50, 0.08) !important;
  1935. }
  1936. .bg-new-inspection{
  1937. background: rgba(158, 88, 80, 0.08) !important;
  1938. }
  1939. .bg-new-phasepay{
  1940. background: rgba(200, 51, 6, 0.08) !important;
  1941. }
  1942. .text-new-advance{
  1943. color: rgba(241, 82, 91, 1) !important;
  1944. }
  1945. .text-new-ledger{
  1946. color: rgba(250, 140, 22, 1) !important;
  1947. }
  1948. .text-new-revise{
  1949. color: rgba(251, 182, 45, 1) !important;
  1950. }
  1951. .text-new-stage{
  1952. color: rgba(82, 196, 26, 1) !important;
  1953. }
  1954. .text-new-changeProject{
  1955. color: rgba(51, 119, 255, 1) !important;
  1956. }
  1957. .text-new-changePlan{
  1958. color: rgba(114, 46, 209, 1) !important;
  1959. }
  1960. .text-new-change{
  1961. color: rgba(22, 208, 208, 1) !important;
  1962. }
  1963. .text-new-changeApply{
  1964. color: rgba(41, 58, 210, 1) !important;
  1965. }
  1966. .text-new-material{
  1967. color: rgba(187, 41, 210, 1); !important;
  1968. }
  1969. .text-new-payment{
  1970. color: rgba(128, 128, 0, 1) !important;
  1971. }
  1972. .text-new-financial{
  1973. color: rgba(58, 88, 50, 1) !important;
  1974. }
  1975. .text-new-inspection{
  1976. color: rgba(158, 58, 80, 1) !important;
  1977. }
  1978. .text-new-phasepay{
  1979. color: rgba(200, 51, 6, 1) !important;
  1980. }
  1981. .text-width{
  1982. width: 66px;
  1983. text-align: center;
  1984. }
  1985. .table-middle td, .table-middle th{
  1986. padding: 0.6rem;
  1987. }
  1988. .table-middle .thead-light th {
  1989. color: #495057;
  1990. background-color: rgba(250, 250, 250, 1);
  1991. border-color: #dee2e6;
  1992. }
  1993. .table-middle thead th{
  1994. border-bottom: none;
  1995. }
  1996. .card-big-htext{
  1997. font-size: 18px;
  1998. }
  1999. .card-white{
  2000. background: rgba(255, 255, 255, 1) !important;
  2001. border-bottom: none;
  2002. }
  2003. .canyu-width{
  2004. height: 98px;
  2005. }
  2006. .canyu-pill{
  2007. height: 72px;
  2008. border-radius: 40px;
  2009. }
  2010. .canyu-pill .icon{
  2011. width: 40px;
  2012. height:40px;
  2013. line-height: 40px;
  2014. text-align: center;
  2015. border-radius: 40px;
  2016. background: #fff;
  2017. display: inline-block;
  2018. float: left;
  2019. font-size:24px;
  2020. }
  2021. .canyu-pill h5{
  2022. margin-left:50px;
  2023. margin-bottom: 4px
  2024. }
  2025. .canyu-pill h6{
  2026. margin-left:50px;
  2027. font-size: 12px
  2028. }
  2029. .canyu-bg-blue{
  2030. background: url(bg_participate_blue.png) no-repeat ;
  2031. background-size: 100% 100%;
  2032. }
  2033. .canyu-bg-yellow{
  2034. background: url(bg_participate_orange.png) no-repeat ;
  2035. background-size: 100% 100%;
  2036. }
  2037. .canyu-pill.canyu-bg-blue{
  2038. background: url(bg_participate_blue2.png) no-repeat ;
  2039. background-size: 100% 100%;
  2040. }
  2041. .canyu-pill.canyu-bg-yellow{
  2042. background: url(bg_participate_orange2.png) no-repeat ;
  2043. background-size: 100% 100%;
  2044. }
  2045. .canyu-bg-yellow .icon{
  2046. color:#ff8033;
  2047. }
  2048. .canyu-bg-blue .icon{
  2049. color:#009DFF;
  2050. }
  2051. .canyu-text{
  2052. font-size: 36px;
  2053. }
  2054. .canyu-band{
  2055. height: 100%;
  2056. padding-top: 5%
  2057. }
  2058. .canyu-band h1{
  2059. text-align: center;
  2060. font-size:72px;
  2061. }
  2062. .canyu-band h3{
  2063. text-align: center;
  2064. font-size:18px;
  2065. }
  2066. .canyu-band.text-success{
  2067. background:linear-gradient(#fff 30%, #28a745 350%);
  2068. }
  2069. .canyu-band.text-danger{
  2070. background:linear-gradient(#fff 30%, #dc3545 350%);
  2071. }
  2072. .list-text-vertical{
  2073. overflow:hidden;
  2074. text-overflow:ellipsis;
  2075. white-space:nowrap;
  2076. }
  2077. .about-text i{
  2078. margin-top: -5px;
  2079. display: inline-block;
  2080. width: 24px;
  2081. height: 24px;
  2082. vertical-align:middle;
  2083. }
  2084. .about-text i.about-qq{
  2085. background: url(about.png) no-repeat -8px -10px;
  2086. }
  2087. .about-text i.about-phone{
  2088. background: url(about.png) no-repeat -8px -40px;
  2089. }
  2090. .about-text i.about-tel{
  2091. background: url(about.png) no-repeat -8px -70px;
  2092. }
  2093. .about-text span{
  2094. font-size: 1.2rem;
  2095. }
  2096. /*@media (min-width: 768px){
  2097. .weixin-erweima img{
  2098. width:90%;
  2099. height:auto;
  2100. }
  2101. }*/
  2102. .weixin-erweima img{
  2103. width:75%;
  2104. height:auto;
  2105. }
  2106. .weixin-erweima span{
  2107. display: inline-block;
  2108. width: 75%;
  2109. }
  2110. .small-text{
  2111. font-size: 0.75rem !important;
  2112. font-weight: 400;
  2113. }
  2114. .chaosong{
  2115. margin: 0 0 0 70px;
  2116. height: 300px;
  2117. }
  2118. .inputErrow{
  2119. -webkit-animation:shake 1s .2s ease both;
  2120. -moz-animation:shake 1s .2s ease both;
  2121. animation:shake 1s .2s ease both;}
  2122. @-webkit-keyframes shake{
  2123. 0%,100%{-webkit-transform:translateX(0);}
  2124. 10%,30%,50%,70%, 90%{-webkit-transform:translateX(-10px);}
  2125. 20%,40%,60%,80%{-webkit-transform:translateX(10px);}
  2126. }
  2127. @-moz-keyframes shake{
  2128. 0%,100%{-moz-transform:translateX(0);}
  2129. 10%,30%,50%,70%, 90%{-moz-transform:translateX(-10px);}
  2130. 20%,40%,60%,80%{-moz-transform:translateX(10px);}
  2131. }
  2132. @keyframes shake{
  2133. 0%,100%{transform:translateX(0);}
  2134. 10%,30%,50%,70%, 90%{transform:translateX(-10px);}
  2135. 20%,40%,60%,80%{transform:translateX(10px);}
  2136. }
  2137. .margin-inputbox{
  2138. margin-top: -4px;
  2139. }
  2140. .margin-inputbox .height-inputbox{
  2141. height: 30px !important;
  2142. }
  2143. .card-gk-width{
  2144. width: 352px;
  2145. border: none;
  2146. cursor: pointer;
  2147. }
  2148. .card-gk-width:hover{
  2149. background: #f7f7f7;
  2150. }
  2151. .modal-body .card-gk-title{
  2152. font-size: 16px;
  2153. }
  2154. .card-gk-active{
  2155. border: 1px solid #3377FF;
  2156. }
  2157. .card-upload-width{
  2158. width: 130px;
  2159. height:130px;
  2160. }
  2161. .card-upload-width:hover{
  2162. background: #f7f7f7;
  2163. border: none;
  2164. }
  2165. .card-upload-active{
  2166. border: 1px solid;
  2167. }
  2168. .sel-width{
  2169. width: 20px;
  2170. height: 20px;
  2171. }
  2172. .sel-blue{
  2173. background: url(sel_blue.png);
  2174. }
  2175. .card-gk-width:hover .sel-gary{
  2176. background: url(sel_gary.png);
  2177. }
  2178. .card-gk-bottom{
  2179. display:none ;
  2180. }
  2181. .card-gk-active .card-gk-bottom{
  2182. display: inline-block;
  2183. }
  2184. .stamp-img{
  2185. cursor: pointer;
  2186. }
  2187. .private-stamp-img{
  2188. display: inline-block;
  2189. margin: auto;
  2190. vertical-align: middle;
  2191. }
  2192. .private-stamp-img .check-state{
  2193. position: absolute;
  2194. right: 10px;
  2195. top: 10px;
  2196. }
  2197. .signatureRptBar{
  2198. position: absolute;
  2199. top: 0;
  2200. bottom: 0;
  2201. background: transparent;
  2202. left: 0;
  2203. right: 0;
  2204. }
  2205. .signatureCavans{
  2206. background: transparent!important;
  2207. }
  2208. .span-grey{
  2209. background: #657798;
  2210. }
  2211. .span-red{
  2212. background: #EE6666;
  2213. }
  2214. .span-blue{
  2215. background: #74CBED;
  2216. }
  2217. .span-yellow{
  2218. background: #FAC858;
  2219. }
  2220. .span-green{
  2221. background: #62DAAB;
  2222. }
  2223. .form-control-width{
  2224. min-width: 450px;
  2225. }
  2226. .form-control-s-width{
  2227. min-width: 280px;
  2228. }
  2229. .vertical-middle{
  2230. display: flex;
  2231. margin: auto;
  2232. }
  2233. .list-waring{
  2234. background-color: #ffeeba!important;
  2235. }
  2236. .permission-div {
  2237. border: 1px solid rgba(0,0,0,.1);
  2238. margin: .5rem 0;
  2239. padding: .5rem;
  2240. }
  2241. .permission-title {
  2242. font-size: 14px;
  2243. padding-bottom: .5rem;
  2244. margin-bottom: .5rem;
  2245. border-bottom: 1px solid rgba(0,0,0,.1);
  2246. }
  2247. .right-duiqi {
  2248. display: inline-block;
  2249. width: 70px;
  2250. text-align: right;
  2251. line-height: 25px;
  2252. }
  2253. .ws-icon{
  2254. width: 30px;
  2255. height: 30px;
  2256. border-radius: 20%;
  2257. text-align: center;
  2258. vertical-align: middle;
  2259. margin-top: auto;
  2260. line-height: 30px;
  2261. /* border: 1px solid #000;*/
  2262. /* border-color: #f5c6cb;*/
  2263. }
  2264. .ws-icon-danger{
  2265. color: rgb(251, 56, 56);
  2266. background-color: rgb(253, 205, 197);
  2267. }
  2268. .ws-icon-primary{
  2269. color: rgb(22, 93, 255);
  2270. background-color: rgb(232, 243, 255);
  2271. }
  2272. .ws-icon-warning{
  2273. color: rgb(253, 172, 33);
  2274. background-color: rgb(255, 228, 186);
  2275. }
  2276. .nav-tabs-wrapper {
  2277. overflow-x: auto;
  2278. overflow-y: hidden;
  2279. white-space: nowrap;
  2280. }
  2281. /* 去掉滚动条(可选) */
  2282. .nav-tabs-wrapper::-webkit-scrollbar {
  2283. height: 6px;
  2284. }
  2285. .nav-tabs-wrapper::-webkit-scrollbar-thumb {
  2286. background: #ccc;
  2287. border-radius: 3px;
  2288. }