
    /* 确认页面样式 */
.confirm-section {
    width: 600px;
    margin: 30px auto;
    padding: 30px;
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.confirm-title {
    font-size: 22px;
    font-weight: bold;
    color: #8f533f;
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #8f533f;
}
.confirm-item {
    margin-bottom: 20px;
    padding: 15px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    display: flex;
    align-items: center;
}
.confirm-label {
    width: 120px;
    font-weight: bold;
    color: #666;
    font-size: 16px;
}
.confirm-value {
    flex: 1;
    color: #333;
    font-size: 18px;
    font-weight: 600;
}
.confirm-value.highlight {
    color: #8f533f;
    font-size: 20px;
}
.button-group {
    text-align: center;
    margin-top: 30px;
}
.btn-confirm {
    display: inline-block;
    padding: 15px 50px;
    margin: 0 10px;
    background: #8f533f;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s;
}
.btn-confirm:hover {
    background: #a86b55;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(143,83,63,0.3);
}
.btn-back {
    display: inline-block;
    padding: 15px 50px;
    margin: 0 10px;
    background: #999;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s;
}
.btn-back:hover {
    background: #aaa;
    transform: translateY(-2px);
}
.info-box {
    background: #e8f4fd;
    border: 1px solid #b8d9f0;
    border-radius: 5px;
    padding: 20px;
    margin-top: 25px;
}
.info-box i {
    color: #3498db;
    margin-right: 8px;
}
.info-box ul {
    margin-top: 10px;
    margin-left: 25px;
    color: #2c3e50;
    line-height: 1.6;
}

/* 加载遮罩样式 */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}
.loading-box {
    background: white;
    padding: 30px 50px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 0 20px rgba(0,0,0,0.3);
}
.loading-spinner {
    border: 5px solid #f3f3f3;
    border-top: 5px solid #8f533f;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.loading-text {
    color: #333;
    font-size: 16px;
    font-weight: bold;
}

/* 表单样式 */
.amount-select {
    width: 300px;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 3px;
    background-color: #fff;
    font-size: 14px;
}

/* 错误提示样式 */
.error-message {
    color: #ff0000;
    font-size: 12px;
    margin-top: 5px;
    display: none;
}
.resinput.error {
    border: 1px solid #ff0000;
}
    .confirm-section {
        width: 600px;
        margin: 30px auto;
        padding: 30px;
        background: #f9f9f9;
        border: 1px solid #ddd;
        border-radius: 8px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }
    .confirm-title {
        font-size: 22px;
        font-weight: bold;
        color: #8f533f;
        text-align: center;
        margin-bottom: 30px;
        padding-bottom: 15px;
        border-bottom: 2px solid #8f533f;
    }
    .confirm-item {
        margin-bottom: 20px;
        padding: 15px;
        background: #fff;
        border: 1px solid #e0e0e0;
        border-radius: 5px;
        display: flex;
        align-items: center;
    }
    .confirm-label {
        width: 120px;
        font-weight: bold;
        color: #666;
        font-size: 16px;
    }
    .confirm-value {
        flex: 1;
        color: #333;
        font-size: 18px;
        font-weight: 600;
    }
    .confirm-value.highlight {
        color: #8f533f;
        font-size: 20px;
    }
    .button-group {
        text-align: center;
        margin-top: 30px;
    }
    .btn-confirm {
        display: inline-block;
        padding: 15px 50px;
        margin: 0 10px;
        background: #8f533f;
        color: #fff;
        border: none;
        border-radius: 5px;
        font-size: 18px;
        font-weight: bold;
        cursor: pointer;
        text-decoration: none;
        transition: all 0.3s;
    }
    .btn-confirm:hover {
        background: #a86b55;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(143,83,63,0.3);
    }
    .btn-back {
        display: inline-block;
        padding: 15px 50px;
        margin: 0 10px;
        background: #999;
        color: #fff;
        border: none;
        border-radius: 5px;
        font-size: 18px;
        font-weight: bold;
        cursor: pointer;
        text-decoration: none;
        transition: all 0.3s;
    }
    .btn-back:hover {
        background: #aaa;
        transform: translateY(-2px);
    }
    .info-box {
        background: #e8f4fd;
        border: 1px solid #b8d9f0;
        border-radius: 5px;
        padding: 20px;
        margin-top: 25px;
    }
    .info-box ul {
        margin-top: 10px;
        margin-left: 25px;
        color: #2c3e50;
        line-height: 1.6;
    }

    /* 加载遮罩样式 */
    .loading-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
        display: none;
        justify-content: center;
        align-items: center;
        z-index: 9999;
    }
    .loading-box {
        background: white;
        padding: 30px 50px;
        border-radius: 10px;
        text-align: center;
        box-shadow: 0 0 20px rgba(0,0,0,0.3);
    }
    .loading-spinner {
        border: 5px solid #f3f3f3;
        border-top: 5px solid #8f533f;
        border-radius: 50%;
        width: 50px;
        height: 50px;
        animation: spin 1s linear infinite;
        margin: 0 auto 20px;
    }
    @keyframes spin {
        0% { transform: rotate(0deg); }
        100% { transform: rotate(360deg); }
    }
    .loading-text {
        color: #333;
        font-size: 16px;
        font-weight: bold;
    }

    /* 表单样式 */
    .amount-select {
        width: 300px;
        padding: 8px;
        border: 1px solid #ccc;
        border-radius: 3px;
        background-color: #fff;
        font-size: 14px;
    }

    /* 错误提示样式 */
    .inline-error {
        background-color: #f8d7da;
        border: 1px solid #f5c6cb;
        color: #721c24;
        padding: 12px 20px;
        border-radius: 5px;
        margin: 15px auto;
        width: 80%;
        text-align: center;
        font-weight: bold;
        animation: slideDown 0.3s ease-out;
    }
    @keyframes slideDown {
        from {
            top: -50px;
            opacity: 0;
        }
        to {
            top: 20px;
            opacity: 1;
        }
    }
    .resinput.error, select.error {
        border: 2px solid #dc3545 !important;
        background-color: #fff8f8 !important;
    }
    .field-error {
        border-color: #dc3545 !important;
    }