.el-dialog__header{
    padding-top:5px !important;
    padding-bottom:3px !important;
  
    padding-right: 0px !important;
    padding-left: 0px !important;
    width:100%;
    background: rgb(243, 242, 241);
}
.el-dialog__title{
    padding-left:10px;
    font-size:14px !important;
    font-weight:bold !important;
}
.el-dialog__body{
    padding-top:10px  !important;
}




.form-table{
    border-collapse: collapse;
    margin: 0 auto;
    text-align: center;
    width: 100%;
}
        
.form-table td, .form-table th{
    border: 1px solid #cad9ea;
    color: #000000;
    height: 30px;
    line-height: 35px;
    padding: 3px;
    font-size: 13px;
    text-align:left;
}
.from-table-label{
    background-color: #f5f7fa;
    width: 10%;
    color: #000000;
    font-size:13px;
    text-align: center  !important;
}

.formtable{
  border-collapse: collapse;
  margin: 0 auto;
  text-align: center;
  width: 100%;
}
      
.form-table-td, .form-table-th{
  border: 1px solid #cad9ea;
  color: #666;
  height: 30px;
  line-height: 35px;
  padding: 3px;
  font-size: 12px;
  text-align:left;
}
.form-table-label{
  border: 1px solid #cad9ea;
  color: #000000;
  height: 30px;
  line-height: 35px;
  padding: 3px;
  text-align:left;
  background-color: #f5f7fa;
  width: 10%;
  font-size:12px;
  text-align: center  !important;
}


.is-disabled{
    color:#606266 !important;
}

.el-table__body tr.current-selected>td{
    background-color: #fcd3d3 !important;
    color: black;
  }
  .el-input__wrapper{
    padding:0px !important;
  }
  .el-input__inner{
    padding-left:3px !important;
  }
  .cell{
    padding-left:8px !important;
    padding-right:8px !important;

  }
  .el-tabs__content{height: 100%;}
  .el-tab-pane{height: 99%;}
  .el-descriptions-label{
    color:#909399 !important;
  }
  .el-descriptions-content{
    color:#909399 !important;
  }
  .el-descriptions-content-bold{
    font-weight: bold !important;
    font-size:18px;
  }
  .el-input.is-disabled .el-input__inner{

    -webkit-text-fill-color:#606266 !important;
  }

  .formInput{
    outline-style: none ;
    border: 1px solid #ccc; 
    border-radius: 3px;
    padding: 5px 5px;
    width: 80%;
 
    font-family: "Microsoft soft";
}
.formInput:focus{
  border-color: #66afe9;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6);
  box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6)
}




/* 登录界面专用样式 */
.login-container {
  width: 100vw;
  height: 100vh;

  background-image: url('/static/images/bg.png');
  background-size: 100% 100%;
  display: flex;
  align-items: center;
  justify-content: center;

}

.login-box {
  width: 96%;
  height: 94%;
  background-color: hsla(0, 0%, 100%, 0.85);
  border-radius: 10px;
  padding: 0 8% 0 50px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.login-left {
  width: 800px;
  color: #6E736FFF;
}
.title {
  font-size: 48px;
  font-weight: 400;
  letter-spacing: 0px;
  color: rgba(47, 57, 78, 1);
  text-align: left;
}


.login-form {
  width: 400px;
  height: 460px;
  padding: 10px 40px 35px 40px;
  border-radius: 10px;
  -webkit-box-shadow: 2px 3px 7px rgb(0 0 0 / 20%);
  box-shadow: 2px 3px 7px rgb(0 0 0 / 20%);
}
.login-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}
.login-icon {
  width: 60px;

}

.logo-text {
  font-weight: bold;
  font-size: 32px;
  padding-left: 25px;
  white-space: nowrap;
  color: #2d51e6;
}


.login-btn {
  margin-top: 20px;
  padding-bottom: 20px;
  display: flex;
  justify-content: space-between;
  width: 100%;
  white-space: nowrap;

  .el-button {
    width: 185px;
  }
}
/**登录界面样式 完毕**/