/* ====== shuilv.html 独享 CSS - 中国税务指南页面 ====== */

/* ====== Tax Hero Section ====== */
.tax-hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.08) 0%, rgba(0, 160, 233, 0.04) 100%);
    padding-top: 40px;
}

.tax-hero-content {
    max-width: 900px;
    position: relative;
    z-index: 2;
    text-align: center;
    margin: 0 auto;
}

.tax-hero h1 {
    font-size: 4.2rem;
    margin-bottom: 30px;
}

.tax-hero p {
    font-size: 1.4rem;
    margin-bottom: 40px;
    color: var(--gray-color);
}

.tax-hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 50px;
}

.last-update {
    background: rgba(255, 255, 255, 0.8);
    border-radius: var(--border-radius);
    padding: 15px 25px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
    box-shadow: var(--box-shadow);
    border: 1px solid rgba(0, 102, 204, 0.1);
}

.last-update i {
    color: var(--success-color);
    font-size: 1.2rem;
}

.last-update span {
    color: var(--dark-color);
    font-weight: 600;
}

/* ====== Tax Navigation ====== */
.tax-navigation {
    position: sticky;
    top: 124px;
    z-index: 1000;
    background: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 102, 204, 0.1);
    padding: 20px 0;
    transition: var(--transition);
}

.tax-navigation.scrolled {
    top: 80px;
}

.tax-nav-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.tax-nav-link {
    background: rgba(0, 102, 204, 0.05);
    color: var(--dark-color);
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    border: 1px solid rgba(0, 102, 204, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.tax-nav-link:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0%;
    height: 100%;
    background: var(--gradient-primary);
    transition: all 0.5s ease;
    z-index: -1;
}

.tax-nav-link:hover {
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 102, 204, 0.15);
}

.tax-nav-link:hover:before {
    width: 100%;
}

.tax-nav-link.active {
    background: var(--gradient-primary);
    color: white;
    border-color: var(--primary-color);
    box-shadow: 0 10px 25px rgba(0, 102, 204, 0.2);
}

.tax-nav-link.active:before {
    width: 100%;
}

.tax-nav-link i {
    font-size: 1.2rem;
}

/* ====== Tax Sections ====== */
.tax-section {
    padding: 100px 0;
    position: relative;
}

.tax-section:nth-child(even) {
    background: white;
}

.tax-section:nth-child(odd) {
    background: var(--light-bg);
}

.tax-section-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
}

.tax-section-header h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.tax-section-header p {
    font-size: 1.25rem;
    color: var(--gray-color);
}

/* ====== Tax Rate Cards ====== */
.tax-rate-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 35px;
    margin-bottom: 50px;
}

.tax-rate-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    border: 1px solid rgba(0, 102, 204, 0.1);
    position: relative;
    overflow: hidden;
}

.tax-rate-card:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.tax-rate-card:hover:before {
    transform: scaleX(1);
}

.tax-rate-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(0, 102, 204, 0.15);
    border-color: rgba(0, 102, 204, 0.2);
}

.tax-rate-icon {
    width: 80px;
    height: 80px;
    background: rgba(0, 102, 204, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 2rem;
    color: var(--primary-color);
    transition: var(--transition);
    border: 1px solid rgba(0, 102, 204, 0.1);
}

.tax-rate-card:hover .tax-rate-icon {
    background: var(--gradient-primary);
    color: white;
    transform: scale(1.1) rotate(10deg);
}

.tax-rate-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.tax-rate-title {
    font-size: 1.6rem;
    color: var(--dark-color);
    margin-bottom: 0;
}

.tax-rate-percentage {
    font-size: 1.8rem;
    color: var(--secondary-color);
    font-weight: 800;
    background: rgba(0, 160, 233, 0.1);
    padding: 8px 18px;
    border-radius: 50px;
}

.tax-rate-description {
    font-size: 1.05rem;
    color: var(--gray-color);
    margin-bottom: 30px;
    line-height: 1.8;
}

/* ====== Tax Details ====== */
.tax-details-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.tax-detail-card {
    background: rgba(0, 102, 204, 0.03);
    border-radius: var(--border-radius-sm);
    padding: 30px;
    border: 1px solid rgba(0, 102, 204, 0.05);
    transition: var(--transition);
}

.tax-detail-card:hover {
    background: rgba(0, 102, 204, 0.06);
    border-color: rgba(0, 102, 204, 0.1);
}

.tax-detail-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    gap: 15px;
}

.tax-detail-header i {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.tax-detail-header h4 {
    margin-bottom: 0;
    font-size: 1.4rem;
}

.tax-detail-list {
    list-style: none;
}

.tax-detail-list li {
    margin-bottom: 12px;
    padding-right: 25px;
    position: relative;
    color: var(--gray-color);
    line-height: 1.7;
}

.tax-detail-list li:before {
    content: "•";
    position: absolute;
    right: 0;
    color: var(--secondary-color);
    font-size: 1.5rem;
    line-height: 1;
}

/* ====== Detailed Tax Tables ====== */
.detailed-tax-table {
    margin-top: 80px;
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.detailed-tax-table h3 {
    text-align: center;
    padding: 30px;
    background: rgba(0, 102, 204, 0.03);
    margin-bottom: 0;
    border-bottom: 1px solid rgba(0, 102, 204, 0.1);
}

.detailed-tax-table table {
    width: 100%;
    border-collapse: collapse;
}

.detailed-tax-table th {
    background: rgba(0, 102, 204, 0.05);
    color: var(--dark-color);
    padding: 20px;
    text-align: right;
    font-weight: 700;
    border-bottom: 1px solid rgba(0, 102, 204, 0.1);
}

.detailed-tax-table td {
    padding: 18px 20px;
    border-bottom: 1px solid rgba(0, 102, 204, 0.05);
    text-align: right;
    color: var(--gray-color);
}

.detailed-tax-table tr:last-child td {
    border-bottom: none;
}

.detailed-tax-table tr:hover {
    background: rgba(0, 102, 204, 0.02);
}

.tax-rate-highlight {
    font-weight: 800;
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.tax-badge {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-right: 5px;
}

.badge-standard {
    background: rgba(59, 130, 246, 0.1);
    color: var(--info-color);
}

.badge-reduced {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success-color);
}

.badge-exempt {
    background: rgba(245, 158, 11, 0.1);
    color: var(--warning-color);
}

/* ====== Tax Comparison Section ====== */
.tax-comparison {
    position: relative;
    overflow: hidden;
    background: white;
}

.comparison-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.comparison-chart {
    background: white;
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--box-shadow);
    border: 1px solid rgba(0, 102, 204, 0.1);
}

.chart-bar {
    height: 40px;
    background: var(--light-bg);
    border-radius: 20px;
    margin-bottom: 25px;
    overflow: hidden;
    position: relative;
}

.chart-fill {
    height: 100%;
    border-radius: 20px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0 20px;
    color: white;
    font-weight: 600;
    transition: width 1.5s ease;
}

.chart-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-weight: 600;
}

/* ====== Tax Incentives ====== */
.tax-incentives {
    position: relative;
    overflow: hidden;
    background: var(--light-bg);
}

.incentives-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.incentive-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 35px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    border: 1px solid rgba(0, 102, 204, 0.1);
    position: relative;
    overflow: hidden;
}

.incentive-card:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-accent);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.incentive-card:hover:before {
    transform: scaleX(1);
}

.incentive-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 102, 204, 0.15);
    border-color: rgba(0, 102, 204, 0.2);
}

.incentive-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 1.8rem;
    color: var(--accent-color);
    transition: var(--transition);
}

.incentive-card:hover .incentive-icon {
    background: var(--gradient-accent);
    color: white;
    transform: scale(1.1);
}

.incentive-card h4 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

/* ====== Tax FAQ ====== */
.tax-faq {
    position: relative;
    overflow: hidden;
    background: white;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: var(--border-radius);
    margin-bottom: 20px;
    overflow: hidden;
    border: 1px solid rgba(0, 102, 204, 0.1);
    box-shadow: var(--box-shadow);
}

.faq-question {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: rgba(0, 102, 204, 0.02);
    transition: var(--transition);
}

.faq-question:hover {
    background: rgba(0, 102, 204, 0.05);
}

.faq-question h4 {
    margin-bottom: 0;
    font-size: 1.3rem;
    color: var(--dark-color);
}

.faq-icon {
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.5s ease;
}

.faq-answer p {
    margin-bottom: 25px;
    font-size: 1.05rem;
    color: var(--gray-color);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 30px 30px;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

/* ====== Tax CTA ====== */
.tax-cta {
    position: relative;
    overflow: hidden;
    background: var(--gradient-primary);
    color: white;
    text-align: center;
}

.tax-cta h2 {
    color: white;
}

.tax-cta h2:after {
    background: white;
}

.tax-cta p {
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 1.3rem;
}

.tax-cta .btn {
    background: white;
    color: var(--primary-color);
    margin: 0 10px 20px;
}

.tax-cta .btn:hover {
    background: rgba(255, 255, 255, 0.9);
}

.tax-cta .btn-outline {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.tax-cta .btn-outline:hover {
    background: white;
    color: var(--primary-color);
}

/* ====== Responsive Design - shuilv.html 独享部分 ====== */
@media (max-width: 1200px) {
    .tax-hero h1 {
        font-size: 3.5rem;
    }
    
    .comparison-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 992px) {
    .tax-navigation {
        top: 114px;
    }
    
    .tax-navigation.scrolled {
        top: 70px;
    }
    
    .tax-section {
        padding: 70px 0;
    }
}

@media (max-width: 768px) {
    .tax-hero h1 {
        font-size: 2.8rem;
    }
    
    .tax-hero p {
        font-size: 1.2rem;
    }
    
    .tax-rate-cards {
        grid-template-columns: 1fr;
    }
    
    .tax-nav-container {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .tax-nav-link {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    
    .tax-details-container {
        grid-template-columns: 1fr;
    }
    
    .detailed-tax-table {
        overflow-x: auto;
    }
    
    .detailed-tax-table table {
        min-width: 700px;
    }
}