    /* 独享CSS - 代理记账页面主体内容 */
        
        /* 页面顶部横幅 */
        .page-banner {
            background: linear-gradient(rgba(26, 58, 95, 0.85), rgba(26, 58, 95, 0.85)), url('/template/jia/images/2.jpg');
            background-size: cover;
            background-position: center;
            color: white;
            text-align: center;
            padding: 150px 20px 80px;
            margin-top: 70px;
        }
        
        .page-banner h1 {
            font-size: 48px;
            margin-bottom: 20px;
            animation: fadeInUp 1s ease;
        }
        
        .page-banner p {
            font-size: 20px;
            max-width: 800px;
            margin: 0 auto;
            animation: fadeInUp 1s ease 0.3s both;
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* 服务类型展示区 */
        .services-section {
            padding: 80px 0;
            background-color: var(--light-color);
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .section-title h2 {
            font-size: 36px;
            color: var(--primary-color);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }
        
        .section-title h2:after {
            content: '';
            position: absolute;
            width: 70px;
            height: 3px;
            background-color: var(--accent-color);
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .section-title p {
            color: var(--text-color);
            max-width: 700px;
            margin: 0 auto;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }
        
        .service-card {
            background-color: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
            text-align: center;
            padding: 30px 20px;
            position: relative;
            animation: float 6s ease-in-out infinite;
            animation-delay: calc(var(--delay) * 0.2s);
        }
        
        .service-card:nth-child(1) { --delay: 1; }
        .service-card:nth-child(2) { --delay: 2; }
        .service-card:nth-child(3) { --delay: 3; }
        .service-card:nth-child(4) { --delay: 4; }
        .service-card:nth-child(5) { --delay: 5; }
        .service-card:nth-child(6) { --delay: 6; }
        .service-card:nth-child(7) { --delay: 7; }
        .service-card:nth-child(8) { --delay: 8; }
        .service-card:nth-child(9) { --delay: 9; }
        
        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
            100% { transform: translateY(0px); }
        }
        
        .service-card:hover {
            transform: translateY(-10px) scale(1.03);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .service-icon {
            width: 80px;
            height: 80px;
            background-color: rgba(255, 107, 53, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: var(--accent-color);
            font-size: 32px;
            transition: var(--transition);
        }
        
        .service-card:hover .service-icon {
            background-color: var(--accent-color);
            color: white;
            animation: pulse 1.5s infinite;
        }
        
        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.7); }
            70% { box-shadow: 0 0 0 15px rgba(255, 107, 53, 0); }
            100% { box-shadow: 0 0 0 0 rgba(255, 107, 53, 0); }
        }
        
        .service-card h3 {
            font-size: 22px;
            margin-bottom: 15px;
            color: var(--primary-color);
        }
        
        .price-tag {
            display: inline-block;
            background: linear-gradient(45deg, #ff6b35, #ff8e53);
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-weight: 700;
            font-size: 18px;
            margin-top: 10px;
            animation: priceGlow 3s infinite;
        }
        
        @keyframes priceGlow {
            0% { box-shadow: 0 0 5px rgba(255, 107, 53, 0.5); }
            50% { box-shadow: 0 0 20px rgba(255, 107, 53, 0.8); }
            100% { box-shadow: 0 0 5px rgba(255, 107, 53, 0.5); }
        }
        
        /* 服务详情区域 */
        .service-details {
            padding: 80px 0;
        }
        
        .service-tabs {
            display: flex;
            flex-wrap: wrap;
            margin-bottom: 30px;
            border-bottom: 1px solid #e0e0e0;
        }
        
        .service-tab {
            padding: 15px 25px;
            background: none;
            border: none;
            font-size: 18px;
            font-weight: 600;
            color: var(--text-color);
            cursor: pointer;
            transition: var(--transition);
            position: relative;
        }
        
        .service-tab:after {
            content: '';
            position: absolute;
            bottom: -1px;
            left: 0;
            width: 0;
            height: 3px;
            background-color: var(--accent-color);
            transition: var(--transition);
        }
        
        .service-tab.active {
            color: var(--accent-color);
        }
        
        .service-tab.active:after {
            width: 100%;
        }
        
        .service-tab:hover {
            color: var(--accent-color);
        }
        
        .service-content {
            display: none;
            animation: fadeIn 0.5s ease;
        }
        
        .service-content.active {
            display: block;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        .service-info {
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            padding: 30px;
            margin-bottom: 30px;
        }
        
        .service-info h3 {
            font-size: 24px;
            color: var(--primary-color);
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 1px solid #e0e0e0;
        }
        
        .info-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }
        
        .info-card {
            background-color: var(--light-color);
            border-radius: 8px;
            padding: 25px;
            transition: var(--transition);
        }
        
        .info-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        
        .info-card h4 {
            font-size: 18px;
            color: var(--primary-color);
            margin-bottom: 15px;
            display: flex;
            align-items: center;
        }
        
        .info-card h4 i {
            margin-right: 10px;
            color: var(--accent-color);
        }
        
        .info-card ul {
            list-style: none;
            padding-left: 0;
        }
        
        .info-card li {
            margin-bottom: 10px;
            padding-left: 20px;
            position: relative;
        }
        
        .info-card li:before {
            content: '•';
            color: var(--accent-color);
            position: absolute;
            left: 0;
        }
        
        .process-timeline {
            position: relative;
            padding-left: 30px;
            margin-top: 20px;
        }
        
        .process-timeline:before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 2px;
            background-color: var(--accent-color);
        }
        
        .process-step {
            position: relative;
            margin-bottom: 30px;
        }
        
        .process-step:last-child {
            margin-bottom: 0;
        }
        
        .process-step:before {
            content: '';
            position: absolute;
            left: -36px;
            top: 5px;
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: var(--accent-color);
        }
        
        .process-step h5 {
            font-size: 16px;
            color: var(--primary-color);
            margin-bottom: 5px;
        }
        
        .process-step p {
            font-size: 14px;
            color: var(--text-color);
        }
        
        .period-info {
            background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
            color: white;
            border-radius: 8px;
            padding: 25px;
            text-align: center;
            margin-top: 20px;
        }
        
        .period-info h4 {
            font-size: 20px;
            margin-bottom: 10px;
            color: white;
        }
        
        .period-info p {
            font-size: 18px;
            font-weight: 700;
        }
        
        /* 响应式调整 */
        @media (max-width: 992px) {
            .services-grid, .info-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 768px) {
            .page-banner h1 {
                font-size: 36px;
            }
            
            .page-banner p {
                font-size: 18px;
            }
            
            .services-grid, .info-grid {
                grid-template-columns: 1fr;
            }
            
            .service-tabs {
                flex-direction: column;
            }
            
            .service-tab {
                width: 100%;
                text-align: center;
            }
        }
        
        @media (max-width: 576px) {
            .page-banner {
                padding: 120px 20px 60px;
            }
            
            .page-banner h1 {
                font-size: 28px;
            }
            
            .page-banner p {
                font-size: 16px;
            }
        }