/* 详细计算器样式 */
.calculator-section {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    padding: 2rem;
    margin-bottom: 2rem;
}

.form-label {
    font-weight: 500;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.info-tooltip {
    cursor: help;
    color: #6c757d;
    margin-left: 0.5rem;
}

.result-card {
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.result-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.tax-table {
    font-size: 0.9rem;
}

.tax-table th {
    background-color: #f8f9fa;
    font-weight: 600;
}

.tax-info-box {
    background-color: #f8f9fa;
    border-left: 4px solid #0d6efd;
    padding: 1rem;
    margin: 1rem 0;
}

.tax-info-box h5 {
    color: #0d6efd;
    margin-bottom: 0.5rem;
}

.tax-chart-container {
    position: relative;
    margin: 2rem 0;
    height: 300px;
}

.tax-comparison-table {
    font-size: 0.9rem;
}

.tax-comparison-table th {
    background-color: #f8f9fa;
}

.tax-comparison-table td.highlight {
    background-color: #e3f2fd;
    font-weight: 500;
}

.tax-timeline {
    position: relative;
    padding: 1rem 0;
}

.tax-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: #dee2e6;
    transform: translateX(-50%);
}

.tax-timeline-item {
    position: relative;
    margin-bottom: 2rem;
}

.tax-timeline-item::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    width: 12px;
    height: 12px;
    background-color: #0d6efd;
    border-radius: 50%;
    transform: translateX(-50%);
}

.tax-timeline-content {
    background-color: #fff;
    padding: 1rem;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

@media (max-width: 768px) {
    .tax-timeline::before {
        left: 0;
    }
    
    .tax-timeline-item::before {
        left: 0;
    }
    
    .tax-timeline-content {
        margin-left: 1.5rem;
    }
} 