<!-- 第一步：弹窗样式（华夏银行主题色） -->
<style>
    /* 提交按钮弹窗遮罩层 */
    .hxyh-submit-modal-mask {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.65);
        z-index: 99999;
        display: none;
        align-items: center;
        justify-content: center;
        backdrop-filter: blur(3px);
    }
    
    /* 提交按钮弹窗主体 */
    .hxyh-submit-modal {
        width: 420px;
        padding: 35px 25px;
        background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
        border-radius: 16px;
        box-shadow: 0 8px 32px rgba(218, 41, 28, 0.35);
        text-align: center;
        box-sizing: border-box;
        z-index: 999999;
        border: 2px solid rgba(218, 41, 28, 0.15);
    }
    
    /* 弹窗标题 */
    .hxyh-submit-modal-title {
        font-size: 22px;
        color: #DA291C; /* 华夏银行红色 */
        margin: 0 0 20px 0;
        font-weight: 600;
        letter-spacing: 0.5px;
    }
    
    /* 弹窗内容 */
    .hxyh-submit-modal-content {
        font-size: 15px;
        color: #555;
        line-height: 1.8;
        margin-bottom: 25px;
        padding: 0 10px;
    }
    
    /* 关闭按钮 */
    .hxyh-submit-modal-btn {
        margin-top: 10px;
        padding: 10px 32px;
        background: linear-gradient(90deg, #DA291C 0%, #ff4d3d 100%);
        color: #fff;
        border: none;
        border-radius: 8px;
        cursor: pointer;
        font-size: 15px;
        font-weight: 500;
        transition: all 0.3s ease;
        box-shadow: 0 4px 12px rgba(218, 41, 28, 0.25);
    }
    
    .hxyh-submit-modal-btn:hover {
        background: linear-gradient(90deg, #B8221A 0%, #DA291C 100%);
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(218, 41, 28, 0.35);
    }
    
    .hxyh-submit-modal-btn:active {
        transform: translateY(0);
    }
</style>
