/* 全局重置与基础设置 */
body, html {
    margin: 0;
    padding: 0;
    background-color: #f4f5f7;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* 容器，限制最大宽度并在居中，适配手机与 PC 端预览 */
.container {
    max-width: 600px;
    margin: 0 auto;
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    overflow: hidden;
}

/* 顶部主图 */
.header-image img {
    width: 100%;
    display: block;
    object-fit: cover;
}

/* 内容区域内边距 */
.content-wrapper {
    padding: 15px 20px;
}

/* 作者与分享区域（Flexbox 左右两端对齐） */
.author-share-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

/* 作者信息左侧 */
.author-info {
    display: flex;
    align-items: center;
}

.avatar img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 12px;
    border: 1px solid #eee;
}

.author-name {
    font-size: 16px;
    color: #333;
    font-weight: 500;
    display: flex;
    align-items: center;
}

/* 模拟认证小图标 */
.verify-icon {
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-left: 6px;
}

/* 分享区域右侧 */
.share-area {
    text-align: right;
}

.share-text {
    font-size: 12px;
    color: #999;
    margin-bottom: 6px;
}

.share-icons {
    display: flex;
    gap: 6px;
}

/* 使用 CSS 模拟原图中的分享小圆圈图标 */
.share-icons img {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    object-fit: cover;
}

/* 元信息：时间与扫描到手机 */
.meta-info {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: #999;
    margin-bottom: 15px;
}

.scan-phone {
    color: #d32f2f;
    text-decoration: none;
}

/* 文章标题 */
.post-title {
    text-align: center;
    font-size: 22px;
    color: #333;
    margin-bottom: 20px;
    font-weight: 500;
}

/* 音频播放器 */
.audio-player-wrapper {
    width: 100%;
    margin-bottom: 25px;
}

.audio-player-wrapper audio {
    width: 100%;
    outline: none;
}

/* 正文内容 */
.post-content {
    font-size: 16px;
    color: #444;
    line-height: 1.8;
    text-align: justify;
    padding-bottom: 30px;
}