/* 黄果短剧 iOS 安装引导页纯净样式表 */
html, body, div, p, ul, li, h1, h2, h3, h4, h5, h6 {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 14px;
    color: #1d1d1f;
    background: #fbfbfd;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
}

ul, li {
    list-style: none;
}

.contain-page {
    max-width: 680px;
    margin: 0 auto;
    padding: 24px 16px 60px;
    min-height: 100vh;
}

/* 应用头部信息卡片 */
.app-info {
    display: flex;
    align-items: center;
    padding: 24px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
}

.app-logo {
    flex: 0 0 88px;
    width: 88px;
    height: 88px;
    margin-right: 20px;
}

.app-logo img {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 18px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.app-info-rig {
    flex: 1;
    min-width: 0;
}

.app-info-rig strong {
    display: block;
    font-size: 22px;
    font-weight: 700;
    color: #1d1d1f;
}

.app-info-rig p {
    margin: 4px 0 12px;
    font-size: 13px;
    color: #86868b;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 24px;
    background: #0071e3;
    border-radius: 20px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 180ms ease, transform 160ms ease;
}

.btn:hover {
    background: #0077ed;
    transform: translateY(-1px);
}

/* 评分与指标 */
.app-show {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 16px;
    padding: 16px 24px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03);
}

.app-score strong, .app-age strong {
    font-size: 18px;
    font-weight: 700;
    color: #1d1d1f;
}

.app-score img {
    display: inline-block;
    vertical-align: middle;
    width: 76px;
    margin-left: 6px;
}

.app-score p, .app-age p {
    margin-top: 4px;
    color: #86868b;
    font-size: 12px;
}

.app-age {
    text-align: right;
}

/* 提示与介绍 */
.app-intro, .comment-box, .information-box {
    margin-top: 16px;
    padding: 24px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03);
}

.app-title {
    margin-bottom: 12px;
    font-size: 17px;
    font-weight: 700;
    color: #1d1d1f;
}

.app-intro-con {
    line-height: 1.7;
    font-size: 14px;
    color: #424245;
}

.install-notice {
    padding: 14px 18px;
    margin-bottom: 16px;
    border-radius: 12px;
    background: #fff2f2;
    border-left: 4px solid #ff3b30;
    color: #d70015;
    font-size: 13px;
    line-height: 1.6;
}

/* 评分与评价 */
.comment-con {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 20px;
}

.comment-left strong {
    font-size: 48px;
    font-weight: 700;
    color: #1d1d1f;
    line-height: 1;
}

.comment-left p {
    margin-top: 6px;
    color: #86868b;
    font-size: 12px;
}

.comment-right {
    flex: 1;
}

.comment-star-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}

.comment-star {
    position: relative;
    width: 46px;
    height: 7px;
}

.comment-star img {
    width: 100%;
    height: 100%;
}

.comment-progress {
    position: relative;
    flex: 1;
    height: 4px;
    background: #f0f0f2;
    border-radius: 2px;
    overflow: hidden;
}

.comment-progress div {
    height: 100%;
    background: #86868b;
    border-radius: 2px;
}

.download-comment-list {
    border-top: 1px solid #f2f2f5;
    padding-top: 14px;
}

.download-comment-list li {
    padding: 10px 0;
    color: #424245;
    font-size: 13px;
    border-bottom: 1px solid #f7f7f9;
}

/* 详情信息表格 */
.information-list li {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #f2f2f5;
    font-size: 13px;
}

.information-list li:last-child {
    border-bottom: none;
}

.information-list .l {
    color: #86868b;
}

.information-list .r {
    color: #1d1d1f;
    font-weight: 500;
    text-align: right;
}

/* Safari 外部浏览器提示弹窗 */
.mask-box {
    position: fixed;
    inset: 0;
    z-index: 999;
    display: none;
}

.mask-box.is-open {
    display: block;
}

.mask-bg {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
}

.mask-pop {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 88%;
    max-width: 360px;
    background: #fff;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.mask-closed {
    position: absolute;
    top: 16px;
    right: 16px;
    cursor: pointer;
    width: 24px;
    height: 24px;
}

.copy-url-img {
    width: 100%;
    margin-bottom: 16px;
}
