.container {
    width: 65%;
    max-width: 900px;
    margin: 20px auto;
    padding: 0 20px;
}

/* Breadcrumbs */
.breadcrumbs {
    font-size: 13px;
    color: #999;
    margin-bottom: 30px;
}

/* Article Header */
.article-header {
    border-bottom: 1px solid #eee;
    margin-bottom: 30px;
    padding-bottom: 20px;
}

.article-title {
    font-size: 32px;
    line-height: 1.3;
    margin: 0 0 20px 0;
    color: #111;
}

.article-meta {
    font-size: 14px;
    color: #888;
    display: flex;
    gap: 20px;
    align-items: center;
}

.article-meta .source {
    color: #005bac;
    font-weight: bold;
}
.article-meta .like{
    width: 25px;
    cursor: pointer;
}

/* Article Content */
.article-content {
    font-size: 18px;
    color: #333;
    line-height: 1.8;
}
.article-content .material{
    width: 100%;
   min-height: 300px;
}
/* .article-content p {
    margin-bottom: 25px;
    text-align: justify;
} */

/* .article-content img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    margin: 10px 0;
} */

.img-caption {
    display: block;
    text-align: center;
    font-size: 14px;
    color: #777;
    margin-bottom: 30px;
    margin-top: -5px;
}

.article-tags {
    margin: 40px 0;
    padding-top: 20px;
    border-top: 1px dashed #eee;
}

.tag-pill {
    display: inline-block;
    padding: 4px 12px;
    background: #f5f5f5;
    color: #666;
    font-size: 13px;
    border-radius: 20px;
    margin-right: 10px;
    cursor: pointer;
}

/* Recommendations */
.recommendation-section {
    margin-top: 60px;
    border-top: 2px solid #333;
    padding-top: 30px;
}

.section-label {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 25px;
    display: block;
}

.rec-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}

.rec-card {
    cursor: pointer;
}

.rec-card .thumb {
    width: 100%;
    height: 160px;
    background-color: #eee;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 12px;
}

.rec-card .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s;
}

.rec-card:hover .thumb img {
    transform: scale(1.05);
}

.rec-card h4 {
    margin: 0;
    font-size: 15px;
    line-height: 1.4;
    color: #222;
    height: 42px;
    overflow: hidden;
}

/* 移动端适配 */
@media (max-width: 768px) {
    .container {
        width: 95%;
        padding: 0 10px;
    }

    .breadcrumbs {
        font-size: 12px;
        margin-bottom: 20px;
    }

    .article-title {
        font-size: 22px;
        line-height: 1.4;
    }

    .article-meta {
        font-size: 12px;
        gap: 12px;
        flex-wrap: wrap;
    }

    .article-content {
        font-size: 16px;
    }

    .article-content .material {
        min-height: 200px;
    }

    .article-tags {
        margin: 30px 0;
        padding-top: 15px;
    }

    .tag-pill {
        padding: 3px 10px;
        font-size: 12px;
        margin-bottom: 8px;
    }

    .recommendation-section {
        margin-top: 40px;
        padding-top: 20px;
    }

    .section-label {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .rec-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .rec-card .thumb {
        height: 180px;
    }

    .rec-card h4 {
        font-size: 14px;
        height: auto;
    }
}