/* 主容器样式 */
.main-container {
    max-width: 500px;
    margin: 0 auto;
    padding: 0 0 20px 0;
}

/* 隐藏底部导航栏 */
.bottom-nav {
    display: none;
}

/* 游戏详情页头部区域样式 */
.game-hero-section {
    background-color: #807b4d;
}

.hero-media-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.hero-carousel {
    position: relative;
    width: 100%;
    height: 100%;
}

/* 头部导航浮于轮播上方 */
.hero-media-container { position: relative; }
.hero-navigation-header { z-index: 10; }

.carousel-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

.hero-background-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 轮播指示器样式已移除，使用进度点样式替代 */

/* Swiper集成覆盖：当 hero-carousel 作为 Swiper 容器时，交由 Swiper 控制显隐与布局 */
.hero-carousel.swiper-container .carousel-slides { position: relative; }
.hero-carousel.swiper-container .carousel-slide {
    position: relative;   /* 覆盖绝对定位，交由swiper横向排列 */
    opacity: 1;           /* 由swiper控制可见性，不再用active切换透明度 */
    transition: none;     /* 避免过渡影响swiper动画 */
}

/* 确保swiper容器与子元素充满可用高度 */
.hero-carousel.swiper-container { width: 100%; overflow: hidden; }
/* 轮播项容器固定为 16:9 比例，高度由宽度推导 */
.hero-carousel.swiper-container .swiper-wrapper { height: 100%; }
.hero-carousel.swiper-container .swiper-slide { height: 100%; width: 100%; }
/* 图片等比例填充容器 */
.hero-carousel.swiper-container .swiper-slide .hero-background-image { width: 100%; height: 100%; display: block; object-fit: cover; }


.hero-navigation-header {
    position: absolute;
    top: 4px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 12px;
    height: 46px;
}

/* 头部按钮通用样式 */
.hero-back-button,
.hero-search-button,
.hero-favorite-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.hero-back-button img {
    width: 100%;
    height: 100%;
}

.hero-back-button:hover,
.hero-search-button:hover,
.hero-favorite-button:hover {
    transform: scale(1.05);
}

.search-icon-stack,
.favorite-icon-stack {
    position: relative;
    width: 41.59px;
    height: 45.75px;
}

/* 搜索和收藏图标样式 */
.search-icon-new,
.favorite-icon-new {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.hero-header-actions {
    display: flex;
    align-items: center;
    gap: 4px;
}

.hero-download-app-button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 84px;
    height: 46px;
    background-color: var(--bg-accent);
    color: var(--text-light);
    font-size: 13.5px;
    font-weight: 700;
    border-radius: 15px;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

/* 确保下载APP按钮不受全局a:hover影响 */
.hero-download-app-button:hover,
a.hero-download-app-button:hover {
    background-color: #ff5722;
    transform: scale(1.05);
    color: #ffffff !important;
    text-decoration: none !important;
}


.hero-video-progress-indicator {
    position: absolute;
    bottom: 6.24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6.24px;
}

.progress-dot {
    width: 54.26px;
    height: 2.08px;
    background-color: white;
    border-radius: 2.08px;
    opacity: 0.3;
    transition: all 0.2s ease;
}

.progress-dot.active {
    opacity: 1;
}

/* 游戏详情区域样式 */
.details-section {
    padding-bottom: 16.64px;
    background: linear-gradient(180deg, #ffffff 0%, #f2f4f7 100%);
}

.details-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 0 17px;
}

.game-info-card {
    display: flex;
    align-items: flex-start;
    gap: 10.4px;
    padding-top: 20.8px;
}

.game-icon {
    width: 67.59px;
    height: 67.59px;
    border-radius: 15.6px;
    flex-shrink: 0;
}

.game-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.game-text-details {
    display: flex;
    flex-direction: column;
    gap: 5.2px;
}

.game-title {
    margin: 0;
    font-size: 16.6px;
    font-weight: 600;
    line-height: 22.88px;
    color: var(--text-primary);
}

.game-subtitle {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 4.16px;
    font-size: 12.5px;
    line-height: 16.64px;
    color: var(--text-secondary);
}

.subtitle-icon {
    position: relative;
    width: 12.48px;
    height: 12.48px;
}

.game-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 4.16px;
    padding-top: 1px;
}

.tag {
    padding: 3.12px 4.16px;
    background-color: var(--bg-secondary);
    color: var(--text-secondary);
    font-size: 10.4px;
    border-radius: 2.08px;
    line-height: 1;
}

.download-buttons {
    display: flex;
    gap: 6px;
}

.btn-download {
    display: flex;
    align-items: center;
    gap: 2px;
    /* border: 1px solid #f2f2f2; */
    border-radius: 8px;
    font-size: 13.5px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.2s ease;
    /* padding: 6px 10px; */
}

/* 确保下载按钮不受全局a:hover影响 */
.btn-download:hover,
a.btn-download:hover {
    background-color: #f8f9fa;
    border-color: #e5e5e5;
    color: inherit !important;
    text-decoration: none !important;
}

.btn-download img {
    width: 100px;
    height: 40px;
}

.action-buttons {
    display: flex;
    gap: 8px;
}

.btn-action {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    height: 40px;
    border: 2px solid var(--border-medium);
    border-radius: 16px;
    font-size: 14px;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.2s ease;
}

/* 确保操作按钮不受全局a:hover影响 */
.btn-action:hover,
a.btn-action:hover {
    background-color: #f8f9fa;
    border-color: #d5d5d5;
    color: inherit !important;
    text-decoration: none !important;
}

.purchase-options {
    display: flex;
    gap: 8px;
}

.purchase-card {
    position: relative;
    height: 45px;
    background-color: #FFF9F3;
    border: 1px solid #FFEAD5;
    border-radius: 8px;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.purchase-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.purchase-card-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px;
    height: 100%;
}

.purchase-icon-wrapper {
    border-radius: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #e8f5ff;
    flex-shrink: 0;
    gap: 6px;
}

.purchase-icon-wrapper.alt {
    background-color: #ffeddb;
}

.price-info {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.current-price {
    font-size: 14.77px;
    font-weight: 500;
    color: var(--text-accent);
}

.original-price {
    font-size: 11.08px;
    color: var(--text-price-strike);
    text-decoration: line-through;
}

.coin-icon {
    width: 18px;
    height: 18px;
    margin-left: -4px;
}

.btn-buy {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 24px;
    background-color: var(--bg-accent);
    color: var(--text-light);
    font-size: 12px;
    font-weight: 500;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.2s ease;
}

/* 确保购买按钮不受全局a:hover影响 */
.btn-buy:hover,
a.btn-buy:hover {
    background-color: #ff5722;
    color: #ffffff !important;
    text-decoration: none !important;
}

/* 标签导航样式 */

.tab-bar {
    display: flex;
    align-items: center;
    height: 45px;
    padding: 0 16px;
    gap: 32px;
    background-color: var(--bg-main);
    border-radius: 18.72px 18.72px 0 0;
}

.tab-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4.16px;
    font-size: 16.6px;
    font-weight: 500;
    color: var(--text-tertiary);
    position: relative;
    padding-bottom: 12px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.tab-item.active {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-primary);
}

.tab-item.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 13px;
    height: 4px;
    background-color: var(--indicator);
    border-radius: 4px;
}

.tab-badge {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
    font-size: 12.5px;
    font-weight: 400;
    color: var(--text-primary);
}

.tab-badge.secondary {
    color: #c2c5cc;
}

.divider {
    height: 0.5px;
    background-color: var(--border-light);
    margin: 0 16.63px;
}

/* 详情内容区域样式已整合到tab-content中 */

.section-title {
    font-size: 16px;
    font-weight: 700;
    color: #222;
    margin: 0 0 12px 0;
}

/* 游戏简介 */
.game-intro {
    margin-bottom: 24px;
}

.intro-content {
    position: relative;
}

.intro-text {
    font-size: 14px;
    line-height: 1.6;
    color: #333;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: all 0.3s ease;
}

.intro-text.expanded {
    display: block;
    -webkit-line-clamp: unset;
    line-clamp: unset;
}

.expand-btn {
    background: none;
    border: none;
    color: #007aff;
    font-size: 14px;
    cursor: pointer;
    padding: 0;
    margin-top: 8px;
    transition: all 0.2s ease;
}

.expand-btn:hover {
    color: #0056b3;
}

/* 游戏资讯 */
.game-news {
    margin-bottom: 20px;
}


/* 新闻列表 */
.news-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.news-item {
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    border-bottom: 1px solid #EBEBEB; /* underline for news item */
}

.news-link {
    display: flex;
    gap: 12px;
    width: 100%;
    padding: 12px;
    text-decoration: none;
    color: inherit;
}

.news-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    border-radius: 0 2px 2px 0;
}

.news-link:hover {
    background: #f0f1f2;
    transform: translateY(-1px);
}

.news-content {
    flex: 1;
    min-width: 0;
}

.news-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}

.news-tag {
    background: #FFE5E5;
    color: #FF6B35;
    font-size: 12px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 4px;
    line-height: 1.2;
}

/* 分类配色 */
.news-tag.gonggao { /* 公告 */
    background: #FFEBEB;
    color: #FF0000;
}
.news-tag.zixun { /* 资讯 */
    background: #E5FFE4;
    color: #38D829;
}
.news-tag.gonglue { /* 攻略 */
    background: #FFE9F7;
    color: #FF3CC1;
}
.news-tag.huodong { /* 活动 */
    background: #FFF1E2;
    color: #FFA13C;
}

.news-title {
    font-size: 14px;
    font-weight: 500;
    color: #222;
    margin: 0;
    line-height: 1.4;
}

.news-time {
    font-size: 11px;
    color: #999;
    margin: 0;
}

.news-thumbnail {
    width: 95.16px;
    height: 63.44px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.news-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 更多按钮 */
.more-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    width: 100%;
    background: transparent;
    color: #999;
    border: none;
    border-radius: 0;
    padding: 8px;
    font-size: 14px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 16px;
}

/* 确保更多按钮不受全局a:hover影响 */
.more-btn:hover,
a.more-btn:hover {
    background: transparent;
    color: #666;
    text-decoration: none !important;
}

.more-btn svg {
    width: 12px;
    height: 12px;
    color: #999;
}

/* 下载引导区块（来自 download/index.html） */
.download-section {
    padding: 20px 20px 120px 20px;
}

/* iOS安全区域适配 - 确保底部内容显示完整 */
@supports (padding: max(0px)) {
    .download-section {
        padding-bottom: max(120px, calc(120px + env(safe-area-inset-bottom)));
    }
}

.download-container {
    max-width: 390px;
    margin: 0 auto;
    padding: 17px 15px 17px 17px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cta-button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 58px;
    background-color: #ff7e00;
    border-radius: 29px;
    text-decoration: none;
    color: #ffffff;
    gap: 4px;
    font-size: 16px;
    font-weight: 600;
    white-space: nowrap;
    transition: background-color 0.3s ease;
}

/* 确保CTA按钮不受全局a:hover影响 */
.cta-button:hover,
a.cta-button:hover {
    background-color: #e67300;
    color: #ffffff !important;
    text-decoration: none !important;
}

.cta-icon {
    width: 21px;
    height: 21px;
}

/* 小屏设备响应式样式 */
@media screen and (max-width: 320px) {
    .game-hero-section {
        height: 180px;
    }
    
    .details-content {
        padding: 0 12px;
    }
    
    .game-title {
        font-size: 16px;
    }
    
    .game-icon {
        width: 50px;
        height: 50px;
    }
    
    .section-title {
        font-size: 14px;
    }
    
    .news-item {
        padding: 8px;
    }
    
    .news-thumbnail {
        width: 50px;
        height: 50px;
    }
}

/* 中等屏幕设备 */
@media screen and (max-width: 375px) {
    .details-content {
        padding: 0 14px;
    }
    
    .game-title {
        font-size: 18px;
    }
}

/* 横屏适配 */
@media screen and (orientation: landscape) {    
    .details-content {
        padding: 20px 20px 10px;
        background: var(--bg-main);
    }
}

/* 超宽屏适配 */
@media screen and (min-width: 1024px) {
    .main-container {
        max-width: 500px;
        margin: 0 auto;
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    }
    
    .download-section {
        max-width: 500px !important
    }
}

/* 高分辨率屏幕优化 */
@media screen and (-webkit-min-device-pixel-ratio: 2) {
    .hero-background-image,
    .game-icon,
    .news-thumbnail img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* 减少动画偏好设置 */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .news-item {
        animation: none;
    }
}

/* 高对比度模式 */
@media (prefers-contrast: high) {
    .hero-back-button,
    .hero-search-button,
    .hero-favorite-button {
        background: rgba(255, 255, 255, 1);
        border: 2px solid #000;
    }
    
    .tab-item.active::after {
        height: 3px;
    }
}

/* 动画效果 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.news-item {
    animation: fadeInUp 0.3s ease forwards;
}

.news-item:nth-child(1) { animation-delay: 0.1s; }
.news-item:nth-child(2) { animation-delay: 0.2s; }
.news-item:nth-child(3) { animation-delay: 0.3s; }
.news-item:nth-child(4) { animation-delay: 0.4s; }
.news-item:nth-child(5) { animation-delay: 0.5s; }

/* Tab内容区域样式 */
.tab-content {
    display: none;
    background: var(--bg-main);
    padding: 24px 14px 2px 14px;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
}

.tab-content.active {
    display: block;
}

/* 触摸优化 */
.hero-back-button,
.hero-search-button,
.hero-favorite-button,
.btn-action,
.tab-item,
.news-item,
.more-btn {
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

/* 官方动态样式 */
.updates-container {
    background-color: #ffffff;
    padding: 12px 8px 8px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.updates-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.updates-title {
    color: #222426;
    font-weight: 600;
    font-size: 18.7px;
    line-height: 26px;
    text-align: left;
    margin: 0;
}

.updates-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6px 12px;
    position: relative;
    max-height: 300px;
    overflow: hidden;
}

.update-item {
    background-color: #f8f8f8;
    border-radius: 12px;
    padding: 8px 16px;
}

.update-item p {
    margin: 0;
}

.update-item__date {
    color: #000000;
    font-weight: 500;
    font-size: 16px;
    line-height: 25px;
    margin-bottom: 8px;
}

.update-item__info {
    color: #898989;
    font-weight: 400;
    font-size: 14px;
    line-height: 25px;
}

.expand-link {
    color: #ff7e00;
    font-weight: 500;
    font-size: 18px;
    line-height: 25px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
}

.expand-link img {
    width: 20px;
    height: 10px;
}

/* 蒙层样式 - 用于限制显示数量 */
.overlyWhiteBox {
    width: 100%;
    height: 7.21rem;
    background: linear-gradient(0deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
    position: absolute;
    bottom: 0;
    z-index: 1;
}

/* 过去服务器样式 */
.update-item.past-server {
    opacity: 0.6;
}

.update-item.past-server .update-item__info {
    color: #AAAAAA;
}

/* 使用更具体的选择器确保优先级 */
.game-detail-page .layui-layer,
.main-container .layui-layer,
body .layui-layer {
    border-radius: 20px !important;
}


/* 礼包弹窗样式 */
.bag_open_modals {
    display: none;
    padding: 20px;
    text-align: center;
    position: relative;
}

.bag_open_modals_closeimg {
    position: absolute;
    right: 1rem;
    top: 1rem;
    width: 1rem;
    cursor: pointer;
}

.bag_open_modals_firstline {
    text-align: center;
    margin-top: 1rem;
    font-weight: bold;
    font-size: 16px;
    color: #333;
}

.bag_open_modals input {
    margin-top: 1rem;
    height: 25px !important;
    width: 80% !important;
    text-indent: 5rem;
    font-size: 14px !important;
    color: #018FFF !important;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    box-shadow: none !important;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.bag_open_modals span {
    color: gray;
    font-size: 14px;
    position: absolute;
    top: 1.6rem;
    left: 10%;
}

.bag_open_modals_btn {
    margin-left: 40%;
    text-align: center;
    background: #018fff;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 1rem;
}

.bag_open_modals .tap {
    font-size: 12px;
    color: #999;
    margin-top: 0.5rem;
}

/* 礼包详情弹窗样式 */

.game_bag_con_title {
    font-weight: bold;
    font-size: 14px;
    margin: 10px 0 5px 0;
    color: #333;
}

.game_bag_con_info {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 10px;
}

/* 游戏礼包样式 */
.gift-pack-container {
    padding: 12px 16px;
    background-color: #ffffff;
}

.gift-pack-title {
    margin: 0 0 8px 0;
    color: #222426;
    font-family: 'Inter', 'PingFang SC', sans-serif;
    font-weight: 500;
    font-size: 19px;
    line-height: 26px;
}

.gift-card {
    background-color: #f2f2f2;
    border-radius: 12px;
    padding: 11px 15px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 12px;
}

.card-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-title {
    margin: 0;
    color: #000000;
    font-family: 'Inter', 'PingFang SC', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 26px;
}

.card-instructions {
    margin: 0;
    color: #ff7e00;
    font-family: 'Inter', 'PingFang SC', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 26px;
    text-decoration: none;
}

.card-instructions:hover {
    text-decoration: underline;
}

.card-status {
    margin: 0;
    color: #737373;
    font-family: 'Inter', 'PingFang SC', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 26px;
}

.card-button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 4px 16px;
    min-width: 56px;
    height: 23px;
    background: linear-gradient(147deg, #ffa13c 0%, #ff6b16 107.38%);
    border-radius: 12px;
    color: #ffffff;
    font-family: 'Inter', 'PingFang SC', sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    text-decoration: none;
    transition: opacity 0.2s;
}

.card-button:hover {
    opacity: 0.9;
}

/* 礼包详情内容样式 */
.gift-detail-content {
    text-align: left;
}

.game_bag_con_title {
    font-size: 14px;
    font-weight: 600;
}

/* 礼包领取弹窗样式 */
.gift-receive-content {
    width: 100%;
    text-align: center;
}

.gift-code-section {
    margin-bottom: 16px;
    position: relative;
}

.gift-code-label {
    display: block;
    color: #666;
    font-size: 14px;
    margin-bottom: 8px;
    text-align: left;
}

.gift-code-input {
    width: 100%;
    height: 44px;
    padding: 0 16px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    color: #018FFF;
    background-color: #f8f9fa;
    text-align: center;
    font-weight: 500;
    box-sizing: border-box;
}

.gift-code-input:focus {
    outline: none;
    border-color: #018FFF;
    box-shadow: 0 0 0 2px rgba(1, 143, 255, 0.1);
}

.gift-tip {
    margin: 0;
    color: #999;
    font-size: 12px;
    line-height: 1.4;
}

/* 确保弹窗样式优先级 - 使用更具体的选择器 */
.game-detail-page .layui-layer,
.main-container .layui-layer,
body .layui-layer {
    border-radius: 20px !important;
}

.game_bag_con_title:first-child {
    margin-top: 0;
}

.game_bag_con_info {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
    margin: 0 0 8px 0;
    word-break: break-word;
}
