@charset "utf-8";

:root
{
    --font-color-0: #04077e;
    --font-color-1: #000;
    --font-color-2: #666;
    --font-color-3: #aaa;
    --bg-color-1: #eee;
    --line-1: #ccc;
    --line-2: #ddd;
}
p
{
    word-wrap: break-word;
    white-space: pre-wrap;
}

body
{
    font-family: "Times New Roman", Helvetica, Tahoma, Arial, "LXGW WenKai", "notoserifsc-medium", "Microsoft YaHei", "Hiragino Sans GB", "WenQuanYi Micro Hei", sans-serif;
    font-size: 16.8px;
    line-height: 1.7;
    /* letter-spacing: 0.6px; */
    color: var(--font-color-1);
    background: #e4e4e4;
    height: 100%;
}



a
{
    text-decoration: none;
    color: #4f7dde;
}

.paper
{
    padding: 4vw;
    background: #e4e4e4;
    min-height: 100vh;
}
.paper-main
{
    width: 100%;
    max-width: 880px;
    margin: 0 auto;
    padding: 36px 4vw 0px; /*上 宽 第*/
    background: #fff;
    /*border-radius: 24px;*/
    border-radius: 0px;
    background: #ffffff;
    box-shadow:  0px 5px 13px #616161, -5px -5px 13px #ffffff;
}
.index-main
{
    width: 100%;
    max-width: 580px;
    margin: 0 auto;
    padding: 36px 4.5vw 0px;
    border-radius: 0px;
    background: #ffffff;
    /* box-shadow:  0px 5px 13px #616161, -5px -5px 13px #ffffff; */
}

.index-header-line
{
    margin-top: -28px;
    /* margin-bottom: 18px; */
    /* border-bottom: 1px solid var(--line-1); */
    font-size: 0.6rem;
    color: var(--font-color-3);
    text-align: center;
    font-style: italic;
}

.header
{
    /*padding-bottom: 48px;
    margin-bottom: 48px;*/
    border-bottom: 1px solid var(--line-1);
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-content: center;
}
.index-header
{
    /*padding-bottom: 48px;
    margin-bottom: 48px;*/
    /* border-bottom: 1px solid var(--line-1); */
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-content: center; 
}


.logo
{
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 16px;
    flex: 0 0 100%;
}

.index-logo
{
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 0px;
    flex: 0 0 100%;
}

.nav
{
    margin: 4px -1px -3px;
    flex: 0 0 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-content: center;
}
.nav li
{
    padding: 2px 0;
    margin-right: 24px;
}
.nav li:last-of-type
{
    margin-right: 0;
}
.nav li a
{
    color: var(--font-color-1);
    /* opacity: .6; */
    /* transition: opacity ease-in-out .5s; */
}
.nav li a:hover
{
    opacity: 1;
    /* transition: opacity ease-in-out .5s; */
}

.post-header
{
    margin-bottom: 48px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-content: center;
}
.post-header .logo
{
    font-size: 1rem;
}
.post-header .go-home
{
    display: block;
    padding: 10px 20px 8px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid #eee;
    margin: 8px 0;
    /* transition: background ease-in-out .5s; */
}
.post-header .go-home:hover
{
    background: var(--bg-color-1);
    /* transition: background ease-in-out .5s; */
}
.post-header .go-home svg
{
    transform: translateX(0);
    /* transition: transform ease-in-out .5s; */
}
.post-header .go-home:hover svg
{
    transform: translateX(-4px);
    /* transition: transform ease-in-out .5s; */
}

.post-list
{
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: stretch;
}
.post
{
    width: 100%;
    padding-bottom: 48px;
    margin-bottom: 48px;
    border-bottom: 1px dashed var(--line-2);
}
.post-title
{
    display: inline-block;
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 12px;
    color: var(--font-color-1);
    /*transition: color ease-in-out .5s;*/
}
.post-title:hover
{
    color: var(--font-color-0);
    /* transition: color ease-in-out .5s; */
}
.post-except
{
    word-break: break-all;
    margin-bottom: 12px;
}
.read-more
{
    padding: 0 4px;
    color: var(--font-color-0);   
}
.read-more:before,
.read-more:after
{
    display: inline-block;
    /* transition: transform ease-in-out .5s; */
}
.read-more:before
{
    content: "{ ";
}
.read-more:after
{
    content: " }";
}
.read-more:hover:before
{
    transform: translateX(-4px);
    /* transition: transform ease-in-out .25s; */
}
.read-more:hover:after
{
    transform: translateX(4px);
    /* transition: transform ease-in-out .25s; */
}
.post-date
{
    font-size: 0.875rem;
    color: var(--font-color-3);
}

.paginator
{
    font-size: 0.875rem;
    width: 100%;
    margin: -18px auto 24px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    /*justify-content: space-evenly;*/
    align-items: center;
}
.paginator *
{
    display: block;
    padding: 8px 16px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid #eee;
}
.paginator .space
{
    display: block;
    padding: 8px 16px;
    border-radius: 18px;
    background: #fff;
    border: none;
}
.paginator a
{
    margin: 4px;
    color: var(--font-color-2);
    /* transition: color ease-in-out .5s; */
}
.paginator a:hover
{
    color: var(--font-color-0);
    /* transition: color ease-in-out .5s; */
}
.paginator .current
{
    color: var(--font-color-0);
    border: 1px solid var(--font-color-0);
}

.footer
{
    padding: 4px 0;
    font-size: 0.875rem;
    color: var(--font-color-3);
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-content: center;
}
.footer-last
{
    padding-bottom: 24px;
    /* padding-top: 6px; */
    font-size: 10px;
    color: var(--font-color-3);
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    border-top: 1px solid var(--line-1);
}
.post-footer-pre-next
{
    padding-top: 10px;
    /* padding-top: 6px; */
    color: black;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    width: -webkit-fill-available;
}

.footer span
{
    text-align: left;
    margin-bottom: -7px;
}
.footer-last-span-right
{
    flex: 1;
    text-align: right;
    font-size: 10px; 
}

.post-footer-pre-next-last-span-right
{
    flex: 1;
    text-align: right;
}

@media only screen and (max-width: 600px) {
    .footer-last {
        padding-top: 5px;
        flex-direction: column;
    }

    .footer-last i{
        font-style: normal;
    }

    .footer-last-span-right {
        float: left; 
        font-size: 10px; 
    }
  }

.index-footer-last-span
{
    font-size: 10px; 
}
.footer a
{
    color: var(--font-color-3);
    /* transition: color ease-in-out .5s; */
}
.footer a:hover
{
    color: var(--font-color-0);
    /* transition: color ease-in-out .5s; */
}

.post-main
{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 24px;
}
.post-main-title
{
    flex: 0 0 100%;
    /*margin-bottom: 12px;*/
    margin-top: 16px;
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 1.5;
    color: var(--font-color-1);
}
.post-meta
{
    font-size: 0.875rem;
    color: var(--font-color-3);
    flex: 0 0 100%;
    margin-bottom: 10px;
    margin-top: 10px;
}

.archive
{
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: space-between;
    align-content: normal;
}
.archive li
{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-content: center;
    padding: 12px 0;
}
.archive li:nth-child(odd)
{
    background: #fafafa;
}
.archive li:nth-child(even)
{
    background: #fff;
}
.archive li span
{
    width: 108px;
    color: var(--font-color-2);
}
.archive-main
{
    flex: 0 1 calc( 100% - 108px );
}


.archive-title
{
    color: var(--font-color-1);
    /*transition: color ease-in-out .5s;*/
}
.archive-title:hover
{
    color: var(--font-color-0);
    /* transition: color ease-in-out .5s; */
}

/* add by myself */
.circle-green {
    padding: 40px 25px 50px;
    border: solid 1px green;
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-content: center;
}
.circle-red {
    padding: 40px 25px 50px;
    border: solid 1px rgb(156, 0, 0);
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-content: center;
}
.circle-orange {
    padding: 40px 25px 50px;
    border: solid 1px rgb(244, 135, 26);
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-content: center;
}
.circle-blue {
    padding: 40px 25px 50px;
    border: solid 1px rgb(81, 114, 221);
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-content: center;
}
.circle-black {
    padding: 40px 25px 50px;
    border: solid 1px rgb(0, 0, 0);
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-content: center;
}

.poem-header{
    font-size: larger;
}
.poem span {
    color: #000
}

/* comment*/
.paper-comment {
    padding: 4vw;
}

.paper-comment-main {
    width: 100%;
    max-width: 880px;
    margin: 0 auto;
    padding: 72px 8vw 24px;
    background: #fff;
    border-radius: 24px;
    background: #fff;
}


.comments-container {
    display: inline-block;
    margin-top: 10px;
    width: 100%
}
  

.comment-area-title {
    width: 100%;
    margin: 10px 0;
    font-size: 1.38rem;
    color: var(--default-text-color);
}

/* list页面 标签访问过后的颜色 */
.archive-main a:link { 
    color:#4f7dde; 
    text-decoration:none; 
} 

.archive-main a:visited { 
    color:#9c9caf; 
    text-decoration: underline; 
} 
.archive-main a:hover {
    color:#000000;
    text-decoration: underline; 
}

.index-header a:link { 
    color:#000000; 
    text-decoration:none; 
} 

.index-header a:visited { 
    color:#9c9caf; 
    text-decoration: underline; 
} 

.index-header a:hover {
    color:rgb(0, 0, 0);
    text-decoration: underline; 
}

.header a:link {
    color:rgb(0, 0, 0);
    text-decoration: none; 
}

.header a:hover {
    color:rgb(0, 0, 0);
    text-decoration: underline; 
}




/* header相关 */
.description {
    font-size: smaller;
    color: #9c9caf;
    margin-top: -24px;
}

.header-container {
    display: flex;
    align-items: center;
  }
.header-content {
display: flex;
flex-direction: column;
margin-left: 10px; /* 调整a标签和span之间的距离 */
}

/*img adj*/
.about-achievement-container{
    max-width: 100%;
    display: flex;
}

.about-achievement-container img{
    background-color: rgba(255, 255, 255, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: inline-block;
    margin: 0 auto;
    vertical-align: middle;
}

.about-achievement-container img:hover{
    opacity: 1;
    cursor: pointer;
    transform: scale(1.5);
}
.about-achievement-container img:active::before{
    opacity: 1;
    cursor: pointer;
    transform: scale(1.5);
}

@media only screen and (max-width: 600px) {
    .about-achievement-container {
        max-width: 100%;
        display: flex;
        flex-direction: column;
    }

    .about-achievement-container img{
        max-width: 50%;
        margin-left: 0px;
        display: inline-block;
        margin: 0 auto;
        vertical-align: middle;
    }
  }
  
.inline-ul {
    list-style: none;
    padding: 0;
} 
.inline-li {
    display: inline-block;
    margin-right: 10px; /* 可以根据需要调整元素之间的间距 */
}

.year-font-color {
    color: black !important;
}

@media print {

    /* All your print styles go here */
    .paper {
        margin: 0;
        padding: 0;
    }

    .paper-main {
        margin: 0 !important;
        max-width: 100%;
    }
}

/* .darkmode-layer, .darkmode-toggle {
    z-index: 500;
} */

.darkmode-background {
    background: transparent !important;
}
/* 覆盖原始darkmode样式 */
.darkmode-ignore{
    isolation:isolate;
    display: initial;
}