/*添加文件选择框*/
.addFile{
    border: 1px solid rgb(2,112,254);
    border-radius: 10px;
    color: rgb(2,112,254);
    height: 30px;
    width: 100px; float: right;
    text-align: center;
    line-height: 30px;
}
/*文件上传后页面显示区域父容器*/
.fileParent{
    height: 150px;
    width: 100%;
    padding:50px 10px 10px 50px;
    box-sizing: border-box;
    overflow-y: scroll;
}
/*顶部返回首页和帮助*/
.share-btn1{
    width: 20px;
    height: 20px;
    margin: 5px;
}
/*父容器内单独显示的各个子容器样式*/
.fileSub{
    height: 30px;
    width: 100%;
    /*justify-content:center;*/
    /*padding:10px;*/
    display: flex;
}
/*加载中css*/
.pop {
    position: absolute;
    top: 55%; left: 50%;
    margin-left: -25px;
    margin-top: -25px;
    display: none;
}
/*阴影*/
.yiny {
    display: none;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    position: fixed;
    _position: absolute;
    pointer-events: auto;
}


.password-wrapper {
    display: flex;
    align-items: center;
    /*height: 40px;*/
    /*width: 350px;*/
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 0 5px;
    /*margin-bottom: 10px;*/
}

.password-input {
    flex: 1;
    padding: 10px;
    border: none;
    outline: none;
    border-radius: 5px;
}

.eye-icon {
    cursor: pointer;
}


/*提示选择框*/

.mask-dialog{
    width:100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0,0,0,0.3);
    z-index: 99999;
    display: none;
    position: fixed;
    _position: absolute;
    pointer-events: auto;
}

.dialog-box{
    width: 80%;
    max-width: 300px;
    height: 190px;
    background-color: #ffffff;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 10%;
    margin: auto;
    border-radius: 10px;
    overflow: hidden;
}
.dialog-box .dialog-btn{
    width: 100%;
    display: flex;
    display: -webkit-box;
    justify-content: space-between;
    text-align: center;
    border-top: 1px solid #e5e5e5;
    position: absolute;
    bottom: 0;
}
.dialog-box .dialog-btn .btnn{
    flex: 2;
    -webkit-flex: 2;
    -webkit-box-flex: 2;
    width: 1px;
    height: 42px;
    line-height: 42px;
    position: relative;
}
.dialog-box .dialog-btn .btn-left{
    border-right: 1px solid #e5e5e5;
    color: #4287FF;
}
.dialog-box .dialog-btn .btn-right{
    color: #F5445C;
}

/*闪动效果*/
@keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0; }
    100% { opacity: 1; }
}

.blink {
    animation: blink 1s infinite;
}