
    /* 防冲突全局重置 */
    .tech-faq-section, .tech-faq-section * {
        box-sizing: border-box !important;
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif !important;
    }

    .tech-faq-section {
        max-width: 900px;
        margin: 40px auto;
        padding: 0 15px;
        background-color: transparent;
    }

    /* 头部排版 */
    .tech-faq-header {
        text-align: center;
        margin-bottom: 30px;
    }
    .tech-faq-badge {
        font-size: 12px !important;
        letter-spacing: 1.5px;
        color: #F2A15B !important;
        font-weight: 700 !important;
        display: block;
        margin-bottom: 10px;
    }
    .tech-faq-main-title {
        font-size: 28px !important;
        font-weight: 700 !important;
        color: #111827 !important;
        margin: 0 0 12px 0 !important;
        line-height: 1.3 !important;
    }
    .tech-faq-lead-text {
        font-size: 15px !important;
        color: #4B5563 !important;
        line-height: 1.6 !important;
        max-width: 700px;
        margin: 0 auto !important;
    }

    /* 展台背景 */
    .tech-faq-display-platform {
        background-color: #F0F4F9 !important;
        border-radius: 16px !important;
        padding: 24px !important;
    }

    /* 卡片样式 */
    .tech-faq-card {
        background-color: #FFFFFF !important;
        border-radius: 8px !important;
        margin-bottom: 12px !important;
        border: 1px solid #E5E7EB !important;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02) !important;
        overflow: hidden !important;
        transition: all 0.2s ease !important;
    }
    .tech-faq-card:last-child {
        margin-bottom: 0 !important;
    }

    /* 核心修复：强制一行排列，禁止换行 */
    .tech-faq-trigger {
        width: 100% !important;
        background: transparent !important;
        border: none !important;
        padding: 18px 24px !important; /* 收紧了框体高度 */
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important; /* 绝对禁止换行 */
        align-items: center !important;
        justify-content: space-between !important;
        cursor: pointer !important;
        outline: none !important;
        min-height: auto !important;
    }

    /* 文字区域占据剩余空间 */
    .tech-faq-q-text {
        flex: 1 1 auto !important;
        text-align: left !important;
        font-size: 15px !important;
        font-weight: 600 !important;
        color: #1F2937 !important;
        padding-right: 20px !important;
        margin: 0 !important;
        line-height: 1.4 !important;
        transition: color 0.3s ease !important;
    }
    .tech-faq-card.is-active .tech-faq-q-text {
        color: #F2A15B !important;
    }

    /* 图标区域强制靠右，绝对不压缩 */
    .tech-faq-icon-box {
        display: block !important;
        flex: 0 0 14px !important; /* 锁定宽度，不被压缩 */
        position: relative !important;
        width: 14px !important;
        height: 14px !important;
    }
    .tech-faq-icon-box::before,
    .tech-faq-icon-box::after {
        content: '' !important;
        position: absolute !important;
        background-color: #9CA3AF !important;
        transition: transform 0.3s ease, background-color 0.3s ease !important;
    }
    .tech-faq-icon-box::before {
        top: 6px !important;
        left: 0 !important;
        width: 14px !important;
        height: 2px !important;
    }
    .tech-faq-icon-box::after {
        top: 0 !important;
        left: 6px !important;
        width: 2px !important;
        height: 14px !important;
    }
    .tech-faq-card.is-active .tech-faq-icon-box::before,
    .tech-faq-card.is-active .tech-faq-icon-box::after {
        background-color: #F2A15B !important;
    }
    .tech-faq-card.is-active .tech-faq-icon-box::after {
        transform: rotate(90deg) !important;
        opacity: 0 !important;
    }
    .tech-faq-card.is-active .tech-faq-icon-box::before {
        transform: rotate(180deg) !important;
    }

    /* 内容区域 */
    .tech-faq-body {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease !important;
    }
    .tech-faq-inner-content {
        padding: 0 24px 20px 24px !important;
        color: #4B5563 !important;
        font-size: 14px !important;
        line-height: 1.6 !important;
    }
    .tech-faq-list {
        margin: 0 0 12px 0 !important;
        padding-left: 18px !important;
    }
    .tech-faq-list li {
        margin-bottom: 6px !important;
        list-style-type: square !important;
    }
    .tech-faq-divider {
        height: 1px !important;
        background-color: #E5E7EB !important;
        margin: 12px 0 !important;
    }
    .tech-faq-info-row {
        margin: 4px 0 !important;
    }
    .tech-faq-info-row strong {
        color: #1F2937 !important;
    }
