 .wje_container_z {
            background: url("../images/wja_bg2.jpg") no-repeat center top fixed; /* 浅米色背景，匹配效果图 */
	 background-size: 100% 100%;
            padding: 100px 20px;
        }

        /* 主容器 */
        .wje_container {
            max-width: 1200px;
            margin: 0 10%;
        }

        /* ?? 滚动动画基础类：默认飘出状态 */
        .wje_animate_item {
            transform: translateY(40px);
            opacity: 0;
            transition: all 0.7s ease-out;
        }

        /* ?? 滚动动画激活类：飘入状态 */
        .wje_animate_active {
            transform: translateY(0);
            opacity: 1;
        }

        /* 标题区域 */
        .wje_header_section {
            margin-bottom: 32px;
        }

        .wje_section_label {
            color: #34b768; /* 绿色标签 */
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        /* SVG 双斜线图标 */
        .wje_label_svg {
            width: 16px;
            height: 16px;
            fill: #34b768;
        }

        .wje_main_title {
            font-size:3rem;
            font-weight: 700;
            color: #1a1a1a;
            line-height: 1.2;
            margin-bottom: 32px; font-family: Montserrat-Bold;
        }

        /* 标题高亮渐变文字 */
        .wje_title_highlight {
            background: linear-gradient(90deg, #1275ae, #2aa0e4);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text; font-family: Montserrat-Bold;
        }

        /* 表单卡片 */
        .wje_form_card {
            background-color: rgba(255,255,255,.8);
            border-radius: 16px;
            padding: 40px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
        }

        .wje_form_title {
            font-size: 1.8rem;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 16px;
        }

        .wje_form_desc {
            font-size: 1.1rem;
            color: #888888;
            line-height: 1.6;
            margin-bottom: 40px;
        }

        /* 表单行：两列布局 */
        .wje_form_row {
            display: flex;
            gap: 40px;
            margin-bottom: 12px;
            flex-wrap: wrap;
        }

        .wje_input_group {
            flex: 1;
            min-width: 250px;
        }

        .wje_input_label {
            font-size: 1.1rem;
            font-weight: 600;
            color: #1a1a1a;
            margin-bottom: 8px;
            display: block;
        }

        .wje_input {
            width: 100%;
            border: none;
            border-bottom: 1px solid #e0e0e0;
            padding: 2px 0;
            font-size: 1rem;
            color: #1a1a1a;
            background-color: transparent;
            transition: border-color 0.3s ease;
        }

        .wje_input:focus {
            outline: none;
            border-bottom-color: #34b768;
        }

        /* Message输入框单独占一行 */
        .wje_message_group {
            margin-bottom: 40px;
        }

        /* 提交按钮（渐变绿色） */
        .wje_submit_btn {
            background: linear-gradient(90deg,  #1275ae, #2aa0e4);
            color: #ffffff;
            border: none;
            border-radius: 30px;
            padding: 12px 32px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .wje_submit_btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(52, 183, 104, 0.3);
        }

        /* 响应式适配 */
        @media (max-width: 768px) {
            .wje_main_title {
                font-size: 2rem;
            }

            .wje_form_card {
                padding: 24px; 
            }

            .wje_form_row {
                gap: 24px;
            }
        }