.tour-container { max-width: 1200px; margin: 0 auto; padding: 20px; }
.tour-top-title { text-align: center; margin-bottom: 40px; }
.tour-top-title h2 { font-size: 28px; color: #1f2937; font-weight: 700; margin-bottom: 8px; }
.tour-top-title p { color: #6b7280; font-size: 15px; }

/* 筛选栏 扁平化 */
.tour-filter-box {
    background: #f5f7fa;
    border-radius: 8px;
    padding: 24px 30px;
    margin-bottom: 30px;
}
.filter-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}
.filter-row:last-child { margin-bottom: 0; }
.filter-group { flex: 1; min-width: 200px; }
.filter-group label {
    display: block;
    font-size: 14px;
    color: #374151;
    font-weight: 600;
    margin-bottom: 10px;
}
.filter-group select {
    width: 100%;
    height: 42px;
    padding: 0 14px;
    border: 1px solid #dcdfe6;
    border-radius: 4px;
    font-size: 14px;
    color: #333;
    background: #fff;
}
.filter-btn-wrap {
    display: flex;
    gap: 12px;
    align-items: flex-end;
}
.filter-btn {
    height: 42px;
    padding: 0 26px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
}
.btn-search { background: #2563eb; color: #fff; }
.btn-reset { background: #e5e7eb; color: #333; }

/* 列表卡片 扁平化 */
.tour-list-wrap { display: flex; flex-direction: column; gap: 24px; }
.tour-item-card {
    background: #fff;
    padding: 24px;
    border-radius: 8px;
    border: 1px solid #ebeef5;
}
.tour-card-tag {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
}
.tour-card-tag span {
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
}
.tag-type { background: #e8f3ff; color: #2563eb; }
.tag-price { background: #ecfdf3; color: #16a34a; }
.tag-day { background: #fff3e8; color: #f59e0b; }
.tour-card-title {
    font-size: 22px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 12px;
}
.tour-card-desc {
    font-size: 15px;
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 16px;
}

/* 景点区域 */
.tour-card-detail h4 {
    font-size: 16px;
    color: #2563eb;
    margin: 0 0 16px 0;
    padding-bottom: 8px;
    border-bottom: 1px solid #eee;
}
.spot-item {
    padding: 14px 0;
    border-bottom: 1px solid #f0f0f0;
}
.spot-item:last-child { border-bottom: none; }
.spot-name {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 600;
    color: #222;
    margin-bottom: 8px;
}
.spot-star {
    background: #ff6b6b;
    color: #fff;
    font-size: 12px;
    padding: 2px 8px;
    border-radius: 3px;
}
.spot-row {
    font-size: 14px;
    color: #444;
    line-height: 1.7;
    margin: 4px 0;
}
.spot-info-line {
    font-size: 14px;
    color: #444;
    line-height: 1.7;
}

.tour-card-info {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.8;
    margin-top: 12px;
}
.price-tip {
    font-size: 13px;
    color: #999;
    margin-top: 6px;
}
.empty-tips {
    text-align: center;
    padding: 60px 0;
    color: #9ca3af;
    font-size: 15px;
}