   * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "Microsoft YaHei", "PingFang SC", sans-serif;
        }

        body {
            color: #2A2A2A;
            line-height: 1.6;
            overflow-x: hidden;
            margin: 0;
            padding: 0;
        }
		h2{font-size:28px}
        /* 内容容器 - 统一限制内容宽度为1440px并居中 */
        .content-wrapper {
            max-width: 1440px;
            margin: 0 auto;
            width: 100%;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        ul {
            list-style: none;
        }

        /* 导航栏 - 全屏展示，内容居中 */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 999;
            background: transparent;
            transition: all 0.3s ease;
            box-shadow: none;
            height: auto;
        }

        /* 导航栏内容容器 - 限制在1440px内 */
.header-inner {
    max-width: 1440px;
    margin: 0 auto;
    width: 100%;
    padding: 0 20px;
}
.nav-actions {
            display: flex; align-items: center; gap: 12px; z-index: 1001;
        }
.nav-phone-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: #0909B7;
    border-radius: 50px;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.05em;
    transition: all var(--transition-fast);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.nav-phone-btn .phone-icon {
    width: 18px;
    height: 18px;
    color:#fff; 
    transition: all var(--transition-fast);
}

/* Hover 悬浮科技发光效果 */
.nav-phone-btn:hover {
    border: 1px solid #fff;
    transform: translateY(-2px);
}

.nav-phone-btn:hover .phone-icon {
    transform: scale(1.1) rotate(15deg);
    color:#000;
}
/* 滚动后的导航栏样式 */
header.scrolled {
    background:#fff;
}
header.scrolled a{color:#2A2A2A;font-weight: bold;}
header.scrolled .submenu a{color:#2A2A2A;font-weight: normal;font-size:16px;}
.submenu li a{font-size:16px;}

/* 关键修改：调整header-container的flex布局，让导航右对齐 */
.header-container {
    display: flex;
    justify-content: space-between; /* 保持logo左、右侧元素右 */
    align-items: center;
    padding: 30px 0;
    width: 100%;
}
.phone-num{color:#fff}
/* 新增：导航+右侧元素的容器（统一右对齐） */
.nav-wrapper {
    display: flex;
    align-items: center;
    gap: 60px; /* 导航和右侧元素的间距 */
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 38px;
}

.logo-text {
    font-size: 14px;
    color: #fff;
    line-height: 1.2;
    transition: color 0.3s ease;
}

/* 滚动后logo文字变色 */
header.scrolled .logo-text {
    color: #003366;
}

.nav-main {
    display: flex;
    gap: 52px;
    /* 移除原有居中相关样式，保持flex即可 */
}

        .nav-item {
            position: relative;
            font-size: 14px;
            color: #fff;
            cursor: pointer;
            transition: color 0.3s;
        }

        /* 滚动后导航文字变色 */
        header.scrolled .nav-item {
            color: #fff;
        }

        .nav-item:hover {

        }

        .nav-item > a {
            padding: 8px 0;
            display: block;
			font-size:18px;
			font-weight:bold;
        }

        /* 二级菜单 */
        .submenu {
            position: absolute;
            top: 100%;
            left: 0;
            min-width: 180px;
            background: #fff;
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: all 0.3s;
        }

        .nav-item:hover .submenu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
			z-index:999999;
        }

        .submenu li {
            padding: 20px 20px;
            font-size: 13px;
            border-bottom: 1px solid #f0f0f0;
            transition: background 0.2s;
            color: #2A2A2A;
        }

        .submenu li:last-child {
            border-bottom: none;
        }

        .submenu li:hover {
        }

        .nav-right {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .lang-switch {
            font-size: 13px;
            color: #fff;
            cursor: pointer;
            transition: color 0.3s;
        }

        /* 滚动后语言切换文字变色 */
        header.scrolled .lang-switch {
            color: #666;
        }

        .lang-switch:hover {
            color: #0066cc;
        }

        .search-icon {
            height:20px;
			margin-left:20px;
			margin-right:20px;
        }

        /* 滚动后搜索图标变色 */
        header.scrolled .search-icon {
            color: #fff;
			margin-left:20px;
			margin-right:20px;
        }

        /* 移动端菜单按钮 */
        .mobile-menu-btn {
            display: none;
            font-size: 22px;
            color: #fff;
            cursor: pointer;
            transition: color 0.3s;
        }

        /* 滚动后移动端菜单按钮变色 */
        header.scrolled .mobile-menu-btn {
            color: black;
        }

        /* Banner轮播 - 核心修改：完全占满视口，无任何高度限制 */
        .banner {
            position: relative;
            height: 100vh;
            width: 100vw;
            overflow: hidden;
            margin: 0;
            padding: 0;
        }

        .banner-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1s ease-in-out;
        }

        .banner-slide.active {
            opacity: 1;
        }

        .banner-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Banner文字内容样式 - 确保在视口内居中 */
        .banner-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            color: #fff;
            z-index: 10;
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
            width: 90%;
        }

        .banner-title {
            font-size: clamp(28px, 5vw, 58px);
            font-weight: bold;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .banner-subtitle {
            font-size: clamp(16px, 3vw, 32px);
            margin-bottom: 30px;
            opacity: 0.9;
        }

        .banner-btn {
            display: inline-block;
            padding: 12px 30px;
            background: rgba(255, 255, 255, 0.2);
            border: 2px solid #fff;
            border-radius: 4px;
            color: #fff;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s;
        }

        .banner-btn:hover {
            background: #fff;
            color: #0909B7;
        }

        /* Banner切换按钮 - 固定在Banner内，始终可见 */
        .banner-next-btn {
            position: absolute;
            bottom: 0;
            right: 0.9vw;
            width: clamp(35px, 5vw, 80px);
            height: clamp(35px, 5vw, 78px);
            background: #0909B7;
            border: none;
            border-radius: 0;
            color: #fff;
            font-size: clamp(16px, 3vw, 24px);
            cursor: pointer;
            z-index: 20;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.3s ease;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
            pointer-events: auto;
        }

        .banner-next-btn:hover {
            background: #034be5;
        }

        /* 所有其他内容区域 - 确保在Banner下方 */
        .news-section, .about-section, .honor-section, .performance-section, footer {
            position: relative;
            width: 100%;
            padding-top: 60px;
            padding-bottom: 80px;
        }

        /* 律所新闻 - 内容限制在1440px内 */
        .news-section {
            max-width: 1440px;
            margin: 0 auto;
            padding: 60px 20px;
        }
.submenu li a:hover{color:#2A2A2A}
        /* 主容器 - 全屏适配 */
.container_news {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* 轮播外层容器 - 全屏滚动核心 */
.carousel-wrapper {
    width: 100%;
    height: 80%;
    overflow: hidden;
    /* 核心调整：增大左右留白（从5vw→8vw） */
    padding: 0 12vw; /* 左右各8%的留白，比原来更宽 */
	padding-bottom:80px;
}

/* 轮播轨道（滑动容器） */
.carousel-track {
    display: flex;
    height: 100%;
    transition: transform 0.5s ease-in-out;
    transform: translateX(0);
}

/* 轮播项样式 - 缩窄卡片宽度 */
.carousel-item {
    /* 核心调整：桌面端从1/3→1/4（更窄），间距保持20px */
    flex: 0 0 calc((100% - 60px) / 3); 
    height: 100%;
    margin-right: 40px; /* 卡片间距 */
    background-color: #fff;
    border-radius: 10px;
    box-shadow: none;
    overflow: hidden;
}

/* 最后一个卡片取消右侧间距 */
.carousel-item:last-child {
    margin-right: 0;
}

/* 卡片图片容器 - 自适应高度 */
.item-img {
    width: 100%;
    height: 60%; /* 图片占卡片高度的60%，适配全屏 */
    overflow: hidden;
}

.item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* 保持图片比例 */
}

/* 卡片内容区域 */
.item-content {
    padding: 50px;
    height: 40%; /* 内容占卡片高度的40% */
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.item-content h3 {
    font-size: clamp(16px, 2vw, 20px); /* 响应式字体 */
    font-weight: 600;
    color: #333;
    margin-bottom: 30px;
    line-height: 1.4;
	
}

.item-content p {
    font-size: clamp(12px, 1.5vw, 14px); /* 响应式字体 */
    color: #666;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
	margin-bottom:30px;
}

/* 第三个卡片的日期样式 */
.date {
    position: absolute;
    top: 20px;
    left: 20px;
    text-align: center;
    margin-right: 20px;
}

.date .day {
    font-size: clamp(28px, 4vw, 36px);
    font-weight: bold;
    color: #333;
    display: block;
    line-height: 1;
}

.date .month {
    font-size: clamp(12px, 1.5vw, 14px);
    color: #999;
    display: block;
    margin-top: 5px;
}
/* 控制按钮样式 */
.carousel-controls {
    position: absolute;
    bottom: 1vh; /* 距离底部5%，适配全屏 */
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.control-btn {
    width: clamp(36px, 5vw, 40px); /* 响应式按钮尺寸 */
    height: clamp(36px, 5vw, 40px);
    border-radius: 50%;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: 20px;
    transition: background-color 0.3s;
}

.prev-btn {
    background-color: #0909B7;
    color: #fff;
}

.next-btn {
    background-color: #0909B7;
    color: #fff;
}

.control-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* 移动端适配（小屏优化） */
@media (max-width: 768px) {
    /* 核心调整：移动端卡片宽度从90%→80%（更窄） */
    .carousel-item {
        flex: 0 0 80%;
    }
    
    /* 移动端留白同步增大（从3vw→5vw） */
    .carousel-wrapper {
        padding: 0 8vw;
		padding-bottom:80px;
    }

    .item-img {
        height: 55%; /* 小屏调整图片高度 */
    }
.header-container {
    padding: 20px 0;

}
    .item-content {
        height: 45%;
        padding: 15px;
    }
}

        .more-link {
            display: inline-block;
            font-size: 14px;
            transition: all 0.2s;
            font-weight: 500;
        }

        .more-link:hover {
            transform: translateX(5px);
        }

        /* ===== 关于我们板块 - 高端大气样式 ===== */
        .about-section {
            background: linear-gradient(135deg, #001f3f 0%, #003366 50%, #004080 100%);
            color: #fff;
            padding: 100px 20px;
            position: relative;
            overflow: hidden;
        }

        /* 背景装饰元素 */
        .about-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
			opacity: 0.1;
            z-index: 1;
        }

        .about-container {
            max-width: 1440px;
            margin: 0 auto;
            width: 100%;
            position: relative;
            z-index: 2;
        }

        .about-header {
            text-align: center;
            margin-bottom: 80px;
        }

        .about-title {
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }

        .about-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: #4da6ff;
            border-radius: 2px;
        }

        .about-subtitle {
            font-size: 18px;
            opacity: 0.9;
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.8;
        }

        /* 关于我们内容网格 */
        .about-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            margin-bottom: 80px;
        }

        /* 关于我们卡片 */
        .about-card {
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            padding: 40px 30px;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        /* 卡片悬停效果 */
        .about-card:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.12);
            border-color: rgba(255, 255, 255, 0.2);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        /* 卡片顶部装饰线 */
        .about-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, #4da6ff, #0066cc);
            opacity: 0.8;
            transition: opacity 0.3s;
        }

        .about-card:hover::before {
            opacity: 1;
        }

        .about-card-icon {
            font-size: 40px;
            color: #4da6ff;
            margin-bottom: 25px;
            display: inline-block;
        }

        .about-card-title {
            font-size: 22px;
            font-weight: 600;
            margin-bottom: 20px;
            color: #fff;
        }

        .about-card-desc {
            font-size: 15px;
            line-height: 1.8;
            opacity: 0.9;
            color: #e6e6e6;
        }

        /* 核心价值部分 */
        .about-values {
            text-align: center;
            max-width: 1000px;
            margin: 0 auto;
            padding: 40px;
            background: rgba(0, 16, 32, 0.4);
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .values-title {
            font-size: 28px;
            font-weight: 600;
            margin-bottom: 30px;
        }

        .values-list {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
        }

        .value-item {
            flex: 1;
            min-width: 200px;
            max-width: 250px;
            padding: 20px;
        }

        .value-icon {
            font-size: 32px;
            color: #4da6ff;
            margin-bottom: 15px;
        }

        .value-name {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 10px;
        }

        .value-desc {
            font-size: 14px;
            opacity: 0.85;
            line-height: 1.6;
        }

        /* 了解更多按钮 */
        .about-cta {
            display: inline-block;
            margin-top: 60px;
            padding: 15px 40px;
            background: linear-gradient(90deg, #4da6ff, #0066cc);
            color: #fff;
            font-size: 16px;
            font-weight: 600;
            border-radius: 8px;
            transition: all 0.3s ease;
            box-shadow: 0 8px 24px rgba(77, 166, 255, 0.2);
        }

        .about-cta:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 30px rgba(77, 166, 255, 0.3);
        }

        /* 荣誉奖项 - 内容限制在1440px内 */
        .honor-section {
            max-width: 1440px;
            margin: 0 auto;
            padding: 60px 20px;
        }

        .honor-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 60px;
			align-items: center;
        }

        /* 荣誉奖项滑块容器 */
        .honor-slider {
            position: relative;
            overflow: hidden;
        }

        .honor-slides {
            display: flex;
            transition: transform 0.5s ease;
        }

        .honor-slide-item {
            min-width: 100%;
        }

        .honor-card {
            height: 450px;
            position: relative;
        }

        .honor-card-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .honor-card-content {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 40px;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
            color: #fff;
			padding-bottom:90px;
        }

        .honor-card-title {
            font-size: 24px;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .honor-card-desc {
            font-size: 15px;
            opacity: 0.9;
            line-height: 1.8;
            max-width: 800px;
        }

        /* 滑块指示器 */
        .honor-dots {
            position: absolute;
            bottom: 30px;
            left: 40px;
            display: flex;
            gap: 15px;
            z-index: 10;
        }

        .honor-dot {
            width: 50px;
            height: 4px;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.3s;
            border-radius: 2px;
        }

        .honor-dot.active {
            background: #fff;
            width: 100px;
        }

        /* 业绩表现 - 背景全屏，内容限制在1440px内 */

        .performance-container {
            max-width: 1440px;
            margin: 0 auto;
            width: 100%;
			padding-left:20px;
			padding-right:20px;
        }

        .performance-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 60px;
			align-items: center;
        }

        .performance-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .performance-card {
            background: rgba(255, 255, 255, 0.98);
            color: #333;
            padding: 30px;
            transition: all 0.4s;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
        }

        .performance-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
        }

        .performance-card-title {
            font-size: 20px;
            line-height: 1.8;
            margin-bottom: 20px;
            color: black;
            font-weight: bold;
        }

        .performance-card-link {
            font-size: 14px;
            font-weight: 500;
            transition: all 0.2s;
        }

        .performance-card-link:hover {
            margin-left: 5px;
        }

        .news-all{background:#F0F4F9;padding-bottom:50px;}
		.yj-all{background:url(../images/ind_achievebg.webp)}


        /* 响应式适配 */
        @media (max-width: 992px) {
            /* 平板/小屏电脑 */
            .nav-main {
                display: none;
            }
            .mobile-menu-btn {
                display: block;
            }
            .news-container {
                grid-template-columns: 1fr;
            }
            .performance-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .about-title {
                font-size: 30px;
            }
            .about-card {
                padding: 30px 20px;
            }
        }

        @media (max-width: 768px) {
            /* 手机端 */
            .performance-grid {
                grid-template-columns: 1fr;
            }
            .about-grid {
                gap: 25px;
            }
            .about-title {
                font-size: 26px;
            }
            .about-subtitle {
                font-size: 16px;
            }
            .values-list {
                flex-direction: column;
                gap: 20px;
            }
            .value-item {
                max-width: 100%;
            }
            .honor-card-content {
            }
            .honor-card-title {
                font-size: 20px;
            }
			.banner-next-btn {
            position: absolute;
            bottom: 0;
            right: 1vw;
            width: clamp(45px, 5vw, 60px);
            height: clamp(45px, 5vw, 60px);
            background: #0909B7;
            border: none;
            border-radius: 0;
            color: #fff;
            font-size: clamp(26px, 3vw, 24px);
            cursor: pointer;
            z-index: 20;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.3s ease;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
            pointer-events: auto;
        }
        }

        /* 强制覆盖所有可能的样式冲突 */
        @media (min-width: 0px) and (max-width: 9999px) {
            .banner {
                height: 100vh ;
                min-height: unset;
                max-height: unset;
            }
        }
/* 服务内容板块样式 */
.service-section {
    padding: 60px 20px;
    position: relative;
}

.service-header {
	margin-bottom:60px;
}

.service-subtitle {
    font-size: 16px;
    color: #666;
    margin-top: 15px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* 服务卡片网格 */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

/* 服务卡片样式 */
.service-card {
    background: #fff;
    padding: 40px 30px;
    transition: all 0.4s ease;
    border:solid 1px #e1dddd
}
.service-card-icon {;
    margin-bottom: 25px;
    color:black;
	background:black;
	height:2px;
	width:40px;
}

.service-card-title {
    font-size: 20px;
    font-weight: 600;
    color: black;
    margin-bottom: 15px;
}

.service-card-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-card-link {
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s;
    display: inline-block;
}

.service-card-link:hover {
    transform: translateX(5px);
}

/* 咨询按钮 */
.service-cta {
    text-align: center;
}

.service-cta-btn {
    display: inline-block;
    padding: 15px 40px;
    background: #0909B7;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-cta-btn:hover {
    transform: translateY(-3px);
}

/* 响应式适配 */
@media (max-width: 768px) {
    .service-section {
        padding: 80px 20px;
    }
    
    .service-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .service-cta-btn {
        padding: 12px 30px;
        font-size: 14px;
    }
	 .banner {height: var(--banner-height-mobile);
	 min-height: 520px;}
}
/* 核心：外层容器 - 相对定位 + 溢出隐藏 */
.about-section {
  position: relative;
  color: #FFFFFF; /* 文字白色 */
  padding: 100px 0;
  overflow: hidden;
  min-height: 600px; /* 保证最小高度，避免内容挤压 */
}

/* 背景容器 - 绝对定位铺满整个区域 */
.about-bg-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

/* 兜底背景图 - 视频加载前显示 */
.about-bg-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* 等比覆盖，不拉伸 */
  object-position: center; /* 居中显示 */
  z-index: 1;
  transition: opacity 0.8s ease; /* 渐变过渡 */
}

/* 视频背景 - 覆盖整个区域 */
.about-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* 等比覆盖，保持视频比例 */
  object-position: center; /* 居中显示 */
  z-index: 2;
  /* 视频加载完成后自动覆盖图片（通过JS控制） */
  opacity: 0;
  transition: opacity 0.8s ease;
}

/* 视频加载完成后显示视频、隐藏图片 */
.about-bg-video.loaded {
  opacity: 1;
}
.about-bg-video.loaded + .about-bg-placeholder {
  opacity: 0;
}

/* 文字内容容器 - 相对定位，层级高于背景 */
.about-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 3; /* 确保文字在最上层 */
}

.about-content {
  width: 65%; /* 左侧文字区域 */
  text-align: left;
  /* 可选：添加半透明背景，提升文字可读性 */
  /* background: rgba(0, 0, 0, 0.15);
  padding: 30px;
  border-radius: 8px; */
}

.about-title {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 24px;
  position: relative;
  color: #2A2A2A;
}

.about-title::after {
  content: '';
    position: absolute;
    bottom: 20px;
    left: 180px;
    width: 60px;
    height: 1px;
    background: #2A2A2A;
    border-radius: 2px;
}

.about-desc {
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 18px;
  color: #2A2A2A;
}

.about-btn {
  display: inline-block;
  margin-top: 12px;
  padding: 12px 32px;
  border: 1px solid #2A2A2A;
  color: #2A2A2A;
  text-decoration: none;
  font-size: 15px;
  transition: all 0.3s;
  border-radius:8px;
}

.about-btn:hover {
  background: #FFFFFF;
  color: #2A2A2A;
}

/* 移动端适配 */
@media (max-width: 768px) {
  .about-content {
    width: 100%;
    text-align: center;
  }
  .about-title::after {
    display:none
  }
  .about-section {
    min-height: 500px;
  }
}

/* 可选：添加全局遮罩，提升文字对比度（如果视频/图片太亮） */
/* .about-bg-container::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 43, 92, 0.3);
  z-index: 2;
} */
 .section-title-small {
            font-size: 18px;
            font-weight: 500;
            margin-bottom: 8px;
            position: relative;
            display: inline-block;
            /* 第一个动画，延迟0.1s */
            animation: fadeUpSmall 0.8s ease 0.1s forwards;
            opacity: 0;
            transform: translateY(10px);
        }

        @keyframes fadeUpSmall {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .section-title-small::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 100%;
            width: 80px;
            height: 1px;
            background-color: #333;
            margin-left: 16px;
        }

        .main-title {
            font-size: 42px;
            font-weight: 700;
            line-height: 1.2;
            margin: 20px 0 40px;
            color: #2A2A2A;
            /* 主标题动画，延迟0.3s */
            animation: fadeUpMain 0.8s ease 0.3s forwards;
            opacity: 0;
            transform: translateY(20px);
        }

        @keyframes fadeUpMain {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .content-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
        }

        .card {
            position: relative;
            overflow: hidden;
            border-radius: 0;
            min-height: 500px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            padding: 40px;
            color: #2A2A2A;
        }

        .card-left {
            background-color: #F0F4F9; /* 淡蓝色卡片背景 */
            /* 左侧卡片整体动画，延迟0.5s */
            animation: fadeUpCard 0.8s ease 0.5s forwards;
            opacity: 0;
            transform: translateY(20px);
			border-radius:16px;
        }

        .card-right {
            background:#0909B7;
			background-size: cover; 
			background-position: center;
            color: #fff;
            /* 右侧卡片整体动画，延迟0.7s */
            animation: fadeUpCard 0.8s ease 0.7s forwards;
            opacity: 0;
            transform: translateY(20px);
			border-radius:16px;
        }

        @keyframes fadeUpCard {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .card-title {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 12px;
            position: relative;
            display: inline-block;
            /* 标题动画，延迟0.8s */
            animation: fadeUpTitle 0.8s ease 0.8s forwards;
            opacity: 0;
            transform: translateY(10px);
        }

        @keyframes fadeUpTitle {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .card-title::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 24px;
            height: 2px;
            background-color: currentColor;
            /* 标题下划线动画 */
            animation: growLine 1s ease 1s forwards;
            width: 0;
        }

        @keyframes growLine {
            to {
                width: 24px;
            }
        }

        .card-text {
            font-size: 24px;
            font-weight: 500;
            line-height: 1.4;
            margin: 30px 0;
            /* 修复：使用基础的淡入上移动画，保留文字可见性 */
            animation: fadeUpText 1s ease 1s forwards;
            opacity: 0;
            transform: translateY(15px);
        }
		.lianxi{font-size:18px;line-height:50px}
        @keyframes fadeUpText {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 12px 24px;
            border: 1px solid currentColor;
            background-color: transparent;
            color: inherit;
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            transition: all 0.3s ease;
            width: fit-content;
            /* 按钮动画，延迟1.2s */
            animation: fadeUpBtn 0.8s ease 1.2s forwards;
            opacity: 0;
            transform: translateY(10px);
            /* 按钮hover动画增强 */
            position: relative;
            overflow: hidden;
        }

        @keyframes fadeUpBtn {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background-color: rgba(255, 255, 255, 0.1);
            transition: left 0.5s ease;
        }

        .btn:hover::before {
            left: 0;
        }

        .btn:hover {
            background-color: rgba(255, 255, 255, 0.1);
            transform: translateX(5px);
        }

        .btn svg {
            margin-left: 12px;
            width: 16px;
            height: 16px;
            transition: transform 0.3s ease;
        }

        .btn:hover svg {
            transform: translateX(3px);
        }

        /* 响应式适配 */
        @media (max-width: 768px) {
            .content-grid {
                grid-template-columns: 1fr;
            }

            .main-title {
                font-size: 32px;
            }
			.nav-actions{display:none}
            .card {
                min-height: 400px;
                padding: 30px 20px;
            }

            .card-text {
                font-size: 20px;
                margin: 40px 0;
            }
        }
 .container {
            max-width: 1440px;
            margin: 0 auto;
            padding: 80px 20px;
        }
/* 行业资讯模块整体样式 */
.industry-news-section {
    max-width: 1440px;
    margin: 0 auto;
    padding: 80px 20px;
}

/* 头部标题+更多按钮 */
.industry-news-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

/* 资讯网格布局 */
.industry-news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

/* 资讯卡片样式 */
.industry-news-card {
    background: #fff;
    padding: 35px 30px;
    transition: all 0.3s ease;
    border:solid 1px #e1dddd
}

.industry-news-card:hover {
    transform: translateY(-5px);
}

/* 资讯标签 */
.news-card-tag {
    display: inline-block;
    font-size: 12px;
    background: #F5F5F5;
    padding: 4px 12px;
    margin-bottom: 15px;
    font-weight: 500;
}

/* 资讯标题 */
.news-card-title {
    font-size: 18px;
    color: black;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.5;
    transition: color 0.2s;
}

.industry-news-card:hover .news-card-title {
}

/* 资讯描述 */
.news-card-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* 资讯底部（日期+链接） */
.news-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
}

.news-card-date {
    font-size: 13px;
    color: #999;
}

.news-card-link {
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s;
}

.news-card-link:hover {
    margin-left: 5px;
}

/* 响应式适配 */
@media (max-width: 992px) {
    .industry-news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .industry-news-grid {
        grid-template-columns: 1fr;
    }
    
    .industry-news-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .industry-news-section {
        padding: 60px 20px;
    }
}
        /* --- 页脚主容器 --- */
        .yamazen-footer {
            background-color: #EFF3F8;
    color: #2a2a2a;
    position: relative;
    overflow: hidden;
    padding: 60px 0 0 0;
        }

        /* --- 背景几何水印 (纯CSS复刻) --- */
        .bg-pattern {
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 600px;
            height: 600px;
            pointer-events: none;
            z-index: 1;
            opacity: 0.8;
        }


        .diamond { width: 100%; height: 100%; }
        .diamond-red { background-color: #4a2b2f; }   /* 暗红色 */
        .diamond-green { background-color: #2e3c32; } /* 暗绿色 */
        .diamond-blue { background-color: #293e4d; }  /* 暗蓝色 */
        .diamond-gray { background-color: #353537; }  /* 暗灰色 */

        /* --- 内容网格布局 --- */
        .footer-container {
            max-width: 1440px;
            margin: 0 auto;
            padding: 0 30px;
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: 1.2fr 1fr 1fr;
            grid-template-areas: 
                "left middle right"
                "left network network";
            gap: 60px;
        }

        /* --- 左侧品牌区 --- */
        .footer-left {
            grid-area: left;
            padding-right: 40px;
        }

        .brand-logo {
            display: flex;
            align-items: center;
            gap: 12px;
            font-weight: bold;
            letter-spacing: 1px;
        }
.brand-logo img{width:125px;}
        .company-desc {
            font-size: 15px;
            color: #2a2a2a;
            line-height: 1.8;
            margin-bottom: 35px;
        }

        .hotline-box {
            margin-bottom: 30px;
        }

        .hotline-box span {
            font-size: 15px;
            color: #2a2a2a;
            display: block;
            margin-bottom: 5px;
        }

        .hotline-box h2 {
            font-size: 32px;
            font-weight: bold;
            color: #2a2a2a;
            letter-spacing: 1px;
        }

        .social-icons {
            display: flex;
            gap: 15px;
            margin-bottom: 30px;
        }

        .social-icon {
            width: 36px;
            height: 36px;
            background-color: #444444;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .social-icon:hover { background-color: #666666; }
        .social-icon svg { width: 18px; height: 18px; fill: #ffffff; opacity: 0.8; }

        .qr-codes {
            display: flex;
            gap: 20px;
        }

        .qr-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
        }

        .qr-box {
            width: 100px;
            height: 100px;
            background-color: #ffffff;
            padding: 6px;
            border-radius: 4px;
        }

        .qr-box img { width: 100%; height: 100%; display: block; }
        .qr-item span { font-size: 12px; color: #2a2a2a; }

        /* --- 中间与右侧联系区 --- */
        .footer-middle { grid-area: middle; }
        .footer-right { grid-area: right; }

        .city-title {
                font-size: 16px;
    color: #2a2a2a;
    margin-bottom: 25px;
    font-weight: bold;
        }

        .contact-item { margin-bottom: 20px; }
        .contact-item span {
            font-size: 15px;
    color: #2a2a2a;
    display: block;
    margin-bottom: 5px;
        }
        .contact-item p {
            font-size: 15px;
    color: #2a2a2a;
    line-height: 1.6;
        }

        /* --- 业务网点区 --- */
        .footer-network {
            grid-area: network;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            padding-top: 30px;
            margin-top: -10px;
        }

        .network-title {
           font-size: 16px;
    font-weight: 500;
    color: #2a2a2a;
    margin-bottom: 15px;
        }

        .city-list {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-bottom: 15px;
        }

        .city-list span {
            font-size: 16px;
            color: #2a2a2a;
        }

        .network-hotline {
            font-size: 13px;
            color: #cccccc;
            margin-bottom: 8px;
        }

        .network-desc {
            font-size: 13px;
            color: #999999;
        }

        /* --- 底部版权区 --- */
        .footer-bottom {
            max-width: 1440px;
            margin: 50px auto 0;
            padding: 20px 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            font-size: 12px;
            color: #666666;
            position: relative;
            z-index: 2;
			text-align:center;
        }

        /* --- 移动端响应式适配 --- */
        @media (max-width: 992px) {
            .footer-container {
                grid-template-columns: 1fr;
                grid-template-areas: 
                    "left"
                    "middle"
                    "right"
                    "network";
                gap: 40px;
            }

            .footer-left { padding-right: 0; }
            .bg-pattern { display: none; } /* 移动端隐藏背景图形，保持清爽 */
            
            .footer-network {
                border-top: none;
                padding-top: 0;
                margin-top: 0;
            }
            
            .hotline-box h2 { font-size: 28px; }
        }
/* ===== style.css 移动端优化 ===== */
@media (max-width: 768px) {
    /* 移动端菜单容器：改为全宽下拉或侧滑 */
    .nav-main {
        display: none; /* 初始隐藏 */
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #F5F5F5;
        flex-direction: column;
        padding: 0 !important; /* 清除原有 padding */
        box-shadow: 0 10px 15px rgba(0,0,0,0.05);
        gap: 0 !important;
        overflow: hidden;
        transition: all 0.3s ease;
    }
	.footer-bottom{margin-bottom:50px;margin-top:0px}
    /* 激活状态 */
    .nav-main.mobile-active {
        display: flex !important;
        animation: slideDown 0.4s ease forwards;
    }

    /* 移动端菜单项 */
    .nav-item {
        width: 100%;
        border-bottom: 1px solid #e1dddd;
        color: #2A2A2A !important;
    }

    .nav-item > a {
        padding: 20px 25px !important;
        font-size: 16px !important;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    /* 如果有二级菜单，显示加号指示 */
    .nav-item:has(.submenu) > a::after {
        content: '+';
        font-size: 20px;
        transition: transform 0.3s;
    }

    .nav-item.submenu-open > a::after {
        content: '-';
        transform: rotate(180deg);
    }

    /* 二级菜单重写：变为纵向折叠 */
    .submenu {
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        display: none; /* 默认隐藏 */
        background: #ffffff !important;
        width: 100% !important;
        box-shadow: none !important;
        padding: 0 0 0 20px !important;
    }

    /* 点击一级菜单后显示 */
    .nav-item.submenu-open .submenu {
        display: block !important;
        border-top: 1px solid #f0f0f0;
    }

    .submenu li {
        padding: 15px 20px !important;
        border-bottom: 1px solid #f9f9f9 !important;
    }

    /* 隐藏移动端不必要的图标 */
    .search-icon {
        display: none; 
    }
}

/* 进场动画 */
@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

        /* --- 1440px 外部大容器 --- */
        .page-wrapper {
            width: 1440px; 
            min-width: 1440px; /* 锁定宽度 */
            display: flex;
            position: relative;
        }

        /* --- 内部动画容器 --- */
        .accordion-box {
            display: flex;
            position: relative;
            /* 420px宽度的卡片，重叠140px，展开位移后总宽控制在1200px左右，预留安全间距 */
            width: 1200px; 
            height: 420px;
        }

        /* --- 单个卡片 --- */
        .card1 {
            position: relative;
            flex-shrink: 0;
            width: 350px; 
            height: 380px;
            background: #fff;
            border-radius: 24px;
            padding: 20px;
            box-shadow: 10px 0 30px rgba(0,0,0,0.03);
            
            /* 初始重叠：每张往左压 140px */
            margin-left: -30px; 
            
            /* 极致丝滑动画 */
            transition: all 0.7s cubic-bezier(0.25, 1, 0.33, 1);
            
            cursor: pointer;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            border: 1px solid rgba(0,0,0,0.04);
            z-index: 1;
        }

        /* 第一张不需要负边距 */
        .card1:first-child { margin-left: 0; }

        /* 初始层级 */
        .card1:nth-child(1) { z-index: 4; }
        .card1:nth-child(2) { z-index: 3; }
        .card1:nth-child(3) { z-index: 2; }
        .card1:nth-child(4) { z-index: 1; }

        /* --- 激活状态逻辑 --- */

        .card1.active {
            box-shadow: 20px 0 50px rgba(0,0,0,0.08);
            transform: translateY(-10px);
            z-index: 10 !important; /* 激活时置顶 */
            background: #fff;
        }

        /* 核心位移：当某张激活时，其后的所有兄弟元素向右移动 260px */
        .card1.active ~ .card1 {
            transform: translateX(60px);
        }

        /* --- 内容容器固定宽度 --- */
        .content-inner {
            width: 310px; /* 略小于卡片宽度，保证不挤压 */
        }

        .quote-icon {
            font-size: 50px;
            color: #0909B7;
            font-family: serif;
            display: block;
            line-height: 1;
            margin-bottom: 5px;
        }
		.quote-icon img{width:30px}
        .quote-text {
            font-size: 16px;
            color: #333;
            line-height: 1.8;
            margin-bottom: 20px;
        }

        .card-footer {
            display: flex;
            align-items: center;
            gap: 12px;
            border-top: 1px solid #f5f5f5;
            padding-top: 20px;
        }

        .avatar {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .name { display: block; font-weight: bold; color: #222; font-size: 16px; }
        .title { display: block; font-size: 12px; color: #999; margin-top: 2px; }

        /* 移动端自动转为垂直列表 */
        @media (max-width: 1024px) {
            .page-wrapper { width: 100%; min-width: auto;}
            .accordion-box { flex-direction: column; width: 100%; height: auto; }
            .card1 { margin-left: 0 !important; width: 100%; transform: none !important; margin-bottom: 20px; }
        }

    /* 外层板块容器 */
    .features-section {
      max-width: 1440px;
      margin: 0 auto;
      background-color: #f0f4f9;
      padding: 64px 48px;
	  margin-bottom:60px;
	  border-radius:16px;
    }

    /* 头部标题区 */
    .section-header {
      margin-bottom: 48px;
    }

    .section-header h2 {
      font-size: 34px;
      font-weight: 600;
      color: #0f1f4d;
      margin-bottom: 18px;
      line-height: 1.3;
    }

    .section-header p {
      font-size: 16px;
      color: #374151;
      line-height: 1.6;
      max-width: 780px;
      margin: 0 auto;
    }

    /* 特性网格 */
    .features-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    /* 单个特性卡片 */
    .feature-item {
      background: #ffffff;
      padding: 32px 28px;
      text-align: left;
	  border-radius:16px;
    }

    /* 图标样式 */
    .feature-icon {
      width: 44px;
      height: 44px;
      color: #1e3a8a;
      margin-bottom: 16px;
    }

    .feature-item h3 {
      font-size: 18px;
      font-weight: 600;
      color: #0f172a;
      margin-bottom: 12px;
      line-height: 1.4;
    }

    .feature-item p {
      font-size: 14px;
      color: #4b5563;
      line-height: 1.55;
    }

    /* 平板适配：2列 */
    @media (max-width: 992px) {
      .features-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      
      .features-section {
        padding: 48px 32px;
      }
    }

    /* 移动端适配：1列 */
    @media (max-width: 640px) {
      .features-section {
        padding: 36px 20px;
		margin-left:15px;
		margin-right:15px;
      }
      
      .section-header {
        margin-bottom: 32px;
      }
      
      .section-header h2 {
        font-size: 24px;
      }
      
      .section-header p {
        font-size: 15px;
      }
      
      .features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
      }
      
      .feature-item {
        padding: 24px 20px;
      }
    }
	

    /* 外层板块容器 */
    .service-tabs-section {
      max-width: 1440px;
      margin: 0 auto;
      background-color: #F0F4F9;
      padding: 64px;
	  margin-top:60px;
	  margin-bottom:60px;
	  border-radius:16px;
    }

    /* 板块标题 */
    .section-title {
      font-size: 42px;
      font-weight: 600;
      color: #1f2937;
      margin-bottom: 32px;
      line-height: 1.3;
    }

    /* Tab导航栏 */
    .tabs-nav {
      display: flex;
      gap: 40px;
      border-bottom: 1px solid #d1d5db;
      margin-bottom: 32px;
    }

    .tab-item {
      background: none;
      border: none;
      padding: 12px 0;
      font-size: 18px;
      color: #374151;
      cursor: pointer;
      border-bottom: 2px solid transparent;
      margin-bottom: -2px;
      transition: all 0.2s ease;
      font-weight: 500;
      font-family: inherit;
    }

    .tab-item.active {
      color: #1d4ed8;
      border-bottom-color: #1d4ed8;
    }

    /* Tab内容面板 */
    .tab-panel {
      display: none;
    }

    .tab-panel.active {
      display: block;
    }

    /* 卡片网格布局 */
    .cards-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 36px;
      align-items: start;
    }

    /* 服务卡片 */
    .service-card {
      background: #ffffff;
      padding: 18px 20px;
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      gap: 12px;
      transition: box-shadow 0.2s ease;
      cursor: pointer;
	  border:none;
	  height:140px;
	  border-radius:10px;
    }

    .card-content h4 {
      font-size: 16px;
      font-weight: 600;
      color: #1f2937;
      margin-bottom: 6px;
      line-height: 1.4;
    }

    .card-content p {
      font-size: 14px;
      color: #4b5563;
      line-height: 1.55;
    }

    /* 箭头图标 */
    .card-arrow {
      flex-shrink: 0;
      color: #1d4ed8;
      margin-top: 2px;
    }

    /* 平板适配：2列 */
    @media (max-width: 992px) {
      .cards-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      
      .service-tabs-section {
        padding: 48px 32px;
      }

      .section-title {
        font-size: 32px;
      }
    }

    /* 移动端适配：1列 + Tab横向滚动 */
    @media (max-width: 640px) {
.service-card{height:170px;}
      
      .service-tabs-section {
        padding: 32px 20px;
		margin-left:15px;
		margin-right:15px;
      }
      
      .section-title {
        font-size: 24px;
        margin-bottom: 24px;
      }
      
      .tabs-nav {
        gap: 24px;
        overflow-x: auto;
        scrollbar-width: none;
        margin-bottom: 24px;
      }

      .tabs-nav::-webkit-scrollbar {
        display: none;
      }
      
      .tab-item {
        font-size: 16px;
        white-space: nowrap;
      }
      
      .cards-grid {
        grid-template-columns: 1fr;
        gap: 12px;
      }
    }
    /* 外层容器：左右分栏布局 */
    .solution-section {
      max-width: 1440px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1.2fr 1fr;
      gap: 24px;
      align-items: stretch;
	  margin-bottom:60px;
	  margin-top:60px;
    }

    /* 左侧内容面板 */
    .solution-left {
      background-color: #f0f4f9;
      padding: 64px 56px;
      display: flex;
      flex-direction: column;
      justify-content: center;
	  border-radius:16px;
    }

    .solution-left h2 {
      font-size: 42px;
      font-weight: 600;
      color: #0f1f4d;
      margin-bottom: 20px;
      line-height: 1.3;
    }

    .solution-left .subtitle {
      font-size: 18px;
      color: #1f2937;
      margin-bottom: 24px;
      line-height: 1.6;
    }

    /* 功能列表 */
    .solution-list {
      list-style: disc;
      padding-left: 24px;
      margin-bottom: 40px;
    }

    .solution-list li {
      font-size: 18px;
      color: #0f1f4d;
      margin-bottom: 14px;
      line-height: 1.5;
    }

    .solution-list li:last-child {
      margin-bottom: 0;
    }

    /* 按钮组 */
    .btn-group {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 14px 32px;
      border-radius: 8px;
      font-size: 16px;
      font-weight: 500;
      text-decoration: none;
      cursor: pointer;
      transition: all 0.2s ease;
      border: 2px solid transparent;
    }

    .btn-primary {
      background-color: #1d4ed8;
      color: #ffffff;
      box-shadow: 0 4px 12px rgba(29, 78, 216, 0.15);
    }

    .btn-primary:hover {
      background-color: #1e40af;
    }

    .btn-outline {
      background-color: #ffffff;
      color: #1d4ed8;
      border-color: #1d4ed8;
    }

    .btn-outline:hover {
      background-color: #eff6ff;
    }

    /* 右侧图片面板 */
    .solution-right {
      overflow: hidden;
	  border-radius:16px;
    }

    .solution-right img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    /* 平板适配：切换为上下布局 */
    @media (max-width: 992px) {
      .solution-section {
        grid-template-columns: 1fr;
      }

      .solution-left {
        padding: 48px 36px;
		margin-left:15px;
		margin-right:15px;
      }

      .solution-left h2 {
        font-size: 32px;
      }

      .solution-right img {
        max-height: 400px;
      }
    }

    /* 移动端适配：缩小内边距与字号 */
    @media (max-width: 640px) {

      .solution-left {
        padding: 32px 24px;
		margin-left:15px;
		margin-right:15px;
      }

      .solution-left h2 {
        font-size: 26px;
        margin-bottom: 16px;
      }

      .solution-left .subtitle {
        font-size: 16px;
        margin-bottom: 20px;
      }

      .solution-list li {
        font-size: 16px;
        margin-bottom: 12px;
      }

      .solution-list {
        margin-bottom: 32px;
      }

      .btn {
        padding: 12px 24px;
        font-size: 15px;
        flex: 1;
        min-width: 140px;
      }

      .solution-right {
		margin-left:15px;
		margin-right:15px;
      }
    }
        /* Banner主容器 */
        .hero1-banner {
            position: relative;
            max-width: 1440px;
            margin: 0 auto;
            border-radius: 24px;
            overflow: hidden;
			margin-bottom:60px;
            /* 蓝色渐变蒙层 + 城市背景图，替换url即可更换背景 */
            background: 
               #97E3FF;
        }

        /* 内容 flex 容器 */
        .hero-wrapper {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 80px 70px;
            min-height: 500px;
        }

        /* 左侧文字区域 */
        .hero-text {
            flex: 1;
            max-width: 52%;
            color: #0f1f4d;
        }

        .hero-text h1 {
            font-size: 60px;
            font-weight: 600;
            line-height: 1.25;
            letter-spacing: 1px;
        }

        .hero-text p {
            font-size: 19px;
            line-height: 1.65;
            opacity: 0.95;
            margin-bottom: 34px;
            max-width: 620px;
			margin-top:26px;
        }

        /* 联系按钮 */
        .contact-btn {
            padding: 14px 38px;
            background-color: #0909B7;
            color: #fff;
            border: none;
            border-radius: 8px;
            font-size: 18px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.25s ease;
            font-family: inherit;
        }


        /* 右侧人物图片区域 */
        .hero-figure {
            flex: 1;
            display: flex;
            justify-content: flex-end;
            align-items: flex-end;
        }

        .hero-figure img {
            width: 100%;
            max-width: 360px;
            height: auto;
            object-fit: contain;
            /* 人物图建议使用透明背景 PNG */
        }

        /* ---------- 平板端适配 ---------- */
        @media (max-width: 992px) {
            .hero-wrapper {
                padding: 60px 40px;
                min-height: auto;
            }
			
            .hero-text h1 {
                font-size: 44px;
            }

            .hero-text p {
                font-size: 17px;
            }

            .hero-figure img {
                max-width: 340px;
            }
        }

        /* ---------- 移动端适配 ---------- */
        @media (max-width: 768px) {
			.hero1-banner{margin-left:15px;margin-right:15px}
            .hero-wrapper {
                flex-direction: column;
                padding: 45px 30px;
                text-align: center;
                gap: 30px;
            }

            .hero-text {
                max-width: 100%;
                order: 1;
            }

            .hero-text h1 {
                font-size: 34px;
                margin-bottom: 20px;
            }

            .hero-text p {
                font-size: 16px;
                margin: 0 auto 28px;
            }

            .hero-figure {
                order: 2;
                justify-content: center;
            }

            .hero-figure img {
                max-width: 280px;
            }
        }

        /* ---------- 小屏手机适配 ---------- */
        @media (max-width: 480px) {
			.hero1-banner{margin-left:15px;margin-right:15px}
            .hero-wrapper {
                padding: 35px 20px;
            }

            .hero-text h1 {
                font-size: 28px;
            }

            .hero-text p {
                font-size: 15px;
            }

            .contact-btn {
                padding: 12px 30px;
                font-size: 16px;
            }

            .hero-figure img {
                max-width: 240px;
            }
        }
        /* 页面容器 */
        .newsindex {
            max-width: 1440px;
            margin: 0 auto;
            padding: 40px 20px;
        }

        /* 板块标题 */
        .section-title {
            font-size: 42px;
            font-weight: 700;
            color: #000;
            line-height: 1.2;
            margin-bottom: 48px;
            letter-spacing: 0.3px;
        }

        /* 新闻网格布局 - 固定高度700px，左右列等高 */
        .news-grid1 {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 32px;
            align-items: stretch;
            height: 650px;
        }

        /* 左侧大卡片 */
        .big-card {
            position: relative;
            width: 100%;
            height: 100%;
            overflow: hidden;
            text-decoration: none;
            color: #ffffff;
            display: block;
			border-radius:14px;
            transition: opacity 0.3s ease;
        }
		.big-card img{width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;}
        .big-card:hover {
            opacity: 0.95;
        }

        /* 大卡片封面图 */
        .big-card-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        /* 大卡片底部渐变遮罩，保证文字清晰 */
        .big-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(180deg, transparent 65%, rgba(0,0,0,0.18) 100%);
            z-index: 1;
            pointer-events: none;
        }

        /* 大卡片文字内容 - 底部对齐 */
        .big-card-content {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 40px;
            display: flex;
            flex-direction: column;
            gap: 16px;
            z-index: 2;
        }

        .card-date {
            font-size: 14px;
            font-weight: 400;
            opacity: 0.9;
            letter-spacing: 0.5px;
        }

        .big-card-title {
            font-size: 26px;
            font-weight: 600;
            line-height: 1.4;
        }

        /* 箭头样式 */
        .card-arrow {
            width: 24px;
            height: 2px;
            background: currentColor;
            position: relative;
            margin-top: 4px;
        }

        .card-arrow::after {
            content: '';
            position: absolute;
            right: 0;
            top: -4px;
            width: 8px;
            height: 8px;
            border-top: 2px solid currentColor;
            border-right: 2px solid currentColor;
            transform: rotate(45deg);
        }

        /* 右侧小卡片容器 */
        .small-cards {
            display: flex;
            flex-direction: column;
            gap: 40px;
            height: 100%;
        }

        /* 小卡片通用样式 */
        .small-card {
            flex: 1;
            display: flex;
            gap: 24px;
            text-decoration: none;
            color: #333333;
            align-items: stretch;
            transition: opacity 0.3s ease;
        }

        .small-card:hover {
            opacity: 0.8;
        }

        .small-card-img {
            width: 260px;
            flex-shrink: 0;
            overflow: hidden;
			border-radius:10px;
        }
		.small-card-img img{width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;}
        /* 小卡片封面图 */
        .small-card-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        /* 小卡片信息 - 下端对齐 */
        .small-card-info {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 12px;
            justify-content: flex-end;
            padding-bottom: 4px;
        }

        .small-card .card-date {
            color: #666666;
        }

        .small-card-title {
            font-size: 18px;
            font-weight: 500;
            line-height: 1.5;
            color: #333333;
        }

        .small-card .card-arrow {
            width: 20px;
            color: #333333;
        }

        /* ========== 移动端响应式适配 ========== */
        @media (max-width: 768px) {
            .newsindex {
                padding: 24px 16px;
            }

            .section-title {
                font-size: 28px;
                margin-bottom: 32px;
            }

            .news-grid1 {
                grid-template-columns: 1fr;
                gap: 24px;
                height: auto;
            }

            .big-card {
                aspect-ratio: 4 / 3;
                height: auto;
            }

            .big-card-content {
                padding: 24px;
            }

            .big-card-title {
                font-size: 20px;
            }

            .small-cards {
                gap: 24px;
                height: auto;
            }

            .small-card {
                flex: none;
                height: auto;
            }

            .small-card-img {
                width: 120px;
                aspect-ratio: 1 / 1;
            }

            .small-card-title {
                font-size: 16px;
            }
        }

        @media (max-width: 480px) {
            .section-title {
                font-size: 24px;
            }

            .small-card {
                gap: 16px;
            }

            .small-card-img {
                width: 100px;
            }

            .small-card-title {
                font-size: 15px;
            }
        }