/* ============================================
   文章详情页通用样式
   ============================================ */

.article-content {
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    background: #F5F5F7;
    padding: 16px;
}

.article-summary {
    font-size: 15px;
    color: #1D1D1F;
    line-height: 1.7;
    margin: 0 0 16px 0;
    padding: 14px 16px;
    background: #FFFFFF;
    border-radius: 12px;
}

.article-points {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 16px;
}

.article-point {
    display: flex;
    gap: 12px;
    padding: 14px 16px;
    background: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.article-point .point-num {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #007AFF;
    color: #FFFFFF;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.point-content h4 {
    font-size: 15px;
    font-weight: 600;
    color: #1D1D1F;
    margin: 0 0 6px 0;
}

.point-content p {
    font-size: 14px;
    color: #424245;
    line-height: 1.7;
    margin: 0;
}

.article-quote {
    font-size: 14px;
    color: #424245;
    line-height: 1.7;
    padding: 14px 16px;
    background: #FFFFFF;
    border-radius: 12px;
    margin-bottom: 12px;
}

.article-quote.highlight {
    background: #FFFFFF;
    color: #007AFF;
    font-weight: 500;
    border-left: 3px solid #007AFF;
    margin-bottom: 0;
}
