       /* 唯一自定义容器 */
/* 自适应全屏轮播 —— 无定位、无固定高度，图片自然撑开 */
.hero-swiper {
    position: relative;
    width: 100%;
    overflow: hidden;
    /* 完全没有 height / max-height */
}
/* 自适应幻灯片 —— 已删除 absolute 定位 */
.slide-item {
    width: 100%;
    height: auto;
    opacity: 0;
    transition: opacity 0.8s ease;
    display: none; /* 配合轮播切换，非激活隐藏 */
}
.slide-item.active {
    opacity: 1;
    z-index: 2;
    display: block; /* 激活显示 */
}
/* 图片/视频 自然尺寸显示 */
.slide-item img,
.slide-item video {
    width: 100%; /* 宽度自适应屏幕 */
    height: auto; /* 高度自动等比例 */
    object-fit: unset;
    display: block;
}

/* 自适应箭头 */
.swiper-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.2);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    z-index: 99;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}
.swiper-btn:hover {
    background: rgba(255,255,255,0.4);
    transform: translateY(-50%) scale(1.1);
}
.swiper-btn.prev { left: 20px; }
.swiper-btn.next { right: 20px; }

/* 手机端自动缩小箭头 */
@media (max-width:768px) {
	
	/* 图片/视频 自适应关键代码 */
.slide-item img,
.slide-item video {
    width: 100%;
    height: 100%;

  object-fit: contain; /* 自动裁剪不变形 */
    display: block;
}
    .swiper-btn {
        width: 40px;
        height: 40px;
    }
	.hero-swiper {
    position: relative;
    width: 100%;
    height: 180px; /* 全屏高度 */
    max-height: 270px; /* 可自己改高度 */
    overflow: hidden;
    z-index: 9;
}
    .swiper-btn.prev { left: 10px; }
    .swiper-btn.next { right: 10px; }
}

/* 箭头图标 */
.swiper-btn::after {
    content: '';
    width: 10px;
    height: 10px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
}
.swiper-btn.prev::after { transform: rotate(-135deg); margin-left: 4px; }
.swiper-btn.next::after { transform: rotate(45deg); margin-right: 4px; }



/* 搜索提交按钮 */
.sl-search-submit {

  height: 46px;
  padding: 0 15px;
  background: #007bff;
  color: #fff;
  border: none;
  border-radius:6px;
  cursor: pointer;
  font-size: 15px;
  transition: background 0.2s;
}
.sl-search-submit:hover {
  background: #0056b3;
}




        /* 主容器 - 宽度改为1400px */
		 .sunli-about{padding:50px 0;background: #f3f5f6;}
        .sunli-about-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 40px 20px;
            /* background-color: #ffffff; */
            border-radius: 16px;
            /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05); */
        }

        /* 标题部分 */
        .sunli-about-header {
            margin-bottom: 40px;
        }

        .sunli-about-header .section-tag {
            display: inline-block;
            color: #ff8a00;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 8px;
            text-transform: uppercase;
        }

        .sunli-about-header h2 {
            font-size: 32px;
            font-weight: 700;
            color: #333;
            margin-bottom: 20px;
        }

        .sunli-about-header p {
            font-size: 16px;
            color: #666;
            margin-bottom: 16px;
            text-align: justify;
            line-height: 1.8;
        }

        /* 数据统计部分 - 去掉上下横线 */
        .sunli-stats-wrapper {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 0;
            margin: 50px 0;
            padding: 30px 0;
            /* 去掉上下边框 */
            /* border-top: 1px solid #eee; */
            /* border-bottom: 1px solid #eee; */
        }

        .sunli-stat-item {
            flex: 1;
            min-width: 160px;
            text-align: center;
            transition: transform 0.3s ease;
            position: relative;
            padding: 0 10px;
        }

        /* 右侧浅色竖线 */
        .sunli-stat-item:not(:last-child)::after {
            content: "";
            width: 1px;
            height: 50px;
            background-color: #ddd;
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
        }

        .sunli-stat-item:hover {
            transform: translateY(-5px);
        }

        .sunli-stat-icon {
            color: #ff8a00;
            font-size: 24px;
            margin-bottom: 10px;
        }

        /* 数字 + 加号 + 单位 统一排版 */
        .sunli-stat-number {
            font-size: 36px;
            font-weight: 700;
            color: #262626;
            margin-bottom: 5px;
            position: relative;
            display: inline-flex;
            align-items: baseline;
            gap: 2px;
        }

        /* +号 和数字同大小、同颜色 */
        .sunli-stat-plus {
            font-size: 36px;
            font-weight: 700;
            color: #262626;
        }

        /* 右侧小字单位 */
        .sunli-stat-unit {
            font-size: 15px;
            color: #888;
            font-weight: 400;
            margin-left: 2px;
        }

        .sunli-stat-label {
            font-size: 16px;
            color: #666666;
            text-transform: uppercase;
        }

        /* 了解详情按钮 */
        .sunli-detail-btn {
            display: inline-block;
            background-color: #ff8a00;
            color: white;
            padding: 12px 30px;
            border-radius: 30px;
            text-decoration: none;
            font-size: 15px;
            font-weight: 600;
            transition: all 0.3s ease;
            margin: 20px 0;
        }

        .sunli-detail-btn:hover {
            background-color: #e07a00;
            box-shadow: 0 4px 15px rgba(255, 138, 0, 0.3);
            transform: translateY(-2px);
        }

        /* 图片部分 */
        .sunli-image-wrapper {
            margin-top: 40px;
            /* border-radius: 20px; */
            overflow: hidden;
        }

   .sunli-image-wrapper img {
            width: 100%;
            height: auto;
            display: block;
            object-fit: cover;
            transition: transform 0.8s ease; /* 缓慢放大动画 */
            cursor: pointer;
        }

        /* 鼠标悬停图片放大 */
        .sunli-image-wrapper:hover img {
            transform: scale(1.08);
        }
        /* 响应式适配 */
        @media (max-width: 1024px) {
            .sunli-stat-item {
                min-width: 140px;
            }
        }

        @media (max-width: 768px) {
            .sunli-stats-wrapper {
                justify-content: center;
                gap: 20px 0;
                margin: 0;
            }
            .sunli-stat-item {
                flex: 0 0 50%;
                margin-bottom: 20px;
            }
            .sunli-stat-item:nth-child(even)::after {
                display: none;
            }
            .sunli-stat-number,
            .sunli-stat-plus {
                font-size: 28px;
            }
        }

        @media (max-width: 480px) {
            .sunli-stat-item {
                flex: 0 0 48%;
            }
            .sunli-stat-item::after {
                display: none !important;
            }
            .sunli-about-header h2 {
                font-size: 24px;
            }
        }






    /* 最外层容器 */
        .solution-outer-container {
            max-width: 1400px;
            margin: 0 auto;
            background: #fff;
            padding: 60px 0;
            border-radius: 0;
        }

        /* 顶部大标题 */
        .solution-top-title {
            position: relative;
            padding-left: 16px;
            margin-bottom: 60px;
        }

        .solution-top-title::before {
            content: "";
            position: absolute;
            left: 0;
            top: 10px;
            /* width: 6px; */
            /* height: 20px; */
            /* background: #ff8a00; */
            /* border-radius: 3px; */
        }

        .solution-top-title-en {
            font-size: 16px;
            color: #999;
            display: block;
            margin-bottom: 6px;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        .solution-top-title-cn {
            font-size: 32px;
            color: #333;
            font-weight: 700;
            display: block;
        }

        /* 内容容器：左侧选项卡 + 右侧图片 */
        .solution-tab-container {
            display: flex;
            gap: 60px;
            align-items: flex-start;
        }

        /* 左侧选项卡容器 - 宽度350px + 图标贴最左 */
        .solution-tab-nav {
            flex: 0 0 420px;
            padding-left: 0;
            padding-right: 0;
            position: relative;
        }

        /* ====================== 核心：由长变短 短横线 - 清晰可见 ====================== */
        .solution-tab-nav::before {
            content: "";
            position: absolute;
            left: 16px;
            top: 0;
            bottom: 0;
            width: 12px;
            z-index: 1;
            background: url(../images/zhi.png);
        }
        /* ======================================================================== */

        .solution-tab-list {
            list-style: none;
            position: relative;
            z-index: 2;
            padding: 50px 0;
        }

        .solution-tab-item {
            margin-bottom: 15px;
            position: relative;
            cursor: pointer;
            border-radius: 0;
            transition: background-color 0.3s ease;
        }

        .solution-tab-item:hover {
            /* background-color: #f9f5f0; */
        }

        .solution-tab-link {
            display: flex;
            /* align-items: center; */
            gap: 25px;
            text-decoration: none;
            position: relative;
            padding: 12px 8px 12px 0;
            transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
            transform: translateX(0);
            opacity: 0.85;
            width: 100%;
        }

        .solution-tab-link:hover {
            /* transform: translateX(4px); */
            opacity: 1;
        }

        /* 图标容器 - 贴最左 */
        .solution-tab-icon-wrap {
            flex: 0 0 40px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            /* border-radius: 50%; */
            /* background-color: rgba(255, 255, 255, 0.97); */
            z-index: 3;
            margin: 4px 0 0px;
        }

        .solution-tab-link.active .solution-tab-icon-wrap {
            /* background-color: rgba(255, 248, 240, 0.9); */
        }

        .solution-tab-icon {
            font-size: 20px;
            color: #ccc;
            position: relative;
            z-index: 4;
            transition: color 0.4s ease, transform 0.4s ease;
            filter: brightness(26%);
        }

        /* 文字区域 */
        .solution-tab-text-wrap {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .solution-tab-main-text {
            font-size: 26px;
            color: #999;
            font-weight: 500;
            transition: color 0.4s ease, font-weight 0.4s ease;
            line-height: 1.2;
        }

        .solution-tab-sub-text {
            font-size: 16px;
            color: #000;
            line-height: 1.5;
            letter-spacing: 0.5px;
            height: 0;
            opacity: 0;
            visibility: hidden;
            transition: height 0.3s ease 0.1s, opacity 0.3s ease 0.1s, visibility 0.3s ease 0.1s;
        }

        .solution-tab-btn {
            height: 0;
            opacity: 0;
            visibility: hidden;
            background: #ff8a00;
            color: white;
            font-size: 16px;
            padding: 6px 18px;
            border-radius: 15px;
            text-decoration: none;
            margin-top: 6px;
            align-self: flex-start;
            transition: height 0.3s ease 0.2s, opacity 0.3s ease 0.2s, visibility 0.3s ease 0.2s, transform 0.3s ease 0.2s;
            transform: translateY(8px);
        }

        /* 激活态 */
        .solution-tab-link.active {
            /* transform: translateX(6px); */
            opacity: 1;
        }

        .solution-tab-link.active .solution-tab-icon {
            color: #ff8a00;
            filter: brightness(100%);
        }

        .solution-tab-link.active .solution-tab-main-text {
            color: #000;
            font-weight: 600;
        }

        .solution-tab-link.active .solution-tab-sub-text,
        .solution-tab-link.active .solution-tab-btn {
            height: auto;
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        /* 右侧图片 */
        .solution-tab-content-wrap {
            flex: 1;
            border-radius: 20px;
            overflow: hidden;
            /* box-shadow: 0 8px 24px rgba(0,0,0,0.05); */
            position: relative;
            /* min-height: 400px; */
        }

        .solution-tab-content {
            /* position: absolute; */
            top: 0;
            left: 0;
            width: 100%;
            /* height: 100%; */
            display: none;
            opacity: 0;
            transform: scale(0.98);
            transition: opacity 0.5s ease, transform 0.5s ease;
        }

        .solution-tab-content.active {
            display: block;
            opacity: 1;
            transform: scale(1);
        }

        .solution-tab-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s ease;
        }

        .solution-tab-content:hover .solution-tab-img {
            transform: scale(1.02);
        }

        /* 响应式 */
        @media (max-width: 992px) {
            .solution-outer-container { padding: 40px 30px; }
            .solution-tab-container { flex-direction: column; gap: 40px; }
            .solution-tab-nav { flex: none; width: 100%; padding-right: 20px; }
            .solution-tab-nav::before { left: 18px; }
            .solution-tab-content-wrap { min-height: 300px; }
        }

        @media (max-width: 480px) {
            body {padding: 5px;}
            .solution-outer-container { padding: 25px 20px; }
            .solution-tab-nav::before { left: 18px; }
            .solution-tab-icon-wrap { flex: 0 0 36px; height: 36px; }
        }


		
		
		
		
		  /* 主体容器：固定1400px并居中 */
        .sl-product-main-wrapper {
            max-width: 1400px;
            margin: 0 auto;
            padding: 60px 0;
            background-color: #ffffff;
        }

        /* 标题部分 */
        .sl-product-header-section {
            margin-bottom: 40px;
        }
        .sl-product-subtitle {
            font-size: 20px;
            color: #333333;
            font-weight: 600;
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .sl-product-subtitle::before {
            content: "";
            display: inline-block;
            width: 4px;
            height: 20px;
            background-color: #ff8800;
        }
        .sl-product-title {
            font-size: 36px;
            color: #222222;
            font-weight: 700;
        }

        /* 卡片容器布局：两列网格 */
        .sl-product-cards-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
        }

        /* ========== 左侧卡片：文字定位在图片 左上角 ========== */
        .sl-product-card-left {
            position: relative;
            border-radius: 30px;
            overflow: hidden;
            height: 100%;
            min-height: 420px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
            grid-row: 1 / 3;
        }
        .sl-product-card-left:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 24px rgba(0,0,0,0.12);
        }
        /* 背景图 */
        .sl-product-card-left .sl-card-bg-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .sl-product-card-left:hover .sl-card-bg-img {
            transform: scale(1.05);
        }
        /* 文字悬浮层 - 左上角 */
        .sl-product-card-left .sl-card-text-overlay {
            position: absolute;
            left: 0;
            top: 0;
            width: 100%;
            padding: 40px;
            color: #fff;
            z-index: 2;
        }
        .sl-product-card-left .sl-card-text-overlay h3 {
            font-size: 26px;
            margin-bottom: 20px;
            font-weight: 600;
            color: #000;
        }
        .sl-product-card-left .sl-card-text-overlay ul {
            list-style: none;
            margin-bottom: 24px;
        }
        .sl-product-card-left .sl-card-text-overlay li {
            font-size: 16px;
            margin-bottom: 6px;
            line-height: 1.6;
            color: #999;
        }
        .sl-product-card-left .sl-card-btn {
            padding: 10px 26px;
            background: #fff;
            border: none;
            border-radius: 30px;
            color: #999;
            font-size: 14px;
            cursor: pointer;
            backdrop-filter: blur(4px);
            transition: all 0.3s ease;
        }
        .sl-product-card-left .sl-card-btn:hover {
            background: #ff8800;
        }

        /* ========== 右侧卡片：上下两个 左右结构 图片铺满高度 ========== */
        .sl-product-card-right {
            display: flex;
            align-items: stretch; /* 让子元素撑满高度 */
            gap: 30px;
            background: #f5f6f8; /* 默认背景色 */
            border-radius: 16px;
            padding: 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
            min-height: 200px;
            overflow: hidden;
        }
        /*  hover 背景变白色 */
        .sl-product-card-right:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 24px rgba(0,0,0,0.1);
            background: #ffffff;
        }
		
		
        /* 文字区域 */
        .sl-product-card-right .sl-card-text {
            flex: 1;
            padding: 30px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        .sl-product-card-right .sl-card-text h3 {
            font-size: 26px;
            color: #000;
            margin-bottom: 20px;
            font-weight: 600;
        }
        .sl-product-card-right .sl-card-text ul {
            list-style: none;
            margin-bottom: 24px;
        }
        .sl-product-card-right .sl-card-text li {
            font-size: 16px;
            color: #999;
            margin-bottom: 8px;
            line-height: 1.6;
        }
        .sl-product-card-right .sl-card-btn {
            padding: 10px 26px;
            background: #fff;
            color: #999;
            border: none;
            border-radius: 30px;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-block;
            width: 124px;
        }
        .sl-product-card-right .sl-card-btn:hover {
            opacity: 0.9;
        }
.sl-product-card-right:hover .sl-card-text h3{color:#ff9a34;}
.sl-product-card-right:hover .sl-card-btn{color:#fff;background:#ff9a34;}

.sl-product-card-left:hover .sl-card-text-overlay h3{color:#ff9a34;}
.sl-product-card-left:hover .sl-card-btn{color:#fff;background:#ff9a34;}

        /* 右侧图片：加外框包裹 + 圆角 + 铺满高度 */
        .sl-product-card-right .sl-card-img-wrap {
            width: 40%;
            height: 100%;
             /* 框内边距 */
            border-radius: 0;
            overflow: hidden;
        }
        .sl-product-card-right .sl-card-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
             /* 图片圆角 */
            transition: transform 0.5s ease;
        }
        .sl-product-card-right:hover .sl-card-img {
            transform: scale(1.05);
        }

        /* ========== 响应式适配 ========== */
        @media (max-width: 1024px) {
            .sl-product-cards-container {
                grid-template-columns: 1fr;
            }
            .sl-product-card-left {
                grid-row: auto;
            }
            .sl-product-card-right {
                flex-direction: column;
            }
            .sl-product-card-right .sl-card-img-wrap {
                width: 100%;
                height: 200px;
                padding: 10px;
            }
        }
		
		
		
		
		
		 .client{padding: 0 10px 50px;background:#f3f5f6;overflow: hidden;}
		
        /* 标题容器：1400px居中 - 匹配参考样式 */
        .client-title-wrapper {
            max-width: 1400px;
            margin: 0 auto;
            padding: 60px 20px 30px;
        }
        /* 核心修改：匹配参考的双斜杠+英文样式 */
        .client-subtitle {
            font-size: 14px; /* 参考图小字尺寸 */
            color: #000; /* 英文灰色调 */
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            gap: 8px;
            font-weight: 600;
            letter-spacing: 1px; /* 英文字母间距更舒展 */
        }
        /* 替换为橙色双斜杠 */
        .client-subtitle::before {
            content: "//"; /* 双斜杠代替横线 */
            width: auto;
            height: auto;
            background-color: transparent;
            color: #ff8800; /* 橙色斜杠 */
            font-size: 16px;
            font-weight: 600;
            display: inline-block;
        }
        /* 中文标题样式优化 */
        .client-main-title {
            font-size: 32px; /* 参考图大字尺寸 */
            color: #333;
            font-weight: 700;
            line-height: 1.2;
        }

        /* 轮播容器：全屏宽度 */
        .client-carousel-container {
            width: 100%;
            overflow: hidden;
            /* background-color: #fff; */
            padding: 20px 0;
        }

        /* 轮播行通用样式 */
        .client-carousel-row {
            display: flex;
            align-items: center;
            white-space: nowrap;
            animation-duration: 30s;
            animation-timing-function: linear;
            animation-iteration-count: infinite;
            margin-bottom: 20px;
        }
        /* 不同方向的动画 */
        .animate-left {
            animation-name: scrollLeft;
        }
        .animate-right {
            animation-name: scrollRight;
        }

        /* 左滚动动画 */
        @keyframes scrollLeft {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }
        /* 右滚动动画 */
        @keyframes scrollRight {
            0% {
                transform: translateX(-50%);
            }
            100% {
                transform: translateX(0);
            }
        }

        /* 客户项样式 */
        .client-item {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 120px;
            height: 120px;
            margin: 0 20px;
            border-radius: 50%;
            background-color: #fff;
            position: relative;
            cursor: pointer;
            transition: all 0.3s ease;
            overflow: hidden; /* 确保内容不溢出圆形 */
        }
        /* 高亮项（橙底） */
        .client-item.highlight {
            background-color: #ff8800;
        }
        .client-item.highlight img {
            filter: brightness(0) invert(1);
        }
        /* 客户logo：铺满圆形框 */
        .client-item img {
            width: 100%;
            height: 100%;
            object-fit: cover; /* 图片铺满容器 */
             /* 内边距避免图片贴边 */
            transition: all 0.3s ease;
        }
        /* hover效果：放大+显示名称 */
        .client-item:hover {
            transform: scale(1.1);
            box-shadow: 0 8px 16px rgba(0,0,0,0.1);
            z-index: 10;
            /* 移除纯色背景，保留放大和阴影 */
        }
        .client-item:hover img {
            filter: brightness(0.8); /* logo 稍微变暗，突出文字 */
        }
        /* 客户名称提示：半透明橙色背景+两行居中+白色文字 */
 .client-name {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    /* 移除无效的 flex-wrap: wrap */
    font-size: 14px;
    color: #fff;
    background-color: rgba(255, 136, 0, 0.8); /* 半透明橙色 */
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    line-height: 1.4; /* 行间距适配两行文字 */
    padding: 10px; /* 内边距防止文字贴边 */
    /* 核心换行/溢出处理 */
    word-wrap: break-word; /* 强制换行（兼容旧浏览器） */
    word-break: break-all; /* 中英文都能换行 */
    white-space: normal; /* 取消默认的 nowrap，允许自动换行 */
    box-sizing: border-box; /* 确保 padding 不超出圆形容器 */
}
        .client-item:hover .client-name {
            opacity: 1;
            visibility: visible;
        }

        /* 响应式适配 */
        @media (max-width: 768px) {
            .client-item {
                width: 80px;
                height: 80px;
                margin: 0 10px;
            }
            .client-item img {
                padding: 15px;
            }
            .client-name {
                font-size: 12px;
                padding: 0 5px;
                background-color: rgba(255, 136, 0, 0.85); /* 移动端透明度稍高，文字更清晰 */
            }
            .client-carousel-row {
                animation-duration: 20s;
            }
            /* 移动端标题适配 */
            .client-subtitle {
                font-size: 12px;
            }
            .client-main-title {
                font-size: 22px;
            }
        }
		
		
  /* 标题容器：1400px居中，匹配之前的标题风格 */
        .news-title-wrapper {
            max-width: 1400px;
            margin: 0px auto 40px;
            padding: 10px;
        }
        .news-subtitle {
            font-size: 14px;
            color: #000;
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            gap: 8px;
            font-weight: 600;
            letter-spacing: 1px;
        }
        /* 橙色双斜杠，和之前的标题样式统一 */
        .news-subtitle::before {
            content: "//";
            width: auto;
            height: auto;
            background-color: transparent;
            color: #ff8800;
            font-size: 16px;
            font-weight: 600;
            display: inline-block;
        }
        .news-main-title {
            font-size: 32px;
            color: #333;
            font-weight: 700;
            line-height: 1.2;
        }

        /* 最新动态卡片容器 */
        .news-card-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 24px; /* 卡片之间的间距 */
        }

        /* 单个卡片样式 */
        .news-card {
            background-color: #fff;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            cursor: pointer;
        }
        /* hover交互效果：匹配参考图的橙色高亮 */
        .news-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
        }

        /* 卡片图片区域 */
        .news-card-img {
            width: 100%;
            height: 180px;
            object-fit: cover; /* 图片等比例填充，不拉伸 */
            display: block;
        }

        /* 卡片内容区域 */
        .news-card-content {
            padding: 20px;
            font-size: 15px;
            line-height: 1.5;
            color: #666;
        }
        /* 日期样式 */
        .news-card-date {
            font-size: 14px;
            color: #999;
            margin-bottom: 20px;
            display: block;
        }
        /* 标题文字 */
        .news-card-title {
            font-size: 18px;
            color: #333;
            line-height: 1.5;
            margin-bottom: 15px;
            transition: color 0.3s ease;
        }
        /* hover时标题文字变橙色 */
        .news-card:hover .news-card-title {
            color: #ff8800;
        }
        /* 分割线 */
        .news-card-divider {
            height: 1px;
            background-color: #eee;
            margin: 15px 0;
            transition: background-color 0.3s ease;
        }
        /* hover时分割线变橙色 */
        .news-card:hover .news-card-divider {
            background-color: #ff8800;
        }
        /* 查看详情按钮 */
        .news-card-more {
            display: flex;
            align-items: center;
            justify-content: space-between;
            font-size: 14px;
            color: #666;
            transition: color 0.3s ease;
        }
        /* hover时按钮文字变橙色 */
        .news-card:hover .news-card-more {
            color: #ff8800;
        }
        .news-card-more i {
            font-size: 12px;
        }

        /* 响应式适配 */
        @media (max-width: 768px) {
            .news-subtitle {
                font-size: 12px;
            }
            .news-main-title {
                font-size: 22px;
            }
            .news-card-container {
                grid-template-columns: 1fr;
                gap: 16px;
            }
            .news-card-img {
                height: 150px;
            }
            .news-card-content {
                padding: 16px;
            }
			
			
			
			
			
		.solution-tab-list {
    list-style: none;
    position: relative;
    z-index: 2;
    padding: 10px 0;
}
.solution-tab-main-text{font-size:18px}	
			
			
			
	.sl-product-main-wrapper {

    padding: 20px 10px;

}		
	.client-title-wrapper {

    padding: 20px 10px;
}		
			
			
			
			
	.sl-product-card-left .sl-card-bg-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.5s ease;
}


.sl-product-card-left .sl-card-text-overlay {
    position: relative;
    left: 0;
    top: 0;
    width: 100%;
    padding: 40px;
    color: #fff;
    z-index: 2;
}


.sl-product-card-left .sl-card-btn {
    padding: 10px 26px;
    background: #f5f6f8;
    border: none;
    border-radius: 30px;
    color: #999;
    font-size: 14px;
    cursor: pointer;
    backdrop-filter: blur(4px);
    transition: all 0.3s ease;
}		
	.sunli-about {
    padding: 0 0;
    background: #f3f5f6;
}		






.sunli-about-container {
   
    text-align: center;
}


.sunli-about-header {
  
    text-align: left;
}






			
        }		