

       .wjl_container_z {
            background: url("../images/wja_bg2.jpg") ;
            padding: 0px 20px 100px;
            overflow-x: hidden; margin-top: -80PX;
        }

        .wjl_container {
            max-width: 1350px;
            margin: 0 auto;
        }

        /* -------------------------- */
        /* 顶部标题区域 */
        /* -------------------------- */
        .wjl_header {
            margin-bottom: 32px;
        }

        .wjl_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;
        }

        .wjl_small_title::before {
            content: '//';
            color: #21499b;
            font-weight: 400;
        }

        .wjl_main_title {
            font-size: 3.05rem;
            font-weight: ;
            color: #212121;
            line-height: 1.2; font-family: Montserrat-Bold; text-transform: capitalize;
        }

        .wjl_title_highlight {
               background: linear-gradient(to right, var(--wjh-color-primary), #4ade80);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* -------------------------- */
        /* 卡片网格布局 */
        /* -------------------------- */
        .wjl_cards_grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(48%, 1fr));
            gap: 32px;
        }

        /* 卡片通用样式 + 滚动动画 */
        .wjl_card {
            border-radius: 12px;
            padding: 60px;
            opacity: 0;
            transform: translateY(40px);
            transition: all 0.6s ease;
            cursor: pointer;
        }

        /* 滚动飘入动画 */
        .wjl_card.wjl_visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* 滚动飘出动画 */
        .wjl_card.wjl_hidden {
            opacity: 0;
            transform: translateY(40px);
        }

        /* 卡片 hover 效果 */
        .wjl_card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
        }

        /* -------------------------- */
        /* 左侧卡片（浅灰色） */
        /* -------------------------- */
        .wjl_card_left {
            background-color: #f0f2f5;
        }

        .wjl_card_title {
            font-size: 1.6rem;
            font-weight: 700;
            color: #21499b;
            line-height: 1.4;
            margin-bottom: 28px; text-transform: capitalize;
        }

        .wjl_check_list {
            list-style: none;
            margin-bottom: 48px;
        }

        .wjl_check_item {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 12px;
            font-size: 0.98rem;
            color: #424242;
        }

        .wjl_check_icon {
            width: 18px;
            height: 18px;
            background-color: #21499b;
            border-radius: 3px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .wjl_check_icon svg {
            width: 12px;
            height: 12px;
            fill: white;
        }

        .wjl_cta_text {
            font-size: 0.95rem;
            color: #424242;
            margin-bottom: 16px;
        }

        .wjl_cta_btn {
            background-color: #21499b;
            color: white;
            border: none;
            padding: 12px 24px;
            border-radius: 8px;
            font-size: 0.95rem;
            font-weight: 600;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: background-color 0.3s ease;
        }

        .wjl_cta_btn:hover {
            background-color: #2e7d32;
        }

        .wjl_cta_btn svg {
            width: 16px;
            height: 16px;
            fill: white;
        }

        /* -------------------------- */
        /* 右侧卡片（绿色） */
        /* -------------------------- */
        .wjl_card_right {
            background: url("../images/ysbg.jpg") no-repeat ; background-size: cover;
            color: white;
            position: relative;
            overflow: hidden;
			
			
			
			
        }

        .wjl_card_right::after {
            content: '';
            position: absolute;
            bottom: 0;
            right: 0;
            width: 100%;
            height: 100%;
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 800 600"><path d="M0,300 Q200,200 400,300 T800,300 L800,600 L0,600 Z" fill="%23ffffff" opacity="0.05"/></svg>');
            background-size: cover;
            opacity: 0.1;
            z-index: 0;
        }

        .wjl_card_right .wjl_card_title {
            color: white;
            margin-bottom: 24px;
            position: relative;
            z-index: 1; text-transform: capitalize;
        }

        .wjl_card_desc {
            font-size: 0.98rem;
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 48px;
            position: relative;
            z-index: 1;
        }

        .wjl_stats_grid {
            display: grid;
            grid-template-columns: repeat(1, 1fr);
            gap: 32px;
            position: relative;
            z-index: 1;
        }

        .wjl_stat_item {
            display: flex;
            flex-direction: column;
            gap: 8px; padding-right: 40%;
        }

        .wjl_stat_number {
            font-size: 2.4rem;
            font-weight: 700;
            color: white;
            line-height: 1;
        }

        .wjl_stat_label {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.85);
            text-transform: capitalize;
        }

        /* -------------------------- */
        /* 响应式适配 */
        /* -------------------------- */
        @media (max-width: 768px) {
            .wjl_main_title {
                font-size: 2rem;
            }

            .wjl_cards_grid {
                grid-template-columns: 1fr;
            }

            .wjl_stats_grid {
                gap: 24px;
            }

            .wjl_stat_number {
                font-size: 2rem;
            }
        }
  