/* ===========================
   武易传奇官网 公共样式
   =========================== */




/* 隐藏 global.js 导航栏里的 .logo 文字背景图（用 #siteLogo 动态图片替代） */
.unifyNavInner .logo { display: none !important; }

/* 隐藏健康游戏忠告图标 */
.ageTips { display: none !important; }

/* LOGO 样式 */
#siteLogo {
    position: absolute;
    top: 10px;
    left: 10px;
    display: block !important;
    width: 180px;
    height: auto;
    z-index: 100;
}
#siteLogo img {
    width: 180px;
    height: auto;
    display: block;
}



/* 健康游戏忠告 */
.playGamesNote {
    border-top: none !important;
    margin-top: 45px !important;
    padding-top: 45px !important;
    padding-bottom: 45px !important;
    margin-bottom: 45px !important;
}

/* 左侧栏固定宽度，正常流排列，不缩减 */
.sidebarLeft {
    display: block !important;
    width: 265px;
    box-sizing: border-box;
}
#pageLeft {
    display: block;
}



/* 联系客服 li */
#kfLi {
    padding-top: 16px !important;
    padding-bottom: 16px !important;
    height: auto !important;
    box-sizing: content-box;
}

/* 游戏资料按钮右对齐 */
.gameInfroNav { right: 28px; }
.gameInfroNav dl { text-align: right; }

/* 查看更多胶囊按钮 */
#serverMoreBtn {
    display: inline-block;
    border: 1px solid #c8922a;
    color: #cfae69;
    font-size: 12px;
    padding: 4px 22px;
    border-radius: 999px;
    text-decoration: none;
    letter-spacing: 1px;
    background: transparent;
    transition: background .3s, color .3s, box-shadow .3s;
    white-space: nowrap;   /* 防止文字换行导致按钮变形 */
}
#serverMoreBtn:hover {
    background: #c8922a;
    color: #1a0a00;
    box-shadow: 0 0 8px rgba(200,146,42,0.7);
}

/* 联系客服按钮 */
#kfBtn {
    display: block;
    text-align: center;
    width: 100px;
    height: 28px;
    line-height: 26px;
    background: #d4380d;
    border: 1px solid #ff6b3d;
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    padding: 0;
    border-radius: 999px;
    letter-spacing: 1px;
    text-decoration: none;
    margin-bottom: 8px;
    box-shadow: 0 0 8px rgba(212,56,13,0.5);
    transition: box-shadow .3s, background .3s;
    cursor: pointer;
}
#kfBtn:hover {
    background: #ff4d1a;
    box-shadow: 0 0 16px rgba(255,77,26,0.85);
}

/* 版权区（logo左侧 + 文字右侧三行布局） */
.site-footer {
    width: 100%;
    padding: 28px 0 22px;
    text-align: center;
    box-sizing: border-box;
    background: linear-gradient(180deg, #0d0d0d 0%, #1a1a1a 100%);
    border-top: 1px solid #2e2e2e;
}
.site-footer .footer-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
.site-footer .footer-logo {
    flex-shrink: 0;
    display: block;
    width: 50px;
    height: 50px;
}
.site-footer .footer-logo img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    display: block;
}
.site-footer .footer-text {
    text-align: left;
}
.site-footer .footer-copy {
    margin: 0;
    font-size: 12px;
    color: #444;
    line-height: 1.8;
}

/* ===========================
   页脚响应式（手机端 / F12仿真）
   =========================== */
@media screen and (max-width: 768px) {
    .site-footer {
        padding: 20px 16px 16px;
    }
    .site-footer .footer-title {
        font-size: 18px;
        letter-spacing: 2px;
    }
    .site-footer .footer-sub {
        font-size: 12px;
        letter-spacing: 1px;
    }
    .site-footer .footer-copy {
        font-size: 11px;
        padding: 0 10px;
        line-height: 1.6;
    }
}

@media screen and (max-width: 480px) {
    .site-footer {
        padding: 16px 12px 12px;
    }
    .site-footer .footer-title {
        font-size: 16px;
        letter-spacing: 1px;
    }
    .site-footer .footer-sub {
        font-size: 11px;
        letter-spacing: 0;
    }
    .site-footer .footer-copy {
        font-size: 10px;
    }
}
