.fullscreen-loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.5);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loading-center {
    text-align: center;
}

.filter-loading,
.loading-message {
    text-align: center;
    padding: 40px;
}

.loading-img {
    width: 290px;
}

/* 客人选择模态框样式 */
.guests-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 20px;
}

.guests-modal {
    background: white;
    padding: 20px;
    width: 100%;
    max-width: 400px;
    max-height: 80vh;
    overflow-y: auto;
}

.guests-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e1e5e9;
}

.guests-modal-header h3 {
    margin: 0;
    color: #0f294d;
    font-size: 18px;
}

.guests-modal-close {
    background: none;
    border: none;
    font-size: 24px;
    color: #666;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.guests-controls {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 25px;
}

.guest-control {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.control-label {
    flex: 1;
    line-height: 15px;
}

.label-main {
    display: block;
    font-weight: 500;
    color: #333;
}

.label-sub {
    font-size: 10px;
    color: #666;
}

.counter {
    display: flex;
    align-items: center;
    gap: 15px;
}

.counter-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid #d1d1d1;
    background: #fff;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    cursor: pointer;
    color: #717171;
    font-weight: 700;
    font-size: 20px;
    -webkit-user-select: none;
    user-select: none;
}

.counter-btn:hover {
    border-color: #2563eb;
    color: #2563eb;
}

.counter-value {
    font-weight: 400;
    min-width: 20px;
    text-align: center;
    color: #333;
}

.guests-modal-actions {
    text-align: center;
}

.guests-modal-confirm {
    background: #2563eb;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 3px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.guests-modal-confirm:hover {
    background: #0f8ae0;
}

/* 目的地选择模态框样式 */
.destination-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 20px;
}

.destination-modal {
    background: white;
    padding: 20px;
    width: 100%;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
}

.destination-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e1e5e9;
}

.destination-modal-header .destination-modal-close {
    background: none;
    border: none;
    font-size: 20px;
}

.destination-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 0px;
}

.destination-option {
    padding: 15px;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.destination-option:hover {
    border-color: #2563eb;
    color: #2563eb;
}

.destination-option.selected {
    background: #2563eb;
    color: white;
    border-color: #2563eb;
}

.destination-modal-actions {
    text-align: center;
}

.destination-modal-confirm {
    background: #2563eb;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.destination-modal-confirm:hover {
    background: #0f8ae0;
}

/* 移动端地图搜索样式 */
.mobile-map-search {
    display: none;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

.mobile-map-search-image {
    position: relative;
    width: 100%;
    height: 80px;
    /* 更小的高度 */
    overflow: hidden;
}

.mobile-map-background {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.mobile-map-search-image:hover .mobile-map-background {
    transform: scale(1.05);
}

.mobile-map-search-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.mobile-map-search-image:hover .mobile-map-search-overlay {
    background: rgba(0, 0, 0, 0.5);
}

.mobile-map-search-button {
    background: #2563eb;
    color: #FFF;
    border: 2px solid #2563eb;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(5px);
}

.mobile-map-search-button:hover {
    background: #2563eb;
    color: white;
    transform: translateY(-1px);
}

.mobile-map-search-button i {
    font-size: 14px;
}

/* 桌面端隐藏移动端地图搜索 */
@media screen and (min-width: 1025px) {
    .mobile-map-search {
        display: none;
    }
}

/* 移动端显示 */
@media screen and (max-width: 1024px) {
    .mobile-map-search {
        display: block;
    }

    /* 调整头部信息的间距 */
    .hotel-search-list-header {
        margin-top: 0;
    }
}

/* 小屏幕优化 */
@media screen and (max-width: 767px) {
    .mobile-map-search-image {
        height: 70px;
        /* 更小的高度 */
    }

    .mobile-map-search-button {
        padding: 8px 16px;
        font-size: 13px;
    }

    .mobile-map-search-button i {
        font-size: 12px;
    }
}

/* 超小屏幕优化 */
@media screen and (max-width: 480px) {
    .mobile-map-search-image {
        height: 60px;
        /* 最小高度 */
    }

    .mobile-map-search-button {
        padding: 6px 12px;
        font-size: 12px;
        gap: 6px;
    }
}

/* 桌面端：侧边栏显示地图搜索，移动端：主区域显示 */
.map-search-block {
    display: block;
}

.mobile-map-search {
    display: none;
}

@media screen and (max-width: 1024px) {
    .map-search-block {
        display: none;
        /* 移动端隐藏侧边栏的地图搜索 */
    }

    .mobile-map-search {
        display: block;
        /* 移动端显示主区域的地图搜索 */
    }
}

/* 移动端筛选条件详情显示 */
.filter-details {
    background: #f8f9fa;
    border: 1px solid #e1e5e9;
    border-top: none;
    border-radius: 0 0 8px 8px;
    padding: 12px 15px;
    display: none;
}

.filter-details.active {
    display: block;
}

.filter-details-content {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.no-filters {
    color: #999;
    font-size: 13px;
    font-style: italic;
}

.filter-tag {
    background: white;
    border: 1px solid #2563eb;
    border-radius: 16px;
    padding: 4px 12px;
    font-size: 12px;
    color: #2563eb;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.filter-tag-remove {
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    padding: 0;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
}

.filter-tag-remove:hover {
    background: #f0f0f0;
}

/* 移动端筛选按钮样式调整 */
.mobile-filter-toggle {
    display: none;
    position: sticky;
    top: 0;
    z-index: 1000;
    background: white;
    padding: 0;
    border-bottom: 1px solid #e1e5e9;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.filter-toggle-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #2563eb;
    color: white;
    border: none;
    padding: 12px 16px;
    border-radius: 0;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    justify-content: center;
}

/* 移动端适配 */
@media screen and (max-width: 1024px) {
    .mobile-filter-toggle {
        display: block;
    }
}

.filter-toggle-btn i {
    font-size: 16px;
}

.filter-count {
    background: white;
    color: #2563eb;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
}

.mobile-load-more-status {
    display: none;
}

@media screen and (max-width: 1024px) {
    .mobile-load-more-status {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 9px 12px;
        color: #0b4f85;
        background: #eef7ff;
        border-top: 1px solid #c8e5ff;
        font-size: 13px;
        font-weight: 700;
        line-height: 1.25;
    }

    .mobile-load-more-status i {
        color: #2563eb;
        font-size: 14px;
    }
}

/* 移动端遮罩 */
.mobile-filter-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1998;
}

/* 移动端侧边栏样式 - 修复滚动问题 */
.hotel-search-list-sidebar.mobile-visible {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 85%;
    max-width: 320px;
    background: white;
    z-index: 1999;
    overflow: hidden;
    /* 确保可以滚动 */
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    /* iOS平滑滚动 */
}

.hotel-search-list-sidebar.mobile-visible.active {
    transform: translateX(0);
}

/* 移动端遮罩 - 防止背景滚动 */
.mobile-filter-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1998;
}

/* 确保侧边栏内容可以正常滚动 */
.hotel-search-list-sidebar.mobile-visible .hotel-search-list-sidebar-content {
    height: 100%;
    max-height: 100dvh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 20px;
    /* 给底部留出空间 */
}

/* 侧边栏关闭按钮固定在顶部 */
.sidebar-close-btn {
    display: none;
    position: sticky;
    top: 0;
    background: white;
    border: none;
    font-size: 20px;
    color: #666;
    cursor: pointer;
    z-index: 2000;
    width: 100%;
    padding: 15px;
    text-align: right;
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 0;
}

/* 确保筛选条件section有合适的间距 */
.hotel-search-list-sidebar.mobile-visible .hotel-search-list-sidebar-section {
    padding: 20px 15px;
    margin-bottom: 0;
    border-bottom: 1px solid #f0f0f0;
}

/* 应用按钮固定在底部 */
/* .hotel-search-list-sidebar.mobile-visible .hotel-search-list-sidebar-apply {
    position: sticky;
    bottom: 0;
    background: white;
    margin: 0;
    width: 100%;
    border-radius: 0;
    padding: 15px;
    border-top: 1px solid #f0f0f0;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
} */

/* 移动端主区域 */
.hotel-search-list-main.mobile-full-width {
    width: 100%;
}

/* 移动端适配 */
@media screen and (max-width: 1024px) {
    .mobile-filter-toggle {
        display: block;
    }

    .hotel-search-list {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .hotel-search-list-sidebar:not(.mobile-visible) {
        display: none;
    }

    .hotel-search-list-main.mobile-full-width {
        padding: 0 15px;
    }
}

/* 侧边栏关闭按钮 */
.sidebar-close-btn {
    display: none;
    position: absolute;
    top: -3px;
    right: 0;
    background: none;
    border: none;
    font-size: 20px;
    color: #666;
    cursor: pointer;
    z-index: 2000;
}

.sidebar-close-btn i {
    padding: 4px 8px;
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 100px;
}

@media screen and (max-width: 1024px) {
    .sidebar-close-btn {
        width: auto;
        display: block;
    }
}

/* 地図で探す功能块样式 */
.map-search-block {
    background: white;
    overflow: hidden;
    box-shadow: none;
    margin-bottom: 0;
}

.map-search-image {
    position: relative;
    width: 100%;
    height: 120px;
    overflow: hidden;
}

.map-background {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.map-search-image:hover .map-background {
    transform: scale(1.05);
}

.map-search-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.map-search-image:hover .map-search-overlay {
    background: rgba(0, 0, 0, 0.4);
}

.map-search-button {
    background: #2563eb;
    color: #fff;
    border: 2px solid #2563eb;
    padding: 8px 24px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.map-search-button:hover {
    background: #2563eb;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(27, 161, 255, 0.4);
}

.map-search-button i {
    font-size: 16px;
}

/* 调整迷你搜索框的上边距 */
.mini-hotel-search {
    border-radius: 0;
    border-bottom: 1px solid #f0f0f0;
}

/* 移动端适配 */
@media screen and (max-width: 1024px) {
    .map-search-block {
        margin-bottom: 0;
    }

    .map-search-image {
        height: 100px;
    }

    .map-search-button {
        padding: 10px 20px;
        font-size: 13px;
    }
}

@media screen and (max-width: 767px) {
    .map-search-image {
        height: 90px;
    }

    .map-search-button {
        padding: 8px 16px;
        font-size: 12px;
    }

    .map-search-button i {
        font-size: 14px;
    }
}

/* 酒店搜索列表页面样式 */
.hotel-search-list {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 20px;
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 30px;
    min-height: calc(100vh - 120px);
}

/* 侧边栏样式 */
.hotel-search-list-sidebar {
    background: white;
    padding: 0;
    position: sticky;
    top: 30px;
    z-index: 20;
    display: flex;
    flex-direction: column;
}

.hotel-search-list-main {
    position: relative;
    z-index: 1;
}

.hotel-search-list-sidebar>div {
    margin-bottom: 20px;
    border: 1px solid #dadfe6;
}

/* 迷你搜索框样式 */
.mini-hotel-search {
    background: white;
    border-radius: 12px 12px 0 0;
    padding: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.mini-search-title {
    font-size: 16px;
    font-weight: 700;
    color: #0f294d;
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 2px solid #2563eb;
}

.mini-search-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mini-search-field {
    position: relative;
}

.mini-field-label {
    display: block;
    font-size: 12px;
    color: #666;
    margin-bottom: 6px;
    font-weight: 500;
}

.mini-input-with-icon {
    position: relative;
    display: flex;
    align-items: center;
}

.mini-input-with-clear .mini-search-input {
    padding-right: 42px;
}

.mini-input-clear-btn {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 22px;
    height: 22px;
    border: none;
    border-radius: 999px;
    background: #eef4fb;
    color: #6b7b8c;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    transition: background 0.2s ease, color 0.2s ease, opacity 0.2s ease;
}

.mini-input-clear-btn i {
    font-size: 11px;
}

.mini-input-clear-btn:hover {
    background: #dbe9f6;
    color: #0f294d;
}

.mini-input-clear-btn.is-visible {
    display: inline-flex;
}

.mini-search-input {
    width: 100%;
    height: 40px;
    padding: 0 35px 0 35px;
    border: 1.5px solid #e1e5e9;
    border-radius: 6px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: white;
    cursor: pointer;
    color: #333;
}

.mini-search-input:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(27, 161, 255, 0.1);
}

.mini-field-icon {
    width: 15px;
    text-align: center;
    position: absolute;
    left: 12px;
    color: #2563eb;
    font-size: 14px;
    z-index: 2;
}

.mini-nights-display {
    position: absolute;
    right: 12px;
    background: #2563eb;
    color: white;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 500;
}

.mini-search-button {
    width: 100%;
    background: #2563eb;
    color: #fff;
    border: none;
    padding: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 8px;
}

.mini-search-button:hover {
    box-shadow: 0 4px 12px rgba(255, 193, 28, 0.4);
}

.hotel-search-list-sidebar-section:last-child {
    border-bottom: none;
}

/* 应用按钮 */
.hotel-search-list-sidebar-apply {
    margin: 0 25px 25px 25px;
    width: calc(100% - 50px);
}

/* 移动端适配 */
@media screen and (max-width: 1024px) {
    .hotel-search-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .hotel-search-list-sidebar {
        position: static;
    }
}

@media screen and (max-width: 767px) {
    .mini-input-clear-btn,
    .mini-input-clear-btn.is-visible {
        display: none !important;
    }
}

@media screen and (max-width: 767px) {
    .hotel-search-list {
        padding: 20px 15px;
    }

    .mini-hotel-search {
        padding: 15px;
    }

    .hotel-search-list-sidebar-section {
        padding: 20px;
    }

    .hotel-search-list-sidebar-apply {
        margin: 0 20px 20px 20px;
        width: calc(100% - 40px);
    }
}

/* 迷你搜索框下拉菜单样式 */
.mini-search-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border: 1px solid #e1e5e9;
    border-top: none;
    border-radius: 0 0 6px 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 80;
    display: none;
    max-height: 200px;
    overflow: hidden;
}

.mini-search-dropdown.dropdown-mode-popular {
    max-height: 600px;
}

.mini-search-dropdown.dropdown-mode-results {
    max-height: 400px;
    overflow: hidden;
}

.mini-search-dropdown.dropdown-mode-popular .city-search-results,
.mini-search-dropdown.dropdown-mode-popular .dropdown-section {
    max-height: none;
    overflow: visible;
}

.mini-search-dropdown.dropdown-mode-results .city-search-results {
    max-height: 400px;
    overflow-y: auto;
}

.mini-search-dropdown-item {
    padding: 10px 12px;
    border-bottom: 1px solid #f5f5f5;
    cursor: pointer;
    transition: background-color 0.2s ease;
    font-size: 13px;
}

.mini-search-dropdown-item:hover {
    background-color: #f8f9fa;
}

.mini-search-dropdown-item:last-child {
    border-bottom: none;
}

.mini-search-dropdown .city-info {
    display: flex;
    flex-direction: column;
}

.mini-search-dropdown .city-icon img,
.mini-search-dropdown .city-icon i,
.mini-search-dropdown .hotel-icon i {
    display: flex;
    justify-content: space-between;
    align-items: center;

.mini-search-dropdown .city-icon i,
.mini-search-dropdown .hotel-icon i {
    display: inline-block;
    font-size: 16px;
    line-height: 1;
    text-align: center;
}
}

.mini-search-dropdown .city-name {
    font-weight: 500;
    color: #333;
}

.mini-search-dropdown .city-country {
    font-size: 11px;
    color: #666;
}

.mini-search-dropdown .no-results {
    padding: 20px 12px;
    text-align: center;
    color: #999;
    font-size: 13px;
}

.mini-search-dropdown .destination-scope-tabs {
    padding: 12px 12px 8px;
}

.mini-input-with-icon.has-destination-tags .mini-search-input {
    color: transparent;
    caret-color: transparent;
}

.mini-input-with-icon .destination-tag-track {
    left: 34px;
    right: 10px;
}

.mini-input-with-icon .destination-tag-pill {
    padding: 4px 8px;
    font-size: 11px;
}

.mini-input-with-icon .destination-tag-pill-remove {
    width: 14px;
    height: 14px;
    font-size: 12px;
}

.mini-search-dropdown .domestic-region-list {
    max-height: 308px;
    padding: 8px 10px 0;
}

.mini-search-dropdown .domestic-region-title {
    padding: 7px 9px;
    font-size: 12px;
}

.mini-search-dropdown .domestic-prefecture-group {
    padding: 10px;
}

.mini-search-dropdown .domestic-city-group {
    padding: 8px;
}

.mini-search-dropdown .domestic-city-group-title {
    margin-bottom: 8px;
    font-size: 12px;
}

.mini-search-dropdown .domestic-city-group-options {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.mini-search-dropdown .domestic-prefecture-title {
    margin-bottom: 8px;
    font-size: 12px;
}

.mini-search-dropdown .domestic-region-options {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
}

.mini-search-dropdown .domestic-option-chip {
    min-height: 34px;
    padding: 5px 7px;
}

.mini-search-dropdown .domestic-actions {
    padding: 8px 10px 10px;
}

.mini-search-dropdown .search-result-group-title {
    text-align: left;
}

/* 修正迷你搜索下拉菜单的样式，和主搜索框保持一致 */
.mini-search-dropdown .city-icon {
    width: 24px;
    height: 24px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 5px;
    flex-shrink: 0;
    background: rgba(43, 102, 216, 0.12);
    color: #2b66d8;
}

.mini-search-dropdown .city-icon img {
    width: 16px;
}

.mini-search-dropdown .hotel-icon {
    width: 24px;
    height: 24px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 5px;
    flex-shrink: 0;
    background: rgba(15, 23, 42, 0.08);
    color: #0f172a;
}

.mini-search-dropdown .city-icon i,
.mini-search-dropdown .hotel-icon i {
    display: inline-block;
    font-size: 12px;
    line-height: 1;
    text-align: center;
}

.mini-search-dropdown .city-info {
    flex: 1;
    min-width: 0;
}

.mini-search-dropdown .city-main {
    display: flex;
    align-items: center;
    gap: 8px;
    line-height: 1.4;
}

.mini-search-dropdown .city-name {
    font-size: 14px;
    font-weight: 500;
}

.mini-search-dropdown .city-country {
    font-size: 12px;
    color: #666;
    line-height: 1.3;
}

/* 确保下拉菜单项有正确的布局 */
.mini-search-dropdown-item {
    padding: 12px 15px;
    border-bottom: 1px solid #f5f5f5;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    min-height: 50px;
}

.mini-search-dropdown-item:hover {
    background-color: #f8f9fa;
}

/* 儿童年龄选择模态框样式 */
.guests-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 20px;
}

.guests-modal {
    background: white;
    padding: 20px;
    width: 100%;
    max-width: 400px;
    max-height: 80vh;
    overflow-y: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.guests-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e1e5e9;
}

.guests-modal-header h3 {
    margin: 0;
    color: #0f294d;
    font-size: 18px;
}

.guests-modal-close {
    background: none;
    border: none;
    font-size: 24px;
    color: #666;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.guests-controls {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 25px;
}

.guest-control {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.control-label {
    flex: 1;
    line-height: 15px;
}

.label-main {
    display: block;
    font-weight: 500;
    color: #333;
}

.label-sub {
    font-size: 10px;
    color: #666;
}

.counter {
    display: flex;
    align-items: center;
    gap: 15px;
}

.counter-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid #d1d1d1;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #717171;
    font-weight: 700;
    font-size: 20px;
    user-select: none;
}

.counter-btn:hover {
    border-color: #2563eb;
    color: #2563eb;
}

.counter-value {
    font-weight: 400;
    min-width: 20px;
    text-align: center;
    color: #333;
}

.guests-modal-actions {
    text-align: center;
}

.guests-modal-confirm {
    background: #2563eb;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 3px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.guests-modal-confirm:hover {
    background: #0f8ae0;
}

/* 孩子年龄选择区域样式 */
.children-ages-section {
    padding-top: 15px;
    margin-top: 20px;
    border-top: 1px solid #e8e8e8;
}

.age-select-notice {
    font-size: 12px;
    color: #666;
    line-height: 1.4;
    margin-bottom: 15px;
    padding: 10px;
    background: white;
    border-left: 3px solid #2563eb;
}

.age-select-content {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    padding: 10px;
    background: white;
    border-radius: 4px;
    border: 1px solid #e8e8e8;
}

.age-select-desc {
    flex: 1;
    font-size: 14px;
    color: #0f294d;
}

.age-select-descName {
    font-weight: 600;
    margin-right: 5px;
}

.age-select-must {
    color: #ff4757;
    margin-left: 2px;
}

.age-select-text {
    flex: 2;
    display: flex;
    align-items: center;
    gap: 8px;
}

.age-select-agedesc {
    font-size: 12px;
    color: #666;
    white-space: nowrap;
}

.age-select-wrap-v8 {
    flex: 1;
    padding: 8px 12px;
    border: 1px solid #d1d1d1;
    border-radius: 4px;
    font-size: 16px;
    background: white;
    cursor: pointer;
}

.age-select-wrap-v8:focus {
    outline: none;
    border-color: #2563eb;
}

.room-limit-tip {
    font-size: 12px;
    color: red;
    margin: 10px 0;
}

/* 目的地选择模态框样式 */
.destination-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 20px;
}

.destination-modal {
    background: white;
    padding: 20px;
    width: 100%;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.destination-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e1e5e9;
}

.destination-modal-header .destination-modal-close {
    background: none;
    border: none;
    font-size: 20px;
    color: #666;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.destination-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 0;
}

.destination-option {
    padding: 15px;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.destination-option:hover {
    border-color: #2563eb;
    color: #2563eb;
}

.destination-option.selected {
    background: #2563eb;
    color: white;
    border-color: #2563eb;
}

.destination-modal-actions {
    text-align: center;
}

.destination-modal-confirm {
    background: #2563eb;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.destination-modal-confirm:hover {
    background: #0f8ae0;
}

/* 移动端适配 */
@media screen and (max-width: 767px) {
    .guests-modal {
        margin: 20px;
        max-height: calc(100vh - 40px);
    }

    .destination-modal {
        margin: 20px;
        max-height: calc(100vh - 40px);
    }

    .age-select-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .age-select-text {
        width: 100%;
    }

    .mini-search-dropdown {
        width: 100% !important;
        left: 0 !important;
    }
}

/* 确保迷你搜索框输入框有正确的z-index */
.mini-search-input {
    position: relative;
    z-index: 1;
}

.mini-input-with-icon {
    position: relative;
}

/* 修复迷你搜索框的日期选择器显示 */
.mini-date-input {
    background: white;
    cursor: pointer;
}

.hotel-search-list-sidebar-section {
    margin-bottom: 0;
    padding: 25px;
    border-bottom: 1px solid #f0f0f0;
}

.hotel-search-list-sidebar-section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.hotel-search-list-sidebar-section-title {
    font-size: 16px;
    font-weight: 700;
    color: #0f294d;
    margin-bottom: 12px;
}

.hotel-search-list-sidebar-section-desc {
    font-size: 12px;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.4;
}

/* 价格范围滑块 */
.hotel-search-list-sidebar-price-range-slider {
    position: relative;
    height: 4px;
    background: #e0e0e0;
    border-radius: 2px;
    margin: 25px 0;
}

.hotel-search-list-sidebar-price-range-track {
    position: absolute;
    height: 4px;
    background: #2563eb;
    border-radius: 2px;
    left: 0%;
    right: 50%;
}

.hotel-search-list-sidebar-price-range-input {
    position: absolute;
    width: 100%;
    height: 4px;
    background: none;
    pointer-events: none;
    -webkit-appearance: none;
    appearance: none;
    top: 0;
    margin: 0;
}

.hotel-search-list-sidebar-price-range-input::-webkit-slider-thumb {
    pointer-events: all;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #2563eb;
    border: 2px solid white;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    -webkit-appearance: none;
}

.hotel-search-list-sidebar-price-range-input::-moz-range-thumb {
    pointer-events: all;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #2563eb;
    border: 2px solid white;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

.hotel-search-list-sidebar-price-range-values {
    display: flex;
    justify-content: space-between;
}

.hotel-search-list-sidebar-price-range-value {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hotel-search-list-sidebar-price-range-label {
    font-size: 11px;
    color: #666;
    margin-bottom: 4px;
}

.hotel-search-list-sidebar-price-range-amount {
    font-size: 14px;
    font-weight: 600;
    color: #0f294d;
}

/* 复选框组样式 */
.hotel-search-list-sidebar-checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hotel-search-list-sidebar-checkbox {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
    color: #333;
}

.hotel-search-list-sidebar-checkbox input {
    margin-right: 10px;
    width: 16px;
    height: 16px;
    accent-color: #2563eb;
    position: relative;
}

/* 自定义复选框样式 - 使用CSS绘制对勾 */
.hotel-search-list-sidebar-checkbox input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    background-color: white;
    border: 2px solid #ccc;
    border-radius: 3px;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.hotel-search-list-sidebar-checkbox input[type="checkbox"]:checked {
    background-color: #2563eb;
    border-color: #2563eb;
}

.hotel-search-list-sidebar-checkbox input[type="checkbox"]:checked::after {
    content: "";
    position: absolute;
    width: 4px;
    height: 8px;
    border: solid white;
    border-width: 0 2px 2px 0;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
}

.hotel-search-list-sidebar-checkbox-text {
    flex: 1;
}

/* 评分选项样式 */
.hotel-search-list-sidebar-rating {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hotel-search-list-sidebar-rating-option {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.hotel-search-list-sidebar-rating-option input {
    margin-right: 12px;
    width: 16px;
    height: 16px;
    accent-color: #2563eb;
}

/* 自定义单选按钮样式 - 确保选中时为白色圆点 */
.hotel-search-list-sidebar-rating-option input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    background-color: white;
    border: 2px solid #ccc;
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.hotel-search-list-sidebar-rating-option input[type="radio"]:checked {
    background-color: #2563eb;
    border-color: #2563eb;
}

.hotel-search-list-sidebar-rating-option input[type="radio"]:checked::after {
    content: "";
    position: absolute;
    width: 6px;
    height: 6px;
    background-color: white;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hotel-search-list-sidebar-rating-stars {
    margin-right: 10px;
}

.hotel-search-list-sidebar-rating-stars img {
    width: 15px;
}

.hotel-search-list-sidebar-rating-stars i {
    color: #ffc11c;
    font-size: 12px;
    margin-right: 1px;
}

.hotel-search-list-sidebar-rating-stars i.far {
    color: #ddd;
}

.hotel-search-list-sidebar-rating-text {
    font-size: 14px;
    color: #333;
}

/* 应用按钮 */
.hotel-search-list-sidebar-apply {
    background: #2563eb;
    color: #fff;
    border: none;
    padding: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 8px;
}

.hotel-search-list-sidebar-apply:hover {
    box-shadow: 0 4px 12px rgba(255, 193, 28, 0.4);
}

/* 主区域样式 */
/* 酒店列表头部布局 */
.hotel-search-list-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
    gap: 20px;
}

.hotel-search-list-header-left {
    flex: 1;
}

.hotel-search-list-header-title {
    font-size: 28px;
    font-weight: 700;
    color: #0f294d;
    margin-bottom: 8px;
}

.hotel-search-list-header-results {
    font-size: 14px;
    color: #666;
}

.hotel-search-list-header-results-count {
    font-weight: 600;
    color: #2563eb;
}

/* 排序下拉菜单样式 */
.hotel-search-list-sort {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 200px;
}

.sort-label {
    font-size: 14px;
    color: #666;
    font-weight: 500;
    white-space: nowrap;
}

.sort-dropdown {
    position: relative;
    flex: 1;
    min-width: 200px;
}

.sort-dropdown-toggle {
    width: 100%;
    background: white;
    border: 2px solid #e1e5e9;
    padding: 10px 16px;
    font-size: 14px;
    color: #333;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.sort-dropdown-toggle:hover {
    border-color: #2563eb;
}

.sort-dropdown-toggle:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(27, 161, 255, 0.1);
}

.sort-selected-text {
    color: #666;
}

.sort-dropdown-arrow {
    color: #666;
    font-size: 12px;
    transition: transform 0.3s ease;
}

.sort-dropdown.active .sort-dropdown-arrow {
    transform: rotate(180deg);
}

.sort-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 2px solid #e1e5e9;
    margin-top: 5px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    z-index: 100;
    display: none;
    max-height: 300px;
    overflow-y: auto;
}

.sort-dropdown.active .sort-dropdown-menu {
    display: block;
    animation: slideDown 0.3s ease;
}

.sort-dropdown-item {
    padding: 12px 16px;
    font-size: 14px;
    color: #333;
    cursor: pointer;
    transition: all 0.2s ease;
    border-bottom: 1px solid #f0f0f0;
}

.sort-dropdown-item:last-child {
    border-bottom: none;
}

.sort-dropdown-item:hover {
    background: #f8f9fa;
    color: #2563eb;
}

.sort-dropdown-item.active {
    background: #2563eb;
    color: white;
}

/* 动画 */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 移动端适配 */
@media screen and (max-width: 1024px) {
    .hotel-search-list-header {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }

    .hotel-search-list-sort {
        min-width: auto;
        justify-content: space-between;
    }

    .sort-dropdown {
        min-width: 200px;
    }
}

@media screen and (max-width: 767px) {
    .hotel-search-list-header-title {
        font-size: 24px;
    }

    .hotel-search-list-sort {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
    }

    .sort-label {
        text-align: left;
    }

    .sort-dropdown {
        min-width: auto;
    }
}

/* 酒店列表项样式 - 简化版 */
.hotel-search-list-items {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hotel-search-list-item {
    background: white;
    overflow: hidden;
    display: flex;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    cursor: pointer;
}

.hotel-search-list-item:hover {
    /* transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12); */
}

/* Swiper轮播样式 */
.hotel-search-list-item-image {
    width: 280px;
    height: 250px;
    /* 固定高度 */
    position: relative;
    flex-shrink: 0;
}

.hotel-search-list-item-image .swiper-horizontal,
.hotel-search-list-item-image .swiper {
    height: 100%;
}

.hotel-image-slider {
    width: 100%;
    height: 100%;
}

.hotel-image-slider .swiper-slide {
    position: relative;
}

.hotel-image-slider .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    /* 避免图片底部间隙 */
}

/* 自定义导航箭头 */
.hotel-image-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.8);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 10;
}

.hotel-image-prev {
    left: 10px;
}

.hotel-image-next {
    right: 10px;
}

.hotel-search-list-item-image:hover .hotel-image-nav {
    opacity: 1;
}

.hotel-image-nav:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-50%) scale(1.1);
}

.hotel-image-nav i {
    color: #333;
    font-size: 14px;
}

/* 自定义指示点 */
.hotel-image-dots {
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 6px;
    z-index: 10;
}

.hotel-image-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.hotel-image-dot.active {
    background: rgba(255, 255, 255, 0.9);
    transform: scale(1.2);
}

/* 单张图片隐藏导航 */
.hotel-image-single .hotel-image-nav,
.hotel-image-single .hotel-image-dots {
    display: none;
}



/* 内容区域 */
.hotel-search-list-item-content {
    flex: 1;
    padding: 16px;
    display: flex;
    flex-direction: column;
}

/* 头部信息 - 紧凑版 */
.hotel-search-list-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 8px;
}

.hotel-search-list-item-title {
    font-size: 16px;
    font-weight: 700;
    color: #0f294d;
    line-height: 1.4;
    margin: 0;
    flex: 1;
    margin-right: 15px;
}

.hotel-search-list-item-rating {
    background: #f8f9fa;
    color: #666;
    padding: 4px 8px;
    border-radius: 4px;
    text-align: center;
    min-width: 70px;
    flex-shrink: 0;
    border: 1px solid #e9ecef;
}

.hotel-search-list-item-rating-score {
    font-size: 14px;
    font-weight: 700;
    color: #2563eb;
}

.hotel-search-list-item-rating-total {
    font-size: 11px;
    color: #999;
}

.hotel-search-list-item-rating-count {
    display: block;
    font-size: 10px;
    color: #999;
    margin-top: 1px;
}

/* 位置信息 */
.hotel-search-list-item-location {
    display: flex;
    align-items: center;
    color: #666;
    font-size: 13px;
    margin-bottom: 12px;
}

.hotel-search-list-item-location-icon {
    margin-right: 5px;
    width: 15px;
    text-align: center;
    color: #2563eb;
}

/* 特色信息 */
.hotel-search-list-item-features {
    display: flex;
    gap: 15px;
    margin-bottom: 12px;
}

.hotel-search-list-item-features-group {
    display: flex;
    align-items: center;
    gap: 6px;
}

.hotel-search-list-item-features-label {
    font-size: 12px;
    color: #666;
}

.hotel-search-list-item-features-value {
    font-size: 12px;
    color: #333;
    font-weight: 500;
}

/* 星级信息 */
.hotel-search-list-item-stars {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
}

.hotel-search-list-item-stars:only-child {
    gap: 0;
}

.hotel-search-list-item-stars-star {
    color: #ffc11c;
    font-size: 12px;
}

.hotel-search-list-item-stars-text {
    font-size: 12px;
    color: #666;
}

.hotel-google-rating {
    display: inline-flex;
    align-items: center;
    background: #f8f9fa;
    border: 1px solid #dadce0;
    border-radius: 4px;
    padding: 2px 8px;
    gap: 6px;
    height: 28px;
    box-sizing: border-box;
}

.hotel-google-rating-source {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    font-weight: 600;
    color: #4285F4;
    line-height: 1;
}

.hotel-google-rating-source::before {
    content: "";
    width: 14px;
    height: 14px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48"><path fill="%23EA4335" d="M24 9.5c3.54 0 6.71 1.22 9.21 3.6l6.85-6.85C35.9 2.38 30.47 0 24 0 14.62 0 6.51 5.38 2.56 13.22l7.98 6.19C12.43 13.72 17.74 9.5 24 9.5z"/><path fill="%234285F4" d="M46.98 24.55c0-1.57-.15-3.09-.38-4.55H24v9.02h12.94c-.58 2.96-2.26 5.48-4.78 7.18l7.73 6c4.51-4.18 7.09-10.36 7.09-17.65z"/><path fill="%23FBBC05" d="M10.53 28.59c-.48-1.45-.76-2.99-.76-4.59s.27-3.14.76-4.59l-7.98-6.19C.92 16.46 0 20.12 0 24c0 3.88.92 7.54 2.56 10.78l7.97-6.19z"/><path fill="%2334A853" d="M24 48c6.48 0 11.93-2.13 15.89-5.81l-7.73-6c-2.15 1.45-4.92 2.3-8.16 2.3-6.26 0-11.57-4.22-13.47-9.91l-7.98 6.19C6.51 42.62 14.62 48 24 48z"/><path fill="none" d="M0 0h48v48H0z"/></svg>') no-repeat center;
    background-size: contain;
}

.hotel-google-rating-score {
    font-size: 14px;
    font-weight: 700;
    color: #3c4043;
    display: flex;
    align-items: center;
    gap: 3px;
    line-height: 1;
}

.hotel-google-rating-score::after {
    content: "/5.0";
    font-size: 11px;
    color: #70757a;
    font-weight: 400;
}

.hotel-google-rating--list {
    margin: 0;
}

.hotel-google-rating--detail {
    margin: 0;
}

/* 未评级样式 */
.hotel-search-list-item-unrated {
    color: #999;
    font-size: 12px;
    font-style: italic;
    background: #f8f9fa;
    padding: 4px 8px;
    border-radius: 4px;
    border: 1px solid #e9ecef;
}

/* 服务式公寓样式 */
.hotel-search-list-item-apartment {
    color: #2563eb;
    font-size: 12px;
    background: #f0f8ff;
    padding: 4px 8px;
    border-radius: 4px;
    border: 1px solid #d1e9ff;
}

/* 调整星星容器布局 */
.hotel-search-list-item-stars-container {
    display: flex;
    gap: 1px;
    align-items: center;
}

/* 操作区域 */
.hotel-search-list-item-actions {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: auto;
}

.hotel-search-list-item-price {
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: flex-start;
}

.hotel-search-list-item-price-info {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 2px;
}

.hotel-search-list-item-price-original {
    font-size: 13px;
    color: #999;
    text-decoration: line-through;
}

.hotel-search-list-item-tag-promo {
    background: #ff4757;
    color: white;
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 11px;
    font-weight: 600;
}

.hotel-search-list-item-price-current {
    display: flex;
    align-items: baseline;
    gap: 2px;
    line-height: 1;
}

.hotel-search-list-item-price-currency {
    font-size: 14px;
    font-weight: 700;
    color: #0f294d;
}

.hotel-search-list-item-price-amount {
    font-size: 22px;
    font-weight: 800;
    color: #0f294d;
    letter-spacing: -0.5px;
}

.hotel-search-list-item-price-suffix {
    display: none;
    font-size: 12px;
    font-weight: 600;
    color: #5c697e;
    margin-left: 2px;
}

.hotel-search-list-item-price-total {
    display: flex;
    align-items: baseline;
    gap: 4px;
    font-size: 13px;
    color: #5c697e;
    margin-top: 2px;
}

.hotel-search-list-item-price-total-label {
    color: #5c697e;
}

.hotel-search-list-item-price-total-value {
    color: #5c697e;
}

.hotel-search-list-item-price-unit {
    display: inline-block;
    padding: 3px 6px;
    background: #f4f6f8;
    border-radius: 4px;
    font-size: 11px;
    color: #5c697e;
    line-height: 1.2;
    margin-top: 4px;
}

.hotel-search-list-item-book {
    display: inline-block;
    text-decoration: none;
    text-align: center;
    background: #2563eb;
    color: #fff;
    border: none;
    padding: 10px 24px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.hotel-search-list-item-book:hover {
    background: #001E48;
}

/* 加载和空状态样式 */
.loading-message {
    text-align: center;
    padding: 40px 20px;
    color: #666;
    font-size: 16px;
}

.loading-message i {
    margin-right: 10px;
    color: #2563eb;
}

.no-results-message {
    text-align: center;
    padding: 60px 20px;
    color: #999;
    font-size: 16px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e1e5e9;
}

/* 移动端适配 */
@media screen and (max-width: 1024px) {
    .hotel-search-list-item {
        flex-direction: column;
    }

    .hotel-search-list-item-image {
        width: 100%;
        height: 220px;
    }
}

@media screen and (max-width: 767px) {
    .hotel-search-list-item-content {
        padding: 12px;
    }

    .hotel-search-list-item-header {
        flex-direction: column;
        gap: 8px;
    }

    .hotel-search-list-item-title {
        margin-right: 0;
    }

    .hotel-google-rating--list {
        padding: 4px 6px;
    }

    .hotel-google-rating-source {
        font-size: 10px;
    }

    .hotel-google-rating-score {
        font-size: 13px;
    }

    .hotel-search-list-item-features {
        flex-direction: column;
        gap: 8px;
    }

    .hotel-search-list-item-actions {
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
    }

    .hotel-search-list-item-price {
    }

    .hotel-search-list-item-price-current,
    .hotel-search-list-item-price-total {
    }

    .hotel-search-list-item-price-unit {
    }

    .loading-message,
    .no-results-message {
        padding: 30px 15px;
        font-size: 14px;
    }
}

/* 移动端Swiper宽度修复 */
@media screen and (max-width: 1024px) {

    .hotel-search-list-item-image,
    .hotel-search-list-item-image .swiper,
    .hotel-search-list-item-image .swiper-initialized,
    .hotel-search-list-item-image .swiper-horizontal,
    .hotel-search-list-item-image .swiper-backface-hidden,
    .hotel-search-list-item-image .swiper-wrapper,
    .hotel-search-list-item-image .swiper-slide {
        width: 100% !important;
        max-width: 100% !important;
    }
}

/* 迷你搜索框下拉菜单样式 */
.mini-search-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: min(620px, calc(100% + 120px));
    min-width: 420px;
    background: white;
    border: 1px solid #e8e8e8;
    border-top: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 80;
    max-height: 400px;
    overflow: hidden;
    display: none;
}

.mini-search-dropdown.dropdown-mode-popular {

}

.mini-search-dropdown.dropdown-mode-results {
    max-height: 400px;
    overflow: hidden;
}

.mini-search-dropdown.dropdown-mode-popular .city-search-results,
.mini-search-dropdown.dropdown-mode-popular .dropdown-section {
    max-height: none;
    overflow: visible;
}

.mini-search-dropdown.dropdown-mode-results .city-search-results {
    max-height: 400px;
    overflow-y: auto;
}

/* 热门城市网格 - 迷你搜索框 */
.mini-search-dropdown .destination-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    padding: 15px;
    max-height: none;
}


.mini-search-dropdown .overseas-popular-groups {
    padding: 10px 15px 15px;
    max-height: 320px;
    overflow-y: auto;
}

.mini-search-dropdown .overseas-featured-cities {
    margin-bottom: 12px;
}

.mini-search-dropdown .overseas-featured-cities-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    padding: 0 15px 15px;
    max-height: none;
    overflow: visible;
    padding-top: 0;
}

.mini-search-dropdown .overseas-featured-city-item {
    min-height: 35px;
    padding: 5px 12px;
    border: 0;
    border-radius: 0;
    text-align: left;
    justify-content: flex-start;
    background: white;
    font-size: 14px;
}

.mini-search-dropdown .overseas-featured-city-item:hover {
    background: #2563eb;
    color: white;
}

.mini-search-dropdown .overseas-city-group + .overseas-city-group {
    margin-top: 14px;
}

.mini-search-dropdown .overseas-city-group-title {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 0 0px;
    padding: 8px 12px;
    border: 0;
    appearance: none;
    background: #f6f8fb;
    color: #4f6b85;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
    text-align: left;
    cursor: pointer;
}

.mini-search-dropdown .overseas-city-group-title::after {
    content: "+";
    font-size: 14px;
    line-height: 1;
    color: #6f8aa5;
}

.mini-search-dropdown .overseas-city-group.is-expanded .overseas-city-group-title::after {
    content: "−";
}

.mini-search-dropdown .overseas-city-group-body {
    display: block;
    max-height: 0;
    overflow: hidden;
    pointer-events: none;
    opacity: 0;
    transform: translateY(-4px);
    transition: max-height 0.28s ease, opacity 0.18s ease, transform 0.18s ease;
    will-change: max-height, opacity, transform;
}

.mini-search-dropdown .overseas-city-group.is-expanded .overseas-city-group-body {
    pointer-events: auto;
    opacity: 1;
    transform: translateY(0);
}

.mini-search-dropdown .overseas-city-group .destination-grid {
    padding: 0;
    margin-bottom: 0;
}

/* 搜索结果项目样式 */
.mini-search-dropdown-item {
    display: flex;
    align-items: flex-start;
    padding: 12px 15px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    border-bottom: 1px solid #f0f0f0;
}

.mini-search-dropdown-item:hover {
    background-color: #f8f9fa;
}

.mini-search-dropdown-item .city-icon {
    width: 24px;
    height: 24px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: rgba(43, 102, 216, 0.12);
    color: #2b66d8;
}

.mini-search-dropdown-item .city-icon img {
    width: 16px;
    height: 16px;
}

.mini-search-dropdown-item .hotel-icon {
    width: 24px;
    height: 24px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: rgba(15, 23, 42, 0.08);
    color: #0f172a;
}

.mini-search-dropdown-item .city-icon i,
.mini-search-dropdown-item .hotel-icon i {
    display: inline-block;
    font-size: 12px;
    line-height: 1;
    text-align: center;
}

.mini-search-dropdown-item .city-info {
    flex: 1;
}

.mini-search-dropdown-item .city-main {
    display: flex;
    flex-direction: column;
    /* justify-content: space-between; */
    align-items: flex-start;
}

.mini-search-dropdown-item .city-name {
    font-weight: 500;
    color: #333;
}

.mini-search-dropdown-item .city-country {
    font-size: 12px;
    color: #666;
}

/* 搜索提示和空状态 */
.mini-search-dropdown .no-results {
    padding: 20px 16px;
    text-align: center;
    color: #999;
    font-size: 14px;
}

/* 下拉菜单部分标题 */
.mini-search-dropdown .dropdown-section h4 {
    padding: 16px 16px 10px;
    margin: 0;
    font-size: 17px;
    color: #0f294d;
    font-weight: 600;
}

.hotel-search-list-sidebar-actions {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hotel-search-list-sidebar-reset {
    background: #f8f9fa;
    color: #666;
    border: 1px solid #e1e5e9;
    padding: 12px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hotel-search-list-sidebar-reset:hover {
    background: #e9ecef;
}

.filter-loading {
    text-align: center;
    padding: 60px 20px;
    color: #2563eb;
    font-size: 16px;
}

.filter-loading i {
    margin-right: 10px;
    font-size: 20px;
}

.load-more-loading {
    text-align: center;
    padding: 30px 20px;
    color: #2563eb;
    font-size: 14px;
    border-top: 1px solid #e1e5e9;
}

.load-more-loading i {
    margin-right: 10px;
    font-size: 16px;
}

/* 没有更多数据提示样式 */
.no-more-data {
    text-align: center;
    padding: 40px 20px;
    margin: 20px 0;
    color: #666;
    font-size: 14px;
    border-top: 1px solid #e0e0e0;
    background: #f9f9f9;
    border-radius: 8px;
}

@media screen and (max-width: 767px) {
    html.hotel-panel-lock,
    body.hotel-panel-lock {
        overflow: hidden !important;
        height: 100% !important;
        touch-action: none !important;
    }

    .hotel-mobile-fullscreen-panel {
        position: fixed;
        inset: 0;
        z-index: 30000;
        background: #f5f6f8;
        display: none;
        flex-direction: column;
    }

    .hotel-mobile-fullscreen-panel.show {
        display: flex;
    }

    .hotel-mobile-panel-header {
        flex: 0 0 auto;
        background: #fff;
        padding: 14px 14px 10px;
        border-bottom: 1px solid #edf0f5;
    }

    .hotel-mobile-panel-topbar {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 12px;
    }

    .hotel-mobile-panel-close {
        width: 32px;
        height: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 26px;
        line-height: 1;
        color: #183153;
        background: none;
        border: none;
        cursor: pointer;
        user-select: none;
        padding: 0;
    }

    .hotel-mobile-panel-title {
        flex: 1;
        text-align: center;
        font-size: 16px;
        font-weight: 600;
        color: #111827;
        padding: 0 10px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .hotel-mobile-panel-spacer {
        width: 32px;
        flex: 0 0 32px;
    }

    .hotel-mobile-panel-search-wrap {
        position: relative;
        display: flex;
        align-items: center;
    }

    .hotel-mobile-panel-search-icon {
        position: absolute;
        left: 12px;
        top: 50%;
        transform: translateY(-50%);
        width: 18px;
        height: 18px;
        opacity: 0.55;
        pointer-events: none;
    }

    .hotel-mobile-panel-input {
        width: 100%;
        height: 42px;
        border: 1px solid #cfd6df;
        border-radius: 8px;
        background: #fff;
        padding: 0 12px 0 40px;
        font-size: 15px;
        outline: none;
        box-sizing: border-box;
        color: #1a1a2e;
    }

    .hotel-mobile-panel-input:focus {
        border-color: #2563eb;
        box-shadow: 0 0 0 2px rgba(27, 161, 255, 0.12);
    }

    .hotel-mobile-panel-body {
        flex: 1 1 auto;
        min-height: 0;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        background: #fff;
        padding: 12px 14px 20px;
    }

    .hotel-mobile-panel-loading {
        padding: 24px 0;
        text-align: center;
        font-size: 14px;
        color: #999;
    }

    .hotel-mobile-panel-footer {
        flex: 0 0 auto;
        background: #fff;
        border-top: 1px solid #edf0f5;
        padding: 12px 16px;
        padding-bottom: calc(12px + env(safe-area-inset-bottom));
        display: flex;
        justify-content: center;
    }

    .hotel-mobile-panel-confirm {
        width: 100%;
        max-width: 340px;
        height: 46px;
        border: none;
        border-radius: 8px;
        background: #2563eb;
        color: #fff;
        font-size: 16px;
        font-weight: 700;
        cursor: pointer;
        letter-spacing: 0.5px;
    }

    .hotel-mobile-panel-confirm:active {
        background: #1781cc;
    }

    .hotel-mobile-panel-guests-content .dropdown-header,
    .hotel-mobile-panel-guests-content .dropdown-confirm {
        display: none !important;
    }

    .hotel-mobile-panel-guests-content {
        background: transparent;
        border: none;
        box-shadow: none;
        padding: 0;
    }

    html.hotel-litepicker-lock {
        overflow: hidden !important;
    }

    body.hotel-litepicker-lock {
        overflow: hidden !important;
        touch-action: none !important;
        -webkit-overflow-scrolling: auto !important;
        width: 100% !important;
    }

    #hotel-litepicker-wrapper {
        display: none;
        position: fixed;
        inset: 0;
        z-index: 29000;
        background: #fff;
        flex-direction: column;
        overflow: hidden;
    }

    #hotel-litepicker-wrapper .litepicker-mobile-topbar {
        height: 52px;
        flex: 0 0 52px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 10px;
        border-bottom: 1px solid #e9edf3;
        background: #fff;
    }

    #hotel-litepicker-wrapper .litepicker-mobile-title {
        flex: 1;
        text-align: center;
        font-size: 18px;
        font-weight: 600;
        color: #17325c;
    }

    #hotel-litepicker-wrapper .litepicker-mobile-close,
    #hotel-litepicker-wrapper .litepicker-mobile-topbar-right {
        width: 40px;
        flex: 0 0 40px;
    }

    #hotel-litepicker-wrapper .litepicker-mobile-close {
        height: 40px;
        border: 0;
        background: transparent;
        font-size: 32px;
        line-height: 40px;
        color: #17325c;
        padding: 0;
        cursor: pointer;
    }

    #hotel-litepicker-wrapper .litepicker {
        flex: 1 1 auto !important;
        min-height: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        max-height: none !important;
        position: static !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        background: #fff !important;
        transform: none !important;
        display: flex !important;
        flex-direction: column !important;
        overflow: hidden !important;
        margin: 0 !important;
        padding: 0 !important;
        z-index: auto !important;
    }

    #hotel-litepicker-wrapper .litepicker .container__main {
        flex: 1 1 auto !important;
        min-height: 0 !important;
        display: flex !important;
        margin-left: 0 !important;
    }

    #hotel-litepicker-wrapper .litepicker .container__months {
        width: 100% !important;
        max-width: none !important;
        min-width: 0 !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        display: flex !important;
        flex-wrap: nowrap !important;
        flex-direction: column !important;
        flex: 1 1 auto !important;
        overflow-y: auto !important;
        overflow-x: hidden !important;
        -webkit-overflow-scrolling: touch !important;
        padding-bottom: 0 !important;
    }

    #hotel-litepicker-wrapper .litepicker .month-item {
        width: 100% !important;
        min-width: 100% !important;
        padding: 0 !important;
        box-sizing: border-box !important;
    }

    #hotel-litepicker-wrapper .litepicker .month-item-header {
        height: 50px !important;
        padding: 0 12px !important;
        border-bottom: 1px solid #f1f3f7 !important;
        display: flex !important;
        align-items: center !important;
        font-size: 18px !important;
        color: #0f2b5b !important;
    }

    #hotel-litepicker-wrapper .litepicker .month-item-weekdays-row {
        width: 100% !important;
        padding: 10px 0 6px !important;
        box-sizing: border-box !important;
    }

    #hotel-litepicker-wrapper .litepicker .month-item-weekdays-row > div {
        font-size: 13px !important;
    }

    #hotel-litepicker-wrapper .litepicker .container__days {
        width: 100% !important;
        padding: 0 0 10px !important;
        box-sizing: border-box !important;
    }

    #hotel-litepicker-wrapper .litepicker .container__days > div,
    #hotel-litepicker-wrapper .litepicker .container__days > a {
        width: 14.2857% !important;
        height: 52px !important;
        padding: 0 !important;
        box-sizing: border-box !important;
    }

    #hotel-litepicker-wrapper .litepicker .day-item {
        height: 52px !important;
        display: flex !important;
        flex-direction: column;
        align-items: center !important;
        justify-content: center !important;
        font-size: 15px !important;
        line-height: 1 !important;
        position: relative !important;
        border-radius: 6px !important;
    }

    #hotel-litepicker-wrapper .litepicker .container__footer {
        display: none !important;
    }
}

.no-more-data span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.no-more-data span::before {
    content: "✓";
    color: #4CAF50;
    font-weight: bold;
}

/* 加载更多加载状态样式 */
.load-more-loading {
    text-align: center;
    padding: 30px 20px;
    margin: 20px 0;
    color: #666;
    font-size: 14px;
}

.load-more-loading .fa-spinner {
    margin-right: 8px;
    color: #2196F3;
}

/* 可选：添加动画效果 */
.no-more-data {
    animation: fadeInUp 0.5s ease-out;
}

.load-more-loading {
    animation: fadeIn 0.3s ease-out;
}

.load-more-loading {
    padding: 18px 12px 26px;
    margin: 14px 0 24px;
    border-top: 0;
    color: #12304f;
}

.load-more-loading--compact {
    min-height: 54px;
    padding: 10px 12px;
    margin: 8px 0 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f4faff;
    border: 1px solid #d5ebff;
}

.load-more-mini-dots {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.load-more-mini-dots span {
    width: 8px;
    height: 8px;
    background: #2563eb;
    animation: loadMoreDotPulse 0.9s ease-in-out infinite;
}

.load-more-mini-dots span:nth-child(2) {
    animation-delay: 0.12s;
}

.load-more-mini-dots span:nth-child(3) {
    animation-delay: 0.24s;
}

@keyframes loadMoreDotPulse {
    0%,
    80%,
    100% {
        opacity: 0.35;
        transform: translateY(0);
    }

    40% {
        opacity: 1;
        transform: translateY(-5px);
    }
}

.load-more-loading-card {
    display: flex;
    align-items: center;
    gap: 14px;
    width: min(520px, calc(100% - 24px));
    margin: 0 auto;
    padding: 16px 18px;
    background: #f3f9ff;
    border: 1px solid #c8e5ff;
    box-shadow: 0 8px 24px rgba(27, 161, 255, 0.14);
}

.load-more-loading-icon {
    display: grid;
    place-items: center;
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    color: #fff;
    background: #2563eb;
}

.load-more-loading-icon i {
    margin: 0;
    font-size: 20px;
}

.load-more-loading-copy {
    flex: 1;
    min-width: 0;
    text-align: left;
}

.load-more-loading-title {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.35;
}

.load-more-loading-bars {
    display: grid;
    gap: 7px;
    margin-top: 10px;
}

.load-more-loading-bars span {
    display: block;
    height: 8px;
    background: linear-gradient(90deg, #d9ecff 0%, #ffffff 45%, #d9ecff 90%);
    background-size: 180% 100%;
    animation: loadMoreShimmer 1.1s linear infinite;
}

.load-more-loading-bars span:first-child {
    width: 88%;
}

.load-more-loading-bars span:last-child {
    width: 58%;
}

@keyframes loadMoreShimmer {
    from {
        background-position: 180% 0;
    }

    to {
        background-position: -180% 0;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* 置顶酒店容器样式 */
.pinned-hotels-container {
    margin-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 20px;
}

/* 城市酒店容器样式 */
.city-hotels-container {
    /* 可以添加特定样式，或保持原样 */
}

/* 置顶酒店特殊样式 */
.hotel-search-list-item.pinned {
    background-color: #f8f9fa;
    border: 2px solid #2563eb;
    border-radius: 5px;
    position: relative;
}

.city-hotels-title {
    padding: 0px 0 10px;
    font-size: 1.25rem;
    font-weight: bold;
    color: #0f294d;
}

/* 方案3：分层淡入淡出 - 类似Facebook */
.skeleton-hotel-item {
    background-color: #f5f5f5;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.skeleton-hotel-item::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    transform: translateX(-100%);
    background: linear-gradient(90deg,
            rgba(255, 255, 255, 0) 0,
            rgba(255, 255, 255, 0.2) 20%,
            rgba(255, 255, 255, 0.5) 60%,
            rgba(255, 255, 255, 0));
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    100% {
        transform: translateX(100%);
    }
}

.skeleton-hotel-image,
.skeleton-hotel-title,
.skeleton-hotel-location,
.skeleton-hotel-feature,
.skeleton-hotel-stars,
.skeleton-hotel-price,
.skeleton-hotel-button {
    background-color: #e0e0e0;
    border-radius: 4px;
}

/* 骨架屏酒店卡片结构 */
.skeleton-hotel-content {
    display: flex;
    width: 100%;
    padding: 20px;
}

.skeleton-hotel-image {
    width: 280px;
    height: 200px;
    background-color: #e0e0e0;
    border-radius: 8px;
    margin-right: 20px;
    flex-shrink: 0;
}

.skeleton-hotel-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.skeleton-hotel-title {
    width: 70%;
    height: 24px;
    background-color: #e0e0e0;
    border-radius: 4px;
    margin-bottom: 12px;
}

.skeleton-hotel-location {
    width: 50%;
    height: 16px;
    background-color: #e0e0e0;
    border-radius: 4px;
    margin-bottom: 16px;
}

.skeleton-hotel-features {
    display: flex;
    gap: 20px;
    margin-bottom: 16px;
}

.skeleton-hotel-feature {
    width: 100px;
    height: 16px;
    background-color: #e0e0e0;
    border-radius: 4px;
}

.skeleton-hotel-stars {
    width: 30%;
    height: 16px;
    background-color: #e0e0e0;
    border-radius: 4px;
    margin-bottom: 20px;
}

.skeleton-hotel-footer {
    display: flex;
    justify-content: space-between;
    /* 这个应该让左右分开 */
    align-items: center;
    width: 100%;
    /* 确保占满宽度 */
}

.skeleton-hotel-price {
    width: 120px;
    height: 32px;
    background-color: #e0e0e0;
    border-radius: 4px;
}

.skeleton-hotel-button {
    width: 150px;
    height: 48px;
    background-color: #e1e9ee;
    border-radius: 4px;
}

/* 移动端适配 */
@media (max-width: 768px) {
    .skeleton-hotel-content {
        flex-direction: column;
    }

    .skeleton-hotel-image {
        width: 100%;
        height: 200px;
        margin-right: 0;
        margin-bottom: 15px;
    }

    .skeleton-hotel-title {
        width: 90%;
    }

    .skeleton-hotel-location {
        width: 70%;
    }

    .skeleton-hotel-stars {
        width: 50%;
    }
}

/* 分页组件样式 */
.pagination-container {
    margin: 40px 0;
    display: flex;
    justify-content: center;
}

.pagination {
    display: flex;
    gap: 8px;
    align-items: center;
}

.pagination-btn {
    min-width: 40px;
    height: 40px;
    padding: 0 8px;
    border: 1px solid #e1e5e9;
    background: white;
    color: #0f294d;
    font-size: 14px;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.pagination-btn:hover:not([disabled]) {
    border-color: #2563eb;
    color: #2563eb;
    background: #f0f8ff;
}

.pagination-btn.active {
    background: #2563eb;
    color: white;
    border-color: #2563eb;
}

.pagination-btn[disabled] {
    background: #f5f7fa;
    color: #c0c4cc;
    cursor: not-allowed;
}

.pagination-ellipsis {
    color: #909399;
}

/* 酒店地图模态框样式 */
.hotel-map-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 3000;
    backdrop-filter: blur(5px);
}

.hotel-map-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hotel-map-modal-container {
    width: 90%;
    height: 90%;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.hotel-map-modal-header {
    padding: 15px 25px;
    background: white;
    border-bottom: 1px solid #e1e5e9;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.map-modal-info h3 {
    margin: 0;
    color: #0f294d;
    font-size: 18px;
}

.map-results-count {
    font-size: 13px;
    color: #666;
}

.map-results-note {
    margin-left: 8px;
    font-size: 12px;
    color: #7a7a7a;
    line-height: 1.4;
}

.map-modal-close {
    background: #f5f7fa;
    border: none;
    width: 36px;
    height: 36px;
    min-width: 36px;
    min-height: 36px;
    flex: 0 0 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #0f294d;
}

.map-modal-close:hover {
    background: #e1e5e9;
    transform: rotate(90deg);
}

.hotel-map-modal-body {
    flex: 1;
    position: relative;
    background: #f0f2f5;
}

/* Leaflet Marker 样式 */
.hotel-map-marker {
    background: #2563eb;
    color: white;
    padding: 3px 12px;
    /* 增加左右间距 */
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    border: 2px solid white;
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-block;
    min-width: 65px;
    /* 设置最小宽度 */
    text-align: center;
    opacity: 0;
    animation: markerFadeIn 0.3s forwards ease-out;
    /* 替代飞行动画的淡入效果 */
}

@keyframes markerFadeIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}


.hotel-map-marker:hover {
    background: #0076cc;
    transform: scale(1.15);
    /* 稍微增加放大效果 */
    z-index: 1000 !important;
}

/* 确保 Marker 容器本身不剪裁内容 */
.custom-hotel-marker {
    display: block !important;
    overflow: visible !important;
    width: auto !important;
    height: auto !important;
}


.hotel-map-marker.selected {
    background: #ff5a5f;
}

/* Marker Popup 样式 */
.leaflet-popup-content-wrapper {
    padding: 0;
    border-radius: 8px;
    overflow: hidden;
}

.leaflet-popup-content {
    margin: 0;
    width: 240px !important;
}

.map-popup-card {
    width: 100%;
}

.map-popup-image {
    width: 100%;
    height: 140px;
    object-fit: cover;
}

.map-popup-content {
    padding: 12px;
}

.map-popup-title {
    margin: 0 0 6px 0;
    font-size: 15px;
    font-weight: 700;
    color: #0f294d;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.map-popup-price {
    margin-top: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.popup-price-amount {
    font-size: 16px;
    font-weight: 700;
    color: #2563eb;
}

.map-popup-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 6px;
}

.map-popup-btn {
    display: block;
    width: 100%;
    padding: 8px;
    background: #2563eb;
    color: white;
    text-align: center;
    border-radius: 4px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    margin-top: 10px;
    border: none;
    cursor: pointer;
}

.map-popup-btn:hover {
    background: #0076cc;
}

/* 移动端适配 */
@media screen and (max-width: 768px) {
        
    /* 分页组件样式 */
    .pagination-container {
        display: none;
    }

    .hotel-map-modal-container {
        width: 100%;
        height: 100%;
        border-radius: 0;
    }

    .hotel-map-modal-header {
        padding: 12px 15px;
    }

    .map-results-note {
        display: block;
        margin-left: 0;
        margin-top: 4px;
    }

    .leaflet-popup-content {
        width: 200px !important;
    }

    .map-popup-image {
        height: 100px;
    }
}

/* Leaflet MarkerCluster 聚合样式自定义 */
.leaflet-marker-icon.marker-cluster {
    background: transparent;
}

.marker-cluster div {
    width: 32px;
    height: 32px;
    margin-left: 4px;
    margin-top: 4px;
    text-align: center;
    border-radius: 50%;
    font-size: 14px;
    font-weight: 700;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #2563eb;
    border: 2px solid white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.marker-cluster-small div,
.marker-cluster-medium div,
.marker-cluster-large div {
    background-color: #2563eb !important;
    /* 强制统一主品牌蓝 */
}

.marker-cluster:hover div {
    transform: scale(1.1);
    background-color: #0076cc !important;
}


/* 确保 Leaflet 容器在 modal 中正确显示 */
#hotel-leaflet-map {
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* 酒店不可用提示横幅 */
.hotel-unavailable-notice {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: linear-gradient(135deg, #fff8f0 0%, #fff3e6 100%);
    border: 1px solid #f5c589;
    border-left: 4px solid #e8870a;
    border-radius: 8px;
    padding: 18px 20px;
    margin-bottom: 16px;
}

.hotel-unavailable-notice-icon {
    flex-shrink: 0;
    font-size: 22px;
    color: #e8870a;
    margin-top: 2px;
}

.hotel-unavailable-notice-content {
    flex: 1;
}

.hotel-unavailable-notice-title {
    font-size: 15px;
    font-weight: 700;
    color: #8a4a00;
    margin-bottom: 6px;
    line-height: 1.4;
}

.hotel-unavailable-notice-desc {
    font-size: 13px;
    color: #a05a10;
    line-height: 1.6;
}

.hotel-search-list-item:focus-visible {
    outline: 2px solid rgba(27, 161, 255, 0.28);
    outline-offset: 2px;
}

/* ========================================= */
/* SEARCH LIST TRUST BANNER                  */
/* ========================================= */
.search-list-trust-banner {
    background-color: #f6f9fc;
    border-bottom: 1px solid #eef2f6;
    padding: 46px 0;
    margin-bottom: 20px;
}

.search-list-trust-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.trust-banner-item {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    min-width: 200px;
}

.trust-banner-icon {
    color: #2563eb;
    font-size: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-banner-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.trust-banner-title {
    font-size: 15px;
    margin-bottom: 4px;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.2;
}

.trust-banner-desc {
    font-size: 13px;
    color: #64748b;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .search-list-trust-banner {
        padding: 12px 0;
        margin-bottom: 10px;
    }
    .search-list-trust-container {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 5px;
        scroll-snap-type: x mandatory;
        gap: 20px;
        justify-content: flex-start;
    }
    .search-list-trust-container::-webkit-scrollbar {
        display: none;
    }
    .trust-banner-item {
        flex: 0 0 85%;
        scroll-snap-align: start;
    }
}
