main.css 37 KB

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