/* 路线详情页面样式 */
.route-detail-container {
    max-width: 1200px;
    margin: 90px auto 40px;
    padding: 0 20px;
}

/* 面包屑导航 */
.breadcrumb {
    margin-bottom: 20px;
    color: #666;
}

.breadcrumb a {
    color: #007bff;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* 路线标题区域 */
.route-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.route-title h1 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: #333;
}

.route-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    color: #666;
}

.route-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.route-price {
    text-align: right;
}

.price-tag {
    font-size: 2rem;
    color: #e74c3c;
    font-weight: bold;
    margin-bottom: 10px;
}

.book-now {
    padding: 12px 30px;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.3s;
}

.book-now:hover {
    background: #0056b3;
}

/* 路线亮点 */
.route-highlights {
    margin-bottom: 40px;
    padding: 30px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.highlight-item {
    text-align: center;
    padding: 20px;
}

.highlight-item i {
    font-size: 2.5rem;
    color: #007bff;
    margin-bottom: 15px;
}

/* 行程安排 */
.route-schedule {
    margin-bottom: 40px;
}

.schedule-timeline {
    margin-top: 20px;
}

.day-item {
    padding: 20px;
    background: white;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.day-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.day-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 15px;
}

.day-images img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 4px;
}

/* 费用说明 */
.route-cost {
    margin-bottom: 40px;
    padding: 30px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.cost-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 20px;
}

.cost-included h3,
.cost-excluded h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.cost-included h3 i {
    color: #2ecc71;
}

.cost-excluded h3 i {
    color: #e74c3c;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .route-header {
        flex-direction: column;
    }

    .route-price {
        text-align: left;
        margin-top: 20px;
    }

    .cost-details {
        grid-template-columns: 1fr;
    }

    .route-meta {
        flex-direction: column;
        gap: 10px;
    }
} 