
/*----------新增账号彈出框---------*/
/*框架*/
.pop{
    z-index: 10000;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: #0000000f;
    display: none;
    align-items: center;
    justify-content: center;
}
.pop-main{
    background-color: #ffffff;
    color: white;
    box-shadow: 0 1px 20px 0 #00000008;
    position: absolute;
    width: 500px;
    padding: 50px;
    border-radius: 8px;
}
/*头部标题*/
.pop-head{
    margin-bottom: 50px;
}
.pop-head>h2{
    font-size: 24px;
    letter-spacing: 0;
    text-align: center;
    color: #212121;
    font-weight: normal;
    line-height: 1.2;
}
.pop-head>p{
    text-align: center;
    color: #757575;
    font-size: 11px;
    font-weight: normal;
    margin-top: 10px;
}
.pop-head>h2>p>span{
    font-size: 8px;
    color: #de3737;
    margin: 0 5px;
    font-weight: bold;
}
/*取消按钮*/
.cancel_but{
    border-radius: 20px;
    border: 1px solid #c7c7c7;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    background-color: #ffc800;
    cursor: pointer;
    position: absolute;
    right: 5px;
    top: 5px;
}
.cancel_but>span{}
.cancel_but>span:before{
    line-height: normal;
    font-size: 19px;
    color: #a06305;
    font-weight: bold;
}
/*内容*/
.pop-content {
}

.pop-content > ul {
}

.pop-content > ul > li {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    margin-bottom: 20px;
    flex-direction: row;
}

.pop-content > ul > li > span {
    width: 60px;
    display: block;
    color: #808080;
    padding: 8px;
    font-size: 15px;
}
.pop-content > ul > li > div{
    width: calc(100% - 60px);
}
.pop-content > ul > li > div>input, .pop-content > ul > li > div>input {
    text-indent: 6px;
    color: #3d3d3e;
    width: calc(100% - 20px);
    background-color: #F5F5F5;
    padding: 10px;
    border: 1px solid #E0E0E0;
    font-size: 14px;
    border-radius: 5px;
}
.pop-content > ul > li > div>p {
    color: #e0a800;
}
/*.pop-content > ul > li > select {
    padding: 4px;
    font-size: 12px;
    line-height: 1.42857143;
    color: #555555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    width: calc(100% - 95px);
}*/

.pop_foot{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
}
.pop_foot>div{
}
.pop_foot>div>button{
    box-shadow: 0 1px 3px 0 rgba(33, 150, 243, 0.21);
    background-color: #ffdd00;
    border: unset;
    border-radius: 28px;
    line-height: 38px;
    color: #a06305;
    font-size: 18px;
    width: 150px;
}
.reset_add_but{
}