.season-section {
    /* max-width: 1200px; */
	width: 60%;
    margin: 3rem auto;
    padding: 0 1rem;
}

/* 选项卡样式 */
.season-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: -1px;
    padding: 0 15px;
}

.season-tab {
    padding: 12px 28px;
    background: rgba(255,255,255,0.4);
    border: 1px solid #8b4513;
    border-radius: 6px 6px 0 0;
    cursor: pointer;
    font-family: 'siyuanhei';
    font-size: 0.95rem;
    color: #5a4a42;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 4px rgba(139,69,19,0.1);
    backdrop-filter: blur(4px);
}

.season-tab.active {
    background: linear-gradient(45deg, 
        rgba(255,255,255,0.9) 0%, 
        rgba(245,235,220,0.9) 100%);
    border-bottom-color: transparent;
    color: #8b4513;
    transform: translateY(2px);
    box-shadow: 0 4px 12px rgba(139,69,19,0.15);
}

/* 内容区域 */
.season-content {
    display: none;
    background: linear-gradient(45deg, 
        rgba(255,255,255,0.95) 0%, 
        rgba(245,235,220,0.95) 100%);
    border: 2px solid #8b4513;
    border-radius: 0 12px 12px 12px;
    padding: 25px;
    box-shadow: 
        0 8px 32px rgba(139,69,19,0.15),
        inset 0 0 40px rgba(139,69,19,0.08);
}

.season-content.active {
    display: grid;
    grid-template-columns: 7fr 3fr; /* 原1.1fr 1fr */
    /* gap: 40px; */
    gap: 30px;
    animation: fadeIn 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* 图表容器 */
.chart-container {
	width: 100%;
	max-width: 100%;
    min-height: 320px;
    background: rgba(255,255,255,0.3);
    border-radius: 8px;
    border: 1px solid rgba(139,69,19,0.2);
    overflow: hidden;
    position: relative;
}

.chart-container::after {
    content: '';
    position: absolute;
    top: -3px;
    right: -3px;
    bottom: -3px;
    left: -3px;
    border: 1px solid rgba(139,69,19,0.1);
    border-radius: 9px;
    pointer-events: none;
}

/* 文字描述 */
.description {
	/* width: calc(100% - 100px); */
    font-family: 'zhengwen';
	justify-content: center;
    color: #5a4a42;
    line-height: 1.8;
    padding-right: 15px;
    height: 100%;
    overflow-y: auto;
}

/* .description h3 {
    font-family: 'Bagnard';
    color: #8b4513;
    font-size: 1.8rem;
    margin: 0 0 1.5rem;
    position: relative;
    padding-left: 30px;
}

.description h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 20px;
    height: 2px;
    background: #8b4513;
    transform: translateY(-50%);
} */

/* 响应式设计 */
@media (max-width: 768px) {
    .season-tabs {
        flex-wrap: wrap;
        gap: 5px;
        padding: 0;
    }
    
    .season-tab {
        flex: 1 1 48%;
        text-align: center;
        padding: 10px 15px;
        border-radius: 6px;
        font-size: 0.9rem;
    }
    
    .season-content.active {
        grid-template-columns: 1fr;
        padding: 20px;
    }
    
    .chart-container {
        min-height: 250px;
        order: -1;
    }
    
    .season-desc {
        max-height: none;
        padding-right: 0;
    }
    
    .season-desc h3 {
        font-size: 1.5rem;
        padding-left: 25px;
    }
}

@media (max-width: 480px) {
    .season-section {
		width: 90%;
        margin: 2rem auto;
    }
    
    .season-tab {
        flex: 1 1 100%;
        margin-bottom: 5px;
    }
}
