 /* 基础重置 */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Helvetica Neue', Arial, sans-serif;
        }
        
        /* 导航栏容器 */
        .site-header {
            background-color: #ffffff;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
            position: fixed;
            width: 100%;
            top: 0;
            left: 0;
            z-index: 1000;
        }
        
        /* 导航内容区域 */
        .nav-wrapper {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 70px;
            padding: 0 20px;
        }
        
        /* 公司logo */
        .brand-logo {
            height: 40px;
        }
        
        .brand-logo img {
            height: 100%;
        }
        
        /* 主导航 - 桌面版 */
        .primary-nav {
            display: flex;
            height: 100%;
        }
        
        /* 导航列表 */
        .nav-menu {
            display: flex;
            height: 100%;
            list-style: none;
        }
        
        /* 导航项 */
        .nav-item {
            position: relative;
            height: 100%;
            padding: 0 15px;
            display: flex;
            align-items: center;
        }
        
        .nav-item > a {
            color: #333333;
            font-size: 18px;
            font-weight: 500;
            height: 100%;
            display: flex;
            align-items: center;
            transition: color 0.3s;
        }
        
        .nav-item:hover > a {
            color: #0066cc;
        }



        
        /* 下拉菜单 */
        .submenu {
            position: absolute;
            top: 100%;
            left: 0;
            background-color: #ffffff;
            width: 180px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            border-radius: 0 0 4px 4px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: all 0.3s ease;
            z-index: 100;
        }
        
        .nav-item:hover .submenu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        
        /* 下拉菜单项 */
        .submenu-item {
            padding: 12px 20px;
            border-bottom: 1px solid #f0f0f0;
        }
        
        .submenu-item:last-child {
            border-bottom: none;
        }
        
        .submenu-item a {
            color: #555555;
            font-size: 14px;
            transition: color 0.2s;
            display: block;
        }
        
        .submenu-item a:hover {
            color: #0066cc;
        }
        
        /* 右侧联系方式 */
        .header-actions {
            display: flex;
            align-items: center;
        }
        
        .contact-phone {
            display: flex;
            align-items: center;
            margin-right: 20px;
        }
        
        .phone-icon {
            width: 18px;
            margin-right: 8px;
        }
        
        .phone-number {
            color: #333333;
            font-weight: 500;
            font-size: 15px;
        }
        
        /* 获取方案按钮 */
        .action-button {
            background-color: #0066cc;
            color: white;
            padding: 8px 16px;
            border-radius: 4px;
            font-size: 14px;
            font-weight: 500;
            transition: background-color 0.3s;
            white-space: nowrap;
        }
        
        .action-button:hover {
            background-color: #0052a3;
        }
        
        /* 移动端菜单按钮 */
        .mobile-toggle {
            display: none;
            flex-direction: column;
            justify-content: space-between;
            width: 24px;
            height: 18px;
            cursor: pointer;
        }
        
        .toggle-line {
            height: 2px;
            width: 100%;
            background-color: #333333;
            transition: all 0.3s;
        }
        
        /* 移动端菜单样式 */
        .mobile-nav {
            display: none;
            position: fixed;
            top: 70px;
            left: 0;
            width: 100%;
            background-color: #ffffff;
            box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }
        
        .mobile-nav.active {
            display: block;
            max-height: 500px;
            overflow-y: auto;
        }
        
        .mobile-menu {
            list-style: none;
            padding: 0;
        }
        
        .mobile-item {
            border-bottom: 1px solid #f0f0f0;
        }
        
        .mobile-item > a {
            display: block;
            padding: 15px 20px;
            color: #333333;
            font-weight: 500;
        }
        
        .mobile-submenu {
            display: none;
            background-color: #f9f9f9;
            padding: 0;
        }
        
        .mobile-submenu.active {
            display: block;
        }
        
        .mobile-subitem {
            padding: 12px 20px 12px 30px;
            border-bottom: 1px solid #e0e0e0;
        }
        
        .mobile-subitem:last-child {
            border-bottom: none;
        }
        
        .mobile-subitem a {
            color: #555555;
            font-size: 14px;
            display: block;
        }
        
        .menu-expand {
            float: right;
            padding: 0 10px;
            cursor: pointer;
        }
        
        /* 响应式设计 */
        @media (max-width: 992px) {
            .primary-nav, .header-actions {
                display: none;
            }
            
            .mobile-toggle {
                display: flex;
            }
            
            .nav-wrapper {
                height: 60px;
            }
            
            .brand-logo {
                height: 35px;
            }
        }
        
        @media (min-width: 993px) {
            .mobile-nav {
                display: none !important;
            }
        }

		  /* 基础样式 */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Microsoft YaHei', Arial, sans-serif;
        }
        
        /* 轮播图容器 */
        .banner-container {
            width: 100%;
            height: 65vh;
            max-height: 800px;
            min-height: 200px;
            position: relative;
            overflow: hidden;
        }
        
        /* Swiper容器 */
        .swiper-container {
            width: 100%;
            height: 100%;
        }
        
        /* 轮播图项 */
        .swiper-slide {
            position: relative;
            width: 100%;
            height: 100%;
        }
        
        /* 轮播图背景图片 */
        .slide-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        
        /* 文字内容容器 */
        .slide-content {
            position: absolute;
            top: 50%;
            left: 30%;
            transform: translate(-50%, -50%);
            width: 90%;
            max-width: 1200px;
            text-align: center;
        
            z-index: 2;
            padding: 0 20px;
        }
        
        /* 文字内容框 */
        .text-box {
            background-color: rgba(0, 0, 0, 0.1);
            padding: 30px;
            border-radius: 8px;
            max-width: 800px;
            margin: 0 auto;
        }
        
        /* 标题样式 */
        .slide-title {
            font-size: 2.5rem;
            margin-bottom: 15px;
            line-height: 1.3;
        }
        
        /* 描述文字 */
        .slide-description {
            font-size: 1.2rem;
            margin-bottom: 25px;
            line-height: 1.6;
        }
        
        /* 按钮样式 */
        .action-button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 12px 30px;
            background-color: #0066cc;
            color: white;
            border-radius: 4px;
            font-size: 1rem;
            font-weight: 500;
            text-decoration: none;
            transition: all 0.3s;
        }
        
        .action-button:hover {
            background-color: #0052a3;
            transform: translateY(-2px);
        }
        
        .action-button span {
            margin-right: 8px;
        }
        
        .action-button em {
            display: inline-block;
            width: 0;
            height: 0;
            border-style: solid;
            border-width: 5px 0 5px 8px;
            border-color: transparent transparent transparent #ffffff;
            transition: all 0.3s;
        }
        
        .action-button:hover em {
            transform: translateX(3px);
        }
        
        /* 分页器样式 */
        .swiper-pagination {
            position: absolute;
            bottom: 30px !important;
        }
        
        .swiper-pagination-bullet {
            width: 12px;
            height: 12px;
            background: rgba(255, 255, 255, 0.5);
            opacity: 1;
            margin: 0 8px !important;
        }
        
        .swiper-pagination-bullet-active {
            background: #fff;
        }
        
        /* 响应式调整 */
        @media (max-width: 992px) {
            .slide-title {
                font-size: 2rem;
            }
            
            .slide-description {
                font-size: 1rem;
            }
            
            .text-box {
                padding: 20px;
            }
        }
        
        @media (max-width: 768px) {
            .banner-container {
                height: 70vh;
                min-height: 400px;
            }
            
            .slide-title {
                font-size: 1.8rem;
            }
            
            .slide-description {
                font-size: 0.9rem;
                margin-bottom: 20px;
            }
            
            .action-button {
                padding: 10px 20px;
                font-size: 0.9rem;
            }
        }
        
        @media (max-width: 480px) {
            .banner-container {
                height: 60vh;
                min-height: 300px;
            }
            
            .slide-title {
                font-size: 1.5rem;
            }
            
            .text-box {
                padding: 15px;
            }
            
            .action-button {
                padding: 8px 16px;
            }
        }



		/* 基础样式重置 */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Helvetica Neue', Arial, sans-serif;
        }
        
        /* 主容器 */
        .brand-value-section {
            background-color: #f8f9fa;
            padding: 60px 0;
        }
        
        /* 内容容器 */
        .value-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
			 text-align: center;
        }
        
        /* 标题样式 */
        .section-title {
            text-align: center;
            font-size: 2.5rem;
            color: #333;
            margin-bottom: 50px;
            position: relative;
            padding-bottom: 15px;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: #0066cc;
        }
        
        /* 价值列表 */
        .value-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
			    margin-top: 20px;
        }
        
        /* 价值卡片 */
        .value-card {
            background-color: white;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .value-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        
        /* 卡片头部 */
        .card-header {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }
        
        .card-icon {
            width: 50px;
            height: 50px;
            margin-right: 15px;
        }
        
        .card-number {
            font-size: 1.8rem;
            font-weight: bold;
            color: #0066cc;
        }
        
        /* 卡片标题 */
        .card-title {
            font-size: 1.3rem;
            color: #222;
            margin-bottom: 15px;
            line-height: 1.4;
        }
        
        /* 卡片描述 */
        .card-desc {
            color: #666;
            line-height: 1.6;
            font-size: 1rem;
        }
        
        /* 了解更多按钮 */
        .learn-more {
            text-align: center;
            margin-top: 30px;
        }
        
        .learn-more-btn {
            display: inline-flex;
            align-items: center;
            padding: 12px 30px;
            background-color: #0066cc;
            color: white;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s;
        }
        
        .learn-more-btn:hover {
            background-color: #0052a3;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 102, 204, 0.3);
        }
        
        .learn-more-btn span {
            margin-right: 8px;
        }
        
        .arrow-icon {
            width: 16px;
            height: 16px;
            transition: transform 0.3s;
        }
        
        .learn-more-btn:hover .arrow-icon {
            transform: translateX(3px);
        }
        
        /* 响应式设计 */
        @media (max-width: 768px) {
            .section-title {
                font-size: 2rem;
                margin-bottom: 30px;
            }
            
            .value-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .value-card {
                padding: 20px;
            }
            
            .card-title {
                font-size: 1.2rem;
            }
        }

		 /* 基础样式重置 */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Helvetica Neue', Arial, sans-serif;
        }
        
        /* 主容器 */
        .ai-advantages-section {
            background-color: #ffffff;
            padding: 80px 0;
        }
        
        /* 内容容器 */
        .advantages-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* 大标题样式 */
        .section-heading {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-title {
            font-size: 2.5rem;
            color: #333;
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background-color: #0066cc;
        }
        
        .section-subtitle {
            font-size: 1.1rem;
            color: #666;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.6;
        }
        
        /* 优势列表 */
        .advantages-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        
        /* 优势项 */
        .advantage-item {
            background-color: #f9fafb;
            border-radius: 12px;
            padding: 30px;
            transition: all 0.3s ease;
            border: 1px solid #eaeaea;
        }
        
        .advantage-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            border-color: #d0e3ff;
        }
        
        /* 图标区域 */
        .advantage-icon {
            width: 60px;
            height: 60px;
            background-color: #e6f0ff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }
        
        .advantage-icon img {
            width: 32px;
            height: 32px;
        }
        
        /* 标题和描述 */
        .advantage-title {
            font-size: 1.3rem;
            color: #222;
            margin-bottom: 15px;
            font-weight: 600;
        }
        
        .advantage-desc {
            color: #666;
            line-height: 1.6;
            font-size: 0.95rem;
        }
        
        /* 响应式设计 */
        @media (max-width: 992px) {
            .section-title {
                font-size: 2.2rem;
            }
            
            .advantages-grid {
                gap: 20px;
            }
            
            .advantage-item {
                padding: 25px;
            }
        }
        
        @media (max-width: 768px) {
            .ai-advantages-section {
                padding: 60px 0;
            }
            
            .section-heading {
                margin-bottom: 40px;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
            
            .section-subtitle {
                font-size: 1rem;
                padding: 0 15px;
            }
            
            .advantages-grid {
                grid-template-columns: 1fr;
                max-width: 500px;
                margin: 0 auto;
            }
            
            .advantage-icon {
                width: 50px;
                height: 50px;
            }
            
            .advantage-icon img {
                width: 26px;
                height: 26px;
            }
        }
        
        @media (max-width: 480px) {
            .section-title {
                font-size: 1.6rem;
            }
            
            .advantage-item {
                padding: 20px;
            }
            
            .advantage-title {
                font-size: 1.2rem;
            }
        }


		/******/
		   /* 下面是CSS部分 */
        :root {
            --primary-color: #4a6bff;
            --secondary-color: #6c757d;
            --dark-color: #343a40;
            --light-color: #f8f9fa;
            --animation-color: #ff6b6b;
        }
        
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        
        body {
            font-family: 'PingFang SC', 'Microsoft YaHei', sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #fff;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        .row {
            display: flex;
            flex-wrap: wrap;
            margin: 0 -15px;
        }
        
        .col-12, .col-lg-5, .col-lg-7 {
            padding: 0 15px;
            width: 100%;
        }
        
        /* 标题部分样式 */
        .heading-section {
            margin-bottom: 40px;
            text-align: center;
        }
        
        .heading-section h6 {
            color: var(--primary-color);
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .heading-section .main-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--dark-color);
            margin-bottom: 20px;
            line-height: 1.2;
        }
        
        .animation-text {
            color: var(--primary-color);
            position: relative;
            display: inline-block;
        }
        
        .animation-text::after {
            content: '';
            position: absolute;
            bottom: 5px;
            left: 0;
            width: 100%;
            height: 8px;
            background-color: rgba(74, 107, 255, 0.2);
            z-index: -1;
            transition: all 0.3s ease;
        }
        
        /* 内容项样式 */
        .content {
            margin-top: 20px;
        }
        
        .works-item {
            background-color: #fff;
            border-radius: 10px;
            padding: 25px;
            margin-bottom: 20px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            border-left: 4px solid transparent;
        }
        
        .works-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            border-left: 4px solid var(--primary-color);
        }
        
        .works-item h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--dark-color);
        }
        
        .works-item h3 a {
            color: inherit;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .works-item h3 a:hover {
            color: var(--primary-color);
        }
        
        .works-item p {
            color: var(--secondary-color);
            font-size: 1rem;
        }
        
        /* 图片样式 - 重点改进部分 */
        .image-container {
            position: relative;
            width: 100%;
            padding-bottom: 60%; /* 控制图片比例 */
            overflow: hidden;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            margin-top: 30px;
        }
        
        .image-container img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            transition: transform 0.3s ease;
        }
        
        .image-container:hover img {
            transform: scale(1.02);
        }
        
        /* 响应式设计 */
        @media (min-width: 768px) {
            .heading-section .main-title {
                font-size: 3rem;
            }
            
            .col-lg-5 {
                flex: 0 0 41.666667%;
                max-width: 41.666667%;
            }
            
            .col-lg-7 {
                flex: 0 0 58.333333%;
                max-width: 58.333333%;
            }
            
            .content {
                margin-top: 0;
                padding-right: 30px;
            }
            
            .works-item {
                padding: 30px;
            }
            
            .image-container {
                padding-bottom: 0;
                height: auto;
                margin-top: 0;
            }
            
            .image-container img {
                position: static;
                height: auto;
                object-fit: contain;
            }
        }
        
        @media (max-width: 767px) {
            .heading-section .main-title {
                font-size: 2rem;
            }
            
            .works-item {
                padding: 20px;
            }
            
            .image-container {
                padding-bottom: 75%; /* 移动端更高的图片比例 */
            }
        }
        
        /* 超小屏幕优化 */
        @media (max-width: 480px) {
            .heading-section .main-title {
                font-size: 1.8rem;
            }
            
            .works-item h3 {
                font-size: 1.3rem;
            }
            
            .works-item p {
                font-size: 0.9rem;
            }
            
            .image-container {
                padding-bottom: 85%; /* 更小的设备更高的图片比例 */
            }
        }
        
        /* 动画效果 */
        .wow {
            visibility: hidden;
        }
        
        .animate__animated {
            visibility: visible;
        }



		 /* CSS重置和基础样式 */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'PingFang SC', 'Microsoft YaHei', sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f8f9fa;
        }
        
        /* 主容器样式 */
        .section-container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 15px;
        }
        
        /* 标题样式 */
        .section-header {
            text-align: center;
            margin-bottom: 40px;
        }
        
        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #3498db, #9b59b6);
            border-radius: 2px;
        }
        
        .section-subtitle {
            font-size: 1.1rem;
            color: #7f8c8d;
            max-width: 700px;
            margin: 0 auto;
        }
        
        /* 品牌列表容器 */
        .ai-brands-container {
            width: 100%;
        }
        
        /* 品牌列表样式 */
        .brands-list {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
            list-style: none;
        }
        
      
        .brand-logo2 {
            width: 100%;
            height: 0;
            padding-bottom: 100%;
            position: relative;
            background-color: #fff;
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .brand-logo2 img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: contain;
            padding: 20px;
        }
        
        .brand-item p {
            margin-top: 12px;
            font-size: 16px;
            font-weight: 500;
            color: #2c3e50;
        }
        
        /* 悬停效果 */
        .brand-item:hover {
            transform: translateY(-5px);
        }
        
        .brand-item:hover .brand-logo {
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
        }
        
        /* 响应式设计 - 平板 */
        @media (max-width: 992px) {
            .section-title {
                font-size: 2.2rem;
            }
            
            .brand-item {
                flex: 0 0 calc(25% - 20px);
                max-width: calc(25% - 20px);
            }
        }
        
        /* 响应式设计 - 小平板 */
        @media (max-width: 768px) {
            .section-container {
                padding: 30px 15px;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
            
            .section-subtitle {
                font-size: 1rem;
            }
            
            .brand-item {
                flex: 0 0 calc(33.333% - 20px);
                max-width: calc(33.333% - 20px);
            }
        }
        
        /* 响应式设计 - 手机 */
        @media (max-width: 576px) {
            .section-header {
                margin-bottom: 30px;
            }
            
            .section-title {
                font-size: 1.6rem;
            }
            
            .brands-list {
                gap: 15px;
            }
            
            .brand-item {
                flex: 0 0 calc(50% - 15px);
                max-width: calc(50% - 15px);
            }
            
            .brand-item p {
                font-size: 14px;
            }
        }
        
        /* 超小屏幕优化 */
        @media (max-width: 400px) {
            .section-title {
                font-size: 1.4rem;
            }
            
            .brands-list {
                gap: 10px;
            }
            
            .brand-item {
                flex: 0 0 calc(50% - 10px);
                max-width: calc(50% - 10px);
            }
            
            .brand-logo {
                border-radius: 8px;
            }
        }




/******/
/* 基础样式重置 */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'PingFang SC', 'Microsoft YaHei', sans-serif;
            line-height: 1.6;
            color: #333;
        }
        
        /* 品牌展示区容器 */
        .brands-section {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px;
        }
        
        /* 标题样式 */
        .section-heading {
            text-align: center;
            margin-bottom: 30px;
        }
        
        .section-heading h2 {
            font-size: 2rem;
            color: #222;
            position: relative;
            display: inline-block;
            padding-bottom: 10px;
        }
        
        .section-heading h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background-color: #4a6bff;
        }
        
        /* 品牌列表 */
        .brands-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 20px;
            list-style: none;
        }
        
        .brand-item {
            background-color: #fff;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            aspect-ratio: 16/9;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 15px;
        }
        
        .brand-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.12);
        }
        
        .brand-item img {
            max-width: 100%;
            max-height: 100%;
            width: auto;
            height: auto;
            object-fit: contain;
         
            opacity: 0.8;
            transition: all 0.3s ease;
        }
        
        .brand-item:hover img {
            filter: grayscale(0%);
            opacity: 1;
        }
        
        /* 响应式设计 - 平板 */
        @media (max-width: 1024px) {
            .brands-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }
        
        /* 响应式设计 - 小平板 */
        @media (max-width: 768px) {
            .brands-section {
                padding: 30px 15px;
            }
            
            .brands-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 15px;
            }
            
            .section-heading h2 {
                font-size: 1.8rem;
            }
        }
        
        /* 响应式设计 - 手机 */
        @media (max-width: 576px) {
            .brands-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 12px;
            }
            
            .section-heading h2 {
                font-size: 1.6rem;
            }
            
            .brand-item {
                padding: 10px;
            }
        }
        
        /* 超小屏幕优化 */
        @media (max-width: 400px) {
            .brands-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 10px;
            }
            
            .section-heading h2 {
                font-size: 1.4rem;
            }
        }



		/*****/
		  /* 基础样式重置 */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'PingFang SC', 'Microsoft YaHei', sans-serif;
            line-height: 1.6;
            color: #333;
        }
        
        /* 页脚容器 */
        .site-footer {
            background-color: #fff;
            padding: 40px 0;
            user-select: none;
        }
        
        .footer-container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* 页脚顶部边框 */
        .footer-border {
            border-top: 1px solid #e5e7eb;
            padding-top: 40px;
        }
        
        /* 主要内容区域 */
        .footer-content {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
        }
        
        /* 每个栏目样式 */
        .footer-column {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        
        .footer-column-title {
            font-size: 1.125rem;
            font-weight: 800;
            color: #222;
        }
        
        .footer-about {
            font-size: 0.875rem;
            color: #747474;
            max-width: 400px;
            line-height: 1.7;
        }
        
        /* 友情链接样式 */
        .footer-links {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        
        .footer-link {
            font-size: 0.875rem;
            color: #747474;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-link:hover {
            color: #4a6bff;
        }
        
        /* 公众号区域 */
        .footer-qrcode {
            margin-top: 20px;
        }
        
        .footer-qrcode img {
            width: 120px;
            height: 120px;
            object-fit: contain;
        }
        
        /* 备案信息 */
        .footer-copyright {
            margin-top: 40px;
            text-align: center;
            font-size: 0.875rem;
            color: #222;
        }
        
        .footer-copyright a {
            color: inherit;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-copyright a:hover {
            color: #4a6bff;
        }
        
        /* 响应式设计 - 平板 */
        @media (max-width: 992px) {
            .footer-content {
                grid-template-columns: repeat(2, 1fr);
                gap: 30px;
            }
        }
        
        /* 响应式设计 - 手机 */
        @media (max-width: 576px) {
            .footer-content {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .footer-border {
                padding-top: 30px;
            }
            
            .footer-column {
                gap: 15px;
            }
            
            .footer-copyright {
                margin-top: 30px;
            }
        }


/* 基础样式 */
.integrations-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: 'Arial', sans-serif;
}

/* 标题样式 */
.integrations-header {
    text-align: center;
    margin-bottom: 40px;
}

.integrations-subtitle {
    font-size: 16px;
    color: #666;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.integrations-title {
    font-size: 32px;
    color: #333;
    margin: 0;
    font-weight: 600;
}

/* 网格布局 */
.integrations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 30px;
}

/* 每个集成项样式 */
.integration-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease;
}

.integration-item:hover {
    transform: translateY(-5px);
}

.integration-image {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.integration-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.integration-name {
    font-size: 16px;
    color: #333;
    margin: 0;
    text-align: center;
    font-weight: 500;
}

.popup-link {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.popup-link:hover {
    color: #0066cc;
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .integrations-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: 25px;
    }
    
    .integration-image {
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 768px) {
    .integrations-container {
        padding: 30px 15px;
    }
    
    .integrations-title {
        font-size: 28px;
    }
    
    .integrations-grid {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
        gap: 20px;
    }
    
    .integration-image {
        width: 60px;
        height: 60px;
    }
    
    .integration-name {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .integrations-header {
        margin-bottom: 30px;
    }
    
    .integrations-subtitle {
        font-size: 14px;
    }
    
    .integrations-title {
        font-size: 24px;
    }
    
    .integrations-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    
    .integration-image {
        width: 50px;
        height: 50px;
        margin-bottom: 10px;
    }
    
    .integration-name {
        font-size: 13px;
    }
}

.integration-item:hover {
    transform: translateY(-5px);
    background-color: #e1e8f0;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    border: 1px solid #d0d9e6; /* 添加边框效果 */
}

/* 图片悬停时可以添加缩放效果 */
.integration-image img {
    transition: transform 0.3s ease;
}

.integration-item:hover .integration-image img {
    transform: scale(1.05);
}
.integration-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s ease; /* 添加all以过渡所有属性 */
    padding: 20px 10px;
    border-radius: 8px;
    background-color: #f5f7fa; /* 添加浅灰色背景 */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05); /* 轻微阴影 */
}

.integration-item:hover {
    transform: translateY(-5px);
    background-color: #e1e8f0; /* 悬停时更深的背景色 */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); /* 悬停时阴影加深 */
}

/* 保持原有响应式设计不变 */
@media (max-width: 768px) {
    .integration-item {
        padding: 15px 8px;
    }
}

@media (max-width: 480px) {
    .integration-item {
        padding: 12px 5px;
    }
}




 /* 基础样式 */
  .float-sidebar {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
  }

  /* 咨询按钮样式 */
  .consult-btn {
    background: #1890ff;
    color: white;
    border-radius: 20px 0 0 20px;
    padding: 10px 15px 10px 20px;
    display: flex;
    align-items: center;
    cursor: pointer;
    box-shadow: -2px 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    margin-right: -1px; /* 消除边框重叠 */
  }

  .consult-btn:hover {
    background: #40a9ff;
    transform: translateX(-5px);
  }

  .consult-btn img {
    width: 20px;
    height: 20px;
    margin-right: 8px;
  }

  .consult-btn span {
    font-size: 14px;
    white-space: nowrap;
  }

  /* 工具按钮样式 */
  .tool-btn {
    background: #1890ff;
    color: white;
    border-radius: 20px 0 0 20px;
    padding: 10px 20px;
    text-decoration: none;
    font-size: 14px;
    box-shadow: -2px 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    margin-right: -1px; /* 消除边框重叠 */
    white-space: nowrap;
  }

  .tool-btn:hover {
    background: #40a9ff;
    transform: translateX(-5px);
  }

  /* 咨询面板样式 */
  .consult-panel {
    position: absolute;
    right: 100%;
    top: 50%;
    transform: translateY(-50%);
    width: 260px;
    background: white;
    border-radius: 8px 0 0 8px;
    box-shadow: -4px 4px 16px rgba(0, 0, 0, 0.1);
    padding: 20px;
    display: none;
  }

  .consult-panel.active {
    display: block;
  }

  .close-btn {
    position: absolute;
    right: 10px;
    top: 10px;
    font-size: 20px;
    cursor: pointer;
    color: #999;
  }

  .consult-item {
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
  }

  .consult-item:last-child {
    border-bottom: none;
  }

  .consult-item h4 {
    margin: 0 0 5px 0;
    font-size: 14px;
    color: #333;
    font-weight: normal;
  }

  .consult-item a {
    color: #1890ff;
    text-decoration: none;
    font-size: 14px;
    display: block;
  }

  .consult-item.wechat img {
    width: 100%;
    max-width: 180px;
    display: block;
    margin: 0 auto 10px;
  }

  .consult-item.wechat span {
    display: block;
    text-align: center;
    color: #666;
    font-size: 13px;
  }

  /* 响应式设计 */
  @media (max-width: 768px) {
    .float-sidebar {
      top: auto;
      bottom: 20px;
      transform: none;
      flex-direction: row-reverse;
      align-items: center;
      right: 20px;
    }

    .consult-btn, .tool-btn {
      border-radius: 20px;
      margin-right: 0;
    }

    .consult-panel {
      right: auto;
      left: 50%;
      top: auto;
      bottom: calc(100% + 10px);
      transform: translateX(-50%);
      border-radius: 8px;
      width: 280px;
    }

    .consult-btn:hover, .tool-btn:hover {
      transform: none;
    }
  }

  @media (max-width: 480px) {
    .consult-panel {
      width: 90vw;
      max-width: 280px;
    }
    
    .consult-btn span, .tool-btn {
      font-size: 12px;
    }
  }


   /* 详情页特有样式 */
    .article-container {
        max-width: 1200px;
        margin: 100px auto;
        padding: 0 30px;
    }
    
    .article-header {
        text-align: center;
        margin-bottom: 50px;
    }
    
    .article-title {
        font-size: 36px;
        color: #1a1a1a;
        margin-bottom: 20px;
        font-weight: 600;
        line-height: 1.4;
    }
    
    .article-meta {
        display: flex;
        justify-content: center;
        align-items: center;
        color: #666;
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .article-meta span {
        margin: 0 15px;
        display: flex;
        align-items: center;
    }
    
    .article-meta i {
        margin-right: 5px;
    }
    
    .article-content {
        background: #fff;
        padding: 40px;
        border-radius: 8px;
        box-shadow: 0 5px 25px rgba(0,0,0,0.05);
        line-height: 1.8;
        color: #333;
    }
    
    .article-content h2 {
        font-size: 24px;
        margin: 40px 0 20px;
        color: #1a1a1a;
        padding-bottom: 10px;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .article-content h3 {
        font-size: 20px;
        margin: 30px 0 15px;
        color: #1a1a1a;
    }
    
    .article-content p {
        margin-bottom: 20px;
        font-size: 16px;
    }
    
    .article-content ul, 
    .article-content ol {
        margin-bottom: 20px;
        padding-left: 20px;
    }
    
    .article-content li {
        margin-bottom: 10px;
    }
    
    .article-content blockquote {
        border-left: 4px solid #1890ff;
        background: #f8f9fa;
        padding: 15px 20px;
        margin: 20px 0;
        color: #555;
        font-style: italic;
    }
    
    .article-tags {
        display: flex;
        flex-wrap: wrap;
        margin: 40px 0;
    }
    
    .article-tag {
        display: inline-block;
        background: #f0f9ff;
        color: #1890ff;
        padding: 5px 15px;
        border-radius: 20px;
        margin-right: 10px;
        margin-bottom: 10px;
        font-size: 14px;
    }
    
    .article-navigation {
        display: flex;
        justify-content: space-between;
        margin-top: 50px;
        padding-top: 30px;
        border-top: 1px solid #f0f0f0;
    }
    
    .nav-link {
        display: inline-flex;
        align-items: center;
        color: #1890ff;
        text-decoration: none;
        font-weight: 500;
    }
    
    .nav-link.prev {
        padding-right: 20px;
    }
    
    .nav-link.next {
        padding-left: 20px;
        text-align: right;
    }
    
    .nav-link:hover {
        text-decoration: underline;
    }
    
    .nav-link::before,
    .nav-link::after {
        font-size: 20px;
    }
    
    .nav-link.prev::before {
        content: "←";
        margin-right: 8px;
    }
    
    .nav-link.next::after {
        content: "→";
        margin-left: 8px;
    }
    
    .related-articles {
        margin-top: 80px;
    }
    
    .related-title {
        font-size: 24px;
        margin-bottom: 30px;
        color: #1a1a1a;
        position: relative;
        padding-bottom: 15px;
    }
    
    .related-title::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 60px;
        height: 3px;
        background: #1890ff;
    }
    
    .related-list {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 30px;
    }
    
    .related-item {
        background: #fff;
        border-radius: 8px;
        padding: 25px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        transition: all 0.3s ease;
    }
    
    .related-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    }
    
    .related-item-date {
        color: #999;
        font-size: 14px;
        margin-bottom: 10px;
    }
    
    .related-item-title {
        font-size: 18px;
        margin-bottom: 15px;
        line-height: 1.5;
    }
    
    .related-item-title a {
        color: #333;
        text-decoration: none;
    }
    
    .related-item-title a:hover {
        color: #1890ff;
    }
    
    /* 响应式设计 */
    @media (max-width: 768px) {
        .article-container {
            margin: 40px auto;
            padding: 0 20px;
        }
        
        .article-title {
            font-size: 28px;
        }
        
        .article-content {
            padding: 25px;
        }
        
        .article-content h2 {
            font-size: 22px;
        }
        
        .article-content h3 {
            font-size: 18px;
        }
        
        .article-navigation {
            flex-direction: column;
        }
        
        .nav-link {
            margin-bottom: 15px;
        }
    }
	  /* 资讯页面特有样式 - 简洁优雅版 */
    .news-container {
        max-width: 1200px;
        margin: 100px auto;
        padding: 0 30px;
    }
    
    .news-header {
        text-align: center;
        margin-bottom: 60px;
    }
    
    .news-header h1 {
        font-size: 36px;
        color: #1a1a1a;
        margin-bottom: 15px;
        font-weight: 600;
        letter-spacing: 1px;
    }
    
    .news-header p {
        color: #666;
        font-size: 18px;
        max-width: 700px;
        margin: 0 auto;
        line-height: 1.6;
    }
    
    .news-list {
        display: grid;
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .news-item {
        background: #fff;
        border-radius: 8px;
        padding: 30px;
        box-shadow: 0 5px 25px rgba(0,0,0,0.05);
        border-left: 4px solid #1890ff;
        transition: all 0.3s ease;
    }
    
    .news-item:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    }
    
    .news-date {
        display: inline-block;
        background: #f0f9ff;
        color: #1890ff;
        padding: 5px 12px;
        border-radius: 20px;
        font-size: 14px;
        margin-bottom: 15px;
        font-weight: 500;
    }
    
    .news-title {
        font-size: 22px;
        margin-bottom: 15px;
        line-height: 1.4;
        color: #333;
    }
    
    .news-title a {
        color: #1a1a1a;
        text-decoration: none;
        transition: color 0.3s;
    }
    
    .news-title a:hover {
        color: #1890ff;
    }
    
    .news-excerpt {
        color: #666;
        font-size: 16px;
        line-height: 1.8;
        margin-bottom: 20px;
    }
    
    .news-meta {
        display: flex;
        align-items: center;
        color: #999;
        font-size: 14px;
    }
    
    .news-meta span {
        margin-right: 20px;
        display: flex;
        align-items: center;
    }
    
    .news-meta i {
        margin-right: 5px;
        font-size: 16px;
    }
    
    .read-more {
        display: inline-flex;
        align-items: center;
        color: #1890ff;
        font-size: 15px;
        text-decoration: none;
        font-weight: 500;
        transition: all 0.3s;
    }
    
    .read-more:hover {
        transform: translateX(5px);
    }
    
    .read-more::after {
        content: "→";
        margin-left: 5px;
        transition: margin 0.3s;
    }
    
    .read-more:hover::after {
        margin-left: 8px;
    }
    
    .pagination {
        display: flex;
        justify-content: center;
        margin-top: 60px;
    }
    
    .pagination a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        margin: 0 5px;
        border-radius: 50%;
        color: #666;
        text-decoration: none;
        font-weight: 500;
        transition: all 0.3s;
    }
    
    .pagination a:hover,
    .pagination a.active {
        background: #1890ff;
        color: #fff;
    }
    
    /* 响应式设计 */
    @media (max-width: 768px) {
        .news-container {
            margin: 40px auto;
            padding: 0 20px;
        }
        
        .news-header h1 {
            font-size: 28px;
        }
        
        .news-header p {
            font-size: 16px;
        }
        
        .news-item {
            padding: 20px;
        }
        
        .news-title {
            font-size: 20px;
        }
    }