/* ═══════════════════════════════════════════════════════════════
 * skin6 H5 端布局补丁（在 index.css 基础上做两件事）：
 *   1. 底部下载按钮固定在视口底部，不随内容滚动
 *   2. 顶部背景图固定（不滚动），由 index.css 的 .bg-layer { position: fixed } 实现
 *   3. 安卓报毒弹窗（沿用 skin5 老 class .android-modal / .platform-item / .contentAnser）
 * ═══════════════════════════════════════════════════════════════ */


/* ───── H5 底部按钮固定 ───── */
.mobile-main .m-inner {
    /* 给底部 fixed footer 留出空间，避免遮挡 .m-human */
    padding-bottom: 180px;
}

.mobile-main .m-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    margin-top: 0;
    padding: 16px 24px;
    padding-bottom: max(16px, env(safe-area-inset-bottom));
    background: linear-gradient(to top, rgba(255, 214, 227, 0.95) 60%, rgba(255, 214, 227, 0));
    z-index: 10;
}

/* 点击安装提示文字 → 打开安卓报毒解决方案弹窗（鼠标样式提示可点击）*/
.mobile-main .m-footer .disclaimer {
    cursor: pointer;
}


/* ───── H5 背景固定加强（确保 YC152 默认 fixed 不被其他规则覆盖）───── */
.mobile-main .bg-layer {
    position: fixed !important;
}


/* ═══════ 安卓报毒弹窗（沿用 skin5 老逻辑：showAllow / showAndroidModal / closeAndroidModal）═══════ */
.android-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    min-height: 100vh;
    height: auto;
    z-index: 999;
    background: #fff;
    overflow-y: auto;
}

.android-modal .header {
    width: 100%;
    display: flex;
    align-items: center;
    color: #000;
    padding: 0.1rem 0.2rem;
    box-shadow: 0 0.03rem 0.05rem rgba(57, 63, 72, 0.1);
    justify-content: space-between;
    position: sticky;
    top: 0;
    left: 0;
    height: 0.9rem;
    background: #fff;
    z-index: 1;
}

.android-modal .header .android-modal-arrow img {
    width: 0.25rem;
}

.android-modal .header .title {
    font-size: 0.2rem;
    color: #000;
}

.android-modal .content {
    padding: 0.55rem 0.2rem;
}

.android-modal .content .platform-item img {
    width: 100%;
    display: block;
}

.android-modal .content .pic img {
    width: 100%;
    display: block;
}

.android-modal .contentAnser {
    display: none;
}
