
        .wjj_hero_section_z {
            background-color: #ffffff;
             background: url("../images/wja_bg3.jpg") no-repeat center top;
            background-size:  auto 100%;
            padding-bottom: ; width: 100%; height: 920px;
        }

        /* 顶部英雄区域 */
        .wjj_hero_section {
         
            background: url("../images/bg70.jpg") no-repeat center -500px;
            background-size: cover;
            background-position: center;
            color: #333;
            padding: 100px 40px 260px;
            position: relative;
            opacity: 0;
            transform: translateY(40px);
            transition: all 0.8s ease; text-align: center;
        }

        .wjj_hero_section.wjj_visible {
            opacity: 1;
            transform: translateY(0);
        }

        .wjj_hero_container {
            max-width: 1350px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 40px;
        }

        .wjj_hero_left {
            flex: 1;
        }

        .wjj_hero_title {
            font-size: 3rem;
            font-weight: ;
            line-height: 1.1;
            margin-bottom: 24px; font-family: Montserrat-Bold; text-transform: capitalize;
        }

        .wjj_hero_right {
            flex: 1;
            max-width: 800px; margin: 0px auto;
        }

        .wjj_hero_desc {
            font-size: 1rem;
            line-height: 1.6;
            color: #999;
            margin-bottom: 32px;
        }

        .wjj_cta_btn {
            background-color: #21499b;
            color: #fff;
            border: none;
            padding: 14px 32px;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
        }

        .wjj_cta_btn:hover {
            background-color: #2450ac;
            transform: translateY(-2px);
            box-shadow: 0 8px 16px rgba(0,0,0,0.15);
        }

        .wjj_cta_icon {
            width: 20px;
            height: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .wjj_cta_icon svg {
            fill: #fff;
            width: 16px;
            height: 16px;
        }

        /* 卡片区域 */
        .wjj_cards_section {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
            transform: translateY(-80px);
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 15px;
            opacity: 0;
            transform: translateY(-80px) scale(0.95);
            transition: all 0.8s ease 0.3s;
			
			
			
			
        }

        .wjj_cards_section.wjj_visible {
            opacity: 1;
            transform: translateY(-200px) scale(1);
        }

        .wjj_card {
            border-radius: 0px;
            overflow: hidden;
            box-shadow: 0 12px 24px rgba(0,0,0,0.2);
            position: relative;
            transition: transform 0.3s ease;   height: 450px;
        }

        .wjj_card:hover {
            transform: translateY(-8px);
        }

        .wjj_card_default {
            display: block; height: 100%;
        }

        .wjj_card_img { height: 100%;
          
            background-color: #2d5c46;
            background-size: cover;
            background-position: center;
        }
.wjj_card_img img { width: 100%; height: 100%; object-fit: cover;} 

        .wjj_card_content {
            padding: 24px;
           background-image: linear-gradient(to right,rgba(33,73,155,.8), rgba(255,255,255,0));
            color: white; position: absolute; bottom: 0px;  width: 100%;
        }

        .wjj_card_text {
            font-size:1.5rem;
            line-height: 1.5;
            color: #fff; font-family: Montserrat-Bold; letter-spacing: 0px; text-transform: capitalize;
        }

        .wjj_card_white_content {
            background-color: #ffffff;
            padding: 28px;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .wjj_card_white_title {
            font-size: 1.8rem;
            font-weight: 700;
            color: #1a3d2e;
            margin-bottom: 16px;
        }

        .wjj_card_white_desc {
            font-size: 1rem;
            line-height: 1.6;
            color: #4b5563;
            margin-bottom: 32px;
        }

        .wjj_card_hover {
            display: none;
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: #21499b;
            padding: 70px;
            flex-direction: column;
            justify-content: space-between;
            z-index: 10;
        }

        .wjj_card:hover .wjj_card_default {
            display: none;
        }

        .wjj_card:hover .wjj_card_hover {
            display: flex;
        }

        .wjj_card_hover_title {
            font-size: 1.6rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 16px; text-transform: capitalize;
        }

        .wjj_card_hover_desc {
            font-size: 1rem;
            line-height: 1.6;
            color: #fff; text-transform: capitalize;
        }

        .wjj_card_hover_footer {
            display: flex;
            align-items: center;
            gap: 24px;
        }

        .wjj_avatars {
            display: flex;
            gap: -8px;
        }

        .wjj_avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: #fff;
            border: 2px solid white;
            overflow: hidden;
        }


        .wjj_avatar svg {
            width: 100%;
            height: 100%;
            fill: #21499b;
        }
.wjj_avatar svg path {fill: #21499b;}

        .wjj_rating {
            display: flex;
            flex-direction: column;
        }

        .wjj_rating_score {
            font-size: 1.5rem;
            font-weight: 700;
            color: #1a3d2e;
            display: flex;
            align-items: center;
            gap: 8px; margin-top: 10px;
        }

        .wjj_rating_score svg {
            fill: #4ade80;
            width: 20px;
            height: 20px;
        }

        .wjj_rating_count {
            font-size: 0.9rem;
            color: #4b5563;
            font-weight: 500;
        }

        /* 响应式适配 */
        @media (max-width: 1200px) {
            .wjj_hero_title {
                font-size: 3rem;
            }
        }

        @media (max-width: 992px) {
            .wjj_hero_container {
                flex-direction: column;
                text-align: center;
            }
            .wjj_cards_section {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .wjj_hero_title {
                font-size: 2.5rem;
            }
            .wjj_cards_section {
                grid-template-columns: 1fr;
                transform: translateY(-60px);
            }
            .wjj_cards_section.wjj_visible {
                transform: translateY(-60px) scale(1);
            }
        }

        @media (max-width: 480px) {
            .wjj_hero_section {
                padding: 60px 20px;
            }
            .wjj_cards_section {
                padding: 0 20px;
            }
        }
