/*!
 * Ankia-Theme v1.7
 * https://ankia.top/
 *
 * Licensed Apache-2.0 © 东东
 */

/* 增强CSS开始 */

/* 1. Consolidate media queries */
@media (max-width: 70em) {
    /* Move all media queries to one section for better maintainability */
  }
  
  /* 2. Use CSS custom properties for repeated values */
  :root {
    --shadow: 0px 24px 32px rgba(0, 0, 0, 0.04), 0px 16px 24px rgba(0, 0, 0, 0.04), 0px 4px 8px rgba(0, 0, 0, 0.04), 0px 0px 1px rgba(0, 0, 0, 0.04);
    --blue: #3c99c2;
    --blue-strong: #307bc7;
    --gray: gray;
    --border-radius: 5px;
    --transition-speed: 0.3s;
    --box-shadow: rgba(24, 26, 27, 0.24) 0px 12px 15px 0px, rgba(24, 26, 27, 0.19) 0px 17px 50px 0px;
  }
  
  /* 3. Add smooth scrolling */
  html {
    scroll-behavior: smooth;
  }
  
  /* 4. Optimize animations */
  @keyframes slideIn {
    from {
      opacity: 0;
      transform: translateY(-20px);
    }
    to {
      opacity: 1; 
      transform: translateY(0);
    }
  }
  
  /* 5. Add print styles */
  @media print {
    #navigationBar,
    #toc-pane,
    #footer {
      display: none;
    }
    
    #main {
      margin: 0;
      padding: 0;
      box-shadow: none;
    }
  }
  
/* 增强CSS结束 */

 body {
    /*font-family: "LXGW WenKai Screen", sans-serif;*/
    font-family: ubuntu;
    line-height: 1.5;
    font-size: 17px;
    margin: 0;
    height: 100%;
    min-height: 100vh
}

:root {
    --shadow: 0px 24px 32px rgba(0, 0, 0, 0.04), 0px 16px 24px rgba(0, 0, 0, 0.04), 0px 4px 8px rgba(0, 0, 0, 0.04), 0px 0px 1px rgba(0, 0, 0, 0.04);
    --blue: #3c99c2;
    --blue-strong: #307bc7;
    --gray: gray;
    --ck-color-table-caption-text: gray;
    --metadateColor: #777777
}

code,
pre {
    font-family: LXGWWenKaiMono monospace
}

#layout {
    max-width: 100% !important;
    display: flex;
    flex-direction: row;
    margin: 0 auto;
    min-width: 100% !important;
    justify-content: center;
    height: 100%;
    min-height: calc(100vh - 130px)
}

#childLinks.grid ul {
    list-style-type: none;
    display: flex;
    flex-wrap: wrap;
    padding: 0
}

#childLinks.grid ul li {
    width: 180px;
    height: 140px;
    padding: 10px
}

#childLinks.grid ul li a {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 5px;
    justify-content: center;
    align-content: center;
    text-align: center;
    font-size: large
}

.blogPostTopStyle {
    color: var(--blue);
    margin-right: 5px
}

#childLinks.grid ul li a:hover {
    background: #eee
}

#childLinks.list ul {
    list-style-type: none;
    display: inline-flex;
    flex-wrap: wrap;
    padding: 0;
    margin-top: 5px
}

#childLinks.list ul li {
    margin-right: 20px
}

#toggleMenuButton {
    border: none;
    background: #ffffff00;
    z-index: 1000;
    width: 1em;
    height: 1em;
    display: none;
    color: #000;
    cursor: pointer;
    position: absolute;
    right: .5em
}

#toggleMenuButton .feather-menu line {
    transition: all .3s ease
}

#toggleMenuButton.active .feather-menu line:first-child {
    opacity: 0;
    transform: translate(-100%, 0)
}

#toggleMenuButton.active .feather-menu line:nth-child(2) {
    transform: translate(0, 6px);
    rotate: 45deg;
    transform-origin: center
}

#toggleMenuButton.active .feather-menu line:last-child {
    transform: translate(0, -6px);
    rotate: -45deg;
    transform-origin: center
}

#parentLink {
    float: right;
    margin-top: 20px
}

#noteClippedFrom {
    padding: 10px 0 10px 0;
    margin: 20px 0 20px 0;
    color: #666;
    border: 1px solid #ddd;
    border-left: 0;
    border-right: 0
}

#toggleMenuButton::after {
    position: relative;
    top: -2px;
    left: 1px
}

#navigationBar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    background-color: #ffffff00;
    height: 50px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, .1);
    display: flex;
    align-items: center;
    z-index: 9999;
    opacity: 1;
    transition: .5s ease
}

#navigationBar a {
    cursor: pointer
}

#navigationItems {
    text-shadow: 1px 1px 10px rgb(0 0 0 / 24%);
    position: inherit;
    right: 20px;
    display: flex;
    height: 50px;
    align-items: center;
    border-top: 1px solid #0000001a
}

.menuLinkStyle {
    color: #232627e0;
    transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out;
}

.navigationItemsStyle {
    margin: 0 12px;
    display: flex;
    align-items: center
}

.navigationItemsStyle svg {
    transition: all .3s ease
}

.unfolding {
    rotate: -180deg
}

.menuLinkStyle:hover {
    color: var(--blue);
}

.dropDownStyle {
    position: absolute;
    display: none;
    top: 100%;
    margin-top: 5px;
    padding: 10px 7px;
    background: #ffffffe8;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, .1);
    flex-direction: column;
    align-items: flex-start;
    animation: slideIn .3s ease-in-out
}

.dropDownStyle>a {
    padding-top: 3px;
    padding-bottom: 3px
}

#siteTitle {
    position: absolute;
    left: 28px;
    margin: 0;
    display: flex;
    align-items: center
}

#siteTitle a {
    margin-left: 10px;
    color: #000;
    font-weight: 700;
    font-size: 1.5rem
}

#siteTitle>img {
    max-width: 100%;
    width: 32px
}

.hide {
    transform: translateY(-100%)
}

.showMenu {
    display: flex !important;
    justify-content: center;
    animation: fadeIn .2s ease-in-out
}

#content li {
    margin-bottom: 8px
}

a {
    color: var(--blue);
    text-decoration: none
}

#content a:hover {
    color: #4961ff;
    background: #97aae863;
    border-radius: 5px
}

#toc-pane li::marker {
    content: none
}

@media (max-width:70em) {
    #blogItems {
        width: 100% !important
    }

    #onTop {
        right: 10px !important;
        width: 25px !important;
        height: 25px !important;
        bottom: 50px !important
    }

    .platformStyle {
        margin: 0 3px !important
    }

    .cardContainerStyle {
        width: 50vw !important;
        position: unset !important;
        display: none !important
    }

    .bloggerInfoTitleStyle {
        font-size: .7rem;
        margin-bottom: 3px
    }

    .bloggerInfoCardStyle {
        width: 40vw !important;
        margin: 5px auto 5px auto !important
    }

    #navigationBar {
        height: 60px;
        background-color: #ffffff9e;
        flex-direction: column;
        justify-content: center
    }

    #menuCard {
        animation: fromRightToLeftAppearing .5s ease-in-out !important
    }

    #bloggerInfoCard {
        animation: fromLeftToRightAppearing .5s ease-in-out !important
    }

    #siteTitle {
        position: unset
    }

    #siteTitle>img {
        width: 20px
    }

    #navigationItems {
        position: unset;
        overflow-x: auto;
        white-space: nowrap;
        width: 80vw
    }

    #navigationItems>:first-child {
        margin-left: auto !important
    }

    #navigationItems>:nth-last-child(2) {
        margin-right: auto !important
    }

    .navigationItemsStyle {
        margin: 0 5px
    }

    body {
        font-size: 16px !important
    }

    #main {
        margin: 0 !important;
        padding: 60px 30px 30px 30px !important;
        width: 80% !important
    }

    #blogItemSummaryImgContain {
        width: 100px !important;
        height: 100px !important
    }

    #toggleMenuButton {
        display: flex
    }

    .ck-content .image img {
        max-width: 90% !important
    }

    #layout {
        margin: 0
    }

    #toc-pane {
        opacity: 0;
        display: none;
        background-color: #fff;
        border-radius: 5px;
        width: 50vw !important
    }

    .searchContainerStyle {
        width: 80% !important
    }

    .filmTitle,
    .watchDate {
        font-size: .6rem
    }

    #siteTitle a {
        font-size: 1.2rem
    }

    .table {
        display: block !important;
        white-space: nowrap;
        overflow-y: hidden
    }

    ::-webkit-scrollbar {
        display: none
    }

    .dropDownStyle {
        left: 0;
        width: 100vw;
        align-items: center
    }
}

#title {
    margin: 20px 0;
    font-size: 120%;
    text-align: center !important;
    padding-left: 0 !important
}

#content img {
    max-width: 80%;
    height: auto;
    display: block;
    margin: 0 auto;
    max-height: 30rem;
    width: auto;
    border-radius: 5px
}

img {
    width: 100%
}

.image_resized {
    width: auto !important
}

figcaption {
    display: flex;
    justify-content: center;
    font-size: smaller;
    color: #707173
}

hr {
    height: 1px;
    border-top-color: #0000001c;
    border-bottom-color: #ffffff00;
    border-left-color: #ffffff00;
    border-right-color: #ffffff00
}

code.language-text-plain {
    background-color: #ffffff00
}

#metadateContent {
    position: relative;
    height: 1rem
}

.table {
    display: flex;
    justify-content: center;
    width: 100% !important;
    margin: 0
}

.table table {
    font-size: small;
    border-width: 1px;
    border-color: #d79494d9;
    border-collapse: collapse
}

.table th {
    border-color: #ddd;
    border-width: 1px;
    padding: 8px;
    border-style: solid;
    background-color: #d6dbddb3
}

.table td {
    border-color: #ddd;
    border-width: 1px;
    padding: 8px;
    border-style: solid;
    background-color: #ffffffb3
}

h2,
h3,
h4,
h5 {
    border-bottom: 1px solid #0000001c
}

h2:before {
    content: "# ";
    color: var(--blue)
}

h3:before {
    content: "## ";
    color: var(--blue)
}

h4:before {
    content: "### ";
    color: var(--blue)
}

h5:before {
    content: "#### ";
    color: var(--blue)
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-20px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

#main {
    width: 70vw;
    position: relative;
    flex-basis: 0;
    flex-grow: 3;
    border-radius: 0.5rem;
    margin: 90px 20vw 0 20vw;
    padding: 0 50px;
    background-color: #ffffffd9 !important;
    -webkit-box-shadow: 0 12px 15px 0 rgba(0,0,0,0.24), 0 17px 50px 0 rgba(0,0,0,0.19);
    box-shadow: rgba(24, 26, 27, 0.24) 0px 12px 15px 0px, rgba(24, 26, 27, 0.19) 0px 17px 50px 0px;
    animation: slideIn .5s ease-in-out;
    overflow: auto;
}

nav#childLinks {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center
}

.blogItemsMainContain {
    color: #000;
    width: 90%;
    padding: 15px;
    border-radius: 5px;
    font-weight: 700;
    display: flex;
    flex-direction: column;
    position: relative;
    flex-wrap: nowrap;
    justify-content: center;
    overflow: hidden
}

#blogItems {
    display: flex;
    justify-content: center;
    height: 100%;
    width: 100%;
    margin: 10px;
    background: #ffffffbf;
    border-radius: 10px;
    max-width: 1000px;
    box-shadow: 0 1px 3px rgb(0 0 0 / 18%);
    transition: transform .3s ease-in-out;
    color: #000;
    text-decoration: none
}

#blogItems:hover {
    transform: scale(1.04)
}

.blogMetadate {
    margin-right: 1.2em;
    font-size: small;
    font-weight: 500;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    cursor: pointer;
    flex-wrap: wrap;
    color: var(--metadateColor) !important;
    align-items: center
}

.blogMetadateItems {
    margin-left: 1em;
    display: flex;
    flex-direction: row;
    align-items: center
}

.categoryBadge {
    padding: 0 3px;
    border-radius: 5px
}

.shakeStyle:hover {
    animation: shake .3s ease-in-out
}

#blogItemSummaryImgContain {
    border-radius: 5px;
    padding: 2px;
    border: 1px dashed #d4bdb1;
    margin-left: 5px;
    width: 150px;
    height: 150px;
    float: right;
    margin-right: 10px;
    margin-top: 10px;
    display: flex;
    align-items: center;
    overflow: hidden
}

#contentHeader {
    position: relative;
    height: 1rem;
    display: flex;
    justify-content: flex-end;
    margin-bottom: 40px;
    flex-wrap: wrap
}

.ck-content code {
    background-color: #95c8f175;
    border-radius: 7px;
    font-size: 80%;
    padding: 0 4px
}

.ck-content pre code {
    background-color: #ffffff00;
    white-space: pre-wrap;
    padding: 0 !important
}

blockquote {
    color: #708faf;
    border-left: 5px solid #708faf;
    background: none repeat scroll 0 0 rgba(102, 128, 153, .1);
    padding: 2px 1px 2px 27px;
    margin: .2rem 0 0 0;
    border-radius: 5px
}

.text-tiny {
    font-size: .8rem
}

.text-small {
    font-size: .9rem
}

.text-big {
    font-size: 1.3rem
}

.text-huge {
    font-size: 1.6rem
}

.image {
    height: 100%;
    border-radius: 50%;
    margin: 0 auto
}

pre {
    white-space: pre-wrap;
    word-wrap: anywhere;
    position: relative
}

iframe.pdf-view {
    width: 100%;
    height: 800px
}

.ck-content pre {
    background: hsl(0deg 0% 26.67%)
}

#toc-pane {
    order: 3;
    flex-direction: column;
    position: fixed;
    right: 0;
    width: 15vw;
    max-width: 250px;
    opacity: 1;
    top: 90px;
    animation: fromRightToLeftAppearing 1s ease-in-out;
    border-left: 2px solid #d9dde4;
    padding-left: 15px;
    margin-right: 15px;
    max-height: 80vh;
    overflow: auto;
    border-radius: 10px;
    background: #ffffffb3;
    background-color: rgba(255, 255, 255, .7);
    background-image: none;
    box-shadow: 2px 4px 8px 0 rgb(141 154 154/20%);
    transition: transform .3s ease-in-out
}

.tocActive {
    color: var(--blue) !important
}

@keyframes fromRightToLeftAppearing {
    from {
        opacity: 0;
        transform: translateX(100%)
    }

    to {
        opacity: 1;
        transform: translateX(0)
    }
}

@keyframes fromLeftToRightAppearing {
    from {
        opacity: 0;
        transform: translateX(-100%)
    }

    to {
        opacity: 1;
        transform: translateX(0)
    }
}

#toc ul {
    padding-left: 11px
}

#toc-pane li {
    max-width: 200px;
    padding-top: 3px
}

ul#toc {
    padding: 0;
    font-size: .8rem
}

#toc a {
    color: #000;
    font-weight: 400;
    text-decoration: unset
}

#toc li :hover {
    color: var(--blue)
}

.toc-anchor {
    margin-left: .1em;
    color: #90939936
}

.fLinkContainer {
    display: flex;
    flex-wrap: wrap;
    justify-content: center
}

.fLink {
    width: 140px;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 10px;
    margin: 10px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-height: 150px;
    min-height: 150px;
    transition: transform .3s ease-in-out
}

.fLink:hover {
    transform: scale(1.04)
}

.fLink img {
    width: 50px !important;
    height: 50px !important;
    border-radius: 5px !important;
    margin-bottom: 10px !important
}

.fLink>#fLinkTitle {
    font-size: medium;
    font-weight: 700;
    margin-bottom: 5px
}

.fLink>#fLinkDes {
    font-size: x-small;
    color: #666
}

#rewardContainer {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 50px
}

#rewardBtn {
    padding: 8px 24px;
    font-size: 18px;
    background-color: var(--blue);
    color: #fff;
    border: none;
    cursor: pointer;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, .1)
}

#rewardBtn:hover {
    box-shadow: 0 2px 4px rgba(0, 0, 0, .1);
    transform: translateY(-2px);
    transition: transform .5s;
    background: #4484ef
}

#rewardImgContainer {
    display: none;
    margin-top: 20px;
    opacity: 0;
    transition: opacity .5s
}

.rewardImg {
    width: 200px;
    margin: 10px;
    border: 1px dashed #ccc;
    border-radius: 4px;
    padding: 10px
}

.aliPay,
.wechatPay {
    text-align: center;
    font-size: .8125em;
    color: #999
}

#footer {
    text-align: center;
    font-size: medium;
    color: #6c7380;
    margin-top: 30px;
    position: relative;
    height: 100px;
    width: 100%
}

.cardContainerStyle {
    position: fixed;
    order: 3;
    top: 70px;
    width: 18vw;
    height: auto;
    display: flex;
    flex-direction: column;
    background: #ffffff00;
    cursor: pointer
}

.bloggerInfoTitleStyle {
    font-weight: 700;
    margin-bottom: 10px
}

.bloggerInfoContentStyle {
    font-size: smaller;
    color: #777;
    padding: 5px
}

#bloggerInfoName {
    font-weight: 700;
    margin: 5 auto
}

#bloggerInfo img {
    width: 6rem;
    height: 6rem;
    border-radius: 50%;
    transition: transform .5s
}

#bloggerInfo img:hover {
    transform: rotate(360deg)
}

#otherPlatformBar>a>svg {
    width: 1rem;
    fill: #00000091 !important
}

#otherPlatformBar>a :hover {
    fill: #000 !important
}

.announcement {
    height: 300px;
    background: #fff3e5
}

.platformStyle {
    margin: 0 10px 0 10px
}

.bloggerInfoCardStyle {
    width: 15vw;
    max-width: 250px;
    text-align: center;
    height: auto;
    padding: 10px 13px;
    border-radius: 10px;
    margin: 20px 0;
    background: #ffffffb3;
    -webkit-box-shadow: 0 12px 15px 0 rgba(0,0,0,0.24), 0 17px 50px 0 rgba(0,0,0,0.19);
    box-shadow: rgba(24, 26, 27, 0.24) 0px 12px 15px 0px, rgba(24, 26, 27, 0.19) 0px 17px 50px 0px;
    max-height: 180px;
    transition: transform .3s ease-in-out
}

.bloggerInfoCardStyle:hover {
    transform: scale(1.04)
}

#announcement {
    background-color: rgba(227, 224, 210, 0.7);
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff73
}

#articleCount {
    color: #fff;
    background: #999ca1;
    width: 16px;
    height: 16px;
    text-align: center;
    border-radius: 50%;
    font-size: 10px;
    margin-left: 2px
}

.cardItemLinkStyle {
    font-size: .9rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 5px 0;
    text-align: justify
}

#latestComment {
    display: flex;
    flex-direction: column
}

#mobileMenuContainer {
    margin-top: 60px;
    display: none;
    background: #ffffff80;
    width: 100%;
    height: 100%;
    z-index: 10;
    position: fixed;
    overflow: hidden auto
}

::-webkit-scrollbar {
    width: 8px
}

::-webkit-scrollbar-track {
    background-color: #fff
}

::-webkit-scrollbar-thumb {
    background-color: var(--blue);
    border-radius: 10px
}

::-webkit-scrollbar-thumb:hover {
    background-color: #555
}

.cf-article {
    background: #fff !important;
    box-shadow: 0 1px 3px rgb(0 0 0 / 18%)
}

#panel-btn {
    border: none !important;
    background-color: #ffffff00 !important
}

#cf-state {
    background: #ffffff00
}

@keyframes shake {
    0% {
        transform: rotate(0)
    }

    25% {
        transform: rotate(5deg)
    }

    50% {
        transform: rotate(0)
    }

    75% {
        transform: rotate(-5deg)
    }

    100% {
        transform: rotate(0)
    }
}

.copyButtonStyle {
    position: absolute;
    top: 3px;
    right: 4px;
    border: 0;
    border-radius: 4px;
    padding: 0 10px;
    font-size: .6em;
    line-height: 1.8;
    color: silver;
    background-color: #7777775c;
    text-align: center
}

.copyButtonStyle:hover {
    background-color: #666
}

#onTop {
    position: fixed;
    display: flex;
    bottom: 30px;
    right: 15vw;
    background: #37363661;
    border-radius: 50%;
    padding: 3px;
    opacity: 1;
    transition: .5s ease;
    cursor: pointer;
    z-index: 2;
    align-items: center
}

#onTop:hover {
    background: #999;
    transform: translateY(-5px)
}

.searchContainerStyle {
    position: fixed;
    top: 80px;
    display: none;
    align-items: center;
    background-color: #fff;
    border-radius: 5px;
    flex-direction: column;
    width: 50%;
    cursor: pointer;
    box-shadow: 0 1px 3px rgb(0 0 0 / 18%);
    padding: 20px;
    z-index: 1000;
    max-height: 60%;
    overflow: auto;
    animation: slideIn .5s ease-in-out
}

#searchInput {
    border: none;
    border-bottom: 1px solid #ffebcd;
    padding: 5px;
    width: 90%;
    outline: 0
}

.searchItems {
    font-weight: 700
}

.itemsTitle {
    margin: .4em 0;
    padding-left: .5em;
    border-left: 1px solid #d9d3d3
}

.searchItems:hover {
    color: #deb887
}

#searchResults {
    width: 90%;
    margin-top: 1em
}

#toc-pane::-webkit-scrollbar {
    width: 1px
}

#toc-pane::-webkit-scrollbar-thumb {
    background-color: var(--blue)
}

.filmBox {
    width: 15vw;
    height: 15vw;
    max-width: 150px;
    min-width: 80px;
    margin: 15px;
    box-sizing: border-box;
    max-height: 200px;
    min-height: 100px;
    overflow: hidden;
    transition: transform .3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative
}

.filmBox img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px !important;
    transition: transform .3s ease
}

.filmTitle {
    top: 0
}

.filmTitle,
.watchDate {
    width: 100%;
    text-align: center;
    color: #fff;
    border-radius: 5px 5px 0 0;
    position: absolute;
    left: 0;
    background-color: rgba(0, 0, 0, .5);
    opacity: 0;
    transition: opacity .3s ease
}

.playMusicButton {
    fill: #f3f3f36e;
    stroke: #00000087;
    width: 50% !important;
    height: 50% !important;
    position: absolute;
    top: 50%;
    left: 50%;
    opacity: 0;
    transform: translate(-50%, -50%);
    transition: opacity .3s ease
}

.watchDate {
    bottom: 0;
    border-radius: 0 0 5px 5px !important
}

.filmBox:hover {
    transform: scale(1.2)
}

.filmBox:hover .filmTitle,
.filmBox:hover .playMusicButton,
.filmBox:hover .watchDate {
    opacity: 1
}

::marker {
    color: var(--blue)
}

#musicPlayer {
    position: fixed;
    z-index: 999;
    bottom: 0
}

.todo-list {
    list-style-type: none;
    padding-inline-start: 1rem
}

#morePost {
    display: flex;
    flex-direction: row;
    align-items: center;
    font-size: 1rem;
    margin: 20px 0;
    justify-content: center
}

.timeline {
    position: relative;
    padding-left: 68px
}

.timeline::before {
    content: "";
    position: absolute;
    top: 0;
    left: 40px;
    width: 2px;
    height: 100%;
    background-color: #ccc
}

.year {
    position: relative;
    margin-bottom: 20px
}

.yearLabel {
    position: absolute;
    left: -80px;
    font-weight: 700
}

.post {
    position: relative;
    margin-bottom: 10px;
    display: flex;
    align-items: center
}

.post::after {
    content: "";
    position: absolute;
    top: 50%;
    left: -30px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #ccc;
    transform: translateY(-50%)
}

.post::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -30px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #fff;
    transform: translateY(-50%)
}

.postDate {
    margin-right: 10px;
    flex-shrink: 0;
    width: 3rem
}

.tagCloud {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 20px
}

.tagItem {
    display: inline-block;
    padding: 5px 10px;
    margin: 5px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, .3);
    transition: transform .3s ease;
    cursor: pointer
}

.tagItem:hover {
    transform: scale(1.1)
}

/* 定义深色模式的样式 */
.dark-mode {
    background-color: #1a1a1a;
    color: #ffffff;
  }
  
  .dark-mode #main {
    background-color: #2d2d2d !important;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 12px 15px 0px, rgba(0, 0, 0, 0.19) 0px 17px 50px 0px;
  }
  
  .dark-mode a {
    color: #66b3ff;
  }
  
  .dark-mode #content a:hover {
    color: #0a8cf7;
    background: #d1d3da63;
    border-radius: 5px
    }

    .dark-mode .bloggerInfoTitleStyle {
        color: #ffffff;
    }

  .dark-mode #navigationBar {
    background-color: rgba(45, 45, 45, 0.8);
    z-index: 9999;
  }
  
  .dark-mode .menuLinkStyle {
    color: #ffffff;
  }
  
  .dark-mode .bloggerInfoCardStyle,
  .dark-mode #toc-pane,
  .dark-mode .searchContainerStyle,
  .dark-mode #mobileMenuContainer {
    background-color: rgba(45, 45, 45, 0.8);
  }
  
  .dark-mode #blogItems {
    background: rgba(45, 45, 45, 0.8);
    color: #ffffff;
    box-shadow: 0 1px 8px 1px rgb(8 1 8);
  }
  
  .dark-mode #announcement {
    background-color: rgba(45, 45, 45, 0.8);
    color: #ffffff;
    }

  .dark-mode .dropDownStyle {
    background-color: rgba(45, 45, 45, 0.8);
    color: #ffffff;
  }  

  .dark-mode .type-text {
    color: #e6e6e6!important;
  }

  .dark-mode .table td {
    background-color: rgba(45, 45, 45, 0.7);
  }
  
  .dark-mode .table th {
    background-color: rgba(60, 60, 60, 0.7);
  }
  
  .dark-mode blockquote {
    background: rgba(102, 128, 153, 0.2);
  }
  
  .dark-mode code {
    background-color: rgba(149, 200, 241, 0.2);
  }
  
  .dark-mode #toc a {
    color: #ffffff;
  }
  
  .dark-mode .copyButtonStyle {
    background-color: rgba(119, 119, 119, 0.4);
  }
  
  .dark-mode #onTop {
    background: rgba(55, 54, 54, 0.5);
  }
  
  .dark-mode .filmTitle,
  .dark-mode .watchDate {
    background-color: rgba(0, 0, 0, 0.7);
  }
  
  .dark-mode ::-webkit-scrollbar-track {
    background-color: #2d2d2d;
  }
  
  .dark-mode ::-webkit-scrollbar-thumb {
    background-color: #4a4a4a;
  }
  
  .dark-mode #siteTitle a {
    color: #ffffff;
  }
  
  .dark-mode .blogMetadateItems {
    color: #999999;
  }
  
 /* 定义深色模式的样式end */ 


  /* 定义无刷更新css */ 
  .loading-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(to right, #00dbde, #fc00ff);
    z-index: 10000;
    transition: none; /* 移除默认过渡效果，使用 requestAnimationFrame 控制 */
  }

    /* 深色模式的进度条 */
    .dark-mode .loading-bar {
        background: linear-gradient(to right, #4facfe, #00f2fe);  
    } 
  
  .page-transition {
    opacity: 1;
    transition: opacity 0.3s ease-in-out;
  }
  
  .page-transition.loading {
    opacity: 0.6;
  }
  /* 定义无刷更新css end*/ 

  /*定义移动端文章目录列表显示CSS*/
  @media (max-width: 70em) {
    #toc-pane {
      transform: translateX(100%);
      transition: transform 0.3s ease-in-out;
      position: fixed;
      right: 0;
      top: 70px;
      width: 70vw !important;
      background: #ffffffeb;
      height: 80vh;
      padding: 20px;
      border-radius: 10px 0 0 10px;
    }
  
    .dark-mode #toc-pane {
      background: #2d2d2deb;
    }
  
    #toc-pane.show {
      transform: translateX(0);
    }
  
    #toc-toggle {
      position: fixed;
      right: 10px;
      top: 80px;
      z-index: 999;
      background: #fff;
      border-radius: 50%;
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 2px 4px rgba(0,0,0,0.1);
      cursor: pointer;
    }
  
    .dark-mode #toc-toggle {
      background: #2d2d2d;
      color: #fff;
    }
  }
  
  /*定义移动端文章目录列表显示CSS end*/