/* 全局样式 */
:root {
    --primary-color: #c41e3a; /* 中国红 */
    --secondary-color: #d4b187; /* 古铜色 */
    --text-color: #333;
    --light-bg: #f5f5f5;
    --header-height: 80px;
    --footer-height: 300px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Microsoft YaHei", "SimSun", sans-serif;
    color: var(--text-color);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 头部样式 */
.header {
    background: var(--primary-color);
    height: var(--header-height);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo h1 {
    color: #fff;
    font-size: 2em;
    font-weight: bold;
}

.nav ul {
    display: flex;
    list-style: none;
}

.nav ul li {
    margin-left: 30px;
}

.nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1.1em;
    padding: 10px 0;
    position: relative;
}

.nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #fff;
    transition: width 0.3s ease;
}

.nav ul li a:hover::after,
.nav ul li a.active::after {
    width: 100%;
}

/* 主要内容样式 */
main {
    margin-top: var(--header-height);
    min-height: calc(100vh - var(--header-height) - var(--footer-height));
}

/* 横幅区域 */
.banner {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.banner-text h2 {
    font-size: 3em;
    margin-bottom: 20px;
}

/* 菜系特色 */
.cuisine-features {
    padding: 80px 0;
    background: var(--light-bg);
}

.section-title {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.cuisine-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.cuisine-item {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.cuisine-item:hover {
    transform: translateY(-10px);
}

.cuisine-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 15px;
}

.cuisine-item h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

/* 美食文化 */
.food-culture {
    padding: 80px 0;
}

.culture-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.culture-content img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
}

.culture-text h3 {
    font-size: 2em;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--primary-color);
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 20px;
    transition: background 0.3s ease;
}

.btn:hover {
    background: #a01830;
}

/* 页脚样式 */
.footer {
    background: var(--primary-color);
    color: #fff;
    padding: 60px 0 20px;
    height: var(--footer-height);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo h2 {
    font-size: 2em;
    margin-bottom: 15px;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: #fff;
    text-decoration: none;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* 响应式设计 */
@media (max-width: 768px) {
    .nav {
        display: none; /* 在移动端需要添加汉堡菜单 */
    }
    
    .culture-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
} 

/* 页面标题 */
.page-header {
    background: var(--primary-color);
    color: #fff;
    padding: 100px 0 50px;
    text-align: center;
}

.page-header h1 {
    font-size: 3em;
    margin-bottom: 20px;
}

/* 菜系介绍样式 */
.cuisine-intro {
    padding: 80px 0;
}

.cuisine-section {
    margin-bottom: 80px;
}

.cuisine-section:last-child {
    margin-bottom: 0;
}

.cuisine-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.cuisine-content.reverse {
    direction: rtl;
}

.cuisine-content.reverse > * {
    direction: ltr;
}

.cuisine-text h2 {
    color: var(--primary-color);
    font-size: 2.5em;
    margin-bottom: 20px;
}

.cuisine-text p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.cuisine-text ul {
    list-style: none;
}

.cuisine-text ul li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.cuisine-text ul li::before {
    content: '•';
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

.cuisine-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* 响应式设计补充 */
@media (max-width: 768px) {
    .cuisine-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .cuisine-content.reverse {
        direction: ltr;
    }

    .cuisine-text h2 {
        font-size: 2em;
    }

    .cuisine-image img {
        height: 300px;
    }

    .page-header {
        padding: 80px 0 40px;
    }

    .page-header h1 {
        font-size: 2.5em;
    }
} 

/* 特色美食页面样式 */
.specialties {
    padding: 80px 0;
}

.region-section {
    margin-bottom: 80px;
}

.region-section:last-child {
    margin-bottom: 0;
}

.region-title {
    color: var(--primary-color);
    font-size: 2.5em;
    margin-bottom: 40px;
    text-align: center;
    position: relative;
}

.region-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    margin: 20px auto 0;
}

.food-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.food-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.food-card:hover {
    transform: translateY(-10px);
}

.food-image {
    height: 250px;
    overflow: hidden;
}

.food-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.food-card:hover .food-image img {
    transform: scale(1.1);
}

.food-info {
    padding: 20px;
}

.food-info h3 {
    color: var(--primary-color);
    font-size: 1.5em;
    margin-bottom: 10px;
}

.food-info p {
    color: var(--text-color);
    margin-bottom: 15px;
    line-height: 1.6;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tags span {
    background: var(--light-bg);
    color: var(--primary-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9em;
}

/* 响应式设计补充 */
@media (max-width: 768px) {
    .food-grid {
        grid-template-columns: 1fr;
    }

    .region-title {
        font-size: 2em;
    }

    .food-card {
        max-width: 400px;
        margin: 0 auto;
    }
} 

/* 文化概述样式 */
.culture-overview {
    padding: 80px 0;
    background: var(--light-bg);
}

.overview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.overview-text h2 {
    color: var(--primary-color);
    font-size: 2.5em;
    margin-bottom: 30px;
}

.overview-text p {
    line-height: 1.8;
    font-size: 1.1em;
}

.overview-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* 历史发展时间轴 */
.culture-history {
    padding: 80px 0;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    width: 2px;
    height: 100%;
    background: var(--primary-color);
    left: 50%;
    top: 0;
    transform: translateX(-50%);
}

.timeline-item {
    margin-bottom: 60px;
    position: relative;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.timeline-item:nth-child(even) .timeline-content {
    direction: rtl;
}

.timeline-item:nth-child(even) .timeline-content > * {
    direction: ltr;
}

.timeline-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.timeline-text h3 {
    color: var(--primary-color);
    font-size: 1.8em;
    margin-bottom: 15px;
}

.timeline-text p {
    line-height: 1.6;
}

/* 饮食礼仪 */
.dining-etiquette {
    padding: 80px 0;
    background: var(--light-bg);
}

.etiquette-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.etiquette-item {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.etiquette-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.etiquette-text {
    padding: 20px;
}

.etiquette-text h3 {
    color: var(--primary-color);
    font-size: 1.5em;
    margin-bottom: 15px;
}

.etiquette-text p {
    line-height: 1.6;
}

/* 节日饮食 */
.festival-food {
    padding: 80px 0;
}

.festival-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.festival-item {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.festival-item:hover {
    transform: translateY(-10px);
}

.festival-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.festival-text {
    padding: 20px;
}

.festival-text h3 {
    color: var(--primary-color);
    font-size: 1.5em;
    margin-bottom: 10px;
}

.festival-text p {
    line-height: 1.6;
}

/* 饮食器具 */
.dining-tools {
    padding: 80px 0;
    background: var(--light-bg);
}

.tools-content {
    margin-top: 40px;
}

.tools-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.tools-text h3 {
    color: var(--primary-color);
    font-size: 2em;
    margin-bottom: 20px;
}

.tools-text p {
    line-height: 1.8;
}

.tools-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.tool-item {
    text-align: center;
}

.tool-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.tool-item p {
    color: var(--primary-color);
    font-size: 1.2em;
}

/* 响应式设计补充 */
@media (max-width: 768px) {
    .overview-content,
    .timeline-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .timeline::before {
        left: 0;
    }

    .timeline-item:nth-child(even) .timeline-content {
        direction: ltr;
    }

    .timeline-content {
        padding-left: 30px;
    }

    .tools-text {
        padding: 0 20px;
    }
} 

/* 基础技巧样式 */
.basic-skills {
    padding: 80px 0;
    background: var(--light-bg);
}

.skills-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.skill-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.skill-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.skill-content {
    padding: 30px;
}

.skill-content h3 {
    color: var(--primary-color);
    font-size: 2em;
    margin-bottom: 15px;
}

.skill-content p {
    margin-bottom: 20px;
    line-height: 1.6;
}

.skill-details ul {
    list-style: none;
    margin-bottom: 20px;
}

.skill-details ul li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.skill-details ul li::before {
    content: '•';
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

.video-placeholder {
    position: relative;
    width: 100%;
    height: 200px;
    background: #f5f5f5;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
}

.video-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-button::after {
    content: '';
    border-left: 20px solid var(--primary-color);
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    margin-left: 5px;
}

/* 烹饪方法样式 */
.cooking-methods {
    padding: 80px 0;
}

.methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.method-item {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.method-item:hover {
    transform: translateY(-10px);
}

.method-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.method-content {
    padding: 20px;
    text-align: center;
}

.method-content h3 {
    color: var(--primary-color);
    font-size: 1.8em;
    margin-bottom: 10px;
}

.method-content p {
    margin-bottom: 20px;
    line-height: 1.6;
}

.btn-learn-more {
    display: inline-block;
    padding: 10px 20px;
    background: var(--primary-color);
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.btn-learn-more:hover {
    background: #a01830;
}

/* 进阶技巧样式 */
.advanced-skills {
    padding: 80px 0;
    background: var(--light-bg);
}

.advanced-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.advanced-text h3 {
    color: var(--primary-color);
    font-size: 2em;
    margin-bottom: 20px;
}

.advanced-text p {
    margin-bottom: 20px;
    line-height: 1.6;
}

.tips-list {
    list-style: none;
}

.tips-list li {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
}

.tips-list li::before {
    content: '✓';
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

.advanced-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* 厨房工具样式 */
.kitchen-tools {
    padding: 80px 0;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.tool-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.tool-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.tool-content {
    padding: 20px;
}

.tool-content h3 {
    color: var(--primary-color);
    font-size: 1.5em;
    margin-bottom: 15px;
}

.tool-content p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.tool-content ul {
    list-style: none;
}

.tool-content ul li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.tool-content ul li::before {
    content: '•';
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

/* 响应式设计补充 */
@media (max-width: 768px) {
    .advanced-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .skill-image img {
        height: 200px;
    }

    .method-item {
        max-width: 400px;
        margin: 0 auto;
    }

    .tool-card {
        max-width: 400px;
        margin: 0 auto;
    }
} 

/* 食材百科页面样式 */
.ingredients-nav {
    background: var(--light-bg);
    padding: 20px 0;
    position: sticky;
    top: var(--header-height);
    z-index: 100;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.category-nav {
    display: flex;
    justify-content: center;
    gap: 30px;
    list-style: none;
}

.category-nav a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 1.1em;
    padding: 10px 20px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.category-nav a:hover {
    color: var(--primary-color);
    background: rgba(160, 24, 48, 0.1);
}

.ingredients-section {
    padding: 80px 0;
}

.ingredients-section:nth-child(even) {
    background: var(--light-bg);
}

.ingredients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.ingredient-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.ingredient-card:hover {
    transform: translateY(-10px);
}

.ingredient-image {
    height: 250px;
    overflow: hidden;
}

.ingredient-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.ingredient-card:hover .ingredient-image img {
    transform: scale(1.1);
}

.ingredient-content {
    padding: 20px;
}

.ingredient-content h3 {
    color: var(--primary-color);
    font-size: 1.8em;
    margin-bottom: 10px;
}

.ingredient-content p {
    color: var(--text-color);
    margin-bottom: 20px;
    line-height: 1.6;
}

.ingredient-details h4 {
    color: var(--primary-color);
    font-size: 1.2em;
    margin: 15px 0 10px;
}

.ingredient-details ul {
    list-style: none;
    margin-bottom: 15px;
}

.ingredient-details ul li {
    margin-bottom: 5px;
    padding-left: 20px;
    position: relative;
}

.ingredient-details ul li::before {
    content: '•';
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

.ingredient-details p {
    color: var(--text-color);
    font-style: italic;
    margin-bottom: 10px;
}

/* 响应式设计补充 */
@media (max-width: 768px) {
    .category-nav {
        flex-wrap: wrap;
        gap: 15px;
        padding: 0 20px;
    }

    .category-nav a {
        font-size: 1em;
        padding: 8px 15px;
    }

    .ingredients-grid {
        grid-template-columns: 1fr;
    }

    .ingredient-card {
        max-width: 400px;
        margin: 0 auto;
    }

    .ingredient-image {
        height: 200px;
    }
} 

/* 名店推荐页面样式 */
.city-nav {
    background: var(--light-bg);
    padding: 20px 0;
    position: sticky;
    top: var(--header-height);
    z-index: 100;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.restaurant-section {
    padding: 80px 0;
}

.restaurant-section:nth-child(even) {
    background: var(--light-bg);
}

.restaurant-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.restaurant-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.restaurant-card:hover {
    transform: translateY(-10px);
}

.restaurant-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.restaurant-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.restaurant-card:hover .restaurant-image img {
    transform: scale(1.1);
}

.rating {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.9);
    padding: 8px 15px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.rating .score {
    color: var(--primary-color);
    font-size: 1.2em;
    font-weight: bold;
}

.rating .total {
    color: #666;
    font-size: 0.9em;
}

.restaurant-content {
    padding: 25px;
}

.restaurant-content h3 {
    color: var(--primary-color);
    font-size: 1.8em;
    margin-bottom: 10px;
}

.restaurant-content .description {
    color: var(--text-color);
    margin-bottom: 20px;
    line-height: 1.6;
}

.restaurant-details h4 {
    color: var(--primary-color);
    font-size: 1.2em;
    margin: 20px 0 10px;
}

.restaurant-details ul {
    list-style: none;
    margin-bottom: 15px;
}

.restaurant-details ul li {
    margin-bottom: 5px;
    padding-left: 20px;
    position: relative;
}

.restaurant-details ul li::before {
    content: '•';
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

.restaurant-details p {
    margin-bottom: 8px;
    color: var(--text-color);
}

.restaurant-details .address {
    padding-left: 25px;
    position: relative;
}

.restaurant-details .address::before {
    content: '📍';
    position: absolute;
    left: 0;
}

.restaurant-details .hours {
    padding-left: 25px;
    position: relative;
}

.restaurant-details .hours::before {
    content: '🕒';
    position: absolute;
    left: 0;
}

.restaurant-details .price {
    padding-left: 25px;
    position: relative;
    color: var(--primary-color);
    font-weight: bold;
}

.restaurant-details .price::before {
    content: '💰';
    position: absolute;
    left: 0;
}

.restaurant-details .contact {
    padding-left: 25px;
    position: relative;
}

.restaurant-details .contact::before {
    content: '📞';
    position: absolute;
    left: 0;
}

/* 响应式设计补充 */
@media (max-width: 768px) {
    .restaurant-grid {
        grid-template-columns: 1fr;
    }

    .restaurant-card {
        max-width: 400px;
        margin: 0 auto;
    }

    .restaurant-image {
        height: 200px;
    }

    .restaurant-content h3 {
        font-size: 1.5em;
    }

    .rating {
        top: 10px;
        right: 10px;
        padding: 5px 10px;
    }

    .rating .score {
        font-size: 1em;
    }
} 

/* 美食故事页面样式 */
.stories-section {
    padding: 80px 0;
}

.stories-section:nth-child(even) {
    background: var(--light-bg);
}

.story-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.story-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.story-card:hover {
    transform: translateY(-10px);
}

.story-image {
    height: 250px;
    overflow: hidden;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.story-card:hover .story-image img {
    transform: scale(1.1);
}

.story-content {
    padding: 25px;
}

.story-content h3 {
    color: var(--primary-color);
    font-size: 1.8em;
    margin-bottom: 15px;
}

.story-text {
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 20px;
}

.story-info {
    display: flex;
    gap: 20px;
}

.story-info span {
    background: var(--light-bg);
    color: var(--primary-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9em;
}

/* 响应式设计补充 */
@media (max-width: 768px) {
    .story-grid {
        grid-template-columns: 1fr;
    }

    .story-card {
        max-width: 400px;
        margin: 0 auto;
    }

    .story-image {
        height: 200px;
    }

    .story-content h3 {
        font-size: 1.5em;
    }
} 

/* 健康饮食页面样式 */
.health-section {
    padding: 80px 0;
}

.health-section:nth-child(even) {
    background: var(--light-bg);
}

.health-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.health-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.health-card:hover {
    transform: translateY(-10px);
}

.health-image {
    height: 250px;
    overflow: hidden;
}

.health-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.health-card:hover .health-image img {
    transform: scale(1.1);
}

.health-content {
    padding: 25px;
}

.health-content h3 {
    color: var(--primary-color);
    font-size: 1.8em;
    margin-bottom: 15px;
}

.health-text {
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 20px;
}

.health-tips {
    background: var(--light-bg);
    padding: 20px;
    border-radius: 10px;
}

.health-tips h4 {
    color: var(--primary-color);
    font-size: 1.2em;
    margin-bottom: 15px;
}

.health-tips ul {
    list-style: none;
}

.health-tips ul li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.health-tips ul li::before {
    content: '✓';
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

/* 响应式设计补充 */
@media (max-width: 768px) {
    .health-grid {
        grid-template-columns: 1fr;
    }

    .health-card {
        max-width: 400px;
        margin: 0 auto;
    }

    .health-image {
        height: 200px;
    }

    .health-content h3 {
        font-size: 1.5em;
    }
} 

/* 联系我们页面样式 */
.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 40px;
}

/* 联系信息卡片 */
.info-card {
    display: flex;
    align-items: center;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
}

.info-icon {
    width: 60px;
    height: 60px;
    margin-right: 20px;
}

.info-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.info-content h3 {
    color: var(--primary-color);
    font-size: 1.2em;
    margin-bottom: 5px;
}

.info-content p {
    color: var(--text-color);
    margin-bottom: 5px;
}

/* 联系表单 */
.contact-form {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-color);
    font-weight: bold;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1em;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
}

.btn-submit {
    background: var(--primary-color);
    color: #fff;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1.1em;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-submit:hover {
    background: #a01830;
}

/* 地图区域 */
.map-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.map-container {
    margin-top: 40px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.map-container img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.map-info {
    margin-top: 30px;
    text-align: center;
}

.map-info h3 {
    color: var(--primary-color);
    font-size: 1.5em;
    margin-bottom: 20px;
}

.transport-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.transport-item {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.transport-item h4 {
    color: var(--primary-color);
    font-size: 1.2em;
    margin-bottom: 10px;
}

.transport-item p {
    color: var(--text-color);
    line-height: 1.6;
}

/* 响应式设计补充 */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .transport-info {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .map-container img {
        height: 300px;
    }
} 