
        /* ====== 税率表页面独享CSS部分 ====== */
        
        /* 背景动画元素 */
        .floating-shapes {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            overflow: hidden;
        }

        .floating-shape {
            position: absolute;
            border-radius: 50%;
            background: var(--gradient-secondary);
            opacity: 0.05;
            z-index: -1;
        }

        .shape-1 {
            width: 400px;
            height: 400px;
            top: 10%;
            right: -200px;
            animation: float-1 25s infinite ease-in-out;
        }

        .shape-2 {
            width: 300px;
            height: 300px;
            bottom: 10%;
            left: -150px;
            animation: float-2 30s infinite ease-in-out;
        }

        .shape-3 {
            width: 200px;
            height: 200px;
            top: 50%;
            right: 10%;
            animation: float-3 20s infinite ease-in-out;
        }

        @keyframes float-1 {
            0%, 100% { transform: translate(0, 0) rotate(0deg); }
            33% { transform: translate(30px, 50px) rotate(120deg); }
            66% { transform: translate(-20px, 30px) rotate(240deg); }
        }

        @keyframes float-2 {
            0%, 100% { transform: translate(0, 0) rotate(0deg); }
            33% { transform: translate(-40px, 30px) rotate(120deg); }
            66% { transform: translate(20px, -20px) rotate(240deg); }
        }

        @keyframes float-3 {
            0%, 100% { transform: translate(0, 0) rotate(0deg); }
            33% { transform: translate(20px, -30px) rotate(120deg); }
            66% { transform: translate(-30px, 20px) rotate(240deg); }
        }

        /* 页面顶部横幅 */
        .tax-hero {
            position: relative;
            height: 500px;
            background: linear-gradient(135deg, rgba(0, 102, 204, 0.9) 0%, rgba(0, 160, 233, 0.8) 100%), url('/template/giaxi/images/4.jpg');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            color: white;
            margin-top: 100px;
            overflow: hidden;
        }

        .tax-hero-content {
            max-width: 800px;
            z-index: 2;
        }

        .tax-hero h1 {
            color: white;
            background: none;
            -webkit-background-clip: initial;
            background-clip: initial;
            font-size: 4rem;
            margin-bottom: 20px;
        }

        .tax-hero p {
            font-size: 1.4rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 30px;
        }

        /* 税率导航 */
        .tax-nav {
            background: white;
            box-shadow: 0 10px 30px rgba(0, 102, 204, 0.08);
            position: sticky;
            top: 100px;
            z-index: 9999;
            border-bottom: 1px solid rgba(0, 102, 204, 0.1);
        }

        .tax-nav-container {
            display: flex;
            justify-content: center;
            padding: 20px 0;
            flex-wrap: wrap;
            gap: 15px;
        }

        .tax-nav-item {
            padding: 12px 25px;
            border-radius: 50px;
            background: rgba(0, 102, 204, 0.05);
            color: var(--primary-color);
            font-weight: 600;
            transition: var(--transition);
            border: 1px solid transparent;
            cursor: pointer;
            font-size: 1rem;
        }

        .tax-nav-item:hover, .tax-nav-item.active {
            background: var(--gradient-primary);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0, 102, 204, 0.2);
        }

        /* 税率表部分 */
        .tax-section {
            padding: 80px 0;
            position: relative;
        }

        .tax-section:nth-child(even) {
            background: white;
        }

        .tax-intro {
            max-width: 900px;
            margin: 0 auto 60px;
            text-align: center;
        }

        .tax-intro p {
            font-size: 1.2rem;
        }

        /* 税率卡片 */
        .tax-card {
            background: white;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--box-shadow);
            transition: var(--transition);
            border: 1px solid rgba(0, 102, 204, 0.1);
            margin-bottom: 40px;
        }

        .tax-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 60px rgba(0, 102, 204, 0.12);
            border-color: rgba(0, 102, 204, 0.2);
        }

        .tax-card-header {
            background: var(--gradient-primary);
            color: white;
            padding: 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .tax-card-header h3 {
            color: white;
            margin-bottom: 0;
        }

        .tax-icon {
            font-size: 2.5rem;
            opacity: 0.9;
        }

        .tax-card-body {
            padding: 40px;
        }

        .tax-table {
            width: 100%;
            border-collapse: collapse;
            margin: 30px 0;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }

        .tax-table th {
            background: var(--gradient-primary);
            color: white;
            padding: 20px;
            text-align: left;
            font-weight: 700;
        }

        .tax-table th.english {
            background: var(--gradient-secondary);
        }

        .tax-table td {
            padding: 20px;
            border-bottom: 1px solid rgba(0, 102, 204, 0.1);
        }

        .tax-table tr:nth-child(even) {
            background: rgba(0, 102, 204, 0.02);
        }

        .tax-table tr:hover {
            background: rgba(0, 102, 204, 0.05);
        }

        .tax-rate {
            font-weight: 800;
            color: var(--secondary-color);
            font-size: 1.2rem;
        }

        .tax-note {
            background: rgba(255, 107, 53, 0.05);
            border-left: 4px solid var(--accent-color);
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
        }

        .tax-note-title {
            color: var(--accent-color);
            font-weight: 700;
            margin-bottom: 10px;
            font-size: 1.1rem;
            display: flex;
            align-items: center;
        }

        .tax-note-title i {
            margin-right: 10px;
        }

        /* 税率比较部分 */
        .tax-comparison {
            background: linear-gradient(135deg, #f8fafc 0%, #e6f0ff 100%);
            padding: 100px 0;
        }

        .comparison-chart {
            width: 100%;
            height: 400px;
            margin-top: 50px;
            position: relative;
        }

        .chart-bar {
            display: flex;
            align-items: center;
            margin-bottom: 30px;
        }

        .chart-label {
            width: 200px;
            font-weight: 600;
            color: var(--dark-color);
        }

        .chart-bar-container {
            flex: 1;
            height: 40px;
            background: rgba(0, 102, 204, 0.1);
            border-radius: 20px;
            overflow: hidden;
            position: relative;
        }

        .chart-bar-fill {
            height: 100%;
            border-radius: 20px;
            transition: width 1.5s ease-in-out;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: flex-end;
            padding-right: 15px;
            color: white;
            font-weight: 700;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .chart-bar-fill.vat {
            background: var(--gradient-primary);
        }

        .chart-bar-fill.cit {
            background: var(--gradient-secondary);
        }

        .chart-bar-fill.pit {
            background: var(--gradient-accent);
        }

        .chart-bar-fill.customs {
            background: linear-gradient(135deg, #9c27b0 0%, #673ab7 100%);
        }

        /* 计算器部分 */
        .tax-calculator {
            background: white;
            border-radius: var(--border-radius);
            padding: 50px;
            box-shadow: var(--box-shadow);
            margin-top: 60px;
            border: 1px solid rgba(0, 102, 204, 0.1);
        }

        .calculator-inputs {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            margin-bottom: 40px;
        }

        .input-group {
            display: flex;
            flex-direction: column;
        }

        .input-group label {
            font-weight: 600;
            margin-bottom: 10px;
            color: var(--dark-color);
        }

        .input-group input, .input-group select {
            padding: 15px;
            border-radius: 10px;
            border: 1px solid rgba(0, 102, 204, 0.2);
            font-size: 1rem;
            transition: var(--transition);
        }

        .input-group input:focus, .input-group select:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
        }

        .calculator-results {
            background: rgba(0, 102, 204, 0.03);
            border-radius: var(--border-radius);
            padding: 30px;
            margin-top: 30px;
            border: 1px solid rgba(0, 102, 204, 0.1);
        }

        .result-item {
            display: flex;
            justify-content: space-between;
            padding: 15px 0;
            border-bottom: 1px solid rgba(0, 102, 204, 0.1);
        }

        .result-item:last-child {
            border-bottom: none;
            font-weight: 800;
            font-size: 1.2rem;
            color: var(--primary-color);
        }

        /* 重要提示部分 */
        .tax-important {
            background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 142, 83, 0.05) 100%);
            border-radius: var(--border-radius);
            padding: 50px;
            margin-top: 60px;
            border: 1px solid rgba(255, 107, 53, 0.2);
        }

        .important-list {
            list-style: none;
            margin-top: 30px;
        }

        .important-list li {
            margin-bottom: 20px;
            padding-left: 40px;
            position: relative;
        }

        .important-list li:before {
            content: '⚠️';
            position: absolute;
            left: 0;
            top: 0;
            font-size: 1.2rem;
        }


.cta-email-btn {
    background: rgba(255, 255, 255, 0.2) !important;
    border: 2px solid white !important;
    color: white !important;
}

.cta-email-btn:hover {
    background: rgba(255, 255, 255, 0.3) !important;
    transform: translateY(-5px);
}
        /* 动画效果 */
        @keyframes float {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-20px);
            }
        }

        .float-animation {
            animation: float 5s ease-in-out infinite;
        }

        .animate-on-scroll {
            opacity: 0;
            transform: translateY(50px);
            transition: opacity 1s cubic-bezier(0.19, 1, 0.22, 1), transform 1s cubic-bezier(0.19, 1, 0.22, 1);
        }

        .animate-on-scroll.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* 响应式调整 */
        @media (max-width: 1200px) {
            .tax-table {
                font-size: 0.9rem;
            }
            
            .tax-table th, .tax-table td {
                padding: 15px;
            }
            
            .calculator-inputs {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 992px) {
            .tax-nav-container {
                justify-content: flex-start;
                overflow-x: auto;
                padding-bottom: 10px;
            }
            
            .tax-nav-item {
                white-space: nowrap;
            }
            
            .tax-card-body {
                padding: 30px;
            }
            
            .chart-label {
                width: 150px;
            }
        }

        @media (max-width: 768px) {
            .tax-hero {
                height: 400px;
                margin-top: 80px;
            }
            
            .tax-hero h1 {
                font-size: 2.8rem;
            }
            
            .tax-hero p {
                font-size: 1.2rem;
            }
            
            h2 {
                font-size: 2.2rem;
            }
            
            .tax-card-header {
                flex-direction: column;
                text-align: center;
                gap: 20px;
            }
            
            .tax-table {
                display: block;
                overflow-x: auto;
            }
            
            .tax-calculator {
                padding: 30px;
            }
        }

        @media (max-width: 576px) {
            .tax-table {
                font-size: 0.85rem;
            }
            
            .tax-table th, .tax-table td {
                padding: 10px;
            }
            
            .chart-label {
                width: 120px;
                font-size: 0.9rem;
            }
            
            .tax-important {
                padding: 30px;
            }
        }