* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', system-ui, sans-serif;
        }
        
        body {
            background-color: #f8f9fa;
            color: #333;
            line-height: 1.6;
            padding-top: 80px;
        }
        
        /* 头部导航样式 */
        header {
            background-color: white;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            transition: all 0.3s ease;
        }
        
        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .nav-main {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 15px 0;
        }
        
        /* Logo样式 */
        .logo {
            flex: 1;
            display: flex;
            justify-content: center;
        }
        
        .logo img {
            height: 40px;
            transition: all 0.3s ease;
        }
        
        /* 桌面端导航 */
        .desktop-nav {
            display: none;
        }
        
        .nav-links {
            display: flex;
            gap: 30px;
        }
        
        .nav-item {
            position: relative;
        }
        
        .nav-link {
            color: #4a5568;
            text-decoration: none;
            font-weight: 500;
            padding: 10px 0;
            display: flex;
            align-items: center;
            transition: color 0.3s ease;
        }
        
        .nav-link:hover {
            color: #E6BC50;
        }
        
        .dropdown {
            position: absolute;
            top: 100%;
            left: 0;
            background: white;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            border-radius: 8px;
            min-width: 200px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: all 0.3s ease;
            z-index: 100;
        }
        
        .nav-item:hover .dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        
        .dropdown a {
            display: block;
            padding: 12px 20px;
            color: #4a5568;
            text-decoration: none;
            border-bottom: 1px solid #f1f1f1;
            transition: all 0.2s ease;
        }
        
        .dropdown a:hover {
            background-color: #FFF8E6;
            color: #E6BC50;
        }
        
        .dropdown a:last-child {
            border-bottom: none;
        }
        
        /* 移动端菜单按钮 */
        .mobile-menu-toggle {
            display: flex;
            align-items: center;
            justify-content: center;
            background: none;
            border: none;
            color: #4a5568;
            font-size: 1.5rem;
            cursor: pointer;
            width: 40px;
            height: 40px;
            border-radius: 5px;
            transition: background 0.3s ease;
        }
        
        .mobile-menu-toggle:hover {
            background: #f5f5f5;
        }
        
        /* 移动端菜单 */
        .mobile-menu {
            position: fixed;
            top: 0;
            left: 0;
            width: 85%;
            max-width: 320px;
            height: 100vh;
            background: white;
            box-shadow: 2px 0 15px rgba(0, 0, 0, 0.1);
            z-index: 2000;
            transform: translateX(-100%);
            transition: transform 0.4s ease;
            overflow-y: auto;
        }
        
        .mobile-menu.active {
            transform: translateX(0);
        }
        
        .mobile-menu-header {
            padding: 20px;
            border-bottom: 1px solid #eaeaea;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .mobile-menu-close {
            background: none;
            border: none;
            font-size: 1.5rem;
            color: #4a5568;
            cursor: pointer;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 5px;
            transition: background 0.3s ease;
        }
        
        .mobile-menu-close:hover {
            background: #f5f5f5;
        }
        
        .mobile-nav {
            padding: 20px;
        }
        
        .mobile-nav-item {
            margin-bottom: 10px;
            border-bottom: 1px solid #f1f1f1;
        }
        
        .mobile-nav-link {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
            color: #2d3748;
            text-decoration: none;
            font-weight: 500;
            font-size: 1.1rem;
        }
        
        .mobile-submenu {
            padding-left: 15px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }
        
        .mobile-submenu.active {
            max-height: 500px;
        }
        
        .mobile-submenu a {
            display: block;
            padding: 12px 0;
            color: #4a5568;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        
        .mobile-submenu a:hover {
            color: #E6BC50;
        }
        
        /* 遮罩层 */
        .menu-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 1500;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }
        
        .menu-overlay.active {
            opacity: 1;
            visibility: visible;
        }
        
        /* 内容区域 */
        .content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 30px 20px;
        }
        
        .section {
            background: white;
            border-radius: 10px;
            padding: 30px;
            margin-bottom: 30px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
        }
        
        .highlight {
            background: #FFF8E6;
            padding: 20px;
            border-radius: 8px;
            margin: 20px 0;
            border-left: 4px solid #E6BC50;
        }
        
        /* 响应式设计 */
        @media (min-width: 768px) {
            .desktop-nav {
                display: flex;
            }
            
            .mobile-menu-toggle {
                display: none;
            }
            
            .logo {
                flex: none;
                justify-content: flex-start;
            }
            
            .nav-main {
                padding: 10px 0;
            }
            
            body {
                padding-top: 70px;
            }
        }
        
        @media (min-width: 992px) {
            .nav-links {
                gap: 40px;
            }
            
            .logo img {
                height: 45px;
            }
        }
@layer utilities {
        .animate-fade-in-up {
          animation: fadeInUp 0.2s ease-out forwards;
        }
        
        @keyframes fadeInUp {
          from {
            opacity: 0;
            transform: translateY(8px);
          }
          to {
            opacity: 1;
            transform: translateY(0);
          }
        }
        
        /* 轮播图样式 */
        .carousel {
          position: relative;
          overflow: hidden;
        }
        
        .carousel-inner {
          display: flex;
          transition: transform 0.5s ease;
        }
        
        .carousel-item {
          flex: 0 0 100%;
          transition: opacity 0.5s ease;
        }
        
        .carousel-item.active {
          opacity: 1;
        }
        
        .carousel-control {
          position: absolute;
          top: 50%;
          transform: translateY(-50%);
          background: rgba(0, 0, 0, 0.3);
          color: white;
          border: none;
          width: 40px;
          height: 40px;
          border-radius: 50%;
          display: flex;
          align-items: center;
          justify-content: center;
          cursor: pointer;
          transition: background 0.3s;
          z-index: 10;
        }
        
        .carousel-control:hover {
          background: rgba(0, 0, 0, 0.5);
        }
        
        .carousel-control.prev {
          left: 15px;
        }
        
        .carousel-control.next {
          right: 15px;
        }
        
        /* 移动端导航菜单 */
        .mobile-menu {
          position: fixed;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          background: white;
          z-index: 100;
          transform: translateX(-100%);
          transition: transform 0.3s ease;
          overflow-y: auto;
        }
        
        .mobile-menu.active {
          transform: translateX(0);
        }
        
        .menu-overlay {
          position: fixed;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          background: rgba(0, 0, 0, 0.5);
          z-index: 99;
          opacity: 0;
          visibility: hidden;
          transition: opacity 0.3s;
        }
        
        .menu-overlay.active {
          opacity: 1;
          visibility: visible;
        }
      }
      
      .pagination {
	display: inline-block;
	padding-left: 0;
	margin: 20px 0;
	border-radius: 4px
}
.pagination>li {
	display: inline
}
.pagination>li>a, .pagination>li>span {
	position: relative;
	float: left;
	padding: 6px 12px;
	line-height: 1.42857;
	text-decoration: none;
	color: rgb(230 188 80 / var(--tw-bg-opacity, 1));
	background-color: #fff;
	border: 1px solid #ddd;
	margin-left: -1px
}
.pagination>li:first-child>a, .pagination>li:first-child>span {
	margin-left: 0;
	border-bottom-left-radius: 4px;
	border-top-left-radius: 4px
}
.pagination>li:last-child>a, .pagination>li:last-child>span {
	border-bottom-right-radius: 4px;
	border-top-right-radius: 4px
}
.pagination>li>a:hover, .pagination>li>a:focus, .pagination>li>span:hover, .pagination>li>span:focus {
	z-index: 2;
	color: #23527c;
	background-color: #eee;
	border-color: #ddd
}
.pagination>.active>a, .pagination>.active>a:hover, .pagination>.active>a:focus, .pagination>.active>span, .pagination>.active>span:hover, .pagination>.active>span:focus {
	z-index: 3;
	color: #fff;
	background-color: rgb(230 188 80 / var(--tw-bg-opacity, 1));
	border-color: rgb(230 188 80 / var(--tw-bg-opacity, 1));
	cursor: default
}
.pagination>.disabled>span, .pagination>.disabled>span:hover, .pagination>.disabled>span:focus, .pagination>.disabled>a, .pagination>.disabled>a:hover, .pagination>.disabled>a:focus {
	color: #777;
	background-color: #fff;
	border-color: #ddd;
	cursor: not-allowed
}
/* 自定义样式增强 */
      .category-btn.active {
        background-color: #E6BC50 !important;
        color: white !important;
        box-shadow: 0 4px 6px -1px rgba(230, 188, 80, 0.3);
      }
      
      .category-btn.active:hover {
        background-color: #D4AD45 !important;
      }
      
      .case-item {
        transition: all 0.3s ease;
      }
      
      .case-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
      }
      
      .line-clamp-2 {
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
      }
      @layer utilities {
        .animate-fade-in-up {
          animation: fadeInUp 0.3s ease-out forwards;
        }
        
        @keyframes fadeInUp {
          from {
            opacity: 0;
            transform: translateY(15px);
          }
          to {
            opacity: 1;
            transform: translateY(0);
          }
        }
        
        .animate-fade-in {
          animation: fadeIn 0.5s ease-out forwards;
        }
        
        @keyframes fadeIn {
          from {
            opacity: 0;
          }
          to {
            opacity: 1;
          }
        }
        
        .reading-progress {
          position: fixed;
          top: 0;
          left: 0;
          height: 3px;
          background: #E6BC50;
          z-index: 100;
          transition: width 0.1s;
        }
        
        /* 修复内容溢出问题 */
        .news-content {
          max-width: 100%;
          overflow-x: hidden;
        }
        
        .news-content p{
            animation-delay: 0.1s;
            line-height: 1.7;
            word-wrap: break-word;
            overflow-wrap: break-word;
        }

        .news-content h2 {
          font-size: 1.5rem;
          font-weight: 700;
          color: #1F2937;
          margin-top: 2rem;
          margin-bottom: 1rem;
          word-wrap: break-word;
        }
        
        .news-content h3 {
          font-size: 1.25rem;
          font-weight: 600;
          color: #374151;
          margin-top: 1.5rem;
          margin-bottom: 0.75rem;
          word-wrap: break-word;
        }
        
        .news-content p {
          margin-bottom: 1rem;
          line-height: 1.7;
          word-wrap: break-word;
        }
        
        .news-content img {
          margin: auto !important;
          border-radius: 0.5rem;
          max-width: 100%;
          height: auto;
        }
        
        .news-content ul {
          margin-bottom: 1rem;
          padding-left: 1.5rem;
          max-width: 100%;
        }
        
        .news-content li {
          margin-bottom: 0.5rem;
          list-style-type: disc;
          word-wrap: break-word;
        }
        
        /* 添加表格响应式处理 */
        .news-content table {
          width: 100%;
          max-width: 100%;
          overflow-x: auto;
          display: block;
          border-collapse: collapse;
        }
        
        .news-content table td,
        .news-content table th {
          padding: 0.5rem;
          border: 1px solid #e5e7eb;
          word-break: break-word;
        }
        
        /* 长文本和URL换行处理 */
        .news-content pre,
        .news-content code {
          white-space: pre-wrap;
          word-wrap: break-word;
          max-width: 100%;
        }
        
        /* 确保所有内容元素不会溢出 */
        .news-content * {
          max-width: 100%;
        }
        
        /* 面包屑样式优化 */
        .breadcrumb-container {
          background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
          border-bottom: 1px solid #e2e8f0;
          margin-top: 1rem;
        }
        
        .breadcrumb-item {
          position: relative;
          transition: all 0.3s ease;
        }
        
        .breadcrumb-link {
          color: #64748b;
          text-decoration: none;
          font-weight: 500;
          padding: 4px 8px;
          border-radius: 6px;
          transition: all 0.3s ease;
          position: relative;
        }
        
        .breadcrumb-link:hover {
          color: #E6BC50;
          background-color: rgba(230, 188, 80, 0.1);
          transform: translateY(-1px);
        }
        
        .breadcrumb-link:active {
          transform: translateY(0);
        }
        
        .breadcrumb-current {
          color: #1e293b;
          font-weight: 600;
          padding: 4px 12px;
          background: rgba(230, 188, 80, 0.15);
          border-radius: 6px;
          border-left: 3px solid #E6BC50;
        }
        
        /* 移动端优化 */
        @media (max-width: 640px) {
          .breadcrumb-container {
            padding: 8px 0;
          }
          
          .breadcrumb-item:not(:last-child):after {
            margin: 0 6px;
            font-size: 0.875rem;
          }
          
          .breadcrumb-link,
          .breadcrumb-current {
            font-size: 0.875rem;
            padding: 3px 6px;
          }
        }
      }
      @layer utilities {
        .animate-fade-in-up {
          animation: fadeInUp 0.2s ease-out forwards;
        }
        
        @keyframes fadeInUp {
          from {
            opacity: 0;
            transform: translateY(8px);
          }
          to {
            opacity: 1;
            transform: translateY(0);
          }
        }
        
        .timeline-item {
          transition: all 0.3s ease;
        }
        
        .timeline-item:hover {
          transform: translateX(5px);
        }
        
        .team-member {
          transition: all 0.3s ease;
        }
        
        .team-member:hover {
          transform: translateY(-5px);
        }
        
        .culture-item {
          transition: all 0.3s ease;
        }
        
        .culture-item:hover {
          box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
        }
      }

      /* 服务范围圆形样式 */
      .service-circle {
        position: relative;
        overflow: hidden;
        border-radius: 50%;
        aspect-ratio: 1/1;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.4s ease;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      }
      
      .service-circle:hover {
        transform: scale(1.05);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
      }
      
      .service-circle .circle-bg {
        position: absolute;
        inset: 0;
        transition: all 0.4s ease;
      }
      
      .service-circle .circle-border {
        position: absolute;
        inset: 0;
        border: 4px solid white;
        border-radius: 50%;
        transform: scale(0.9);
        transition: all 0.4s ease;
      }
      
      .service-circle:hover .circle-border {
        transform: scale(1);
      }
      
      .service-circle .content {
        position: relative;
        z-index: 10;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: 100%;
        padding: 1rem;
        text-align: center;
        transition: all 0.4s ease;
      }
      
      .service-circle .hover-content {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(8px);
        opacity: 0;
        transform: translateY(100%);
        transition: all 0.4s ease;
        padding: 1rem;
        z-index: 20;
      }
      
      .service-circle:hover .hover-content {
        opacity: 1;
        transform: translateY(0);
      }
      
      .service-circle:hover .content {
        transform: translateY(-15%);
      }
      
      .service-circle .hover-content ul {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
      }
      
      .service-circle .hover-content li {
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 0.75rem;
      }
      
      @media (min-width: 768px) {
        .service-circle .hover-content li {
          font-size: 0.875rem;
        }
      }
      /* 案例分类切换样式 */
      .category-btn.active {
        background-color: #E6BC50 !important;
        color: white !important;
        border-color: #E6BC50 !important;
      }
      
      .case-item {
        transition: all 0.3s ease;
      }
      
      .case-item.hidden {
        display: none;
      }