    /* ==================== 局部样式重置 (防污染隔离) ==================== */
    /* 最外层包裹器，所有样式限定在此范围内生效 */
    .ht-module-wrapper {
        font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", SimHei, Arial, sans-serif;
        -webkit-font-smoothing: antialiased;
        line-height: normal; /* 防止继承外部行高 */
    }

    /* 仅对该模块内部的元素应用 box-sizing，绝不影响外部网站 */
    .ht-module-wrapper *,
    .ht-module-wrapper *::before,
    .ht-module-wrapper *::after {
        box-sizing: border-box;
    }

    /* ==================== 询价区块 (CTA) 样式 ==================== */
    .ht-cta-section {
        display: flex;
        flex-direction: column;
        align-items: center;
        background: #0b1f3a;
        width: 100%;
        padding: 40px 20px;
        margin: 0;
    }

    .ht-cta-title {
        margin: 0;
        padding: 0;
        color: rgba(255, 255, 255, 0.85);
        font-size: 24px;
        font-weight: 600;
        line-height: 1.3;
        text-align: center;
    }

    .ht-cta-desc {
        margin: 12px 0 0;
        padding: 0;
        max-width: 90%;
        color: rgba(255, 255, 255, 0.85);
        font-size: 15px;
        line-height: 1.6;
        text-align: center;
    }

    .ht-cta-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 24px auto 0;
        border-radius: 12px;
        background: #e07b20;
        padding: 12px 30px;
        cursor: pointer;
        transition: background-color 0.3s ease;
        min-width: 180px;
        width: auto;
    }

    .ht-cta-btn:hover {
        background-color: #c56b15;
    }

    .ht-cta-btn-text {
        margin: 0;
        padding: 0;
        color: #ffffff;
        font-size: 15px;
        font-weight: 600;
        line-height: 1.5;
        text-align: center;
        white-space: nowrap;
    }

    /* ==================== 页脚 (Footer) 样式 ==================== */
    .ht-footer-section {
        background-color: #000000; 
        color: #8c8c8c;
        padding: 40px 20px 20px;
        margin: 0;
    }

    .ht-footer-container {
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0;
    }

    .ht-footer-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .ht-footer-logo {
        margin: 0 0 15px 0;
        padding: 0;
    }

    .ht-footer-logo img {
        max-width: 180px;
        height: auto;
        display: block;
        border: none; /* 防止外部图片边框干扰 */
    }

    .ht-footer-title {
        margin: 0 0 8px 0;
        padding: 0;
        color: #ffffff;
        font-size: 16px;
        font-weight: 600;
        line-height: 1.5;
    }

    .ht-footer-text {
        margin: 0;
        padding: 0;
        color: #8c8c8c;
        font-size: 14px;
        line-height: 1.8;
    }

    .ht-footer-copyright {
        text-align: center;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding: 20px 0 0 0;
        margin: 40px 0 0 0;
        font-size: 13px;
        color: #8c8c8c;
    }

    .ht-footer-copyright a {
        color: #8c8c8c;
        text-decoration: none;
        transition: color 0.3s ease;
        background: transparent;
    }

    .ht-footer-copyright a:hover {
        color: #ffffff;
        text-decoration: none;
    }

    /* ==================== 平板适配（768px ~ 1024px） ==================== */
    @media (min-width: 768px) and (max-width: 1024px) {
        .ht-cta-section { padding: 50px 40px; }
        .ht-cta-title { font-size: 28px; }
        .ht-cta-desc { font-size: 16px; max-width: 500px; }
        .ht-cta-btn { padding: 14px 35px; min-width: 200px; }
        .ht-cta-btn-text { font-size: 16px; }

        .ht-footer-grid {
            grid-template-columns: 1fr 1fr;
            gap: 40px;
        }
        .ht-footer-grid > div:nth-child(1) {
            grid-column: 1 / -1; 
        }
    }

    /* ==================== 桌面适配（> 1024px） ==================== */
    @media (min-width: 1025px) {
        .ht-cta-section { padding: 60px 20px; }
        .ht-cta-title { font-size: 32px; line-height: 51px; }
        .ht-cta-desc { margin: 9px 0 0; font-size: 16px; max-width: 432px; line-height: 26px; }
        .ht-cta-btn { margin: 20px auto 0; padding: 12px 25px; width: 200px; }
        .ht-cta-btn-text { font-size: 16px; line-height: 26px; }

        .ht-footer-section { padding: 60px 20px 20px; }
        .ht-footer-grid {
            grid-template-columns: 1.2fr 1fr 1fr; 
            gap: 50px;
        }
        .ht-footer-grid > div:nth-child(1) {
            grid-column: auto; 
        }
    }