/* 养生内容区域样式 */
.health-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.health-content h1 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

/* 季节区域样式 */
.health-section {
    margin-bottom: 3rem;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.health-section h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 2rem;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 0.5rem;
}

/* 季节特定样式 */
.health-section.spring {
    background-color: rgba(144, 238, 144, 0.1);
}

.health-section.summer {
    background-color: rgba(255, 165, 0, 0.1);
}

.health-section.autumn {
    background-color: rgba(205, 133, 63, 0.1);
}

.health-section.winter {
    background-color: rgba(135, 206, 235, 0.1);
}

/* 养生卡片网格布局 */
.health-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

/* 养生卡片样式 */
.health-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.health-card:hover {
    transform: translateY(-5px);
}

/* 养生图片样式 */
.health-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.health-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.season-tag {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

/* 养生信息样式 */
.health-info {
    padding: 1.5rem;
}

.health-info h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

/* 养生详情样式 */
.health-details {
    display: grid;
    gap: 1.5rem;
}

.principles, .methods, .tips {
    background-color: rgba(255, 255, 255, 0.8);
    padding: 1rem;
    border-radius: 5px;
    border-left: 4px solid var(--primary-color);
}

.health-details h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.health-details ul {
    list-style: none;
    padding-left: 0;
}

.health-details li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.health-details li::before {
    content: "•";
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

.method-title {
    font-weight: bold;
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.25rem;
}

/* 响应式设计 */
@media screen and (max-width: 768px) {
    .health-content {
        padding: 1rem;
    }

    .health-section {
        padding: 1rem;
    }

    .health-grid {
        grid-template-columns: 1fr;
    }

    .health-info {
        padding: 1rem;
    }

    .health-content h1 {
        font-size: 2rem;
    }

    .health-section h2 {
        font-size: 1.5rem;
    }
}

@media screen and (max-width: 480px) {
    .health-content h1 {
        font-size: 1.8rem;
    }

    .health-section h2 {
        font-size: 1.3rem;
    }

    .health-info h3 {
        font-size: 1.2rem;
    }

    .health-details h4 {
        font-size: 1.1rem;
    }
} 