@charset "utf-8";
/* CSS Document */

 /* 全局样式重置 */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "Microsoft Yahei", sans-serif;
        }

        /* 基础样式 */
        body {
            color: #333;
            background-color: #ffffff;
            line-height: 1.6;
        }

        .jy-home-container {
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .jy-home-section-title {
            text-align: center;
            margin-bottom: 40px;
        }

        .jy-home-section-title h2 {
            font-size: 32px;
            color: #2c3e50;
            margin-bottom: 10px;
        }

        .jy-home-section-title p {
            font-size: 16px;
            color: #7f8c8d;
        }

        .jy-home-btn {
            display: inline-block;
            padding: 12px 30px;
            background-color: #3498db;
            color: white;
            text-decoration: none;
            border-radius: 4px;
            transition: background-color 0.3s;
            border: none;
            cursor: pointer;
            font-size: 16px;
        }

        .jy-home-btn:hover {
            background-color: #2980b9;
        }

        .jy-home-text-center {
            text-align: center;
            margin: 40px 0;
        }

        /* 滚动动画基础样式 */
        .jy-home-section {
          
            transform: translateY(30px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .jy-home-section.animate {
            opacity: 1;
            transform: translateY(0);
        }

        /* 头部导航样式 - 保持原有命名 */
        header {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 999;
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .logo-area {
            display: flex;
            align-items: center;
        }

        .logo {
          
            height: 80px;
            background-color: #3498db;
            border-radius: 50%;
            margin-right: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 24px;
            font-weight: bold;
        }

       .logo-text h3 {
    font-size: 14px;
    color: #7f8c8d;
    font-weight: 500;
}

        .logo-text p {
            font-size: 14px;
            color: #7f8c8d;
        }

        nav ul {
            display: flex;
            list-style: none;
        }

        nav ul li {
            margin-left: 30px;
        }

        nav ul li a {
            text-decoration: none;
            color: #333;
            font-size: 16px;
            transition: color 0.3s;
        }

        nav ul li a:hover {
            color: #3498db;
        }

        /* 轮播图样式 */
        .jy-home-carousel {
            position: relative;
            width: 100%;
            height: calc(100vh - 110px);
            min-height: 500px;
            overflow: hidden;
        }

        .jy-home-carousel-item {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 0.8s ease, transform 0.8s ease;
            background-size: cover;
            background-position: center;
            transform: scale(1.1);
        }


        .jy-home-carousel-item.active {
            opacity: 1;
            transform: scale(1);
        }

        .jy-home-carousel-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            color: white;
            text-shadow: 0 2px 10px rgba(0,0,0,0.5);
            width: 100%;
            max-width: 1400px;
            padding: 0 20px;
        }

        .jy-home-carousel-content h1 {
            font-size: 48px;
            margin-bottom: 20px;
        }

        .jy-home-carousel-content p {
            font-size: 24px;
            margin-bottom: 30px;
        }

        /* 关于我们样式 */
        .jy-home-about {
            padding: 80px 0;
            background-color: white;
        }

        .jy-home-about-content {
            max-width: 1200px;
            margin: 0 auto 40px;
            font-size: 18px;
            line-height: 1.8;
            color: #555;
            text-align: center;
        }

        .jy-home-about-img {
            width: 100%;
            max-width: 1400px;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        }

        /* 产品展示1样式 */
        .jy-home-products-1 {
            padding: 80px 0;
            background-color: #f5f9fc;
        }

        .jy-home-products-grid-1 {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            margin-bottom: 50px;
        }

        .jy-home-product-card {
            text-align: center;
            background-color: white;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s;
        }

        .jy-home-product-card:hover {
            transform: translateY(-5px);
        }

        .jy-home-product-img {
            width: 100%;
            height: 300px;
            object-fit: cover;
            border-radius: 4px;
            margin-bottom: 20px;
        }

        .jy-home-product-card h3 {
            font-size: 20px;
            color: #2c3e50;
            margin-bottom: 10px;
        }

        .jy-home-product-card p {
            color: #7f8c8d;
            margin-bottom: 15px;
        }

        /* 视频区域样式 */
        .jy-home-video-section {
            padding: 80px 0;
            background-color: white;
        }

        .jy-home-video-container {
            width: 100%;
            max-width: 1400px;
            height: 600px;
            margin: 0 auto;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        }

        .jy-home-video-container video {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* 新闻区域样式 */
        .jy-home-news-section {
            padding: 80px 0;
            background-color: #f3f3f3;
        }

        .jy-home-news-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
            gap: 30px;
            margin-bottom: 50px;
        }

        .jy-home-news-card {
            display: flex;
            background-color: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
        }

        .jy-home-news-img-container {
            position: relative;
            flex: 0 0 200px;
        }

        .jy-home-news-date {
            position: absolute;
            top: 10px;
            left: 10px;
            background-color: rgba(52, 152, 219, 0.9);
            color: white;
            padding: 5px 10px;
            border-radius: 4px;
            font-size: 14px;
        }

        .jy-home-news-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .jy-home-news-content {
            padding: 20px;
            flex: 1;
        }

        .jy-home-news-content h3 {
            font-size: 18px;
            color: #2c3e50;
            margin-bottom: 10px;
        }

        .jy-home-news-content p {
            color: #7f8c8d;
            margin-bottom: 15px;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .jy-home-news-content a {
            color: #3498db;
            text-decoration: none;
            font-weight: 500;
        }

        .jy-home-news-content a:hover {
            text-decoration: underline;
        }

        /* 设备展示样式 */
        .jy-home-equipment {
            padding: 80px 0;
            background-color: white;
        }

        .jy-home-equipment-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            margin-bottom: 40px;
        }

        .jy-home-equipment-img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 4px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            transition: transform 0.3s;
        }

        .jy-home-equipment-img:hover {
            transform: scale(1.02);
        }

        /* 页脚样式 - 保持原有命名 */
        footer {
            background-color: rgb(244, 244, 244);
            color: white;
            padding: 60px 0 30px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
            max-width: 1400px;
            margin: 0 auto 40px;
            padding: 0 20px;
        }

        .footer-col h3 {
            font-size: 20px;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;    color: #333333;
        }

        .footer-col h3::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: 0;
            width: 50px;
            height: 2px;
            background-color: #666666;
        }

        .contact-info {
            list-style: none;
        }

        .contact-info li {
            margin-bottom: 15px;
            display: flex;
            align-items: center; color: #666666;
        }

.qrcode-col p {
    color: #666666;
}


        .contact-info li i {
            margin-right: 10px;
            color: #3498db;
        }

        .footer-menu {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 15px;
        }

        .footer-menu a {
            color: #666666;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-menu a:hover {
            color: #333333;
        }

        .qrcode-col {
            text-align: center;
        }

        .qrcode {
            width: 120px;
            height: 120px;
         
            margin: 0 auto 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 10px;
        }


  .qrcode img{
    width: 120px;
}


        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgb(189 189 189 / 10%);
            color: #838383;
            font-size: 14px;
            max-width: 1400px;
            margin: 0 auto;
            padding: 30px 20px 0;
        }

        /* 响应式样式 */
        @media (max-width: 1200px) {
            .jy-home-carousel-content h1 {
                font-size: 36px;
            }
            
            .jy-home-carousel-content p {
                font-size: 20px;
            }
            
            .jy-home-video-container {
                height: 500px;
            }
            
            .jy-home-equipment-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (max-width: 992px) {
            .header-container {
                flex-direction: column;
            }
            
            .logo-area {
                margin-bottom: 15px;
            }
            
            nav ul li {
                margin-left: 15px;
                margin-right: 15px;
            }
            
            .jy-home-carousel {
                height: 60vh;
            }
            
            .jy-home-news-card {
                flex-direction: column;
            }
            
            .jy-home-news-img-container {
                flex: 0 0 200px;
            }
            
            .jy-home-video-container {
                height: 400px;
            }
            
            .jy-home-equipment-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .jy-home-section-title h2 {
                font-size: 28px;
            }
            
            .jy-home-carousel-content h1 {
                font-size: 28px;
            }
            
            .jy-home-carousel-content p {
                font-size: 18px;
            }
            
            .footer-menu {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .jy-home-video-container {
                height: 300px;
            }
        }

        @media (max-width: 576px) {
            nav ul {
                flex-wrap: wrap;
                justify-content: center;
            }
            
            nav ul li {
                margin: 5px 10px;
            }
            
            .jy-home-carousel {
                height: 50vh;
            }
            
            .jy-home-about {
                padding: 40px 0;
            }
            
            .jy-home-products-1, .jy-home-video-section, .jy-home-news-section, .jy-home-equipment {
                padding: 40px 0;
            }
            
            .jy-home-equipment-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }



  .jy-about-container {
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .jy-about-section-title {
            text-align: center;
            margin-bottom: 40px;
        }

        .jy-about-section-title h2 {
            font-size: 36px;
            color: #2c3e50;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }

        .jy-about-section-title h2::after {
            content: "";
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background-color: #3498db;
        }

        .jy-about-section-title p {
               font-size: 18px;
    color: #333333;
    max-width: 1200px;
    margin: 0 auto;}

        /* 滚动动画基础样式 */
        .jy-about-section {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease, transform 0.8s ease;
            margin-bottom: 80px;
        }

        .jy-about-section.animate {
            opacity: 1;
            transform: translateY(0);
        }

        /* 顶部大图区域 */
        .jy-about-about-hero {
            position: relative;
            width: 100%;
            height: 800px;
            background-size: cover;
            background-position: center;
            margin-bottom: 80px;
        }

        .jy-about-hero-content {
            position: absolute;
            top: 20%;
            left: 50%;
            transform: translateX(-50%);
            width: 100%;
            max-width: 1400px;
            padding: 0 20px;
            color: white;
            text-shadow: 0 2px 10px rgba(0,0,0,0.5);
        }

        .jy-about-hero-title {
            font-size: 48px;
            margin-bottom: 20px;
        }

        .jy-about-hero-subtitle {
            font-size: 24px;
            margin-bottom: 60px;
            max-width: 800px;
        }

        /* 数字统计模块 */
        .jy-about-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-bottom: 80px;
        }

        .jy-about-stat-item {
            display: flex;
            align-items: center;
        }

        .jy-about-stat-number {
            font-size: 48px;
            font-weight: bold;
            margin-right: 15px;
            color: white;
        }

        .jy-about-stat-unit {
            font-size: 18px;
            color: white;
        }

        /* 位置导航 */
        .jy-about-breadcrumb {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            width: 100%;
            max-width: 1400px;
            padding: 0 20px;
            color: white;
            font-size: 16px;
        }

        .jy-about-breadcrumb a {
            color: white;
            text-decoration: none;
        }

        .jy-about-breadcrumb a:hover {
            text-decoration: underline;
        }

        .jy-about-breadcrumb span {
            margin: 0 10px;
        }

        /* 图文模块 */
        .jy-about-about-img {
            width: 100%;
            max-width: 1400px;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        }

        /* 图标展示模块 - 企业文化 */
        .jy-about-icon-section {
            position: relative;
            width: 100%;
            height: 600px;
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 80px;
        }

        .jy-about-icon-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
            max-width: 1400px;
            padding: 0 20px;
        }

        .jy-about-icon-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            width: 18%;
            position: relative;
        }

        /* 竖线分隔 - 关键修改 */
        .jy-about-icon-item:not(:last-child)::after {
            content: "";
            position: absolute;
            top: 10%;
            right: -10%;
            transform: translateX(-50%);
            width: 1px;
            height: 80%;
            background-color: rgba(255,255,255,0.5);
        }

        /* ICO图标样式 */
        .jy-about-icon {
            width: 80px;
            height: 80px;
           
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
           
            font-size: 48px;
            color: #ffffff;
        }

        /* 使用Font Awesome图标示例（需引入CDN） */
        .jy-about-icon i {
            font-size: 36px;
        }

        .jy-about-icon-title {
            font-size: 26px;
            color: white;
            font-weight: 500;
        }

        /* 发展历程模块 - 左右滚动形式 */
        .jy-about-timeline-container {
            max-width: 1400px;
            margin: 0 auto;
            overflow: hidden;
            position: relative;
        }

        .jy-about-timeline {
            display: flex;
            gap: 30px;
            padding: 20px 0;
            overflow-x: auto;
            scroll-behavior: smooth;
            scrollbar-width: none; /* 隐藏Firefox滚动条 */
            padding-bottom: 20px;
        }

        /* 隐藏Chrome滚动条 */
        .jy-about-timeline::-webkit-scrollbar {
            display: none;
        }

        /* 滚动按钮 */
        .jy-about-scroll-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 40px;
            height: 40px;
            background-color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            cursor: pointer;
            z-index: 10;
            font-size: 20px;
            color: #3498db;
            border: none;
            outline: none;
        }

        .jy-about-scroll-left {
            left: 10px;
        }

        .jy-about-scroll-right {
            right: 10px;
        }

        .jy-about-timeline-item {
            flex: 0 0 350px;
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
            padding: 30px;
        }

        .jy-about-timeline-year {
            font-size: 24px;
            font-weight: bold;
            color: #3498db;
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 2px solid #f5f5f5;
        }

        .jy-about-timeline-desc {
            color: #555;
            line-height: 1.8;
        }

        /* 特色模块 */
        .jy-about-feature-section {
            position: relative;
            width: 100%;
            min-height: 600px;
            background-size: cover;
            background-position: center;
            padding: 80px 0;
            margin-bottom: 40px;
        }

        .jy-about-feature-content {
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .jy-about-feature-title {
            text-align: center;
            color: white;
            margin-bottom: 60px;
        }

        .jy-about-feature-title h2 {
            font-size: 36px;
            margin-bottom: 15px;
        }

        .jy-about-feature-title p {
            font-size: 18px;
            max-width: 800px;
            margin: 0 auto;
        }

        .jy-about-feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
        }

        .jy-about-feature-card {
            background-color: rgba(255,255,255,0.9);
            padding: 40px;
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }

        .jy-about-feature-card h3 {
            font-size: 20px;
            color: #2c3e50;
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 2px solid #3498db;
        }

        .jy-about-feature-card p {
            color: #555;
            line-height: 1.8;
        }

        /* 响应式样式 */
        @media (max-width: 1200px) {
            .jy-about-hero-title {
                font-size: 40px;
            }
            
            .jy-about-hero-subtitle {
                font-size: 20px;
            }
            
            .jy-about-stat-number {
                font-size: 40px;
            }
            
            .jy-about-icon {
                width: 70px;
                height: 70px;
                font-size: 30px;
            }
        }

        @media (max-width: 992px) {
            .jy-about-about-hero {
                height: 600px;
            }
            
            .jy-about-hero-title {
                font-size: 36px;
            }
            
            .jy-about-stats {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .jy-about-icon-section {
                height: auto;
                padding: 60px 0;
            }
            
            .jy-about-icon-container {
                flex-wrap: wrap;
                justify-content: center;
            }
            
            .jy-about-icon-item {
                width: 45%;
                margin-bottom: 40px;
            }
            
            /* 移动端隐藏竖线 */
            .jy-about-icon-item:not(:last-child)::after {
                display: none;
            }
            
            .jy-about-timeline-item {
                flex: 0 0 300px;
            }
        }

        @media (max-width: 768px) {
            .jy-about-hero-title {
                font-size: 28px;
            }
            
            .jy-about-hero-subtitle {
                font-size: 18px;
            }
            
            .jy-about-stat-number {
                font-size: 36px;
            }
            
            .jy-about-icon-item {
                width: 100%;
            }
            
            .jy-about-feature-grid {
                grid-template-columns: 1fr;
            }
            
            .jy-about-timeline-item {
                flex: 0 0 280px;
            }
        }

        @media (max-width: 576px) {
            .jy-about-about-hero {
                height: 500px;
            }
            
            .jy-about-stats {
                grid-template-columns: 1fr;
            }
            
            .jy-about-section-title h2 {
                font-size: 28px;
            }
            
            .jy-about-feature-title h2 {
                font-size: 28px;
            }
            
            .jy-about-scroll-btn {
                width: 30px;
                height: 30px;
                font-size: 16px;
            }
        }


        .jy-newlist-container {
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .jy-newlist-section-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .jy-newlist-section-title h2 {
            font-size: 36px;
            color: #2c3e50;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }

        .jy-newlist-section-title h2::after {
            content: "";
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background-color: #3498db;
        }

        .jy-newlist-section-title p {
            font-size: 18px;
            color: #7f8c8d;
            max-width: 800px;
            margin: 0 auto;
        }

        /* 滚动动画基础样式 */
        .jy-newlist-section {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease, transform 0.8s ease;
            margin-bottom: 80px;
            padding: 40px 0;
        }

        .jy-newlist-section.animate {
            opacity: 1;
            transform: translateY(0);
        }

        /* 顶部大图区域 */
        .jy-newlist-about-hero {
            position: relative;
            width: 100%;
            height: 800px;
            background-size: cover;
            background-position: center;
            margin-bottom: 80px;
        }

        .jy-newlist-hero-content {
            position: absolute;
            top: 20%;
            left: 50%;
            transform: translateX(-50%);
            width: 100%;
            max-width: 1400px;
            padding: 0 20px;
            color: white;
            text-shadow: 0 2px 10px rgba(0,0,0,0.5);
        }

        .jy-newlist-hero-title {
            font-size: 48px;
            margin-bottom: 20px;
        }

        .jy-newlist-hero-subtitle {
            font-size: 24px;
            margin-bottom: 60px;
            max-width: 800px;
        }

        /* 位置导航 */
        .jy-newlist-breadcrumb {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            width: 100%;
            max-width: 1400px;
            padding: 0 20px;
            color: white;
            font-size: 16px;
        }

        .jy-newlist-breadcrumb a {
            color: white;
            text-decoration: none;
        }

        .jy-newlist-breadcrumb a:hover {
            text-decoration: underline;
        }

        .jy-newlist-breadcrumb span {
            margin: 0 10px;
        }

        /* 新闻列表样式 */
        .jy-newlist-news-list {
            display: flex;
            flex-direction: column;
            gap: 30px;
            margin-bottom: 60px;
        }

        .jy-newlist-news-item {
            display: flex;
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .jy-newlist-news-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
        }

        /* 图片容器 - 关键修改：确保无留白 */
        .jy-newlist-news-img {
            flex: 0 0 400px;
            height: 100%; /* 修改为100%高度，跟随父容器 */
            min-height: 250px; /* 保证最小高度 */
            overflow: hidden;
            position: relative; /* 添加相对定位 */
        }

        /* 图片样式 - 关键修改：完全铺满容器 */
        .jy-newlist-news-img img {
            position: absolute; /* 绝对定位 */
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover; /* 保持比例并覆盖容器 */
            object-position: center; /* 居中显示 */
            transition: transform 0.5s ease;
        }

        .jy-newlist-news-item:hover .jy-newlist-news-img img {
            transform: scale(1.05);
        }

        .jy-newlist-news-content {
            flex: 1;
            padding: 40px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .jy-newlist-news-title {
            font-size: 24px;
            color: #2c3e50;
            margin-bottom: 20px;
            font-weight: 600;
            line-height: 1.4;
        }

        .jy-newlist-news-desc {
            font-size: 16px;
            color: #555;
            line-height: 1.8;
            margin-bottom: 10px;
            flex: 1;
        }

        .jy-newlist-news-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
           
        }

        .jy-newlist-news-time {
            color: #7f8c8d;
            font-size: 14px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .jy-newlist-news-time i {
            color: #3498db;
        }

        .jy-newlist-news-more {
            display: inline-block;
            padding: 8px 20px;
            background-color: #3498db;
            color: white;
            text-decoration: none;
            border-radius: 4px;
            transition: background-color 0.3s ease;
            font-size: 14px;
        }

        .jy-newlist-news-more:hover {
            background-color: #2980b9;
        }

        /* 分页样式 */
        .jy-newlist-pagination {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 10px;
            margin-top: 40px;
        }

        .jy-newlist-page-btn {
            display: inline-block;
            width: 40px;
            height: 40px;
            line-height: 40px;
            text-align: center;
            border-radius: 4px;
            background-color: white;
            color: #555;
            text-decoration: none;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
            border: 1px solid #f0f0f0;
        }

        .jy-newlist-page-btn:hover {
            background-color: #f8f9fa;
            color: #3498db;
        }

        .jy-newlist-page-btn.active {
            background-color: #3498db;
            color: white;
            border-color: #3498db;
        }

        .jy-newlist-page-btn.prev,
        .jy-newlist-page-btn.next {
            width: auto;
            padding: 0 15px;
        }

        .jy-newlist-page-btn.disabled {
            opacity: 0.5;
            cursor: not-allowed;
            pointer-events: none;
        }

        /* 响应式样式 */
        @media (max-width: 1200px) {
            .jy-newlist-hero-title {
                font-size: 40px;
            }
            
            .jy-newlist-hero-subtitle {
                font-size: 20px;
            }
            
            .jy-newlist-news-img {
                flex: 0 0 350px;
            }
        }

        @media (max-width: 992px) {
            .jy-newlist-about-hero {
                height: 600px;
            }
            
            .jy-newlist-hero-title {
                font-size: 36px;
            }
            
            .jy-newlist-news-item {
                flex-direction: column;
            }
            
            .jy-newlist-news-img {
                flex: 0 0 250px;
                width: 100%;
                height: 250px; /* 移动端固定高度 */
            }
            
            .jy-newlist-news-content {
                padding: 30px;
            }
        }

        @media (max-width: 768px) {
            .jy-newlist-hero-title {
                font-size: 28px;
            }
            
            .jy-newlist-hero-subtitle {
                font-size: 18px;
            }
            
            .jy-newlist-section-title h2 {
                font-size: 28px;
            }
            
            .jy-newlist-news-title {
                font-size: 20px;
            }
            
            .jy-newlist-news-content {
                padding: 20px;
            }
        }

        @media (max-width: 576px) {
            .jy-newlist-about-hero {
                height: 500px;
            }
            
            .jy-newlist-news-img {
                flex: 0 0 200px;
                height: 200px; /* 移动端固定高度 */
            }
            
            .jy-newlist-pagination {
                flex-wrap: wrap;
                gap: 8px;
            }
            
            .jy-newlist-page-btn {
                width: 35px;
                height: 35px;
                line-height: 35px;
                font-size: 14px;
            }
        }



        .jy-news-xq-container {
            width: 100%;
            max-width: 1400px; /* 全宽最大1400px */
            margin: 0 auto;
            padding: 0 20px;
        }

        /* 滚动动画基础样式 */
        .jy-news-xq-section {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease, transform 0.8s ease;
            margin-bottom: 80px;
            padding: 40px 0;
        }

        .jy-news-xq-section.animate {
            opacity: 1;
            transform: translateY(0);
        }

        /* 顶部大图区域 */
        .jy-news-xq-about-hero {
            position: relative;
            width: 100%;
            height: 500px; /* 详情页高度适当降低 */
            background-size: cover;
            background-position: center;
            margin-bottom: 60px;
        }

        .jy-news-xq-hero-content {
            position: absolute;
            top: 20%;
            left: 50%;
            transform: translateX(-50%);
            width: 100%;
            max-width: 1400px;
            padding: 0 20px;
            color: white;
            text-shadow: 0 2px 10px rgba(0,0,0,0.5);
        }

        .jy-news-xq-hero-title {
            font-size: 48px;
            margin-bottom: 20px;
        }

        .jy-news-xq-hero-subtitle {
            font-size: 24px;
            margin-bottom: 60px;
            max-width: 800px;
        }

        /* 位置导航 */
        .jy-news-xq-breadcrumb {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            width: 100%;
            max-width: 1400px;
            padding: 0 20px;
            color: white;
            font-size: 16px;
        }

        .jy-news-xq-breadcrumb a {
            color: white;
            text-decoration: none;
        }

        .jy-news-xq-breadcrumb a:hover {
            text-decoration: underline;
        }

        .jy-news-xq-breadcrumb span {
            margin: 0 10px;
        }

        /* 文章详情样式 - 移除侧边栏后的布局 */
        .jy-news-xq-detail-wrapper {
            margin-bottom: 60px;
        }

        /* 主内容区 - 全宽显示 */
        .jy-news-xq-detail-main {
            width: 100%;
        }

        .jy-news-xq-detail-card {
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
            padding: 60px;
            width: 100%;
        }

        .jy-news-xq-detail-title {
            font-size: 32px;
            color: #2c3e50;
            margin-bottom: 30px;
            line-height: 1.4;
            font-weight: 600;
        }

        .jy-news-xq-detail-meta {
            display: flex;
            align-items: center;
            gap: 20px;
            padding-bottom: 20px;
            margin-bottom: 30px;
            border-bottom: 1px solid #f0f0f0;
            color: #7f8c8d;
            font-size: 14px;
        }

        .jy-news-xq-detail-meta-item {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .jy-news-xq-detail-meta i {
            color: #3498db;
        }

        .jy-news-xq-detail-content {
            font-size: 18px;
            color: #555;
        }

        .jy-news-xq-detail-content p {
            margin-bottom: 25px;
            text-align: justify;
        }

        .jy-news-xq-detail-content img {
            max-width: 100%;
            border-radius: 8px;
            margin: 30px 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .jy-news-xq-detail-content h3 {
            font-size: 24px;
            color: #2c3e50;
            margin: 40px 0 20px;
            font-weight: 600;
        }

        .jy-news-xq-detail-content ul,
        .jy-news-xq-detail-content ol {
            margin: 0 0 25px 30px;
        }

        .jy-news-xq-detail-content li {
            margin-bottom: 10px;
        }

        /* 上一篇下一篇 */
        .jy-news-xq-article-nav {
            display: flex;
            justify-content: space-between;
            padding: 30px 0;
            margin-top: 40px;
            border-top: 1px solid #f0f0f0;
        }

        .jy-news-xq-article-nav-item {
            display: flex;
            align-items: center;
            gap: 10px;
            color: #555;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .jy-news-xq-article-nav-item:hover {
            color: #3498db;
        }

        .jy-news-xq-article-nav-text {
            max-width: 200px;
        }

        .jy-news-xq-article-nav-label {
            font-size: 14px;
            color: #7f8c8d;
            margin-bottom: 5px;
        }

        .jy-news-xq-article-nav-title {
            font-size: 16px;
            line-height: 1.4;
        }

        /* 响应式样式 */
        @media (max-width: 1200px) {
            .jy-news-xq-hero-title {
                font-size: 40px;
            }
            
            .jy-news-xq-hero-subtitle {
                font-size: 20px;
            }
        }

        @media (max-width: 992px) {
            .jy-news-xq-about-hero {
                height: 400px;
            }
            
            .jy-news-xq-hero-title {
                font-size: 36px;
            }
            
            .jy-news-xq-detail-card {
                padding: 40px;
            }
        }

        @media (max-width: 768px) {
            .jy-news-xq-hero-title {
                font-size: 28px;
            }
            
            .jy-news-xq-hero-subtitle {
                font-size: 18px;
            }
            
            .jy-news-xq-detail-card {
                padding: 30px 20px;
            }
            
            .jy-news-xq-detail-title {
                font-size: 24px;
            }
            
            .jy-news-xq-detail-content {
                font-size: 16px;
            }
            
            .jy-news-xq-article-nav {
                flex-direction: column;
                gap: 20px;
            }
        }

        @media (max-width: 576px) {
            .jy-news-xq-about-hero {
                height: 300px;
            }
            
            .jy-news-xq-detail-meta {
                flex-wrap: wrap;
            }
        }

 .jy-cpliesy-container {
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative; /* 为图片容器定位做参考 */
        }

        /* 滚动动画基础样式 */
        .jy-cpliesy-section {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease, transform 0.8s ease;
          
            padding: 40px 0;
        }

        .jy-cpliesy-section.animate {
            opacity: 1;
            transform: translateY(0);
        }

        /* 顶部大图区域 - 保持原有样式 */
        .jy-cpliesy-about-hero {
            position: relative;
            width: 100%;
            height: 500px;
            background-size: cover;
            background-position: center;
            margin-bottom: 60px;
        }

        .jy-cpliesy-hero-content {
            position: absolute;
            top: 20%;
            left: 50%;
            transform: translateX(-50%);
            width: 100%;
            max-width: 1400px;
            padding: 0 20px;
            color: white;
            text-shadow: 0 2px 10px rgba(0,0,0,0.5);
        }

        .jy-cpliesy-hero-title {
            font-size: 48px;
            margin-bottom: 20px;
        }

        .jy-cpliesy-hero-subtitle {
            font-size: 24px;
            margin-bottom: 60px;
            max-width: 800px;
        }

        /* 位置导航 */
        .jy-cpliesy-breadcrumb {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            width: 100%;
            max-width: 1400px;
            padding: 0 20px;
            color: white;
            font-size: 16px;
        }

        .jy-cpliesy-breadcrumb a {
            color: white;
            text-decoration: none;
        }

        .jy-cpliesy-breadcrumb a:hover {
            text-decoration: underline;
        }

        .jy-cpliesy-breadcrumb span {
            margin: 0 10px;
        }


        .jy-cpliesy-detail-main {
            width: 100%;
        }

        .jy-cpliesy-detail-card {
            background-color: white;
            border-radius: 8px;
           
            
            width: 100%;
            position: relative;
        }

        /* 页面主标题 - 居中 */
        .product-page-title {
            text-align: center;
            margin-bottom: 50px;
            padding: 0 20px;
            /* 标题仍保持在容器内 */
            max-width: 1400px;
            margin-left: auto;
            margin-right: auto;
        }

        .product-main-title {
            font-size: 36px;
            color: #2c3e50;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .product-subtitle {
            font-size: 18px;
            color: #7f8c8d;
            max-width: 800px;
            margin: 0 auto;
        }

        /* 产品主图容器 - 突破容器限制，全屏100%的80%宽度 */
        .product-main-img-container {
            position: relative;
            width: 80vw; /* 使用视口宽度单位，直接对应屏幕的80% */
            max-width: none; /* 取消最大宽度限制 */
            margin: 0 auto; /* 水平居中（如需左对齐可改为 margin-left: 0） */
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
            /* 确保容器脱离父容器的宽度限制 */
            left: 50%;
            transform: translateX(-50%);
        }

        .product-main-img {
            width: 100%;
            height: 500px;
            object-fit: cover;
        }

        /* 图片上层居左标题 */
        .product-img-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            padding: 60px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            background: linear-gradient(90deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.1) 100%);
            color: white;
        }

        .product-img-title {
            font-size: 42px;
            margin-bottom: 20px;
            font-weight: 700;
            max-width: 600px;
        }

        .product-img-desc {
            font-size: 20px;
            max-width: 500px;
            line-height: 1.6;
        }

        /* 产品模块容器 - 覆盖图片一部分，同时保持在容器内 */
        .product-modules-container {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            width: 90%;
            max-width: 1400px; /* 模块容器仍限制在1400px内 */
            margin: 0 auto;
            position: relative;
            top: -60px;
            z-index: 10;
        }

        /* 产品模块样式 */
        .product-module {
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.12);
            padding: 40px 30px;
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .product-module:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 30px rgba(0,0,0,0.15);
        }

        .module-title {
            font-size: 24px;
            color: #2c3e50;
            margin-bottom: 15px;
            font-weight: 600;
        }

        /* 模块标题下方横线 */
        .module-divider {
            width: 60px;
            height: 3px;
            background-color: #3498db;
            margin: 0 auto 25px;
            border-radius: 3px;
        }

        .module-content {
            font-size: 16px;
            color: #7f8c8d;
            line-height: 1.8;
        }

        /* 响应式样式 */
        @media (max-width: 1200px) {
            .jy-cpliesy-hero-title {
                font-size: 40px;
            }
            
            .jy-cpliesy-hero-subtitle {
                font-size: 20px;
            }

            .product-main-title {
                font-size: 32px;
            }

            .product-img-title {
                font-size: 36px;
            }

            .product-img-desc {
                font-size: 18px;
            }

            .product-modules-container {
                grid-template-columns: repeat(2, 1fr);
                top: -50px;
                width: 95%;
            }

            .product-main-img {
                height: 450px;
            }
        }

        @media (max-width: 992px) {
            .jy-cpliesy-about-hero {
                height: 400px;
            }
            
            .jy-cpliesy-hero-title {
                font-size: 36px;
            }

            .product-main-img-container {
                width: 90vw; /* 平板端改为屏幕90% */
            }

            .product-img-overlay {
                padding: 40px;
            }

            .product-img-title {
                font-size: 32px;
            }
        }

        @media (max-width: 768px) {
            .jy-cpliesy-hero-title {
                font-size: 28px;
            }
            
            .jy-cpliesy-hero-subtitle {
                font-size: 18px;
            }

            .product-main-title {
                font-size: 28px;
            }

            .product-subtitle {
                font-size: 16px;
            }

            .product-main-img {
                height: 400px;
            }

            .product-img-overlay {
                background: linear-gradient(180deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.1) 100%);
                padding: 30px;
            }

            .product-img-title {
                font-size: 28px;
            }

            .product-img-desc {
                font-size: 16px;
            }
        }

        @media (max-width: 576px) {
            .jy-cpliesy-about-hero {
                height: 300px;
            }

            .product-main-img-container {
                width: 100vw; /* 移动端改为屏幕100% */
                border-radius: 0; /* 移动端取消圆角，全屏显示 */
            }

            .product-main-img {
                height: 300px;
            }

            .product-modules-container {
                grid-template-columns: 1fr;
                top: -40px;
                gap: 20px;
                width: 100%;
            }

            .product-module {
                padding: 30px 20px;
            }

            .module-title {
                font-size: 20px;
            }

            .product-img-overlay {
                padding: 20px;
            }

            .product-img-title {
                font-size: 24px;
            }
        }


        /* 统一命名：jy-ert- 开头 */
        .jy-ert-title {
            text-align: center;
            font-size: 28px;
            color: #2c3e50;
            margin-bottom: 40px;
            font-weight: bold;
        }

        .jy-ert-card-box {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            margin-bottom: 40px;
        }

        .jy-ert-card {
            background: #fff;
            border-radius: 16px;
            padding: 28px 24px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.06);
            transition: transform 0.2s ease;
            text-align: center;
        }

        .jy-ert-card:hover {
            transform: translateY(-4px);
        }

        .jy-ert-card-header {
            margin-bottom: 16px;
            text-align: center;
        }

        .jy-ert-card-title {
            font-size: 20px;
            font-weight: bold;
            color: #2c3e50;
        }

        .jy-ert-card-desc {
            font-size: 15px;
            line-height: 1.75;
            color: #555;
            margin-bottom: 12px;
            text-align: center;
        }

        /* 证书链接样式 */
        .jy-ert-cert-link {
            display: inline-block;
            color: #1890ff;
            font-size: 15px;
            text-decoration: none;
            font-weight: 500;
        }

        .jy-ert-cert-link:hover {
            text-decoration: underline;
        }


.jjf{ 
            padding: 30px 20px;
            max-width: 1320px;
            margin: 0 auto; }


/* 外层容器：控制可视区域 + 隐藏溢出 */
    .jy-gsyhh-wrapper {
     overflow: hidden;
    background: #f8f9fa;
    padding: 20px 0;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    }

    /* 滚动轨道：承载所有图片，实现动画 */
    .jy-gsyhh-track {
      display: flex;
      width: max-content;
      /* 核心：丝滑无限滚动动画 */
      animation: jyGsyhhScroll 30s linear infinite;
    }

    /* 悬停暂停 */
    .jy-gsyhh-wrapper:hover .jy-gsyhh-track {
      animation-play-state: paused;
    }

    /* 图片项样式 */
    .jy-gsyhh-item {
      width: 360px;
      height: 200px;
      margin: 0 15px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: #fff;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.08);
      overflow: hidden;
      transition: transform 0.3s ease;
    }

    /* 图片悬停上浮效果 */
    .jy-gsyhh-item:hover {
      transform: translateY(-4px);
    }

    .jy-gsyhh-item img {
      width: 100%;
      height: 100%;
      object-fit: contain;
    }

    /* 核心丝滑滚动动画 */
    @keyframes jyGsyhhScroll {
      0% {
        transform: translateX(0);
      }
      100% {
        transform: translateX(-50%);
      }
    }

      /* 页面容器 */
        .jy-223-container {
            max-width: 1200px;
            margin: 30px auto;
            padding: 0 20px;
        }

        .jy-223-title {
            text-align: center;
            margin-bottom: 30px;
            color: #333;
            font-size: 24px;
        }

        /* 图片列表网格布局 */
        .jy-223-image-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
        }

        /* 图片项样式 - 图片完整显示 */
        .jy-223-image-item {
            width: 100%;
            height: auto;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
            cursor: pointer;
            transition: transform 0.3s ease;
        }

        .jy-223-image-item img {
            width: 100%;
            height: auto;
            display: block;
            object-fit: contain;
        }

        .jy-223-image-item:hover {
            transform: translateY(-5px);
        }

        /* 放大预览遮罩层 */
        #jy-223-preview-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.9);
            display: none;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            cursor: zoom-out;
        }

        /* 预览图片 */
        #jy-223-preview-img {
            max-width: 90%;
            max-height: 90%;
            object-fit: contain;
            border-radius: 4px;
        }

        /* 关闭按钮 */
        #jy-223-close-btn {
            position: absolute;
            top: 20px;
            right: 30px;
            color: white;
            font-size: 40px;
            cursor: pointer;
            user-select: none;
        }




 .jy-lxwmmm-container {
            max-width: 1200px;
            margin: 50px auto;
            padding: 0 20px;
        }
        .jy-lxwmmm-page-title {
            text-align: center;
            font-size: 32px;
            color: #2c3e50;
            margin-bottom: 40px;
            padding-bottom: 10px;
            border-bottom: 2px solid #3498db;
            display: inline-block;
        }
        .jy-lxwmmm-contact-wrapper {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            background: #fff;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            padding: 40px;
        }
        /* 左侧联系信息 */
        .jy-lxwmmm-contact-info {
            flex: 1;
            min-width: 300px;
        }
        .jy-lxwmmm-contact-info h2 {
            font-size: 24px;
            color: #2c3e50;
            margin-bottom: 25px;
        }
        .jy-lxwmmm-info-item {
            margin-bottom: 20px;
            display: flex;
            align-items: flex-start;
            gap: 15px;
        }
        .jy-lxwmmm-info-item .jy-lxwmmm-icon {
            width: 24px;
            height: 24px;
            color: #3498db;
            margin-top: 3px;
        }
        .jy-lxwmmm-info-item .jy-lxwmmm-text h3 {
            font-size: 18px;
            color: #34495e;
            margin-bottom: 5px;
        }
        .jy-lxwmmm-info-item .jy-lxwmmm-text p {
            font-size: 16px;
            color: #555;
        }
        .jy-lxwmmm-info-item a {
            color: #3498db;
            text-decoration: none;
        }
        .jy-lxwmmm-info-item a:hover {
            text-decoration: underline;
        }
        /* 右侧地图区域 */
        .jy-lxwmmm-map-area {
            flex: 1;
            min-width: 300px;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .jy-lxwmmm-map-area h2 {
            font-size: 24px;
            color: #2c3e50;
            margin-bottom: 10px;
        }
        .jy-lxwmmm-map-link {
            display: inline-block;
            padding: 12px 24px;
            background-color: #3498db;
            color: #fff;
            text-decoration: none;
            border-radius: 6px;
            font-weight: 500;
            text-align: center;
            transition: background-color 0.3s;
        }
        .jy-lxwmmm-map-link:hover {
            background-color: #2980b9;
        }
        .jy-lxwmmm-map-iframe {
            width: 100%;
            height: 400px;
            border: none;
            border-radius: 8px;
        }
        /* 响应式适配 */
        @media (max-width: 768px) {
            .jy-lxwmmm-contact-wrapper {
                padding: 25px;
            }
            .jy-lxwmmm-page-title {
                font-size: 26px;
            }
            .jy-lxwmmm-map-iframe {
                height: 300px;
            }
        }



  /* 外层容器 */
        .jy365-container {
            max-width: 1400px;
            margin: 40px auto;
            padding: 0 20px;
            display: flex;
            justify-content: center;
            align-items: stretch;
            gap: 30px;
            flex-wrap: wrap;
        }

        /* 单个模块 */
        .jy365-section {
            width: 270px;
            display: flex;
            flex-direction: column;
        }

        /* 主标题 */
        .jy365-main-title {
            font-size: 22px;
            font-weight: bold;
            color: #222;
            margin-bottom: 10px;
            text-align: center;
        }

        /* 小标题 靠左 */
        .jy365-sub-title {
            font-size: 16px;
            color: #555;
            margin-bottom: 8px;
            text-align: left;
            padding-left: 10px;
        }

        /* 图片容器 */
        .jy365-img-box {
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 10px;
            flex-wrap: wrap;
        }

        /* 图片基础样式 */
        .jy365-img-box img {
            width: 80px;
            object-fit: cover;
            border-radius: 6px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
            cursor: pointer;
            transition: transform 0.2s;
        }
        .jy365-img-box img:hover {
            transform: scale(1.05);
        }

        /* 三图布局：中间高 */
        .jy365-middle-img {
            height: 110px;
        }
        .jy365-side-img {
            height: 90px;
        }

        /* 第3、4个模块单图：自定义宽高 */
        .jy365-single-img {
            width: 170px !important;
            height: 200px !important;
        }

        /* 点击放大弹窗样式 */
        .jy365-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;
        }
        /* 🔥 放大图：显示原图尺寸，同时不超出屏幕 */
        .jy365-modal img {
            width: auto;
            height: auto;
            max-width: 95%;
            max-height: 95%;
            border-radius: 8px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.3);
        }
        .jy365-modal-close {
            position: absolute;
            top: 20px;
            right: 30px;
            font-size: 40px;
            color: #fff;
            cursor: pointer;
            user-select: none;
        }