* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "WenQuanYi Micro Hei", sans-serif;
    background-color: #fff;
    color: #222;
    line-height: 1.75;
    -webkit-font-smoothing: antialiased;
}

.article-container {
    max-width: 100%;
    margin: 0 auto;
    background: #fff;
    min-height: 100vh;
    padding: 0 16px 40px;
}

.article-header {
    background: white;
    border-bottom: 1px solid #f0f0f0;
    padding: 12px 16px;
}

.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.logo {
    display: none;
}

.site-name {
    flex: 1;
    margin-left: 12px;
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

.section-title {
    font-size: 22px;
    font-weight: bold;
    text-align: center;
    padding: 24px 16px 16px;
    color: #333;
    line-height: 1.5;
}

.author-info {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 16px 20px;
    flex-wrap: wrap;
    gap: 8px;
}

.author-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
}

.author-name {
    font-size: 15px;
    font-weight: 500;
    color: #333;
}

.follow-btn {
    background: white;
    border: 1px solid #e0e0e0;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 13px;
    color: #666;
    cursor: pointer;
}

.follow-btn.following {
    color: #ff4d4f;
    border-color: #ff4d4f;
}

.publish-time {
    font-size: 13px;
    color: #999;
    width: 100%;
    text-align: center;
    margin-top: 4px;
}

.listen-bar {
    background: #f8f8f8;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin: 0 16px 24px;
    border-radius: 8px;
    cursor: pointer;
    user-select: none;
}

.listen-left {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
}

.listen-right {
    display: flex;
    align-items: center;
    gap: 4px;
}

.listen-icon {
    font-size: 18px;
}

.listen-text {
    flex: 1;
    font-size: 13px;
    color: #666;
}

.listen-link {
    font-size: 13px;
    color: #999;
}

.listen-time {
    font-size: 13px;
    color: #999;
    display: none;
}

.platform-section {
    margin-bottom: 8px;
}

.article-content {
    padding: 24px 16px;
    min-height: 200px;
}

.content-section {
    margin-bottom: 8px;
}

.article-content p {
    font-size: 16px;
    line-height: 1.75;
    color: #222;
    margin: 14px 0;
    text-align: justify;
    word-break: break-word;
    overflow-wrap: break-word;
}

.end-message {
    text-align: center;
    padding: 40px;
    font-size: 18px;
    color: #666;
}

.footer {
    text-align: center;
    padding: 20px 16px;
    background: #f8f8f8;
    color: #999;
    font-size: 13px;
    margin-top: 24px;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 20px;
    }

    .article-content {
        padding: 20px 12px;
    }

    .article-content p {
        font-size: 15px;
    }
}
