        
        /* 页面标题横幅 */
        .page-header {
            padding: 140px 0 80px;
            background: linear-gradient(135deg, rgba(26, 103, 198, 0.1), rgba(52, 199, 179, 0.1));
            text-align: center;
            margin-top: 70px;
        }
        
        .page-header h1 {
            font-size: 2.8rem;
            color: var(--primary-color);
            margin-bottom: 20px;
            animation: fadeInUp 1s ease;
        }
        
        .page-header p {
            font-size: 1.2rem;
            color: var(--gray-color);
            max-width: 700px;
            margin: 0 auto;
            animation: fadeInUp 1.2s ease;
        }
        
        /* 广告横幅 */
        .ad-banner {
            background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
            color: white;
            padding: 30px 0;
            text-align: center;
            margin: 40px 0;
            border-radius: 10px;
            box-shadow: var(--shadow);
            animation: pulse 2s infinite ease-in-out;
        }
        
        .ad-banner h3 {
            font-size: 1.8rem;
            margin-bottom: 15px;
        }
        
        .ad-banner p {
            font-size: 1.2rem;
            margin-bottom: 20px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .ad-banner .btn {
            background: white;
            color: var(--primary-color);
            font-weight: 700;
        }
        
        .ad-banner .btn:hover {
            background: var(--light-color);
            transform: translateY(-3px);
        }
        
        /* 文章内容样式 */
        .article-content {
            padding: 60px 0;
        }
        
        .article-container {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        
        .article-main {
            background: white;
            border-radius: 10px;
            padding: 40px;
            box-shadow: var(--shadow);
        }
        
        .article-meta {
            display: flex;
            justify-content: space-between;
            margin-bottom: 30px;
            color: var(--gray-color);
            font-size: 0.9rem;
            border-bottom: 1px solid #eee;
            padding-bottom: 20px;
        }
        
        .article-meta span {
            display: flex;
            align-items: center;
        }
        
        .article-meta i {
            margin-right: 5px;
        }
        
        .article-body {
            line-height: 1.8;
        }
        
        .article-body h2 {
            font-size: 1.8rem;
            color: var(--primary-color);
            margin: 30px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--accent-color);
        }
        
        .article-body h3 {
            font-size: 1.4rem;
            color: var(--dark-color);
            margin: 25px 0 15px;
        }
        
        .article-body p {
            margin-bottom: 20px;
            color: var(--dark-color);
        }
        
        .article-body ul, .article-body ol {
            margin-bottom: 20px;
            padding-left: 20px;
        }
        
        .article-body li {
            margin-bottom: 10px;
            position: relative;
            padding-left: 20px;
        }
        
        .article-body ul li:before {
            content: '';
            position: absolute;
            left: 0;
            top: 10px;
            width: 8px;
            height: 8px;
            background-color: var(--accent-color);
            border-radius: 50%;
        }
        
        .article-body ol {
            counter-reset: item;
        }
        
        .article-body ol li {
            counter-increment: item;
        }
        
        .article-body ol li:before {
            content: counter(item) ".";
            position: absolute;
            left: 0;
            color: var(--accent-color);
            font-weight: 700;
        }
        
        .article-img {
            width: 100%;
            height: auto;
            border-radius: 10px;
            margin: 30px 0;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }
        
        .article-img:hover {
            transform: scale(1.02);
        }
        
        .highlight-box {
            background: linear-gradient(135deg, rgba(26, 103, 198, 0.05), rgba(52, 199, 179, 0.05));
            border-left: 4px solid var(--accent-color);
            padding: 25px;
            margin: 30px 0;
            border-radius: 0 10px 10px 0;
        }
        
        /* 侧边栏样式 */
        .article-sidebar {
            position: sticky;
            top: 100px;
            align-self: start;
        }
        
        .sidebar-widget {
            background: white;
            border-radius: 10px;
            padding: 25px;
            margin-bottom: 30px;
            box-shadow: var(--shadow);
        }
        
        .sidebar-widget h3 {
            font-size: 1.3rem;
            color: var(--primary-color);
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--accent-color);
        }
        
        .popular-articles li {
            margin-bottom: 15px;
            padding-bottom: 15px;
            border-bottom: 1px solid #eee;
        }
        
        .popular-articles li:last-child {
            margin-bottom: 0;
            padding-bottom: 0;
            border-bottom: none;
        }
        
        .popular-articles a {
            display: flex;
            align-items: center;
            transition: var(--transition);
        }
        
        .popular-articles a:hover {
            color: var(--primary-color);
        }
        
        .popular-articles i {
            margin-right: 10px;
            color: var(--accent-color);
        }
        
        .service-mini-card {
            text-align: center;
            padding: 20px;
            background: var(--light-color);
            border-radius: 10px;
            margin-bottom: 15px;
            transition: var(--transition);
        }
        
        .service-mini-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        
        .service-mini-card h4 {
            font-size: 1.1rem;
            margin: 15px 0 10px;
            color: var(--dark-color);
        }
        
        .service-mini-card .price {
            color: var(--primary-color);
            font-weight: 700;
            font-size: 1.2rem;
            margin: 10px 0;
        }
        
        /* 相关文章部分 */
        .related-articles {
            padding: 60px 0;
            background: var(--light-color);
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }
        
        .section-title h2:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: var(--accent-color);
        }
        
        .section-title p {
            color: var(--gray-color);
            max-width: 700px;
            margin: 0 auto;
        }
        
        .knowledge-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
        }
        
        .knowledge-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            animation: fadeInUp 1s ease;
        }
        
        .knowledge-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .knowledge-img-container {
            height: 200px;
            overflow: hidden;
        }
        
        .knowledge-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }
        
        .knowledge-card:hover .knowledge-img {
            transform: scale(1.05);
        }
        
        .knowledge-content {
            padding: 25px;
        }
        
        .knowledge-content h3 {
            font-size: 1.4rem;
            margin-bottom: 15px;
            color: var(--dark-color);
            line-height: 1.4;
        }
        
        .knowledge-content p {
            color: var(--gray-color);
            margin-bottom: 20px;
            line-height: 1.6;
        }
        
        .knowledge-meta {
            display: flex;
            justify-content: space-between;
            color: var(--gray-color);
            font-size: 0.9rem;
            margin-bottom: 20px;
        }
        
        .knowledge-meta span {
            display: flex;
            align-items: center;
        }
        
        .knowledge-meta i {
            margin-right: 5px;
        }
        
        /* 服务流程部分 */
        .process {
            padding: 80px 0;
        }
        
        .process-steps {
            display: flex;
            justify-content: space-between;
            position: relative;
            margin: 60px 0;
        }
        
        .process-steps:before {
            content: '';
            position: absolute;
            top: 40px;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: var(--accent-color);
            z-index: 1;
        }
        
        .step {
            text-align: center;
            position: relative;
            z-index: 2;
            flex: 1;
            animation: pulse 2s infinite ease-in-out;
        }
        
        .step:nth-child(2) {
            animation-delay: 0.4s;
        }
        
        .step:nth-child(3) {
            animation-delay: 0.8s;
        }
        
        .step:nth-child(4) {
            animation-delay: 1.2s;
        }
        
        .step:nth-child(5) {
            animation-delay: 1.6s;
        }
        
        .step-icon {
            width: 80px;
            height: 80px;
            background-color: white;
            border: 2px solid var(--accent-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: var(--accent-color);
            font-size: 30px;
            position: relative;
            box-shadow: var(--shadow);
        }
        
        .step-number {
            position: absolute;
            top: -10px;
            right: -10px;
            width: 30px;
            height: 30px;
            background-color: var(--primary-color);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
        }
        
        .step h3 {
            font-size: 1.2rem;
            margin-bottom: 10px;
            color: var(--dark-color);
        }
        
        /* 服务展示部分 */
        .services-showcase {
            padding: 80px 0;
            background: var(--light-color);
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .service-card {
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            text-align: center;
            padding: 30px;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .service-icon {
            width: 80px;
            height: 80px;
            background-color: rgba(52, 199, 179, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: var(--accent-color);
            font-size: 30px;
        }
        
        .service-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--dark-color);
        }
        
        .service-card p {
            color: var(--gray-color);
            margin-bottom: 20px;
        }
        
        .price {
            font-size: 1.8rem;
            color: var(--primary-color);
            font-weight: 700;
            margin: 15px 0;
        }
        
      
        
        /* 动画 */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }
        
        @keyframes pulse {
            0% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-10px);
            }
            100% {
                transform: translateY(0);
            }
        }
        
        /* 响应式设计 */
        @media (max-width: 992px) {
            .article-container {
                grid-template-columns: 1fr;
            }
            
            .article-sidebar {
                position: static;
                order: -1;
            }
            
            .process-steps {
                flex-direction: column;
                gap: 40px;
            }
            
            .process-steps:before {
                display: none;
            }
            
            .nav-phone {
                font-size: 16px;
            }
        }
        
        @media (max-width: 768px) {
            .nav-menu {
                position: fixed;
                top: 70px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 70px);
                background-color: white;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                transition: var(--transition);
                gap: 30px;
            }
            
            .nav-menu.active {
                left: 0;
            }
            
            .nav-phone {
                display: none;
            }
            
            .mobile-phone {
                display: block;
                margin-top: 20px;
                color: var(--primary-color);
                font-weight: 700;
                font-size: 18px;
            }
            
            .hamburger {
                display: block;
                font-size: 24px;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .page-header h1 {
                font-size: 2.2rem;
            }
            
            .friend-links ul {
                flex-direction: column;
                gap: 10px;
            }
            
            .knowledge-grid {
                grid-template-columns: 1fr;
            }
            
            .article-main {
                padding: 25px;
            }
        }

        @media (min-width: 769px) {
            .mobile-phone {
                display: none;
            }
        }