/* 服务人员申请退出页样式 */

.exit-desc {
    padding: 15px;
    background-color: #FFF1F0;
    border-radius: 8px;
    font-size: 14px;
    color: #FF4D4F;
    text-align: center;
    line-height: 1.6;
}

.section-title {
    font-size: 14px;
    color: #333;
    font-weight: 600;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.deposit-info-card {
    padding: 15px;
    background-color: #f5f5f5;
    border-radius: 8px;
}

.info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

.info-item:last-child {
    border-bottom: none;
}

.info-label {
    font-size: 14px;
    color: #666;
    flex-shrink: 0;
}

.info-value {
    flex: 1;
    font-size: 14px;
    color: #333;
    text-align: right;
}

.form-textarea {
    width: 100%;
    min-height: 100px;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    color: #333;
    resize: vertical;
    font-family: inherit;
}

.form-textarea:focus {
    outline: none;
    border-color: #1890FF;
}

.char-count {
    text-align: right;
    font-size: 12px;
    color: #999;
    margin-top: 4px;
}

.checkbox-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    cursor: pointer;
}

.checkbox-item input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-right: 10px;
    cursor: pointer;
}

.checkbox-text {
    font-size: 14px;
    color: #333;
    flex: 1;
}

.agreement-content {
    max-height: 200px;
    overflow-y: auto;
    padding: 15px;
    background-color: #f5f5f5;
    border-radius: 8px;
    margin-bottom: 15px;
}

.agreement-text {
    font-size: 12px;
    color: #666;
    line-height: 1.8;
}

.optional {
    color: #999;
    font-size: 12px;
}

.btn-danger {
    background-color: #FF4D4F;
    color: #fff;
}

.btn-danger:active {
    background-color: #CF1322;
}

/* 底部操作 */
.bottom-action {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 750px;
    padding: 15px;
    background-color: #fff;
    border-top: 1px solid #eee;
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.05);
}

