@charset "utf-8";
/* CSS Document */
  /* 全局样式 */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
             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;
        }
       

html, body {
  overflow-x: hidden;
  width: 100%;
  margin: 0;
  padding: 0;
}

            /* 创建一个全屏覆盖的容器 */
    .fullscreen-center {
     
      width: 100vw;
    
      display: flex;
      justify-content: center;
      align-items: center;
      pointer-events: none; /* 可选：防止遮挡页面其他交互 */
          margin-top: 30px;       /* 确保在最上层，按需调整 */
    }

    /* 按钮容器 */
    .button-container {
      display: flex;
      gap: 22px;
      pointer-events: auto; /* 恢复按钮可点击 */
    }

    /* 链接按钮样式 */
    .button-container a {
      display: inline-block;
      padding: 12px 24px;
      font-size: 16px;
      font-weight: bold;
      text-decoration: none;
      color: white;
      background-color: #007bff;
      border-radius: 6px;
      text-align: center;
      transition: background-color 0.2s ease;
    }

    .button-container a:hover {
      background-color: #0056b3;
    }


        /* 导航栏样式 */
        .jy-home-navbar {
            height: 95px;
            background: linear-gradient(135deg, #090012 0%, #00358f 100%);
            display: flex;
            justify-content: space-around;
            align-items: center;
            padding: 0 5%;
          
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .jy-home-logo {
            font-size: 24px;
            font-weight: bold;
            color: white;
            display: flex;
            align-items: center;
        }
        
        .jy-home-logo-icon {
            margin-right: 10px;
            font-size: 28px;
        }
        
        .jy-home-nav-menu {
            display: flex;
            list-style: none;
            position: relative;
        }
        
        .jy-home-nav-menu li {
            margin: 0 50px;
            position: relative;
        }
        
        .jy-home-nav-menu a {
            color: white;
            text-decoration: none;
            font-size: 18px;
            transition: all 0.3s ease;
            padding: 8px 2px;
            border-radius: 4px;
        }
        


	     /* 内容部分样式 - 全屏显示 */
        .jy-hometabb-content-section {
            padding: 40px 5%;
            text-align: center;
               background: linear-gradient(90deg, #040d2e 0%, #132c87 100%);
            width: 100vw;
            margin-left: calc(-50vw + 50%);
        }
        
        .jy-hometabb-section-title {
            font-size: 48px;
            margin-bottom: 20px;
            background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }


.jy-newhead-mobile-special-menu {
    display: none!important;
}




        
        .jy-hometabb-section-subtitle {
            font-size: 20px;
            color: #666;
            margin-bottom: 60px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.6;
        }
        
        /* Tab菜单样式 */
        .jy-hometabb-tabs {
            display: flex;
            justify-content: center;
            margin-bottom: 80px;
            gap: 120px;
        }
        
        .jy-hometabb-tab-btn {
            padding: 18px 68px;
            background: white;
            border: none;
            border-radius: 50px;
            font-size: 20px;
            font-weight: 500;
            color: #666;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
        }
        
        .jy-hometabb-tab-btn:hover {
            color: #6a11cb;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
        }
        
        .jy-hometabb-tab-btn.active {
            background: linear-gradient(86deg, #4a47e9 10%, #55d280 90%);
            color: white;
            box-shadow: 0 8px 20px rgba(106, 17, 203, 0.3);
        }
        
        /* Tab内容区域 */
        .jy-hometabb-tab-content {
            display: none;
         
            margin: 0 auto;
            background: rgba(255, 255, 255, 0.08);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            animation: fadeIn 0.5s ease;
        }
        
        .jy-hometabb-tab-content.active {
            display: flex;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        /* 左侧内容区域 */
        .jy-hometabb-tab-text {
            flex: 1;
            padding: 50px;
            text-align: left;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .jy-hometabb-tab-title {
            font-size: 32px;
            margin-bottom: 20px;
            color: #ffffff;
            position: relative;
            padding-bottom: 15px;
        }
        
        .jy-hometabb-tab-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 4px;
            background: linear-gradient(to right, #6a11cb, #2575fc);
            border-radius: 2px;
        }
        
        .jy-hometabb-tab-description {
            color: #ffffff;
            line-height: 1.7;
            margin-bottom: 30px;
            font-size: 14px;
        }
        
        .jy-hometabb-feature-list {
            list-style: none;
            margin-bottom: 30px;
        }
        
        .jy-hometabb-feature-list li {
            padding: 10px 0;
            color: #555;
            position: relative;
            padding-left: 30px;
        }
        
        .jy-hometabb-feature-list li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #6a11cb;
            font-weight: bold;
            font-size: 18px;
        }
        
        .jy-hometabb-tab-action {
            display: inline-block;
            padding: 12px 30px;

            background: linear-gradient(86deg, #4a47e9 0%, #55d280 80%);
            color: white;
            text-decoration: none;
            border-radius: 5px;
            font-weight: 500;
            transition: all 0.3s ease;
           align-self: flex-start;
        font-size: 14px;
        }
        
        .jy-hometabb-tab-action:hover {
            background: linear-gradient(to right, #2575fc, #6a11cb);
            box-shadow: 0 5px 15px rgba(106, 17, 203, 0.3);
            transform: translateY(-3px);
        }
        
        /* 右侧图片区域 */
        .jy-hometabb-tab-image {
            flex: 1;
            overflow: hidden;
            position: relative;
        }
        
        .jy-hometabb-tab-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .jy-hometabb-tab-content:hover .jy-hometabb-tab-image img {
            transform: scale(1.05);
        }
        
        /* 响应式设计 */
        @media (max-width: 1792px) {
         
            
            .jy-hometabb-tab-text {
                padding: 40px;
            }
            
         
            .jy-hometabb-tabs {
                flex-wrap: wrap;    gap: 18px;
            }
        }
        
        @media (max-width: 768px) {
            .jy-hometabb-section-title {
                font-size: 36px;
            }
            
            .jy-hometabb-section-subtitle {
                font-size: 18px;
            }
            
            .jy-hometabb-tab-btn {
                padding: 12px 25px;
                font-size: 16px;
            }
            
            .jy-hometabb-tab-text {
                padding: 30px;
            }
            
            .jy-hometabb-tab-title {
                font-size: 28px;
            }
        }
        
        @media (max-width: 480px) {
            .jy-hometabb-section-title {
                font-size: 28px;
            }
            
            .jy-hometabb-section-subtitle {
                font-size: 16px;
            }
            
            .jy-hometabb-tab-btn {
                padding: 10px 20px;
                font-size: 14px;
            }
            
            .jy-hometabb-tab-text {
                padding: 25px;
            }
            
            .jy-hometabb-tab-title {
                font-size: 18px;
            }
        }	 










 /* 导航栏样式 */
        .jy-newhead-navbar {
            background: linear-gradient(135deg, #090012 0%, #00358f 100%);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
        }

        .jy-newhead-nav-container {
          
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 5% 0 5%;
            height: 95px;
            position: relative;
        }

        /* Logo样式 */
        .jy-newhead-logo {
            display: flex;
            align-items: center;
            padding-left: 20px;
            flex-shrink: 0;
        }

        .jy-newhead-logo-img {
            height: 40px;
            width: auto;
        }

        /* 主菜单样式 */
        .jy-newhead-nav-menu {
            display: flex;
            list-style: none;
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
        }

     
.jy-newhead-nav-item {
    position: relative;
    margin: 0 16px;
}



/* 当视口宽度 > 1730px 时覆盖默认样式 */
@media (min-width: 1731px) {
    .jy-newhead-nav-item {
        margin: 0 46px;
    }
	
	
	.jy-home-tab-menu-item {
    display: flex;
    align-items: center;
    padding: 20px 85px;
    margin: 0 20px;
    background: white;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s 
ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
	
	
	
	.jy-home-banner-title {
    font-size: 72px!important;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgb(0 0 0 / 87%);
    color: #ffffff;
}
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
}




@media (min-width: 1024px) {
.jy-newhead-mobile-special-menu { display:none}
}



        .jy-newhead-nav-link {
            color: #fff;
            text-decoration: none;
            font-weight: 500;
            padding: 40px 0;
            display: flex;
            align-items: center;
            transition: color 0.3s;
        }

        .jy-newhead-nav-link:hover {
            color: #4da6ff;
        }

        .jy-newhead-nav-link i {
            margin-left: 5px;
            font-size: 14px;
            transition: transform 0.3s;
        }

        /* 二级菜单样式 */
        .jy-newhead-dropdown-menu {
            position: absolute;
            top: 98px;
            left: 0;
            background: #ffffff;
            min-width: 200px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            border-radius: 0 0 5px 5px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: all 0.3s ease;
            z-index: 1001;
            list-style: none; 
        }

        .jy-newhead-dropdown-item {
            padding: 12px 20px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .jy-newhead-dropdown-item:last-child {
            border-bottom: none;
        }

        .jy-newhead-dropdown-link {
            color: #333333;
            text-decoration: none;
            display: block;
            transition: color 0.3s; transition: transform 0.3s;
        }

      .jy-newhead-dropdown-link:hover {
    color: #4da6ff;
    transform: translateX(-10px);
}

        /* 悬停显示二级菜单 */
        .jy-newhead-nav-item:hover .jy-newhead-dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .jy-newhead-nav-item:hover .jy-newhead-nav-link i {
            transform: rotate(180deg);
        }

        /* 右侧菜单项样式 - 靠右显示 */
        .jy-newhead-nav-right {
            display: flex;
            align-items: center;
            height: 100%;
            margin-left: auto;
            margin-right: 0;
            padding-right: 0;
        }

        .jy-newhead-special-menu {
            background: linear-gradient(90deg, rgba(73, 64, 238, 1) 0%,rgba(86, 213, 126, 1) 100%);
            color: white;
            padding: 10px 30px;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s;
            height: 100%;
            display: flex;
            align-items: center;
            border-radius: 0;    font-size: 20px;
        }

        .jy-newhead-special-menu:hover {
            background: linear-gradient(135deg, #ff8e53 0%, #ff6b6b 100%);
            color: white;
        }

        /* 汉堡菜单按钮 */
        .jy-newhead-hamburger {
            display: none;
            cursor: pointer;
            background: none;
            border: none;
            font-size: 24px;
            color: #fff;
            padding-right: 20px;
        }

        /* 移动端样式 */
        @media screen and (max-width: 968px) {
            .jy-newhead-hamburger {
                display: block;
            }

            .jy-newhead-nav-menu {
                position: fixed;
                top: 70px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 70px);
                background: linear-gradient(135deg, #090012 0%, #00358f 100%);
                flex-direction: column;
                align-items: center;
                padding-top: 30px;
                transition: left 0.5s ease;
                overflow-y: auto;
                transform: none;
                position: fixed;
            }

            .jy-newhead-nav-menu.active {
                left: 0;
            }

            .jy-newhead-nav-item {
                margin: 10px 0;
                width: 80%;
                text-align: center;
            }

            .jy-newhead-nav-link {
                justify-content: center;
                padding: 5px 0 25px 0;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
                width: 100%;
            }

            .jy-newhead-dropdown-menu {
                position: static;
                opacity: 1;
                visibility: visible;
                transform: none;
                box-shadow: none;
                background: #ffffff;
                width: 100%;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.3s ease;
                border-radius: 0;
               
            }

            .jy-newhead-dropdown-menu.active {
                max-height: 300px;
            }

            .jy-newhead-nav-right {
                display: none;
            }

            .jy-newhead-mobile-special-menu {
                display: block;
                background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 100%);
                color: white;
                padding: 15px 20px;
                text-decoration: none;
                font-weight: 600;
                margin-top: 20px;
                text-align: center;
                width: 80%;
                border-radius: 0;
            }
        }












        
        /* 产品及服务下拉菜单 - 全屏宽修复 */
           /* 产品及服务下拉菜单 - 修复悬停问题 */
        .jy-home-dropdown-menu {
          
            width: 200;
            height: 400px;
            background: rgba(255, 255, 255, 0.98);
            display: none;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            z-index: 999;
            overflow: hidden;
        }
        
        .jy-home-dropdown-menu.active {
            display: flex;
        }
        
        .jy-home-dropdown-content {
            width: 100%;
            height: 100%;
           
            max-width: 100%;
        }
        
        .jy-home-dropdown-left {
           
            padding: 50px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            background: rgba(249, 249, 249, 0.9);
        }
        
        .jy-home-dropdown-title {
            font-size: 32px;
            margin-bottom: 30px;
            color: #333;
        }
        
        .jy-home-dropdown-links {
            list-style: none;
        }
        
        .jy-home-dropdown-links li {
            margin: 15px 0;
        }
        
        .jy-home-dropdown-links a {
            font-size: 18px;
            color: #666;
            text-decoration: none;
            transition: all 0.3s ease;
            display: block;
            padding: 8px 0;
        }
        
        .jy-home-dropdown-links a:hover {
            color: #6a11cb;
            padding-left: 10px;
        }
        
        .jy-home-dropdown-right {
            width: 70%;
            display: flex;
            padding: 30px;
            background: rgba(255, 255, 255, 0.95);
        }
        
        .jy-home-dropdown-img {
            flex: 1;
            margin: 0 15px;
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .jy-home-dropdown-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.5s ease;
        }
        
        .jy-home-dropdown-img:hover img {
            transform: scale(1.05);
        }
        
        .jy-home-img-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 20px;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
            color: white;
            font-size: 18px;
            text-align: center;
        }
        
        .jy-home-contact-btn {
                background: linear-gradient(to right, #4b4fe3, #55c68a);
    padding: 12px 45px;
            border-radius: 0;
            font-weight: bold;
            transition: all 0.3s ease;
            color: white;
            text-decoration: none;
            height: 95px;
            display: flex;
            align-items: center;
            margin-right: -5%;
            position: relative;
            box-shadow: -2px 0 10px rgba(0, 0, 0, 0.2);
        }
        
        .jy-home-contact-btn:hover {
            background: linear-gradient(to right, #ff9a00, #e91e63);
            box-shadow: -2px 0 15px rgba(0, 0, 0, 0.3);
        }
        
        /* Banner部分样式 */
        .jy-home-banner {
            height: 950px;
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
           
            overflow: hidden;
        }
        
        .jy-home-banner-video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: -1;
        }
        
        .jy-home-banner-content {
            text-align: center;
            color: white;
            z-index: 1;
            max-width: 800px;
            padding: 0 20px;
        }
        
        .jy-home-banner-title {
                font-size: 60px;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgb(0 0 0 / 87%);
    color: #ffffff;
        }
        
        .jy-home-banner-subtitle {
            font-size: 32px;
    line-height: 1.6;
    color: #ffffff;
        }
        
        /* 内容部分样式 - 全屏显示 */
        .jy-home-content-section {
            padding: 40px 5% 0px 5%;
            text-align: center;
               background: linear-gradient(90deg, #040d2e 0%, #132c87 100%);
            width: 100vw;
            margin-left: calc(-50vw + 50%);
        }
        
        .jy-home-section-title {
                font-size: 58px;
    margin-bottom: 20px;
    background: linear-gradient(86deg, #4a47e9 40%, #55d280 60%);
    -webkit-background-clip: text;
   
            -webkit-text-fill-color: transparent;
        }
        



.jy-home-section-title-1 {
    font-size: 36px;
    margin-bottom: 20px;
    background: linear-gradient(86deg, #4a47e9 0%, #55d280 10%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}



.jy-home-section-subtitle-1 {
    font-size: 24px;
    margin-bottom: 20px;
    background: linear-gradient(86deg, #4a47e9 0%, #55d280 10%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


.jy-home-module-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #93041e 0%, hsl(227.56deg 54.67% 29.41% / 92%) 100%);
    opacity: .3; /* 初始完全透明 */
    transition: opacity 0.5s ease-in-out;
    z-index: 2;
}

.jy-home-module-item:hover::before {
    opacity: 1; /* 鼠标悬停时显示 */
}

.jy-home-section-title-33{

    font-size: 28px;
    margin-bottom: 10px;
    background: linear-gradient(86deg, #4a47e9 0%, #55d280 10%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

}



        .jy-home-section-subtitle {
                font-size: 22px;
    color: #508eb3;
  
    max-width: 700px;
   
    line-height: 1.6;
    font-weight: bolder;   
     margin: 0 auto;
    margin-bottom: 60px;
        }




        .jy-home-section-subtitle-456{
                font-size: 20px;
    color: #508eb3;
  
    max-width: 700px;
   
    line-height: 1.6;
    font-weight: bolder;   
   
    margin-bottom: 30px;
        }



        
        /* 轮播图样式 */
        .jy-home-carousel-container {
            position: relative;
         
            margin: 0 auto;
			
			  margin-bottom: 200px;
			
			
            overflow: hidden;
        }
        
        .jy-home-carousel {
            display: flex;
            transition: transform 0.5s ease;
        }
        
        .jy-home-carousel-item {
          flex-shrink: 0;
    background-color: #1d3a85;
    margin: 0 20px;
    transition: transform 0.3s 
ease;
    width: calc(25% - 40px);
    box-sizing: border-box;
        }
        
        .jy-home-carousel-img {
            width: 100%;
            height: 500px;
            object-fit: cover;
         
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }
        
        .jy-home-carousel-img:hover {
            transform: translateY(-10px);
        }



.jy-home-carousel-item:hover{background: linear-gradient(84deg, #a50219 20%, #283273 100%) }
        
        .jy-home-carousel-title {
                font-size: 26px;
    margin: 20px 0 10px;
    font-weight: bold;
    color: #ffffff;
    text-align: left;
    padding-left: 30px;
        }
        
        .jy-home-carousel-description {
                color: #ffffff;
    line-height: 1.6;
    padding-left: 30px;
    text-align: left;
    padding-bottom: 25px;    font-size: 16px;
        }
        
        .jy-home-carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background-color: rgba(255, 255, 255, 0.8);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            font-size: 24px;
            cursor: pointer;
            display: flex;
            justify-content: center;
            align-items: center;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            z-index: 10;
        }
        
        .jy-home-carousel-btn:hover {
            background-color: white;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        .jy-home-prev-btn {
            left: 10px;
        }
        
        .jy-home-next-btn {
            right: 10px;
        }
        
        /* 新增模块1 - 6个全屏模块 */
        .jy-home-fullscreen-modules {
            width: 100%;
            display: grid;
        grid-template-columns: repeat(2, 1fr);
           
        }
        
        .jy-home-module-item {
            width: 50%;
            height: 300px;
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            overflow: hidden;
        }
        
        .jy-home-module-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 1;
            transition: all 0.5s ease;    filter: brightness(70%);
        }
        
        .jy-home-module-content {
            position: relative;
            z-index: 2;
            text-align: center;
            color: white;
            padding: 24px;
        }
        
        .jy-home-module-icon {
            width: 60px;
            height: 60px;
            margin: 0 auto 20px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 32px;
        }
        
        .jy-home-module-title {
               font-size: 20px;
    margin-bottom: 10px;
    font-weight: 500;
        }
        
        .jy-home-module-desc {
            font-size: 16px;
            line-height: 1.6;
        }
        
  
        
        /* 新增模块2 - 双排LOGO滚动 */
        .jy-home-logo-section {
            padding: 40px 5%;
               background: linear-gradient(90deg, #040d2e 0%, #132c87 100%);
            width: 100vw;
            margin-left: calc(-50vw + 50%);
        }
        
        .jy-home-logo-carousel-container {
            overflow: hidden;
            position: relative;
            margin: 4px 0;
        }
        
        .jy-home-logo-row {
            display: flex;
            width: max-content;
        }
        
        .jy-home-logo-item {
            width: 160px;
            height: 80px;
            margin: 0 10px;
            display: flex;
            justify-content: center;
            align-items: center;
         
            transition: all 0.3s ease;
        }
        
        .jy-home-logo-item img {
            max-width: 80%;
            max-height: 60%;
            transition: all 0.3s ease;
        }
        
        .jy-home-logo-item:hover {
            transform: scale(1.1);
           
        }
        
        .jy-home-logo-row-1 {
            animation: scrollRight 30s linear infinite;
        }
        
        .jy-home-logo-row-2 {
            animation: scrollLeft 25s linear infinite;
        }
        
        .jy-home-logo-carousel-container:hover .jy-home-logo-row-1,
        .jy-home-logo-carousel-container:hover .jy-home-logo-row-2 {
            animation-play-state: paused;
        }
        
        @keyframes scrollRight {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }
        
        @keyframes scrollLeft {
            0% { transform: translateX(-50%); }
            100% { transform: translateX(0); }
        }
        
        /* 新增模块3 - Tab选项卡 - 全屏显示 */
        .jy-home-tab-section {
            padding: 100px 5%;
            background-color: #f9f9f9;
            width: 100vw;
            margin-left: calc(-50vw + 50%);
            background-image: url('/uploadfile/202511/ec747a4013880ae.jpg');
            background-size: cover;
            background-position: center;
            position: relative;background-attachment: fixed;
        }
        
        .jy-home-tab-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
          
            z-index: 1;
        }
        
        .jy-home-tab-content, .jy-home-tab-menu {
            position: relative;
            z-index: 2;
        }
        
        .jy-home-tab-content {
            display: flex;
           
            margin: 0 auto 50px;
            min-height: 600px;
            position: relative;
            overflow: hidden;
        }
        
        .jy-home-tab-pane {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            padding: 30px;
            text-align: left;
            opacity: 0;
            transform: translateX(100%);
            transition: all 0.5s ease;
        }
        
        .jy-home-tab-pane.active {
            position: relative;
            opacity: 1;
            transform: translateX(0);
        }
        
        .jy-home-tab-pane h3 {
            font-size: 42px;
            margin-bottom: 20px;
            color: #ffffff;
        }
        
        .jy-home-tab-pane p {
            font-size: 24px;
            line-height: 1.8;
            color: #ffffff;
            margin-bottom: 10px;
        }
        
        .jy-home-tab-btn {
               background: linear-gradient(86deg, #4a47e9 0%, #55d280 80%);
            color: white;
            border: none;
            padding: 12px 30px;
            border-radius: 10px;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s ease;    margin-top: 40px;
        }
        
        .jy-home-tab-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }



      .jy-home-tab-btn-11 {
               background: linear-gradient(86deg, #4a47e9 0%, #55d280 80%);
            color: white;
            border: none;
            padding: 12px 30px;
            border-radius: 10px;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s ease;    margin: 0 auto;
    margin-top: 60px;
        }
        
        .jy-home-tab-btn-11:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }



.jy-home-tab-btn-11 a {
    color: #ffffff;
}




        
        .jy-home-tab-menu {
            display: flex;
            justify-content: space-between;
           
            margin: 0 auto;
        }
        
        .jy-home-tab-menu-item {
               display: flex;
    align-items: center;
    padding: 20px 45px;
    margin: 0 20px;
    background: white;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s 
ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .jy-home-tab-menu-item.active {
            background: linear-gradient(86deg, #4a47e9 0%, #55d280 80%);
            color: white;
        }
        
        .jy-home-tab-menu-item img {
            width: 20px;
            height: 20px;
            margin: 0 10px;
        }
        
        .jy-home-tab-menu-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        /* 新增模块4 - 全屏图文模块 */
        .jy-home-fullscreen-content {
            height: 1000px;
            display: flex;
            width: 100vw;
            margin-left: calc(-50vw + 50%);
        }
        
        .jy-home-content-left {
            width: 60%;
            padding: 80px 5%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            background: #010e3e;
        }
        
        .jy-home-content-left h2 {
            font-size: 42px;
            margin-bottom: 20px;
            line-height: 1.2;    color: #ffffff;
        }
        
        .jy-home-content-left p {
            font-size: 24px;
            line-height: 1.8;
            color: #c5c5c5;
            margin-bottom: 30px;
        }
        
        .jy-home-content-btn {
            background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
            color: white;
            border: none;
            padding: 12px 30px;
            border-radius: 30px;
            font-size: 16px;
            cursor: pointer;
            align-self: flex-start;
            transition: all 0.3s ease;
        }
        
        .jy-home-content-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        .jy-home-content-right {
            width: 70%;
            background: url('/uploadfile/202511/29aab126d32e2d.jpg') no-repeat center center;
            background-size: cover;
            background-attachment: fixed;
        }
        
        /* 新增模块5 - 数字统计模块 - 全屏显示 */
        .jy-home-stats-section {
            padding: 48px 30px 30px 30px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            width: 100vw;
          
            position: relative;
        }
        
        .jy-home-stats-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgb(102 126 234 / 75%);
            z-index: 1;
        }
        
        .jy-home-stats-header, .jy-home-stats-container {
            position: relative;
            z-index: 2;
        }
        
        .jy-home-stats-header {
           
            margin: 0 auto 40px;
            text-align: left;
        }
        
        .jy-home-stats-header h2 {
            font-size: 28px;
            margin-bottom: 20px;
        }
        
        .jy-home-stats-header p {
            font-size: 18px;
            line-height: 1.8;
           
        }
        
        .jy-home-stats-container {
            display: flex;
           
            margin: 0 auto;
            justify-content: space-between;
        }
        
        .jy-home-stat-item {
            text-align: center;
            flex: 1;
            padding: 8px 10px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
           
            backdrop-filter: blur(5px);
        }
        
        .jy-home-stat-number {
            font-size: 34px;
            font-weight: bold;
            margin-bottom: 10px;
            display: flex;
            justify-content: center;
            align-items: center;
            background: linear-gradient(135deg, #ff9a9e 0%, #fad0c4 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .jy-home-stat-unit {
            font-size: 24px;
            margin-left: 5px;
        }
        
        .jy-home-stat-title {
            font-size: 16px;
        }
        
        /* 新增模块6 - 新闻模块 - 全屏显示 */
        .jy-home-news-section {
            padding: 40px 5%;
           background: linear-gradient(90deg, #040d2e 0%, #132c87 100%);
            width: 100vw;
            margin-left: calc(-50vw + 50%);
        }
        
        .jy-home-news-container {
            display: flex;
           
            margin: 0 auto;
        }
        
        .jy-home-news-left {
            width: 70%;
            padding-right: 40px;
        }
        
        .jy-home-news-main {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
        }
        
        .jy-home-news-item {
            width: calc(50% - 15px);
            margin-bottom: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            border-radius: 10px;
            overflow: hidden;
            transition: all 0.3s ease;
        }
        
        .jy-home-news-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        }
        
        .jy-home-news-img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }
        
        .jy-home-news-content {
            padding: 20px;
        }
        
        .jy-home-news-content h3 {
            font-size: 18px;
            margin-bottom: 10px;    color: #ffffff;
    font-weight: 500;
        }
        
        .jy-home-news-date {
            color: #999;
            font-size: 14px;
            margin-bottom: 10px;    color: #ffffff;
    font-weight: 500;
        }
        
        .jy-home-news-desc {
            color: #979797;
            line-height: 1.6;
            margin-bottom: 15px;
        }
        
        .jy-home-news-btn {
            background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
            color: white;
            border: none;
            padding: 8px 20px;
            border-radius: 30px;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .jy-home-news-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
        }
        
        .jy-home-news-right {
            width: 30%;
        }
        
        .jy-home-news-list {
            list-style: none;
        }
        
        .jy-home-news-list-item {
            padding: 15px 0;
            border-bottom: 1px solid #eee;
            display: flex;
            align-items: center;
        }
        
        .jy-home-news-list-item:last-child {
            border-bottom: none;
        }
        
        .jy-home-news-list-item img {
            width: 80px;
            height: 60px;
            object-fit: cover;
            border-radius: 5px;
            margin-right: 15px;
        }
        
        .jy-home-news-list-content h4 {
            font-size: 16px;
            margin-bottom: 5px;color: #ffffff;
    font-weight: 500;
        }    
        
        .jy-home-news-list-content span {
            color: #999;
            font-size: 14px;
        }
        
        /* Footer样式 */
        .jy-home-footer {
            width: 100vw;
            margin-left: calc(-50vw + 50%);
            background: linear-gradient(135deg, #060d29, #2a3a7c, #5d70bf);
            color: white;
            padding: 30px 5%;
        }
        
        .jy-home-footer-content {
           
            margin: 0 auto;
            display: flex;
        }
        
        .jy-home-footer-left {
            width: 30%;
            padding-right: 40px;
        }
        
        .jy-home-footer-logo {
            font-size: 28px;
            font-weight: bold;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
        }
        
        .jy-home-footer-logo-icon {
            margin-right: 10px;
            font-size: 32px;
        }
        
        .jy-home-footer-center {
            width: 40%;
            padding: 0 40px;
            border-left: 1px solid rgba(255, 255, 255, 0.1);
            border-right: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .jy-home-footer-menu {
            display: flex;
            flex-wrap: wrap;text-align: center;
        }
        
        .jy-home-footer-menu-column {
            flex: 1;
          
        }
        
        .jy-home-footer-menu-title {
            font-size: 18px;
            margin-bottom: 15px;
            color: #fff;
        }
        
        .jy-home-footer-menu-list {
            list-style: none;
        }
        
        .jy-home-footer-menu-list li {
            margin-bottom: 10px;
        }
        
        .jy-home-footer-menu-list a {
            color: #ccc;
            text-decoration: none;
            font-size: 14px;
            transition: all 0.3s ease;
        }
        
        .jy-home-footer-menu-list a:hover {
            color: #6a11cb;
        }
        
        .jy-home-footer-right {
            width: 30%;
            padding-left: 40px;
        }
        
        .jy-home-footer-contact-title {
            font-size: 18px;
            margin-bottom: 15px;
            color: #fff;
        }
        
        .jy-home-footer-contact-info {
            margin-bottom: 20px;
        }
        
        .jy-home-footer-contact-label {
            font-size: 14px;
            color: #ccc;
            margin-bottom: 5px;
        }
        
        .jy-home-footer-contact-value {
            font-size: 16px;
            color: #fff;
        }
        
        /* 响应式设计 */
        @media (max-width: 1024px) {
            .jy-home-carousel-item {
                min-width: 33.33%;
            }
            
            .jy-home-module-item {
                width: 50%;
            }
            
            .jy-home-stats-container {
                            grid-template-columns: repeat(2, 1fr);
            display: grid;            gap: 20px;
            }
            
            .jy-home-stat-item {
                width: 50%;
             
            }
            
            .jy-home-tab-menu-item {
                margin: 0 10px;
            }
            
            .jy-home-footer-content {
                flex-direction: column;
            }
            
            .jy-home-footer-left,
            .jy-home-footer-center,
            .jy-home-footer-right {
                width: 100%;
                padding: 20px 0;
                border: none;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            }
            
            .jy-home-footer-left:last-child,
            .jy-home-footer-center:last-child,
            .jy-home-footer-right:last-child {
                border-bottom: none;
            }
        }
        
        @media (max-width: 768px) {
            .jy-home-navbar {
                height: auto;
                padding: 15px 5%;
                flex-direction: column;
            }
            
            .jy-home-nav-menu {
                margin-top: 15px;
                flex-wrap: wrap;
                justify-content: center;
            }
            
            .jy-home-nav-menu li {
                margin: 5px 10px;
            }
            
            .jy-home-dropdown-menu {
                flex-direction: column;
                height: auto;
            }
            
            .jy-home-dropdown-content {
                flex-direction: column;
            }
            
            .jy-home-dropdown-left, .jy-home-dropdown-right {
                width: 100%;
            }
            
            .jy-home-dropdown-right {
                flex-direction: column;
            }
            
            .jy-home-dropdown-img {
                margin: 10px 0;
                height: 200px;
            }
            
            .jy-home-contact-btn {
                height: auto;
                margin-right: 0;
                margin-top: 15px;
                border-radius: 30px;
                padding: 10px 20px;
            }
            
            .jy-home-banner {
                height: 300px;
                margin-top: 90px;
            }
            
            .jy-home-banner-title {
                font-size: 40px;
            }
            
            .jy-home-banner-subtitle {
                font-size: 18px;
            }
            
            .jy-home-carousel-item {
                min-width: 50%;
            }
            
            .jy-home-module-item {
                width: 100%;
            }
            
            .jy-home-fullscreen-content {
                flex-direction: column;
                height: auto;
            }
            
            .jy-home-content-left, .jy-home-content-right {
                width: 100%;
            }
            
            .jy-home-content-right {
                height: 400px;
            }
            
            .jy-home-news-container {
                flex-direction: column;
            }
            
            .jy-home-news-left, .jy-home-news-right {
                width: 100%;
            }
            
            .jy-home-news-left {
                padding-right: 0;
                margin-bottom: 0px;
            }
            
            .jy-home-news-item {
                width: 100%;
            }
            
            .jy-home-tab-menu {
                flex-wrap: wrap;
            }
            
            .jy-home-tab-menu-item {
                margin: 5px;
            }
        }
        
        @media (max-width: 480px) {
            .jy-home-banner-title {
                font-size: 32px;
            }
            
            .jy-home-section-title {
                font-size: 36px;
            }
            
            .jy-home-carousel-item {
                min-width: 100%;
            }
            
            .jy-home-stat-item {
                width: 100%;
            }
        }










.glll {
    color: #0066eb!important;position: relative
}



.glll:after {
       content: "";
    font-size: 12px;
    position: absolute;
    top: 64px;
    left: calc(50% - 2.5px);
    font-weight: 300;
    width: 125px;
    height: 2px;
    background: #0066eb;
    left: 50%;
    transform: translateX(-50%);
}

 /* 页面主视觉部分 */
        .jy-aii-knowledge-hero {
            background: linear-gradient(135deg, #1a2a6c, #2a3a7c, #3a4a8c);
            color: white;
            text-align: center;
            padding: 160px 20px 100px;
            position: relative;
            overflow: hidden;
        }
        
        .jy-aii-knowledge-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 20% 30%, rgba(85, 210, 128, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(74, 71, 233, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 40% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
            z-index: 1;
        }
        
        .jy-aii-knowledge-hero-content {
            position: relative;
            z-index: 2;
          
            margin: 0 auto;
        }
        
        .jy-aii-knowledge-hero-title {
            font-size: 4rem;
            font-weight: 800;
            margin-bottom: 30px;
            background: linear-gradient(90deg, #fff, #a8d8ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        .jy-aii-knowledge-hero-subtitle {
            font-size: 1.5rem;
            line-height: 1.6;
         
            opacity: 0.9;
         
            margin-left: auto;
            margin-right: auto;
        }
        
        /* 内容部分 */
        .jy-aii-content {
            padding: 100px 5%;
            background: #ffffff;
            color: white;
            position: relative;
            overflow: hidden;
        }
        
        .jy-aii-content::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 10% 20%, rgba(85, 210, 128, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 90% 80%, rgba(74, 71, 233, 0.08) 0%, transparent 50%);
            z-index: 1;
        }
        
        .jy-aii-content-container {
         
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }
        
        .jy-aii-section-title {
            font-size: 2.8rem;
            font-weight: 700;
            margin-bottom: 60px;
            color: #333333;
            position: relative;
            padding-bottom: 20px;
        }
        
        .jy-aii-section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #4a47e9, #55d280);
            border-radius: 2px;
        }
        
        .jy-aii-subsection-title {
            font-size: 2.2rem;
            font-weight: 600;
            margin: 50px 0 30px;
            color: #000000;
        }
        
		
	.jy-aii-content-list li strong {
    font-size: 1.4rem;
}
		
		
        .jy-aii-subsection-subtitle {
            font-size: 1.8rem;
            font-weight: 600;
            margin: 40px 0 20px;
            color: #000000;
        }
        
        .jy-aii-content-text {
            font-size: 1.1rem;
            line-height: 1.4;
            margin-bottom: 25px;
                color: #444444;
        }
        
        .jy-aii-content-list {
            margin: 20px 0 30px 40px;
        }
        
        .jy-aii-content-list li {
            font-size: 1.1rem;
            line-height: 1.7;
            margin-bottom: 15px;
                color: #444444;   list-style: none;
        }
        
        .jy-aii-highlight-box {
            background: rgb(175 175 175 / 8%);
            border-radius: 15px;
            padding: 25px;
            margin: 30px 0;
            border-left: 4px solid #55d280;
            backdrop-filter: blur(10px);
        }
        
        .jy-aii-highlight-text {
            font-size: 1.1rem;
            line-height: 1.7;
            font-style: italic;
               color: #333333;
        }
        
        .jy-aii-scenario-grid {
            display: grid;
         
            gap: 20px;
            margin: 40px 0;
        }
        
        .jy-aii-scenario-card {
            background: rgb(175 175 175 / 8%);
            border-radius: 15px;
            padding: 25px;
            transition: transform 0.3s ease, background 0.3s ease;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .jy-aii-scenario-card:hover {
            transform: translateY(-5px);
            background: rgb(175 175 175 / 12%);
        }
        
        .jy-aii-scenario-title {
            font-size: 1.4rem;
            font-weight: 600;
            margin-bottom: 15px;
            color: #111111;
        }
        
        .jy-aii-scenario-desc {
            font-size: 1rem;
            line-height: 1.6;
               color: #444444;
        }
        
        .jy-aii-divider {
            height: 2px;
            background: rgba(255, 255, 255, 0.1);
            margin: 60px 0;
        }
        
        /* 响应式设计 */
        @media (max-width: 768px) {
            .jy-aii-knowledge-hero-title {
                font-size: 2.8rem;
            }
            
            .jy-aii-knowledge-hero-subtitle {
                font-size: 1.2rem;
            }
            
            .jy-aii-section-title {
                font-size: 2.2rem;
            }
            
            .jy-aii-subsection-title {
                font-size: 1.8rem;
            }
            
            .jy-aii-scenario-grid {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 480px) {
            .jy-aii-knowledge-hero-title {
                font-size: 2.2rem;
            }
            
            .jy-aii-knowledge-hero-subtitle {
                font-size: 1.1rem;
            }
            
            .jy-aii-content-list {
                margin-left: 20px;
            }
        }


       
        .jy-jjfa-body {
            background-color: #f8f9fa;
            color: #333;
            line-height: 1.6;
        }
        
        .jy-jjfa-container {
               padding: 100px 5%;
    width: 100vw;
            margin: 0 auto;
           
        }
        
        /* 标题样式 */
        .jy-jjfa-hero {
            text-align: center;
            padding: 80px 20px;
            background: linear-gradient(135deg, #1a2a6c, #b21f1f, #fdbb2d);
            background-size: 400% 400%;
            animation: jy-jjfa-gradientBG 15s ease infinite;
            color: white;
            margin-bottom: 60px;
        }
        
        @keyframes jy-jjfa-gradientBG {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }
        
        .jy-jjfa-hero-title {
            font-size: 3.5rem;
            margin-bottom: 20px;
            background: linear-gradient(to right, #ffffff, #ffe259);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 2px 10px rgba(0,0,0,0.2);
        }
        
        .jy-jjfa-hero-subtitle {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto;
            opacity: 0.9;
        }
        
        /* 解决方案区块样式 */
        .jy-jjfa-solutions {
            padding: 40px 0;    background: #ffffff;
        }
        
        .jy-jjfa-solution-item {
            display: flex;
            align-items: center;
            margin-bottom: 160px;
           
            overflow: hidden;
          
               background-color: #f7f7f7;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .jy-jjfa-solution-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.12);
        }
        
        .jy-jjfa-solution-content {
            flex: 1;
            padding: 120px;    margin-right: 80px;
        }
        
        .jy-jjfa-solution-image {
            flex: 1;
            height: 680px;
            background-size: cover;
            background-position: center;
        }
        
        .jy-jjfa-solution-title {
               font-size: 38px;
    margin-bottom: 20px;
    color: #333333;
    font-weight: 500;
        }
        
        .jy-jjfa-solution-desc {
            margin-bottom: 25px;
    color: #333333;
    font-size: 24px;
    line-height: 1.8;
        }
        
        .jy-jjfa-btn {
             display: inline-block;
    padding: 12px 30px;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s 
ease;
    box-shadow: 0 4px 15px rgba(26, 42, 108, 0.3);
    background: linear-gradient(86deg, #4a47e9 0%, #55d280 80%);
        }
        
        .jy-jjfa-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(26, 42, 108, 0.4);
            background: linear-gradient(to right, #2a3a9c, #3a4aac);
        }
        
        /* 左右交替布局 */
        .jy-jjfa-solution-item:nth-child(even) {
            flex-direction: row-reverse;
        }
        
        /* 响应式设计 */
        @media (max-width: 768px) {
            .jy-jjfa-hero-title {
                font-size: 2.5rem;
            }
            
            .jy-jjfa-solution-item {
                flex-direction: column;
            }
            
            .jy-jjfa-solution-item:nth-child(even) {
                flex-direction: column;
            }
            
            .jy-jjfa-solution-image {
                width: 100%;
                height: 250px;
            }
        }
        
        /* 页脚样式 */
        .jy-jjfa-footer {
            background: #1a2a6c;
            color: white;
            text-align: center;
            padding: 40px 20px;
            margin-top: 60px;

        }
        
        .jy-jjfa-footer-content {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .jy-jjfa-footer-text {
            margin-bottom: 20px;
        }
        
        .jy-jjfa-social-icons {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 20px;
        }
        
        .jy-jjfa-social-link {
            color: white;
            font-size: 1.5rem;
            transition: transform 0.3s ease;
        }
        
        .jy-jjfa-social-link:hover {
            transform: translateY(-5px);
        }
		
		
		      /* 全屏图片区域 */
        .hero-section {
            height: 360px;
         
            background-size: cover;
            background-position: center;
            position: relative;
            display: flex;
            align-items: center;
        }
        
        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 100%);
        }
        
        .hero-content {
            position: relative;
            color: white;
          
            margin: 0 auto;
            padding: 0 40px;
            width: 100%;
        }
        
        .hero-title {
            font-size: 28px;
            font-weight: 800;
            margin-bottom: 20px;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
            line-height: 1.2;        padding-top: 90px;
        }
        
        .hero-subtitle {
            font-size: 18px;
            font-weight: 300;
            max-width: 600px;
            text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
            opacity: 0.9;line-height: 28px;
        }
		
		.jy-jjfa-container .jy-jjfa-solution-item:last-child {
    display: none;
}

  /* 页面标题部分 */
        .jy-aiii-hero {
            background: linear-gradient(90deg, #040d2e 0%, #132c87 100%);
            color: white;
            text-align: center;
            padding: 180px 20px 60px;
            position: relative;
            overflow: hidden;
        }
        
        .jy-aiii-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSg0NSkiPjxyZWN0IHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgZmlsbD0icmdiYSgyNTUsMjU1LDI1NSwwLjA1KSIvPjwvcGF0dGVybj48L2RlZnM+PHJlY3QgZmlsbD0idXJsKCNwYXR0ZXJuKSIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIvPjwvc3ZnPg==');
            z-index: 1;
        }
        
        .jy-aiii-hero-content {
            position: relative;
            z-index: 2;
            max-width: 900px;
            margin: 0 auto;
        }
        
        .jy-aiii-hero-title {
            font-size: 2.8rem;
            font-weight: 800;
            margin-bottom: 20px;
            background: linear-gradient(90deg, #fff, #a8d8ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        .jy-aiii-hero-subtitle {
            font-size: 1.5rem;
            line-height: 1.6;
            margin-bottom: 30px;
            opacity: 0.9;
            font-weight: 600;
        }
        
        .jy-aiii-hero-source {
            font-size: 1rem;
            opacity: 0.8;
            font-style: italic;
        }
        
        /* 内容部分 - 统一框内设计 */
        .jy-aiii-content {
            padding: 60px 5%;
          
            margin: 0 auto;
        }
        
        .jy-aiii-container {
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(15px);
            border-radius: 20px;
            padding: 50px;
            border: 1px solid rgba(255, 255, 255, 0.15);
            box-shadow: 0 20px 40px rgb(0 0 0 / 17%);
        }
        
        .jy-aiii-section {
            margin-bottom: 40px;
            padding-bottom: 40px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .jy-aiii-section:last-child {
            margin-bottom: 0;
            padding-bottom: 0;
            border-bottom: none;
        }
        
        .jy-aiii-section-title {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 25px;
            color: #000000;
            border-left: 5px solid #4a47e9;
            padding-left: 15px;
        }
        
        .jy-aiii-subsection {
            margin-bottom: 25px;
            padding: 20px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 10px;
            border-left: 3px solid #55d280;
            backdrop-filter: blur(5px);
        }
        
        .jy-aiii-subsection:last-child {
            margin-bottom: 0;
        }
        
        .jy-aiii-question {
            font-weight: 600;
            color: #333333;
            margin-bottom: 10px;
            font-size: 1.3rem;
        }
        
        .jy-aiii-answer {
            color: #444444;
            line-height: 1.7;
            margin-bottom: 15px;
        }
        
        .jy-aiii-answer:last-child {
            margin-bottom: 0;
        }
        
        .jy-aiii-highlight {
            background: linear-gradient(120deg, rgba(74, 71, 233, 0.2) 0%, rgba(85, 210, 128, 0.2) 100%);
            padding: 20px;
            border-radius: 8px;
            margin: 20px 0;
            border-left: 4px solid #4a47e9;
            backdrop-filter: blur(5px);
        }
        
        .jy-aiii-note {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.7);
            font-style: italic;
            margin-top: 10px;
        }
        
        /* 响应式设计 */
        @media (max-width: 768px) {
            .jy-aiii-hero-title {
                font-size: 2.2rem;
            }
            
            .jy-aiii-hero-subtitle {
                font-size: 1.2rem;
            }
            
            .jy-aiii-section-title {
                font-size: 1.5rem;
            }
            
            .jy-aiii-subsection {
                padding: 15px;
            }
            
            .jy-aiii-container {
                padding: 30px;
            }
        }
        
        @media (max-width: 480px) {
            .jy-aiii-hero-title {
                font-size: 1.8rem;
            }
            
            .jy-aiii-hero {
                padding: 80px 20px 40px;
            }
            
            .jy-aiii-content {
                padding: 40px 5%;
            }
            
            .jy-aiii-container {
                padding: 20px;
            }
        }



 /* 客服悬浮框样式 */
        .jy-kfx-customer-service {
            position: fixed;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            z-index: 1000;
            display: flex;
            align-items: center;
        }
        
        .jy-kfx-service-toggle {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #3498db, #2c3e50);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 5px 15px rgba(52, 152, 219, 0.4);
            transition: all 0.3s ease;
            position: relative;
            z-index: 1002;
        }
        
        .jy-kfx-service-toggle:hover {
            background: linear-gradient(135deg, #2980b9, #1a252f);
            box-shadow: 0 8px 20px rgba(52, 152, 219, 0.5);
        }
        
        .jy-kfx-service-toggle i {
            color: white;
            font-size: 1.8rem;
        }
        
        .jy-kfx-service-content {
            position: absolute;
            right: 70px;
            top: 50%;
            transform: translateY(-50%);
            width: 230px;
            opacity: 0;
            visibility: hidden;
            background-color: white;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            padding: 15px;
            transition: all 0.4s ease;
            z-index: 1001;
            transform-origin: right center;
        }

.jy-jjfa-solution-content p {
    line-height: 26px;
    color: #666666;
}

        
        .jy-kfx-customer-service:hover .jy-kfx-service-content {
            opacity: 1;
            visibility: visible;
            right: 80px;
        }
        
        .jy-kfx-service-title {
            color: #2c3e50;
            font-size: 18px;
            margin-bottom: 20px;
            text-align: center;
            font-weight: 600;
        }
        
        .jy-kfx-qrcode-container {
            background-color: #f8f9fa;
            border-radius: 8px;
            padding: 15px;
            margin-bottom: 20px;
            display: flex;
            flex-direction: column;
            align-items: center;
            transition: all 0.3s ease;
        }
        
        .jy-kfx-qrcode-container:hover {
            background-color: #e9f7fe;
            transform: translateY(-2px);
        }
        
        .jy-kfx-qrcode-placeholder {
            width: 120px;
            height: 120px;
            background: linear-gradient(45deg, #3498db, #2ecc71);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 10px;
            position: relative;
            overflow: hidden;
        }
        
        .jy-kfx-qrcode-placeholder i {
            font-size: 3rem;
            color: white;
            z-index: 1;
        }
        
        .jy-kfx-qrcode-text {
            color: #2c3e50;
            font-size: 0.95rem;
            font-weight: 500;
        }
        
        .jy-kfx-phone-section {
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: #f8f9fa;
            border-radius: 8px;
            padding: 15px;
            transition: all 0.3s ease;
            cursor: pointer;
        }
        
        .jy-kfx-phone-section:hover {
            background-color: #e9f7fe;
            transform: translateY(-2px);
        }
        
        .jy-kfx-phone-icon {
            width: 45px;
            height: 45px;
            background: linear-gradient(135deg, #2ecc71, #27ae60);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
        }
        
        .jy-kfx-phone-icon i {
            color: white;
            font-size: 1.4rem;
        }
        
        .jy-kfx-phone-info h4 {
            color: #2c3e50;
            font-size: 16px;
            margin-bottom: 5px;
        }
        
        .jy-kfx-phone-number {
            color: #333333;
            font-size: 16px;
            font-weight: 700;
            letter-spacing: 0.5px;
        }
        
        .jy-kfx-hint {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            color: #7f8c8d;
            font-size: 0.9rem;
            text-align: center;
            width: 100%;
            max-width: 500px;
            background-color: rgba(255, 255, 255, 0.8);
            padding: 10px;
            border-radius: 8px;
        }
        
        @media (max-width: 768px) {
            .jy-kfx-customer-service {
                right: 10px;
            }
            
            .jy-kfx-customer-service:hover .jy-kfx-service-content {
                right: 70px;
            }
            
            .jy-kfx-service-content {
                width: 240px;
                right: 60px;
            }
            
            .jy-kfx-container {
                padding: 20px;
            }
            
            .jy-kfx-title {
                font-size: 2rem;
            }
        }
        
        @media (max-width: 480px) {
            .jy-kfx-service-content {
                width: 230px;
                padding: 20px;
            }
            
            .jy-kfx-customer-service:hover .jy-kfx-service-content {
                right: 60px;
            }
            
            .jy-kfx-qrcode-placeholder {
                width: 150px;
                height: 150px;
            }
        }



.jy-home-footer-logo span img {
    width: 200px;
}


.lew p img {
     width: 200px; 
}

      /* 面包屑导航 */
        .breadcrumb {
                background: linear-gradient(90deg, #040d2e 0%, #132c87 100%);
    padding: 28px 0;
    border-bottom: 1px solid #571e79;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }
        
        .breadcrumb-content {
           
               margin: 0 auto;
    font-size: 0.95rem;
    padding: 0px 5%;
    width: 100vw;
        }
        
        .breadcrumb a {
            color: #c3c3c3;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .breadcrumb a:hover {
            color: #2c80ff;
        }
        
        .breadcrumb span {
            margin: 0 10px;
            color: #999;
        }
.jy-news-lxwm-product {
    padding: 30px 5%;
    background: #ffffff;
    color: white;
    position: relative;
    overflow: hidden;
}