   
        /* 涉税疑难问题解决服务页面独享CSS部分 */
        
        /* 页面横幅 */
        .page-banner {
            margin-top: 80px;
            padding: 120px 0;
            background: linear-gradient(135deg, rgba(26, 60, 110, 0.9), rgba(26, 60, 110, 0.7)), url('/template/jia/images/12.jpg');
            background-size: cover;
            background-position: center;
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .page-banner::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(248, 181, 0, 0.1)"/></svg>');
            background-size: cover;
        }
        
        .banner-content {
            position: relative;
            z-index: 1;
            max-width: 800px;
            margin: 0 auto;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s ease forwards;
        }
        
        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .banner-content h1 {
            font-size: 48px;
            margin-bottom: 20px;
            background: linear-gradient(45deg, #fff, var(--secondary-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        
        .banner-content p {
            font-size: 20px;
            margin-bottom: 40px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .btn {
            display: inline-block;
            padding: 15px 35px;
            background: linear-gradient(135deg, var(--secondary-color), #ffa500);
            color: white;
            border-radius: 30px;
            text-decoration: none;
            font-weight: bold;
            transition: var(--transition);
            border: none;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(248, 181, 0, 0.4);
            font-size: 18px;
            letter-spacing: 1px;
        }
        
        .btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(248, 181, 0, 0.6);
            color: white;
        }
        
        .btn::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: rgba(255,255,255,0.2);
            transform: rotate(45deg);
            transition: var(--transition);
        }
        
        .btn:hover::after {
            left: 100%;
        }
        
        .btn-pulse {
            animation: btnPulse 2s infinite;
        }
        
        @keyframes btnPulse {
            0% { box-shadow: 0 0 0 0 rgba(248, 181, 0, 0.6); }
            70% { box-shadow: 0 0 0 15px rgba(248, 181, 0, 0); }
            100% { box-shadow: 0 0 0 0 rgba(248, 181, 0, 0); }
        }
        
        /* 服务内容板块 */
        .services-section {
            padding: 100px 0;
            background-color: var(--light-color);
            position: relative;
        }
        
        .services-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(26, 60, 110, 0.03)"/></svg>');
            background-size: cover;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 70px;
            position: relative;
        }
        
        .section-title h2 {
            font-size: 42px;
            color: var(--primary-color);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            left: 50%;
            bottom: -10px;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
            border-radius: 2px;
        }
        
        .section-title p {
            color: var(--text-light);
            max-width: 600px;
            margin: 0 auto;
            font-size: 18px;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            position: relative;
            z-index: 1;
        }
        
        .service-card {
            background: linear-gradient(135deg, #fff, #f9fbfd);
            border-radius: 15px;
            padding: 40px 30px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            transition: var(--transition);
            opacity: 0;
            transform: translateY(30px);
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(255,255,255,0.5);
        }
        
        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
            transform: scaleX(0);
            transition: var(--transition);
        }
        
        .service-card:hover::before {
            transform: scaleX(1);
        }
        
        .service-card.animate {
            opacity: 1;
            transform: translateY(0);
        }
        
        .service-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }
        
        .service-icon {
            width: 90px;
            height: 90px;
            background: linear-gradient(135deg, rgba(26, 60, 110, 0.1), rgba(248, 181, 0, 0.1));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            transition: var(--transition);
            position: relative;
        }
        
        .service-card:hover .service-icon {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            transform: rotateY(180deg) scale(1.1);
        }
        
        .service-icon i {
            font-size: 36px;
            color: var(--primary-color);
            transition: var(--transition);
        }
        
        .service-card:hover .service-icon i {
            color: white;
            transform: rotateY(-180deg);
        }
        
        .service-card h3 {
            font-size: 22px;
            margin-bottom: 15px;
            color: var(--dark-color);
        }
        
        .service-features {
            list-style: none;
            text-align: left;
            margin-top: 20px;
            margin-bottom: 25px;
        }
        
        .service-features li {
            margin-bottom: 10px;
            position: relative;
            padding-left: 25px;
        }
        
        .service-features li::before {
            content: '\f00c';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            left: 0;
            color: var(--secondary-color);
        }
        
        /* 服务所需材料板块 */
        .materials-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #f9fbfd, #fff);
            position: relative;
        }
        
        .materials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .material-item {
            background: linear-gradient(135deg, #fff, #f9fbfd);
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            transition: var(--transition);
            opacity: 0;
            transform: translateY(30px);
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(255,255,255,0.5);
        }
        
        .material-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
            transform: scaleX(0);
            transition: var(--transition);
        }
        
        .material-item:hover::before {
            transform: scaleX(1);
        }
        
        .material-item.animate {
            opacity: 1;
            transform: translateY(0);
        }
        
        .material-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }
        
        .material-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--secondary-color), #ffa500);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            transition: var(--transition);
        }
        
        .material-item:hover .material-icon {
            transform: scale(1.1) rotate(15deg);
        }
        
        .material-icon i {
            font-size: 28px;
            color: white;
        }
        
        .material-item h3 {
            font-size: 20px;
            margin-bottom: 15px;
            color: var(--primary-color);
        }
        
        .material-list {
            list-style: none;
        }
        
        .material-list li {
            margin-bottom: 10px;
            position: relative;
            padding-left: 25px;
        }
        
        .material-list li::before {
            content: '\f0a4';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            left: 0;
            color: var(--secondary-color);
        }
        
        /* 服务流程板块 */
        .process-section {
            padding: 100px 0;
            background-color: var(--light-color);
            position: relative;
        }
        
        .process-steps {
            display: flex;
            justify-content: space-between;
            position: relative;
            margin-top: 60px;
        }
        
        .process-steps::before {
            content: '';
            position: absolute;
            top: 40px;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
            z-index: 1;
            border-radius: 2px;
        }
        
        .process-step {
            text-align: center;
            position: relative;
            z-index: 2;
            opacity: 0;
            transform: translateY(30px);
            flex: 1;
        }
        
        .process-step.animate {
            opacity: 1;
            transform: translateY(0);
        }
        
        .step-icon {
            width: 90px;
            height: 90px;
            background: linear-gradient(135deg, #fff, #f9fbfd);
            border: 3px solid var(--primary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            position: relative;
            transition: var(--transition);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        
        .process-step:hover .step-icon {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            transform: scale(1.15);
            border-color: transparent;
        }
        
        .step-icon i {
            font-size: 34px;
            color: var(--primary-color);
            transition: var(--transition);
        }
        
        .process-step:hover .step-icon i {
            color: white;
        }
        
        .step-number {
            position: absolute;
            top: -10px;
            right: -10px;
            width: 35px;
            height: 35px;
            background: linear-gradient(135deg, var(--secondary-color), #ffa500);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 16px;
            box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        }
        
        .step-content h3 {
            font-size: 20px;
            margin-bottom: 10px;
            color: var(--dark-color);
        }
        
        .step-content p {
            color: var(--text-light);
        }
        
        /* 服务周期与费用板块 */
        .pricing-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #f9fbfd, #fff);
            position: relative;
        }
        
        .pricing-container {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            justify-content: center;
        }
        
        .pricing-card {
            background: linear-gradient(135deg, #fff, #f9fbfd);
            border-radius: 15px;
            padding: 40px 30px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            transition: var(--transition);
            opacity: 0;
            transform: translateY(30px);
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(255,255,255,0.5);
            flex: 1;
            min-width: 300px;
            max-width: 500px;
        }
        
        .pricing-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
            transform: scaleX(0);
            transition: var(--transition);
        }
        
        .pricing-card:hover::before {
            transform: scaleX(1);
        }
        
        .pricing-card.animate {
            opacity: 1;
            transform: translateY(0);
        }
        
        .pricing-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }
        
        .pricing-header {
            text-align: center;
            margin-bottom: 30px;
            position: relative;
        }
        
        .pricing-header h3 {
            font-size: 24px;
            color: var(--primary-color);
            margin-bottom: 10px;
        }
        
        .pricing-price {
            font-size: 42px;
            font-weight: bold;
            color: var(--secondary-color);
            margin-bottom: 10px;
        }
        
        .pricing-period {
            color: var(--text-light);
            font-size: 16px;
        }
        
        .pricing-features {

            list-style: none;
            margin-bottom: 30px;
        }
        
        .pricing-features li {
            margin-bottom: 15px;
            position: relative;
            padding-left: 30px;
        }
        
        .pricing-features li::before {
            content: '\f00c';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            left: 0;
            color: var(--secondary-color);
        }
        
        .pricing-card.highlighted {
            transform: scale(1.05);
            border: 2px solid var(--secondary-color);
        }
        
        .pricing-card.highlighted:hover {
            transform: scale(1.05) translateY(-15px);
        }
        
        /* 知识库板块 */
        .knowledge-section {
            padding: 100px 0;
            background-color: var(--light-color);
            position: relative;
        }
        
        .knowledge-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
        }
        
        .knowledge-card {
            background: linear-gradient(135deg, #fff, #f9fbfd);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            transition: var(--transition);
            opacity: 0;
            transform: translateY(30px);
            position: relative;
            border: 1px solid rgba(255,255,255,0.5);
        }
        
        .knowledge-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
            transform: scaleX(0);
            transition: var(--transition);
        }
        
        .knowledge-card:hover::before {
            transform: scaleX(1);
        }
        
        .knowledge-card.animate {
            opacity: 1;
            transform: translateY(0);
        }
        
        .knowledge-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.15);
        }
        
        .knowledge-thumbnail {
            height: 200px;
            overflow: hidden;
            position: relative;
        }
        
        .knowledge-thumbnail img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }
        
        .knowledge-card:hover .knowledge-thumbnail img {
            transform: scale(1.05);
        }
        
        .knowledge-content {
            padding: 25px;
        }
        
        .knowledge-tag {
            display: inline-block;
            padding: 5px 12px;
            background: rgba(248, 181, 0, 0.1);
            color: var(--secondary-color);
            border-radius: 20px;
            font-size: 12px;
            font-weight: bold;
            margin-bottom: 15px;
        }
        
        .knowledge-card h3 {
            font-size: 20px;
            margin-bottom: 15px;
            color: var(--dark-color);
            line-height: 1.4;
        }
        
        .knowledge-card p {
            color: var(--text-light);
            margin-bottom: 20px;
            line-height: 1.6;
        }
        
        .knowledge-meta {
            display: flex;
            justify-content: space-between;
            color: var(--text-light);
            font-size: 14px;
            margin-bottom: 20px;
        }
        
        .read-more {
            display: inline-block;
            color: var(--primary-color);
            font-weight: 600;
            text-decoration: none;
            transition: var(--transition);
            position: relative;
        }
        
        .read-more::after {
            content: '→';
            margin-left: 5px;
            transition: var(--transition);
        }
        
        .read-more:hover {
            color: var(--secondary-color);
        }
        
        .read-more:hover::after {
            margin-left: 10px;
        }
        
        /* 响应式设计 */
        @media (max-width: 1200px) {
            .banner-content h1 {
                font-size: 42px;
            }
        }
        
        @media (max-width: 992px) {
            .footer-container {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .process-steps {
                flex-wrap: wrap;
                justify-content: center;
            }
            
            .process-step {
                width: 50%;
                margin-bottom: 40px;
            }
            
            .process-steps::before {
                display: none;
            }
            
            .services-grid, .knowledge-grid {
                grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            }
            
            .pricing-card.highlighted {
                transform: scale(1);
            }
            
            .pricing-card.highlighted:hover {
                transform: translateY(-15px);
            }
        }
        
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                padding: 15px 0;
            }
            
            .logo {
                margin-bottom: 15px;
            }
            
            nav ul {
                flex-wrap: wrap;
                justify-content: center;
            }
            
            nav li {
                margin: 0 10px 10px;
            }
            
            .phone-number {
                margin-top: 10px;
            }
            
            .banner-content h1 {
                font-size: 36px;
            }
            
            .services-grid, .materials-grid, .knowledge-grid {
                grid-template-columns: 1fr;
            }
            
            .process-step {
                width: 100%;
            }
            
            .section-title h2 {
                font-size: 36px;
            }
            
            .pricing-container {
                flex-direction: column;
                align-items: center;
            }
            
            .pricing-card {
                min-width: 100%;
            }
        }
        
        @media (max-width: 576px) {
            .mobile-menu-btn {
                display: block;
                position: absolute;
                top: 20px;
                right: 20px;
            }
            
            nav {
                display: none;
                width: 100%;
                margin-top: 15px;
            }
            
            nav.active {
                display: block;
            }
            
            nav ul {
                flex-direction: column;
            }
            
            nav li {
                margin: 0 0 10px;
                text-align: center;
            }
            
            .footer-container {
                grid-template-columns: 1fr;
            }
            
            .banner-content h1 {
                font-size: 30px;
            }
            
            .section-title h2 {
                font-size: 30px;
            }
            
            .services-grid, .knowledge-grid {
                grid-template-columns: 1fr;
            }
        }