/* 筛选区域样式 */
.filter-section {
    background-color: white;
    padding: 30px 0;
    margin-top: 80px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.filter-box {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.filter-group label {
    font-weight: bold;
    color: #333;
}

.filter-group select {
    padding: 8px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    min-width: 120px;
}

.search-group {
    display: flex;
    gap: 10px;
    flex: 1;
}

.search-group input {
    flex: 1;
    padding: 8px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.search-group button {
    background-color: #DE2910;
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.search-group button:hover {
    background-color: #c62410;
}

/* 目的地列表样式 */
.destinations {
    padding: 40px 0;
}

.destination-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.destination-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.destination-card:hover {
    transform: translateY(-5px);
}

.destination-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-content {
    padding: 20px;
}

.card-content h3 {
    color: #333;
    margin-bottom: 10px;
    font-size: 20px;
}

.description {
    color: #666;
    margin-bottom: 15px;
    font-size: 14px;
}

.tags {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.tag {
    background-color: #f0f0f0;
    color: #666;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
}

.view-more {
    display: inline-block;
    color: #DE2910;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
}

.view-more:hover {
    text-decoration: underline;
}

/* 分页样式 */
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.pagination a {
    display: inline-block;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    color: #333;
    text-decoration: none;
    transition: all 0.3s;
}

.pagination a:hover,
.pagination a.active {
    background-color: #DE2910;
    color: white;
    border-color: #DE2910;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .filter-box {
        flex-direction: column;
        align-items: stretch;
    }

    .filter-group,
    .search-group {
        width: 100%;
    }

    .filter-group select {
        flex: 1;
    }

    .destination-grid {
        grid-template-columns: 1fr;
    }
} 