
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        .quote-banner {
            background-color: #00244b;
            /* 压缩上下内边距，减小模块整体高度 */
            padding: 42px 24px;
        }
        .quote-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space‑between;
            gap: 30px;
        }
        .quote-text-area h2 {
            color: #ffffff;
            font-family: 'Arial Black', Arial, sans‑serif;
            font-size: 42px;
            font-weight: 900;
            margin: 0 0 10px;
        }
        .orange-short-line {
            width: 70px;
            height: 4px;
            background: #ff6600;
            margin-bottom: 14px;
        }
        .quote-text-area p {
            color: #e8edf3;
            font-family: Arial, sans‑serif;
            font-size: 18px;
            line-height: 1.5;
            margin: 0 0 6px;
        }
        .quote-btn-group {
            display: flex;
            gap: 20px;
            flex-shrink: 0;
        }
        .btn-orange {
            background: #ff6600;
            color: #ffffff;
            font-size: 18px;
            font-weight: bold;
            text-decoration: none;
            padding: 14px 32px;
            border-radius: 6px;
            transition: 0.3s;
        }
        .btn-orange:hover {
            background: #ff7a22;
        }
        .btn-whatsapp {
            border: 2px solid #ff6600;
            color: #ffffff;
            font-size: 18px;
            font-weight: bold;
            text-decoration: none;
            padding: 14px 32px;
            border-radius: 6px;
            transition: 0.3s;
        }
        .btn-whatsapp:hover {
            background: rgba(255, 102, 0, 0.12);
        }
        /* 移动端适配 */
        @media(max-width: 992px) {
            .quote-banner{
                padding:32px 24px;
            }
            .quote-container {
                flex-direction: column;
                text-align: center;
                gap:24px;
            }
            .quote-text-area h2 {
                font-size: 28px;
            }
            .quote-text-area p {
                font-size: 16px;
            }
            .orange-short-line {
                margin-left: auto;
                margin-right: auto;
            }
            .quote-btn-group {
                flex-direction: column;
                width: 100%;
                gap:14px;
            }
        }
    