.read_error_btn {
    width: 40px;
    height: 74px;
    padding-top: 1px;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    position: relative;
}

.read_error_btn .ico {
    display: block;
    width: 20px;
    height: 20px;
    margin: 24px auto 0;
    background: url('./img/slices.png') no-repeat;
}

.read_error_btn i {
    display: block;
    font-size: 12px;
    color: #b7ada5;
    margin-top: 6px;
}

.read_error_btn:hover, .read_error_btn.on {
    background-color: #fffbf5;
    box-shadow: 0 0 20px rgb(156 127 81 / 47%);
}

.dialog__wrapper {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: auto;
    margin: 0;
    background: rgba(0,0,0,0.4);
}

.dialog {
    position: relative;
    margin: 0 auto 50px;
    background: #fff;
    box-shadow: 0 1px 3px rgb(0 0 0 / 30%);
    box-sizing: border-box;
    width: 540px;
    border-radius: 8px;
}

.dialog__header {
    padding: 14px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #F5F5F5;
    border-top-right-radius: 8px;
    border-top-left-radius: 8px;
}

.dialog__title {
    font-size: 16px;
    color: #333;
}

.dialog__body {
    padding: 15px 20px;
    color: #606266;
    font-size: 14px;
    word-break: break-all;
}

.dialog__footer {
    padding: 10px 20px 20px;
    text-align: right;
    box-sizing: border-box;
}

.dialog__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cancle-btn {
    display: inline-block;
    width: 233px;
    line-height: 48px;
    text-align: center;
    height: 48px;
    background: #FFFFFF;
    box-shadow: 0px 2px 10px 0px rgba(255,136,115,0.5);
    border-radius: 24px;
    border: 1px solid #E52300;
    font-size: 16px;
    color: #E52300;
    cursor: pointer;
}

.sure-btn {
    display: inline-block;
    width: 233px;
    height: 48px;
    line-height: 48px;
    text-align: center;
    background: linear-gradient(90deg, #FF5B06 0%, #E52300 100%);
    box-shadow: 0px 2px 10px 0px rgba(255,136,115,0.5);
    border-radius: 24px;
    font-size: 16px;
    color: #FFFFFF;
    cursor: pointer;
}

.read-error-dialog-title {
    display: flex;
    align-items: center;
}

.read-error-dialog-title p {
    font-size: 16px;
    color: #333333;
}

.read-group-btns {
    margin-top: 12px;
    display: flex;
    align-items: center;
}

.read-group-btns > li {
    margin-right: 8px;
    width: 94px;
    height: 32px;
    line-height: 32px;
    text-align: center;
    background: #F5F5F5;
    border-radius: 22px;
    font-size: 14px;
    color: #8A8A8A;
    cursor: pointer;
}

.active {
    border: 1px solid #E13B29;
    color: #E13B29 !important;
    background-color: #FFFFFF !important;
}

.read-text-area {
    margin-top: 12px;
    position: relative;
}

.textarea {
    width: 489px;
    height: 166px;
    border-radius: 4px;
    border: 1px solid #DDDDDD;
    padding: 2px 4px;
    resize: none;
}

.textCount-box {
    position: absolute;
    right: 6px;
    bottom: 6px;
}

.avatar-uploader {
    margin-top: 15px;
    display: flex;
    align-items: flex-end;
}

.read-error-upload {
    position: relative;
    border: 1px dashed #DDDDDD;
    border-radius: 6px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    display: inline-block;
    text-align: center;
    outline: none;
}

.avatar-uploader-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 92px;
    height: 92px;
    border-radius: 4px;
    color: #B2B2B2;
    font-size: 14px;
}
.avatar-uploader-icon .icon-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.upload__input {
    width: 92px;
    height: 92px;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    cursor: pointer;
}
.read-upload-desc {
    margin-left: 8px;
    color: #B2B2B2;
    font-size: 14px;
}

.read-contact {
    box-sizing: border-box;
    padding: 2px 10px;
    margin-top: 15px;
    width: 498px;
    height: 40px;
    background: #FFFFFF;
    border-radius: 4px;
    border: 1px solid #DDDDDD;
}

.dislog__close {
    cursor: pointer;
}

.sub-title {
    margin-top: 12px;
    background: #F2F2F2;
    border-radius: 4px;
    height: 42px;
    line-height: 42px;
    padding: 0 12px;
    color: #333333;
    font-size: 14px;
    display: flex;
    align-items: center;
}

.sub-title img {
    flex-shrink: 0;
} 

.loading-mask {
    position: relative;
    background-color: rgba(0, 0, 0, 0.8);
    width: 94px;
    height: 94px;
    margin-top: 15px;
    transition: opacity .3s;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.loading-spinner {
    top: 50%;
    margin-top: -21px;
    width: 92px;
    text-align: center;
    position: absolute;
    left: 0;
}

.loading-spinner i {
    color: #409eff;
}

@keyframes rotating {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(1turn);
    }
}

.icon-loading:before {
    display: inline-block;
    content: '';
    width: 32px;
    height: 32px;
    background: url('./img/loading.svg') no-repeat;
    animation: rotating 2s linear infinite;
}

.loading-text {
    color: #409eff;
    margin-top: 32px;
    font-size: 12px;
}

#read-imageList {
    display: flex;
    align-items: center;
    justify-content: center;
}
.close-img {
    position: absolute; 
    top: 0;
    right: 0px;
    z-index: 1000;
    cursor: pointer
}
.read-imageList-item {
    position: relative;
    margin-right: 10px;
}
