*{
    padding: 0;
    margin: 0;
}
html,body{
    height: 100%;
    background-color: rgba(228, 232, 240, 0.8);
}
.wrapper {
    margin: auto;
    width: 100%;
    max-width: 1366px;
    min-width: 960px;
    height: 100%;
}

.header {
    position: relative;
    width: 100%;
    height: 50px;
    background-color: #FF5661;
    /* margin-bottom: px; */
    display: flex;
    align-items: center;
    color: #fff;

}

.header img {
    height: 25px;
    width: 40px;
    margin: 0 30px;
}

.header .right {
    position: absolute;
    right: 20px;

}

.header .right div {
    float: right;
    font-size: 14px;
    margin: 0 10px;
    cursor: pointer;
}

.nav {
    width: 100%;
    height: 55px;
    background-color: rgba(255, 255, 255, 0.4);
}

.nav span {
    margin-left: 20px;
}

.nav .crumb {
    height: 20px;
    font-size: 10px;
    line-height: 20px;
    opacity: .4;
}

.nav .edit {
    height: 35px;
    font-size: 16px;
    line-height: 35px;
    color: #FF7533;
    font-weight: bolder;
}

.content {
    margin: 10px;
    margin-bottom: 0;
    background-color: rgba(255, 255, 255, 0.8);
    height: calc(100% - 150px);
    /* height: 100%; */
    padding: 20px;
}
.content .addrole {
    width: 100%;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-bottom: 10px;
}
.content .addrole button{
    width: 65px;
    height: 30px;
    background-color: #FF7002;
    border: 1px solid #FF7002;
    margin: 0;
    padding: 0;
    outline: none;
    font-size: 10px;
    /* margin-right: 20px; */
    border-radius: 5px;
    color: #fff;
}
.thead {
    width: 100%;
    display: flex;
    border-bottom: 1px solid #ccc;
    border-bottom-color: rgba(205, 206, 207, 0.5);
    align-items: center;
}

.tbody .tr,.thead .tr{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 10px;
    font-weight: bolder;
  
}
.tbody .tr{
    height: 40px;
    border-bottom: 1px solid #ccc;
    border-bottom-color: rgba(205, 206, 207, 0.5);
}
.tr .td,.tr .th {
    flex:8;
}
.tr .edit {
    flex:1;
    cursor: pointer;
    color: #FF7002;
}
.thead .tr .edit {
    display: flex;
    justify-content: center;
    cursor: none;
    color: #000;
}
.content .table .thead{
    height: 45px;
    background-color: rgba(189, 188, 188,0.1);
}
.content .table .tbody {
    font-weight: lighter;
}

/* 蒙层样式 */
#mask {
    width: 100%;
    height: 100%;
    z-index: 2;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
}
/* 模态框的样式 */
#model {
    width: 600px;
    height: 300px;
    z-index: 2;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    background-color: rgba(245, 246, 248, 1);
}


/* 模态框内部表单的样式 */


#model form {
    position: relative;
    opacity: 0.6;
    width: 200px;
    margin: 0 auto;
    padding-top: 30px;
}

input[type=text]:focus,
select:focus {
    outline: 0px;
}

input,
select {
    border: none;
    height: 20px;
    /*很关键：将默认的select选择框样式清除*/
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    width: 95%;
    padding-left: 10px;

}

select {
    /*在选择框的最右侧中间显示小箭头图片*/
    background: url("../../image/setting-img/down.png") no-repeat scroll right center transparent;
    /*为下拉小箭头留出一点位置，避免被文字覆盖*/
    padding-right: 14px;
}

select::-ms-expand {
    display: none;
}
.getPwd1 {
    /* position: absolute; */
    /* left: 0; */
    margin: 20px 0;
    /* margin-left: -47px; */
    width: 260px;
    height: 24px;
    border-radius: 3px;
    border: 1px solid #ccc;
    border-color: rgba(153, 129, 129, 0.5);
}
.getPwd2 {
    /* position: absolute; */
    /*left: 0; */
    margin: 20px 0;
    /* margin-left: -47px; */
    width: 260px;
    height: 24px;
    border-radius: 3px;
    border: 1px solid #ccc;
    border-color: rgba(153, 129, 129, 0.5);
}
.getName {
    /* position: absolute; */
    /* left: 0; */
    margin: 20px 0;
    /* margin-left: -47px; */
    width: 260px;
    height: 24px;
    border-radius: 3px;
    border: 1px solid #ccc;
    border-color: rgba(153, 129, 129, 0.5);
}

.getRole {
    margin: 20px 0;
    /* margin-left: -39px; */
    width: 260px;
    height: 24px;
    border-radius: 3px;
    border: 1px solid #ccc;
    border-color: rgba(153, 129, 129, 0.5);

}

.getPwd1::before {
    content: '新密码 :';
    font-size: 12px;
    margin-left: -47px;
}
.getPwd2::before {
    content: '确认密码 :';
    font-size: 12px;
    margin-left: -60px;
}
.getName::before {
    content: '用户名 :';
    font-size: 12px;
    margin-left: -47px;
}

.getRole::before {
    content: '角 色 :';
    font-size: 12px;
    margin-left: -40px;

}

.operate button {
    height: 26px;
    width: 64px;
    border-radius: 3px;
    border: 1px solid #FF7002;
    margin: 0;
    padding: 0;
    outline: none;
    font-size: 10px;
    margin-right: 20px;
}


.operate .confirm {
    background-color: #FF7002;
    color: #fff;
}

.operate .cancel {
    background-color: #fff;
    color: #FF7002;
}
