/* 引入公共样式 */
@import url(./base.css);
/* 自述 */
:root {
    --white: #fff;
    --radius: 8px;
    --blue: #1890f7;
}

/* .diary-w {
    max-width: 1280px;
    margin: 0 auto;
} */

/* 头部 */
.diary-content-header{
    position: relative;
    width: 100%;
    height: 28vh;
    border-radius: var(--radius);
    margin-bottom: 28px;
}

.diary-content-header-img{
    min-width: 100%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius);
}

.diary-content-header h2 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    line-height: 3rem;
    font-size: 28px;
    filter: drop-shadow(4px 4px 4px rgb(12 25 50 / 80%));
    color: var(--white);
    transition: all .5s;
}

.diary-content-header h2:hover{
    opacity: 0;
}
/* 头部 end */

.diary-container {
    display: flex;
    width: 100%;
}

.diary-container h2{
    line-height: 2;
    margin-bottom: 0;
    color: #3c3a3a;
}

.diary-wrap{
    width: 62%;
    margin-right: 28px;
}
/* 右侧 */
.diary-content{
    margin-bottom: 28px;
    padding: 28px;
    background: var(--white);
    border-radius: var(--radius);
}

.diary-content-p p{
    line-height: 2.5;
    text-indent: 2em;
    font-size: 16px;
    letter-spacing:2px; /*文字间距*/
    text-decoration: none;
    background: url(https://cdn.leishennb.icu/wordline.webp?) 100% 100%;
    padding-bottom: 2px;
    white-space: normal;
    word-break: break-all;
}

.diary-content-p h4{
    margin-bottom: 18px;
    font-size: 16px;
    color: #ff6a6a99;
}
/* 附加内容 */
.diary-content-p .diary-content-img-wrap {
    margin-top: 8px;
}

.diary-content-p .diary-content-img-wrap img{
    width: 30%;
    max-width: 30%;
    object-fit: cover;
    border-radius: var(--radius);
}

/* 左侧 */
.right-wrap{
    position: sticky;
    top: 5vh;
    width: 38%;
    height: 90vh;
    border-radius: var(--radius);
}

.right-content{
    width: 100%;
    height: 100%;
    background: var(--white);
    border-radius: var(--radius);
}

.right-content-img{
    width: 100%;
    height: 100%;
    max-height: 100%;
    object-fit: cover;
    border-radius: var(--radius);
}
/* 评论样式 */
.diary-content .comment{
    padding: 0;
    margin-bottom: 0;
}
.diary-content .article-comment .comment-list .mb10{
    padding: 8px 0;
}
.diary-content .comment-list .mb10{
    margin-bottom: 0;
}
/* 分页器 */
.pagination>li>a {
    position: relative;
    float: left;
    padding: 6px 12px;
    margin-left: -1px;
    line-height: 1.42857143;
    color: #337ab7;
    text-decoration: none;
    background-color: #fff;
    border: 1px solid #ddd;
}
.pagination {
    padding-left: 0;
    margin-top: 28px;
    border-radius: 4px;
    overflow: hidden;
}