123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481 |
- /*火狐浏览器*/
- * {
- scrollbar-color: #e0e0e0 rgba(255,255,255,0); /* 滑块颜色 滚动条背景颜色 */
- scrollbar-width: thin; /* 滚动条宽度有三种:thin、auto、none */
- }
- /*===================================各个页面独立样式===================================*/
- //风险预案
- .plan .el-button--text{
- width:120px!important;
- }
- //危险源管理
- .hazard .el-button--text{
- width:120px!important;
- }
- .hazard .el-drawer__open .el-drawer.rtl{
- border-top-left-radius:10px;
- border-bottom-left-radius:10px;
- }
- //信息发布
- .content-page{
- .el-dialog__body{
- max-height:600px;
- overflow-y: scroll;
- }
- .el-dialog__body::-webkit-scrollbar{
- width: 8px; /*高宽分别对应横竖滚动条的尺寸*/
- height: 8px;
- }
- .el-dialog__body::-webkit-scrollbar-thumb{
- border-radius: 5px;
- -webkit-box-shadow: inset 0 0 5px #999;
- background: #fff;
- }
- .el-dialog__body::-webkit-scrollbar-track{
- -webkit-box-shadow: inset 0 0 5px rgba(255,255,255,0);
- border-radius: 0;
- background: rgba(255,255,255,0);
- }
- //.el-tag.el-tag--info{
- // color:$color_one;
- //}
- //.el-tag.el-tag--info .el-tag__close{
- // color:$color_one;
- // background-color: transparent;
- //}
- }
- //题目管理-新增题目
- .qu{
- .el-input--small{
- width:145px;
- }
- .el-form--inline .el-form-item{
- margin-left:0!important;
- }
- .el-date-editor.el-input, .el-date-editor.el-input__inner{
- width:155px;
- }
- }
- .qu .addTopic{
- .el-form-item__label{
- width:100px!important;
- }
- .el-select{
- width:420px!important;
- }
- .el-input--small{
- width:420px!important;
- }
- .options-box .el-input--small{
- width:365px!important;
- }
- .el-form-item__content{
- margin-left:100px!important;
- }
- }
- //考试管理
- .exam-dialog-box .el-select{
- width:330px!important;
- }
- //考试详情
- .examInfo .button-box .el-form-item__content{
- margin-left: 10px!important;
- }
- //新增考试
- .exam .addExamPage .el-select{
- width:420px!important;
- }
- .info-right-top-box .el-form-item__label{
- width:94px!important;
- }
- .info-right-top-box .el-form-item__content{
- width:170px!important;
- }
- .info-right-bottom-box .el-form-item__label{
- width:94px!important;
- }
- .info-right-bottom-box .el-form-item__content{
- width:170px!important;
- }
- .configuration-top-box .el-input--small{
- width:420px!important;
- }
- .configuration-center-box .el-input--small{
- width:406px!important;
- }
- .configuration-center-box .el-input-group__prepend{
- background: #E0E0E0;
- color:#333;
- font-size:12px;
- }
- .configuration-bottom-box{
- .one .el-form-item__label{
- width:87px!important;
- }
- .two .el-form-item__label{
- width:112px!important;
- }
- .two .el-form-item{
- width:330px!important;
- }
- }
- .faculty-box{
- .el-form-item__content{
- width:330px!important;
- }
- }
- //控制记录
- .control {
- .el-form{
- //.el-form-item:nth-child(1) .el-form-item__content{
- // width:175px!important;
- //}
- //.el-form-item:nth-child(2) .el-form-item__content{
- // width:175px!important;
- //}
- //.el-form-item:nth-child(3) .el-form-item__content{
- // width:175px!important;
- //}
- //.el-form-item:nth-child(4) .el-form-item__content{
- // width:175px!important;
- //}
- .el-input--medium .el-input__inner{
- height:40px;
- line-height:40px;
- }
- }
- }
- //传感器管理
- .sensor-dialog-box .el-input-number--medium .el-input-number__increase, .el-input-number--medium .el-input-number__decrease{
- height:38px;
- line-height:38px;
- }
- .sensor-dialog-box .el-input--medium{
- width:340px!important;
- }
- .sensor-dialog-box .el-input-number--medium{
- width:340px!important;
- }
- //识别器管理
- .recognizer .el-form-item__label{
- width:90px!important;
- }
- .recognizer-dialog-box .el-form-item__label{
- width:130px!important;
- }
- .recognizer-dialog-box .el-input--medium{
- width:340px!important;
- }
- .recognizer-dialog-box .el-input-number--medium{
- width:340px!important;
- }
- //硬件管理
- .hardware-dialog{
- .el-form-item__label{
- width:90px!important;
- }
- .el-input--medium{
- width:340px!important;
- }
- }
- //硬件管理
- .hardware{
- .switch .el-switch__label {
- position: absolute;
- display: none;
- color: #fff !important;
- }
- .switch .el-switch__label--right {
- z-index: 1;
- }
- .switch .el-switch__label--right span{
- margin-left: 10px;
- }
- .switch .el-switch__label--left {
- z-index: 1;
- }
- .switch .el-switch__label--left span{
- margin-left: 24px;
- }
- .switch .el-switch__label.is-active {
- display: block;
- }
- .switch.el-switch .el-switch__core,
- .el-switch .el-switch__label {
- width: 60px !important;
- margin: 0;
- }
- }
- //供应商管理
- .supplier{
- .switch .el-switch__label {
- position: absolute;
- display: none;
- color: #fff !important;
- }
- .switch .el-switch__label--right {
- z-index: 1;
- }
- .switch .el-switch__label--right span{
- margin-left: 10px;
- }
- .switch .el-switch__label--left {
- z-index: 1;
- }
- .switch .el-switch__label--left span{
- margin-left: 24px;
- }
- .switch .el-switch__label.is-active {
- display: block;
- }
- .switch.el-switch .el-switch__core,
- .el-switch .el-switch__label {
- width: 60px !important;
- margin: 0;
- }
- }
- //学生卡信息审核
- .pending .el-drawer__open .el-drawer.rtl{
- border-bottom-left-radius: 10px;
- border-top-left-radius: 10px;
- }
- .pending-drawer-max-box{
- height:100%;
- display: flex;
- flex-direction: column;
- .pending-drawer-title{
- display:flex;
- border-bottom:1px solid #E0E0E0;
- p{
- flex:1;
- line-height:62px;
- font-size:18px;
- padding-left:20px;
- color:$color_one;
- margin:0;
- }
- i{
- display:block;
- font-size:20px;
- height:20px;
- width:20px;
- line-height:20px;
- cursor:pointer;
- margin:22px 22px 0 0;
- }
- }
- .pending-drawer-content{
- flex:1;
- .pending-drawer-content-img{
- display: flex;
- p{
- width:100px;
- margin:16px 0 0 26px;
- line-height:35px;
- text-align:center;
- font-size:16px;
- color:$color_33;
- }
- img{
- margin:16px 0 0 0;
- width:400px;
- height:200px;
- }
- }
- .pending-drawer-content-img-box{
- padding:24px 20px 0;
- .left-span{
- display: inline-block;
- width:100px;
- margin:0;
- font-size:16px;
- line-height:24px;
- color:$color_99;
- text-align: left;
- }
- .el-input--small{
- display: inline-block;
- width:405px;
- }
- }
- }
- .pending-bottom-button-box{
- display:flex;
- border-top:1px solid #E0E0E0;
- padding-top:12px;
- padding-bottom:17px;
- p{
- width: 100px;
- height: 40px;
- line-height:40px;
- text-align: center;
- border-radius: 4px;
- font-size:16px;
- margin:0;
- cursor:pointer;
- }
- p:nth-child(1){
- flex:1;
- }
- p:nth-child(2){
- background: $back_one;
- color:$color_ff;
- margin-right:16px;
- }
- }
- }
- //配置违规规则
- .configuration-dialog .el-input--medium{
- width:340px!important;
- }
- .configuration .el-drawer__open .el-drawer.rtl{
- border-bottom-left-radius: 10px;
- border-top-left-radius: 10px;
- }
- .configuration-drawer-max-box{
- height:100%;
- display: flex;
- flex-direction: column;
- .configuration-drawer-title{
- display:flex;
- border-bottom:1px solid #E0E0E0;
- p{
- flex:1;
- line-height:62px;
- font-size:18px;
- padding-left:20px;
- color:$color_one;
- margin:0;
- }
- i{
- display:block;
- font-size:20px;
- height:20px;
- width:20px;
- line-height:20px;
- cursor:pointer;
- margin:22px 22px 0 0;
- }
- }
- .configuration-drawer-content{
- flex:1;
- padding-top:20px;
- .img-box{
- padding:0 20px;
- font-size:16px;
- color:#333;
- img{
- display: block;
- border-radius:10px;
- width:300px;
- height:180px;
- margin:0 auto;
- }
- }
- }
- .configuration-drawer-content-img-box{
- padding:24px 20px 0;
- .left-span{
- display: inline-block;
- width:100px;
- margin:0;
- font-size:16px;
- line-height:24px;
- color:$color_99;
- text-align: left;
- }
- .el-input--small{
- display: inline-block;
- width:300px;
- }
- }
- .configuration-bottom-button-box{
- display:flex;
- border-top:1px solid #E0E0E0;
- padding-top:12px;
- padding-bottom:17px;
- p{
- width: 100px;
- height: 40px;
- line-height:40px;
- text-align: center;
- border-radius: 4px;
- font-size:16px;
- margin:0;
- }
- p:nth-child(1){
- flex:1;
- }
- p:nth-child(2){
- background: $back_e0;
- color:$color_99;
- margin-right:16px;
- cursor:pointer;
- }
- p:nth-child(3){
- background: $back_one;
- color:$color_ff;
- cursor:pointer;
- margin-right:16px;
- }
- }
- }
- .configuration-drawer{
- .el-drawer.rtl{
- width:560px!important;
- }
- .el-form-item__label{
- width:110px!important;
- }
- .el-input--medium{
- width:400px!important;
- }
- .el-input--small{
- width:400px!important;
- }
- }
- .processed{
- .el-input--medium{
- width:370px!important;
- }
- }
- //收到随手拍
- .photonote-pending-drawer{
- .el-drawer.rtl{
- width:500px!important;
- }
- .el-form-item__label{
- width:110px!important;
- }
- .el-input--medium{
- width:400px!important;
- }
- .el-input--small{
- width:400px!important;
- }
- }
- .photonote-pending-drawer-drawer-max-box{
- height:100%;
- display: flex;
- flex-direction: column;
- .photonote-pending-drawer-drawer-title{
- display:flex;
- border-bottom:1px solid #E0E0E0;
- p{
- flex:1;
- line-height:62px;
- font-size:18px;
- padding-left:20px;
- color:$color_one;
- margin:0;
- }
- i{
- display:block;
- font-size:20px;
- height:20px;
- width:20px;
- line-height:20px;
- cursor:pointer;
- margin:22px 22px 0 0;
- }
- }
- .photonote-pending-drawer-drawer-content{
- flex:1;
- padding-top:20px;
- div{
- margin-bottom:20px;
- display:flex;
- p{
- font-size:16px;
- margin:0;
- }
- p:nth-child(1){
- color:$color_99;
- width:128px;
- line-height:30px;
- text-align:right;
- }
- p:nth-child(2){
- width:410px;
- color:$color_33;
- line-height:30px;
- text-align:left;
- }
- }
- img{
- width:300px;
- height:180px;
- display: block;
- margin:0 0 20px 120px;
- }
- .photonote-pending-drawer-drawer-content-img{
- display: block;
- }
- }
- .photonote-pending-drawer-bottom-button-box{
- display:flex;
- border-top:1px solid #E0E0E0;
- padding-top:12px;
- padding-bottom:17px;
- p{
- width: 100px;
- height: 40px;
- line-height:40px;
- text-align: center;
- border-radius: 4px;
- font-size:16px;
- margin:0;
- cursor:pointer;
- }
- p:nth-child(1){
- flex: 1;
- }
- p:nth-child(2){
- background: $back_e0;
- color:$color_99;
- margin-right:20px;
- }
- p:nth-child(3){
- background: $back_one;
- color:$color_ff;
- margin-right:20px;
- }
- }
- }
- //用户管理
- .user-page-admin{
- /*==========树结构开始==========*/
- .el-tree-node__expand-icon.expanded {
- -webkit-transform: rotate(0deg)!important;
- transform: rotate(0deg)!important;
- }
- //未展开
- .el-icon-caret-right:before {
- content:"\e6d9";
- color:#999;
- font-size: 12px;
- border: 1px solid #999;;
- border-radius: 2px;
- }
- //展开
- .el-tree-node__expand-icon.expanded.el-icon-caret-right:before{
- content:"\e6d8";
- color:#999;
- font-size: 12px;
- border: 1px solid #999;;
- border-radius: 2px;
- }
- .el-tree-node__expand-icon.is-leaf:before{
- color: transparent!important;
- border: none;
- cursor: default;
- }
- .el-tree .el-tree-node__label{
- font-size:16px;
- color:#333333;
- }
- .el-tree .el-tree-node__children .el-tree-node__label{
- font-size: 14px!important;
- }
- .el-tree .el-tree-node__children .el-tree-node__children .el-tree-node__label{
- color:#999999;
- font-size: 14px!important;
- }
- .el-tree-node__content{
- height:37px;
- }
- /*==========树结构结束==========*/
- }
- //布局管理
- .building{
- /*==========树结构开始==========*/
- .el-tree-node__expand-icon.expanded {
- -webkit-transform: rotate(0deg)!important;
- transform: rotate(0deg)!important;
- }
- //未展开
- .el-icon-caret-right:before {
- content:"\e6d9";
- color:#999;
- font-size: 12px;
- border: 1px solid #999;;
- border-radius: 2px;
- }
- //展开
- .el-tree-node__expand-icon.expanded.el-icon-caret-right:before{
- content:"\e6d8";
- color:#999;
- font-size: 12px;
- border: 1px solid #999;;
- border-radius: 2px;
- }
- .el-tree-node__expand-icon.is-leaf:before{
- color: transparent!important;
- border: none;
- cursor: default;
- }
- .el-tree .el-tree-node__label{
- font-size:16px;
- color:#333333;
- }
- .el-tree .el-tree-node__children .el-tree-node__label{
- font-size: 14px!important;
- }
- .el-tree .el-tree-node__children .el-tree-node__children .el-tree-node__label{
- color:#999999;
- font-size: 14px!important;
- }
- .el-tree-node__content{
- height:37px;
- }
- /*==========树结构结束==========*/
- }
- //学生管理
- .student {
- .el-input--small{
- width:180px!important;
- }
- .el-select{
- width:180px!important;
- }
- .pagination-container{
- margin: 0 !important;
- padding: 0!important;
- }
- /*==========树结构开始==========*/
- .el-tree-node__expand-icon.expanded {
- -webkit-transform: rotate(0deg)!important;
- transform: rotate(0deg)!important;
- }
- //未展开
- .el-icon-caret-right:before {
- content:"\e6d9";
- color:#999;
- font-size: 12px;
- border: 1px solid #999;;
- border-radius: 2px;
- }
- //展开
- .el-tree-node__expand-icon.expanded.el-icon-caret-right:before{
- content:"\e6d8";
- color:#999;
- font-size: 12px;
- border: 1px solid #999;;
- border-radius: 2px;
- }
- .el-tree-node__expand-icon.is-leaf:before{
- color: transparent!important;
- border: none;
- cursor: default;
- }
- .el-tree .el-tree-node__label{
- font-size:16px;
- color:#333333;
- }
- .el-tree .el-tree-node__children .el-tree-node__label{
- font-size: 14px!important;
- }
- .el-tree .el-tree-node__children .el-tree-node__children .el-tree-node__label{
- color:#999999;
- font-size: 14px!important;
- }
- .el-tree-node__content{
- height:37px;
- }
- /*==========树结构结束==========*/
- }
- .student-dialog{
- .el-input--medium{
- width:370px;
- }
- }
- .student-teacher-bottom-button-box{
- display:flex;
- border-top:1px solid #E0E0E0;
- padding-top:20px;
- p{
- width: 100px;
- height: 40px;
- line-height:40px;
- text-align: center;
- border-radius: 4px;
- font-size:16px;
- margin:0;
- }
- p:nth-child(1){
- flex:1;
- }
- p:nth-child(2){
- background: $back_e0;
- color:$color_99;
- margin-right:16px;
- cursor:pointer;
- }
- p:nth-child(3){
- background: $back_one;
- color:$color_ff;
- margin-right:16px;
- cursor:pointer;
- }
- }
- //教职工管理
- .teacher {
- .el-input--small{
- width:150px!important;
- }
- .el-select{
- //width:150px!important;
- }
- .table-for-max-box{
- .el-select{
- width:210px!important;
- }
- }
- .pagination-container{
- margin: 0 !important;
- padding: 0!important;
- }
- .colorA{
- border:2px solid $lv1Danger;
- color:$lv1Danger;
- }
- .colorB{
- border:2px solid $lv2Danger;
- color:$lv2Danger;
- }
- .colorC{
- border:2px solid $lv3Danger;
- color:$lv3Danger;
- }
- .colorD{
- border:2px solid $lv4Danger;
- color:$lv4Danger;
- }
- /*==========树结构开始==========*/
- .el-tree-node__expand-icon.expanded {
- -webkit-transform: rotate(0deg)!important;
- transform: rotate(0deg)!important;
- }
- //未展开
- .el-icon-caret-right:before {
- content:"\e6d9";
- color:#999;
- font-size: 12px;
- border: 1px solid #999;;
- border-radius: 2px;
- }
- //展开
- .el-tree-node__expand-icon.expanded.el-icon-caret-right:before{
- content:"\e6d8";
- color:#999;
- font-size: 12px;
- border: 1px solid #999;;
- border-radius: 2px;
- }
- .el-tree-node__expand-icon.is-leaf:before{
- color: transparent!important;
- border: none;
- cursor: default;
- }
- .el-tree .el-tree-node__label{
- font-size:14px;
- color:#333333;
- }
- .el-tree .el-tree-node__children .el-tree-node__label{
- font-size: 14px!important;
- }
- .el-tree .el-tree-node__children .el-tree-node__children .el-tree-node__label{
- color:#333333;
- font-size: 14px!important;
- }
- .el-tree-node__content{
- height:37px;
- }
- /*==========树结构结束==========*/
- }
- //实验室配置
- .subject{
- .el-form-item{
- margin-bottom:30px;
- }
- .form-box{
- .el-form-item__label{
- width:90px!important;
- }
- .el-input--small{
- width:200px!important;
- }
- }
- .colorA{
- border:2px solid $lv1Danger;
- color:$lv1Danger;
- }
- .colorB{
- border:2px solid $lv2Danger;
- color:$lv2Danger;
- }
- .colorC{
- border:2px solid $lv3Danger;
- color:$lv3Danger;
- }
- .colorD{
- border:2px solid $lv4Danger;
- color:$lv4Danger;
- }
- .colorE{
- border:2px solid $color_14AE10;
- color:$color_14AE10;
- }
- .el-dropdown{
- height:42px;
- }
- .switch .el-switch__label {
- position: absolute;
- display: none;
- color: #fff !important;
- }
- .switch .el-switch__label--right {
- z-index: 1;
- }
- .switch .el-switch__label--right span{
- margin-right: 9px;
- }
- .switch .el-switch__label--left {
- z-index: 1;
- }
- .switch .el-switch__label--left span{
- margin-left: 9px;
- }
- .switch .el-switch__label.is-active {
- display: block;
- }
- .switch.el-switch .el-switch__core,
- .el-switch .el-switch__label {
- width: 70px !important;
- height:30px!important;
- line-height:30px!important;
- -webkit-border-radius: 20px!important;
- -moz-border-radius: 20px!important;
- border-radius: 20px!important;
- margin: 0;
- position: absolute;
- top: 0;
- }
- .switch .el-switch__label--left span{
- margin-left:40px!important;
- }
- .switch .el-switch__label--right span{
- margin-left:16px!important;
- }
- .el-switch__core:after{
- height:24px!important;
- width:24px!important;
- top:2px!important;
- }
- .el-switch.is-checked .el-switch__core::after{
- margin-left: -25px!important;
- }
- .el-switch{
- margin:10px auto 0;
- display: block;
- width:70px!important;
- height:4px!important;
- }
- }
- .configuration-drawer-max-box-one{
- height:100%;
- display: flex;
- flex-direction: column;
- .configuration-drawer-title{
- display:flex;
- border-bottom:1px solid #E0E0E0;
- p{
- flex:1;
- line-height:62px;
- font-size:18px;
- padding-left:20px;
- color:$color_one;
- margin:0;
- }
- i{
- display:block;
- font-size:20px;
- height:20px;
- width:20px;
- line-height:20px;
- cursor:pointer;
- margin:22px 22px 0 0;
- }
- }
- .configuration-drawer-content::-webkit-scrollbar{
- width: 8px; /*高宽分别对应横竖滚动条的尺寸*/
- height: 8px;
- }
- .configuration-drawer-content::-webkit-scrollbar-thumb{
- border-radius: 5px;
- -webkit-box-shadow: inset 0 0 5px #999;
- background: #fff;
- }
- .configuration-drawer-content::-webkit-scrollbar-track{
- -webkit-box-shadow: inset 0 0 5px rgba(255,255,255,0);
- border-radius: 0;
- background: rgba(255,255,255,0);
- }
- .configuration-drawer-content{
- flex:1;
- padding-top:20px;
- overflow-y:scroll;
- .img-box{
- padding:0 20px;
- font-size:16px;
- color:#333;
- img{
- display: block;
- border-radius:10px;
- width:300px;
- height:180px;
- margin:0 auto;
- }
- }
- }
- .configuration-drawer-content-img-box{
- padding:24px 20px 0;
- .left-span{
- display: inline-block;
- width:100px;
- margin:0;
- font-size:16px;
- line-height:24px;
- color:$color_99;
- text-align: left;
- }
- .el-input--small{
- display: inline-block;
- width:300px;
- }
- }
- .configuration-bottom-button-box{
- display:flex;
- border-top:1px solid #E0E0E0;
- padding-top:12px;
- padding-bottom:17px;
- p{
- width: 100px;
- height: 40px;
- line-height:40px;
- text-align: center;
- border-radius: 4px;
- font-size:16px;
- margin:0;
- cursor:pointer;
- }
- p:nth-child(1){
- flex:1;
- }
- p:nth-child(2){
- background: $back_e0;
- color:$color_99;
- margin:0 16px 0 0;
- }
- p:nth-child(3){
- background: $back_one;
- color:$color_ff;
- margin:0 16px 0 0;
- }
- }
- }
- .configuration-drawer-one{
- .el-drawer.rtl{
- width:560px!important;
- }
- .el-form-item__label{
- width:110px!important;
- }
- .el-input--medium{
- width:400px!important;
- }
- .el-input--small{
- width:400px!important;
- }
- .el-select .el-tag__close.el-icon-close{
- background-color:rgba(255,255,255,0);
- }
- .el-select .el-tag__close.el-icon-close:hover{
- background-color:#999;
- }
- .el-upload{
- width:100px;
- height:100px;
- line-height:100px;
- border:1px solid #e0e0e0;
- border-radius:5px;
- overflow: hidden;
- img{
- width:98px;
- height:98px;
- border-radius:5px;
- }
- }
- }
- .pending-el-drawer{
- .el-drawer.rtl{
- width: 560px!important;
- }
- }
- .subject-drawer-box{
- .el-form-item__error{
- margin-left:100px;
- margin-top:4px;
- }
- .el-input--medium .el-input__inner{
- height:auto;
- min-height: 40px!important;
- }
- .el-drawer__open .el-drawer.rtl{
- width: auto!important;
- }
- }
- .subject-drawer{
- .el-drawer.rtl{
- width: 560px!important;
- }
- }
- .subject-drawer-max-box{
- height:100%;
- display: flex;
- flex-direction: column;
- .el-form-item__label{
- width:100px!important;
- }
- .el-form-item__content{
- margin-left:0!important;
- padding-right:20px!important;
- }
- .subject-drawer-content{
- flex:1;
- padding-top:20px;
- .map-box{
- border:1px solid #E0E0E0;
- position :relative;
- padding:4px;
- div{
- margin:0;
- width:60px;
- height:60px;
- //background:red;
- border:1px solid $lv1Danger;
- border-radius:6px;
- position:absolute;
- font-size:12px;
- color:$lv1Danger;
- text-align:center;
- line-height:15px;
- cursor:pointer;
- -webkit-touch-callout: none; /* iOS Safari */
- -webkit-user-select: none; /* Chrome/Safari/Opera */
- -khtml-user-select: none; /* Konqueror */
- -moz-user-select: none; /* Firefox */
- -ms-user-select: none; /* Internet Explorer/Edge */
- user-select: none; /* Non-prefixed version, currently not supported by any browser */
- i{
- margin:1px 0 0 40px;
- color: #999;
- display: block;
- width:15px;
- height:15px;
- font-size:15px;
- }
- }
- }
- }
- .subject-bottom-button-box{
- display:flex;
- border-top:1px solid #E0E0E0;
- padding-top:12px;
- padding-bottom:17px;
- p{
- width: 100px;
- height: 40px;
- line-height:40px;
- text-align: center;
- border-radius: 4px;
- font-size:16px;
- margin:0;
- }
- p:nth-child(1){
- flex:1;
- }
- p:nth-child(2){
- background: $back_e0;
- color:$color_99;
- margin-right:16px;
- cursor:pointer;
- }
- p:nth-child(3){
- background: $back_one;
- color:$color_ff;
- cursor:pointer;
- margin-right:16px;
- }
- }
- }
- //实验室安全信息牌
- .safety-card-type-max-box{
- .el-dialog__body{
- padding:0 20px 20px;
- }
- .safety-card-type-big-box{
- //height:460px;
- padding-top:4px;
- *{
- padding:0;
- margin:0;
- }
- .top-title-box{
- height:51px;
- display: flex;
- .for-warn-lv-box{
- //width:110px;
- height:35px;
- border-radius:4px;
- margin:7px 8px 7px 0;
- display: flex;
- img{
- display: block;
- width:22px;
- height:23px;
- margin:6px 1px 0 4px;
- }
- div{
- flex:1;
- p{
- margin:0;
- font-size:12px;
- line-height:14px;
- text-align: center;
- padding:0 4px;
- }
- p:nth-child(1){
- margin-top:3px;
- }
- }
- }
- .right-name-p{
- font-weight:700;
- line-height:51px;
- font-size:18px;
- color:#333;
- flex:1;
- }
- .colorA{
- border:1px solid $lv1Danger;
- color:$lv1Danger;
- }
- .colorB{
- border:1px solid $lv2Danger;
- color:$lv2Danger;
- }
- .colorC{
- border:1px solid $lv3Danger;
- color:$lv3Danger;
- }
- .colorD{
- border:1px solid $lv4Danger;
- color:$lv4Danger;
- }
- .colorE{
- border:1px solid $color_14AE10;
- color:$color_14AE10;
- }
- }
- .address-max-box{
- display: flex;
- div{
- //flex:1;
- display: flex;
- p{
- line-height:30px;
- font-size:14px;
- }
- .name-p{
- font-weight:700;
- color:#333;
- }
- .text-p{
- color:#999;
- }
- }
- }
- .position-max-box{
- display: flex;
- .position-min-box{
- margin-top:10px;
- width:420px;
- .left-p{
- font-weight:700;
- width:98px;
- line-height:24px;
- font-size:14px;
- color:#333;
- }
- .right-box{
- width:317px;
- margin-left:10px;
- .for-box{
- .for-p{
- line-height:24px;
- font-size:14px;
- color:#999;
- }
- }
- }
- }
- }
- .inline-block-max-box{
- display: flex;
- .left-p{
- width:72px;
- font-weight:700;
- line-height:44px;
- font-size:14px;
- color:#333;
- }
- .right-box{
- flex:1;
- display: flex;
- .for-box{
- .for-p{
- line-height:44px;
- font-size:14px;
- color:#999;
- }
- }
- }
- }
- .img-max-box{
- display: flex;
- .left-p{
- font-weight:700;
- width:98px;
- line-height:24px;
- font-size:14px;
- color:#333;
- }
- .right-box{
- flex:1;
- margin-right: 110px;
- img{
- margin-top:5px;
- margin-right:10px;
- }
- }
- }
- .code-img{
- position: absolute;
- right:15px;
- bottom:15px;
- height:120px;
- width:120px;
- }
- }
- }
- //风险预案编辑
- .addPlan{
- .plan-info-box{
- .el-input--medium{
- width:350px!important;
- }
- .el-input--small{
- width:350px!important;
- }
- .for-sensor-input{
- .el-input--small{
- width:200px!important;
- }
- }
- }
- }
- //字典管理
- .dict{
- .table-box{
- .switch .el-switch__label {
- position: absolute;
- display: none;
- color: #fff !important;
- }
- .switch .el-switch__label--right {
- z-index: 1;
- }
- .switch .el-switch__label--right span{
- margin-left:10px;
- }
- .switch .el-switch__label--left {
- z-index: 1;
- }
- .switch .el-switch__label--left span{
- margin-left: 24px;
- }
- .switch .el-switch__label.is-active {
- display: block;
- }
- .switch.el-switch .el-switch__core,
- .el-switch .el-switch__label {
- width: 50px !important;
- margin: 0;
- }
- }
- }
- //组织架构
- .dept{
- .cell{
- display: flex;
- .el-table__expand-icon{
- margin-top:10px;
- }
- .scope-img{
- height:40px;
- width:40px;
- border-radius:50%;
- }
- .scope-name{
- line-height:40px;
- margin:0 0 0 10px;
- }
- }
- }
- //角色管理
- .role{
- .table-box{
- .switch .el-switch__label {
- position: absolute;
- display: none;
- color: #fff !important;
- }
- .switch .el-switch__label--right {
- z-index: 1;
- }
- .switch .el-switch__label--right span{
- margin-left: 10px;
- }
- .switch .el-switch__label--left {
- z-index: 1;
- }
- .switch .el-switch__label--left span{
- margin-left: 24px;
- }
- .switch .el-switch__label.is-active {
- display: block;
- }
- .switch.el-switch .el-switch__core,
- .el-switch .el-switch__label {
- width: 50px !important;
- margin: 0;
- }
- }
- }
- //分配用户
- .role-auth-user{
- .form-box{
- .el-input--medium{
- width:150px!important;
- }
- .el-input--small{
- width:150px!important;
- }
- }
- }
- //安全培训
- .drawer-form-box{
- padding:20px;
- .avatar-uploader{
- i{
- display: block;
- height:80px;
- width:80px;
- text-align:center;
- line-height:80px;
- border:1px solid #999;
- border-radius:10px;
- }
- img{
- display: block;
- height:80px;
- width:80px;
- border-radius:10px;
- }
- }
- }
- //安全准入办理(弹窗)
- .approval_handle-drawer{
- .el-drawer.rtl{
- width:490px!important;
- }
- .el-drawer__body{
- display: flex;
- flex-direction: column;
- }
- .el-form-item__label{
- width:80px!important;
- }
- .el-input--medium{
- width:356px!important;
- }
- .el-input--small{
- width:356px!important;
- }
- .approval_handle-drawer-form-box{
- flex:1;
- padding:20px;
- font-size:14px;
- p{
- margin:0;
- }
- .bottom-button-box{
- display: flex;
- .null-p{
- flex:1;
- }
- }
- .upload-box{
- margin:20px;
- p{
- margin-bottom:20px;
- color:#606266;
- }
- i{
- width:300px;
- height:150px;
- display: block;
- line-height:150px;
- text-align: center;
- border: 1px solid #E0E0E0;;
- border-radius:10px;
- margin-left:60px;
- }
- img{
- width:300px;
- height:150px;
- display: block;
- line-height:150px;
- border-radius:10px;
- margin-left:60px;
- }
- }
- }
- .bottom-button-box{
- display:flex;
- border-top:1px solid #E0E0E0;
- padding-top:12px;
- padding-bottom:17px;
- .null-p{
- flex:1;
- }
- }
- }
- //答题
- .exam_start,.exam_info{
- .el-radio__input.is-checked .el-radio__inner{
- border-color: $color_one;
- background: $back_one;
- }
- .el-radio__input.is-checked + .el-radio__label{
- color:$color_one;
- }
- .el-radio__label{
- font-size: 16px!important;
- }
- .el-radio{
- line-height:40px;
- display: block;
- height:40px;
- }
- .el-checkbox__input.is-checked .el-checkbox__inner{
- border-color: $color_one;
- background: $back_one;
- }
- .el-checkbox__input.is-checked + .el-checkbox__label{
- color:$color_one;
- }
- .el-checkbox{
- line-height:40px;
- display: block;
- height:40px;
- }
- .el-checkbox__label{
- font-size: 16px!important;
- }
- }
- //管理端工作台
- .manageHome{
- .switch .el-switch__label {
- position: absolute;
- display: none;
- color: #fff !important;
- }
- .switch .el-switch__label--right {
- z-index: 1;
- }
- .switch .el-switch__label--right span{
- margin-right: 9px;
- }
- .switch .el-switch__label--left {
- z-index: 1;
- }
- .switch .el-switch__label--left span{
- margin-left: 9px;
- }
- .switch .el-switch__label.is-active {
- display: block;
- }
- .switch.el-switch .el-switch__core,
- .el-switch .el-switch__label {
- width: 70px !important;
- height:30px!important;
- line-height:30px!important;
- -webkit-border-radius: 20px!important;
- -moz-border-radius: 20px!important;
- border-radius: 20px!important;
- margin: 0;
- position: absolute;
- top: 0;
- }
- .switch .el-switch__label--left span{
- margin-left:40px!important;
- }
- .switch .el-switch__label--right span{
- margin-left:16px!important;
- }
- .el-switch__core:after{
- height:24px!important;
- width:24px!important;
- top:2px!important;
- }
- .el-switch.is-checked .el-switch__core::after{
- margin-left: -25px!important;
- }
- .el-switch{
- margin:10px auto 0;
- display: block;
- width:70px!important;
- height:4px!important;
- }
- .colorA{
- border:2px solid $lv1Danger;
- color:$lv1Danger;
- }
- .colorB{
- border:2px solid $lv2Danger;
- color:$lv2Danger;
- }
- .colorC{
- border:2px solid $lv3Danger;
- color:$lv3Danger;
- }
- .colorD{
- border:2px solid $lv4Danger;
- color:$lv4Danger;
- }
- }
- //风险统计
- .plan_log{
- .el-table__header-wrapper{
- height:50px;
- }
- .el-table--medium th, .el-table--medium td{
- padding:13px 0;
- }
- .el-table .cell{
- font-size:14px;
- }
- .el-button-group{
- position: absolute;
- left:40px;
- top:0;
- }
- }
- //新增危险源
- .addLaboratory{
- .el-input--small{
- width:400px;
- }
- }
- .videoSurveillance-drawer{
- height:100%;
- display: flex;
- flex-direction: column;
- .el-drawer__open .el-drawer.rtl{
- width: auto!important;
- }
- .el-form-item__label{
- width:100px!important;
- }
- .el-input--small{
- width:200px!important;
- }
- .el-select > .el-input{
- width:200px!important;
- }
- .el-input--medium .el-input__inner{
- line-height:40px;
- height:40px;
- }
- .videoSurveillance-drawer-content{
- min-width: 350px;
- }
- .map-box{
- border:1px solid #E0E0E0;
- margin-left:20px;
- position :relative;
- padding:4px;
- div{
- z-index:10;
- margin:0;
- width:60px;
- height:60px;
- line-height:16px;
- padding-top:10px;
- word-wrap:break-word;
- //background:red;
- border:1px solid $lv1Danger;
- border-radius:6px;
- position:absolute;
- font-size:12px;
- color:$lv1Danger;
- text-align:center;
- cursor:pointer;
- -webkit-touch-callout: none; /* iOS Safari */
- -webkit-user-select: none; /* Chrome/Safari/Opera */
- -khtml-user-select: none; /* Konqueror */
- -moz-user-select: none; /* Firefox */
- -ms-user-select: none; /* Internet Explorer/Edge */
- user-select: none; /* Non-prefixed version, currently not supported by any browser */
- }
- .map-p{
- z-index:1;
- margin:0;
- width:60px;
- height:60px;
- line-height:16px;
- padding-top:10px;
- word-wrap:break-word;
- //background:red;
- border:2px solid $lv3Danger;
- border-radius:6px;
- position:absolute;
- font-size:12px;
- color:$lv3Danger;
- text-align:center;
- cursor:pointer;
- -webkit-touch-callout: none; /* iOS Safari */
- -webkit-user-select: none; /* Chrome/Safari/Opera */
- -khtml-user-select: none; /* Konqueror */
- -moz-user-select: none; /* Firefox */
- -ms-user-select: none; /* Internet Explorer/Edge */
- user-select: none; /* Non-prefixed version, currently not supported by any browser */
- }
- }
- .videoSurveillance-drawer-max-box{
- height:100%;
- display: flex;
- flex-direction: column;
- .videoSurveillance-drawer-content{
- padding:20px;
- flex: 1;
- }
- .videoSurveillance-bottom-button-box{
- display:flex;
- border-top:1px solid #E0E0E0;
- padding-top:12px;
- padding-bottom:17px;
- p{
- width: 100px;
- height: 40px;
- line-height:40px;
- text-align: center;
- border-radius: 4px;
- font-size:16px;
- margin:0;
- }
- p:nth-child(1){
- flex:1;
- }
- p:nth-child(2){
- background: $back_e0;
- color:$color_99;
- margin-right:16px;
- cursor:pointer;
- }
- p:nth-child(3){
- background: $back_one;
- color:$color_ff;
- margin-right:16px;
- cursor:pointer;
- }
- }
- }
- }
- //工作台侧边栏样式
- .manageHome-drawer-box{
- height:100%;
- display: flex;
- flex-direction: column;
- .manageHome-drawer-title{
- display:flex;
- border-bottom:1px solid #E0E0E0;
- p{
- flex:1;
- line-height:62px;
- font-size:18px;
- padding-left:20px;
- color:$color_one;
- margin:0;
- }
- i{
- display:block;
- font-size:20px;
- height:20px;
- width:20px;
- line-height:20px;
- cursor:pointer;
- margin:22px 22px 0 0;
- }
- }
- .manageHome-drawer-content{
- flex:1;
- padding:20px;
- .manageHome-drawer-content-text{
- display: flex;
- margin-bottom:24px;
- p{
- margin:0;
- font-size:16px;
- line-height:24px;
- }
- p:nth-child(1){
- width: 100px;
- color:$color_99;
- text-align: right;
- }
- p:nth-child(2){
- flex:1;
- color:$color_33;
- }
- img{
- width:300px;
- height:180px;
- }
- }
- .manageHome-drawer-content-img-box{
- margin-bottom:24px;
- p{
- margin:0;
- font-size:16px;
- line-height:24px;
- }
- p:nth-child(1){
- color:$color_99;
- text-align: left;
- }
- img{
- width:300px;
- height:180px;
- margin-top:10px;
- margin-left:100px;
- }
- .left-span{
- display: inline-block;
- width:100px;
- margin:0;
- font-size:16px;
- line-height:24px;
- color:$color_99;
- text-align: left;
- }
- .el-input--small{
- display: inline-block;
- width:300px;
- }
- }
- }
- .manageHome-drawer-button{
- display:flex;
- border-top:1px solid #E0E0E0;
- padding-top:12px;
- padding-bottom:17px;
- p{
- width: 100px;
- height: 40px;
- line-height:40px;
- text-align: center;
- border-radius: 4px;
- font-size:16px;
- margin:0;
- cursor:pointer;
- }
- p:nth-child(1){
- flex:1;
- }
- .left-button{
- background: $back_e0;
- color:$color_99;
- margin-right:20px;
- }
- .right-button{
- background: $back_one;
- color:$color_ff;
- margin-right:20px;
- }
- }
- }
- //异常设备
- .abnormal-dialog{
- display: flex;
- margin-bottom:30px;
- p{
- margin:0;
- font-size:16px;
- flex:1;
- color:$color_99;
- span{
- color:$color_33;
- }
- }
- }
- //证书管理
- .certificate{
- }
- .certificate-avatar-uploader{
- i{
- width:80px;
- height:80px;
- line-height:80px;
- text-align: center;
- border:1px solid #e0e0e0;
- border-radius:4px;
- }
- img{
- width:240px;
- height:240px;
- }
- }
- /*弹窗按钮*/
- .el-message-box{
- .el-message-box__header{
- .el-message-box__title{
- text-align: center;
- }
- .el-message-box__headerbtn{
- display: none;
- }
- }
- .el-message-box__content{
- .el-message-box__status.el-icon-warning{
- display: none;
- }
- .el-message-box__message{
- padding:0 12px;
- text-align: center;
- }
- }
- .el-message-box__btns{
- text-align: center;
- .el-button--primary:hover, .el-button--primary:focus{
- background: #0045af;
- border-color:#0045af;
- }
- }
- }
- /*安全分级*/
- .app-container-el-dialog{
- .el-form-item{
- margin-bottom:0;
- }
- .el-select > .el-input{
- width:340px;
- }
- textarea::-webkit-scrollbar{
- width: 12px; /*高宽分别对应横竖滚动条的尺寸*/
- height: 12px;
- }
- textarea::-webkit-scrollbar-thumb{
- border-radius: 5px;
- -webkit-box-shadow: inset 0 0 5px #999;
- background: #fff;
- }
- textarea::-webkit-scrollbar-track{
- -webkit-box-shadow: inset 0 0 5px rgba(255,255,255,0);
- border-radius: 0;
- background: rgba(255,255,255,0);
- }
- }
- //待审核按钮
- .configuration-bottom-button-box-button-color{
- color:$color_ff!important;
- background: $back_one !important;
- }
- .floor-max-box{
- .position-max-box{
- .top-name-box{
- .colorA{
- background:$lv1Danger;
- }
- .colorB{
- background:$lv2Danger;
- }
- .colorC{
- background:$lv3Danger;
- }
- .colorD{
- background:$lv4Danger;
- }
- .colorE{
- background:$color_14AE10;
- }
- }
- }
- }
- //实验室安全制度
- .safe-book-el-dialog{
- .el-select{
- width:418px;
- }
- .pdf-max-box{
- height:400px;
- overflow-y: scroll;
- }
- .pdf-max-box::-webkit-scrollbar{
- width: 6px; /*高宽分别对应横竖滚动条的尺寸*/
- height: 6px;
- }
- .pdf-max-box::-webkit-scrollbar-thumb{
- border-radius: 5px;
- -webkit-box-shadow: inset 0 0 5px #999;
- background: #fff;
- }
- .pdf-max-box::-webkit-scrollbar-track{
- -webkit-box-shadow: inset 0 0 5px rgba(255,255,255,0);
- border-radius: 0;
- background: rgba(255,255,255,0);
- }
- .top-button-box{
- width:100%;
- display: flex;
- .null-p{
- flex:1;
- }
- .turn{
- cursor:pointer;
- }
- }
- }
- //富文本滚动条样式
- .w-e-text::-webkit-scrollbar{
- width: 4px; /*高宽分别对应横竖滚动条的尺寸*/
- height: 4px;
- }
- .w-e-text::-webkit-scrollbar-thumb{
- border-radius: 5px;
- -webkit-box-shadow: inset 0 0 5px #999;
- background: #fff;
- }
- .w-e-text::-webkit-scrollbar-track{
- -webkit-box-shadow: inset 0 0 5px rgba(255,255,255,0);
- border-radius: 0;
- background: rgba(255,255,255,0);
- }
- //EUditor富文本编辑器
- .edui-default .edui-editor{
- overflow: hidden!important;
- }
- .edui-default .edui-editor-bottomContainer{
- display: none;
- }
- .up-button-box{
- width:100px;
- margin: 0 auto;
- }
- .up-text-box::-webkit-scrollbar{
- width: 6px; /*高宽分别对应横竖滚动条的尺寸*/
- height: 6px;
- }
- .up-text-box::-webkit-scrollbar-thumb{
- border-radius: 5px;
- -webkit-box-shadow: inset 0 0 5px #999;
- background: #fff;
- }
- .up-text-box::-webkit-scrollbar-track{
- -webkit-box-shadow: inset 0 0 5px rgba(255,255,255,0);
- border-radius: 0;
- background: rgba(255,255,255,0);
- }
- .el-course,.el-resources{
- /*==========树结构开始==========*/
- .el-tree-node__expand-icon.expanded {
- -webkit-transform: rotate(0deg)!important;
- transform: rotate(0deg)!important;
- }
- //未展开
- .el-icon-caret-right:before {
- content:"\e6d9";
- color:#999;
- font-size: 12px;
- border: 1px solid #999;;
- border-radius: 2px;
- }
- //展开
- .el-tree-node__expand-icon.expanded.el-icon-caret-right:before{
- content:"\e6d8";
- color:#999;
- font-size: 12px;
- border: 1px solid #999;;
- border-radius: 2px;
- }
- .el-tree-node__expand-icon.is-leaf:before{
- color: transparent!important;
- border: none;
- cursor: default;
- }
- .el-tree .el-tree-node__label{
- font-size:14px;
- color:#333333;
- }
- .el-tree .el-tree-node__children .el-tree-node__label{
- font-size: 14px!important;
- }
- .el-tree .el-tree-node__children .el-tree-node__children .el-tree-node__label{
- //color:#999999;
- font-size: 14px!important;
- }
- .el-tree-node__content{
- height:37px;
- }
- /*==========树结构结束==========*/
- }
- //公共滚动条尺寸
- .scrollbar-box{
- overflow-y: scroll;
- }
- .scrollbar-box::-webkit-scrollbar{
- width: 4px; /*高宽分别对应横竖滚动条的尺寸*/
- height: 4px;
- }
- .scrollbar-box::-webkit-scrollbar-thumb{
- border-radius: 5px;
- -webkit-box-shadow: inset 0 0 5px #999;
- background: #fff;
- }
- .scrollbar-box::-webkit-scrollbar-track{
- -webkit-box-shadow: inset 0 0 5px rgba(255,255,255,0);
- border-radius: 0;
- background: rgba(255,255,255,0);
- }
- /*学习资源*/
- .set-up-max-box{
- .el-input--medium .el-input__inner{
- height: 36px !important;
- }
- }
- //编辑右侧结构树
- .right-courseware-box{
- .el-table--enable-row-transition .el-table__body td{
- padding:10px 0!important;
- }
- /*==========树结构开始==========*/
- .el-tree-node__expand-icon.expanded {
- -webkit-transform: rotate(0deg)!important;
- transform: rotate(0deg)!important;
- }
- //未展开
- .el-icon-caret-right:before {
- content:"\e6d9";
- color:#999;
- font-size: 12px;
- border: 1px solid #999;;
- border-radius: 2px;
- }
- //展开
- .el-tree-node__expand-icon.expanded.el-icon-caret-right:before{
- content:"\e6d8";
- color:#999;
- font-size: 12px;
- border: 1px solid #999;;
- border-radius: 2px;
- }
- .el-tree-node__expand-icon.is-leaf:before{
- color: transparent!important;
- border: none;
- cursor: default;
- }
- .el-tree .el-tree-node__label{
- font-size:12px;
- color:#333333;
- }
- .el-tree .el-tree-node__children .el-tree-node__label{
- font-size: 12px!important;
- }
- .el-tree .el-tree-node__children .el-tree-node__children .el-tree-node__label{
- //color:#999999;
- font-size: 12px!important;
- }
- .el-tree-node__content{
- height:24px;
- }
- /*结构树结束*/
- .el-table__empty-text{
- background-size: 70%;
- background-position: 70px center;
- }
- }
- //播放按钮
- .center-info-components-max-box{
- .video-js .vjs-big-play-button{
- width:100px;
- height:45px;
- left:50%;
- top:50%;
- margin-left:-50px;
- margin-top:-22px;
- }
- }
- .el_resources_dialog{
- //上传描述
- .up-data-box-text{
- margin-bottom:20px;
- p{
- margin:0;
- padding:0;
- line-height:24px;
- font-size:12px;
- color:#999;
- text-align: center;
- }
- }
- }
- //手动添加题库
- .addExamPage{
- .el-input-number--medium .el-input-number__increase, .el-input-number--medium .el-input-number__decrease{
- height:38px!important;
- line-height:38px;
- }
- }
- .add-manual-dialog{
- .add-manual-dialog-list-box{
- display: flex;
- height:500px;
- .add-manual-dialog-list-box-left{
- flex:1;
- border:1px solid #dedede;
- margin-right:20px;
- display: flex;
- flex-direction: column;
- *{
- margin:0;
- }
- .add-manual-dialog-list-box-title{
- font-size:15px;
- color: #333;
- line-height:31px;
- padding:4px 10px;
- font-weight: 700;
- background-color: #f8f8f9;
- border-bottom:1px solid #dedede;
- }
- .add-manual-dialog-list-for-max-box{
- overflow-y: scroll;
- .add-manual-dialog-list-for-box{
- width:420px;
- margin:0 auto;
- display: flex;
- border-bottom:1px solid #dedede;
- p{
- width:386px;
- flex:1;
- color:#333;
- margin-left:10px;
- line-height:38px;
- font-size:14px;
- display:block;
- overflow:hidden;
- text-overflow:ellipsis;
- white-space:nowrap;
- }
- i{
- color:#999;
- margin:10px;
- font-size:18px;
- cursor:pointer;
- }
- }
- .add-manual-dialog-list-for-null{
- font-size:16px;
- line-height:100px;
- text-align: center;
- color:#dedede;
- }
- }
- }
- .add-manual-dialog-list-box-right{
- border:1px solid #dedede;
- height:497px;
- width:700px;
- display: flex;
- flex-direction: column;
- .el-table--medium th, .el-table--medium td{
- padding:4px 0;
- }
- .pagination-container{
- height:50px;
- margin:0;
- }
- }
- }
- }
- //违规设置
- .violation-site{
- .el-input--small{
- width:300px;
- }
- }
- //奖励分设置
- .rewardconfig{
- .el-input--small{
- width:400px;
- text-align: right;
- }
- }
- //负面清单管理
- .negative-list-records{
- .el-input--small{
- width:217px;
- }
- }
- //个人安全学习
- .safeLearning{
- .el-tree-node__label{
- width: 188px;
- display:block;
- overflow:hidden;
- text-overflow:ellipsis;
- white-space:nowrap;
- }
- }
- //个人学习记录
- .recordListPage{
- .el-tree-node__label{
- width: 188px;
- display:block;
- overflow:hidden;
- text-overflow:ellipsis;
- white-space:nowrap;
- }
- }
- //课件管理
- .el-resources{
- .el-tree-node__label{
- width: 188px;
- display:block;
- overflow:hidden;
- text-overflow:ellipsis;
- white-space:nowrap;
- }
- }
- //学习资源
- .el-course{
- .el-tree-node__label{
- width: 188px;
- display:block;
- overflow:hidden;
- text-overflow:ellipsis;
- white-space:nowrap;
- }
- }
- .el-check-box{
- .el-radio__input.is-disabled + span.el-radio__label{
- color:#333;
- }
- .el-radio__input.is-disabled.is-checked .el-radio__inner{
- background: #00b7ee;
- }
- }
- .edit-page{
- .el-resources-list{
- .el-table{
- height:90%;
- }
- }
- .center-content-box-two-bottom-left{
- .el-table--medium th, .el-table--medium td{
- padding:8px 0;
- }
- .el-table__empty-text{
- background:none;
- color:#999;
- }
- .el-table__header-wrapper{
- height:39px;
- }
- }
- .center-content-box-two-bottom-right{
- .el-table--medium th, .el-table--medium td{
- padding:8px 0;
- }
- .el-table__empty-text{
- background-size:200px;
- }
- .pagination-container{
- height:40px!important;
- }
- .el-pagination__total{
- margin-left:20px;
- }
- .el-pagination__jump{
- margin-right:20px;
- }
- .pagination-container{
- padding:4px 20px !important;
- }
- .el-table__header-wrapper{
- height:39px;
- }
- }
- }
- //录入检查
- .addCheckPage{
- .top-addCheckPage{
- .el-form-item__label{
- padding-bottom:0!important;
- }
- }
- }
- .el_resources_dialog{
- .up-button-box{
- width:660px;
- }
- .dialog-footer-edit{
- display: flex;
- .null-p{
- flex:1;
- }
- }
- }
- .checkRecord{
- .el-table__header-wrapper .el-checkbox{
- display:none
- }
- }
- //.checkRecordPageTableTwo{
- // .el-table__header-wrapper .el-checkbox{
- // display:block;
- // margin-left:4px;
- // }
- //}
- .checkRecordInfoPage,.CheckRecordInfo,.CheckRecordInfo{
- .el-icon-circle-close{
- color:red;
- }
- .zgStatusColor{
- .el-step__title{
- color:red;
- }
- }
- }
- //检查项列表
- .checkOption{
- .el-table .cell{
- display: flex;
- }
- }
- //疏散路线
- .emergencyEvacuation{
- .el-table__empty-text{
- background-size: 12%;
- }
- }
- //安全准入办理
- .approval_handle_addPage{
- .el-input-number__decrease{
- height:38px;
- line-height: 38px;
- }
- .el-input-number__increase{
- height:38px;
- line-height: 38px;
- }
- }
- //分级管控管理-实验室列表
- .gradeManage-subjectList{
- .pagination-container{
- margin:0;
- }
- }
- //分级管控管理-人员列表
- .gradeManage-userList{
- .pagination-container{
- margin:0;
- }
- }
- //大屏计划
- .addPage{
- .addPageFormBox{
- .button-max-box{
- .button-big-box{
- .button-p{
- flex:1;
- display: flex;
- .el-upload{
- flex: 1;
- }
- }
- }
- }
- }
- }
- //分级管控
- .gradeManage-addPage{
- .switch .el-switch__label {
- position: absolute;
- display: none;
- color: #fff !important;
- }
- .switch .el-switch__label--right {
- z-index: 1;
- }
- .switch .el-switch__label--right span{
- margin-left: 10px;
- }
- .switch .el-switch__label--left {
- z-index: 1;
- }
- .switch .el-switch__label--left span{
- margin-left: 24px;
- }
- .switch .el-switch__label.is-active {
- display: block;
- }
- .switch.el-switch .el-switch__core,
- .el-switch .el-switch__label {
- width: 60px !important;
- margin: 0;
- }
- }
|