/* ————————————————————————————首页标题样式1———————————————————————————— */
        
        .ititle-header {
            text-align: center;
            padding: 50px 0px 0px 0px;
            position: relative;
        }
        
        .ititle-main {
            font-size: 1.8rem;
            font-weight0: bold;
            color: #666666;
            margin-bottom: 10px;
            letter-spacing: 1px;
            text-transform: uppercase;
        }
        
        .ititle-sub {
            font-size: 1rem;
            color: #999999;
            font-weight-: 600;
            position: relative;
            display: inline-block;
            padding: 0 20px;
        }
        
        .ititle-sub::before,
        .ititle-sub::after {
            content: '';
            position: absolute;
            top: 50%;
            width: 0px;
            height: 1px;
            background: #666666;
        }
        
        .ititle-sub::before {
            right: 100%;
        }
        
        .ititle-sub::after {
            left: 100%;
        }
        
        
        /* 响应式设计 */
        @media (max-width: 768px) {
            .ititle-main {
                font-size: 2.2rem;
                letter-spacing: 2px;
            }
            
            .ititle-sub {
                font-size: 1.5rem;
            }
            
            .ititle-sub::before,
            .ititle-sub::after {
                width: 0px;
            }
            
            .ititle-content {
                padding: 25px 30px;
                font-size: 1rem;
            }
        }
        
        @media (max-width: 480px) {
            .ititle-main {
                font-size: 1.8rem;
                letter-spacing: 1px;
            }
            
            .ititle-sub {
                font-size: 1.3rem;
            }
            
            .ititle-sub::before,
            .ititle-sub::after {
                width: 0px;
            }
            
            .ititle-content {
                padding: 20px 15px;
                font-size: 0.95rem;
            }
            
            .ititle-header {
                padding: 40px 15px;
            }
        }
/* ————————————————————————————首页查看更多按钮通用———————————————————————————— */
        .imore-button {
            display: inline-block;
            padding: 10px 30px;
            background-color: transparent;
            border: 1px solid #ccc;
            color: #666666;
            text-decoration: none;
            font-family: sans-serif;
            font-size: 16px;
            border-radius: 4px;
            transition: all 0.3s ease;
            cursor: pointer;
            text-align: center;
        }
        
        .imore-button:hover {
            background-color: #cc0000;
            color: #fff;
            border-color: #cc0000;
        }
		
/* ————————————————————————————首页banner轮播———————————————————————————— */

        /* 重置默认样式 */
        .index_top_banner * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        /* 轮播容器 */
        .index_top_banner__container {
            position: relative;
            margin: 0 auto;
            overflow: hidden;
        }

        /* 轮播轨道 */
        .index_top_banner__track {
            display: flex;
            transition: transform 0.5s ease;
        }

        /* 轮播项 */
        .index_top_banner__slide {
            position: relative;
            min-width: 100%;
			height: 100%;
            aspect-ratio-: 16/5;
        }

        /* 轮播图片 */
        .index_top_banner__image {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* 控制按钮容器 */
        .index_top_banner__controls {
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            transform: translateY(-50%);
            display: flex;
            justify-content: space-between;
            pointer-events: none;
        }

        /* 方向按钮 */
        .index_top_banner__btn {
            pointer-events: auto;
            background: rgba(255,255,255,0.5);
            border: none;
            width: 40px;
            height: 40px;
			font-size:18px;
            border-radius: 50%;
            margin: 0 20px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .index_top_banner__btn:hover {
			color: white;
            background: #cc0000;
            transform: scale(1.05);
        }

        /* 圆点指示器 */
        .index_top_banner__dots {
            position: absolute;
            bottom: 30px;
			top-: 75%;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
        }

        .index_top_banner__dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255,255,255,0.5);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .index_top_banner__dot.active {
            background: white;
            transform: scale(1.2);
        }

        /* 文字容器 */
        .index_top_banner__text {
            position: absolute;
            top: 40%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: white;
            text-align: center;
        }

        .index_top_banner__text-line1 {
            font-size: 3em;
            margin-bottom: 0.2em;
            opacity: 0;
            animation: fadeIn 0.5s forwards;
        }

        .index_top_banner__text-line2 {
            font-size: 2em;
            opacity: 0;
            animation: fadeIn 0.5s 0.3s forwards;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* 移动端适配 */
        @media (max-width: 768px) {
            .index_top_banner__slide {
                aspect-ratio: unset;
            }
            .index_top_banner__image {
                height: auto;
            }
			 .index_top_banner__controls {
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            transform: translateY(-50%);
            display: flex;
            justify-content: space-between;
            pointer-events: none;
        }
		    .index_top_banner__btn {
            pointer-events: auto;
            background: rgba(255,255,255,0.8);
            border: none;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            margin: 0 20px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }
		    /* 文字容器 */
        .index_top_banner__text {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: white;
            text-align: center;
        }
       .index_top_banner__text-line1 {
            font-size: 1.8em;
            margin-bottom: 0.2em;
            opacity: 0;
            animation: fadeIn 0.5s forwards;
        }

        .index_top_banner__text-line2 {
            font-size: 1em;
            opacity: 0;
            animation: fadeIn 0.5s 0.3s forwards;
        }
		    /* 圆点指示器 */
        .index_top_banner__dots {
            position: absolute;
            bottom: 15px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
        }
        }

/* ————————————————————————————首页4大优势———————————————————————————— */
        .iyoushi * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        .iyoushi {
            font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
            width: 100%;

            margin: 0 auto;
            padding: 80px 20px;

            overflow-x: hidden;
        }

        /* 弹性网格容器 */
        .iyoushi-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: stretch;
            gap: 20px;
            width: 100%;
        }

        /* 卡片链接单元 */
        .iyoushi-card-link {
            text-decoration: none;
            color: inherit;
            display: block;
            width: calc(25% - 15px);          /* 桌面四列 */
            min-width: 200px;
            transition: transform 0.2s ease;
            flex-shrink: 0;
        }

        .iyoushi-card-link:hover {
            transform: translateY(-3px);
        }

        /* 卡片内部布局 */
        .iyoushi-card {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            width: 100%;
        }

        /* ----- 圆形背景容器 (本地PNG图标将放在这里) ----- */
        .iyoushi-icon-circle {
            width: 120px;
            height: 120px;
            background-color: #e5e5e5;        /* 柔和灰底 */
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 16px;
            transition: background-color 0.25s ease, transform 0.25s ease;
            /* 移除 font-size/color，因为现在使用IMG，但保留box-shadow */
            box-shadow: 0 8px 16px rgba(0,0,0,0.03);
            will-change: transform;
            /* 确保图片居中 */
            overflow: hidden;   /* 防止图片溢出圆角 (但一般不需要，除非图片特别大) */
        }

        /* 本地PNG图标样式：统一大小，自适应 */
        .iyoushi-local-icon {
            width:60px;          /* 根据设计调整，占据圆形视觉中心 */
            height: auto;
            max-width: 80%;
            max-height: 80%;
            object-fit: contain;
            display: block;
            transition: transform 0.4s cubic-bezier(0.2, 0.9, 0.3, 1.1), filter 0.2s ease;
            /* 保证图片不拉伸变形 */
            pointer-events: none;  /* 点击事件由父级处理 */
        }

        /* 鼠标经过卡片整体时，圆形绿底 */
        .iyoushi-card-link:hover .iyoushi-icon-circle {
            background-color: #cc0000 !important;   /* 深绿色背景 */
        }

        /* 鼠标经过时，本地PNG图标翻转 + 亮度轻微提升 (替代之前颜色变化) */
        .iyoushi-card-link:hover .iyoushi-local-icon {
            transform: scaleX(-1);                   /* 水平镜像翻转 */
            filter--: brightness(1.1);  
			filter: contrast(0) brightness(2)                /* 更亮 */
        }

        /* 如果浏览器不支持翻转交互，保持原样，不影响可用性 */

        /* 下部分：标题 */
        .iyoushi-title {
            font-size: 1.1rem;
            font-weight: 500;
            letter-spacing: 0.5px;
            color: #999999;
            margin-top: 10px;
            line-height: 1.3;
            transition: color 0.2s ease;
        }

        .iyoushi-card-link:hover .iyoushi-title {
            color: #c62828 !important;    /* 醒目红色 */
        }

        /* 辅助描述 */
        .iyoushi-desc {
            font-size: 0.95rem;
            color: #cc0000;
            max-width: 200px;
            margin: 0 auto;
            word-break: break-word;
        }

        /* ---------- 平板 (≤900px 三列) ---------- */
        @media screen and (max-width: 900px) {
            .iyoushi-card-link {
                width: calc(33.333% - 14px);
                min-width: 180px;
            }
        }

        /* 移动端 (≤600px) 强制两列，完美适配本地PNG */
        @media screen and (max-width: 600px) {
            .iyoushi {
                padding: 20px 12px;
            }
            .iyoushi-grid {
                gap: 12px;
                justify-content: center;
            }
            .iyoushi-card-link {
                width: calc(50% - 6px) !important;
                min-width: 0;
                max-width: 100%;
            }
            /* 调整圆形尺寸适应小屏 */
            .iyoushi-icon-circle {
                width: 130px;
                height: 130px;
                margin-left: auto;
                margin-right: auto;
            }
            .iyoushi-local-icon {
                width: 60px;   /* 适当缩小，比例协调 */
            }
            .iyoushi-title {
                font-size: 1.25rem;
                word-break: break-word;
            }
            .iyoushi-desc {
                font-size: 0.8rem;
                max-width: 140px;
                padding: 0 4px;
            }
        }

        /* 极窄屏 (≤400px) 再微调 */
        @media screen and (max-width: 400px) {
            .iyoushi {
                padding-left: 8px;
                padding-right: 8px;
            }
            .iyoushi-icon-circle {
                width: 110px;
                height: 110px;
            }
            .iyoushi-local-icon {
                width: 50px;
            }
            .iyoushi-grid {
                gap: 8px;
            }
            .iyoushi-card-link {
                width: calc(50% - 4px) !important;
            }
            .iyoushi-title {
                font-size: 1.1rem;
            }
        }

        /* 焦点状态便于键盘 */
        .iyoushi-card-link:focus-visible {
            outline: 2px solid #c62828;
            outline-offset: 4px;
            border-radius: 12px;
        }

        /* 后备说明：如果PNG加载失败，保持结构不崩 */
        .iyoushi-local-icon {
            background-color: transparent;   /* 无背景干扰 */
        }

/* ————————————————————————————首页产品中心———————————————————————————— */

        .ipro-container {
            margin: 0 auto;
        }
       
        
        /* 产品容器 - 使用Flex布局替代Grid */
        .ipro-products-container {
            display: flex;
            flex-wrap: wrap;
            margin-left: -15px;
            margin-right: -15px;
        }
        
        /* 产品卡片 */
        .ipro-product-card {
            background-color: #fff;
            border-radius: 2px;
            overflow: visible;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
            height: 100%;
            display: flex;
            flex-direction: column;
            padding-bottom: 15px;
            margin-bottom: 40px;
            width: calc(25% - 30px); /* 4列布局 */
            margin-left: 15px;
            margin-right: 15px;
        }
        
        .ipro-product-card a {
            text-decoration: none;
            color: inherit;
            display: flex;
            flex-direction: column;
            height: 100%;
            position: relative;
        }
        
        /* 产品图片区域 */
        .ipro-product-image {
            width: 100%;
padding: 50px 80px 20px 80px;
            padding-top: 85%;
            position: relative;
            overflow: hidden;
            background-color: #ffffff;
        }
        
        .ipro-product-image img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height-: 100%;
			 justify-content: center;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        /* 产品信息 */
        .ipro-product-info {
            padding: 20px 15px 30px;
            text-align: center;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .ipro-product-model {
            color: #cc0000;
            font-weight: 700;
            font-size: 1.1rem;
            margin-bottom: 8px;
            transition: color 0.3s ease;
        }
        
        .ipro-product-title {
            color: #333;
            font-weight: 500;
            font-size: 0.8rem;
            transition: color 0.3s ease;
            line-height: 1.4;
        }
        
        /* 添加按钮 */
        .ipro-add-button {
            position: absolute;
            bottom: -25px;
            left: 50%;
            transform: translateX(-50%);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: #cc0000;
            border: 5px solid #f5f5f5;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 10;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
        }
        
        .ipro-add-button i {
            color: #fff;
            font-size: 1.4rem;
            font-weight: bold;
        }
        
        /* 悬停效果 */
        .ipro-product-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
        }
        
        .ipro-product-card:hover .ipro-product-image img {
            transform: scale(1.05);
        }
        
        .ipro-product-card:hover .ipro-product-model {
            color: #e55a2b;
        }
        
        .ipro-product-card:hover .ipro-product-title {
            color: #cc0000;
        }
        
        .ipro-product-card:hover .ipro-add-button {
            background-color: #015cb9;
            transform: translateX(-50%) scale(1.05);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        /* 响应式设计 */
        /* 平板设备 (3列) */
        @media (max-width: 1024px) {
            .ipro-product-card {
                width: calc(33.333% - 30px); /* 3列布局 */
            }
            
            .ipro-header h1 {
                font-size: 1.9rem;
            }
        }
        
        /* 手机设备 (2列) - 480px以上强制显示2列 */
        @media (max-width: 768px) and (min-width: 481px) {
            .ipro-product-card {
                width: calc(50% - 30px); /* 2列布局 */
            }
            
            .ipro-header h1 {
                font-size: 1.7rem;
            }
            
            .ipro-header p {
                font-size: 1rem;
            }
            
            .ipro-product-info {
                padding: 15px 10px 25px;
            }
            
            .ipro-product-model {
                font-size: 1rem;
            }
        }
        
        /* 超小手机设备 (1列) - 只在480px及以下显示1列 */
        @media (max-width: 480px) {
			    .ipro-container {
            margin: 20px 0 0 0;
        }
            .ipro-product-card {
                width: calc(100% - 30px); /* 1列布局 */
                max-width: 350px;
                margin-left: auto;
                margin-right: auto;
            }
            
            .ipro-products-container {
                justify-content: center;
            }
            
      
            .ipro-header {
                margin-bottom: 30px;
                padding: 10px;
            }
            
            .ipro-add-button {
                width: 45px;
                height: 45px;
                bottom: -13px;
            }
            
            .ipro-add-button i {
                font-size: 1.3rem;
            }
        }
        
        /* 页脚 */
        .ipro-footer {
            text-align: center;
            margin-top: 60px;
            padding: 20px;
            color: #666;
            font-size: 0.9rem;
        }
        
        /* 添加说明 */
        .ipro-notice {
            text-align: center;
            margin-top: 20px;
            padding: 15px;
            background-color: rgba(255, 107, 53, 0.1);
            border-radius: 8px;
            color: #666;
            font-size: 0.95rem;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }
        
        /* 清除浮动 - 为旧浏览器提供支持 */
        .ipro-clearfix::after {
            content: "";
            display: table;
            clear: both;
        }
/* ————————————————————————————首页关于我们———————————————————————————— */

        .iabout-root {
            display: block;
            width: 100%;
            box-sizing: border-box;
            font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
            line-height: 1.5;
            -webkit-text-size-adjust: 100%;
            text-size-adjust: 100%;
        }

        /* 容器：处理内边距，实现移动端优先，随屏幕缩放 */
        .iabout-container {

            margin: 0 auto;
            padding: 2rem 1.5rem;


            transition: padding 0.2s ease;
            box-sizing: border-box;
        }

        /* 公司名称 —— 优雅大标题，自适应字体 */
        .iabout-company {
            margin: 0 0 0.35rem 0;
            font-size: clamp(1rem, 10vw,24px);
            font-weight: 500;
            letter-spacing: -0.02em;
            line-height: 1.1;
            color: #333333;
            text-align: center;
            word-break: break-word;
        }

        /* 描述区块 —— 居中显示，柔和字体 */
        .iabout-description {
            margin: 1.2rem 0 1.8rem 0;
            font-size: clamp(1rem, 3vw, 14px);
            font-weight: 350;
            color: #999999;
            text-align: center;
           
            margin-left: auto;
            margin-right: auto;
            padding: 0 0.5rem;
            word-break: break-word;
        }

        /* 按钮包装器：负责居中对齐和间距 */
        .iabout-button-wrapper {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-top: 2rem;
            margin-bottom: 0.5rem;
        }

        /* 查看更多按钮 —— 链接样式，精致且触摸友好 */
        .iabout-link-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: #cc0000;
            color: #ffffff;
            font-size: clamp(1rem, 3.5vw, 1rem);
            font-weight: 500;
            text-decoration: none;
            padding: 0.6rem 2rem;
            border-radius: 60px;
            box-shadow: 0 8px 18px rgba(0, 40, 80, 0.15);
            transition: all 0.25s ease;
            border: 1px solid rgba(255, 255, 255, 0.1);
            letter-spacing: 0.02em;
            white-space: nowrap;
            /* 移动端防止文字折行，若空间极小则缩小内边距，依然可见 */
            max-width: 100%;
        }

        /* 悬停效果仅在支持鼠标的设备生效，不影响触摸 */
        @media (hover: hover) {
            .iabout-link-btn:hover {
                background: #cc0000;
                transform: scale(1.02);
                border-color: rgba(255, 255, 255, 0.2);
            }
        }

        /* 按钮点击反馈 (active) 保持简洁 */
        .iabout-link-btn:active {
            background: #cc0000;
            transform: scale(0.98);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        }

        /* 对非常窄的屏幕（< 360px）做进一步优化，让按钮内边距缩小，防止溢出 */
        @media (max-width: 359px) {
            .iabout-container {
                padding: 1.5rem 0.8rem;
            }
            .iabout-link-btn {
                padding: 0.7rem 1.8rem;
                white-space: normal;      /* 极端小屏允许折行 */
                width: 100%;               /* 变为块状自适应 */
                max-width: 260px;
            }
        }

        /* 平板中等屏幕略微增加留白 */
        @media (min-width: 768px) and (max-width: 1023px) {
            .iabout-container {
                padding: 3rem 3.5rem;
                border-radius: 44px;
            }
            .iabout-company {
                letter-spacing: -0.01em;
            }
        }

        /* 大桌面屏 (大于 1280) 增加精致留白 */
        @media (min-width: 1280px) {
            .iabout-container {
                padding: 4rem 2rem;
                border-radius: 56px;
            }
            .iabout-description {
                font-size: 1rem;
				line-height:30px;
                margin-top: 2rem;
                margin-bottom: 3rem;
            }
        }

        /* 可选：针对横屏移动设备优化上下留白 */
        @media (max-height: 500px) and (orientation: landscape) {
            .iabout-container {
                padding-top: 1.2rem;
                padding-bottom: 1.2rem;
            }
            .iabout-company {
                font-size: clamp(1.8rem, 8vh, 3.2rem);
            }
            .iabout-description {
                margin: 0.4rem 0 1rem 0;
            }
        }

        /* 所有内容均以iabout-开头，无全局样式，不会干扰外部 */
        .iabout-root,
        .iabout-root *,
        .iabout-root *::before,
        .iabout-root *::after {
            box-sizing: border-box;
        }

        /* 给描述文本更细腻的强调 (可选，但不影响整体) */
        .iabout-description span {
            display: inline-block;
            background: linear-gradient(145deg, #f0f5fa, transparent);
            padding: 0.1rem 0.6rem;
            border-radius: 40px;
            font-weight: 380;
        }

        /* 极简装饰 —— 纯粹为了精致感，保持干净 */
        .iabout-company::after {
            content: '';
            display: block;
            width: 0px;
            height: 3px;
            background: linear-gradient(90deg, #1e3c5c, #7997b3, #e0e9f0);
            margin: 0.6rem auto 0 auto;
            border-radius: 4px;
            opacity: 0.45;
        }

        /* 确保公司名下的横线在窄屏宽度适应 */
        @media (max-width: 480px) {
            .iabout-company::after {
                width: 0px;
                height: 2.5px;
            }
        }
/* ————————————————————————————首页新闻中心———————————————————————————— */
    .inews-grid {
      display: block;
      width: 100%;
      margin: 0 auto;
      padding: 20px 0px;
      box-sizing: border-box;
    }
    .inews-row {
      display: flex;
      flex-wrap: wrap;
      margin: 0 -12px;
    }
    .inews-col {
      flex: 0 0 100%;
      max-width: 100%;
      padding: 0 12px;
      margin-bottom: 30px;
      box-sizing: border-box;
    }
    /* 卡片本体 */
    .inews-card {
      display: block;
      width: 100%;
      background-color: #ffffff;
     
      border-radius: 0px;
      overflow: hidden;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
      transition: all 0.2s ease;
      text-decoration: none;
      color: inherit;
      height: 100%;
    }
    .inews-card:hover {
		 border: 1px solid #eaeef2;
      box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
      transform: translateY(-3px);
    }
    /* 图片区域 3:2 */
    .inews-image-wrap {
      position: relative;
      width: 100%;
      padding-bottom: 66.6667%; /* 2/3 = 66.66% 即 3:2 高/宽 */
      background-color: #f0f4f8;
      overflow: hidden;
    }
    .inews-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit----: cover;
      display: block;
      border: 0;
    }
    /* 内容区域 */
    .inews-content {
      padding: 18px 16px 22px;
    }
    /* 第二行: 小图标 + 日期 */
    .inews-meta {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 0.85rem;
      color: #6c7a8a;
      margin-bottom: 8px;
      letter-spacing: 0.02em;
    }
    .inews-meta i {
      color: #cc0000;
      font-size: 0.9rem;
      width: 1.1em;
      text-align: center;
    }
    /* 标题 */
    .inews-title {
      font-size: 1.25rem;
      line-height: 1.4;
      font-weight: 600;
      margin: 0 0 8px 0;
      color: #1e293b;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }
    /* 描述 — 移动端控制2行 */
    .inews-description {
      font-size: 0.95rem;
      line-height: 1.5;
      color: #475569;
      margin: 0 0 18px 0;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }
    /* 查看更多按钮 (含链接) */
    .inews-btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background-color: transparent;
      border: 1px solid #cbd5e1;
      border-radius: 40px;
      padding: 8px 18px;
      font-size: 0.9rem;
      font-weight: 500;
      color: #1e293b;
      text-decoration: none;
      transition: background 0.2s, border 0.2s;
      cursor: pointer;
    }
    .inews-btn i {
      font-size: 0.8rem;
      color: #cc0000;
      transition: transform 0.15s;
    }
    .inews-card:hover .inews-btn i {
      transform: translateX(4px);
    }
    .inews-btn:hover {
      background-color: #f8fafc;
      border-color: #cc0000;
    }

    /* ===== 平板 (≥576px 先变2列) ===== */
    @media screen and (min-width: 576px) {
      .inews-col {
        flex: 0 0 50%;
        max-width: 50%;
      }
    }

    /* ===== 桌面 (≥992px 变成3列) ===== */
    @media screen and (min-width: 992px) {
      .inews-col {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
      }
    }

    /* 老旧浏览器降级 (保持块级) */
    .inews-oldie {
      display: block;
    }

/* ————————————————————————————首页底部版权———————————————————————————— */
/* -------------------------------首页底部版权 */	
		 .index_foot {
            background: #333;
            color: #fff;
        }

        .index_foot a {
            color: #fff;
            text-decoration: none;
            transition: opacity 0.3s;
        }
		
        .index_foot a:hover {
            opacity: 0.8;
        }

        /* 上半部分 */
        .index_foot__top {
            display: flex;
            padding: 50px 0%;
            gap: 30px;
        }

        /* 左侧样式 */
        .index_foot__left {
            flex: 3;
        } 
.index_foot__left ul{word-break: break-word;}
.index_foot__left li {line-height:33px}
.index_foot__left li a {line-height:33px}
.index_foot__left li a:hover{color: #fff;}
 
		 .index_foot_name{
          color: #fff;
          font-size: 20px;
		  padding-bottom:20px;
        }
        .index_foot__phone {
            font-size: 16px;
            font-weight: 500;
        }
        .index_foot__address {
            margin-top: 5px;
            word-break: break-word;
        }

        /* 中间部分 */
		 .index_foot_title{
          color: #fff;
          font-size: 18px;
		  padding-bottom:10px;
        }
        .index_foot__middle {
            flex: 3;
            display: flex;
            gap: 30px;
        }
        .index_foot__category,
        .index_foot__links {
            flex: 1;
        }
        .index_foot__category a,
        .index_foot__links a {
            display: block;
            margin: 8px 0;
            word-break: break-word;
        }
		 .index_foot__category a:hover{
			color: #fff;
            word-break: break-word;
        }
        .index_foot__links a:hover{
			color: #fff;
            word-break: break-word;
        }
        /* 右侧样式 */
        .index_foot__right {
            flex: 1;
        }
        .index_foot__qrcode-box {
            display: flex;
            gap: 20px;
            margin: 15px 0;
        }
        .index_foot__qrcode {
            text-align: center;
        }
        .index_foot__qrcode img {
            width: 150px;       
        }
		 .index_foot__qrcode_title{
          color: #fff;
          font-size: 14px;
		  padding-top:8px;
        }
        .index_foot__share {
            display: flex;
            gap: 12px;
            margin-top: 20px;
        }
        .index_foot__share a {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: #666666;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.3s;
        }
        .index_foot__share a:hover {
			color: #fff;
            transform: scale(1.1);
			background: #015bac;
        }
        /* 下半部分 */
        .index_foot__bottom {
            border-top: 1px solid #666666;
            padding: 20px 0%;
            display: flex;
            justify-content: space-between;
        }
       .index_foot__bottom a:hover{
          color: #fff;
        }
        /* 移动端样式 */
        @media (max-width: 768px) {
            .index_foot__top {
                flex-direction: column;
                text-align: center;
            }
            .index_foot__middle {
                display: none;
            }
            .index_foot__qrcode-box {
                justify-content: center;
            }
            .index_foot__share {
                justify-content: center;
            }
            .index_foot__bottom {
                flex-direction: column;
                text-align: center;
                gap: 10px;
            }
        }
		/*--------------------- 客服系统样式 - 添加kefu前缀 */
        .kefu-sidebar {
            position: fixed;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 60px;
            background-color: #cc0000; /* 绿色背景 */
            border-radius: 8px 0 0 8px;
            box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
            z-index: 9999;
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 15px 0;
        }

        .kefu-item {
            width: 100%;
            text-align: center;
            padding: 12px 0;
            position: relative;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .kefu-item:not(:last-child)::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 10%;
            width: 80%;
            height: 1px;
            background-color: rgba(255, 255, 255, 0.5);
        }

        .kefu-item:hover {
            background-color: rgba(255, 255, 255, 0.5);
        }

        .kefu-icon {
            color: white;
            font-size: 20px;
            display: block;
        }

        .kefu-tooltip {
            position: absolute;
            right: 100%;
            top: 50%;
            transform: translateY(-50%);
            background-color: #333;
            color: white;
            padding: 15px 15px;
            border-radius: 4px;
            font-size: 16px;
            white-space: nowrap;
            margin-right: 5px;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .kefu-item:hover .kefu-tooltip {
            opacity: 1;
            visibility: visible;
        }

        .kefu-qrcode {
            position: absolute;
            right: 100%;
            top: 50%;
            transform: translateY(-50%);
            background-color: white;
            padding: 5px;
            border-radius: 8px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            margin-right: 10px;
            width: 160px;
            text-align: center;
        }

        .kefu-item:hover .kefu-qrcode {
            opacity: 1;
            visibility: visible;
        }

        .kefu-qrcode img {
            width: 100%;
            height: auto;
            border-radius: 4px;
        }

        .kefu-qrcode p {
            margin: 8px 0 0;
            font-size: 14px;
            color: #333;
        }

        /* 移动端隐藏 */
        @media (max-width: 768px) {
            .kefu-sidebar {
                display: none;
            }
        }