/**
 * 博客详情页样式
 */

/* ========== 页面容器 ========== */
.page-blogInfo {
    width: 100%;
}

/* ========== Banner图片 ========== */
.blog-banner {
    width: 100%;
    height: 30vh;
    overflow: hidden;
    margin-bottom: 2%;
}

.blog-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ========== 内容区域 ========== */
.blog-content-section {
    width: 100%;
    padding: 0;
}

/* ========== 博客标题 ========== */
.blog-title {
    font-size: 35px;
    font-weight: 700;
    color: var(--el-text-color-primary);
    text-align: center;
    margin: 0 0 10px;
}

/* ========== 作者和日期 ========== */
.blog-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    color: #888;
    gap: 8px;
    margin-bottom: 37px;
}

.blog-author {
    font-weight: 400;
    color: #888;
}

.blog-separator {
    color: #888;
}

.blog-time {
    color: #888;
}

/* ========== 博客内容 ========== */
.blog-detail-content {
    margin-bottom: 40px;
}

.blog-rich-text {
    font-size: 16px;
    line-height: 1.8;
    color: #606266;
}

.blog-rich-text p {
    margin-bottom: 16px;
}

/* ========== 分割线 ========== */
.blog-content-section .el-divider {
    margin-bottom: 30px;
}

/* ========== 阅读量和分享 ========== */
.blog-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.blog-views {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    color: var(--el-text-color-primary);
}

.blog-views i {
    font-size: 20px;
    color: var(--el-text-color-primary);
}

.blog-share {
    display: flex;
    align-items: center;
    gap: 20px;
}

.share-icon {
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.share-icon:hover {
    opacity: 0.7;
}
