/* 修复页面溢出问题 - Fix Overflow Issues */

/* 防止整体页面水平滚动 */
html {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    position: relative;
    padding-top: 65px; /* 为固定的header留出空间，防止遮住标题 */
}

/* 移动端菜单打开时，确保body不阻止显示 */
body.carousel_solid_cfda {
    overflow-y: hidden !important;
    position: fixed !important;
    width: 100% !important;
}

/* 确保所有容器不会超出视口 */
* {
    box-sizing: border-box;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

/* 容器修复 */
.in_3748 {
    width: 100%;
    max-width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
    margin-left: auto;
    margin-right: auto;
    overflow-x: hidden;
}

/* 图片自适应 */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

.highlight_pressed_ba90,
.feature_aae1,
.block-focused-deda img {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

/* Header 修复 - 允许菜单突破容器，紧凑布局 */
.sidebar_5423 {
    width: 100%;
    max-width: 100%;
    overflow: visible !important;
    overflow-x: visible !important;
    overflow-y: visible !important;
    padding: 0.5rem 0 !important;
}

.wrapper-4572 {
    padding: 0.5rem 0 !important;
}

.sidebar_5423 .in_3748 {
    overflow: visible !important;
    position: static !important;
}

/* 移动端和平板时header完全不限制overflow */
@media (max-width: 1023px) {
    .sidebar_5423 {
        overflow: visible !important;
        contain: none !important;
    }
    
    .sidebar_5423 .in_3748 {
        overflow: visible !important;
        position: static !important;
    }
    
    .wrapper-4572 {
        overflow: visible !important;
    }
}

.wrapper-4572 {
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

/* 桌面端Header布局修复 - 按钮绝对靠右自适应 */
@media (min-width: 1024px) {
    .wrapper-4572 {
        flex-wrap: nowrap !important;
        gap: clamp(0.3rem, 1vw, 1rem);
        align-items: center;
        justify-content: space-between;
    }
    
    .image-231a {
        flex-shrink: 0;
        max-width: clamp(100px, 10vw, 140px);
    }
    
    .image-231a img {
        width: auto;
        height: auto;
        max-height: clamp(35px, 4vw, 45px);
        max-width: 100%;
        object-fit: contain;
    }
    
    .thumbnail_65da {
        flex: 0 1 auto;
        display: flex !important;
        min-width: 0;
    }
    
    .notice_a379 {
        flex-shrink: 0;
        display: flex !important;
        gap: clamp(0.4rem, 0.8vw, 0.75rem);
        margin-left: auto;
    }
    
    .notice_a379 .overlay_fe1f {
        padding: clamp(0.5rem, 0.7vw, 0.75rem) clamp(0.8rem, 1.2vw, 1.5rem);
        font-size: clamp(0.85rem, 0.9vw, 1rem);
        white-space: nowrap;
    }
    
    .highlight-508f,
    .lower_a5ad {
        display: none !important;
    }
}

.image-231a img {
    max-width: 150px;
    height: auto;
    max-height: 40px;
    width: auto;
    object-fit: contain;
}


/* 导航菜单修复 - 完全自适应布局 */
.thumbnail_65da {
    overflow: visible;
    flex: 1;
    min-width: 0;
}

/* 隐藏分组标签，让所有导航项平铺 */
.notice_mini_4117 {
    display: none;
}

.badge_2e4d {
    display: flex;
    flex-wrap: nowrap;
    gap: 0;
    align-items: center;
    justify-content: flex-end;
}

.widget_78f9 {
    display: flex;
}

.filter-4130 {
    display: flex;
    flex-wrap: nowrap;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 0;
}

.filter-4130 li {
    flex-shrink: 1;
    min-width: 0;
}

/* 桌面端导航 - 靠右对齐自适应 */
@media (min-width: 1024px) {
    .thumbnail_65da {
        display: flex !important;
        flex: 1;
        justify-content: flex-end;
    }
    
    .badge_2e4d {
        display: flex;
        justify-content: flex-end;
        flex-wrap: nowrap;
    }
    
    .summary_068e {
        white-space: nowrap;
        padding: 0.75rem clamp(0.25rem, 0.8vw, 0.8rem);
        display: block;
        font-size: clamp(0.85rem, 0.9vw, 1rem);
    }
}

/* Hero Section 修复 */
.layout-ecf5 {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    /* 减少顶部padding，因为body已经有padding-top为header留出空间 */
    padding-top: 3rem !important;
}

.description_upper_976d {
    width: 100%;
    max-width: 100%;
    display: grid;
    gap: 2rem;
}

.gallery-orange-2b80 {
    width: 100%;
    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.panel_0c66 {
    width: 100%;
    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* 按钮修复 */
.overlay_fe1f,
.north_9262,
.input_basic_2b60,
.label_stale_1876,
.message_huge_c253,
.filter_d0c6 {
    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    text-align: center;
}

.medium-b960,
.hovered-c4da {
    width: 100%;
    max-width: 100%;
}

/* Promo Highlights 修复 */
.light_31b3 {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    width: 100%;
    max-width: 100%;
}

.old_c721 {
    flex: 1 1 auto;
    min-width: 0;
    max-width: 100%;
}

/* Featured Promos 修复 */
.element_fast_acfa {
    width: 100%;
    max-width: 100%;
}

.up_d14a {
    width: 100%;
    max-width: 100%;
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.gold_1a96 {
    flex: 1;
    min-width: 0;
    overflow: hidden;
}

.container-28b9,
.complex_8f2d {
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Loyalty Program 修复 */
.pressed_0137 {
    width: 100%;
    max-width: 100%;
}

.blue-0b9e {
    width: 100%;
    max-width: 100%;
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.article-ce26 {
    flex: 1;
    min-width: 0;
}

.hero-d2ec {
    width: 100%;
    max-width: 100%;
}

.photo-lite-db6b {
    padding-left: 1.5rem;
    margin: 0;
}

.photo-lite-db6b li {
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Weekly Events 修复 */
.content_0a44 {
    display: grid;
    gap: 1rem;
    width: 100%;
    max-width: 100%;
}

.fast-dcd8 {
    width: 100%;
    max-width: 100%;
}

.simple_6c7b {
    width: 100%;
    max-width: 100%;
}

.search-ecb4,
.grid-d04e {
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Section Content 修复 */
.sidebar_61a0 {
    width: 100%;
    max-width: 100%;
    display: grid;
    gap: 2rem;
}

.overlay-steel-48b9,
.grid_yellow_6523 {
    width: 100%;
    max-width: 100%;
}

/* Final CTA 修复 */
.form_east_3122 {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.dark-3035 {
    width: 100%;
    max-width: 100%;
}

.inner-a273 {
    width: 100%;
    max-width: 100%;
}

.info-f72b {
    display: grid;
    gap: 1rem;
    width: 100%;
    max-width: 100%;
}

.active-west-1691 {
    width: 100%;
    max-width: 100%;
    min-width: 0;
}

/* Footer 修复 */
.heading-red-1c32 {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.description_6728 {
    display: grid;
    gap: 2rem;
    width: 100%;
    max-width: 100%;
}

.iron-9313 {
    width: 100%;
    max-width: 100%;
    min-width: 0;
}

.detail-cool-87ff {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bright-2c17 {
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: space-between;
    align-items: center;
}

.alert_cdbb {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

/* 响应式网格修复 */
@media (max-width: 639px) {
    /* 移动端 - 调整body顶部空间以适应header */
    body {
        padding-top: 60px;
    }
    
    /* 移动端菜单全屏展开 */
    .south-bb55 {
        top: 60px !important;
        height: calc(100vh - 60px) !important;
        min-height: calc(100vh - 60px) !important;
        z-index: 10000 !important;
    }
    
    .south-bb55.fn-active-a8cd {
        display: block !important;
        height: calc(100vh - 60px) !important;
        min-height: calc(100vh - 60px) !important;
    }
    
    /* 移动端Header布局 - 按钮和菜单横向对齐 */
    .wrapper-4572 {
        display: flex !important;
        flex-wrap: nowrap !important;
        align-items: center;
        gap: 0.5rem;
    }
    
    .image-231a {
        flex-shrink: 0;
        max-width: 100px;
    }
    
    .image-231a img {
        width: auto;
        height: auto;
        max-height: 35px;
        max-width: 100px;
        object-fit: contain;
    }
    
    .thumbnail_65da {
        display: none !important;
    }
    
    .highlight-508f {
        flex: 1;
        display: flex !important;
        justify-content: flex-end;
        margin-left: auto;
    }
    
    .image_purple_f707 {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
        white-space: nowrap;
    }
    
    .lower_a5ad {
        flex-shrink: 0;
        display: flex !important;
        padding: 0.5rem;
    }
    
    /* 移动端 - 减少hero-section顶部padding */
    .layout-ecf5 {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }
    
    .in_3748 {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
    
    .description_upper_976d {
        grid-template-columns: 1fr;
    }
    
    .sidebar_61a0 {
        grid-template-columns: 1fr;
    }
    
    .light_31b3 {
        flex-direction: column;
    }
    
    .content_0a44 {
        grid-template-columns: 1fr;
    }
    
    .info-f72b {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .description_6728 {
        grid-template-columns: 1fr;
    }
    
    .bright-2c17 {
        flex-direction: column;
        text-align: center;
    }
}

@media (min-width: 640px) and (max-width: 1023px) {
    /* 平板 - 调整body顶部空间 */
    body {
        padding-top: 65px;
    }
    
    /* 平板菜单全屏展开 */
    .south-bb55 {
        top: 65px !important;
        height: calc(100vh - 65px) !important;
        min-height: calc(100vh - 65px) !important;
        z-index: 10000 !important;
    }
    
    .south-bb55.fn-active-a8cd {
        display: block !important;
        height: calc(100vh - 65px) !important;
        min-height: calc(100vh - 65px) !important;
    }
    
    /* 平板Header布局 - 按钮和菜单横向对齐 */
    .wrapper-4572 {
        display: flex !important;
        flex-wrap: nowrap !important;
        align-items: center;
        gap: 1rem;
    }
    
    .image-231a {
        flex-shrink: 0;
        max-width: 120px;
    }
    
    .image-231a img {
        width: auto;
        height: auto;
        max-height: 38px;
        max-width: 120px;
        object-fit: contain;
    }
    
    .thumbnail_65da {
        display: none !important;
    }
    
    .highlight-508f {
        flex: 1;
        display: flex !important;
        justify-content: flex-end;
        margin-left: auto;
    }
    
    .image_purple_f707 {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
        white-space: nowrap;
    }
    
    .lower_a5ad {
        flex-shrink: 0;
        display: flex !important;
        padding: 0.6rem;
    }
    
    /* 平板 - 调整hero-section padding */
    .layout-ecf5 {
        padding-top: 2.5rem !important;
        padding-bottom: 2.5rem !important;
    }
    
    .in_3748 {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    
    .description_upper_976d {
        grid-template-columns: 1fr;
    }
    
    .sidebar_61a0 {
        grid-template-columns: 1fr;
    }
    
    .light_31b3 {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
    
    .content_0a44 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .info-f72b {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .description_6728 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    /* 桌面端 - 调整body顶部空间 */
    body {
        padding-top: 70px;
    }
    
    /* 桌面端 - 隐藏移动菜单 */
    .south-bb55 {
        display: none !important;
    }
    
    /* 桌面端 - 调整hero-section padding */
    .layout-ecf5 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }
    
    .in_3748 {
        max-width: 1000px;
        padding-left: 2rem;
        padding-right: 2rem;
    }
    
    .description_upper_976d {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }
    
    .sidebar_61a0 {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }
    
    .light_31b3 {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
    }
    
    .content_0a44 {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .info-f72b {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .description_6728 {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
}

/* 针对1024-1199px的中等桌面屏幕优化 - 已使用clamp()自适应，不需要固定值 */

@media (min-width: 1200px) {
    body {
        padding-top: 72px;
    }
    
    .layout-ecf5 {
        padding-top: 4rem !important;
        padding-bottom: 4rem !important;
    }
    
    .in_3748 {
        max-width: 1200px;
    }
    
    .content_0a44 {
        grid-template-columns: repeat(3, 1fr);
    }
    
    /* 大屏幕Header优化 - 已使用clamp()自适应 */
}

@media (min-width: 1400px) {
    body {
        padding-top: 75px;
    }
    
    .layout-ecf5 {
        padding-top: 5rem !important;
        padding-bottom: 5rem !important;
    }
    
    .in_3748 {
        max-width: 1400px;
    }
    
    /* 超大屏幕Header优化 - 已使用clamp()自适应 */
}

/* 移动端菜单修复 - 全屏展开，完全独立于header */
.south-bb55 {
    /* 默认隐藏 */
    display: none !important;
    /* 固定定位到viewport，不依赖父元素 */
    position: fixed !important;
    top: 60px !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    /* 使用viewport单位，完全独立 */
    width: 100vw !important;
    max-width: 100vw !important;
    min-height: calc(100vh - 60px) !important;
    height: calc(100vh - 60px) !important;
    max-height: calc(100vh - 60px) !important;
    /* 滚动设置 */
    overflow-y: auto !important;
    overflow-x: hidden !important;
    /* 超高z-index确保在最上层 */
    z-index: 10000 !important;
    /* 背景样式 */
    background: rgba(26, 11, 46, 0.98) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    /* 重置所有可能的限制 */
    transform: none !important;
    margin: 0 !important;
    padding: 0 !important;
    clip: auto !important;
    clip-path: none !important;
    contain: none !important;
    /* WebKit优化 */
    -webkit-overflow-scrolling: touch !important;
}

.south-bb55.fn-active-a8cd {
    display: block !important;
    min-height: calc(100vh - 60px) !important;
    height: calc(100vh - 60px) !important;
    max-height: calc(100vh - 60px) !important;
    overflow-y: auto !important;
    transform: none !important;
    clip: auto !important;
    clip-path: none !important;
}

.avatar_b5d6 {
    width: 100% !important;
    max-width: 100% !important;
    list-style: none !important;
    padding: 1.5rem 1rem !important;
    margin: 0 !important;
    min-height: 100vh !important;
    display: block !important;
}

.avatar_b5d6 li {
    display: block !important;
    width: 100% !important;
    margin: 0.5rem 0 !important;
}

.progress-139c {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    word-wrap: break-word;
    overflow-wrap: break-word;
    padding: 1rem 1.5rem !important;
    text-decoration: none;
}

/* 文本溢出修复 */
h1, h2, h3, h4, h5, h6,
p, span, div, a {
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
}

/* 表格修复 */
table {
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    display: block;
}

/* 预格式化文本修复 */
pre, code {
    max-width: 100%;
    overflow-x: auto;
    word-wrap: break-word;
    white-space: pre-wrap;
}

/* 确保视频和 iframe 自适应 */
video,
iframe,
embed,
object {
    max-width: 100%;
    height: auto;
}

/* 修复可能的负边距问题 */
.article_b400,
.content_2486,
.glass-9377 {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
}


/* css-noise: 4ba7 */
.phantom-card-b2 {
  padding: 0.2rem;
  font-size: 14px;
  line-height: 1.0;
}
