    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: Arial, sans-serif;
		text-decoration:none;
    }
    footer {
        background-color: #111;
        color: #ccc;
        padding: 30px 0 0 0;
    }
    .footer-container {
        max-width: 1600px;
        margin: 0 auto;
        padding:30px 0 0 0;
    }
    /* 第一部分：三栏布局 */
    .footer-top {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        margin-bottom: 20px;
        border-bottom: 1px solid #333;
        padding-bottom: 20px;
    }
    .footer-left {
        flex: 1;
        min-width: 200px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
    .footer-left .logo-img {
        width: 200px;
        height: auto;
        margin-bottom: 30px;
    }
    .footer-left .text {
        font-size: 16px;
        line-height: 1.8;
    }
    /* 导航多列 */
    .footer-middle {
        flex: 3;
        min-width: 400px;
        display: flex;
        justify-content: center;
    }
    .footer-nav {
        display: flex;
        flex-wrap: wrap;
        gap: 40px;
    }
    .footer-nav-column {
        min-width: 160px;
    }
    .footer-nav-column h4 {
        font-size: 18px;
        color: #fff;
        margin-bottom: 30px;
    }
    .footer-nav-column ul {
        list-style: none;
    }
    .footer-nav-column li {
        margin-bottom: 15px;
    }
    .footer-nav-column a {
        color: #ccc;
        text-decoration: none;
        font-size: 16px;
        transition: color 0.3s;
    }
    .footer-nav-column a:hover {
        color: #00a8ff;
    }
    /* 右侧二维码一上一下，下面加文字 */
    .footer-right {
        flex: 1;
        min-width: 120px;
        display: flex;
        flex-direction: column; /* 竖向排列 */
        align-items: flex-end;
        gap: 15px;
    }
    .qrcode-item {
        display: flex;
        flex-direction: column;
        align-items: center; /* 图片和文字居中对齐 */
        text-align: center;
    }
    .qrcode-item img {
        width: 120px;
        height: 120px;
        background-color: #333;
        margin-bottom: 10px;
    }
    .qrcode-item p {
        font-size: 12px;
        color: #ccc;
    }
    /* 第二部分：左右文字 */
    .footer-middle-row {
        display: flex;
        justify-content: space-between;
        font-size: 14px;
        margin-bottom: 20px;
    }
    /* 第三部分：居中文字，背景浅色 */
    .footer-bottom {
        text-align: center;
        font-size: 14px;
        background-color: #333; /* 浅色背景 */
        color: #fff; /* 对应文字颜色 */
        padding: 15px 0;
    }
    /* 响应式 */
    @media (max-width: 768px) {
        .footer-top {
            flex-direction: column;
            align-items: center;
            text-align: center;
        }
        .footer-left {
            align-items: center;
            margin-bottom: 20px;
        }
        .footer-middle {
            margin-bottom: 20px;
        }
        .footer-nav {
            justify-content: center;
        }
        .footer-right {
            align-items: center;
        }
        .footer-middle-row {
            flex-direction: column;
            align-items: center;
            gap: 10px;
            text-align: center;
        }
    }
	
    /* 固定悬浮导航 */
    .header-nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        background-color: #001529; /* 深蓝色导航 */
        color: #fff;
        z-index: 999;
        height: 70px;
    }
    .nav-container {
        max-width: 90%;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 40px;
        height: 100%;
    }
    /* Logo样式 */
    .logo-img {
        height: 40px;
        object-fit: contain;
        display: block;
    }
    /* 桌面端导航菜单 */
    .nav-menu {
        display: flex;
        list-style: none;
        height: 100%;
    }
    .nav-item {
        position: relative;
        height: 100%;
        display: flex;
        align-items: center;
        padding: 0 25px;
        cursor: pointer;
    }
    .nav-item::after {
        content: '';
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        height: 10px;
        background: transparent;
        z-index: 999;
        pointer-events: none;
    }
    .nav-item > a {
        color: #fff;
        text-decoration: none;
        font-size: 16px;
        display: block;
        padding: 10px 0;
        transition: color 0.2s;
    }
    .nav-item > a:hover {
        color: #1890ff;
    }

    /* 产品中心/解决方案/应用案例 下拉容器（左二级+右三级） */
    .dropdown-wrapper.product-center {
        position: fixed;
        left: 0;
        top: 70px;
        width: 100%;
        background-color: #fff;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        z-index: 1000;
        transition: all 0.2s ease;
        padding: 30px 0;
    }
    .nav-item.has-third-level:hover > .dropdown-wrapper.product-center {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }
    /* 下拉内容容器 - 关键：限制整体宽度+居中 */
    .dropdown-content.product-center {
        max-width: 1200px; /* 核心：限制下拉菜单总宽度，避免过宽 */
        margin: 0 auto;
        padding: 0 40px;
        display: flex;
        gap: 20px; /* 增加列间距 */
    }

    /* 其他导航项下拉容器（新闻中心） */
    .dropdown-wrapper.normal {
        position: absolute;
        top: 100%;
        left: 0;
        min-width: 200px;
        background-color: #fff;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        z-index: 1000;
        transition: all 0.2s ease;
        padding: 10px 0;
    }
    .nav-item:not(.has-third-level):hover > .dropdown-wrapper.normal {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    /* 左侧二级菜单列（产品中心/解决方案/应用案例） */
    .second-menu-col {
        width: 200px; /* 固定左侧宽度 */
        border-right: 1px solid #eee;
        padding-right: 10px;
    }
    .second-menu {
        list-style: none;
    }
    .second-menu-item {
        padding: 8px 0;
        position: relative;
        cursor: pointer;
    }
    .second-menu-item > a {
        color: #333;
        text-decoration: none;
        font-size: 15px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 6px 0;
        border-bottom: 2px solid transparent;
        white-space: nowrap; /* 文字不换行 */
    }
    /* 二级项高亮 */
    .second-menu-item.active > a,
    .second-menu-item:hover > a {
        color: #1890ff;
        border-bottom: 2px solid #1890ff;
    }
    /* 二级项箭头 */
    .second-menu-item > a::after {
        content: ">";
        color: #999;
        font-size: 12px;
        margin-left: 10px;
    }
    .second-menu-item.no-third > a::after {
        content: none;
    }

    /* 右侧三级菜单区（核心修复：限制宽度+文字截断） */
    .third-menu-area {
        width: 500px; /* 核心：固定三级菜单区宽度，按需调整 */
        padding: 0 10px;
    }
    .third-menu {
        list-style: none;
        display: none;
        width: 100%;
    }
    .third-menu.active {
        display: block;
    }
    .third-menu-item {
        padding: 8px 0;
        position: relative;
        white-space: nowrap; /* 文字不换行 */
        overflow: hidden; /* 超出隐藏 */
        text-overflow: ellipsis; /* 超出显示省略号 */
    }
    .third-menu-item > a {
        color: #666;
        text-decoration: none;
        font-size: 14px;
        display: block;
        padding: 4px 0;
        padding-right: 20px; /* 给箭头留空间 */
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    /* 三级菜单箭头（绝对定位，不占宽度） */
    .third-menu-item > a::after {
        content: ">";
        color: #ccc;
        font-size: 10px;
        position: absolute;
        right: 0; /* 箭头贴右侧 */
        top: 50%;
        transform: translateY(-50%);
        width: 15px;
        height: 15px;
        text-align: center;
    }
    .third-menu-item:hover > a {
        color: #1890ff;
    }

    /* 普通二级下拉菜单（新闻中心） */
    .simple-dropdown {
        list-style: none;
        padding: 0 20px;
    }
    .simple-dropdown-item {
        padding: 8px 0;
    }
    .simple-dropdown-item > a {
        color: #333;
        text-decoration: none;
        font-size: 14px;
        display: block;
        padding: 4px 0;
    }
    .simple-dropdown-item:hover > a {
        color: #1890ff;
        background-color: #f5f5f5;
        padding-left: 8px;
        transition: all 0.2s;
    }

    /* 移动端汉堡菜单 */
    .hamburger {
        display: none;
        flex-direction: column;
        gap: 4px;
        cursor: pointer;
        z-index: 1000;
    }
    .hamburger-line {
        width: 24px;
        height: 3px;
        background-color: #fff;
        border-radius: 2px;
        transition: all 0.3s;
    }
    .hamburger.active .hamburger-line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .hamburger.active .hamburger-line:nth-child(2) {
        opacity: 0;
    }
    .hamburger.active .hamburger-line:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    /* 移动端导航 */
    .mobile-nav {
        position: fixed;
        top: 0;
        right: 0;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: #001529;
        padding: 80px 20px 20px;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        z-index: 998;
        overflow-y: auto;
    }
    .mobile-nav.active {
        transform: translateX(0);
    }
    .mobile-nav-item {
        list-style: none;
        margin-bottom: 15px;
        border-bottom: 1px solid #002540;
        padding-bottom: 10px;
    }
    .mobile-nav-item a {
        color: #fff;
        text-decoration: none;
        font-size: 16px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .mobile-arrow {
        width: 12px;
        height: 12px;
        border-right: 2px solid #fff;
        border-bottom: 2px solid #fff;
        transform: rotate(45deg);
        transition: transform 0.3s;
    }
    .mobile-arrow.active {
        transform: rotate(-135deg);
    }
    .mobile-dropdown {
        margin-left: 15px;
        margin-top: 10px;
        display: none;
    }
    .mobile-dropdown.active {
        display: block;
    }
    .mobile-dropdown-col {
        margin-bottom: 15px;
    }
    .mobile-dropdown-col h4 {
        font-size: 14px;
        color: #1890ff;
        margin-bottom: 8px;
    }
    .mobile-dropdown-list li {
        margin-bottom: 6px;
		list-style:none;
    }
    .mobile-dropdown-list a {
        font-size: 14px;
        color: #ccc;
        display: block;
        padding: 4px 0;
    }
        /* 轮播图 */
        .banner-slider {
            position: relative;
            height: 100vh;
            overflow: hidden;
            margin-top: -70px;
        }
        .banner-slides-wrapper {
            display: flex;
            width: 100%;
            height: 100%;
            transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }
        .banner-slide {
            flex: 0 0 100%;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            position: relative;
        }
        .banner-content {
            position: absolute;
            top: 50%;
            left: 10%;
            transform: translateY(-50%);
            color: #fff;
            max-width: 600px;
            opacity: 1;
            transition: opacity 0.8s ease;
			text-align: left; /* 文字全部左对齐 */
        }
        .banner-slide:not(.active) .banner-content {
            opacity: 0;
        }
		.banner-tag {
    display: inline-block;
    padding: 8px 24px;
    background-color: #1890ff;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    border-radius: 4px;
    margin-bottom: 20px;
}
        .banner-subtitle {
            font-size: 28px;
            margin-bottom: 50px;
        }
        .banner-title {
            font-size: 40px;
            font-weight: bold;
            margin-bottom: 20px;
            line-height: 1.2;
        }
.banner-desc {
    font-size: 16px;
    line-height: 2;
    margin-bottom: 30px;
    color: #eee;
    list-style: none;
    padding: 0;
    /* 改成两行两列布局 */
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 两列 */
    gap: 8px 24px; /* 行间距、列间距 */
}
.banner-desc li {
    position: relative;
    padding-left: 20px;
    white-space: nowrap; /* 防止文字换行 */
}
.banner-desc li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #1890ff;
    font-weight: bold;
}

        .banner-btn {
            display: inline-block;
            padding: 12px 30px;
            background-color: #1890ff;
            color: #fff;
            text-decoration: none;
            border-radius: 4px;
            font-size: 16px;
            transition: background-color 0.3s ease;
        }
        .banner-btn:hover {
            background-color: #096dd9;
        }
        .banner-indicators {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            z-index: 10;
        }
        .indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: rgba(255,255,255,0.5);
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .indicator.active {
            background-color: #fff;
            width: 30px;
            border-radius: 6px;
        }

        /* 响应式适配 */
        @media (max-width: 768px) {
            .nav-menu {
                display: none;
            }
            .hamburger {
                display: flex;
            }
            .logo-img {
                height: 35px;
            }
            .banner-title {
                font-size: 28px;
            }
            .banner-content {
                left: 5%;
                max-width: 90%;
            }
            .dropdown-content.product-center {
                flex-direction: column;
                padding: 0 20px;
                max-width: 100%;
            }
            .second-menu-col {
                width: 100%;
                border-right: none;
                border-bottom: 1px solid #eee;
                padding-bottom: 20px;
                margin-bottom: 20px;
            }
            .third-menu-area {
                width: 100%;
                padding: 0;
            }
			.nav-container {
    max-width: 100%;
    margin: 0 auto;
    display: flex
;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    height: 100%;
}
        }
		
		
/* 电话菜单项整体样式 */
.nav-item.nav-phone {
    padding: 0 15px; /* 与其他导航项间距匹配 */
    height: 100%;
    display: flex;
    align-items: center; /* 垂直居中 */
}

/* 电话链接容器：flex布局保证图标和文字对齐 */
.phone-link {
    display: flex;
    align-items: center;
    gap: 8px; /* 图标和手机号间距，可微调 */
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.2s ease; /* 平滑变色 */
}

/* 鼠标悬停效果 */
.phone-link:hover {
    color: #1890ff; /* 与导航栏其他hover颜色一致 */
}

/* 电话图标（背景图版）- 核心尺寸控制 */
.phone-icon-bg {
    
    width: 20px;
    height: 20px;

    background-image: url('/img/tel.png');
   
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
	display: inline-block;
	 transform: translateY(3px); 
    
}

/* 手机号文字样式 */
.phone-number {
    font-size: 18px; /* 比导航文字略小，更协调 */
    white-space: nowrap; /* 防止号码换行 */
    font-weight: 400; /* 取消加粗，保持简洁 */
}

/* ========== 移动端适配 ========== */
@media (max-width: 768px) {
    /* 桌面端电话项在移动端隐藏（汉堡菜单外） */
    .nav-item.nav-phone {
        display: none;
    }

    /* 【可选】如果需要在移动端汉堡菜单内显示电话，取消以下注释 */
    /*
    .mobile-nav .nav-phone {
        display: flex;
        padding: 15px 20px;
        border-bottom: 1px solid #002540;
    }
    .mobile-nav .phone-link {
        font-size: 14px;
    }
    .mobile-nav .phone-icon-bg {
        width: 18px;
        height: 18px;
    }
    .mobile-nav .phone-number {
        font-size: 14px;
    }
    */
}
		
		    /* 新闻列表版块核心样式（独立前缀） */
    .news-section {
        max-width: 1600px;
        margin: 50px auto;
        padding: 0 20px;
    }
    /* 标签切换栏 */
    .news-section-tabs {
        display: flex;
        gap: 30px;
        margin-bottom: 30px;
        border-bottom: 1px solid #eee;
        padding-bottom: 10px;
    }
    .news-section-tab {
        font-size: 18px;
        color: #333;
        cursor: pointer;
        padding: 5px 0;
        border-bottom: 2px solid transparent;
        transition: all 0.3s ease;
    }
    .news-section-tab.active {
        color: #00a8ff;
        border-bottom: 2px solid #00a8ff;
    }
	.news-section-tab a{color:#000;}
.news-section-tab.active a{color:#000;}
    /* 左右布局容器 */
    .news-section-container {
        display: flex;
        gap: 40px;
    }
    /* 左侧新闻列表 */
    .news-section-left {
        flex: 3;
    }
    /* 单条新闻项 */
    .news-section-item {
        display: flex;
        gap: 20px;
        padding: 20px 0;
        border-bottom: 1px solid #eee;
    }
    .news-section-item-img {
        width: 200px;
        height: 120px;
        object-fit: cover;
        border-radius: 4px;
    }
    .news-section-item-content {
        flex: 1;
    }
    .news-section-item-title {
        font-size: 18px;
        color: #333;
        margin-bottom: 10px;
        line-height: 1.4;
        transition: color 0.3s ease;
        cursor: pointer;
    }
    .news-section-item-title:hover {
        color: #00a8ff;
    }
    .news-section-item-desc {
        font-size: 14px;
        color: #666;
        line-height: 1.5;
        margin-bottom: 10px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    .news-section-item-date {
        font-size: 12px;
        color: #999;
    }
    /* 分页 */
    .news-section-pagination {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-top: 30px;
    }
    .news-section-page-btn {
        padding: 8px 12px;
        border: 1px solid #eee;
        color: #666;
        cursor: pointer;
        border-radius: 4px;
        transition: all 0.3s ease;
    }
	.news-section-pagination li{list-style:none; margin-left:10px;}
.news-section-pagination a{color:#000;}  
.news-section-pagination a:hover{color:#00a8ff;} 
    .news-section-page-btn:hover {
        background-color: #f5f5f5;
        color: #00a8ff;
    }
    .news-section-page-num {
        padding: 8px 12px;
        color: #333;
        font-weight: bold;
    }
    /* 右侧侧边栏 */
    .news-section-right {
        flex: 1;
    }
    /* 热门标签 */
    .news-section-tags {
        background-color: #f9f9f9;
        padding: 20px;
        border-radius: 8px;
        margin-bottom: 30px;
    }
    .news-section-tags-title {
        font-size: 16px;
        color: #333;
        margin-bottom: 15px;
        font-weight: bold;
    }
    .news-section-tags-list {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }
    .news-section-tag-item {
        padding: 6px 12px;
        background-color: #fff;
        border: 1px solid #eee;
        border-radius: 20px;
        font-size: 12px;
        color: #666;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    .news-section-tag-item:hover {
        background-color: #00a8ff;
        color: #fff;
        border-color: #00a8ff;
    }
    /* 热门文章 */
    .news-section-hot-articles {
        background-color: #f9f9f9;
        padding: 20px;
        border-radius: 8px;
    }
    .news-section-hot-title {
        font-size: 16px;
        color: #333;
        margin-bottom: 15px;
        font-weight: bold;
    }
    .news-section-hot-list {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    .news-section-hot-item-title {
        font-size: 14px;
        color: #333;
        line-height: 1.4;
        margin-bottom: 5px;
        transition: color 0.3s ease;
        cursor: pointer;
    }
    .news-section-hot-item-title:hover {
        color: #00a8ff;
    }
    .news-section-hot-item-date {
        font-size: 12px;
        color: #999;
    }

    /* 移动端适配 */
    @media (max-width: 768px) {
        .news-section-container {
            flex-direction: column;
            gap: 20px;
        }
        .news-section-item {
            flex-direction: column;
            gap: 10px;
        }
        .news-section-item-img {
            width: 100%;
            height: auto;
        }
        .news-section-tabs {
            gap: 15px;
        }
        .news-section-tab {
            font-size: 16px;
        }
    }
	
	.zxzx{background:url(/img/zxbg.png) no-repeat center;padding:30px 40px;height:186px;box-sizing:border-box;max-width:1920px;margin:0 auto;display:-webkit-flex;display:-moz-flex;display:-ms-flex;display:-o-flex;display:flex}
.zxbox{width:950px}
.zxewm{width:300px;text-align:center;color:#fff}
.zxewm img{width:100px;border-radius:10px;border:5px #69baff solid}
.zxewm span{display:block}
.zxzx h3 {
    color: #fff;
    font-size: 24px;
    font-weight: 400;
    margin-top: 10px;
    margin-bottom: 25px;
}
.zxzx ul {
    display: flex;
    justify-content: space-between;
    align-items: center;}
.zxzx ul input {
    background: #fff;
    line-height: 48px;
    border-radius: 24px;
    color: #999;
    text-indent: 20px;
    border: 0;
    width: 27%;
}
.zxzx ul input[type=submit] {
    color: #fff;
    text-align: center;
    text-indent: 0;
    cursor: pointer;
    width: 125px;
    font-size: 16px;
    background: #121315;
}
@media screen and (max-width: 640px) {
    .zxzx {
        padding: 20px;
        flex-direction: column;
        background: linear-gradient(182deg, #33a2d9 0, #367cf0 100%);
        height: auto;
    }
	.zxbox {
        width: 100%;
    }
	.zxzx h3 {
        font-size: 18px;
        text-align: center;
    }
	.zxzx ul {
        flex-direction: column;
    }
	.zxzx ul input {
        width: 100%;
        margin-bottom: 20px;
    }
	.zxzx ul input[type=submit] {
        width: 100%;
    }
	.zxewm {
        width: 100%;
    }
}	
	
  .news-banner-section {
        width: 100%;
        background: url("/img/news-banner-bg.jpg") no-repeat center center;
        background-size: 100% 100%; /* 背景宽度100% */
        padding: 120px 20px; /* 上下内边距，左右适配 */
    }
    .news-banner-container {
        max-width: 1600px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: flex-start; /* 文字居左 */
    }
    .news-banner-text {
        text-align: left;
    }
    .news-banner-title {
        font-size: 36px;
        font-weight: bold;
        color: #000;
        margin-bottom: 15px;
    }
    .news-banner-desc {
        font-size: 18px;
        color: #666;
        margin-bottom: 30px;
    }
    .news-banner-btn {
        display: inline-block;
        padding: 12px 30px;
        background-color: #1677ff;
        color: #fff;
        border-radius: 30px;
        text-decoration: none;
        font-size: 16px;
        transition: background-color 0.3s;
    }
    .news-banner-btn:hover {
        background-color: #0f5fcf;
    }

    /* 移动端适配 */
    @media (max-width: 768px) {
        .news-banner-title {
            font-size: 28px;
        }
        .news-banner-desc {
            font-size: 16px;
        }
    }	
	
	    .news-detail-title {
        font-size: 28px;
        color: #333;
        line-height: 1.4;
        margin-bottom: 20px;
        font-weight: bold;
    }
    .news-detail-time {
        font-size: 14px;
        color: #999;
        margin-bottom: 30px;
        padding-bottom: 15px;
        border-bottom: 1px solid #eee;
    }
    .news-detail-content {
        font-size: 16px;
        color: #666;
        line-height: 1.8;
    }
	.news-detail-content img{width:700px;}
    .news-detail-content p {
        margin-bottom: 20px;
    }

        /* 【修改4：移动端适配详情标题】 */
        .news-detail-title {
            font-size: 22px;
        }
    }
	

/* 样式隔离 */
.case-section,
.case-section * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
    font-family: "Microsoft Yahei", sans-serif;
}

/* 版块外层 */
.case-section {
    width: 100%;
    padding: 60px 20px;
    background-color: #ffffff;
}

/* 第一部分：菜单按钮 */
.case-menu-wrap {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}
.case-menu-btn {
    padding: 8px 20px;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    background-color: #ffffff;
    color: #333;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
}
.case-menu-btn a {
    color: inherit; /* 继承按钮的颜色，而非固定#333 */
    text-decoration: none; /* 去掉下划线 */
    display: block; /* 确保点击区域覆盖整个按钮 */
}
.case-menu-btn.active {
    background-color: #0068b7;
    color: #fff !important;;
    border-color: #0068b7;
}
.case-menu-btn:hover:not(.active) {
    border-color: #1890ff;
    color: #333;
}

/* 第二部分：三列卡片区域 */
.case-cards-wrap {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    max-width: 1500px;
    margin: 0 auto 40px;
}
/* 单个卡片 */
.case-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}
/* 卡片图片容器（hover放大核心） */
.case-card-img {
    width: 100%;
    height: 270px;
    overflow: hidden;
    margin-bottom: 15px;
    border-radius: 4px;
}
.case-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease; /* 放大过渡动画 */
}
/* 鼠标hover图片放大效果 */
.case-card:hover .case-card-img img {
    transform: scale(1.05); /* 放大1.05倍，可调整数值 */
}
/* 卡片标题 */
.case-card-title {
    font-size: 14px;
    color: #333;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* 最多显示2行，超出省略 */
    -webkit-box-orient: vertical;
    overflow: hidden;
	text-align:center;
}
.case-card:hover .case-card-title {
    color: #1890ff;
}

/* 第三部分：分页按钮 */
.case-pagination-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
}

.case-pagination-wrap li{list-style:none; margin-left: 10px;}
.case-pagination-wrap a{ color:#333; font-size:15px;}
.case-pagination-wrap a:hover{ color:#00a8ff;}
.case-page-btn {
    padding: 6px 12px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    background-color: #ffffff;
    color: #666;
    cursor: pointer;
    transition: all 0.2s ease;
}
.case-page-btn:hover {
    border-color: #1890ff;
    color: #1890ff;
}
.case-current-page {
    color: #1890ff;
    font-weight: 600;
}

/* 响应式适配 */
@media (max-width: 992px) {
    .case-cards-wrap {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .case-cards-wrap {
        grid-template-columns: 1fr;
    }
    .case-pagination-wrap {
        flex-wrap: wrap;
        padding: 0 10px;
    }
}


/* 样式隔离，避免冲突 */
.case-banner-section,
.case-banner-section * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Microsoft Yahei", sans-serif;
}

/* Banner外层容器 - 核心尺寸控制 */
.case-banner-section {
    width: 100%;
    position: relative;
    /* 电脑端高度500px，移动端自适应 */
    height: 500px; 
    overflow: hidden;
}

/* Banner背景+内容容器 */
.case-banner-wrap {
    width: 100%;
    height: 100%;
    /* 替换为你的banner背景图地址 */
    background: url("/img/banner01.jpg") no-repeat center center;
    background-size: cover; /* 背景图自适应铺满 */
    display: flex;
    align-items: center; /* 文字垂直居中 */
    padding: 0 80px; /* 左侧文字间距，可调整 */
}

/* 左侧文字区域 */
.case-banner-text {
    max-width: 600px;
}

/* 标题样式 */
.case-banner-title {
    font-size: 36px;
    color: #333333;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
}

/* 描述文字样式 */
.case-banner-desc {
    font-size: 16px;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* 按钮样式 */
.case-banner-btn {
    padding: 10px 24px;
    background-color: #1890ff;
    color: #ffffff;
    border: none;
    border-radius: 20px; /* 圆角按钮，匹配参考图 */
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
}
.case-banner-btn:hover {
    background-color: #096dd9; /* hover加深蓝色 */
}

/* 响应式适配 - 移动端调整高度和样式 */
@media (max-width: 768px) {
    .case-banner-section {
        height: auto; /* 移动端高度自适应 */
        min-height: 300px; /* 最小高度，避免太矮 */
    }
    .case-banner-wrap {
        padding: 60px 20px; /* 减小左右间距 */
    }
    .case-banner-title {
        font-size: 28px; /* 缩小标题 */
    }
    .case-banner-desc {
        font-size: 14px;
        margin-bottom: 20px;
    }
    .case-banner-btn {
        padding: 8px 20px;
    }
}

/* 样式隔离，避免冲突 */
.product-banner-section,
.product-banner-section * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Microsoft Yahei", sans-serif;
}

/* Banner外层容器 - 核心尺寸控制 */
.product-banner-section {
    width: 100%;
    position: relative;
    /* 电脑端高度500px，移动端自适应 */
    height: 500px; 
    overflow: hidden;
}
/* Banner背景+内容容器 */
.product-banner-wrap {
    width: 100%;
    height: 100%;
    /* 替换为你的banner背景图地址 */
    background: url("/img/product_banner.jpg") no-repeat center center;
    background-size: cover; /* 背景图自适应铺满 */
    display: flex;
    align-items: center; /* 文字垂直居中 */
    padding: 0 80px; /* 左侧文字间距，可调整 */
}

/* 左侧文字区域 */
.product-banner-text {
    max-width: 600px;
}

/* 标题样式 */
.product-banner-title {
    font-size: 36px;
    color: #fff;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.2;
}

/* 描述文字样式 */
.product-banner-desc {
    font-size: 26px;
    color: #fff;
    line-height: 1.6;
    margin-bottom: 30px;
}
.product-banner-desc2 {
    font-size: 16px;
    color: #fff;
    line-height: 1.6;
    margin-bottom: 30px;
}
/* 按钮样式 */
.product-banner-btn {
    padding: 10px 24px;
    background-color: #1890ff;
    color: #ffffff;
    border: none;
    border-radius: 20px; /* 圆角按钮，匹配参考图 */
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
}
.product-banner-btn:hover {
    background-color: #096dd9; /* hover加深蓝色 */
}

/* 响应式适配 - 移动端调整高度和样式 */
@media (max-width: 768px) {
    .product-banner-section {
        height: auto; /* 移动端高度自适应 */
        min-height: 300px; /* 最小高度，避免太矮 */
    }
    .product-banner-wrap {
        padding: 60px 20px; /* 减小左右间距 */
    }
    .product-banner-title {
        font-size: 28px; /* 缩小标题 */
    }
    .product-banner-desc {
        font-size: 14px;
        margin-bottom: 20px;
    }
    .product-banner-btn {
        padding: 8px 20px;
    }
}

/* 样式隔离，避免冲突 */
.jiejue-banner-section,
.jiejue-banner-section * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Microsoft Yahei", sans-serif;
}

/* Banner外层容器 - 核心尺寸控制 */
.jiejue-banner-section {
    width: 100%;
    position: relative;
    /* 电脑端高度500px，移动端自适应 */
    height: 500px; 
    overflow: hidden;
}
/* Banner背景+内容容器 */
.jiejue-banner-wrap {
    width: 100%;
    height: 100%;
    /* 替换为你的banner背景图地址 */
    background: url("/img/jiejue_banner.jpg") no-repeat center center;
    background-size: cover; /* 背景图自适应铺满 */
    display: flex;
    align-items: center; /* 文字垂直居中 */
    padding: 0 80px; /* 左侧文字间距，可调整 */
}

/* 左侧文字区域 */
.jiejue-banner-text {
    max-width: 640px;
}

/* 标题样式 */
.jiejue-banner-title {
    font-size: 36px;
    color: #fff;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.2;
}

/* 描述文字样式 */
.jiejue-banner-desc {
    font-size: 26px;
    color: #fff;
    line-height: 1.6;
    margin-bottom: 30px;
}
.jiejue-banner-desc2 {
    font-size: 16px;
    color: #fff;
    line-height: 1.6;
    margin-bottom: 30px;
}
/* 按钮样式 */
.jiejue-banner-btn {
    padding: 10px 24px;
    background-color: #1890ff;
    color: #ffffff;
    border: none;
    border-radius: 20px; /* 圆角按钮，匹配参考图 */
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
}
.jiejue-banner-btn:hover {
    background-color: #096dd9; /* hover加深蓝色 */
}

/* 响应式适配 - 移动端调整高度和样式 */
@media (max-width: 768px) {
    .jiejue-banner-section {
        height: auto; /* 移动端高度自适应 */
        min-height: 300px; /* 最小高度，避免太矮 */
    }
    .jiejue-banner-wrap {
        padding: 60px 20px; /* 减小左右间距 */
    }
    .jiejue-banner-title {
        font-size: 28px; /* 缩小标题 */
    }
    .jiejue-banner-desc {
        font-size: 14px;
        margin-bottom: 20px;
    }
    .jiejue-banner-btn {
        padding: 8px 20px;
    }
}

/* 样式隔离，避免冲突 */
.yingyong-banner-section,
.yingyong-banner-section * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Microsoft Yahei", sans-serif;
}

/* Banner外层容器 - 核心尺寸控制 */
.yingyong-banner-section {
    width: 100%;
    position: relative;
    /* 电脑端高度500px，移动端自适应 */
    height: 500px; 
    overflow: hidden;
}
/* Banner背景+内容容器 */
.yingyong-banner-wrap {
    width: 100%;
    height: 100%;
    /* 替换为你的banner背景图地址 */
    background: url("/img/yingyong_banner.jpg") no-repeat center center;
    background-size: cover; /* 背景图自适应铺满 */
    display: flex;
    align-items: center; /* 文字垂直居中 */
    padding: 0 80px; /* 左侧文字间距，可调整 */
}

/* 左侧文字区域 */
.yingyong-banner-text {
    max-width: 620px;
}

/* 标题样式 */
.yingyong-banner-title {
    font-size: 36px;
    color: #fff;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.2;
}

/* 描述文字样式 */
.yingyong-banner-desc {
    font-size: 26px;
    color: #fff;
    line-height: 1.6;
    margin-bottom: 30px;
}
.yingyong-banner-desc2 {
    font-size: 16px;
    color: #fff;
    line-height: 1.6;
    margin-bottom: 30px;
}
/* 按钮样式 */
.yingyong-banner-btn {
    padding: 10px 24px;
    background-color: #1890ff;
    color: #ffffff;
    border: none;
    border-radius: 20px; /* 圆角按钮，匹配参考图 */
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
}
.yingyong-banner-btn:hover {
    background-color: #096dd9; /* hover加深蓝色 */
}

/* 响应式适配 - 移动端调整高度和样式 */
@media (max-width: 768px) {
    .yingyong-banner-section {
        height: auto; /* 移动端高度自适应 */
        min-height: 300px; /* 最小高度，避免太矮 */
    }
    .yingyong-banner-wrap {
        padding: 60px 20px; /* 减小左右间距 */
    }
    .yingyong-banner-title {
        font-size: 28px; /* 缩小标题 */
    }
    .yingyong-banner-desc {
        font-size: 14px;
        margin-bottom: 20px;
    }
    .yingyong-banner-btn {
        padding: 8px 20px;
    }
}

/* 样式隔离，避免冲突 */
.xinwen-banner-section,
.xinwen-banner-section * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Microsoft Yahei", sans-serif;
}

/* Banner外层容器 - 核心尺寸控制 */
.xinwen-banner-section {
    width: 100%;
    position: relative;
    /* 电脑端高度500px，移动端自适应 */
    height: 500px; 
    overflow: hidden;
}
/* Banner背景+内容容器 */
.xinwen-banner-wrap {
    width: 100%;
    height: 100%;
    /* 替换为你的banner背景图地址 */
    background: url("/img/xinwen_banner.jpg") no-repeat center center;
    background-size: cover; /* 背景图自适应铺满 */
    display: flex;
    align-items: center; /* 文字垂直居中 */
    padding: 0 80px; /* 左侧文字间距，可调整 */
}

/* 左侧文字区域 */
.xinwen-banner-text {
    max-width: 700px;
}

/* 标题样式 */
.xinwen-banner-title {
    font-size: 36px;
    color: #fff;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.2;
}

/* 描述文字样式 */
.xinwen-banner-desc {
    font-size: 26px;
    color: #fff;
    line-height: 1.6;
    margin-bottom: 30px;
}
.xinwen-banner-desc2 {
    font-size: 16px;
    color: #fff;
    line-height: 1.6;
    margin-bottom: 30px;
}
/* 按钮样式 */
.xinwen-banner-btn {
    padding: 10px 24px;
    background-color: #1890ff;
    color: #ffffff;
    border: none;
    border-radius: 20px; /* 圆角按钮，匹配参考图 */
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
}
.xinwen-banner-btn:hover {
    background-color: #096dd9; /* hover加深蓝色 */
}

/* 响应式适配 - 移动端调整高度和样式 */
@media (max-width: 768px) {
    .xinwen-banner-section {
        height: auto; /* 移动端高度自适应 */
        min-height: 300px; /* 最小高度，避免太矮 */
    }
    .xinwen-banner-wrap {
        padding: 60px 20px; /* 减小左右间距 */
    }
    .xinwen-banner-title {
        font-size: 28px; /* 缩小标题 */
    }
    .xinwen-banner-desc {
        font-size: 14px;
        margin-bottom: 20px;
    }
    .xinwen-banner-btn {
        padding: 8px 20px;
    }
}

/* 样式隔离，避免冲突 */
.about-banner-section,
.about-banner-section * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Microsoft Yahei", sans-serif;
}

/* Banner外层容器 - 核心尺寸控制 */
.about-banner-section {
    width: 100%;
    position: relative;
    /* 电脑端高度500px，移动端自适应 */
    height: 500px; 
    overflow: hidden;
}
.about-banner-section2 {
    width: 100%;
    position: relative;
    /* 电脑端高度500px，移动端自适应 */
    height: 670px; 
    overflow: hidden;
}
/* Banner背景+内容容器 */
.about-banner-wrap {
    width: 100%;
    height: 100%;
    /* 替换为你的banner背景图地址 */
    background: url("/img/about_banner.jpg") no-repeat center center;
    background-size: cover; /* 背景图自适应铺满 */
    display: flex;
    align-items: center; /* 文字垂直居中 */
    padding: 0 80px; /* 左侧文字间距，可调整 */
}
.about-banner-wrap2 {
    width: 100%;
    height: 100%;
    /* 替换为你的banner背景图地址 */
    background: url("/img/about.jpg") no-repeat center center;
    background-size: cover; /* 背景图自适应铺满 */
    display: flex;
    align-items: center; /* 文字垂直居中 */
    padding: 0 80px; /* 左侧文字间距，可调整 */
}

/* 左侧文字区域 */
.about-banner-text {
    max-width: 730px;
}

/* 标题样式 */
.about-banner-title {
    font-size: 36px;
    color: #fff;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.2;
}

/* 描述文字样式 */
.about-banner-desc {
    font-size: 26px;
    color: #fff;
    line-height: 1.6;
    margin-bottom: 30px;
}
.about-banner-desc2 {
    font-size: 16px;
    color: #fff;
    line-height: 1.6;
    margin-bottom: 30px;
}
/* 按钮样式 */
.about-banner-btn {
    padding: 10px 24px;
    background-color: #1890ff;
    color: #ffffff;
    border: none;
    border-radius: 20px; /* 圆角按钮，匹配参考图 */
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
}
.about-banner-btn:hover {
    background-color: #096dd9; /* hover加深蓝色 */
}

/* 响应式适配 - 移动端调整高度和样式 */
@media (max-width: 768px) {
    .about-banner-section {
        height: auto; /* 移动端高度自适应 */
        min-height: 300px; /* 最小高度，避免太矮 */
    }
	.about-banner-section2 {
        height: auto; /* 移动端高度自适应 */
        min-height: 100px; /* 最小高度，避免太矮 */
    }
    .about-banner-wrap {
        padding: 60px 20px; /* 减小左右间距 */
    }
	.about-banner-wrap2 {
        padding: 60px 20px; /* 减小左右间距 */
    }
    .about-banner-title {
        font-size: 28px; /* 缩小标题 */
    }
    .about-banner-desc {
        font-size: 14px;
        margin-bottom: 20px;
    }
    .about-banner-btn {
        padding: 8px 20px;
    }
}

/* 样式隔离 */
.solution-section,
.solution-section * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
    font-family: "Microsoft Yahei", sans-serif;
}

/* 版块外层 */
.solution-section {
    width: 100%;
    padding: 60px 20px;
    background-color: #ffffff;
}
.solution-container {
    max-width: 1600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 40px;
}

/* 左侧导航 */
.solution-sidebar {
    border-right: 1px solid #f0f0f0;
    padding-right: 20px;
}
.sidebar-main-title {
    background-color: #0068b7;
    color: #ffffff;
    padding: 12px 16px;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    border-radius: 4px;
}
.sidebar-submenu .submenu-item {
    margin-bottom: 1px;
}
.submenu-link {
    display: block;
    padding: 12px 16px;
    color: #333;
    font-size: 14px;
    position: relative;
    transition: all 0.2s ease;
    border-bottom: 1px solid #0068b7;
}
/* 下划线样式 */
.submenu-link::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #e0e0e0;
    transition: all 0.2s ease;
}
/* 鼠标hover时下划线变蓝加粗 */
.submenu-item:hover .submenu-link::after {
    background-color: #0068b7;
    height: 2px;
}
/* 当前激活的菜单项 */
.submenu-item.active .submenu-link {
    color: #0068b7;
    font-weight: 500;
}
.submenu-item.active .submenu-link::after {
    background-color: #0068b7;
    height: 2px;
}

/* 右侧内容区域 */
.solution-content {
    padding-left: 20px;
}
/* 上半部分图文 */
.content-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 60px;
	align-items: center; 
}
.top-img-wrap {
    overflow: hidden;
    border-radius: 4px;
}
.top-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.top-img-wrap:hover img {
    transform: scale(1.03);
}
.top-title {
    font-size: 24px;
    color: #333;
    margin-bottom: 15px;
}
.top-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
}

/* 下半部分三列卡片 */
.content-bottom {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
/* 独特类名，避免冲突 */
.solution-card-unique {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
    border-radius: 8px;
    background-color: #ffffff;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}
/* 卡片hover效果：上移+阴影 */
.solution-card-unique:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}
.card-img-wrap {
    width: 100%;
    height: 180px;
    overflow: hidden;
    border-radius: 4px;
    margin-bottom: 15px;
}
.card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.card-title {
    font-size: 16px;
    color: #333;
    margin-bottom: 15px;
}
.card-btn {
    padding: 6px 16px;
    border: 1px solid #1890ff;
    background-color: #ffffff;
    color: #1890ff;
    border-radius: 16px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
}
.card-btn:hover {
    background-color: #1890ff;
    color: #ffffff;
}

/* 响应式适配 */
@media (max-width: 992px) {
    .solution-container {
        grid-template-columns: 1fr;
    }
    .solution-sidebar {
        border-right: none;
        border-bottom: 1px solid #f0f0f0;
        padding-right: 0;
        padding-bottom: 20px;
    }
    .solution-content {
        padding-left: 0;
    }
    .content-top {
        grid-template-columns: 1fr;
    }
    .content-bottom {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .content-bottom {
        grid-template-columns: 1fr;
    }
}

  /* 全屏图片版块核心样式 - 修复横向滚动条问题 */
  .fullscreen-img-section {
    width: 100%; /* 替换100vw，避免包含滚动条宽度导致溢出 */
    max-width: 100%; /* 强制限制最大宽度为100% */
    margin: 0;
    padding: 0;
    overflow: hidden; /* 防止图片溢出 */
    position: relative; /* 辅助定位，无副作用 */
  }

  /* 单张图片容器（通过容器控制图片样式） */
  .fullscreen-img-item {
    width: 100%;
    height: auto; /* 高度自适应图片比例 */
    position: relative;
  }

  /* 直接通过容器后代选择器控制img样式，无需class */
  .fullscreen-img-item img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* 铺满容器（裁剪多余部分，无空白） */
    display: block; /* 消除图片底部默认空白 */
    border: none; /* 清除默认边框 */
  }
  /* 表格类：居中 + 自适应 */
.fullscreen-img-item table {
  margin: 20px auto !important; /* 表格整体居中（核心） */
}


  /* 移动端适配（保证小屏也全屏铺满） */
  @media (max-width: 768px) {
    .fullscreen-img-item img {
      object-fit: contain; /* 移动端优先完整显示图片，不裁剪（可选调整） */
      background-color: #f7f7f7; /* 若图片比例不符，填充背景色 */
    }
  }

  /* 超小屏手机优化 */
  @media (max-width: 480px) {
    .fullscreen-img-section {
      min-height: 200px; /* 保证最小高度，避免图片过窄 */
    }
  }

  /* 全局辅助：确保body无横向滚动（兜底修复） */
  body {
    overflow-x: hidden !important; /* 强制禁止横向滚动 */
  }
          /* 样式隔离 */
        .product-detail-section,
        .product-detail-section * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "Microsoft Yahei", sans-serif;
        }

        /* 版块外层容器 */
        .product-detail-section {
            width: 100%;
            background-color: #ffffff;
            max-width: 100vw; /* 限制最大宽度为视口宽度 */
            overflow-x: hidden;
			padding-bottom:50px;
			
        }

        /* 标签按钮外层容器（默认在红框位置） */
        .product-detail-tabs-wrapper {
            max-width: 600px;
            margin: 0 auto;
            padding: 60px 15px; /* 移动端减小内边距 */
            /* 默认不固定，跟随文档流 */
            position: static;
            width: 100%;
        }

        /* 滚动后固定的样式（通过JS添加） */
        .product-detail-tabs-wrapper.fixed {
            position: fixed;
            top: -50px; /* 网站导航高度，根据实际调整 */
            left: 0;
            right: 0;
            
            z-index: 1000;
           
        }

        /* 产品标签按钮（默认在红框位置） */
        .product-detail-tabs {
            display: flex;
            
           
            width: 100%;
        }
        .tab-btn {
            flex: 1;
            padding: 12px 0; /* 移动端减小按钮高度 */
            text-align: center;
            background-color: #ffffff;
            color: #333333;
            border: 1px solid #333333;
           
            font-size: 14px;
            cursor: pointer;
            transition: all 0.2s ease;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
			border-radius: 20px;
			margin-left:20px;
			margin-right:20px;
        }
        .tab-btn:first-child {
            border-left: 1px solid #333333;
            border-radius: 20px;
        }
        .tab-btn:last-child {
            border-radius: 20px;
        }
        /* 按钮激活状态 */
        .tab-btn.active {
            background-color: #1890ff;
            color: #ffffff;
            border-color: #1890ff;
			border-radius: 20px;
			margin-left:20px;
			margin-right:20px;
        }
        .tab-btn:hover:not(.active) {
            border-color: #1890ff;
            color: #1890ff;
        }
		.tab-btn.active a {
    background-color: #1890ff;
    color: #ffffff;
    border-color: #1890ff;
    border-radius: 20px;
    margin-left: 20px;
    margin-right: 20px;
}
		.tab-btn a {color:#333;}

        /* 底部内容区域（1400px宽，居中）- 核心：分离图片和文字 */
        .product-detail-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 15px; /* 移动端减小内边距 */
            display: grid;
            grid-template-columns: 700px calc(100% - 700px - 40px); /* 图片区700px + 间距40px + 文字区自适应 */
            gap: 20px; /* 减小间距 */
            position: relative; /* 作为放大镜定位参考 */
            width: 100%;
            /* 滚动固定后，给内容顶部加间距，避免被遮挡 */
            padding-top: 30px;
        }

        /* 左侧图片轮播区域 - 固定宽度，不侵占文字区 */
        .product-detail-gallery {
            display: flex;
            gap: 20px;
            align-items: flex-start;
            position: relative;
            width: 700px; /* 固定宽度，包含小图+大图+放大镜 */
            flex-shrink: 0; /* 不收缩 */
        }

        /* 桌面端小图容器（纵向）- 核心修复：独立容器，避免被覆盖 */
        .desktop-thumbnail-wrapper {
            width: 100px;
            display: flex;
            flex-direction: column;
            align-items: center;
            position: relative;
            z-index: 2;
        }
        /* 桌面端小图列表 - 纵向排列 */
        .desktop-thumbnail-list {
            width: 100px; /* 小图容器宽度匹配小图尺寸 */
            height: 600px; /* 5个小图+间距的总高度 */
            overflow: hidden; /* 超出部分隐藏 */
            margin:0; /* 给箭头留出重叠空间 */
        }
        /* 移动端小图容器（横向）- 初始隐藏 */
        .mobile-thumbnail-container {
            display: none; /* 桌面端隐藏移动端容器 */
            align-items: center;
            width: 100%;
            position: relative;
            margin-bottom: 10px;
        }

        /* 纯CSS圆形三角滚动按钮 - 通用样式 */
        .scroll-btn {
            width: 40px;
            height: 40px;
            border-radius: 50%; /* 正圆形 */
            background-color: rgba(255, 255, 255, 0.85); /* 半透明白色 */
            border: 1px solid #dddddd; /* 浅灰色边框 */
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s ease;
            z-index: 3;
            box-shadow: 0 1px 3px rgba(0,0,0,0.1); /* 轻微阴影提升质感 */
            padding: 0; /* 清除内边距 */
        }
        /* 桌面端上下箭头定位 */
        .desktop-up-btn {
            position: absolute;
            top: -20px;
            left: 30px;
        }
        .desktop-down-btn {
            position: absolute;
            bottom: -1px;
            left: 30px;
        }
        /* 桌面端上箭头三角 */
        .desktop-up-btn::after {
            content: '';
            width: 0;
            height: 0;
            border-left: 6px solid transparent;
            border-right: 6px solid transparent;
            border-bottom: 8px solid #666666;
        }
        /* 桌面端下箭头三角 */
        .desktop-down-btn::after {
            content: '';
            width: 0;
            height: 0;
            border-left: 6px solid transparent;
            border-right: 6px solid transparent;
            border-top: 8px solid #666666;
        }

        /* 移动端左右箭头样式 */
        .mobile-left-btn, .mobile-right-btn {
            margin: 0 5px;
            flex-shrink: 0;
        }
        /* 移动端左箭头三角 */
        .mobile-left-btn::after {
            content: '';
            width: 0;
            height: 0;
            border-top: 6px solid transparent;
            border-bottom: 6px solid transparent;
            border-right: 8px solid #666666;
        }
        /* 移动端右箭头三角 */
        .mobile-right-btn::after {
            content: '';
            width: 0;
            height: 0;
            border-top: 6px solid transparent;
            border-bottom: 6px solid transparent;
            border-left: 8px solid #666666;
        }

        /* 箭头hover效果 */
        .scroll-btn:hover {
            background-color: #ffffff;
            border-color: #1890ff;
        }
        .desktop-up-btn:hover::after {
            border-bottom-color: #1890ff;
        }
        .desktop-down-btn:hover::after {
            border-top-color: #1890ff;
        }
        .mobile-left-btn:hover::after {
            border-right-color: #1890ff;
        }
        .mobile-right-btn:hover::after {
            border-left-color: #1890ff;
        }

        /* 小图严格1:1尺寸 - 通用样式 */
        .thumbnail {
            width: 100px;
            height: 100px;
            object-fit: cover; /* 强制1:1，裁剪多余部分 */
            border: 1px solid #cccccc;
           
            cursor: pointer;
            transition: all 0.2s ease;
            display: block;
            margin-bottom: 20px; /* 小图间距 */
        }
        .thumbnail.active,
        .thumbnail:hover {
            border-color: #1890ff;
        }

        /* 大图区域 - 严格1:1正方形 */
        .main-image-container {
            flex: 0 0 600px; /* 固定宽度，不伸缩 */
            width: 600px; /* 严格1:1宽度 */
            height: 600px; /* 严格1:1高度 */
            position: relative;
            border: 1px solid #cccccc; /* 正方形边框 */
            background-color: #f9f9f9; /* 背景色统一 */
            z-index: 1;
        }
        /* 大图严格1:1显示（消除上下空白） */
        .main-image {
            width: 100%;
            height: 100%;
            object-fit: cover; /* 强制铺满容器，裁剪多余部分，无空白 */
            display: block; /* 消除inline默认间距 */
        }
        /* 大图定位框（浅灰色边框） */
        .position-box {
            position: absolute;
            width: 200px; /* 与放大镜等比例 */
            height: 200px;
            border: 2px solid rgba(200, 200, 200, 0.8); /* 浅灰色半透明边框 */
            background: rgba(255, 255, 255, 0.1);
            pointer-events: none; /* 不影响鼠标事件 */
            display: none;
            z-index: 5;
        }
        /* 外置放大镜弹窗 - 限制在图片区内，不侵占文字区 */
        .zoom-popup {
            position: absolute;
            top: 0;
            left: calc(100px + 600px + 20px); /* 小图+大图+间距，固定在图片区右侧 */
            width: 400px;
            height: 400px;
            border: 1px solid #ccc;
            background-repeat: no-repeat;
            background-size: 1200px 1200px; /* 放大2倍 */
            display: none;
            z-index: 10;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }
.product-detail-info li{list-style:none; margin-left:20px; line-height:25px;}
.product-detail-info h3{margin-left:20px; }
        /* 右侧产品信息区域 - 独立容器，绝对不重叠 */
        .product-detail-info {
            display: flex;
            flex-direction: column;
            gap: 15px;
            z-index: 1;
            padding: 10px;
            background-color: #ffffff; /* 白色背景，隔绝图片 */
            height: fit-content; /* 高度自适应内容 */
        }
        .product-detail-info h3 {
            font-size: 24px;
            color: #333333;
            line-height: 1.3;
        }
        .product-detail-info p {
            font-size: 14px;
            color: #666666;
            line-height: 1.8;
        }
        /* 操作按钮 */
        .action-buttons {
            display: flex;
            gap: 15px;
            margin-top: 20px;
            flex-wrap: wrap; /* 移动端按钮换行 */
        }
        .btn {
            padding: 12px 24px;
            border: none;
            border-radius: 4px;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.2s ease;
            flex: 1; /* 移动端按钮平分宽度 */
            min-width: 120px; /* 最小宽度 */
			position: relative; /* 给提示框做定位基准，核心！ */
        }
        .btn-red {
            background-color: #ff4d4f;
            color: #ffffff;
        }
        .btn-red:hover {
            background-color: #cf1322;
        }
        .btn-blue {
            background-color: #1890ff;
            color: #ffffff;
        }
        .btn-blue:hover {
            background-color: #096dd9;
        }
		/* 电话提示框核心样式（默认隐藏） */
.phone-tooltip {
    position: absolute;
    top: 100%; /* 按钮正下方 */
    left: 0;
    margin-top: 8px; /* 与按钮的间距 */
    padding: 8px 16px;
    background: #fff;
    color: #0066cc;
    border: 1px solid #0066cc;
    border-radius: 4px;
    font-size: 14px;
    white-space: nowrap; /* 电话不换行 */
    display: none; /* 默认隐藏 */
    z-index: 999; /* 防止被遮挡 */
}

/* 鼠标悬浮立即预约按钮时显示电话 */
.btn-red:hover .phone-tooltip {
    display: block;
}

        /* 移动端适配（核心修复） */
        @media (max-width: 1400px) {
            .product-detail-content {
                grid-template-columns: 1fr; /* 移动端单列布局 */
                padding: 15px;
            }
            .product-detail-gallery {
                justify-content: center;
                width: 100%;
                flex-direction: column;
                gap: 15px;
            }
            /* 隐藏桌面端小图容器 */
            .desktop-thumbnail-wrapper {
                display: none;
            }
            /* 显示移动端横向小图容器 */
            .mobile-thumbnail-container {
                display: flex;
            }
            /* 移动端小图列表 - 横向滚动 */
            .mobile-thumbnail-list {
                display: flex;
                flex-direction: row;
                overflow-x: auto;
                width: 100%;
                height: auto;
                padding: 5px 0;
                margin: 0;
                gap: 10px; /* 小图间距 */
                scroll-behavior: smooth; /* 平滑滚动 */
                -webkit-overflow-scrolling: touch; /* 移动端弹性滚动 */
            }
            /* 移动端小图样式 */
            .mobile-thumbnail-list .thumbnail {
                width: 80px; /* 移动端减小小图尺寸 */
                height: 80px;
                flex-shrink: 0; /* 不收缩 */
                margin-bottom: 0;
            }
            /* 大图容器 - 适配移动端，防止撑开页面 */
            .main-image-container {
                width: 80%;
                height: auto;
                aspect-ratio: 1/1; /* 保持1:1比例 */
                max-width: 75%; /* 最大宽度不超过视口 */
                max-height: 80vh; /* 最大高度不超过视口80% */
                flex: none;
            }
            /* 隐藏放大镜相关元素 */
            .position-box, .zoom-popup {
                display: none !important;
            }
            /* 产品信息区域适配 */
            .product-detail-info {
                padding: 0;
            }
            .product-detail-info h3 {
                font-size: 20px;
            }
            .product-detail-info p {
                font-size: 13px;
            }
        }

        /* 小屏幕移动端优化 */
        @media (max-width: 768px) {
            .product-detail-tabs-wrapper.fixed {
                top: 50px; /* 移动端导航高度 */
            }
            .tab-btn {
                font-size: 12px;
                padding: 10px 0;
            }
            /* 更小的小图尺寸 */
            .mobile-thumbnail-list .thumbnail {
                width: 70px;
                height: 70px;
            }
            /* 按钮自适应 */
            .btn {
                padding: 10px 15px;
                font-size: 13px;
            }
            /* 移动端箭头尺寸减小 */
            .mobile-left-btn, .mobile-right-btn {
                width: 35px;
                height: 35px;
            }
			.product-detail-section {
    width: 95%;
    background-color: #ffffff;
    max-width: 95%;
    overflow-x: hidden;
    padding-bottom: 10px;
}
.mobile-thumbnail-list {
        display: flex
;
        flex-direction: row;
        overflow-x: auto;
        width: 60%;
        height: auto;
        padding: 5px 0;
        margin: 0;
        gap: 10px;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
    }
.product-detail-tabs-wrapper {
    max-width: 600px;
    margin: 0 auto;
    padding: 30px 15px;
    position: static;
    width: 100%;
}
.product-detail-info {
                padding: 0;
	width:75%;
            }
.product-detail-info li {
    list-style: none;
    margin-left: 1px;
    line-height: 25px;
}
.product-detail-info h3 {
        font-size: 20px;
margin-left: 1px;
    }
        }

        /* 超小屏幕优化 */
        @media (max-width: 480px) {
            .mobile-thumbnail-list .thumbnail {
                width: 60px;
                height: 60px;
            }
            /* 超小屏箭头更小 */
            .mobile-left-btn, .mobile-right-btn {
                width: 30px;
                height: 30px;
            }
            .action-buttons {
                flex-direction: column;
                gap: 10px;
            }
            .btn {
                width: 100%;
            }
        }
		
  /* ========== 典型应用版块核心样式（全独有的类名前缀：prod-app-） ========== */
        /* 版块根容器：1400px宽居中 */
        .prod-app-section {
            width: 1400px;
            margin: 40px auto;
        }

        /* 版块标题 */
        .prod-app-title {
            margin-bottom: 20px;
            border-left: 4px solid #0066cc;
            padding-left: 12px;
        }
        .prod-app-title h2 {
            font-size: 24px;
            color: #333;
            font-weight: 600;
            line-height: 1.2;
        }

        /* 卡片列表：两行四列 */
        .prod-app-card-list {
            display: grid;
            grid-template-columns: repeat(4, 1fr); /* 四列 */
            grid-template-rows: repeat(2, 1fr);    /* 两行 */
            gap: 20px; /* 卡片间距 */
        }

        /* 卡片基础样式：可点击a标签 */
        .prod-app-card-item {
            display: block;
            text-decoration: none;
            overflow: hidden; /* 隐藏图片放大溢出部分 */
           
            position: relative;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1); /* 轻微阴影，提升质感 */
        }

        /* 图片容器：相对定位，给文字做基准 */
        .prod-app-img-container {
            position: relative;
            width: 100%;
            height: 200px; /* 卡片高度 */
            overflow: hidden;
        }

        /* 卡片图片：hover放大 */
        .prod-app-card-img {
            width: 100%;
            height: 100%;
            object-fit: cover; /* 图片铺满容器，不变形 */
            transition: transform 0.3s ease; /* 放大动画 */
        }
        .prod-app-card-item:hover .prod-app-card-img {
            transform: scale(1.05); /* 鼠标移到卡片，图片放大5% */
        }

        /* 卡片文字：透明背景，底部居中 */
        .prod-app-card-text {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 10px 0;
            text-align: center;
            color: #fff;
            font-size: 14px;
            background: rgba(0, 0, 0, 0.4); /* 半透明黑色背景（透明） */
            white-space: nowrap;
            z-index: 1; /* 文字在图片上层 */
        }

        /* ========== 响应式适配（可选） ========== */
        /* 平板端：两列 */
        @media (max-width: 1024px) {
            .prod-app-section {
                width: 100%;
                padding: 0 15px;
            }
            .prod-app-card-list {
                grid-template-columns: repeat(2, 1fr);
                grid-template-rows: repeat(4, 1fr);
            }
            .prod-app-img-container {
                height: 180px;
            }
        }

        /* 手机端：单列 */
        @media (max-width: 768px) {
            .prod-app-card-list {
                grid-template-columns: 1fr;
                grid-template-rows: repeat(8, 1fr);
            }
            .prod-app-img-container {
                height: 160px;
            }
            .prod-app-title h2 {
                font-size: 20px;
            }
        }
		
		.suspension_box {
    position: fixed;
    top: 60%;
    right: 1.87rem;
    z-index: 99;
    display: flex
;
    flex-direction: column;
    align-items: center;
}
.suspension_box img {
    width: 4.125rem;
    height: 5.875rem;
    margin-bottom: 1.25rem;
}

/* ========== 产品核心差异说明版块（PC端基础样式） ========== */
.prod-desc-section {
  width: 100%;
  padding: 40px 0;
  background-color: #fff;
  border-top: 1px solid #333;
}

.prod-desc-container {
  max-width: 1400px;
  width: 90%;
  margin: 0 auto;
  padding: 0 20px;
}

.prod-desc-content {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  text-align: left;
}
/*.prod-desc-content img {
    width: 100%;
}*/
.prod-desc-text {
  margin: 0;
  padding: 0;
  font-family: "Microsoft Yahei", sans-serif;
}

/* ========== 移动端适配（核心！） ========== */
/* 屏幕宽度≤768px（手机/平板竖屏） */
@media (max-width: 768px) {
  /* 1. 减小上下内边距，适配移动端紧凑布局 */
  .prod-desc-section {
    padding: 25px 0;
  }

  /* 2. 容器左右内边距加大，避免文字贴边 */
  .prod-desc-container {
    width: 95%; /* 更宽的占比，利用屏幕空间 */
    padding: 0 15px;
  }

  /* 3. 文字字号调小，行高更舒适（适配移动端阅读） */
  .prod-desc-content {
    font-size: 14px; /* 移动端正文标准字号 */
    line-height: 1.7; /* 略紧凑，减少滚动 */
  }

  /* 4. 可选：文本两端对齐，提升移动端阅读体验 */
  .prod-desc-text {
    text-align: justify;
    letter-spacing: 0.5px; /* 轻微字间距，避免拥挤 */
  }
}

/* 屏幕宽度≤480px（小屏手机，如iPhone SE） */
@media (max-width: 480px) {
  .prod-desc-section {
    padding: 20px 0; /* 进一步减小间距 */
  }
  .prod-desc-content {
    font-size: 13px; /* 更小的字号，适配小屏 */
    line-height: 1.6;
  }
}

/* ========== 控制表格内文字样式（核心！） ========== */
/* 表格整体：居中、边框、间距 */
.prod-desc-content table {
  width: 100%;
  max-width: 100%;
  border-collapse: collapse; /* 边框合并 */
  margin: 20px 0; /* 表格上下间距 */
  font-family: "Microsoft Yahei", sans-serif;
}

/* 表头/单元格通用样式 */
.prod-desc-content th,
.prod-desc-content td {
  padding: 10px 16px; /* 单元格内边距（控制文字与边框距离） */
  font-size: 14px;     /* 表格文字大小 */
  line-height: 1.5;    /* 行高 */
  text-align: left;    /* 文字对齐：left/center/right */
  color: #333;         /* 文字颜色 */
  border: 1px solid #eee; /* 边框（可选） */
}

/* 表头（th）：加粗、背景色、居中（可选） */
.prod-desc-content th {
  font-weight: 600;
  background-color: #f7f7f7; /* 浅灰背景 */
  color: #222;
  text-align: left; /* 表头也可居中：text-align: center */
}

/* 第一列（参数名）：可加粗、颜色加深 */
.prod-desc-content td:first-child {
  font-weight: 500;
  color: #333;
}

/* 第二列及以后（参数值）：常规字重 */
.prod-desc-content td:not(:first-child) {
  font-weight: normal;
  color: #555;
}

/* 表格内特殊文字（如单位、备注）：可单独控制 */
.prod-desc-content .table-unit {
  color: #888;
  font-size: 12px;
}

/* 移动端表格适配（防止横向滚动） */
@media (max-width: 768px) {
  .prod-desc-content table {
    font-size: 13px;
  }
  .prod-desc-content th,
  .prod-desc-content td {
    padding: 8px 10px;
  }
}

/* 分页区域容器 */
.pagination-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 40px; /* 与上方卡片列表保持间距 */
    padding: 20px 0;
}

/* 分页列表 */
.pagination-list {
    display: flex;
    list-style: none;
    gap: 18px; /* 页码之间的间距 */
    padding: 0;
    margin: 0;
}

/* 分页项 */
.pagination-list li {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    background-color: #fff;
    transition: all 0.3s ease;
}

/* 分页链接 */
.pagination-list li a {
    display: block;
    width: 100%;
    height: 100%;
    line-height: 36px;
    text-align: center;
    color: #333;
    text-decoration: none;
    font-size: 14px;
	padding: 0 16px;
}

/* 当前页码样式 */
.pagination-list li.active {
    background-color: #1890ff;
    border-color: #1890ff;
}

.pagination-list li.active a {
    color: #fff;
}

/* 禁用状态（如首页/尾页已到边界） */
.pagination-list li.disabled {
    background-color: #f5f5f5;
    border-color: #e0e0e0;
    cursor: not-allowed;
}

.pagination-list li.disabled a {
    color: #ccc;
}

/* 鼠标悬停效果 */
.pagination-list li:not(.active):not(.disabled):hover {
    border-color: #1890ff;
}

.pagination-list li:not(.active):not(.disabled):hover a {
    color: #1890ff;
}

/* 移动端适配 */
@media (max-width: 768px) {
    .pagination-wrapper {
        margin-top: 20px;
    }
	.pagination-list {
        /* 允许分页列表换行，避免所有按钮挤在一行 */
        flex-wrap: wrap;
        justify-content: center;
        gap: 6px;
    }
    .pagination-list li {
        min-width: auto;
        height: auto;
        padding: 8px 12px;
        font-size: 13px;
        /* 防止文字换行 */
        white-space: nowrap;
    }
    .pagination-list li a {
         line-height: 1.4;
        padding: 0;
    }
}