/* Top Personalize Banner */
.personalize_banner {
    background: linear-gradient(135deg, #eac466 0%, #a24b4b 100%);
    padding: 60px 0;
    color: #fff;
}

/* ==================== Guides: 新版 tour_activities 展示 ==================== */
.tours_content .tour_info .tour_activities {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.tours_content .tour_info .tour_activities .tour_location {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #333;
    font-weight: 600;
}

.tours_content .tour_info .tour_activities .tour_location i {
    color: #2ecc71; /* 位置图标绿色 */
    font-size: 1rem;
}

.tours_content .tour_info .tour_activities .tour_icons {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.tours_content .tour_info .tour_activities .tour_icons i {
    color: #ff6611; /* 地标图标橙色 */
    font-size: 1.05rem;
}

@media (max-width: 480px) {
    .tours_content .tour_info .tour_activities { gap: 8px; }
}

.personalize_overlay {
    width: 100%;
}

.personalize_title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 40px;
    color: #fff;
}

.personalize_features {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 30px;
}

.feature_item {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    padding: 25px 20px;
    border-radius: 8px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, background 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.feature_item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.feature_header {
    display: flex;
    align-items: flex-end;
    gap: 15px;
}

.feature_icon {
    flex-shrink: 0;
}

.feature_icon i {
    font-size: 3rem;
    color: #ffd700;
}

.feature_title {
    flex: 1;
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    text-align: left;
    color: #fff;
    line-height: 1.3;
}

.feature_content {
    width: 100%;
}

.feature_content p {
    font-size: 0.85rem;
    line-height: 1.5;
    text-align: left;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.inquire_btn {
    display: inline-block;
    background: #c43e3e;
    color: #fff !important;
    padding: 15px 50px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.inquire_btn:hover {
    background: #ff8484;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    color: #fff !important;
    text-decoration: none;
}

/* Search Section */
.search_section {
    padding: 50px 0;
    background: #fff;
}

.search_title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: #333;
}

.search_layout {
    display: flex;
    gap: 30px;
}

/* Left Sidebar Filters */
.filters_sidebar {
    width: 280px;
    flex-shrink: 0;
}

.filter_group {
    background: #f9f9f9;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.filter_title {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    background: #ff6611;
    margin: -20px -20px 15px -20px;
    padding: 12px 20px;
    border-radius: 6px 6px 0 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.filter_title_text {
    flex: 1;
}

/* 币种选择器 */
.currency_selector {
    position: relative;
    margin-left: 10px;
}

.currency_toggle_btn {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #fff;
    width: 28px;
    height: 28px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.currency_toggle_btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.6);
}

.currency_toggle_btn i {
    font-size: 1.2rem;
    color: #fff;
}

.currency_dropdown {
    position: absolute;
    top: calc(100% + 5px);
    right: 0;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    min-width: 120px;
    z-index: 1000;
    display: none;
    overflow: hidden;
}

.currency_dropdown.active {
    display: block;
}

.currency_option {
    display: block;
    padding: 10px 16px;
    color: #333 !important;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    border-bottom: 1px solid #f0f0f0;
}

.currency_option:last-child {
    border-bottom: none;
}

.currency_option:hover {
    background: #f9f9f9;
    color: #ff6611 !important;
    text-decoration: none;
}

.currency_option.active {
    background: #fff5f0;
    color: #ff6611 !important;
    font-weight: 600;
}

.currency_option.active::before {
    content: '✓ ';
    margin-right: 5px;
}

.range_filter {
    padding: 10px 0;
}

.range_labels {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: #666;
    font-weight: 600;
}

/* 双端点滑块显示值 */
.range_value_display {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    padding: 0 5px;
}

.range_value_text {
    font-size: 0.9rem;
    color: #333;
    font-weight: 600;
}

/* 双端点滑块容器 */
.dual_range_wrapper {
    position: relative;
    height: 30px;
    display: flex;
    align-items: center;
}

/* 滑块轨道 */
.range_track {
    position: absolute;
    width: 100%;
    height: 6px;
    background: #ddd;
    border-radius: 3px;
    pointer-events: none;
    z-index: 1;
}

.range_track_fill {
    position: absolute;
    height: 100%;
    background: #ff6611;
    border-radius: 3px;
    transition: all 0.1s ease;
}

/* 双端点滑块样式 */
.dual_range_wrapper .form-range {
    position: absolute;
    width: 100%;
    height: 6px;
    background: transparent;
    border-radius: 3px;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    pointer-events: none;
    z-index: 2;
}

.dual_range_wrapper .form-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    background: #ff6611;
    border: 3px solid #fff;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    pointer-events: auto;
    position: relative;
    z-index: 3;
}

.dual_range_wrapper .form-range::-moz-range-thumb {
    width: 18px;
    height: 18px;
    background: #ff6611;
    border: 3px solid #fff;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    pointer-events: auto;
    position: relative;
    z-index: 3;
}

.dual_range_wrapper .form-range::-webkit-slider-thumb:hover {
    background: #ff7722;
    transform: scale(1.1);
}

.dual_range_wrapper .form-range::-moz-range-thumb:hover {
    background: #ff7722;
    transform: scale(1.1);
}

/* 旧版单点滑块样式（保留以防其他地方使用） */
.form-range {
    width: 100%;
    height: 6px;
    background: linear-gradient(to right, #ff6611 0%, #ff6611 50%, #ddd 50%, #ddd 100%);
    border-radius: 3px;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.form-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    background: #ff6611;
    border: 2px solid #fff;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.form-range::-moz-range-thumb {
    width: 18px;
    height: 18px;
    background: #ff6611;
    border: 2px solid #fff;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* label.html 已移除 Destination Filters（checkbox 列表），对应 .checkbox_filters 样式不再需要 */

.checkbox_label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: #333;
    cursor: pointer;
}

.checkbox_label input[type="checkbox"] {
    margin-right: 8px;
    cursor: pointer;
}

.expandable_filters .filter_category {
    margin-bottom: 10px;
}

.expandable_filters .expandable {
    font-weight: 500;
    position: relative;
    padding-left: 20px;
}

.expandable_filters .expandable::before {
    content: '▶';
    position: absolute;
    left: 0;
    font-size: 0.7rem;
    color: #999;
}

.expandable_filters .filter_category.active .expandable::before {
    content: '▼';
}

.expandable_filters .active_filter {
    color: #ff6611;
    font-weight: 600;
}

.sub_filters {
    margin-top: 8px;
    padding-left: 20px;
    border-left: 2px solid #f0f0f0;
}

.sub_filters .sub_item {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 6px;
}

.your_list_section {
    background: #f9f9f9;
}

.empty_list_text {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 8px;
}

.list_instruction {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px;
}

.list_actions {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 8px;
}

.list_link {
    color: #0066cc;
    text-decoration: underline;
    font-weight: 500;
}

.list_link:hover {
    color: #0052a3;
}

/* Right Content Area */
.tours_content {
    flex: 1;
    position: relative;
    min-height: 600px;
}

.selected_filters {
    background: #fff;
    padding: 15px 20px;
    margin-bottom: 20px;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.filter_label {
    font-weight: 600;
    color: #333;
    margin-right: 5px;
}

.filter_tag {
    display: inline-flex;
    align-items: center;
    background: #e8f4f8;
    color: #333;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    border: 1px solid #b8d4e0;
}

.remove_filter {
    background: none;
    border: none;
    color: #666;
    font-size: 1.2rem;
    margin-left: 8px;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

.remove_filter:hover {
    color: #ff0000;
}

.clear_all_btn {
    color: #0066cc;
    font-size: 0.85rem;
    text-decoration: underline;
    margin-left: 10px;
}

.clear_all_red {
    color: #ff6611;
}

.clear_all_btn:hover {
    color: #0052a3;
}

/* Tour Cards Grid */
.tour_cards_grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.tour_card {
    display: block;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.tour_card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    text-decoration: none;
}

.tour_image {
    position: relative;
    width: 100%;
    padding-top: 60%;
    background: #e0e0e0;
}

.image_placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #d0d0d0 0%, #a0a0a0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.image_placeholder::after {
    content: '📷';
    font-size: 3rem;
    opacity: 0.3;
}

.favorite_btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    z-index: 20;
}

.favorite_btn:hover {
    background: #fff;
    transform: scale(1.1);
}

.favorite_btn i {
    font-size: 1.3rem;
    color: #ff6611;
}

.favorite_btn.active i {
    font-weight: 900;
}

.tour_info {
    padding: 20px;
    background-color: #f9f9f9;
}

.tour_title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin: 0;
    padding: 15px 20px;
    line-height: 1.4;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4), transparent);
}

.tour_price {
    font-size: 0.95rem;
    color: #f25c05;
    margin-bottom: 8px;
}

.price_amount {
    font-size: 1.3rem;
    font-weight: 700;
    color: #f25c05;
}

.tour_duration {
    font-size: 0.9rem;
    color: #333;
    margin-bottom: 10px;
}

.tour_activities {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    font-size: 0.9rem;
    color: #666;
}

.activity_label {
    font-weight: 500;
}

.tour_activities i {
    color: #4dd4ac;
    font-size: 1rem;
}

.tour_description {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

/* Pagination */
.pagination_section {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
}

.pagination_arrow {
    background: #4dd4ac;
    color: #fff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.pagination_arrow:hover {
    background: #3ec499;
    transform: scale(1.1);
}

.pagination_arrow:disabled,
.pagination_arrow[disabled] {
    background: #ccc;
    cursor: not-allowed;
    opacity: 0.6;
}

.pagination_arrow:disabled:hover,
.pagination_arrow[disabled]:hover {
    background: #ccc;
    transform: none;
}

.pagination_info {
    font-size: 0.9rem;
    color: #666;
    padding: 0 15px;
}

/* Top Activities Section */
.top_activities_section {
    padding: 50px 0;
    background: transparent;
}

.section_title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: #333;
}

.activities_grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}

.activity_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    background: #fff;
    border: 2px solid #ff6611;
    border-radius: 25px;
    color: #ff6611 !important;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
}

.activity_btn:hover {
    background: #ff6611;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 102, 17, 0.3);
}

.activity_btn i {
    font-size: 0.6rem;
}

.activity_number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 28px;
    height: 28px;
    background: #ff6611;
    color: #fff;
    border-radius: 50%;
    font-size: 0.85rem;
    font-weight: 600;
    flex-shrink: 0;
}

.activity_btn:hover .activity_number {
    background: #fff;
    color: #ff6611;
}

/* Activity Guides Section */
.activity_guides_section {
    padding: 50px 0;
    background: #f5f5f5;
}

.guides_grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
}

.guide_btn {
    display: block;
    padding: 12px 20px;
    background: #fff;
    border: 2px solid #ddd;
    border-radius: 25px;
    color: #333 !important;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
}

.guide_btn:hover {
    border-color: #ff6611;
    color: #ff6611 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.guide_btn.active {
    background: #ff6611;
    border-color: #ff6611;
    color: #fff !important;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .personalize_features {
        flex-wrap: wrap;
    }
    
    .feature_item {
        flex: 0 0 calc(50% - 10px);
    }
    
    .activities_grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .guides_grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

@media (max-width: 992px) {
    .search_layout {
        flex-direction: column;
    }
    
    .filters_sidebar {
        width: 100%;
    }
    
    .tours_content {
        width: 100%;
    }
    
    .activities_grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .guides_grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .personalize_title {
        font-size: 1.8rem;
    }
    
    .feature_item {
        flex: 0 0 100%;
    }
    
    .feature_icon i {
        font-size: 2.5rem;
    }
    
    .tour_cards_grid {
        grid-template-columns: 1fr;
    }
    
    .activities_grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .guides_grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 480px) {
    .personalize_banner {
        padding: 30px 0;
    }
    
    .personalize_title {
        font-size: 1.5rem;
        margin-bottom: 25px;
    }
    
    .inquire_btn {
        padding: 12px 35px;
        font-size: 1rem;
    }
    
    .search_title {
        font-size: 1.5rem;
    }
    
    .section_title {
        font-size: 1.4rem;
    }
    
    .activities_grid {
        grid-template-columns: 1fr;
    }
    
    .guides_grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .selected_filters {
        padding: 10px 15px;
    }
    
    .filter_tag {
        font-size: 0.75rem;
        padding: 4px 10px;
    }
}

/* Switch Destination 样式 */
.switch_destination_content {
    padding: 10px 0;
}

.switch_module .filter_title {
    cursor: pointer;
    user-select: none;
}

/* Switch 模块右侧下拉按钮：样式对齐 Rates Filter 的下拉箭头 */
.switch_toggle_btn {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #fff;
    width: 28px;
    height: 28px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    flex-shrink: 0;
}

.switch_toggle_btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.6);
}

.switch_toggle_btn i {
    font-size: 1.2rem;
    color: #fff;
    transition: transform 0.2s ease;
    transform: rotate(0deg); /* 默认向下 */
}

/* 展开时箭头向上（caret-down 旋转 180°） */
.switch_module:not(.collapsed) .switch_toggle_btn i {
    transform: rotate(180deg);
}

.switch_module.collapsed .switch_content {
    display: none;
}

.destination_link.active,
.destination_link.active:link,
.destination_link.active:visited {
    color: #999 !important;
    cursor: default;
    pointer-events: none;
}

.destination_link .switch_arrow {
    color: #ff6611;
    font-size: 1.05rem;
    font-style: normal;
    flex-shrink: 0;
}

.filter_tag_locked {
    background: #f1f1f1;
    border-color: #ddd;
    color: #666;
}

.destination_links_row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.destination_links_row:last-child {
    margin-bottom: 0;
}

.destination_links_col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.destination_link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 0;
    font-size: 0.9rem;
    color: #333 !important;
    text-decoration: none;
    transition: all 0.3s ease;
}

.destination_link i {
    color: #ff6611;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.destination_link:hover {
    color: #ff6611 !important;
    padding-left: 5px;
    text-decoration: none;
}

.destination_link:link,
.destination_link:visited {
    color: #333 !important;
    text-decoration: none;
}

/* Switch Destination 响应式 */
@media (max-width: 768px) {
    .destination_links_row {
        flex-direction: column;
        gap: 8px;
        margin-bottom: 10px;
    }
    
    .destination_links_col {
        gap: 6px;
    }
}

/* ==================== 目的地列表页新增样式 ==================== */

/* 目的地横幅区域 */
.destination_banner {
    min-height: 650px;
    background: url('../../../assets/img/travel/Itineraries_topbg.jpg') no-repeat center center;
    background-size: cover;
    padding: 60px 0;
    color: #fff;
    position: relative;
}

.destination_banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: linear-gradient(135deg, rgba(102, 126, 234, 0.8) 0%, rgba(118, 75, 162, 0.8) 100%); */
}

.destination_overlay {
    position: relative;
    z-index: 1;
    margin-top:150px;
}

.destination_title {
    font-size: 2.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 30px;
    color: #fff;
}

.destination_desc_cn,
.destination_desc_en {
    font-size: 1rem;
    line-height: 1.8;
    text-align: center;
    color: #fff;
    margin-bottom: 15px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.destination_desc_cn {
    font-size: 1.1rem;
}

.destination_desc_en {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.95);
}

/* 目的地卡片区域 */
.destination_cards_section {
    padding: 50px 0;
    background: #fff;
}

.destination_cards_grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}

.destination_card {
    flex: 0 0 calc(25% - 15px);
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none !important;
    color: inherit;
    display: block;
}

.destination_card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    text-decoration: none !important;
    color: inherit;
}

.destination_card:link,
.destination_card:visited {
    text-decoration: none !important;
    color: inherit;
}

.destination_image {
    position: relative;
    width: 100%;
    padding-top: 66.67%;
    background: #e0e0e0;
}

.destination_image .image_placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #d0d0d0 0%, #a0a0a0 100%);
}

.destination_info {
    padding: 20px;
    background: #fff;
}

.destination_tag {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    padding: 12px 15px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3), transparent);
    z-index: 2;
}

.destination_length {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 12px;
}

.destination_length strong {
    font-weight: 600;
    color: #333;
}

.destination_features {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #666;
}

.destination_features strong {
    font-weight: 600;
    color: #333;
}

.destination_features .feature_icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

/* Top-5 旅游行程区域 */
.top_itineraries_section {
    padding: 50px 0;
    background: #f5f5f5;
}

.itineraries_title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: #333;
}

.itineraries_list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 50px;
}

.itinerary_item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    padding: 15px 20px;
    border-radius: 25px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.itinerary_item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.itinerary_number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    height: 32px;
    background: #ff6611;
    color: #fff;
    border-radius: 50%;
    font-size: 0.9rem;
    font-weight: 600;
    flex-shrink: 0;
}

.itinerary_text {
    font-size: 0.95rem;
    color: #333;
    font-weight: 500;
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .destination_cards_grid {
        gap: 15px;
    }
    
    .destination_card {
        flex: 0 0 calc(33.333% - 10px);
    }
}

@media (max-width: 992px) {
    .destination_title {
        font-size: 2rem;
    }
    
    .destination_cards_grid {
        gap: 15px;
    }
    
    .destination_card {
        flex: 0 0 calc(50% - 7.5px);
    }
}

@media (max-width: 768px) {
    .destination_banner {
        padding: 40px 0;
    }
    
    .destination_title {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }
    
    .destination_desc_cn,
    .destination_desc_en {
        font-size: 0.9rem;
    }
    
    .destination_cards_grid {
        gap: 15px;
    }
    
    .destination_card {
        flex: 0 0 100%;
    }
    
    .itineraries_list {
        flex-direction: column;
        gap: 12px;
    }
    
    .itinerary_item {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .destination_banner {
        padding: 30px 0;
    }
    
    .destination_title {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }
    
    .destination_desc_cn,
    .destination_desc_en {
        font-size: 0.85rem;
        line-height: 1.6;
    }
    
    .destination_info {
        padding: 15px;
    }
    
    .destination_tag {
        font-size: 0.9rem;
    }
    
    .destination_length,
    .destination_features {
        font-size: 0.85rem;
    }
    
    .itineraries_title {
        font-size: 1.5rem;
    }
    
    .itinerary_number {
        min-width: 28px;
        height: 28px;
        font-size: 0.85rem;
    }
    
    .itinerary_text {
        font-size: 0.9rem;
    }
}

/* ==================== AJAX加载动画 ==================== */
.loading_overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.95);
    z-index: 100;
    display: none;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
}

.loading_overlay.active {
    display: flex;
}

.loading_spinner {
    background: #fff;
    padding: 25px 40px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    text-align: center;
    color: #ff6611;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.loading_spinner i {
    font-size: 2.5rem;
    color: #ff6611;
}

.loading_spinner span {
    font-size: 1.1rem;
    font-weight: 500;
    color: #666;
}

/* 产品卡片淡入动画 */
.tour_card {
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Loading响应式 */
@media (max-width: 768px) {
    .loading_spinner {
        padding: 20px 30px;
    }
    
    .loading_spinner i {
        font-size: 2rem;
    }
    
    .loading_spinner span {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .loading_spinner {
        padding: 15px 25px;
    }
    
    .loading_spinner i {
        font-size: 1.8rem;
    }
    
    .loading_spinner span {
        font-size: 0.9rem;
    }
}

/* ==================== 目的地详情页顶部介绍区域样式 ==================== */

/* 主容器 */
.des_top_intro {
    background: #fff;
    padding: 40px 0 0 0;
    position: relative;
}

/* 顶部标题和操作图标区域 */
.des_top_header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
}

.des_title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin: 0;
    line-height: 1.2;
}

.des_action_icons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.des_favorite_icon,
.des_share_icon {
    background: transparent;
    border: 2px solid #ff6611;
    color: #ff6611;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.des_favorite_icon i,
.des_share_icon i {
    font-size: 1.3rem;
    color: #ff6611;
}

.des_favorite_icon:hover,
.des_share_icon:hover {
    background: #ff6611;
    transform: scale(1.1);
}

.des_favorite_icon:hover i,
.des_share_icon:hover i {
    color: #fff;
}

.des_favorite_icon.active {
    background: #ff6611;
}

.des_favorite_icon.active i {
    color: #fff;
}

/* 主要内容区域布局 */
.des_top_content {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

/* 左侧内容列 */
.des_left_column {
    flex: 1;
    max-width: 50%;
}

.des_section {
    margin-bottom: 35px;
}

.des_section_title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #ff6611;
    margin: 0 0 15px 0;
}

.des_section_text {
    font-size: 0.95rem;
    color: #333;
    line-height: 1.6;
    margin: 0 0 12px 0;
}

.des_section_text:last-child {
    margin-bottom: 0;
}

/* 特性网格 */
.des_features_grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 25px;
}

.des_features_grid.des_features_vertical {
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.theme_why_choose_title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ff6611;
    margin: 0 0 8px 0;
}

.theme_features_list .des_feature_item {
    align-items: flex-start;
    gap: 18px;
}

.theme_features_list .des_feature_icon {
    width: 44px;
    height: 44px;
}

.theme_features_list .theme_check_icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    font-weight: 800;
    color: #ff6611;
    line-height: 1;
}

.theme_features_list .des_feature_text {
    font-size: 1.25rem;
    font-weight: 500;
    color: #666;
    line-height: 1.55;
}

.des_feature_item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.des_feature_icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.des_feature_icon i {
    font-size: 1.5rem;
    color: #ff6611;
}

.des_feature_text {
    font-size: 0.95rem;
    color: #333;
    font-weight: 500;
}

/* 右侧图片列 */
.des_right_column {
    flex: 1;
    max-width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.des_image_placeholder {
    width: 100%;
    /* padding-top: 50%; 调整高度比例，使与左侧内容对齐 */
    background: linear-gradient(135deg, #d0d0d0 0%, #a0a0a0 100%);
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 0;
}

/* .des_image_placeholder::after {
    content: '📷';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4rem;
    opacity: 0.3;
} */

/* 底部CTA区域 */
.des_bottom_cta {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 20px 0 0 0;
    margin-top: auto;
    border-top: 1px solid #e0e0e0;
}

.des_inquiry_btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #389d9d;
    color: #fff !important;
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
}

.des_inquiry_btn:hover {
    background: #2d8a8a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    color: #fff !important;
    text-decoration: none;
}

.des_cta_text {
    flex: 1;
}

.des_cta_text p {
    font-size: 0.95rem;
    color: #333;
    margin: 0 0 5px 0;
    line-height: 1.5;
}

.des_cta_text p:last-child {
    margin-bottom: 0;
}

.des_24h_service {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ff6611;
    font-size: 1rem;
    font-weight: 500;
    white-space: nowrap;
}

.des_24h_service i {
    font-size: 1.2rem;
    color: #ff6611;
}

/* 顶部橙色横条 (4px) */
.des_top_orange_bar {
    width: 100%;
    height: 4px;
    background: #f25c05;
    margin-top: 0;
}

/* 底部橙色横条 */
.des_footer_bar {
    width: 100%;
    height: 8px;
    background: #ff6611;
    margin-top: 0;
}

.bottom_mod_bg {
    background-color: #f9f9f9;
    width: 100%;
    padding: 0;
}

/* ==================== Contact a Travel Specialist Section ==================== */
.travel_specialist_section {
    padding: 60px 0;
    background: transparent;
}

.specialist_section_title {
    font-size: 2rem;
    font-weight: 600;
    color: #333;
    text-align: center;
    margin: 0 0 50px 0;
}

.specialist_features_grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.specialist_feature_item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    padding: 20px 18px;
}

.specialist_feature_header {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    width: 100%;
}

.specialist_feature_icon {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.specialist_feature_icon i {
    font-size: 2.5rem;
    color: #ff6611;
}

.specialist_feature_title {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin: 0;
    line-height: 1.4;
    flex: 1;
}

.specialist_feature_text {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
    width: 100%;
}

.specialist_cta_wrapper {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.specialist_inquiry_btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #389d9d;
    color: #fff !important;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.specialist_inquiry_btn:hover {
    background: #2d8a8a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    color: #fff !important;
    text-decoration: none;
}

/* ==================== Traveler Interviews Section ==================== */
.traveler_interviews_section {
    padding: 60px 0;
    background: transparent;
}

.interviews_section_title {
    font-size: 2rem;
    font-weight: 600;
    color: #333;
    text-align: left;
    margin: 0 0 40px 0;
}

.interviews_grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.interview_item {
    display: flex;
    flex-direction: column;
    text-decoration: none;
}

.interview_image_placeholder {
    width: 100%;
    padding-top: 56.25%; /* 16:9 比例 */
    background: linear-gradient(135deg, #d0d0d0 0%, #a0a0a0 100%);
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 15px;
}

.interview_image_placeholder::after {
    content: '📹';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    opacity: 0.3;
}

.interview_text {
    font-size: 0.95rem;
    color: #0066cc;
    line-height: 1.5;
    margin: 0;
    text-decoration: none;
}

.interview_item:hover .interview_text {
    text-decoration: underline;
}

/* 响应式：两段模块 */
@media (max-width: 992px) {
    .specialist_features_grid { grid-template-columns: repeat(2, 1fr); gap: 25px; }
    .interviews_grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .specialist_section_title,
    .interviews_section_title { font-size: 1.6rem; }
    .specialist_features_grid { grid-template-columns: 1fr; gap: 30px; }
    .specialist_feature_icon { width: 55px; height: 55px; }
    .specialist_feature_icon i { font-size: 2rem; }
    .specialist_feature_header { gap: 12px; }
    .interviews_grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}

@media (max-width: 480px) {
    .travel_specialist_section,
    .traveler_interviews_section { padding: 40px 0; }
    .specialist_section_title,
    .interviews_section_title { font-size: 1.4rem; margin-bottom: 30px; }
    .specialist_features_grid { gap: 25px; }
    .specialist_feature_icon { width: 50px; height: 50px; }
    .specialist_feature_icon i { font-size: 1.8rem; }
    .specialist_feature_header { gap: 10px; margin-bottom: 12px; }
    .specialist_feature_title { font-size: 0.95rem; }
    .specialist_feature_text { font-size: 0.85rem; }
    .specialist_inquiry_btn { padding: 12px 30px; font-size: 1rem; }
    .interviews_grid { grid-template-columns: 1fr; gap: 20px; }
    .interview_text { font-size: 0.9rem; }
}

/* 响应式设计 */
@media (max-width: 992px) {
    .des_top_content {
        flex-direction: column;
        gap: 30px;
    }

    .des_left_column,
    .des_right_column {
        max-width: 100%;
    }

    .des_features_grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .des_bottom_cta {
        flex-wrap: wrap;
    }

    .des_cta_text {
        flex: 0 0 100%;
        order: 3;
    }
}

@media (max-width: 768px) {
    .des_title {
        font-size: 2rem;
    }

    .des_section_title {
        font-size: 1.2rem;
    }

    .des_section_text {
        font-size: 0.9rem;
    }

    .des_features_grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .des_bottom_cta {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .des_inquiry_btn {
        width: 100%;
        justify-content: center;
    }

    .des_action_icons {
        gap: 10px;
    }

    .des_favorite_icon,
    .des_share_icon {
        width: 40px;
        height: 40px;
    }

    .des_favorite_icon i,
    .des_share_icon i {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .des_top_intro {
        padding: 30px 0 0 0;
    }

    .des_top_header {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 30px;
    }

    .des_title {
        font-size: 1.8rem;
    }

    .des_action_icons {
        align-self: flex-start;
    }

    .des_section {
        margin-bottom: 25px;
    }

    .des_inquiry_btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
}
