/* 攻略中心页面特定样式 */
.guide-hero {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4));
    height: 600px;
    position: relative;
}

.guide-hero .hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.search-box {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    width: 80%;
    max-width: 600px;
    background: rgba(255, 255, 255, 0.9);
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.search-box input {
    flex: 1;
    padding: 0.8rem 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

.search-box button {
    padding: 0.8rem 2rem;
    background: #e74c3c;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.search-box button:hover {
    background: #c0392b;
}

/* 季节性旅游指南样式 */
.seasonal-guide {
    padding: 4rem 5%;
    background: #f9f9f9;
}

.season-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.season-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.season-card:hover {
    transform: translateY(-5px);
}

.season-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.season-content {
    padding: 1.5rem;
}

.season-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.season-content p {
    color: #666;
    margin-bottom: 1rem;
}

.season-highlights {
    list-style: none;
    margin-bottom: 1.5rem;
}

.season-highlights li {
    color: #666;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.season-highlights li::before {
    content: "•";
    color: #e74c3c;
    position: absolute;
    left: 0.5rem;
}

/* 旅行贴士样式 */
.travel-tips {
    padding: 4rem 5%;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.tip-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.tip-card:hover {
    transform: translateY(-5px);
}

.tip-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.tip-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: #fff;
}

.tip-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.tip-content p {
    margin-bottom: 1rem;
    opacity: 0.9;
}

/* 专家指南样式 */
.expert-guides {
    padding: 4rem 5%;
    background: #f9f9f9;
}

.guide-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.guide-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.guide-card:hover {
    transform: translateY(-5px);
}

.guide-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.guide-content {
    padding: 1.5rem;
}

.guide-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.guide-content p {
    color: #666;
    margin-bottom: 1rem;
}

/* FAQ样式 */
.faq {
    padding: 4rem 5%;
}

.faq-container {
    max-width: 800px;
    margin: 2rem auto;
}

.faq-item {
    background: #fff;
    border-radius: 8px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #f9f9f9;
}

.faq-question h3 {
    font-size: 1.1rem;
    color: #2c3e50;
    margin: 0;
}

.toggle-icon {
    font-size: 1.5rem;
    color: #e74c3c;
    transition: transform 0.3s ease;
}

.faq-item.active .toggle-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 1.5rem;
    max-height: 500px;
}

.faq-answer p {
    color: #666;
    margin-bottom: 1rem;
}

.faq-answer ul {
    list-style: none;
    padding-left: 1rem;
}

.faq-answer li {
    color: #666;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.faq-answer li::before {
    content: "•";
    color: #e74c3c;
    position: absolute;
    left: 0;
}

/* 按钮样式 */
.btn {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: #e74c3c;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.btn:hover {
    background: #c0392b;
}

/* 动画效果 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.season-card,
.tip-card,
.guide-card,
.faq-item {
    animation: fadeInUp 0.8s ease-out forwards;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .guide-hero .hero-content h1 {
        font-size: 2.5rem;
    }

    .search-box {
        width: 90%;
        flex-direction: column;
    }

    .search-box button {
        width: 100%;
    }

    .season-grid,
    .tips-grid,
    .guide-grid {
        grid-template-columns: 1fr;
    }

    .tip-content,
    .guide-content {
        padding: 1rem;
    }

    .faq-question h3 {
        font-size: 1rem;
    }
} 