        /* 继承之前的全局样式 */
		        /* 全局样式 */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        :root {
            --primary-color: #2c3e50;
            --secondary-color: #e74c3c;
            --accent-color: #3498db;
            --text-color: #333;
            --light-bg: #f8f9fa;
            --white: #ffffff;
            --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
        }
        
        body {
            color: var(--text-color);
            line-height: 1.6;
        }
        
        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }
        
        ul {
            list-style: none;
        }
        
        /* 修改容器宽度为1600px - 根据流行趋势调整 */
        .container {
            width: 100%;
            max-width: 1600px;
            margin: 0 auto;
            padding: 0 40px;
        }
        
        .btn {
            display: inline-block;
            padding: 12px 28px;
            background-color: var(--secondary-color);
            color: white;
            border-radius: 4px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            border: none;
            cursor: pointer;
            transition: var(--transition);
        }
        
        .btn:hover {
            background-color: #c0392b;
            transform: translateY(-2px);
            box-shadow: var(--shadow);
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
            position: relative;
        }
        
        .section-title h2 {
            font-size: 2.5rem; /* 稍微增大字体 */
            color: var(--primary-color);
            display: inline-block;
            padding-bottom: 15px;
        }
        
        .section-title h2:after {
            content: '';
            position: absolute;
            width: 100px; /* 加长下划线 */
            height: 4px; /* 加粗下划线 */
            background-color: var(--secondary-color);
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
        }
        
        /* 头部样式 */
        .top-bar {
            background-color: var(--primary-color);
            color: white;
            padding: 10px 0;
            font-size: 0.9rem;
        }
        
        .top-bar-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        
        .contact-info {
            display: flex;
            gap: 30px; /* 增加间距 */
        }
        
        .contact-info span {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .social-icons {
            display: flex;
            gap: 15px;
        }
        
        .social-icons a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 32px;
            height: 32px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            transition: var(--transition);
        }
        
        .social-icons a:hover {
            background-color: var(--secondary-color);
        }
        
        .header-main {
            padding: 20px 0;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            background-color: white;
            z-index: 1000;
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            display: flex;
            align-items: center;
            gap: 20px; /* 增加间距 */
        }
        
        .logo-img {
            height: 70px; /* 增大Logo */
            width: auto;
        }
        
        .logo-text h1 {
            font-size: 1.8rem; /* 增大字体 */
            color: var(--primary-color);
        }
        
        .logo-text p {
            font-size: 1rem;
            color: #666;
        }
        
        /* 导航菜单 */
        .nav-menu {
            display: flex;
            gap: 40px; /* 增加间距 */
        }
        
        .nav-menu li {
            position: relative;
        }
        
        .nav-menu a {
            font-weight: 600;
            color: var(--primary-color);
            padding: 5px 0;
            position: relative;
            font-size: 1.05rem; /* 增大字体 */
        }
        
        .nav-menu a:hover, .nav-menu a.active {
            color: var(--secondary-color);
        }
        
        .nav-menu a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 3px;
            background-color: var(--secondary-color);
            bottom: 0;
            left: 0;
            transition: var(--transition);
        }
        
        .nav-menu a:hover:after, .nav-menu a.active:after {
            width: 100%;
        }
        
        /* 移动端菜单按钮 */
        .mobile-menu-btn {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--primary-color);
        }
        
        /* 响应式设计 */
        @media (max-width: 1200px) {
            .container {
                max-width: 100%;
                padding: 0 30px;
            }
        }
        
        @media (max-width: 992px) {
            .nav-menu {
                position: fixed;
                top: 140px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 140px);
                background-color: white;
                flex-direction: column;
                align-items: center;
                padding-top: 40px;
                gap: 30px;
                transition: var(--transition);
                box-shadow: var(--shadow);
                z-index: 999;
            }
            
            .nav-menu.active {
                left: 0;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .contact-info {
                flex-direction: column;
                gap: 5px;
            }
        }
        
        @media (max-width: 768px) {
            .container {
                padding: 0 20px;
            }
            
            .logo {
                flex-direction: column;
                text-align: center;
                gap: 10px;
            }
            
            .logo-text h1 {
                font-size: 1.5rem;
            }
            
            .top-bar-content {
                flex-direction: column;
                gap: 10px;
                text-align: center;
            }
            
            .contact-info {
                flex-direction: column;
                gap: 5px;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
        }
        
        @media (max-width: 576px) {
            .section-title h2 {
                font-size: 1.8rem;
            }
        }
        /* 继承之前的全局样式结束 */	
/* 	.page-num{
			display: flex;
		    align-items: center;
		    justify-content: center;
		    width: 45px;
		    height: 45px;
		    border-radius: 4px;
		    background-color: white;
		    color: var(--primary-color);
		    font-weight: 600;
		    transition: var(--transition);
		    box-shadow: var(--shadow);
		} */
		
.cases-pagination a, .news-pagination a, .pagination a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 4px;
            background-color: white;
            color: var(--primary-color);
            font-weight: 600;
            transition: var(--transition);
            box-shadow: var(--shadow);
        }
        
.cases-pagination a, .news-pagination a,.pagination a:hover,
.cases-pagination a, .news-pagination a,.pagination a.active {
            background-color: var(--secondary-color);
            color: white;
        }