.simple_write_article_container {
    width: 94%;
    margin: 0 auto;
}






.simple_write_article_title {
    color: #2e3650;
    text-align: center;
    font-family: 'indexTitleFont', sans-serif;
    margin: 17px;
    font-size: 20px;
}

.simple_write_article_content {
    font-family: 'article_font', sans-serif;
    padding: 10px 15px;
}

.simple_write_article_info {
    height: 24px;
    color: gray;
    text-align: center;
    display: flex;
    /* 使用 Flexbox 布局 */
    align-items: center;
    /* 垂直居中对齐 */
    gap: 10px;
    /* 设置子元素之间的间距 */
}

.info_box {
    display: flex;
    /* 使用 Flexbox 布局 */
    align-items: center;
    /* 垂直居中对齐 */
    justify-content: center;
    /* 水平居中对齐 */
}

.simple_write_article_info a {
    line-height: 24px;
    color: gray;
}

.simple_write_article_date {
    color: gray;
}


.simple_write_article_info .simple_write_article_edit_button {
    font-size: 12px;
    padding: 3px 5px;
    color: white;
    background-color: var(--simple_write_theme_color);
    border-radius: 4px;
}

.classify1_icon {
    margin: 0 auto;
    background-image: url("../svg/classify-1.svg");
    background-size: cover;
    background-repeat: no-repeat;
    display: inline-block;
    width: 16px;
    height: 16px;
    transition: all 0.5s ease;
}

.visited_icon {
    margin: 0 auto;
    background-image: url("../svg/visited.svg");
    background-size: cover;
    background-repeat: no-repeat;
    display: inline-block;
    width: 16px;
    height: 16px;
    transition: all 0.5s ease;
}


.time_icon {
    margin: 0 auto;
    background-image: url("../svg/time.svg");
    background-size: cover;
    background-repeat: no-repeat;
    display: inline-block;
    width: 16px;
    height: 16px;
    transition: all 0.5s ease;
}


@media (max-width: 450px) {

    .simple_write_article_edit_button,
    .simple_write_article_classify,
    .classify1_icon {
        display: none;
    }
}



/* 文章末尾分割线样式 */

.line-with-text {
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--simple_write_theme_color);
    font-size: 11px;
    /* margin: 10px 55px; */
    width: 60%;
    margin: 30px auto;
}

.line-with-text::before,
.line-with-text::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #333;
}

.line-with-text::before {
    margin-right: .5em;
}

.line-with-text::after {
    margin-left: .5em;
}




/* 文章末尾标签列表样式 */
.article_tag_container {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    text-align: center;
    white-space: nowrap;
    background-color: rgba(255, 255, 255, 0);
    padding: 25 auto;
    color: black;
}


.neighbor_log_box {
    width: 80%;
    margin: 0 auto;
}

.prev_log {
    float: left;
    background-color: var(--simple_write_theme_color);
    padding: 8px;
    border-radius: 7px;
    margin-left: 15px;
}

.next_log {
    float: right;
    background-color: var(--simple_write_theme_color);
    padding: 8px;
    border-radius: 7px;
    margin-right: 15px;
}

.prev_log a {
    color: white;
    font-weight: bold;
}

.next_log a {
    color: white;
    font-weight: bold;
}

/* 评论大框开始 */
.simple_write_comment_part {
    margin-top: 25px;
}

.simple_write_comment_part_title {
    text-align: center;
    font-size: 20px;
    font-family: 'indexTitleFont', sans-serif;
    border: 2px var(--simple_write_theme_color) dotted;
    border-radius: 8px;
    margin: 15px;

}

.simple_write_comment_part_title span {
    margin: 0 auto;
    color: var(--simple_write_theme_color);
}

/* 下面开始做评论 */
.comment-header {
    margin: 15px 0px;
    color: var(--simple_write_theme_color);
    font-size: medium;
    font-weight: bolder;
}

.comment {
    /* background-color: rgb(255, 255, 255); */
    margin-bottom: 20px;
}

.first_comment_box {
    display: flex;
    flex-direction: column;
}

.comment_info {
    display: flex;
    flex-direction: row;
}

.comment_avatar img {
    border-radius: 25%;
}

.comment_name_info {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.comment_name {
    margin-left: 10px;
}

.comment_name a {
    font-size: 16px;
    font-weight: bolder;
    color: var(--simple_write_theme_color);
    transition: all 0.5s ease;
}


.comment_name a:hover {
    color: var(--simple_write_theme_secondary_color);
}

.comment_time {
    font-size: 12px;
    margin-left: 10px;
    font-weight: lighter;
}

.comment_main_box {
    margin-left: 50px;
}

.comment_content {
    background-color: #f2f6fc;
    height: auto;
    min-height: 100px;
    border-radius: 10px;
    padding: 10px;
    margin-bottom: 8px;
    font-weight: lighter;
}

.comment_reply {
    display: flex;
    align-items: center;
    height: 14px;
    margin-bottom: 8px;
}

.comment-replay-btn {
    display: flex;
    align-items: center;
    color: #7f7b7b;
    font-size: 14px;
    cursor: pointer;
    transition: color 0.35s;
}

.comment-replay-btn:hover {
    color: var(--simple_write_theme_color);
}

.reply_icon {
    margin: 0 auto;
    margin-right: 5px;
    background-image: url("../svg/reply.svg");
    background-size: cover;
    background-repeat: no-repeat;
    display: inline-block;
    width: 18px;
    height: 14px;
    transition: all 0.5s ease;
}

#pagenavi {
    margin: 25px;
    text-align: center;
}

#pagenavi span {
    padding: 6px 8px;
    border-radius: 5px;
    background-color: var(--simple_write_theme_color);
    margin-right: 5px;
    color: white;
}


#pagenavi a {
    padding: 6px 8px;
    border-radius: 5px;
    background-color: #ffffff;
    margin-right: 5px;
    transition: all 0.5s ease;
}

#pagenavi a:hover {
    color: white !important;
    background-color: var(--simple_write_theme_color);
}

#pagenavi a:visited {
    color: inherit;
}


/* 子评论 */
.child_comment_box {
    background-color: rgb(255, 255, 255);
    margin-bottom: 20px;
    margin-left: 15px;

}


/* 评论发布 */

.comment_post {
    padding: 12px;
    margin: 0 auto;
    width: 95%;
    display: flex;
}

.commentform {
    text-align: center;
    width: 92%;
    margin: 0 auto;
}

.commentform textarea {
    line-height: 1.5;
    font-size: 16px;
    width: 95%;
    padding: 10px;
    margin-bottom: 10px;
    resize: none;
    border-radius: 8px;
    height: 120px;
    overflow: auto;
    background: #f2f6fc;
    border: 0;
    color: black;
}

.commentform textarea:focus {
    outline: none;
    box-shadow: 0 0 5px var(--simple_write_theme_color);
}



.comment_info {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.com_control {
    flex: 1;
    width: 95%;
    padding: 8px 10px;
    margin-bottom: 10px;
    border: 0px solid #ddd;
    border-radius: 5px;
    background: rgb(0 0 0 / 5%);
    border: 0;
    background: #f2f6fc;
    font-size: 16px;
}

@media (max-width: 486px) {
    .com_control {
        margin-bottom: 10px;
    }
}

.com_control:focus {
    outline: none;
    box-shadow: 0 0 5px var(--simple_write_theme_color);
}


.submit_verifyCode {
    margin-top: 15px;
}

.submit_verifyCode img,
.submit_verifyCode input {
    vertical-align: middle;
    height: 30px;
}

.submit_verifyCode img {
    height: 40px;
    margin-right: 30px;
}

.submit_verifyCode input {
    flex: 1;
    height: 30px;
    border: 1px solid #726f6f;
    border-radius: 5px;
    background: rgb(0 0 0 / 5%);
    border: 0;
    background: #f2f6fc;
    font-size: 16px;
    width: 80px;
    padding-left: 6px;
}

.submit_verifyCode input:focus {
    outline: none;
    box-shadow: 0 0 5px var(--simple_write_theme_color);
}


.com_submit_p {
    width: 80%;
}

.com_submit_p input {
    margin-top: 10px;
    border-radius: 8px;
    padding: 8px;
    background-color: var(--simple_write_theme_color);
    width: 100%;
    color: #ffffff;
    font-size: large;
    font-weight: bold;
    border: 0px;
    outline: none;
}

.com_submit_p a {
    float: right;
    display: none;
    /* margin: 0 auto; */
    /* margin-top: 7px; */
    border-radius: 6px;
    padding: 3px;
    background-color: var(--simple_write_theme_color);
    width: 55px;
    color: #ffffff;
    font-size: small;
    font-weight: lighter;
    border: 0px;
}

.com_submit_p a:hover {
    cursor: pointer;
}



/* 文章中图片alt部分在下方显示 */
.image_container img {
    transition: all 0.5s ease;
}

.image_container img:hover {
    transform: translateY(-3px);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.7);
}