/*共通*/
section{
    border: double 3px #7f7f7f;
}
.module-title{
    font-size: 18px;
    font-weight: bold;
}
.v-modal{
    display: none;
}
#MESSAGE_DRAWER .el-drawer__header{
    position: relative;
    margin: 0;
    padding: 0;
}
#MESSAGE_DRAWER .el-drawer__header span{
    display: none;
}
#MESSAGE_DRAWER .el-drawer__header button{
    position: absolute;
    top: 4px;
    right: 0;
}
#MESSAGE_DRAWER .el-dialog__close{
    color: #FFFFFF;
}
#MESSAGE_DRAWER .el-drawer{
    color: #FFFFFF;
    background-color: rgb(129, 130, 133);
}
#MESSAGE_DRAWER .el-drawer__body{
    padding: 10px 32px 10px 10px;
    word-break: break-word;
}
#MESSAGE_DRAWER .el-drawer__wrapper{
    width: 100%;
    position: fixed;
    bottom: 0;
    top: auto;
    left: auto;
    right: auto;
    overflow: visible;
}

/*清除内容*/
.content-clear{
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.content-clear svg{
    width: 32px;
    height: 32px;
    border:dashed 2px #555555;
    cursor: pointer;
    transition: all 0.15s;
}
.content-clear svg:hover{
    background-color: #e0e0e0;
}
.content-clear svg:active{
    background-color: #c4c4c4;
}
.content-clear h1{
    color: #333333;
    font-size: 20px;
    font-weight: bold;
    transform: translateY(2px);
}

/*预算上限状态*/
.budget{
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.budget button{
    width: 70px;
    height: 32px;
    font-size: 14px;
    font-weight: bold;
}
.budget p{
    font-size: 18px;
    font-weight: bold;
    transform: translateY(1px);
}

/*checkbox*/
.checkbox-box{
    display: flex;
    flex-direction: column;
}
.checkbox-box .el-radio{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    line-height: 30px;
}
.checkbox-box .el-radio .el-radio__label{
    color: #333333;
    font-size: 18px;
    font-weight: bold;
    line-height: 30px;
}

/*step1*/
.file-upload p{
    font-size: 14px;
}
.file-upload .file-select{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.file-upload .file-select .file{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.file-upload .file-select .file p{
    width: 100%;
    height: 34px;
    line-height: 34px;
    border: solid 1px #acacac;
    border-right: none;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    word-break: break-all;
}
.file-upload .file-select .file button{
    width: 100%;
    max-width: 100px;
    height: 34px;
    line-height: 34px;
    color: #FFFFFF;
    border: none;
    outline: none;
    background-color: #409EFF;
}
.file-upload .file-select .file button:hover{
    background-color: #66b1ff;
}
.file-upload .file-select .el-button{
    width: 100%;
    max-width: 50px;
    height: 34px;
    font-size: 20px;
    border-radius: 0;
}

/*step2*/
.activity-list .project{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.activity-list .project .flag{
    width: 100%;
    max-width: 28px;
    line-height: 28px;
    color: #FFFFFF;
    text-align: center;
    background-color: #409EFF;
}
.activity-list .project .name{
    width: 100%;
    line-height: 26px;
    border: solid 1px #acacac;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}
.activity-list .project .el-checkbox{
    width: 100%;
    max-width: 28px;
}
.activity-list .project .el-checkbox .el-checkbox__input,
.activity-list .project .el-checkbox .el-checkbox__inner{
    width: 28px;
    height: 28px;
    border-radius: 0;
}
.activity-list .project .el-checkbox .el-checkbox__inner::after{
    width: 6px;
    height: 12px;
    top: 4px;
    left: 10px;
}

/*step3 & step4*/
.text-input-project input{
    line-height: 26px;
    border: solid 1px #acacac;
    outline: none;
}
.text-input-project input:focus{
    border-color: #409EFF;
}