/* 软件投诉或纠错弹窗 */
.sr-overlay {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 10080;
}
.sr-modal {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 560px;
    max-width: 94vw;
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
    z-index: 10081;
    font-size: 14px;
    color: #333;
}
.sr-modal-hd {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: #f0f0f0;
    border-bottom: 1px solid #e5e5e5;
    border-radius: 4px 4px 0 0;
}
.sr-modal-hd h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    color: #333;
}
.sr-modal-close {
    width: 28px;
    height: 28px;
    border: none;
    background: transparent;
    font-size: 22px;
    line-height: 1;
    color: #666;
    cursor: pointer;
    padding: 0;
}
.sr-modal-close:hover {
    color: #000;
}
.sr-modal-bd {
    padding: 16px 20px 20px;
}
.sr-row {
    margin-bottom: 14px;
}
.sr-row label.sr-label {
    display: inline-block;
    width: 48px;
    font-weight: 700;
    vertical-align: top;
    line-height: 28px;
}
.sr-problems {
    display: inline-block;
    width: calc(100% - 56px);
    vertical-align: top;
}
.sr-problems label {
    display: inline-block;
    margin: 0 14px 8px 0;
    cursor: pointer;
    font-weight: normal;
    white-space: nowrap;
}
.sr-problems input {
    margin-right: 4px;
    vertical-align: -2px;
}
.sr-textarea {
    display: block;
    width: 100%;
    box-sizing: border-box;
    min-height: 120px;
    margin-top: 6px;
    padding: 8px 10px;
    border: 1px solid #ddd;
    border-radius: 3px;
    resize: vertical;
    font-size: 14px;
    line-height: 1.5;
}
.sr-textarea:focus {
    border-color: #7ab8ff;
    outline: none;
}
.sr-note {
    margin: 6px 0 0;
    font-size: 12px;
    color: #888;
    line-height: 1.6;
}
.sr-note a {
    color: #0984c5;
    text-decoration: none;
}
.sr-note a:hover {
    text-decoration: underline;
}
.sr-email {
    display: block;
    width: 100%;
    box-sizing: border-box;
    height: 36px;
    margin-top: 6px;
    padding: 0 10px;
    border: 1px solid #ddd;
    border-radius: 3px;
    font-size: 14px;
}
.sr-email:focus {
    border-color: #7ab8ff;
    outline: none;
}
.sr-submit-wrap {
    text-align: center;
    margin-top: 18px;
}
.sr-submit {
    min-width: 200px;
    height: 40px;
    padding: 0 32px;
    border: none;
    border-radius: 3px;
    background: #ff8a00;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
}
.sr-submit:hover {
    background: #f07800;
}
.sr-submit:disabled {
    opacity: 0.65;
    cursor: not-allowed;
}
.sendErr-wrap .soft-report-open,
.sendErr-wrap .feedback {
    color: #0984c5;
    cursor: pointer;
}
.sendErr-wrap .soft-report-open:hover,
.sendErr-wrap .feedback:hover {
    text-decoration: underline;
}
