ZDpageCss.scss 49 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481
  1. /*火狐浏览器*/
  2. * {
  3. scrollbar-color: #e0e0e0 rgba(255,255,255,0); /* 滑块颜色 滚动条背景颜色 */
  4. scrollbar-width: thin; /* 滚动条宽度有三种:thin、auto、none */
  5. }
  6. /*===================================各个页面独立样式===================================*/
  7. //风险预案
  8. .plan .el-button--text{
  9. width:120px!important;
  10. }
  11. //危险源管理
  12. .hazard .el-button--text{
  13. width:120px!important;
  14. }
  15. .hazard .el-drawer__open .el-drawer.rtl{
  16. border-top-left-radius:10px;
  17. border-bottom-left-radius:10px;
  18. }
  19. //信息发布
  20. .content-page{
  21. .el-dialog__body{
  22. max-height:600px;
  23. overflow-y: scroll;
  24. }
  25. .el-dialog__body::-webkit-scrollbar{
  26. width: 8px; /*高宽分别对应横竖滚动条的尺寸*/
  27. height: 8px;
  28. }
  29. .el-dialog__body::-webkit-scrollbar-thumb{
  30. border-radius: 5px;
  31. -webkit-box-shadow: inset 0 0 5px #999;
  32. background: #fff;
  33. }
  34. .el-dialog__body::-webkit-scrollbar-track{
  35. -webkit-box-shadow: inset 0 0 5px rgba(255,255,255,0);
  36. border-radius: 0;
  37. background: rgba(255,255,255,0);
  38. }
  39. //.el-tag.el-tag--info{
  40. // color:$color_one;
  41. //}
  42. //.el-tag.el-tag--info .el-tag__close{
  43. // color:$color_one;
  44. // background-color: transparent;
  45. //}
  46. }
  47. //题目管理-新增题目
  48. .qu{
  49. .el-input--small{
  50. width:145px;
  51. }
  52. .el-form--inline .el-form-item{
  53. margin-left:0!important;
  54. }
  55. .el-date-editor.el-input, .el-date-editor.el-input__inner{
  56. width:155px;
  57. }
  58. }
  59. .qu .addTopic{
  60. .el-form-item__label{
  61. width:100px!important;
  62. }
  63. .el-select{
  64. width:420px!important;
  65. }
  66. .el-input--small{
  67. width:420px!important;
  68. }
  69. .options-box .el-input--small{
  70. width:365px!important;
  71. }
  72. .el-form-item__content{
  73. margin-left:100px!important;
  74. }
  75. }
  76. //考试管理
  77. .exam-dialog-box .el-select{
  78. width:330px!important;
  79. }
  80. //考试详情
  81. .examInfo .button-box .el-form-item__content{
  82. margin-left: 10px!important;
  83. }
  84. //新增考试
  85. .exam .addExamPage .el-select{
  86. width:420px!important;
  87. }
  88. .info-right-top-box .el-form-item__label{
  89. width:94px!important;
  90. }
  91. .info-right-top-box .el-form-item__content{
  92. width:170px!important;
  93. }
  94. .info-right-bottom-box .el-form-item__label{
  95. width:94px!important;
  96. }
  97. .info-right-bottom-box .el-form-item__content{
  98. width:170px!important;
  99. }
  100. .configuration-top-box .el-input--small{
  101. width:420px!important;
  102. }
  103. .configuration-center-box .el-input--small{
  104. width:406px!important;
  105. }
  106. .configuration-center-box .el-input-group__prepend{
  107. background: #E0E0E0;
  108. color:#333;
  109. font-size:12px;
  110. }
  111. .configuration-bottom-box{
  112. .one .el-form-item__label{
  113. width:87px!important;
  114. }
  115. .two .el-form-item__label{
  116. width:112px!important;
  117. }
  118. .two .el-form-item{
  119. width:330px!important;
  120. }
  121. }
  122. .faculty-box{
  123. .el-form-item__content{
  124. width:330px!important;
  125. }
  126. }
  127. //控制记录
  128. .control {
  129. .el-form{
  130. //.el-form-item:nth-child(1) .el-form-item__content{
  131. // width:175px!important;
  132. //}
  133. //.el-form-item:nth-child(2) .el-form-item__content{
  134. // width:175px!important;
  135. //}
  136. //.el-form-item:nth-child(3) .el-form-item__content{
  137. // width:175px!important;
  138. //}
  139. //.el-form-item:nth-child(4) .el-form-item__content{
  140. // width:175px!important;
  141. //}
  142. .el-input--medium .el-input__inner{
  143. height:40px;
  144. line-height:40px;
  145. }
  146. }
  147. }
  148. //传感器管理
  149. .sensor-dialog-box .el-input-number--medium .el-input-number__increase, .el-input-number--medium .el-input-number__decrease{
  150. height:38px;
  151. line-height:38px;
  152. }
  153. .sensor-dialog-box .el-input--medium{
  154. width:340px!important;
  155. }
  156. .sensor-dialog-box .el-input-number--medium{
  157. width:340px!important;
  158. }
  159. //识别器管理
  160. .recognizer .el-form-item__label{
  161. width:90px!important;
  162. }
  163. .recognizer-dialog-box .el-form-item__label{
  164. width:130px!important;
  165. }
  166. .recognizer-dialog-box .el-input--medium{
  167. width:340px!important;
  168. }
  169. .recognizer-dialog-box .el-input-number--medium{
  170. width:340px!important;
  171. }
  172. //硬件管理
  173. .hardware-dialog{
  174. .el-form-item__label{
  175. width:90px!important;
  176. }
  177. .el-input--medium{
  178. width:340px!important;
  179. }
  180. }
  181. //硬件管理
  182. .hardware{
  183. .switch .el-switch__label {
  184. position: absolute;
  185. display: none;
  186. color: #fff !important;
  187. }
  188. .switch .el-switch__label--right {
  189. z-index: 1;
  190. }
  191. .switch .el-switch__label--right span{
  192. margin-left: 10px;
  193. }
  194. .switch .el-switch__label--left {
  195. z-index: 1;
  196. }
  197. .switch .el-switch__label--left span{
  198. margin-left: 24px;
  199. }
  200. .switch .el-switch__label.is-active {
  201. display: block;
  202. }
  203. .switch.el-switch .el-switch__core,
  204. .el-switch .el-switch__label {
  205. width: 60px !important;
  206. margin: 0;
  207. }
  208. }
  209. //供应商管理
  210. .supplier{
  211. .switch .el-switch__label {
  212. position: absolute;
  213. display: none;
  214. color: #fff !important;
  215. }
  216. .switch .el-switch__label--right {
  217. z-index: 1;
  218. }
  219. .switch .el-switch__label--right span{
  220. margin-left: 10px;
  221. }
  222. .switch .el-switch__label--left {
  223. z-index: 1;
  224. }
  225. .switch .el-switch__label--left span{
  226. margin-left: 24px;
  227. }
  228. .switch .el-switch__label.is-active {
  229. display: block;
  230. }
  231. .switch.el-switch .el-switch__core,
  232. .el-switch .el-switch__label {
  233. width: 60px !important;
  234. margin: 0;
  235. }
  236. }
  237. //学生卡信息审核
  238. .pending .el-drawer__open .el-drawer.rtl{
  239. border-bottom-left-radius: 10px;
  240. border-top-left-radius: 10px;
  241. }
  242. .pending-drawer-max-box{
  243. height:100%;
  244. display: flex;
  245. flex-direction: column;
  246. .pending-drawer-title{
  247. display:flex;
  248. border-bottom:1px solid #E0E0E0;
  249. p{
  250. flex:1;
  251. line-height:62px;
  252. font-size:18px;
  253. padding-left:20px;
  254. color:$color_one;
  255. margin:0;
  256. }
  257. i{
  258. display:block;
  259. font-size:20px;
  260. height:20px;
  261. width:20px;
  262. line-height:20px;
  263. cursor:pointer;
  264. margin:22px 22px 0 0;
  265. }
  266. }
  267. .pending-drawer-content{
  268. flex:1;
  269. .pending-drawer-content-img{
  270. display: flex;
  271. p{
  272. width:100px;
  273. margin:16px 0 0 26px;
  274. line-height:35px;
  275. text-align:center;
  276. font-size:16px;
  277. color:$color_33;
  278. }
  279. img{
  280. margin:16px 0 0 0;
  281. width:400px;
  282. height:200px;
  283. }
  284. }
  285. .pending-drawer-content-img-box{
  286. padding:24px 20px 0;
  287. .left-span{
  288. display: inline-block;
  289. width:100px;
  290. margin:0;
  291. font-size:16px;
  292. line-height:24px;
  293. color:$color_99;
  294. text-align: left;
  295. }
  296. .el-input--small{
  297. display: inline-block;
  298. width:405px;
  299. }
  300. }
  301. }
  302. .pending-bottom-button-box{
  303. display:flex;
  304. border-top:1px solid #E0E0E0;
  305. padding-top:12px;
  306. padding-bottom:17px;
  307. p{
  308. width: 100px;
  309. height: 40px;
  310. line-height:40px;
  311. text-align: center;
  312. border-radius: 4px;
  313. font-size:16px;
  314. margin:0;
  315. cursor:pointer;
  316. }
  317. p:nth-child(1){
  318. flex:1;
  319. }
  320. p:nth-child(2){
  321. background: $back_one;
  322. color:$color_ff;
  323. margin-right:16px;
  324. }
  325. }
  326. }
  327. //配置违规规则
  328. .configuration-dialog .el-input--medium{
  329. width:340px!important;
  330. }
  331. .configuration .el-drawer__open .el-drawer.rtl{
  332. border-bottom-left-radius: 10px;
  333. border-top-left-radius: 10px;
  334. }
  335. .configuration-drawer-max-box{
  336. height:100%;
  337. display: flex;
  338. flex-direction: column;
  339. .configuration-drawer-title{
  340. display:flex;
  341. border-bottom:1px solid #E0E0E0;
  342. p{
  343. flex:1;
  344. line-height:62px;
  345. font-size:18px;
  346. padding-left:20px;
  347. color:$color_one;
  348. margin:0;
  349. }
  350. i{
  351. display:block;
  352. font-size:20px;
  353. height:20px;
  354. width:20px;
  355. line-height:20px;
  356. cursor:pointer;
  357. margin:22px 22px 0 0;
  358. }
  359. }
  360. .configuration-drawer-content{
  361. flex:1;
  362. padding-top:20px;
  363. .img-box{
  364. padding:0 20px;
  365. font-size:16px;
  366. color:#333;
  367. img{
  368. display: block;
  369. border-radius:10px;
  370. width:300px;
  371. height:180px;
  372. margin:0 auto;
  373. }
  374. }
  375. }
  376. .configuration-drawer-content-img-box{
  377. padding:24px 20px 0;
  378. .left-span{
  379. display: inline-block;
  380. width:100px;
  381. margin:0;
  382. font-size:16px;
  383. line-height:24px;
  384. color:$color_99;
  385. text-align: left;
  386. }
  387. .el-input--small{
  388. display: inline-block;
  389. width:300px;
  390. }
  391. }
  392. .configuration-bottom-button-box{
  393. display:flex;
  394. border-top:1px solid #E0E0E0;
  395. padding-top:12px;
  396. padding-bottom:17px;
  397. p{
  398. width: 100px;
  399. height: 40px;
  400. line-height:40px;
  401. text-align: center;
  402. border-radius: 4px;
  403. font-size:16px;
  404. margin:0;
  405. }
  406. p:nth-child(1){
  407. flex:1;
  408. }
  409. p:nth-child(2){
  410. background: $back_e0;
  411. color:$color_99;
  412. margin-right:16px;
  413. cursor:pointer;
  414. }
  415. p:nth-child(3){
  416. background: $back_one;
  417. color:$color_ff;
  418. cursor:pointer;
  419. margin-right:16px;
  420. }
  421. }
  422. }
  423. .configuration-drawer{
  424. .el-drawer.rtl{
  425. width:560px!important;
  426. }
  427. .el-form-item__label{
  428. width:110px!important;
  429. }
  430. .el-input--medium{
  431. width:400px!important;
  432. }
  433. .el-input--small{
  434. width:400px!important;
  435. }
  436. }
  437. .processed{
  438. .el-input--medium{
  439. width:370px!important;
  440. }
  441. }
  442. //收到随手拍
  443. .photonote-pending-drawer{
  444. .el-drawer.rtl{
  445. width:500px!important;
  446. }
  447. .el-form-item__label{
  448. width:110px!important;
  449. }
  450. .el-input--medium{
  451. width:400px!important;
  452. }
  453. .el-input--small{
  454. width:400px!important;
  455. }
  456. }
  457. .photonote-pending-drawer-drawer-max-box{
  458. height:100%;
  459. display: flex;
  460. flex-direction: column;
  461. .photonote-pending-drawer-drawer-title{
  462. display:flex;
  463. border-bottom:1px solid #E0E0E0;
  464. p{
  465. flex:1;
  466. line-height:62px;
  467. font-size:18px;
  468. padding-left:20px;
  469. color:$color_one;
  470. margin:0;
  471. }
  472. i{
  473. display:block;
  474. font-size:20px;
  475. height:20px;
  476. width:20px;
  477. line-height:20px;
  478. cursor:pointer;
  479. margin:22px 22px 0 0;
  480. }
  481. }
  482. .photonote-pending-drawer-drawer-content{
  483. flex:1;
  484. padding-top:20px;
  485. div{
  486. margin-bottom:20px;
  487. display:flex;
  488. p{
  489. font-size:16px;
  490. margin:0;
  491. }
  492. p:nth-child(1){
  493. color:$color_99;
  494. width:128px;
  495. line-height:30px;
  496. text-align:right;
  497. }
  498. p:nth-child(2){
  499. width:410px;
  500. color:$color_33;
  501. line-height:30px;
  502. text-align:left;
  503. }
  504. }
  505. img{
  506. width:300px;
  507. height:180px;
  508. display: block;
  509. margin:0 0 20px 120px;
  510. }
  511. .photonote-pending-drawer-drawer-content-img{
  512. display: block;
  513. }
  514. }
  515. .photonote-pending-drawer-bottom-button-box{
  516. display:flex;
  517. border-top:1px solid #E0E0E0;
  518. padding-top:12px;
  519. padding-bottom:17px;
  520. p{
  521. width: 100px;
  522. height: 40px;
  523. line-height:40px;
  524. text-align: center;
  525. border-radius: 4px;
  526. font-size:16px;
  527. margin:0;
  528. cursor:pointer;
  529. }
  530. p:nth-child(1){
  531. flex: 1;
  532. }
  533. p:nth-child(2){
  534. background: $back_e0;
  535. color:$color_99;
  536. margin-right:20px;
  537. }
  538. p:nth-child(3){
  539. background: $back_one;
  540. color:$color_ff;
  541. margin-right:20px;
  542. }
  543. }
  544. }
  545. //用户管理
  546. .user-page-admin{
  547. /*==========树结构开始==========*/
  548. .el-tree-node__expand-icon.expanded {
  549. -webkit-transform: rotate(0deg)!important;
  550. transform: rotate(0deg)!important;
  551. }
  552. //未展开
  553. .el-icon-caret-right:before {
  554. content:"\e6d9";
  555. color:#999;
  556. font-size: 12px;
  557. border: 1px solid #999;;
  558. border-radius: 2px;
  559. }
  560. //展开
  561. .el-tree-node__expand-icon.expanded.el-icon-caret-right:before{
  562. content:"\e6d8";
  563. color:#999;
  564. font-size: 12px;
  565. border: 1px solid #999;;
  566. border-radius: 2px;
  567. }
  568. .el-tree-node__expand-icon.is-leaf:before{
  569. color: transparent!important;
  570. border: none;
  571. cursor: default;
  572. }
  573. .el-tree .el-tree-node__label{
  574. font-size:16px;
  575. color:#333333;
  576. }
  577. .el-tree .el-tree-node__children .el-tree-node__label{
  578. font-size: 14px!important;
  579. }
  580. .el-tree .el-tree-node__children .el-tree-node__children .el-tree-node__label{
  581. color:#999999;
  582. font-size: 14px!important;
  583. }
  584. .el-tree-node__content{
  585. height:37px;
  586. }
  587. /*==========树结构结束==========*/
  588. }
  589. //布局管理
  590. .building{
  591. /*==========树结构开始==========*/
  592. .el-tree-node__expand-icon.expanded {
  593. -webkit-transform: rotate(0deg)!important;
  594. transform: rotate(0deg)!important;
  595. }
  596. //未展开
  597. .el-icon-caret-right:before {
  598. content:"\e6d9";
  599. color:#999;
  600. font-size: 12px;
  601. border: 1px solid #999;;
  602. border-radius: 2px;
  603. }
  604. //展开
  605. .el-tree-node__expand-icon.expanded.el-icon-caret-right:before{
  606. content:"\e6d8";
  607. color:#999;
  608. font-size: 12px;
  609. border: 1px solid #999;;
  610. border-radius: 2px;
  611. }
  612. .el-tree-node__expand-icon.is-leaf:before{
  613. color: transparent!important;
  614. border: none;
  615. cursor: default;
  616. }
  617. .el-tree .el-tree-node__label{
  618. font-size:16px;
  619. color:#333333;
  620. }
  621. .el-tree .el-tree-node__children .el-tree-node__label{
  622. font-size: 14px!important;
  623. }
  624. .el-tree .el-tree-node__children .el-tree-node__children .el-tree-node__label{
  625. color:#999999;
  626. font-size: 14px!important;
  627. }
  628. .el-tree-node__content{
  629. height:37px;
  630. }
  631. /*==========树结构结束==========*/
  632. }
  633. //学生管理
  634. .student {
  635. .el-input--small{
  636. width:180px!important;
  637. }
  638. .el-select{
  639. width:180px!important;
  640. }
  641. .pagination-container{
  642. margin: 0 !important;
  643. padding: 0!important;
  644. }
  645. /*==========树结构开始==========*/
  646. .el-tree-node__expand-icon.expanded {
  647. -webkit-transform: rotate(0deg)!important;
  648. transform: rotate(0deg)!important;
  649. }
  650. //未展开
  651. .el-icon-caret-right:before {
  652. content:"\e6d9";
  653. color:#999;
  654. font-size: 12px;
  655. border: 1px solid #999;;
  656. border-radius: 2px;
  657. }
  658. //展开
  659. .el-tree-node__expand-icon.expanded.el-icon-caret-right:before{
  660. content:"\e6d8";
  661. color:#999;
  662. font-size: 12px;
  663. border: 1px solid #999;;
  664. border-radius: 2px;
  665. }
  666. .el-tree-node__expand-icon.is-leaf:before{
  667. color: transparent!important;
  668. border: none;
  669. cursor: default;
  670. }
  671. .el-tree .el-tree-node__label{
  672. font-size:16px;
  673. color:#333333;
  674. }
  675. .el-tree .el-tree-node__children .el-tree-node__label{
  676. font-size: 14px!important;
  677. }
  678. .el-tree .el-tree-node__children .el-tree-node__children .el-tree-node__label{
  679. color:#999999;
  680. font-size: 14px!important;
  681. }
  682. .el-tree-node__content{
  683. height:37px;
  684. }
  685. /*==========树结构结束==========*/
  686. }
  687. .student-dialog{
  688. .el-input--medium{
  689. width:370px;
  690. }
  691. }
  692. .student-teacher-bottom-button-box{
  693. display:flex;
  694. border-top:1px solid #E0E0E0;
  695. padding-top:20px;
  696. p{
  697. width: 100px;
  698. height: 40px;
  699. line-height:40px;
  700. text-align: center;
  701. border-radius: 4px;
  702. font-size:16px;
  703. margin:0;
  704. }
  705. p:nth-child(1){
  706. flex:1;
  707. }
  708. p:nth-child(2){
  709. background: $back_e0;
  710. color:$color_99;
  711. margin-right:16px;
  712. cursor:pointer;
  713. }
  714. p:nth-child(3){
  715. background: $back_one;
  716. color:$color_ff;
  717. margin-right:16px;
  718. cursor:pointer;
  719. }
  720. }
  721. //教职工管理
  722. .teacher {
  723. .el-input--small{
  724. width:150px!important;
  725. }
  726. .el-select{
  727. //width:150px!important;
  728. }
  729. .table-for-max-box{
  730. .el-select{
  731. width:210px!important;
  732. }
  733. }
  734. .pagination-container{
  735. margin: 0 !important;
  736. padding: 0!important;
  737. }
  738. .colorA{
  739. border:2px solid $lv1Danger;
  740. color:$lv1Danger;
  741. }
  742. .colorB{
  743. border:2px solid $lv2Danger;
  744. color:$lv2Danger;
  745. }
  746. .colorC{
  747. border:2px solid $lv3Danger;
  748. color:$lv3Danger;
  749. }
  750. .colorD{
  751. border:2px solid $lv4Danger;
  752. color:$lv4Danger;
  753. }
  754. /*==========树结构开始==========*/
  755. .el-tree-node__expand-icon.expanded {
  756. -webkit-transform: rotate(0deg)!important;
  757. transform: rotate(0deg)!important;
  758. }
  759. //未展开
  760. .el-icon-caret-right:before {
  761. content:"\e6d9";
  762. color:#999;
  763. font-size: 12px;
  764. border: 1px solid #999;;
  765. border-radius: 2px;
  766. }
  767. //展开
  768. .el-tree-node__expand-icon.expanded.el-icon-caret-right:before{
  769. content:"\e6d8";
  770. color:#999;
  771. font-size: 12px;
  772. border: 1px solid #999;;
  773. border-radius: 2px;
  774. }
  775. .el-tree-node__expand-icon.is-leaf:before{
  776. color: transparent!important;
  777. border: none;
  778. cursor: default;
  779. }
  780. .el-tree .el-tree-node__label{
  781. font-size:14px;
  782. color:#333333;
  783. }
  784. .el-tree .el-tree-node__children .el-tree-node__label{
  785. font-size: 14px!important;
  786. }
  787. .el-tree .el-tree-node__children .el-tree-node__children .el-tree-node__label{
  788. color:#333333;
  789. font-size: 14px!important;
  790. }
  791. .el-tree-node__content{
  792. height:37px;
  793. }
  794. /*==========树结构结束==========*/
  795. }
  796. //实验室配置
  797. .subject{
  798. .el-form-item{
  799. margin-bottom:30px;
  800. }
  801. .form-box{
  802. .el-form-item__label{
  803. width:90px!important;
  804. }
  805. .el-input--small{
  806. width:200px!important;
  807. }
  808. }
  809. .colorA{
  810. border:2px solid $lv1Danger;
  811. color:$lv1Danger;
  812. }
  813. .colorB{
  814. border:2px solid $lv2Danger;
  815. color:$lv2Danger;
  816. }
  817. .colorC{
  818. border:2px solid $lv3Danger;
  819. color:$lv3Danger;
  820. }
  821. .colorD{
  822. border:2px solid $lv4Danger;
  823. color:$lv4Danger;
  824. }
  825. .colorE{
  826. border:2px solid $color_14AE10;
  827. color:$color_14AE10;
  828. }
  829. .el-dropdown{
  830. height:42px;
  831. }
  832. .switch .el-switch__label {
  833. position: absolute;
  834. display: none;
  835. color: #fff !important;
  836. }
  837. .switch .el-switch__label--right {
  838. z-index: 1;
  839. }
  840. .switch .el-switch__label--right span{
  841. margin-right: 9px;
  842. }
  843. .switch .el-switch__label--left {
  844. z-index: 1;
  845. }
  846. .switch .el-switch__label--left span{
  847. margin-left: 9px;
  848. }
  849. .switch .el-switch__label.is-active {
  850. display: block;
  851. }
  852. .switch.el-switch .el-switch__core,
  853. .el-switch .el-switch__label {
  854. width: 70px !important;
  855. height:30px!important;
  856. line-height:30px!important;
  857. -webkit-border-radius: 20px!important;
  858. -moz-border-radius: 20px!important;
  859. border-radius: 20px!important;
  860. margin: 0;
  861. position: absolute;
  862. top: 0;
  863. }
  864. .switch .el-switch__label--left span{
  865. margin-left:40px!important;
  866. }
  867. .switch .el-switch__label--right span{
  868. margin-left:16px!important;
  869. }
  870. .el-switch__core:after{
  871. height:24px!important;
  872. width:24px!important;
  873. top:2px!important;
  874. }
  875. .el-switch.is-checked .el-switch__core::after{
  876. margin-left: -25px!important;
  877. }
  878. .el-switch{
  879. margin:10px auto 0;
  880. display: block;
  881. width:70px!important;
  882. height:4px!important;
  883. }
  884. }
  885. .configuration-drawer-max-box-one{
  886. height:100%;
  887. display: flex;
  888. flex-direction: column;
  889. .configuration-drawer-title{
  890. display:flex;
  891. border-bottom:1px solid #E0E0E0;
  892. p{
  893. flex:1;
  894. line-height:62px;
  895. font-size:18px;
  896. padding-left:20px;
  897. color:$color_one;
  898. margin:0;
  899. }
  900. i{
  901. display:block;
  902. font-size:20px;
  903. height:20px;
  904. width:20px;
  905. line-height:20px;
  906. cursor:pointer;
  907. margin:22px 22px 0 0;
  908. }
  909. }
  910. .configuration-drawer-content::-webkit-scrollbar{
  911. width: 8px; /*高宽分别对应横竖滚动条的尺寸*/
  912. height: 8px;
  913. }
  914. .configuration-drawer-content::-webkit-scrollbar-thumb{
  915. border-radius: 5px;
  916. -webkit-box-shadow: inset 0 0 5px #999;
  917. background: #fff;
  918. }
  919. .configuration-drawer-content::-webkit-scrollbar-track{
  920. -webkit-box-shadow: inset 0 0 5px rgba(255,255,255,0);
  921. border-radius: 0;
  922. background: rgba(255,255,255,0);
  923. }
  924. .configuration-drawer-content{
  925. flex:1;
  926. padding-top:20px;
  927. overflow-y:scroll;
  928. .img-box{
  929. padding:0 20px;
  930. font-size:16px;
  931. color:#333;
  932. img{
  933. display: block;
  934. border-radius:10px;
  935. width:300px;
  936. height:180px;
  937. margin:0 auto;
  938. }
  939. }
  940. }
  941. .configuration-drawer-content-img-box{
  942. padding:24px 20px 0;
  943. .left-span{
  944. display: inline-block;
  945. width:100px;
  946. margin:0;
  947. font-size:16px;
  948. line-height:24px;
  949. color:$color_99;
  950. text-align: left;
  951. }
  952. .el-input--small{
  953. display: inline-block;
  954. width:300px;
  955. }
  956. }
  957. .configuration-bottom-button-box{
  958. display:flex;
  959. border-top:1px solid #E0E0E0;
  960. padding-top:12px;
  961. padding-bottom:17px;
  962. p{
  963. width: 100px;
  964. height: 40px;
  965. line-height:40px;
  966. text-align: center;
  967. border-radius: 4px;
  968. font-size:16px;
  969. margin:0;
  970. cursor:pointer;
  971. }
  972. p:nth-child(1){
  973. flex:1;
  974. }
  975. p:nth-child(2){
  976. background: $back_e0;
  977. color:$color_99;
  978. margin:0 16px 0 0;
  979. }
  980. p:nth-child(3){
  981. background: $back_one;
  982. color:$color_ff;
  983. margin:0 16px 0 0;
  984. }
  985. }
  986. }
  987. .configuration-drawer-one{
  988. .el-drawer.rtl{
  989. width:560px!important;
  990. }
  991. .el-form-item__label{
  992. width:110px!important;
  993. }
  994. .el-input--medium{
  995. width:400px!important;
  996. }
  997. .el-input--small{
  998. width:400px!important;
  999. }
  1000. .el-select .el-tag__close.el-icon-close{
  1001. background-color:rgba(255,255,255,0);
  1002. }
  1003. .el-select .el-tag__close.el-icon-close:hover{
  1004. background-color:#999;
  1005. }
  1006. .el-upload{
  1007. width:100px;
  1008. height:100px;
  1009. line-height:100px;
  1010. border:1px solid #e0e0e0;
  1011. border-radius:5px;
  1012. overflow: hidden;
  1013. img{
  1014. width:98px;
  1015. height:98px;
  1016. border-radius:5px;
  1017. }
  1018. }
  1019. }
  1020. .pending-el-drawer{
  1021. .el-drawer.rtl{
  1022. width: 560px!important;
  1023. }
  1024. }
  1025. .subject-drawer-box{
  1026. .el-form-item__error{
  1027. margin-left:100px;
  1028. margin-top:4px;
  1029. }
  1030. .el-input--medium .el-input__inner{
  1031. height:auto;
  1032. min-height: 40px!important;
  1033. }
  1034. .el-drawer__open .el-drawer.rtl{
  1035. width: auto!important;
  1036. }
  1037. }
  1038. .subject-drawer{
  1039. .el-drawer.rtl{
  1040. width: 560px!important;
  1041. }
  1042. }
  1043. .subject-drawer-max-box{
  1044. height:100%;
  1045. display: flex;
  1046. flex-direction: column;
  1047. .el-form-item__label{
  1048. width:100px!important;
  1049. }
  1050. .el-form-item__content{
  1051. margin-left:0!important;
  1052. padding-right:20px!important;
  1053. }
  1054. .subject-drawer-content{
  1055. flex:1;
  1056. padding-top:20px;
  1057. .map-box{
  1058. border:1px solid #E0E0E0;
  1059. position :relative;
  1060. padding:4px;
  1061. div{
  1062. margin:0;
  1063. width:60px;
  1064. height:60px;
  1065. //background:red;
  1066. border:1px solid $lv1Danger;
  1067. border-radius:6px;
  1068. position:absolute;
  1069. font-size:12px;
  1070. color:$lv1Danger;
  1071. text-align:center;
  1072. line-height:15px;
  1073. cursor:pointer;
  1074. -webkit-touch-callout: none; /* iOS Safari */
  1075. -webkit-user-select: none; /* Chrome/Safari/Opera */
  1076. -khtml-user-select: none; /* Konqueror */
  1077. -moz-user-select: none; /* Firefox */
  1078. -ms-user-select: none; /* Internet Explorer/Edge */
  1079. user-select: none; /* Non-prefixed version, currently not supported by any browser */
  1080. i{
  1081. margin:1px 0 0 40px;
  1082. color: #999;
  1083. display: block;
  1084. width:15px;
  1085. height:15px;
  1086. font-size:15px;
  1087. }
  1088. }
  1089. }
  1090. }
  1091. .subject-bottom-button-box{
  1092. display:flex;
  1093. border-top:1px solid #E0E0E0;
  1094. padding-top:12px;
  1095. padding-bottom:17px;
  1096. p{
  1097. width: 100px;
  1098. height: 40px;
  1099. line-height:40px;
  1100. text-align: center;
  1101. border-radius: 4px;
  1102. font-size:16px;
  1103. margin:0;
  1104. }
  1105. p:nth-child(1){
  1106. flex:1;
  1107. }
  1108. p:nth-child(2){
  1109. background: $back_e0;
  1110. color:$color_99;
  1111. margin-right:16px;
  1112. cursor:pointer;
  1113. }
  1114. p:nth-child(3){
  1115. background: $back_one;
  1116. color:$color_ff;
  1117. cursor:pointer;
  1118. margin-right:16px;
  1119. }
  1120. }
  1121. }
  1122. //实验室安全信息牌
  1123. .safety-card-type-max-box{
  1124. .el-dialog__body{
  1125. padding:0 20px 20px;
  1126. }
  1127. .safety-card-type-big-box{
  1128. //height:460px;
  1129. padding-top:4px;
  1130. *{
  1131. padding:0;
  1132. margin:0;
  1133. }
  1134. .top-title-box{
  1135. height:51px;
  1136. display: flex;
  1137. .for-warn-lv-box{
  1138. //width:110px;
  1139. height:35px;
  1140. border-radius:4px;
  1141. margin:7px 8px 7px 0;
  1142. display: flex;
  1143. img{
  1144. display: block;
  1145. width:22px;
  1146. height:23px;
  1147. margin:6px 1px 0 4px;
  1148. }
  1149. div{
  1150. flex:1;
  1151. p{
  1152. margin:0;
  1153. font-size:12px;
  1154. line-height:14px;
  1155. text-align: center;
  1156. padding:0 4px;
  1157. }
  1158. p:nth-child(1){
  1159. margin-top:3px;
  1160. }
  1161. }
  1162. }
  1163. .right-name-p{
  1164. font-weight:700;
  1165. line-height:51px;
  1166. font-size:18px;
  1167. color:#333;
  1168. flex:1;
  1169. }
  1170. .colorA{
  1171. border:1px solid $lv1Danger;
  1172. color:$lv1Danger;
  1173. }
  1174. .colorB{
  1175. border:1px solid $lv2Danger;
  1176. color:$lv2Danger;
  1177. }
  1178. .colorC{
  1179. border:1px solid $lv3Danger;
  1180. color:$lv3Danger;
  1181. }
  1182. .colorD{
  1183. border:1px solid $lv4Danger;
  1184. color:$lv4Danger;
  1185. }
  1186. .colorE{
  1187. border:1px solid $color_14AE10;
  1188. color:$color_14AE10;
  1189. }
  1190. }
  1191. .address-max-box{
  1192. display: flex;
  1193. div{
  1194. //flex:1;
  1195. display: flex;
  1196. p{
  1197. line-height:30px;
  1198. font-size:14px;
  1199. }
  1200. .name-p{
  1201. font-weight:700;
  1202. color:#333;
  1203. }
  1204. .text-p{
  1205. color:#999;
  1206. }
  1207. }
  1208. }
  1209. .position-max-box{
  1210. display: flex;
  1211. .position-min-box{
  1212. margin-top:10px;
  1213. width:420px;
  1214. .left-p{
  1215. font-weight:700;
  1216. width:98px;
  1217. line-height:24px;
  1218. font-size:14px;
  1219. color:#333;
  1220. }
  1221. .right-box{
  1222. width:317px;
  1223. margin-left:10px;
  1224. .for-box{
  1225. .for-p{
  1226. line-height:24px;
  1227. font-size:14px;
  1228. color:#999;
  1229. }
  1230. }
  1231. }
  1232. }
  1233. }
  1234. .inline-block-max-box{
  1235. display: flex;
  1236. .left-p{
  1237. width:72px;
  1238. font-weight:700;
  1239. line-height:44px;
  1240. font-size:14px;
  1241. color:#333;
  1242. }
  1243. .right-box{
  1244. flex:1;
  1245. display: flex;
  1246. .for-box{
  1247. .for-p{
  1248. line-height:44px;
  1249. font-size:14px;
  1250. color:#999;
  1251. }
  1252. }
  1253. }
  1254. }
  1255. .img-max-box{
  1256. display: flex;
  1257. .left-p{
  1258. font-weight:700;
  1259. width:98px;
  1260. line-height:24px;
  1261. font-size:14px;
  1262. color:#333;
  1263. }
  1264. .right-box{
  1265. flex:1;
  1266. margin-right: 110px;
  1267. img{
  1268. margin-top:5px;
  1269. margin-right:10px;
  1270. }
  1271. }
  1272. }
  1273. .code-img{
  1274. position: absolute;
  1275. right:15px;
  1276. bottom:15px;
  1277. height:120px;
  1278. width:120px;
  1279. }
  1280. }
  1281. }
  1282. //风险预案编辑
  1283. .addPlan{
  1284. .plan-info-box{
  1285. .el-input--medium{
  1286. width:350px!important;
  1287. }
  1288. .el-input--small{
  1289. width:350px!important;
  1290. }
  1291. .for-sensor-input{
  1292. .el-input--small{
  1293. width:200px!important;
  1294. }
  1295. }
  1296. }
  1297. }
  1298. //字典管理
  1299. .dict{
  1300. .table-box{
  1301. .switch .el-switch__label {
  1302. position: absolute;
  1303. display: none;
  1304. color: #fff !important;
  1305. }
  1306. .switch .el-switch__label--right {
  1307. z-index: 1;
  1308. }
  1309. .switch .el-switch__label--right span{
  1310. margin-left:10px;
  1311. }
  1312. .switch .el-switch__label--left {
  1313. z-index: 1;
  1314. }
  1315. .switch .el-switch__label--left span{
  1316. margin-left: 24px;
  1317. }
  1318. .switch .el-switch__label.is-active {
  1319. display: block;
  1320. }
  1321. .switch.el-switch .el-switch__core,
  1322. .el-switch .el-switch__label {
  1323. width: 50px !important;
  1324. margin: 0;
  1325. }
  1326. }
  1327. }
  1328. //组织架构
  1329. .dept{
  1330. .cell{
  1331. display: flex;
  1332. .el-table__expand-icon{
  1333. margin-top:10px;
  1334. }
  1335. .scope-img{
  1336. height:40px;
  1337. width:40px;
  1338. border-radius:50%;
  1339. }
  1340. .scope-name{
  1341. line-height:40px;
  1342. margin:0 0 0 10px;
  1343. }
  1344. }
  1345. }
  1346. //角色管理
  1347. .role{
  1348. .table-box{
  1349. .switch .el-switch__label {
  1350. position: absolute;
  1351. display: none;
  1352. color: #fff !important;
  1353. }
  1354. .switch .el-switch__label--right {
  1355. z-index: 1;
  1356. }
  1357. .switch .el-switch__label--right span{
  1358. margin-left: 10px;
  1359. }
  1360. .switch .el-switch__label--left {
  1361. z-index: 1;
  1362. }
  1363. .switch .el-switch__label--left span{
  1364. margin-left: 24px;
  1365. }
  1366. .switch .el-switch__label.is-active {
  1367. display: block;
  1368. }
  1369. .switch.el-switch .el-switch__core,
  1370. .el-switch .el-switch__label {
  1371. width: 50px !important;
  1372. margin: 0;
  1373. }
  1374. }
  1375. }
  1376. //分配用户
  1377. .role-auth-user{
  1378. .form-box{
  1379. .el-input--medium{
  1380. width:150px!important;
  1381. }
  1382. .el-input--small{
  1383. width:150px!important;
  1384. }
  1385. }
  1386. }
  1387. //安全培训
  1388. .drawer-form-box{
  1389. padding:20px;
  1390. .avatar-uploader{
  1391. i{
  1392. display: block;
  1393. height:80px;
  1394. width:80px;
  1395. text-align:center;
  1396. line-height:80px;
  1397. border:1px solid #999;
  1398. border-radius:10px;
  1399. }
  1400. img{
  1401. display: block;
  1402. height:80px;
  1403. width:80px;
  1404. border-radius:10px;
  1405. }
  1406. }
  1407. }
  1408. //安全准入办理(弹窗)
  1409. .approval_handle-drawer{
  1410. .el-drawer.rtl{
  1411. width:490px!important;
  1412. }
  1413. .el-drawer__body{
  1414. display: flex;
  1415. flex-direction: column;
  1416. }
  1417. .el-form-item__label{
  1418. width:80px!important;
  1419. }
  1420. .el-input--medium{
  1421. width:356px!important;
  1422. }
  1423. .el-input--small{
  1424. width:356px!important;
  1425. }
  1426. .approval_handle-drawer-form-box{
  1427. flex:1;
  1428. padding:20px;
  1429. font-size:14px;
  1430. p{
  1431. margin:0;
  1432. }
  1433. .bottom-button-box{
  1434. display: flex;
  1435. .null-p{
  1436. flex:1;
  1437. }
  1438. }
  1439. .upload-box{
  1440. margin:20px;
  1441. p{
  1442. margin-bottom:20px;
  1443. color:#606266;
  1444. }
  1445. i{
  1446. width:300px;
  1447. height:150px;
  1448. display: block;
  1449. line-height:150px;
  1450. text-align: center;
  1451. border: 1px solid #E0E0E0;;
  1452. border-radius:10px;
  1453. margin-left:60px;
  1454. }
  1455. img{
  1456. width:300px;
  1457. height:150px;
  1458. display: block;
  1459. line-height:150px;
  1460. border-radius:10px;
  1461. margin-left:60px;
  1462. }
  1463. }
  1464. }
  1465. .bottom-button-box{
  1466. display:flex;
  1467. border-top:1px solid #E0E0E0;
  1468. padding-top:12px;
  1469. padding-bottom:17px;
  1470. .null-p{
  1471. flex:1;
  1472. }
  1473. }
  1474. }
  1475. //答题
  1476. .exam_start,.exam_info{
  1477. .el-radio__input.is-checked .el-radio__inner{
  1478. border-color: $color_one;
  1479. background: $back_one;
  1480. }
  1481. .el-radio__input.is-checked + .el-radio__label{
  1482. color:$color_one;
  1483. }
  1484. .el-radio__label{
  1485. font-size: 16px!important;
  1486. }
  1487. .el-radio{
  1488. line-height:40px;
  1489. display: block;
  1490. height:40px;
  1491. }
  1492. .el-checkbox__input.is-checked .el-checkbox__inner{
  1493. border-color: $color_one;
  1494. background: $back_one;
  1495. }
  1496. .el-checkbox__input.is-checked + .el-checkbox__label{
  1497. color:$color_one;
  1498. }
  1499. .el-checkbox{
  1500. line-height:40px;
  1501. display: block;
  1502. height:40px;
  1503. }
  1504. .el-checkbox__label{
  1505. font-size: 16px!important;
  1506. }
  1507. }
  1508. //管理端工作台
  1509. .manageHome{
  1510. .switch .el-switch__label {
  1511. position: absolute;
  1512. display: none;
  1513. color: #fff !important;
  1514. }
  1515. .switch .el-switch__label--right {
  1516. z-index: 1;
  1517. }
  1518. .switch .el-switch__label--right span{
  1519. margin-right: 9px;
  1520. }
  1521. .switch .el-switch__label--left {
  1522. z-index: 1;
  1523. }
  1524. .switch .el-switch__label--left span{
  1525. margin-left: 9px;
  1526. }
  1527. .switch .el-switch__label.is-active {
  1528. display: block;
  1529. }
  1530. .switch.el-switch .el-switch__core,
  1531. .el-switch .el-switch__label {
  1532. width: 70px !important;
  1533. height:30px!important;
  1534. line-height:30px!important;
  1535. -webkit-border-radius: 20px!important;
  1536. -moz-border-radius: 20px!important;
  1537. border-radius: 20px!important;
  1538. margin: 0;
  1539. position: absolute;
  1540. top: 0;
  1541. }
  1542. .switch .el-switch__label--left span{
  1543. margin-left:40px!important;
  1544. }
  1545. .switch .el-switch__label--right span{
  1546. margin-left:16px!important;
  1547. }
  1548. .el-switch__core:after{
  1549. height:24px!important;
  1550. width:24px!important;
  1551. top:2px!important;
  1552. }
  1553. .el-switch.is-checked .el-switch__core::after{
  1554. margin-left: -25px!important;
  1555. }
  1556. .el-switch{
  1557. margin:10px auto 0;
  1558. display: block;
  1559. width:70px!important;
  1560. height:4px!important;
  1561. }
  1562. .colorA{
  1563. border:2px solid $lv1Danger;
  1564. color:$lv1Danger;
  1565. }
  1566. .colorB{
  1567. border:2px solid $lv2Danger;
  1568. color:$lv2Danger;
  1569. }
  1570. .colorC{
  1571. border:2px solid $lv3Danger;
  1572. color:$lv3Danger;
  1573. }
  1574. .colorD{
  1575. border:2px solid $lv4Danger;
  1576. color:$lv4Danger;
  1577. }
  1578. }
  1579. //风险统计
  1580. .plan_log{
  1581. .el-table__header-wrapper{
  1582. height:50px;
  1583. }
  1584. .el-table--medium th, .el-table--medium td{
  1585. padding:13px 0;
  1586. }
  1587. .el-table .cell{
  1588. font-size:14px;
  1589. }
  1590. .el-button-group{
  1591. position: absolute;
  1592. left:40px;
  1593. top:0;
  1594. }
  1595. }
  1596. //新增危险源
  1597. .addLaboratory{
  1598. .el-input--small{
  1599. width:400px;
  1600. }
  1601. }
  1602. .videoSurveillance-drawer{
  1603. height:100%;
  1604. display: flex;
  1605. flex-direction: column;
  1606. .el-drawer__open .el-drawer.rtl{
  1607. width: auto!important;
  1608. }
  1609. .el-form-item__label{
  1610. width:100px!important;
  1611. }
  1612. .el-input--small{
  1613. width:200px!important;
  1614. }
  1615. .el-select > .el-input{
  1616. width:200px!important;
  1617. }
  1618. .el-input--medium .el-input__inner{
  1619. line-height:40px;
  1620. height:40px;
  1621. }
  1622. .videoSurveillance-drawer-content{
  1623. min-width: 350px;
  1624. }
  1625. .map-box{
  1626. border:1px solid #E0E0E0;
  1627. margin-left:20px;
  1628. position :relative;
  1629. padding:4px;
  1630. div{
  1631. z-index:10;
  1632. margin:0;
  1633. width:60px;
  1634. height:60px;
  1635. line-height:16px;
  1636. padding-top:10px;
  1637. word-wrap:break-word;
  1638. //background:red;
  1639. border:1px solid $lv1Danger;
  1640. border-radius:6px;
  1641. position:absolute;
  1642. font-size:12px;
  1643. color:$lv1Danger;
  1644. text-align:center;
  1645. cursor:pointer;
  1646. -webkit-touch-callout: none; /* iOS Safari */
  1647. -webkit-user-select: none; /* Chrome/Safari/Opera */
  1648. -khtml-user-select: none; /* Konqueror */
  1649. -moz-user-select: none; /* Firefox */
  1650. -ms-user-select: none; /* Internet Explorer/Edge */
  1651. user-select: none; /* Non-prefixed version, currently not supported by any browser */
  1652. }
  1653. .map-p{
  1654. z-index:1;
  1655. margin:0;
  1656. width:60px;
  1657. height:60px;
  1658. line-height:16px;
  1659. padding-top:10px;
  1660. word-wrap:break-word;
  1661. //background:red;
  1662. border:2px solid $lv3Danger;
  1663. border-radius:6px;
  1664. position:absolute;
  1665. font-size:12px;
  1666. color:$lv3Danger;
  1667. text-align:center;
  1668. cursor:pointer;
  1669. -webkit-touch-callout: none; /* iOS Safari */
  1670. -webkit-user-select: none; /* Chrome/Safari/Opera */
  1671. -khtml-user-select: none; /* Konqueror */
  1672. -moz-user-select: none; /* Firefox */
  1673. -ms-user-select: none; /* Internet Explorer/Edge */
  1674. user-select: none; /* Non-prefixed version, currently not supported by any browser */
  1675. }
  1676. }
  1677. .videoSurveillance-drawer-max-box{
  1678. height:100%;
  1679. display: flex;
  1680. flex-direction: column;
  1681. .videoSurveillance-drawer-content{
  1682. padding:20px;
  1683. flex: 1;
  1684. }
  1685. .videoSurveillance-bottom-button-box{
  1686. display:flex;
  1687. border-top:1px solid #E0E0E0;
  1688. padding-top:12px;
  1689. padding-bottom:17px;
  1690. p{
  1691. width: 100px;
  1692. height: 40px;
  1693. line-height:40px;
  1694. text-align: center;
  1695. border-radius: 4px;
  1696. font-size:16px;
  1697. margin:0;
  1698. }
  1699. p:nth-child(1){
  1700. flex:1;
  1701. }
  1702. p:nth-child(2){
  1703. background: $back_e0;
  1704. color:$color_99;
  1705. margin-right:16px;
  1706. cursor:pointer;
  1707. }
  1708. p:nth-child(3){
  1709. background: $back_one;
  1710. color:$color_ff;
  1711. margin-right:16px;
  1712. cursor:pointer;
  1713. }
  1714. }
  1715. }
  1716. }
  1717. //工作台侧边栏样式
  1718. .manageHome-drawer-box{
  1719. height:100%;
  1720. display: flex;
  1721. flex-direction: column;
  1722. .manageHome-drawer-title{
  1723. display:flex;
  1724. border-bottom:1px solid #E0E0E0;
  1725. p{
  1726. flex:1;
  1727. line-height:62px;
  1728. font-size:18px;
  1729. padding-left:20px;
  1730. color:$color_one;
  1731. margin:0;
  1732. }
  1733. i{
  1734. display:block;
  1735. font-size:20px;
  1736. height:20px;
  1737. width:20px;
  1738. line-height:20px;
  1739. cursor:pointer;
  1740. margin:22px 22px 0 0;
  1741. }
  1742. }
  1743. .manageHome-drawer-content{
  1744. flex:1;
  1745. padding:20px;
  1746. .manageHome-drawer-content-text{
  1747. display: flex;
  1748. margin-bottom:24px;
  1749. p{
  1750. margin:0;
  1751. font-size:16px;
  1752. line-height:24px;
  1753. }
  1754. p:nth-child(1){
  1755. width: 100px;
  1756. color:$color_99;
  1757. text-align: right;
  1758. }
  1759. p:nth-child(2){
  1760. flex:1;
  1761. color:$color_33;
  1762. }
  1763. img{
  1764. width:300px;
  1765. height:180px;
  1766. }
  1767. }
  1768. .manageHome-drawer-content-img-box{
  1769. margin-bottom:24px;
  1770. p{
  1771. margin:0;
  1772. font-size:16px;
  1773. line-height:24px;
  1774. }
  1775. p:nth-child(1){
  1776. color:$color_99;
  1777. text-align: left;
  1778. }
  1779. img{
  1780. width:300px;
  1781. height:180px;
  1782. margin-top:10px;
  1783. margin-left:100px;
  1784. }
  1785. .left-span{
  1786. display: inline-block;
  1787. width:100px;
  1788. margin:0;
  1789. font-size:16px;
  1790. line-height:24px;
  1791. color:$color_99;
  1792. text-align: left;
  1793. }
  1794. .el-input--small{
  1795. display: inline-block;
  1796. width:300px;
  1797. }
  1798. }
  1799. }
  1800. .manageHome-drawer-button{
  1801. display:flex;
  1802. border-top:1px solid #E0E0E0;
  1803. padding-top:12px;
  1804. padding-bottom:17px;
  1805. p{
  1806. width: 100px;
  1807. height: 40px;
  1808. line-height:40px;
  1809. text-align: center;
  1810. border-radius: 4px;
  1811. font-size:16px;
  1812. margin:0;
  1813. cursor:pointer;
  1814. }
  1815. p:nth-child(1){
  1816. flex:1;
  1817. }
  1818. .left-button{
  1819. background: $back_e0;
  1820. color:$color_99;
  1821. margin-right:20px;
  1822. }
  1823. .right-button{
  1824. background: $back_one;
  1825. color:$color_ff;
  1826. margin-right:20px;
  1827. }
  1828. }
  1829. }
  1830. //异常设备
  1831. .abnormal-dialog{
  1832. display: flex;
  1833. margin-bottom:30px;
  1834. p{
  1835. margin:0;
  1836. font-size:16px;
  1837. flex:1;
  1838. color:$color_99;
  1839. span{
  1840. color:$color_33;
  1841. }
  1842. }
  1843. }
  1844. //证书管理
  1845. .certificate{
  1846. }
  1847. .certificate-avatar-uploader{
  1848. i{
  1849. width:80px;
  1850. height:80px;
  1851. line-height:80px;
  1852. text-align: center;
  1853. border:1px solid #e0e0e0;
  1854. border-radius:4px;
  1855. }
  1856. img{
  1857. width:240px;
  1858. height:240px;
  1859. }
  1860. }
  1861. /*弹窗按钮*/
  1862. .el-message-box{
  1863. .el-message-box__header{
  1864. .el-message-box__title{
  1865. text-align: center;
  1866. }
  1867. .el-message-box__headerbtn{
  1868. display: none;
  1869. }
  1870. }
  1871. .el-message-box__content{
  1872. .el-message-box__status.el-icon-warning{
  1873. display: none;
  1874. }
  1875. .el-message-box__message{
  1876. padding:0 12px;
  1877. text-align: center;
  1878. }
  1879. }
  1880. .el-message-box__btns{
  1881. text-align: center;
  1882. .el-button--primary:hover, .el-button--primary:focus{
  1883. background: #0045af;
  1884. border-color:#0045af;
  1885. }
  1886. }
  1887. }
  1888. /*安全分级*/
  1889. .app-container-el-dialog{
  1890. .el-form-item{
  1891. margin-bottom:0;
  1892. }
  1893. .el-select > .el-input{
  1894. width:340px;
  1895. }
  1896. textarea::-webkit-scrollbar{
  1897. width: 12px; /*高宽分别对应横竖滚动条的尺寸*/
  1898. height: 12px;
  1899. }
  1900. textarea::-webkit-scrollbar-thumb{
  1901. border-radius: 5px;
  1902. -webkit-box-shadow: inset 0 0 5px #999;
  1903. background: #fff;
  1904. }
  1905. textarea::-webkit-scrollbar-track{
  1906. -webkit-box-shadow: inset 0 0 5px rgba(255,255,255,0);
  1907. border-radius: 0;
  1908. background: rgba(255,255,255,0);
  1909. }
  1910. }
  1911. //待审核按钮
  1912. .configuration-bottom-button-box-button-color{
  1913. color:$color_ff!important;
  1914. background: $back_one !important;
  1915. }
  1916. .floor-max-box{
  1917. .position-max-box{
  1918. .top-name-box{
  1919. .colorA{
  1920. background:$lv1Danger;
  1921. }
  1922. .colorB{
  1923. background:$lv2Danger;
  1924. }
  1925. .colorC{
  1926. background:$lv3Danger;
  1927. }
  1928. .colorD{
  1929. background:$lv4Danger;
  1930. }
  1931. .colorE{
  1932. background:$color_14AE10;
  1933. }
  1934. }
  1935. }
  1936. }
  1937. //实验室安全制度
  1938. .safe-book-el-dialog{
  1939. .el-select{
  1940. width:418px;
  1941. }
  1942. .pdf-max-box{
  1943. height:400px;
  1944. overflow-y: scroll;
  1945. }
  1946. .pdf-max-box::-webkit-scrollbar{
  1947. width: 6px; /*高宽分别对应横竖滚动条的尺寸*/
  1948. height: 6px;
  1949. }
  1950. .pdf-max-box::-webkit-scrollbar-thumb{
  1951. border-radius: 5px;
  1952. -webkit-box-shadow: inset 0 0 5px #999;
  1953. background: #fff;
  1954. }
  1955. .pdf-max-box::-webkit-scrollbar-track{
  1956. -webkit-box-shadow: inset 0 0 5px rgba(255,255,255,0);
  1957. border-radius: 0;
  1958. background: rgba(255,255,255,0);
  1959. }
  1960. .top-button-box{
  1961. width:100%;
  1962. display: flex;
  1963. .null-p{
  1964. flex:1;
  1965. }
  1966. .turn{
  1967. cursor:pointer;
  1968. }
  1969. }
  1970. }
  1971. //富文本滚动条样式
  1972. .w-e-text::-webkit-scrollbar{
  1973. width: 4px; /*高宽分别对应横竖滚动条的尺寸*/
  1974. height: 4px;
  1975. }
  1976. .w-e-text::-webkit-scrollbar-thumb{
  1977. border-radius: 5px;
  1978. -webkit-box-shadow: inset 0 0 5px #999;
  1979. background: #fff;
  1980. }
  1981. .w-e-text::-webkit-scrollbar-track{
  1982. -webkit-box-shadow: inset 0 0 5px rgba(255,255,255,0);
  1983. border-radius: 0;
  1984. background: rgba(255,255,255,0);
  1985. }
  1986. //EUditor富文本编辑器
  1987. .edui-default .edui-editor{
  1988. overflow: hidden!important;
  1989. }
  1990. .edui-default .edui-editor-bottomContainer{
  1991. display: none;
  1992. }
  1993. .up-button-box{
  1994. width:100px;
  1995. margin: 0 auto;
  1996. }
  1997. .up-text-box::-webkit-scrollbar{
  1998. width: 6px; /*高宽分别对应横竖滚动条的尺寸*/
  1999. height: 6px;
  2000. }
  2001. .up-text-box::-webkit-scrollbar-thumb{
  2002. border-radius: 5px;
  2003. -webkit-box-shadow: inset 0 0 5px #999;
  2004. background: #fff;
  2005. }
  2006. .up-text-box::-webkit-scrollbar-track{
  2007. -webkit-box-shadow: inset 0 0 5px rgba(255,255,255,0);
  2008. border-radius: 0;
  2009. background: rgba(255,255,255,0);
  2010. }
  2011. .el-course,.el-resources{
  2012. /*==========树结构开始==========*/
  2013. .el-tree-node__expand-icon.expanded {
  2014. -webkit-transform: rotate(0deg)!important;
  2015. transform: rotate(0deg)!important;
  2016. }
  2017. //未展开
  2018. .el-icon-caret-right:before {
  2019. content:"\e6d9";
  2020. color:#999;
  2021. font-size: 12px;
  2022. border: 1px solid #999;;
  2023. border-radius: 2px;
  2024. }
  2025. //展开
  2026. .el-tree-node__expand-icon.expanded.el-icon-caret-right:before{
  2027. content:"\e6d8";
  2028. color:#999;
  2029. font-size: 12px;
  2030. border: 1px solid #999;;
  2031. border-radius: 2px;
  2032. }
  2033. .el-tree-node__expand-icon.is-leaf:before{
  2034. color: transparent!important;
  2035. border: none;
  2036. cursor: default;
  2037. }
  2038. .el-tree .el-tree-node__label{
  2039. font-size:14px;
  2040. color:#333333;
  2041. }
  2042. .el-tree .el-tree-node__children .el-tree-node__label{
  2043. font-size: 14px!important;
  2044. }
  2045. .el-tree .el-tree-node__children .el-tree-node__children .el-tree-node__label{
  2046. //color:#999999;
  2047. font-size: 14px!important;
  2048. }
  2049. .el-tree-node__content{
  2050. height:37px;
  2051. }
  2052. /*==========树结构结束==========*/
  2053. }
  2054. //公共滚动条尺寸
  2055. .scrollbar-box{
  2056. overflow-y: scroll;
  2057. }
  2058. .scrollbar-box::-webkit-scrollbar{
  2059. width: 4px; /*高宽分别对应横竖滚动条的尺寸*/
  2060. height: 4px;
  2061. }
  2062. .scrollbar-box::-webkit-scrollbar-thumb{
  2063. border-radius: 5px;
  2064. -webkit-box-shadow: inset 0 0 5px #999;
  2065. background: #fff;
  2066. }
  2067. .scrollbar-box::-webkit-scrollbar-track{
  2068. -webkit-box-shadow: inset 0 0 5px rgba(255,255,255,0);
  2069. border-radius: 0;
  2070. background: rgba(255,255,255,0);
  2071. }
  2072. /*学习资源*/
  2073. .set-up-max-box{
  2074. .el-input--medium .el-input__inner{
  2075. height: 36px !important;
  2076. }
  2077. }
  2078. //编辑右侧结构树
  2079. .right-courseware-box{
  2080. .el-table--enable-row-transition .el-table__body td{
  2081. padding:10px 0!important;
  2082. }
  2083. /*==========树结构开始==========*/
  2084. .el-tree-node__expand-icon.expanded {
  2085. -webkit-transform: rotate(0deg)!important;
  2086. transform: rotate(0deg)!important;
  2087. }
  2088. //未展开
  2089. .el-icon-caret-right:before {
  2090. content:"\e6d9";
  2091. color:#999;
  2092. font-size: 12px;
  2093. border: 1px solid #999;;
  2094. border-radius: 2px;
  2095. }
  2096. //展开
  2097. .el-tree-node__expand-icon.expanded.el-icon-caret-right:before{
  2098. content:"\e6d8";
  2099. color:#999;
  2100. font-size: 12px;
  2101. border: 1px solid #999;;
  2102. border-radius: 2px;
  2103. }
  2104. .el-tree-node__expand-icon.is-leaf:before{
  2105. color: transparent!important;
  2106. border: none;
  2107. cursor: default;
  2108. }
  2109. .el-tree .el-tree-node__label{
  2110. font-size:12px;
  2111. color:#333333;
  2112. }
  2113. .el-tree .el-tree-node__children .el-tree-node__label{
  2114. font-size: 12px!important;
  2115. }
  2116. .el-tree .el-tree-node__children .el-tree-node__children .el-tree-node__label{
  2117. //color:#999999;
  2118. font-size: 12px!important;
  2119. }
  2120. .el-tree-node__content{
  2121. height:24px;
  2122. }
  2123. /*结构树结束*/
  2124. .el-table__empty-text{
  2125. background-size: 70%;
  2126. background-position: 70px center;
  2127. }
  2128. }
  2129. //播放按钮
  2130. .center-info-components-max-box{
  2131. .video-js .vjs-big-play-button{
  2132. width:100px;
  2133. height:45px;
  2134. left:50%;
  2135. top:50%;
  2136. margin-left:-50px;
  2137. margin-top:-22px;
  2138. }
  2139. }
  2140. .el_resources_dialog{
  2141. //上传描述
  2142. .up-data-box-text{
  2143. margin-bottom:20px;
  2144. p{
  2145. margin:0;
  2146. padding:0;
  2147. line-height:24px;
  2148. font-size:12px;
  2149. color:#999;
  2150. text-align: center;
  2151. }
  2152. }
  2153. }
  2154. //手动添加题库
  2155. .addExamPage{
  2156. .el-input-number--medium .el-input-number__increase, .el-input-number--medium .el-input-number__decrease{
  2157. height:38px!important;
  2158. line-height:38px;
  2159. }
  2160. }
  2161. .add-manual-dialog{
  2162. .add-manual-dialog-list-box{
  2163. display: flex;
  2164. height:500px;
  2165. .add-manual-dialog-list-box-left{
  2166. flex:1;
  2167. border:1px solid #dedede;
  2168. margin-right:20px;
  2169. display: flex;
  2170. flex-direction: column;
  2171. *{
  2172. margin:0;
  2173. }
  2174. .add-manual-dialog-list-box-title{
  2175. font-size:15px;
  2176. color: #333;
  2177. line-height:31px;
  2178. padding:4px 10px;
  2179. font-weight: 700;
  2180. background-color: #f8f8f9;
  2181. border-bottom:1px solid #dedede;
  2182. }
  2183. .add-manual-dialog-list-for-max-box{
  2184. overflow-y: scroll;
  2185. .add-manual-dialog-list-for-box{
  2186. width:420px;
  2187. margin:0 auto;
  2188. display: flex;
  2189. border-bottom:1px solid #dedede;
  2190. p{
  2191. width:386px;
  2192. flex:1;
  2193. color:#333;
  2194. margin-left:10px;
  2195. line-height:38px;
  2196. font-size:14px;
  2197. display:block;
  2198. overflow:hidden;
  2199. text-overflow:ellipsis;
  2200. white-space:nowrap;
  2201. }
  2202. i{
  2203. color:#999;
  2204. margin:10px;
  2205. font-size:18px;
  2206. cursor:pointer;
  2207. }
  2208. }
  2209. .add-manual-dialog-list-for-null{
  2210. font-size:16px;
  2211. line-height:100px;
  2212. text-align: center;
  2213. color:#dedede;
  2214. }
  2215. }
  2216. }
  2217. .add-manual-dialog-list-box-right{
  2218. border:1px solid #dedede;
  2219. height:497px;
  2220. width:700px;
  2221. display: flex;
  2222. flex-direction: column;
  2223. .el-table--medium th, .el-table--medium td{
  2224. padding:4px 0;
  2225. }
  2226. .pagination-container{
  2227. height:50px;
  2228. margin:0;
  2229. }
  2230. }
  2231. }
  2232. }
  2233. //违规设置
  2234. .violation-site{
  2235. .el-input--small{
  2236. width:300px;
  2237. }
  2238. }
  2239. //奖励分设置
  2240. .rewardconfig{
  2241. .el-input--small{
  2242. width:400px;
  2243. text-align: right;
  2244. }
  2245. }
  2246. //负面清单管理
  2247. .negative-list-records{
  2248. .el-input--small{
  2249. width:217px;
  2250. }
  2251. }
  2252. //个人安全学习
  2253. .safeLearning{
  2254. .el-tree-node__label{
  2255. width: 188px;
  2256. display:block;
  2257. overflow:hidden;
  2258. text-overflow:ellipsis;
  2259. white-space:nowrap;
  2260. }
  2261. }
  2262. //个人学习记录
  2263. .recordListPage{
  2264. .el-tree-node__label{
  2265. width: 188px;
  2266. display:block;
  2267. overflow:hidden;
  2268. text-overflow:ellipsis;
  2269. white-space:nowrap;
  2270. }
  2271. }
  2272. //课件管理
  2273. .el-resources{
  2274. .el-tree-node__label{
  2275. width: 188px;
  2276. display:block;
  2277. overflow:hidden;
  2278. text-overflow:ellipsis;
  2279. white-space:nowrap;
  2280. }
  2281. }
  2282. //学习资源
  2283. .el-course{
  2284. .el-tree-node__label{
  2285. width: 188px;
  2286. display:block;
  2287. overflow:hidden;
  2288. text-overflow:ellipsis;
  2289. white-space:nowrap;
  2290. }
  2291. }
  2292. .el-check-box{
  2293. .el-radio__input.is-disabled + span.el-radio__label{
  2294. color:#333;
  2295. }
  2296. .el-radio__input.is-disabled.is-checked .el-radio__inner{
  2297. background: #00b7ee;
  2298. }
  2299. }
  2300. .edit-page{
  2301. .el-resources-list{
  2302. .el-table{
  2303. height:90%;
  2304. }
  2305. }
  2306. .center-content-box-two-bottom-left{
  2307. .el-table--medium th, .el-table--medium td{
  2308. padding:8px 0;
  2309. }
  2310. .el-table__empty-text{
  2311. background:none;
  2312. color:#999;
  2313. }
  2314. .el-table__header-wrapper{
  2315. height:39px;
  2316. }
  2317. }
  2318. .center-content-box-two-bottom-right{
  2319. .el-table--medium th, .el-table--medium td{
  2320. padding:8px 0;
  2321. }
  2322. .el-table__empty-text{
  2323. background-size:200px;
  2324. }
  2325. .pagination-container{
  2326. height:40px!important;
  2327. }
  2328. .el-pagination__total{
  2329. margin-left:20px;
  2330. }
  2331. .el-pagination__jump{
  2332. margin-right:20px;
  2333. }
  2334. .pagination-container{
  2335. padding:4px 20px !important;
  2336. }
  2337. .el-table__header-wrapper{
  2338. height:39px;
  2339. }
  2340. }
  2341. }
  2342. //录入检查
  2343. .addCheckPage{
  2344. .top-addCheckPage{
  2345. .el-form-item__label{
  2346. padding-bottom:0!important;
  2347. }
  2348. }
  2349. }
  2350. .el_resources_dialog{
  2351. .up-button-box{
  2352. width:660px;
  2353. }
  2354. .dialog-footer-edit{
  2355. display: flex;
  2356. .null-p{
  2357. flex:1;
  2358. }
  2359. }
  2360. }
  2361. .checkRecord{
  2362. .el-table__header-wrapper .el-checkbox{
  2363. display:none
  2364. }
  2365. }
  2366. //.checkRecordPageTableTwo{
  2367. // .el-table__header-wrapper .el-checkbox{
  2368. // display:block;
  2369. // margin-left:4px;
  2370. // }
  2371. //}
  2372. .checkRecordInfoPage,.CheckRecordInfo,.CheckRecordInfo{
  2373. .el-icon-circle-close{
  2374. color:red;
  2375. }
  2376. .zgStatusColor{
  2377. .el-step__title{
  2378. color:red;
  2379. }
  2380. }
  2381. }
  2382. //检查项列表
  2383. .checkOption{
  2384. .el-table .cell{
  2385. display: flex;
  2386. }
  2387. }
  2388. //疏散路线
  2389. .emergencyEvacuation{
  2390. .el-table__empty-text{
  2391. background-size: 12%;
  2392. }
  2393. }
  2394. //安全准入办理
  2395. .approval_handle_addPage{
  2396. .el-input-number__decrease{
  2397. height:38px;
  2398. line-height: 38px;
  2399. }
  2400. .el-input-number__increase{
  2401. height:38px;
  2402. line-height: 38px;
  2403. }
  2404. }
  2405. //分级管控管理-实验室列表
  2406. .gradeManage-subjectList{
  2407. .pagination-container{
  2408. margin:0;
  2409. }
  2410. }
  2411. //分级管控管理-人员列表
  2412. .gradeManage-userList{
  2413. .pagination-container{
  2414. margin:0;
  2415. }
  2416. }
  2417. //大屏计划
  2418. .addPage{
  2419. .addPageFormBox{
  2420. .button-max-box{
  2421. .button-big-box{
  2422. .button-p{
  2423. flex:1;
  2424. display: flex;
  2425. .el-upload{
  2426. flex: 1;
  2427. }
  2428. }
  2429. }
  2430. }
  2431. }
  2432. }
  2433. //分级管控
  2434. .gradeManage-addPage{
  2435. .switch .el-switch__label {
  2436. position: absolute;
  2437. display: none;
  2438. color: #fff !important;
  2439. }
  2440. .switch .el-switch__label--right {
  2441. z-index: 1;
  2442. }
  2443. .switch .el-switch__label--right span{
  2444. margin-left: 10px;
  2445. }
  2446. .switch .el-switch__label--left {
  2447. z-index: 1;
  2448. }
  2449. .switch .el-switch__label--left span{
  2450. margin-left: 24px;
  2451. }
  2452. .switch .el-switch__label.is-active {
  2453. display: block;
  2454. }
  2455. .switch.el-switch .el-switch__core,
  2456. .el-switch .el-switch__label {
  2457. width: 60px !important;
  2458. margin: 0;
  2459. }
  2460. }