main.css 35 KB

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