/* 内容区域布局 */
.content {
    width: 1080px;
    margin: 0 auto;
    padding: 40px 0;
}

/* Banner图片样式 */
.banner {
    width: 100%;
    height: 400px;
    overflow: hidden;
    margin-bottom: 30px;
}

.banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 详情页主体样式 */
.detail {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* 标题样式 */
.detail h1 {
    font-size: 36px;
    color: #333;
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
    position: relative;
}

.detail h1:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #0066cc;
}

.detail h2 {
    font-size: 24px;
    color: #0066cc;
    margin: 30px 0 15px;
    font-weight: bold;
}

/* 文本内容样式 */
.detail p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
    text-align: justify;
}

/* 列表样式 */
.detail ul {
    padding-left: 20px;
    margin: 15px 0;
}

.detail ul li {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.detail ul li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background: #0066cc;
    border-radius: 50%;
}

/* 信息区块样式 */
.culture-intro,
.culture-content,
.performance-info,
.food-section,
.hotel-section,
.route-box,
.tips {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 6px;
    margin-bottom: 30px;
}

/* 图片样式 */
.food-content img,
.hotel-content img {
    width: 300px;
    height: 200px;
    object-fit: cover;
    border-radius: 6px;
    margin-right: 20px;
}

/* 价格文本样式 */
.price {
    color: #e74c3c;
    font-weight: bold;
    font-size: 18px;
}

/* 弹性布局 */
.food-content,
.hotel-content {
    display: flex;
    align-items: flex-start;
}

.food-desc,
.hotel-desc {
    flex: 1;
}

/* 路线样式 */
.route-title {
    font-size: 18px;
    color: #0066cc;
    font-weight: bold;
    margin-bottom: 10px;
}

.route-detail {
    padding-left: 20px;
    border-left: 3px solid #0066cc;
}

/* 响应式布局 */
@media screen and (max-width: 1080px) {
    .content {
        width: 95%;
    }
    
    .food-content,
    .hotel-content {
        flex-direction: column;
    }
    
    .food-content img,
    .hotel-content img {
        width: 100%;
        margin-right: 0;
        margin-bottom: 20px;
    }
}

/* 动画效果 */
.detail h1,
.detail h2,
.detail p,
.detail ul li {
    opacity: 0;
    animation: fadeIn 0.8s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 悬停效果 */
.food-content img:hover,
.hotel-content img:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease;
} 