       /* ========== 独享CSS部分 - 税率表页面 ========== */
        
        /* 税率表页面英雄区域 */
        .tax-hero-section {
            position: relative;
            padding: 120px 0 80px;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            overflow: hidden;
        }
        
        .tax-hero-section:before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 40%;
            height: 100%;
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            opacity: 0.05;
            clip-path: polygon(100% 0, 0% 100%, 100% 100%);
        }
        
        .tax-hero-content {
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }
        
        .tax-hero-content h1 {
            font-size: 3rem;
            color: var(--dark);
            margin-bottom: 20px;
            line-height: 1.2;
        }
        
        .tax-hero-content h1 span {
            color: var(--primary);
        }
        
        .tax-hero-content p {
            font-size: 1.2rem;
            color: var(--gray);
            margin-bottom: 30px;
        }
        
        /* 几何图形背景动画 */
        .tax-hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
            overflow: hidden;
        }
        
        .tax-hero-item {
            position: absolute;
            border-radius: 50%;
            opacity: 0.1;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
        }
        
        .tax-hero-item:nth-child(1) {
            width: 100px;
            height: 100px;
            top: 10%;
            left: 10%;
            animation: floatGeometric 20s infinite linear;
        }
        
        .tax-hero-item:nth-child(2) {
            width: 150px;
            height: 150px;
            bottom: 15%;
            right: 15%;
            animation: floatGeometric 25s infinite linear reverse;
        }
        
        .tax-hero-item:nth-child(3) {
            width: 80px;
            height: 80px;
            top: 60%;
            left: 20%;
            animation: floatGeometric 18s infinite linear;
        }
        
        @keyframes floatGeometric {
            0% {
                transform: translate(0, 0) rotate(0deg);
            }
            25% {
                transform: translate(30px, 30px) rotate(90deg);
            }
            50% {
                transform: translate(0, 60px) rotate(180deg);
            }
            75% {
                transform: translate(-30px, 30px) rotate(270deg);
            }
            100% {
                transform: translate(0, 0) rotate(360deg);
            }
        }
        
        /* 税率选项卡 */
        .tax-tabs-container {
            max-width: 1000px;
            margin: 0 auto 60px;
            background-color: white;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            overflow: hidden;
        }
        
        .tax-tabs {
            display: flex;
            flex-wrap: wrap;
            background-color: var(--dark);
        }
        
        .tax-tab {
            flex: 1;
            min-width: 150px;
            text-align: center;
            padding: 20px 15px;
            color: rgba(255, 255, 255, 0.8);
            cursor: pointer;
            transition: var(--transition);
            font-weight: 600;
            font-size: 0.95rem;
            position: relative;
        }
        
        .tax-tab:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }
        
        .tax-tab.active {
            color: white;
            background-color: var(--primary);
        }
        
        .tax-tab.active:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background-color: var(--accent);
        }
        
        .tax-tab-icon {
            display: block;
            font-size: 1.8rem;
            margin-bottom: 10px;
        }
        
        /* 税率表内容区域 */
        .tax-content {
            display: none;
            padding: 40px;
            animation: fadeIn 0.5s ease;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        .tax-content.active {
            display: block;
        }
        
        .tax-content-header {
            text-align: center;
            margin-bottom: 40px;
        }
        
        .tax-content-header h2 {
            color: var(--dark);
            font-size: 2.2rem;
            margin-bottom: 15px;
        }
        
        .tax-content-header p {
            color: var(--gray);
            max-width: 700px;
            margin: 0 auto;
        }
        
        /* 税率表格 */
        .tax-table-container {
            overflow-x: auto;
            margin-bottom: 40px;
            border-radius: var(--border-radius);
            border: 1px solid var(--light-gray);
        }
        
        .tax-table {
            width: 100%;
            border-collapse: collapse;
            min-width: 800px;
        }
        
        .tax-table th {
            background-color: var(--primary);
            color: white;
            font-weight: 600;
            text-align: left;
            padding: 18px 20px;
            font-size: 1rem;
            border-right: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .tax-table th:last-child {
            border-right: none;
        }
        
        .tax-table td {
            padding: 16px 20px;
            border-bottom: 1px solid var(--light-gray);
            color: var(--dark);
            font-size: 0.95rem;
        }
        
        .tax-table tr:last-child td {
            border-bottom: none;
        }
        
        .tax-table tr:nth-child(even) {
            background-color: rgba(0, 102, 204, 0.02);
        }
        
        .tax-table tr:hover {
            background-color: rgba(0, 102, 204, 0.05);
            transition: var(--transition);
        }
        
        .tax-rate {
            display: inline-block;
            background-color: rgba(255, 107, 53, 0.1);
            color: var(--accent);
            padding: 5px 12px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 0.9rem;
        }
        
        /* 税率卡片 */
        .tax-cards {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
        }
        
        .tax-card {
            background-color: white;
            border-radius: var(--border-radius);
            padding: 30px;
            box-shadow: var(--shadow);
            border: 1px solid var(--light-gray);
            transition: var(--transition);
        }
        
        .tax-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            border-color: var(--primary);
        }
        
        .tax-card-header {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }
        
        .tax-card-icon {
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white;
            font-size: 1.5rem;
            border-radius: 10px;
            margin-right: 20px;
        }
        
        .tax-card-header h3 {
            color: var(--dark);
            font-size: 1.3rem;
            margin-bottom: 0;
        }
        
        .tax-card-content p {
            color: var(--gray);
            margin-bottom: 15px;
            font-size: 0.95rem;
        }
        
        /* 税务提醒 */
        .tax-reminder {
            background-color: rgba(0, 102, 204, 0.05);
            border-left: 4px solid var(--primary);
            padding: 25px;
            border-radius: var(--border-radius);
            margin: 40px 0;
        }
        
        .tax-reminder h3 {
            color: var(--dark);
            margin-bottom: 10px;
            display: flex;
            align-items: center;
        }
        
        .tax-reminder h3 i {
            color: var(--accent);
            margin-right: 10px;
        }
        
        .tax-reminder p {
            color: var(--gray);
            margin-bottom: 10px;
        }
        
        .tax-reminder ul {
            margin-left: 20px;
            margin-top: 10px;
        }
        
        .tax-reminder li {
            color: var(--gray);
            margin-bottom: 8px;
            position: relative;
            padding-left: 20px;
        }
        
        .tax-reminder li:before {
            content: '•';
            color: var(--accent);
            font-size: 1.2rem;
            position: absolute;
            left: 0;
            top: -2px;
        }
        
        /* 税种比较表 */
        .tax-comparison {
            margin: 60px 0;
        }
        
        .tax-comparison h2 {
            text-align: center;
            color: var(--dark);
            margin-bottom: 40px;
            font-size: 2.2rem;
        }
        
        .comparison-table-container {
            overflow-x: auto;
            border-radius: var(--border-radius);
            border: 1px solid var(--light-gray);
        }
        
        .comparison-table {
            width: 100%;
            border-collapse: collapse;
            min-width: 900px;
        }
        
        .comparison-table th {
            background-color: var(--dark);
            color: white;
            font-weight: 600;
            text-align: center;
            padding: 20px;
            font-size: 1rem;
        }
        
        .comparison-table td {
            padding: 18px 20px;
            border: 1px solid var(--light-gray);
            color: var(--dark);
            text-align: center;
            font-size: 0.95rem;
        }
        
        .comparison-table tr:nth-child(even) {
            background-color: rgba(0, 102, 204, 0.02);
        }
        
        .comparison-table .highlight {
            background-color: rgba(255, 107, 53, 0.1);
            font-weight: 600;
        }
        
        /* 税务咨询部分 */
        .tax-consultation {
            background-color: var(--dark);
            color: white;
            padding: 80px 0;
            text-align: center;
            border-radius: var(--border-radius);
            margin: 60px 0;
            position: relative;
            overflow: hidden;
        }
        
        .tax-consultation:before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 40%;
            height: 100%;
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            opacity: 0.2;
            clip-path: polygon(100% 0, 0% 100%, 100% 100%);
        }
        
        .tax-consultation h2 {
            color: white;
            font-size: 2.5rem;
            margin-bottom: 20px;
        }
        
        .tax-consultation p {
            color: rgba(255, 255, 255, 0.8);
            max-width: 700px;
            margin: 0 auto 30px;
            font-size: 1.1rem;
        }
        
        /* ========== 响应式设计 ========== */
        @media (max-width: 992px) {
            .tax-hero-content h1 {
                font-size: 2.5rem;
            }
            
            .section-title h2 {
                font-size: 2.2rem;
            }
            
            .tax-tabs {
                flex-direction: column;
            }
            
            .tax-tab {
                min-width: 100%;
            }
        }
        
        @media (max-width: 768px) {
            .mobile-toggle {
                display: block;
            }
            
            .nav-menu {
                position: fixed;
                top: 90px;
                left: 0;
                width: 100%;
                background-color: white;
                flex-direction: column;
                padding: 20px;
                box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
                transform: translateY(-100%);
                opacity: 0;
                transition: var(--transition);
                z-index: 999;
            }
            
            .nav-menu.active {
                transform: translateY(0);
                opacity: 1;
            }
            
            .nav-menu li {
                margin: 0 0 15px 0;
            }
            
            /* 移动端调整电话链接 */
            .nav-menu li:last-child {
                margin-top: 10px;
            }
            
            .section-padding {
                padding: 60px 0;
            }
            
            .section-title h2 {
                font-size: 1.8rem;
            }
            
            .tax-hero-section {
                padding: 80px 0 60px;
            }
            
            .tax-hero-content h1 {
                font-size: 2rem;
            }
            
            .tax-content {
                padding: 30px 20px;
            }
            
            .tax-content-header h2 {
                font-size: 1.8rem;
            }
            
            .tax-consultation h2 {
                font-size: 2rem;
            }
            
            .tax-cards {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 576px) {
            .tax-hero-content h1 {
                font-size: 1.8rem;
            }
            
            .tax-table th, .tax-table td {
                padding: 12px 15px;
            }
            
            .tax-card {
                padding: 20px;
            }
            
            /* 移动端调整电话链接 */
            .phone-link {
                min-width: 160px;
                padding: 10px 20px;
                font-size: 0.95rem;
            }
        }