body {
    background: #FFF5EB;
    
}
.btn{
    background: #fbb03b;
  color: #fff;
  border-radius: 20px;
  padding: 5px 20px;
  font-size: 14px;
  font-weight: 700;
  border: 0;
}
.btn:hover,
.btn:active,
.btn:active:focus,
.btn:focus{
    background: #dbb03b;
    border: 0;
    color: #fff;
}
.rejest{
    font-size: 12px;
    color: #fbb03b;
}
.btn-warning{
background: #736357;
}
.btn-warning:hover,
.btn-warning:active,
.btn-warning:active:focus,
.btn-warning:focus{
    background: #636357;
    border: 0;
    color: #fff;
}
.self_btn{
    background:rgba(179,0,32,.8);
    margin-top: 20px;
    width: 200px;
}

.self_btn:hover,
.self_btn:active,
.self_btn:active:focus,
.self_btn:focus{
    margin-top: 20px;
    width: 200px;
    opacity:.8;
    background:rgba(179,0,32,.8);
}
.btn-danger {
    background-color: #d9534f;
    border-color: #d43f3a;
}
button:focus, .btn:focus{
    border: 0;
    outline:none !important;
}
button:active, .btn:focus{
    border: 0;
outline:none !important;
    }
    .form-group{
        display: flex;
        align-items: center;
        margin-top: 1rem;
    }
    .form-label{
        text-align: center;
        width: 160px;
        margin-bottom: 0;
    }
    .errmsg, .infomsg{
        display: flex;
        align-items: center;
        position: fixed;
        height: 40px;
       line-height: 40px;
       top: calc(50vh - 20px);
       left: calc(50vw - 100px);
       background: rgba(235, 98, 7, 0.3);
       z-index: 9999;
       color: red;
       padding: 0 10px;
       border-radius: 10px;
    }
    .errmsg i, .infomsg i{
        padding-right: 10px;
    }
    .infomsg{
        background: rgba(14, 13, 13, 0.623);
        color: #fff;
    }
.header{
width: 100vw;
height: 60px;
line-height: 60px;
display: flex;
flex-direction: row;
padding: 0 50px;
justify-content: space-between;
background: #BCA58F;
font-size: 24px;
font-weight: 700;
color: #fff;
}
.header-left{
  display: flex;
  align-items: center;
}
.header-left .login{
    margin-right: 20px;
}
.header-left .title{
    margin-left: 20px;
}
.ged{
    display: block;
    height: 30px;
    border-right: 3px solid #fff;
}
.container{
    width: 100vw !important;
    max-width: 100vw !important;
    margin: 0;
    padding: 0;
    height: 100vh;
}
.row{
  margin: 0;
}
.left-nav{
    height: calc(100vh - 60px);
    width: 260px;
    background: #736357;
}
.nav-list-cnt{
    display: flex;
color: #fff;
font-size: 25px;
font-weight: 700;
align-items: center;
justify-content: center;
height: 100px;
padding: 0 30px;
cursor: pointer;
    
}
.nav-list-cnt .nav-icon{
    width: 30px;
    height: 30px;
    margin-right:20px ;
}
.nav-list-cnt.active{
    background: #FBB03B;
}
.content{
    display: flex;
    width: 100vw;
}
.right-main{
    width: calc(100vw - 260px);
    height: calc(100vh - 60px);
    padding: 20px;
}
.main-head{
    width: 100%;
height: 60px;
display: flex;
justify-content: space-between;
}
.fabu{
    display: block;
color: #fff;
text-align: center;
font-weight: bold;
font-size: 20px;
width: 130px;
background: #fbb03b;
height: 40px;
line-height: 36px;
cursor: pointer;
border-radius: 15px;
}
.btns{
    display: inline-block;
    margin-right: 10px;
    font-size: 16px;
    padding: 6px 15px;
    border-radius: 15px;
    color: #fff;
    vertical-align: middle;
    line-height: 20px;
    cursor: pointer;
    height: 36px;
    box-sizing: border-box;

}
.btns.btn-edit{
    background: #fbb03b;
}
.btns.btn-del{
    background: #736357;
}
.table td, .table th {
    padding: .75rem;
    vertical-align: middle;
    border-top: 1px solid #dee2e6;
    text-align: center;
}
.col-form-label{
    width: 110px;
}

::-webkit-scrollbar {
    width: 2px;
    height: 2px;
    background-color: #fff;
  }
  
  /*定义滚动条轨道 内阴影+圆角*/
  ::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgb(233, 223, 217);
    border-radius: 10px;
    background-color: #fff;
  }
  
  /*定义滑块 内阴影+圆角*/
  ::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgb(230, 94, 10);
    background-color: #ddd;
  }
  .loading{
    width: 100vw;
    height: 100vh;
    position: fixed;
    background: #000;
    opacity: 0.7;
    z-index: 9999;
    top: 0;
    left: 0;
    text-align: center;
    color: #fff;
    font-size: 30px;
   
  }
  @-webkit-keyframes spin {
    from {
        -webkit-transform: rotate(0deg) scale( 1);
        
    }
    to {
        -webkit-transform: rotate(360deg) scale( 1.3);
       
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg) scale(1);
        
    }
    to {
        transform: rotate(360deg) scale( 1.3);
       
    }
}
  .loading i{
      text-align: center;
      line-height: 100vh;
      -webkit-animation: spin 2s linear infinite;
      animation: spin 2s linear infinite;
  }
  .pages{
    display: flex;
    justify-content: center;
    flex-direction: row;
    align-items: center;
    font-size: 16px;
    font-weight: bold;
  }
  .pages div{
      margin: 0 20px;
  }
  .mian-cnt .table-data{
      height: calc(100vh - 200px);
      overflow:auto;
      scrollbar-width: thin;
  }
  .modal-header{
      background: #d6c3ae;
    padding: 0.6rem;

  }
.modal-title{
    width: 100%;
    text-align: center;
}
.form-control{
    border: 1px solid #d6c3ae;
}
  
.form-control:focus {
    color: #495057;
    background-color: #fff;
    border-color: #d6c3ae;
    outline: 0;
    box-shadow: 0 0 0 0.2rem #d6c3ae;
  }
.img-select{
    width: 122px;
    height: 102px;
    background-image: url(../images/addimg.png);
    text-align: center;
    padding-top: 55px;
}
.img-load img {
    height: 102px;
    width: auto;
    padding: 5px 10px;
    border: 2px dashed #ddd;
    margin: 0 20px;
}
.mian-cnt{
    position: relative;
}
.data-empty{
    position: absolute;
    top: 73px;
    width: 100%;
    text-align: center;
    font-size: 18px;
}
