

        .wjm_container_z {
            background: url("../images/bg8.jpg"); /* 页面浅米色背景 */
            padding: 100px 20px;
            overflow-x: hidden;
        }

        .wjm_container {
            max-width: 1200px;
            margin: 0 auto;
        }

        /* -------------------------- */
        /* 顶部标题区域 */
        /* -------------------------- */
        .wjm_header {
            margin-bottom: 32px;
            /* 滚动动画初始状态 */
            opacity: 0;
            transform: translateY(40px);
            transition: all 0.6s ease;
        }

        .wjm_header.wjm_visible {
            opacity: 1;
            transform: translateY(0);
        }

        .wjm_small_title {
            font-size: 0.95rem;
            font-weight: 600;
            color: #21499b;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .wjm_small_title::before {
            content: '//';
            color: #21499b;
            font-weight: 400;
        }

        .wjm_main_title {
            font-size: 3.2rem;
            font-weight: ;
            color: #212121;
            line-height: 1.2; text-transform: capitalize; font-family: Montserrat-Bold;
        }

        .wjm_title_highlight {
              background: linear-gradient(to right, var(--wjh-color-primary), #4ade80);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* -------------------------- */
        /* 主内容区域：表单 + FAQ */
        /* -------------------------- */
        .wjm_content {
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            gap: 40px;
            align-items: start;
        }

        /* 左侧表单区域 */
        .wjm_form_section {
            background-color: #ffffff;
            border-radius: 12px;
            padding: 32px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
            /* 滚动动画初始状态 */
            opacity: 0;
            transform: translateY(40px);
            transition: all 0.6s ease 0.2s;
        }

        .wjm_form_section.wjm_visible {
            opacity: 1;
            transform: translateY(0);
        }

        .wjm_form_title {
            font-size: 1.3rem;
            font-weight: 700;
            color: #212121;
            margin-bottom: 12px;
        }

        .wjm_form_desc {
            font-size: 0.95rem;
            color: #666;
            margin-bottom: 32px;
            line-height: 1.5;
        }

        .wjm_form_row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            margin-bottom: 24px;
        }

        .wjm_form_group {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .wjm_form_label {
            font-size: 0.9rem;
            font-weight: 500;
            color: #333;
        }

        .wjm_form_input {
            padding: 8px 0;
            border: none;
            border-bottom: 1px solid #eee;
            font-size: 0.95rem;
            color: #333;
            background-color: transparent;
        }

        .wjm_form_input:focus {
            outline: none;
            border-bottom-color: #26a69a;
        }

        .wjm_form_textarea {
            grid-column: 1 / -1;
            padding: 8px 0;
            border: none;
            border-bottom: 1px solid #eee;
            font-size: 0.95rem;
            color: #333;
            background-color: transparent;
            min-height: 60px;
            resize: none;
            margin-bottom: 32px;
        }

        .wjm_form_textarea:focus {
            outline: none;
            border-bottom-color: #26a69a;
        }

        .wjm_submit_btn {
              background: linear-gradient(to right, var(--wjh-color-primary), var(--wjh-color-primary));
            color: white;
            border: none;
            padding: 12px 24px;
            border-radius: 24px;
            font-size: 0.95rem;
            font-weight: ;
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease; font-family: Barlow-Regular;
        }

        .wjm_submit_btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 12px rgba(38,166,154,0.3);
        }

        /* 右侧FAQ区域 */
        .wjm_faq_section {
            /* 滚动动画初始状态 */
            opacity: 0;
            transform: translateY(40px);
            transition: all 0.6s ease 0.4s;
        }

        .wjm_faq_section.wjm_visible {
            opacity: 1;
            transform: translateY(0);
        }

        .wjm_faq_list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .wjm_faq_item {
            border-radius: 8px;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .wjm_faq_question {
            padding: 16px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 1.1rem;
            font-weight: 500;
            color: #212121;
            cursor: pointer;
            background-color: #fff;
            border: 1px solid #eee;
        }

        .wjm_faq_icon {
            width: 20px;
            height: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .wjm_faq_icon svg {
            fill: #212121;
        }

        .wjm_faq_answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease, padding 0.5s ease;
            color: #fff;
            line-height: 1.6;
            padding: 0 20px;
             background: linear-gradient(to right, var(--wjh-color-primary),  var(--wjh-color-primary), #4ade80);
        }

        .wjm_faq_item.wjm_active .wjm_faq_answer {
            max-height: 200px;
            padding: 20px;
        }

        .wjm_faq_item.wjm_active .wjm_faq_question {
             background: linear-gradient(to right, var(--wjh-color-primary), var(--wjh-color-primary),  #4ade80);
            color: white;
            border: none;
        }

        .wjm_faq_item.wjm_active .wjm_faq_icon svg {
            fill: white;
        }

        /* -------------------------- */
        /* 响应式适配 */
        /* -------------------------- */
        @media (max-width: 768px) {
            .wjm_content {
                grid-template-columns: 1fr;
                gap: 32px;
            }

            .wjm_main_title {
                font-size: 2rem;
            }

            .wjm_form_row {
                grid-template-columns: 1fr;
            }
        }
 