@charset "utf-8";
/* CSS Document */

      /* 基础样式继承原有风格 */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 
    -apple-system, 
    BlinkMacSystemFont, 
    "Segoe UI", 
    Roboto, 
    "Helvetica Neue", 
    Arial, 
    "Hiragino Sans GB", 
    "PingFang SC", 
    "Microsoft YaHei", 
    "HarmonyOS Sans", 
    "Noto Sans SC", 
    sans-serif;
       
            background-color: #ffffff;
            color: #1a1a1a;
            scroll-behavior: smooth;
            overflow-x: hidden;
        }

        /* 内容容器保持原有1400px居中 */
        .jy-home-container {
            max-width: 1200px;
            margin: 0 auto;
          
            width: 100%;
        }


 html {
      scroll-behavior: smooth;
    }
    #about {
      scroll-margin-top: 80px;
    }




        .jy-home-section {
            padding: 80px 0;
            position: relative;
        }

        /* 双色标题复用原有样式 */
        .jy-home-double-title {
            text-align: center;
            font-size: 36px;
            font-weight: 700;
           
            margin-bottom: 16px;
        }
        .jy-home-double-title .color1 {
            background: linear-gradient(135deg, #1E3C2C 0%, #2E7D5E 100%);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        .jy-home-double-title .color2 {
            color: #1a1a1a;
        }
        .jy-home-section-sub {
            text-align: center;
            font-size: 18px;
            letter-spacing: 4px;
            text-transform: uppercase;
            color: #5c6e5c;
            margin-bottom: 60px;
            font-weight: 400;
        }

        /* 面包屑导航 */
        .jy-breadcrumb {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            color: #5c6e5c;
            margin-bottom: 30px;
            flex-wrap: wrap;
        }

        .jy-breadcrumb a {
            color: #5c6e5c;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .jy-breadcrumb a:hover {
            color: #2E7D5E;
        }

        .jy-breadcrumb .separator {
            color: #c0c9c0;
        }

        .jy-breadcrumb .current {
            color: #2E7D5E;
            font-weight: 500;
        }

        /* 媒体合作介绍区域 */
        .jy-media-intro {
            max-width: 900px;
            margin: 0 auto 60px;
            text-align: center;
            padding: 40px;
            background: #fefcf7;
            border-radius: 24px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.03);
        }

        .jy-media-intro-title {
            font-size: 24px;
            font-weight: 700;
            color: #1E3C2C;
            margin-bottom: 20px;
        }

        .jy-media-intro-desc {
            font-size: 18px;
            line-height: 1.8;
            color: #2d3e2b;
        }

        /* 合作商LOGO容器 */
        .jy-partner-logo-container {
            background: #fefcf7;
            border-radius: 24px;
            padding: 30px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.03);
        }

        .jy-partner-title {
            font-size: 28px;
            font-weight: 700;
            color: #1E3C2C;
            margin-bottom: 40px;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .jy-partner-title::before {
            content: "";
            display: inline-block;
            width: 4px;
            height: 28px;
            background: linear-gradient(135deg, #1E3C2C 0%, #2E7D5E 100%);
            border-radius: 2px;
        }

        /* LOGO网格布局 - 一排6个（缩小间距） */
        .jy-logo-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 5px; /* 原30px → 15px 大幅缩小列间距 */
            row-gap: 0px; /* 原40px → 20px 大幅缩小行间距 */
        }

        /* LOGO项样式（去除白色背景） */
        .jy-logo-item {
            display: flex;
            align-items: center;
            justify-content: center;
            background: transparent; /* 关键修改：去除白色背景 */
            border-radius: 16px;
            padding: 10px; /* 原20px → 10px 缩小内边距 */
            height: 100px; /* 原120px → 100px 适配缩小的间距 */
            transition: all 0.4s ease;
            box-shadow: none; /* 关键修改：去除卡片阴影 */
        }

        .jy-logo-item:hover {
            transform: translateY(-6px);
          
            border-color: #2E7D5E;
        }

        .jy-logo-img {
            max-width: 100%;
            max-height: 70px; /* 原80px → 70px 适配缩小的容器 */
            object-fit: contain;
            filter: grayscale(20%);
            transition: all 0.3s ease;
        }

        .jy-logo-item:hover .jy-logo-img {
            filter: grayscale(0);
            transform: scale(1.05);
        }

        /* 合作咨询按钮 */
        .jy-cooperation-btn {
            display: block;
            width: fit-content;
            margin: 60px auto 0;
            padding: 16px 48px;
            background: linear-gradient(135deg, #1E3C2C 0%, #2E7D5E 100%);
            color: #ffffff;
            border: none;
            border-radius: 12px;
            font-size: 18px;
            font-weight: 600;
            cursor: pointer;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(46, 125, 94, 0.2);
        }

        .jy-cooperation-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 16px rgba(46, 125, 94, 0.3);
        }

        /* 移动端响应式适配（同步调整间距） */
        @media (max-width: 1200px) {
            .jy-logo-grid {
                grid-template-columns: repeat(4, 1fr);
                gap: 12px;
                row-gap: 18px;
            }
        }

        @media (max-width: 900px) {
            .jy-home-double-title {
                font-size: 32px;
            }

            .jy-partner-title {
                font-size: 24px;
            }

            .jy-logo-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 10px; /* 原20px → 10px */
                row-gap: 15px; /* 原30px → 15px */
            }

            .jy-media-intro {
                padding: 30px 20px;
            }

            .jy-partner-logo-container {
                padding: 40px 30px;
            }

            .jy-logo-item {
                height: 80px; /* 原100px → 80px */
                padding: 8px;
            }

            .jy-logo-img {
                max-height: 60px;
            }
        }

        @media (max-width: 600px) {
            .jy-home-section {
                padding: 60px 0;
            }

            .jy-home-section-sub {
                font-size: 14px;
                margin-bottom: 40px;
            }

            .jy-logo-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 8px;
                row-gap: 12px;
            }

            .jy-media-intro-desc {
                font-size: 16px;
            }

            .jy-partner-logo-container {
                padding: 30px 20px;
            }

            .jy-cooperation-btn {
                width: 100%;
                padding: 16px 20px;
                text-align: center;
            }
        }

        @media (max-width: 400px) {
            .jy-logo-grid {
                grid-template-columns: 1fr;
                gap: 8px;
                row-gap: 12px;
            }
        }





        /* 全局模糊背景效果（弹窗时启用） */
        body.modal-open {
            filter: blur(8px);
            overflow: hidden;
        }


        .jy-home-section {
            padding: 80px 0;
            position: relative;
        }

        /* 双色标题 */
        .jy-home-double-title {
            text-align: center;
            font-size: 42px;
            font-weight: 700;
            letter-spacing: -0.02em;
            margin-bottom: 16px;
        }
        .jy-home-double-title .color1 {
            background: linear-gradient(135deg, #1E3C2C 0%, #2E7D5E 100%);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        .jy-home-double-title .color2 {
            color: #1a1a1a;
        }
        .jy-home-section-sub {
            text-align: center;
            font-size: 18px;
            letter-spacing: 4px;
            text-transform: uppercase;
            color: #5c6e5c;
            margin-bottom: 40px;
            font-weight: 400;
        }

        /* 按钮样式 */
        .jy-home-btn-primary, .jy-home-btn-outline {
            display: inline-block;
            padding: 14px 38px;
            font-weight: 600;
            border-radius: 60px;
            transition: 0.3s;
            text-decoration: none;
            cursor: pointer;
            font-size: 16px;
        }
        .jy-home-btn-primary {
            background: #1E3C2C;
            color: white;
            border: none;
            box-shadow: 0 8px 18px rgba(0,0,0,0.05);
        }
        .jy-home-btn-primary:hover {
            background: #2E7D5E;
            transform: translateY(-3px);
        }
        .jy-home-btn-outline {
            border: 1px solid #2E7D5E;
            color: #2E7D5E;
            background: transparent;
        }
        .jy-home-btn-outline:hover {
            background: rgba(46,125,94,0.08);
            transform: translateY(-3px);
        }

        /* 导航栏 滚动互动效果 - 新增二级菜单样式 */
        .jy-home-header {
          
               width: 100%;
    background: rgb(255 255 255 / 96%);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgb(0 0 0 / 6%);
        }
        .jy-home-header.scrolled {
            background: rgba(255,255,245,0.98);
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            border-bottom-color: rgba(46,125,94,0.3);
        }
        .jy-home-header-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 18px 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: padding 0.2s;
        }
        .scrolled .jy-home-header-container {
            padding: 12px 5%;
        }
        /* LOGO图片样式 - 修改点1 */
        .jy-home-logo {
            width: 150px; /* LOGO宽度 */
            height: auto;
        }
        .jy-home-logo img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }
        /* 一级菜单样式 - 支持二级菜单 */
        .jy-home-nav-menu {
            display: flex;
            gap: 42px;
            list-style: none;
        }
        .jy-home-nav-menu > li {
            position: relative;
        }
        .jy-home-nav-menu a {
            color: #1f2a1b;
            text-decoration: none;
            font-weight: 500;
            transition: 0.2s;
            display: block;
            padding: 8px 0;
        }
        .jy-home-nav-menu a:hover { 
            color: #2E7D5E; 
        }
        /* 二级菜单样式 */
        .jy-home-submenu {
            position: absolute;
            top: 100%;
            left: 0;
            background: #fffef7;
            min-width: 200px;
            border-radius: 12px;
            box-shadow: 0 8px 24px rgba(0,0,0,0.08);
            padding: 15px 0;
            list-style: none;
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: all 0.3s ease;
            z-index: 9999;
        }
        .jy-home-submenu li {
            padding: 0 20px;
        }
        .jy-home-submenu a {
            padding: 8px 0;
            font-size: 14px;
            border-bottom: 1px solid #f0f0e8;
        }
        .jy-home-submenu li:last-child a {
            border-bottom: none;
        }
        .jy-home-nav-menu > li:hover .jy-home-submenu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        /* 移动端菜单按钮 */
        .jy-home-menu-toggle {
            display: none;
            font-size: 28px;
            color: #2E7D5E;
            cursor: pointer;
        }

        /* 移动端导航样式优化 */
        @media (max-width: 900px) {
            /* 移动端LOGO居左，菜单按钮居右 */
            .jy-home-header-container {
                justify-content: space-between;
            }
            .jy-home-nav-menu {
                position: fixed;
                top: 80px;
                right: -100%;
                flex-direction: column;
                background: #fffef7;
                width: 70%;
                height: calc(100vh - 80px);
                padding: 40px;
                gap: 30px;
                transition: 0.3s;
                box-shadow: -5px 0 20px rgba(0,0,0,0.05);
            }
            /* 移动端二级菜单样式 */
            .jy-home-nav-menu .jy-home-submenu {
                position: static;
                opacity: 1;
                visibility: visible;
                transform: none;
                box-shadow: none;
                padding: 10px 0 10px 20px;
                display: none;
            }
            .jy-home-nav-menu .jy-home-submenu.active {
                display: block;
            }
            .jy-home-nav-menu > li > a {
                display: flex;
                justify-content: space-between;
                align-items: center;
            }
            .jy-home-nav-menu > li > a::after {
                content: '\f078';
                font-family: 'Font Awesome 6 Free';
                font-weight: 900;
                font-size: 12px;
                color: #2E7D5E;
                margin-left: 10px;
            }
            .jy-home-nav-menu.active { 
                right: 0; 
            }
            .jy-home-menu-toggle { 
                display: block; 
            }
            .jy-home-double-title { 
                font-size: 32px; 
            }
        }

        /* 全屏视频模块 保持全宽 */
        .jy-home-full-video {
            width: 100%;
          
            overflow: hidden;
            position: relative;
            background: #000;
           
        }
        .jy-home-full-video video {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* 文案板块 左侧img + 右侧文案 */
        .jy-home-split-layout {
            display: flex;
            flex-wrap: wrap;
            background: #fefcf7;
            overflow: hidden;
            align-items: center;
            border-radius: 32px;
        }
        .jy-home-split-left {
            flex: 1.2;
            min-height: 480px;
            overflow: hidden;
        }
        .jy-home-split-left img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease, filter 0.4s;
            display: block;
        }
        .jy-home-split-left:hover img {
            transform: scale(1.05);
            filter: brightness(0.92) contrast(1.05);
        }
        .jy-home-split-right {
            flex: 1;
            padding: 60px 48px;
        }
        .jy-home-split-right p {
            font-size: 18px;
            line-height: 1.65;
            margin-bottom: 24px;
            color: #2d3e2b;
        }
        .jy-home-btn-group {
            display: flex;
            gap: 24px;
            margin-top: 32px;
        }

        /* 年度展览板块 - 新渐变背景 */
        .jy-home-annual-bg {
            background: linear-gradient(to bottom, #d4e157, #ffffff);
            width: 100%;
            padding: 60px 0;
        }
        .jy-home-exhibition-duo {
            display: flex;
            gap: 40px;
            flex-wrap: wrap;
            justify-content: center;
            margin-bottom: 60px;
            position: relative;
        }
        .jy-home-exhibition-card {
            flex: 1;
            min-width: 280px;
            background: rgba(255,255,245,0.9);
            padding: 40px 32px;
            transition: transform 0.3s, box-shadow 0.3s;
            position: relative;
            overflow: hidden;
            border-radius: 24px;
        }
        .jy-home-exhibition-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 20px 30px rgba(0,0,0,0.05);
        }
        .jy-home-exhibition-card h3 {
            font-size: 32px;
            margin-bottom: 24px;
            color: #1E3C2C;
            border-left: 5px solid #2E7D5E;
            padding-left: 20px;
            position: relative;
            z-index: 2;
        }
        .jy-home-exhibition-card p { color: #2c4b35; line-height: 1.5; font-size: 16px; position: relative; z-index: 2; }
        .jy-home-cut-number {
            position: absolute;
            right: -20px;
            bottom: -40px;
            font-size: 180px;
            font-weight: 900;
            color: rgba(46,125,94,0.15);
            pointer-events: none;
            z-index: 1;
            line-height: 1;
            user-select: none;
            transform: rotate(-0deg);
            letter-spacing: -4px;
            overflow: hidden;
            height: 100px;
            width: 180px;
            clip-path: inset(0 0 40% 0);
        }
       .jy-home-exhibition-card:first-child .jy-home-cut-number {
    font-size: 100px;
    right: -70px;
    bottom: -20px;
    clip-path: inset(0 0 0% 0);
}
        .jy-home-exhibition-card:last-child .jy-home-cut-number {
    font-size: 100px;
    right: -70px;
    bottom: -20px;
    clip-path: inset(0 0 0% 0);
}

        /* 5个图片一排 */
        .jy-home-img-five-row {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 20px;
            margin-top: 20px;
        }
        .jy-home-img-five-row img {
            width: 100%;
           
            object-fit: cover;
            border-radius: 20px;
            transition: all 0.4s ease;
            box-shadow: 0 5px 12px rgba(0,0,0,0.05);
        }
        .jy-home-img-five-row img:hover {
            transform: scale(1.03);
            filter: brightness(0.98);
            box-shadow: 0 12px 22px rgba(0,0,0,0.1);
        }
        @media (max-width: 1000px) {
            .jy-home-img-five-row { grid-template-columns: repeat(2,1fr); gap: 15px; }
        }
        @media (max-width: 700px) {
            .jy-home-img-five-row { grid-template-columns: 1fr; }
        }

        /* 设计周亮点 全铺图片 */
        .jy-home-highlights-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }
        .jy-home-highlight-card {
            background-size: cover;
            background-position: center;
            border-radius: 32px;
            height: 380px;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 30px 24px;
            color: white;
            position: relative;
            transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
            cursor: pointer;
            overflow: hidden;
        }
        .jy-home-highlight-card::before {
            content: '';
            position: absolute;
            top:0; left:0; width:100%; height:100%;
            background: linear-gradient(to top, rgba(0,0,0,0.7), rgba(0,0,0,0.1));
            border-radius: 32px;
            z-index: 1;
            transition: 0.3s;
        }
        .jy-home-highlight-card:hover::before { background: linear-gradient(to top, rgba(0,0,0,0.85), rgba(0,0,0,0.2)); }
        .jy-home-highlight-card:hover { transform: translateY(-10px) scale(1.01); box-shadow: 0 25px 35px rgba(0,0,0,0.2); }
        .jy-home-highlight-card h4, .jy-home-highlight-card p {
            position: relative;
            z-index: 2;
            transition: transform 0.2s;
        }
        .jy-home-highlight-card:hover h4 { transform: translateX(8px); }
        .jy-home-highlight-card:hover p { transform: translateX(5px); }
        .jy-home-highlight-card h4 { font-size: 28px; margin-bottom: 12px; font-weight: 700; }
        .jy-home-highlight-card p { font-size: 15px; line-height: 1.4; max-width: 90%; }
        .jy-home-card-1 { background-image: url('/uploadfile/202604/263a5d6abbbec3fe494914f4e254db42.jpg'); }
        .jy-home-card-2 { background-image: url('/uploadfile/202604/18741d36679d8aecef1833cba3f13fce.jpg'); }
        .jy-home-card-3 { background-image: url('/uploadfile/202604/94404061561f32b4e0000cf37fb08d70.jpg'); }
        .jy-home-card-4 { background-image: url('/uploadfile/202604/22c4706871049907227e9e89a389d6c3.jpg'); }
        @media (max-width: 1000px) {
            .jy-home-highlights-grid { grid-template-columns: repeat(2,1fr); }
        }
        @media (max-width: 600px) {
            .jy-home-highlights-grid { grid-template-columns: 1fr; }
        }

        /* 专业观众模块 全宽屏（重构为5行内容） */
    .jy-home-fullwidth-layout {
    display: flex;
    position: relative;
    flex-wrap: wrap;
    background: #f2f4ec;
    transition: all 0.5s ease;
    margin: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden !important;
}
        /* 左侧图片动态效果 - 修改点2：添加overflow:hidden防止超出 */
        .jy-home-fullwidth-img {
            flex: 1;
            background: url('/uploadfile/202604/0d2dc4b36e6f2277280d52c8e4adc279.jpg') center/cover no-repeat;
            min-height: 550px;
            transition: all 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
            filter: brightness(0.95);
            overflow: hidden; /* 关键修改：隐藏超出部分 */
        }
        .jy-home-fullwidth-layout:hover .jy-home-fullwidth-img {
            transform: scale(1.02);
            filter: brightness(1.05) contrast(1.03);
        }
        .jy-home-fullwidth-right {
            flex: 1;
            background: #fbf7ee;
            padding: 60px 50px;
            position: relative;
            transition: all 0.5s ease;
        }
        .jy-home-fullwidth-layout:hover .jy-home-fullwidth-right {
          
            box-shadow: -10px 0 30px rgba(0,0,0,0.03);
        }
        /* 专业观众5行内容样式 - 修改数字为图标+右侧数字 */
        .jy-home-audience-list {
            display: flex;
            flex-direction: column;
            gap: 0px;
        }

.jy-home-double-title img{
    width: 600px;
}

        .jy-home-audience-item {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            transition: all 0.4s ease;
            padding: 15px;
            border-radius: 12px;
            margin-left: -15px;
            margin-right: -15px;
        }


.jy-home-audience-item a {
    display: flex;
    gap: 10px;
    width: 100%;
    text-decoration: none;
    color: inherit;
}



        .jy-home-audience-item:hover {
            background: rgba(46,125,94,0.05);
            transform: translateX(8px);
        }
        /* 图标样式 - 替换原有数字 */
        .jy-home-audience-icon {
            font-size: 32px;
            color: #2E7D5E;
            opacity: 0.8;
            min-width: 48px;
            height: 48px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .jy-home-audience-text {
            flex: 1;
            padding-top: 8px;
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
        }
        .jy-home-audience-text-content {
            flex: 1;
        }
        /* 数字移到右侧，淡色层级效果 */
        .jy-home-audience-number {
            font-size: 48px;
            font-weight: 800;
            color: #2E7D5E;
            opacity: 0.2; /* 淡淡层级效果 */
            line-height: 1;
            min-width: 60px;
            text-align: right;
            transition: all 0.3s ease;
        }
        .jy-home-audience-item:hover .jy-home-audience-number {
            opacity: 0.4; /* hover时稍微加深 */
            transform: scale(1.05);
        }
        .jy-home-audience-text-content h3 { 
            font-size: 20px; 
            margin-bottom: 3px; 
            color: #1E3C2C;
            transition: all 0.3s ease;
        }
        .jy-home-audience-item:hover .jy-home-audience-text-content h3 {
            color: #2E7D5E;
        }
        .jy-home-audience-text-content p { 
            color: #5e6d55; 
            line-height: 1.6;
            font-size: 16px;
        }
        @media (max-width: 900px) {
            .jy-home-fullwidth-img { min-height: 350px; }
            .jy-home-audience-icon { font-size: 28px; min-width: 40px; }
            .jy-home-audience-number { font-size: 36px; min-width: 50px; }
            .jy-home-audience-text-content h3 { font-size: 20px; }
        }

        /* 往届回顾 一排4个，显示3排，带放大镜弹窗 - 全新稳定逻辑 */
        .jy-home-gallery-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            margin-top: 30px;
        }
        .jy-home-gallery-item {
            position: relative;
            overflow: hidden;
            cursor: pointer;
            border-radius: 0px;
            aspect-ratio: 4 / 3;
        }
        .jy-home-gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.4s ease;
        }
        /* 从下往上的黑色渐变滤镜层 */
        .jy-home-gallery-item::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 0%;
            background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
            transition: height 0.4s ease;
            pointer-events: none;
        }
        .jy-home-gallery-item:hover::after {
            height: 100%;
        }
        /* 放大镜按钮默认隐藏，悬停显示 */
        .jy-home-zoom-btn {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) scale(0.8);
            background: rgba(255,255,255,0.9);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: all 0.3s ease;
            z-index: 10;
            cursor: pointer;
            backdrop-filter: blur(2px);
            box-shadow: 0 2px 10px rgba(0,0,0,0.2);
        }
        .jy-home-zoom-btn i {
            font-size: 24px;
            color: #1E3C2C;
        }
        .jy-home-gallery-item:hover .jy-home-zoom-btn {
            opacity: 1;
            transform: translate(-50%, -50%) scale(1);
        }
        .jy-home-gallery-item:hover img {
            transform: scale(1.05);
        }
        @media (max-width: 1000px) {
            .jy-home-gallery-grid { grid-template-columns: repeat(2,1fr); }
        }
        @media (max-width: 600px) {
            .jy-home-gallery-grid { grid-template-columns: 1fr; }
        }

        /* 图片弹窗 - 全新极简稳定样式 */
        .image-lightbox {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.9);
            z-index: 9999;
            justify-content: center;
            align-items: center;
            cursor: zoom-out;
        }
        .image-lightbox.show {
            display: flex;
        }
        .lightbox-img {
            max-width: 90%;
            max-height: 90vh;
            border-radius: 8px;
            box-shadow: 0 0 50px rgba(0,0,0,0.5);
        }
        .lightbox-close {
            position: absolute;
            top: 20px;
            right: 30px;
            color: white;
            font-size: 40px;
            cursor: pointer;
            z-index: 10000;
        }

        /* 底部模块 全宽黑色背景，社交图标横排布局，hover显示二维码 - 修改点3：底部内容宽度控制 */
        .jy-home-footer {
            background: #0a0c0a;
            padding: 60px 0 40px; /* 移除左右padding，由内部容器控制 */
            color: #ccc;
            width: 100%;
        }
        /* 底部内容容器 - 与上方1400px对齐 */
        .jy-home-footer-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 5%;
            width: 100%;
        }
      .jy-home-footer-logo {
    text-align: center;
    margin-bottom: 100px;
    margin-top: 60px;
}
      .jy-home-footer-logo img {
    max-width: 580px;
    transition: filter 0.3s;
    border-bottom: 1px solid #2a2f28;
    padding-bottom: 30px;
}
        .jy-home-footer-logo img:hover { filter: brightness(1); }
        
        /* 修改为四列布局 */
        .jy-home-footer-modules {
            display: grid;
            grid-template-columns: repeat(4, 1fr); /* 改为4列 */
            gap: 40px; /* 增大间距提升美观度 */
            text-align: left;
            border-bottom: 1px solid #2a2f28;
            padding-bottom: 40px;
            margin-bottom: 30px;
        }
        
        /* 适配移动端四列布局 */
        @media (max-width: 900px) {
            .jy-home-footer-modules {
                grid-template-columns: repeat(2, 1fr); /* 移动端改为2列 */
            }
        }
        
        @media (max-width: 600px) {
            .jy-home-footer-modules {
                grid-template-columns: 1fr; /* 小屏改为1列 */
            }
        }
        
    .jy-home-footer-col h4 {
    color: #dbbc87;
    margin-bottom: 18px;
    font-size: 24px;
    font-weight: 500;
}
        .jy-home-footer-col p, .jy-home-footer-col a {
            color: #aaa;
            text-decoration: none;
            line-height: 2;
            font-size: 14px;
            display: block;
            transition: color 0.2s;
        }
        .jy-home-footer-col a:hover { color: #dbbc87; }
        /* 联系方式特殊样式 */
        .jy-home-footer-col .contact-phone {
            color: #fff;
            font-size: 16px;
            font-weight: 500;
            margin-top: 8px;
        }
        
        /* 社交图标区域：匹配参考图样式 - 核心修改部分 */
        .jy-home-social-icons {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 32px; /* 增大间距匹配参考图 */
            flex-wrap: wrap;
            margin: 40px auto 10px;
            max-width: 1000px;
        }
        .jy-home-social-icon {
            position: relative;
            width: 70px; /* 增大图标尺寸 */
            height: 70px;
            border-radius: 50%;
           
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
            cursor: pointer;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }
        .jy-home-social-icon i {
            font-size: 32px; /* 增大图标字体 */
            color: #ffffff; /* 黑色图标匹配参考图 */
            transition: color 0.3s;
        }
        .jy-home-social-icon:hover {
           
            transform: translateY(-6px);
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        }
        .jy-home-social-icon:hover i {
            color: #2E7D5E; /* hover时图标变主色调 */
        }
        /* 二维码悬浮层 */
        .social-qrcode {
            position: absolute;
            bottom: 80px;
            left: 50%;
            transform: translateX(-50%);
            width: 220px;
           
            background: white;
            padding: 8px;
            border-radius: 8px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.3);
            display: none;
            z-index: 10;
        }


.jy-home-social-icon img {
    width: 46px;
}



        .social-qrcode img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .jy-home-social-icon:hover .social-qrcode {
            display: block;
        }
        
        /* 回到顶部按钮 */
        .jy-home-go-top {
            position: fixed;
            bottom: 40px;
            right: 40px;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: #1E3C2C;
            color: white;
            display: none;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 999;
            transition: all 0.3s;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        }
        .jy-home-go-top.show {
            display: flex;
        }
        .jy-home-go-top:hover {
            background: #2E7D5E;
            transform: translateY(-4px);
        }
        .jy-home-go-top i {
            font-size: 24px;
        }

        /* 移动端适配补充 */
        @media (max-width: 768px) {
            .jy-home-social-icons {
                gap: 25px;
            }
            .jy-home-social-icon {
                width: 60px;
                height: 60px;
            }
            .jy-home-social-icon i {
                font-size: 28px;
            }
            .jy-home-go-top {
                width: 50px;
                height: 50px;
                bottom: 20px;
                right: 20px;
            }
        }

        /* 查看展览弹窗表单样式 - 修改点4：改为输入框表单样式 */
        .exhibition-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.85);
            z-index: 9999;
            justify-content: center;
            align-items: center;
            padding: 20px;
        }
        .exhibition-modal.show {
            display: flex;
        }
        .modal-content {
            background: white;
            padding: 40px;
            border-radius: 12px;
            max-width: 700px;
            width: 100%;
            max-height: 90vh;
            overflow-y: auto;
        }
        .modal-close {
            position: absolute;
            top: 20px;
            right: 30px;
            color: white;
            font-size: 40px;
            cursor: pointer;
            z-index: 10000;
        }
        .modal-title {
            font-size: 28px;
            color: #1E3C2C;
            margin-bottom: 30px;
            text-align: center;
            font-weight: 700;
        }
        /* 表单样式 */
        .exhibition-form {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        .form-group {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        .form-group label {
            font-size: 16px;
            color: #1E3C2C;
            font-weight: 500;
        }
        .form-group input,
        .form-group select,
        .form-group textarea {
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-size: 16px;
            color: #333;
            font-family: inherit;
        }
        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #2E7D5E;
            box-shadow: 0 0 0 3px rgba(46,125,94,0.1);
        }
        .form-group textarea {
            min-height: 120px;
            resize: vertical;
        }
        .form-submit {
            background: #1E3C2C;
            color: white;
            border: none;
            padding: 14px;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s;
            margin-top: 10px;
        }
        .form-submit:hover {
            background: #2E7D5E;
        }












 /* 新闻列表核心样式 */
        .jy-news-list {
            display: flex;
            flex-direction: column;
            gap: 30px;
            margin-top: 20px;
        }

        /* 单条新闻项 - 一行布局 */
        .jy-news-item {
            display: flex;
            background: #fefcf7;
            border-radius: 24px;
            overflow: hidden;
            transition: all 0.4s ease;
            box-shadow: 0 4px 12px rgba(0,0,0,0.03);
        }

        /* 新增：a标签样式 - 让整个新闻项可点击 */
        .jy-news-link {
            display: flex;
            width: 100%;
            height: 100%;
            text-decoration: none; /* 去除下划线 */
            color: inherit; /* 继承父元素颜色 */
        }

        /* 鼠标hover互动效果 */
        .jy-news-item:hover {
            transform: translateY(-6px);
            box-shadow: 0 12px 24px rgba(0,0,0,0.08);
        }

        /* 左侧图片区域 */
        .jy-news-img {
            flex: 0 0 320px;
            
            overflow: hidden;
            position: relative;
        }

        .jy-news-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        /* hover时图片缩放效果 */
        .jy-news-item:hover .jy-news-img img {
            transform: scale(1.08);
            filter: brightness(0.95);
        }

        /* 右侧内容区域 */
        .jy-news-content {
            flex: 1;
            padding: 10px 48px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        /* 新闻时间标签 */
        .jy-news-time {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            color: #5c6e5c;
            margin-bottom: 8px;
        }

        .jy-news-time i {
            color: #2E7D5E;
            font-size: 16px;
        }

        /* 新闻标题 */
        .jy-news-title {
            font-size: 22px;
            font-weight: 700;
            color: #1E3C2C;
            margin-bottom: 10px;
            line-height: 1.2;
            transition: color 0.3s ease;
        }

        .jy-news-item:hover .jy-news-title {
            color: #2E7D5E;
        }

        /* 新闻描述 */
        .jy-news-desc {
            font-size: 15px;
            line-height: 1.5;
            color: #2d3e2b;
            display: -webkit-box;
            -webkit-line-clamp: 3; /* 限制显示3行 */
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        /* 移动端响应式适配 */
        @media (max-width: 900px) {
            .jy-news-item {
                flex-direction: column;
            }

            .jy-news-img {
                flex: none;
                width: 100%;
                height: 220px;
            }

            .jy-news-content {
                padding: 30px 24px;
            }

            .jy-home-double-title {
                font-size: 32px;
            }

            .jy-news-title {
                font-size: 24px;
            }

            .jy-news-desc {
                font-size: 16px;
            }
        }

        @media (max-width: 600px) {
          

            .jy-home-section {
                padding: 60px 0;
            }

            .jy-home-section-sub {
                font-size: 14px;
                margin-bottom: 40px;
            }
        }



 /* 参展表单主容器 - 左右布局 */
        .jy-exhibition-container {
            display: flex;
            gap: 40px;
            align-items: flex-start;
            background: #fefcf7;
            border-radius: 24px;
            padding: 60px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.03);
        }

        /* 左侧表单区域 */
        .jy-exhibition-form {
            flex: 0 0 65%;
        }

        .jy-form-title {
            font-size: 28px;
            font-weight: 700;
            color: #1E3C2C;
            margin-bottom: 30px;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .jy-form-title::before {
            content: "";
            display: inline-block;
            width: 4px;
            height: 28px;
            background: linear-gradient(135deg, #1E3C2C 0%, #2E7D5E 100%);
            border-radius: 2px;
        }

        /* 表单样式 */
        .jy-form-group {
            margin-bottom: 24px;
        }

        .jy-form-label {
            display: block;
            font-size: 16px;
            font-weight: 500;
            color: #1E3C2C;
            margin-bottom: 8px;
        }

        .jy-form-input,
        .jy-form-select,
        .jy-form-textarea {
            width: 100%;
            padding: 16px 20px;
            border: 1px solid #e0e6e0;
            border-radius: 12px;
            font-size: 16px;
            color: #2d3e2b;
            background-color: #ffffff;
            transition: all 0.3s ease;
            font-family: inherit;
        }

        .jy-form-input:focus,
        .jy-form-select:focus,
        .jy-form-textarea:focus {
            outline: none;
            border-color: #2E7D5E;
            box-shadow: 0 0 0 4px rgba(46, 125, 94, 0.1);
        }

        .jy-form-textarea {
            min-height: 120px;
            resize: vertical;
            line-height: 1.6;
        }

        /* 表单网格布局（两行两列） */
        .jy-form-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
        }

        /* 提交按钮 */
        .jy-form-submit {
            display: inline-block;
            padding: 16px 48px;
            background: linear-gradient(135deg, #1E3C2C 0%, #2E7D5E 100%);
            color: #ffffff;
            border: none;
            border-radius: 12px;
            font-size: 18px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(46, 125, 94, 0.2);
        }

        .jy-form-submit:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 16px rgba(46, 125, 94, 0.3);
        }

        /* 右侧联系电话区域 */
        .jy-contact-info {
            flex: 0 0 35%;
            background: #ffffff;
            border-radius: 16px;
            padding: 40px 30px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
        }

        .jy-contact-title {
            font-size: 24px;
            font-weight: 700;
            color: #1E3C2C;
            margin-bottom: 30px;
            text-align: center;
        }

        /* 联系电话列表 */
        .jy-contact-list {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .jy-contact-item {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 20px;
            background: #fefcf7;
            border-radius: 12px;
            transition: all 0.3s ease;
        }

        .jy-contact-item:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.05);
        }

        .jy-contact-icon {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: linear-gradient(135deg, #1E3C2C 0%, #2E7D5E 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .jy-contact-icon i {
            font-size: 24px;
            color: #ffffff;
        }

        .jy-contact-content {
            flex: 1;
        }

        .jy-contact-name {
            font-size: 16px;
            font-weight: 600;
            color: #1E3C2C;
            margin-bottom: 4px;
        }

        .jy-contact-phone {
            font-size: 18px;
            font-weight: 700;
            color: #2E7D5E;
        }

        /* 移动端响应式适配 */
        @media (max-width: 900px) {
            .jy-exhibition-container {
                flex-direction: column;
                padding: 40px 30px;
                gap: 40px;
            }

            .jy-exhibition-form,
            .jy-contact-info {
                flex: none;
                width: 100%;
            }

            .jy-form-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }

            .jy-home-double-title {
                font-size: 32px;
            }

            .jy-form-title {
                font-size: 24px;
            }
        }

        @media (max-width: 600px) {
            .jy-home-section {
                padding: 60px 0;
            }

            .jy-home-section-sub {
                font-size: 14px;
                margin-bottom: 40px;
            }

            .jy-exhibition-container {
                padding: 30px 20px;
            }

            .jy-contact-info {
                padding: 30px 20px;
            }

            .jy-form-submit {
                width: 100%;
                padding: 16px 20px;
            }

            .jy-contact-item {
                padding: 16px;
            }

            .jy-contact-icon {
                width: 50px;
                height: 50px;
            }

            .jy-contact-phone {
                font-size: 16px;
            }
        }


.jy-partner-logo-container p {
    padding-bottom: 8px;
}


 /* 父容器：自适应宽度 */
    .jy-qhw-container {
      display: flex;
      align-items: center;
      width: 100%;
      gap: 140px; /* 三栏之间大间距（可修改） */
      padding: 30px;
      box-sizing: border-box;
    }

    /* 左右栏 */
    .jy-qhw-left, .jy-qhw-right {
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 34px; /* 小模块之间间距（可修改） */
    }

    /* 左侧文字靠右 */
    .jy-qhw-left {
      text-align: right;
    }

    /* 右侧文字靠左 */
    .jy-qhw-right {
      text-align: left;
    }

    /* 中间图片 */
    .jy-qhw-center img {
      max-width: 100%;
      height: auto;
      display: block;
    }

    /* 模块样式 */
    .jy-qhw-item {
      line-height: 1.6;
    }
    .jy-qhw-item h4 {
      margin: 0 0 6px 0;
      font-size: 18px;
    }
    .jy-qhw-item p {
      margin: 0;
      font-size: 14px;
      color: #333;
    }


 /* 外层容器：自适应父元素 */
    .jy-jkl-data-group {
      width: 100%;
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      padding: 20px;
      box-sizing: border-box;
    }

    /* 单个模块：边框 + 白色背景 */
    .jy-jkl-data-item {
      flex: 1 1 calc(25% - 20px);
      min-width: 200px;
      text-align: center;
      padding: 28px 16px;
      box-sizing: border-box;
      border: 1px solid #e5e7eb;
      background: #ffffff;
      border-radius: 8px;
      transition: all 0.3s ease; /* 悬浮动画过渡 */
      cursor: pointer;
    }

    /* 鼠标悬浮互动效果 */
    .jy-jkl-data-item:hover {
      transform: translateY(-4px); /* 向上浮起 */
      box-shadow: 0 8px 20px rgba(0,0,0,0.1); /* 阴影 */
      border-color: #98d84e; /* 边框变绿色 */
    }

    /* 图标：深灰色 */
    .jy-jkl-data-icon {
      font-size: 28px;
      margin-bottom: 8px;
      color: #444444; /* 深灰色 */
      transition: color 0.3s ease;
    }

    /* 悬浮时图标也变绿 */
    .jy-jkl-data-item:hover .jy-jkl-data-icon {
      color: #98d84e;
    }

    /* 标题：放大 + 加粗 */
    .jy-jkl-data-title {
      font-size: 20px; /* 再次放大 */
      color: #333;
      margin: 0 0 12px 0;
      font-weight: 700; /* 加粗 */
      transition: color 0.3s ease;
    }

    /* 悬浮时标题加深 */
    .jy-jkl-data-item:hover .jy-jkl-data-title {
      color: #222;
    }

    /* 数字容器：给加号定位 */
    .jy-jkl-data-num-box {
      position: relative;
      display: inline-block;
    }

    /* 数字：指定颜色 #98d84e */
    .jy-jkl-data-number {
      font-size: 32px;
      font-weight: bold;
      color: #98d84e; /* 你要的绿色 */
      line-height: 1.2;
    }

    /* 加号 + 右上角：同数字颜色 */
    .jy-jkl-data-plus {
      position: absolute;
      top: 0;
      right: -14px;
      font-size: 16px;
      color: #98d84e;
      font-weight: bold;
    }

 /* 外层容器：自适应父元素 */
    .jy-akjh-data-group {
      width: 100%;
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      padding: 20px 0px 50px 0px;
      box-sizing: border-box;
    }

    /* 单个大模块：取消悬浮效果 */
    .jy-akjh-data-item {
      flex: 1 1 calc(50% - 20px);
      min-width: 300px;
      padding: 28px 20px;
      box-sizing: border-box;
      border: 1px solid #e5e7eb;
      background: #f8f9fa;
      border-radius: 8px;
      /* 取消整个模块悬浮动画 */
      cursor: default;
    }

    /* 大标题 */
    .jy-akjh-data-title {
      font-size: 30px;
      color: #333;
      margin: 0 0 30px 0;
      font-weight: 700;
      text-align: center;
    }

    /* 子项目：左右布局 + 单独悬浮效果 */
    .jy-akjh-sub-item {
      display: flex;
     
      gap: 22px;
      margin-bottom: 28px;
      padding: 16px;
      border-bottom: 1px dashed #e5e7eb;
      border-radius: 8px;
      transition: all 0.3s ease;
      cursor: pointer;
    }
    .jy-akjh-sub-item:last-child {
      margin-bottom: 0;
      border-bottom: none;
    }

    /* 子项单独鼠标悬浮效果 */
    .jy-akjh-sub-item:hover {
      background: #fafbfc;
      transform: translateX(4px);
      box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    }

    /* 子项左侧图标：放大 + 黑色 */
    .jy-akjh-sub-icon {
      flex-shrink: 0;
      width: 54px;
      height: 54px;
      line-height: 54px;
      text-align: center;
      font-size: 46px;
      color: #333333;
      background: #f8f9fa;
      border-radius: 6px;
      transition: all 0.3s ease;
    }
    /* 只有子项悬浮时图标变色 */


    /* 中间内容区 */
    .jy-akjh-sub-content {
      flex: 1;
    }
    .jy-akjh-sub-title {
      font-size: 19px;
      font-weight: 600;
      color: #333;
      margin-bottom: 10px;
    }

    /* 文案列表：带对号 */
    .jy-akjh-sub-desc-list {
      list-style: none;
    }
    .jy-akjh-sub-desc-list li {
      font-size: 15px;
      color: #666;
      line-height: 1.6;
      display: flex;
      align-items: center;
      gap: 6px;
      margin-bottom: 4px;
    }
    .jy-akjh-sub-desc-list li i {
      color: #666;
      font-size: 14px;
    }

    /* 价格数字：固定在最右侧 */
    .jy-akjh-sub-price {
      flex-shrink: 0;
      font-size: 32px;
      font-weight: bold;
      color: #98d84e;
      white-space: nowrap;
    }

    /* 底部全宽咨询栏：左右结构 50% + 50% */
    .jy-akjh-contact {
      width: 100%;
      background: #f8f9fa;
      padding: 30px 0;
      margin-top: 10px;
      border-top: 2px solid #98d84e;
    }
    .jy-akjh-contact-wrap {
      width: 100%;
      margin: 0 auto;
      display: flex;
      align-items: center;
    }
    /* 左侧图片 50% 宽度 */
    .jy-akjh-contact-left {
      width: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .jy-akjh-contact-left img {
    
      object-fit: contain;
      display: block;
      transition: all 0.3s ease;
      cursor: pointer;
    }
    /* 图片悬浮互动效果 */
    .jy-akjh-contact-left img:hover {
      transform: scale(1.03);
      box-shadow: 0 6px 16px rgba(0,0,0,0.1);
    }

    /* 右侧联系方式 50% 宽度 */
    .jy-akjh-contact-right {
      width: 50%;
      display: flex;
      flex-direction: column;
      gap: 40px;
      padding-right: 20px;
    }
    .jy-akjh-contact-item {
      display: flex;
      align-items: center;
      gap: 22px;
    }
    .jy-akjh-contact-icon {
      font-size: 40px;
      color: #333333;
      width: 30px;
      text-align: center;
    }
    .jy-akjh-contact-info {
      line-height: 1.4;    padding-left: 20px;
    }
    .jy-akjh-contact-label {
      font-size: 22px;
      color: #333;
      font-weight: 500;
    }
    .jy-akjh-contact-phone {
      font-size: 22px;
      font-weight: bold;
      color: #98d84e;
    }




   /* 外层布局容器：无宽度，自适应 */
    .jylost-wrapper {
      width: 100%;
      padding: 30px 20px;
    }
    .jylost-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 24px;
      margin-bottom: 24px;
    }
    /* 最后一排取消间距 */
    .jylost-grid:last-child {
      margin-bottom: 0;
    }

    /* 第一排：3个等分 */
    .jylost-col-3 {
      flex: 1 1 calc(33.333% - 16px);
      min-width: 280px;
    }
    /* 第二排：2个等分 */
    .jylost-col-2 {
      flex: 1 1 calc(50% - 12px);
      min-width: 280px;
    }

    /* 模块卡片样式 */
    .jylost-card {
      background: #fff;
      border: 1px solid #e5e7eb;
      border-radius: 10px;
      padding: 28px 24px;
      height: 100%;
      transition: all 0.3s ease;
    }
    .jylost-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 8px 20px rgba(0,0,0,0.06);
      border-color: #98d84e;
    }

    /* 标题：图标 + 文字 */
    .jylost-card-title {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 20px;
      font-weight: 700;
      color: #333;
      margin-bottom: 14px;
    }
    .jylost-card-title i {
      color: #98d84e;
      font-size: 22px;
      width: 24px;
      text-align: center;
    }

    /* 副标题 */
    .jylost-card-sub {
      font-size: 15px;
      color: #666;
      line-height: 1.6;
      margin-bottom: 16px;
      padding-bottom: 16px;
      border-bottom: 1px dashed #e5e7eb;
    }

    /* 列表样式：带对号 */
    .jylost-list {
      list-style: none;
    }
    .jylost-list li {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 15px;
      color: #555;
      line-height: 1.7;
      margin-bottom: 8px;
    }
    .jylost-list li:last-child {
      margin-bottom: 0;
    }
    .jylost-list li i {
      color: #98d84e;
      font-size: 14px;
      flex-shrink: 0;
    }

    /* 底部备注文字 */
    .jylost-bottom-tip {
      font-size: 15px;
      color: #666;
      text-align: center;
      margin-top: 30px;
      line-height: 1.6;
    }


