<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/**
 * æ¨¡æ¿æ&nbsp;·å¼è¡¨
 */
:root {
    --marRadius: 5px;
    --conBgcolor: #ffffff; /* å¯¼èˆªã€å¡ç‰‡ã€å†…å®¹çš„èƒŒæ™¯é¢œè‰² */
    --bodyBground: #f5f5f6; /* é¡µé¢èƒŒæ™¯é¢œè‰² */
    --fontColor: #5a5c69; /* æ™®é€šæ–‡æœ¬çš„é¢œè‰² */
    --aColor: #333333; /* a æ&nbsp;‡ç­¾çš„é¢œè‰² */
    --aHoverColor: #f6607d; /* a æ&nbsp;‡ç­¾ hover çŠ¶æ€çš„é¢œè‰² */
    --lightColor: #757575; /* æ¯”è¾ƒæµ…ä¸€ç‚¹çš„æ–‡æœ¬é¢œè‰² */

    /* è¡¨å•å’ŒæŒ‰é’®çš„å¸¸è§„æ&nbsp;·å¼ */
    --inputBgColor: #ffffff;
    --inputBorderColor: #cccccc;
    --inputTextColor: #333333;
    --buttonBgColor: #cccccc;
    --buttonTextColor: #ffffff;
    --buttonBorderColor: #cccccc;
    --selectBgColor: #ffffff;
    --selectBorderColor: #cccccc;
    --selectTextColor: #333333;
    --dividerColor: #e0e0e0;
    --borderColor: #00000019;
}

/* é»‘å¤œæ¨¡å¼ */
[data-theme="dark"] {
    --conBgcolor: #2e2e2e; /* å¯¼èˆªã€å¡ç‰‡ã€å†…å®¹çš„èƒŒæ™¯é¢œè‰² */
    --bodyBground: #121212; /* é¡µé¢èƒŒæ™¯é¢œè‰² */
    --fontColor: #ffffff; /* æ™®é€šæ–‡æœ¬çš„é¢œè‰² */
    --aColor: #cfcfcf; /* a æ&nbsp;‡ç­¾çš„é¢œè‰² */
    --aHoverColor: #f6607d; /* a æ&nbsp;‡ç­¾ hover çŠ¶æ€çš„é¢œè‰² */
    --lightColor: #757575; /* æ¯”è¾ƒæµ…ä¸€ç‚¹çš„æ–‡æœ¬é¢œè‰² */

    /* è¡¨å•å’ŒæŒ‰é’®çš„é»‘å¤œæ¨¡å¼æ&nbsp;·å¼ */
    --inputBgColor: #3a3a3a;
    --inputBorderColor: #5a5a5a;
    --inputTextColor: #cfcfcf;
    --buttonBgColor: #444444;
    --buttonTextColor: #ffffff;
    --buttonBorderColor: #5a5a5a;
    --selectBgColor: #3a3a3a;
    --selectBorderColor: #5a5a5a;
    --selectTextColor: #cfcfcf;
    --dividerColor: #444444;
    --borderColor: #848797;
}

body {
    margin: 0;
    line-height: 1.5;
    font-size: 16px;
    color: var(--fontColor);
    background-color: var(--bodyBground);
    font-family: helvetica neue, Helvetica, Arial, sans-serif;
}

/* å…¶ä»–æ&nbsp;·å¼ */
h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
    font-weight: 400;
}

p {
    line-height: 2;
    margin: 30px 0;
}

a {
    color: var(--aColor);
    transition: all 0.2s;
    text-decoration: none;
}

a:focus, a:hover {
    color: var(--aHoverColor);
    text-decoration: none;
}

/* è¡¨å•è¾“å…¥æ¡†æ&nbsp;·å¼ */
input, textarea {
    background-color: var(--inputBgColor);
    border: 1px solid var(--inputBorderColor);
    color: var(--inputTextColor);
    padding: 10px;
    border-radius: var(--marRadius);
    font-size: 16px;
    width: 100%;
    box-sizing: border-box;
}

/* æŒ‰é’®æ&nbsp;·å¼ */
button {
    background-color: var(--buttonBgColor);
    color: var(--buttonTextColor);
    border: 1px solid var(--buttonBorderColor);
    padding: 10px 20px;
    border-radius: var(--marRadius);
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.2s, border-color 0.2s;
}

button:hover {
    background-color: darken(var(--buttonBgColor), 10%);
    border-color: darken(var(--buttonBorderColor), 10%);
}

/* ä¸‹æ‹‰é€‰æ‹©æ¡†æ&nbsp;·å¼ */
select {
    background-color: var(--selectBgColor);
    border: 1px solid var(--selectBorderColor);
    color: var(--selectTextColor);
    padding: 10px;
    border-radius: var(--marRadius);
    font-size: 16px;
    width: 100%;
    box-sizing: border-box;
}

/* åˆ†å‰²çº¿æ&nbsp;·å¼ */
hr {
    border: none;
    border-top: 1px solid var(--dividerColor);
    margin: 20px 0;
}

.small {
    font-size: 12px;
}

.m-r-3 {
    margin-right: 3px;
}

.m-r-5 {
    margin-right: 5px;
}

.m-r-10 {
    margin-right: 10px;
}

/* å®šä¹‰æ‰€æœ‰å…ƒç´&nbsp;çš„ width =ï¼ˆborder+paddingï¼‰ï¼Œæ–¹ä¾¿åŽç»­è®¡ç®— */
* {
    box-sizing: border-box
}

img {
    max-width: 100%
}

hr {
    border: 0;
    border-top: 1px solid rgba(0, 0, 0, .1)
}

blockquote {
    font-style: italic;
    color: #868e96
}

input, textarea {
    font-family: inherit;
    color: #848797;
    outline: none
}

input[type="submit"] {
    cursor: pointer
}

textarea {
    padding: 1rem 0.75rem
}

footer {
    margin-top: 60px;
    background-color: var(--conBgcolor);
}

footer .list-inline {
    margin: 0;
    padding: 0
}

footer .copyright {
    font-size: 14px;
    margin-bottom: 0;
    text-align: center
}

/* æ—&nbsp;æ&nbsp;·å¼åˆ—è¡¨  */
.unstyle-li {
    padding-left: 0px;
    list-style: none;
    margin-block: 8px;
    font-size: medium
}

/* å¡ç‰‡å±žæ€§ã€‚é¡µé¢ä»¥å¡ç‰‡å½¢å¼ç»„æˆï¼Œè¿™é‡Œç›´æŽ¥é…ç½®ï¼Œè®©æ•´ä¸ªé¡µé¢çš„å¡ç‰‡æœ‰ç»Ÿä¸€çš„å†…è¾¹è·ã€‚ */
.card-padding {
    padding: 1.25rem
}

/* å¸ƒå±€
   è¡Œï¼ˆrowï¼‰ä¸Šé€‰æ‹©flexå¸ƒå±€ï¼Œå¹¶è®¾ç½®å…è®¸æ¢è¡Œï¼ˆwrapï¼‰
   åˆ—ï¼ˆcolï¼‰åˆ™éœ€è¦é€šè¿‡æ&nbsp;¹æ®å¤§å°å±åˆ†åˆ«é…ç½®ï¼Œè¿™æ˜¯ç½‘é¡µæœ€é‡è¦çš„åœ°æ–¹ï¼Œæ˜¯æ•´ä¸ªç½‘é¡µçš„éª¨æž¶
---------------------------------------------------*/
.row {
    display: flex;
    flex-wrap: wrap;
}

/* å¤§å±ä¸‹çš„åˆ— */
@media (min-width: 768px) {
    .column-big {
        padding-right: 10px;
        flex: 0 0 66.666667%;
        max-width: 66.666667%
    }

    /* å·¥å…·æ&nbsp;åˆ— */
    .column-small {
        font-size: medium;
        padding-left: 20px;
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%
    }

    /* æ–‡ç«&nbsp;å‘å¸ƒæ—¶é—´å’Œæ–‡ç«&nbsp;é˜…è¯»è¯„è®ºæ•°è¿™ä¸¤åˆ—çš„é…ç½® */
    .info-row {
        padding: 1rem !important
    }

    .log-info {
        flex: 0 0 66.666667%;
        max-width: 66.666667%
    }

    .log-count {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
        text-align: right
    }
}

/* å°å±ä¸‹çš„åˆ— */
@media (max-width: 767px) {

    .column-big {
        padding-right: 8px;
        padding-left: 8px;
        width: 100%
    }

    /* å·¥å…·æ&nbsp;åˆ— */
    .column-small {
        padding-right: 8px;
        padding-left: 8px;
        width: 100%
    }

    /* æ–‡ç«&nbsp;å‘å¸ƒæ—¶é—´å’Œæ–‡ç«&nbsp;é˜…è¯»è¯„è®ºæ•°ä¸¤åˆ—çš„é…ç½® */
    .log-info {
        flex: 0 0 60%;
        max-width: 60%
    }

    .log-count {
        white-space: nowrap;
        flex: 0 0 40%;
        max-width: 40%;
        text-align: right
    }
}

/* æœ€å¤–å±‚æ•´ä½“å®¹å™¨çš„å“åº”å¼é…ç½®ï¼Œå³ container é…ç½®
---------------------------------------------------*/
.container {
    width: 100%;
    align-items: center; /* ç½‘é¡µå®¹å™¨åœ¨æ•´ä¸ªç½‘é¡µä¸­åž‚ç›´å±…ä¸­ */
    margin-right: auto;
    margin-left: auto
}

/* container åœ¨ä¸åŒå±å¹•ä¸‹çš„é…ç½® */
@media (min-width: 576px) {
    .container {
        max-width: 540px
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px
    }
}

@media (min-width: 1201px) {
    .container {
        max-width: 1140px
    }
}

/* è®¾ç½® container åœ¨å°åž‹å±å¹•ä¸Šçš„å†…å¤–è¾¹è· ï¼Œä½¿å…¶æ›´ç¬¦åˆå°åž‹å±å¹•çš„è§‚æ„Ÿä½“éªŒ */
@media (min-width: 768px) {
    .container {
        padding-right: 15px;
        padding-left: 15px;
        margin-right: auto;
        margin-left: auto
    }
}

/* åœ¨ç»å¯¹å®šä½æƒ…å†µä¸‹ï¼Œä¸»è¾¹æ&nbsp;çš„å…¨å®½(å¯ä¾›ä¸€äº›ä½äºŽä¸»è¾¹æ&nbsp;çš„éš¾ä»¥è®¡ç®—å®½åº¦çš„å¯¹è±¡ä½¿ç”¨)
---------------------------------------------------*/
@media (min-width: 1px) {
    .rea-width {
        width: calc(100% - 18px)
    }
}

@media (min-width: 576px) {
    .rea-width {
        width: 524px
    }
}

@media (min-width: 768px) {
    .rea-width {
        width: 450px
    }
}

@media (min-width: 992px) {
    .rea-width {
        width: 609px
    }
}

@media (min-width: 1201px) {
    .rea-width {
        width: 730px
    }
}

/* åšå®¢é¡µé¢åº•éƒ¨ï¼ˆfooterï¼‰æ²¡æœ‰ç©ºéš™ï¼ˆå³é˜²æ­¢ footer åœ¨é¡µé¢ä¸­é—´ä½ç½®å‡ºçŽ°çš„è¯¡å¼‚çŽ°è±¡ï¼‰
---------------------------------------------------*/
body {
    display: flex;
    flex-direction: column;
    height: 100vh;
}

.blog-header {
    flex: 0 0 auto;
}

.blog-container {
    flex: 1 0 auto;
}

.blog-footer {
    flex: 0 0 auto;
}

/* åšå®¢å¤´éƒ¨å±žæ€§çš„é…ç½®
---------------------------------------------------*/
.blog-header {
    margin-bottom: 2.3rem;
    background-color: var(--conBgcolor);
    box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.02)
}

.blog-header-c {
    height: 71.63px;
    display: flex;
    justify-content: space-between /* å¯¼èˆªæ&nbsp;ä¸ºä¸»è½´æ–¹å‘ä¸¤ç«¯å¯¹é½ï¼Œå³å¤§æ&nbsp;‡é¢˜ä¸Žå¯¼èˆªä¸¤éƒ¨åˆ†ï¼Œä¸€ä¸ªå‘å·¦é&nbsp;é½ï¼Œä¸€ä¸ªå‘å³é&nbsp;é½ */
}

/* åšå®¢æ&nbsp;‡é¢˜å’Œå‰¯æ&nbsp;‡é¢˜ */
.blog-header-title {
    font-size: 26px;
    z-index: 1
}

.blog-header-subtitle {
    font-size: small;
    letter-spacing: 0.2rem;
    position: absolute;
    padding-top: 48px;
    z-index: 0
}

/* å¯¼èˆªé“¾æŽ¥çš„ä¸Šä¸‹å†…è¾¹è·ï¼ˆpadding-blockï¼‰è¦å¤§ï¼Œå¯ä½¿å…‰æ&nbsp;‡ç¦»å¼€å­—ç¬¦åŽä¸€æ®µè·ç¦»ä¾ç„¶èƒ½å”¤èµ·å­å¯¼èˆªæ&nbsp;‡ç­¾
 * å¦å¤–liæ&nbsp;‡ç­¾çš„åˆ—è¡¨é¡¹æ&nbsp;‡è®°ä¸ºç©º ï¼ˆlist-style: noneï¼‰ */
.nav-link {
    padding: 1rem 0.5rem 1rem 0.5rem
}

.list-menu {
    list-style: none
}

/* å¯¼èˆªåˆ—è¡¨çš„å“åº”å¼é…ç½®
   åœ¨ä¸åŒå¤§å°çš„å±å¹•ä¸Šï¼Œå¯¼èˆªèœå•ä¼šæœ‰ä¸åŒçš„æ&nbsp;·å¼ã€‚
   æ&nbsp;·å¼æ&nbsp;¹æ®å±å¹•å¤§å°åˆ†ä¸ºä¸¤ç§ï¼š767pxä»¥ä¸Šï¼Œ767pxä»¥ä¸‹
---------------------------------------------------*/
/* å¤§å±å¹• */
@media (min-width: 768px) {
    .nav-list {
        display: flex;
        padding-block: 4.5px;
        text-align: center
    }

    /* å¤§å±å¹•åˆ—è¡¨æ&nbsp;·å¼ */
    .list-menu .list-menu {
        border-bottom: 1px solid #f1f1f1;
    }

    .list-menu:last-child {
        border-bottom: unset
    }

    .blog-header-toggle {
        display: none
    }
}

/* å°å±å¹• */
@media (max-width: 767px) {
    .header {
        padding: 0.6rem 1rem;
        margin-bottom: 30px !important;
        height: 80px
    }

    .blog-header-title {
        position: absolute;
        left: 17px;
        top: 18px
    }

    .blog-header-subtitle {
        padding-top: 60px;
        left: 17px;
        top: -9px
    }

    /* ä»…åœ¨å°å±å¹•ä¸Šæ˜¾ç¤ºåˆ‡æ¢èœå•è¾¹æ¡†å’Œåˆ‡æ¢èœå• */
    .blog-header-toggle {
        cursor: pointer;
        position: absolute;
        top: 25px;
        right: 25px;
    }

    .blogtoggle-icon {
        display: inline-block;
        width: 28px;
        height: 19px;
        margin-top: -3px;
        vertical-align: middle;
    }

    /* å°å±å¹•çš„å¯¼èˆªå˜æˆä¸‹æ‹‰æ¡† */
    .blog-header-nav {
        display: none;
        z-index: 999;
        position: absolute;
        width: calc(100% - 4px);
        background: var(--bodyBground);
        top: 72px;
        left: 0
    }

    /* å°å±å¹•ä¸Šå¤´éƒ¨çš„åˆ—è¡¨æ&nbsp;·å¼ */
    .nav-list {
        margin-top: 0px;
        margin-bottom: 10px
    }

    .list-menu {
        line-height: 28px;
        width: 90%
    }
}

/* å¤§å±å¹•ä¸‹çš„ä¸‹æ‹‰æ¡†æ&nbsp;·å¼ï¼Œè¿™é‡Œè®¾ç½®çš„é€æ˜Žåº¦ä¸º0ï¼ˆopacity: 0.0;ï¼‰ã€‚ä½†å°å±çŠ¶æ€ä¸‹
 * æ²¡æœ‰éšè—ï¼Œæ‰€ä»¥ä¸‹é¢ä¼šåœ¨å°å±éƒ¨åˆ†ï¼Œå³767pxåŠä»¥ä¸‹çš„éƒ¨åˆ†å¯¹è¿™ä¸ªå±žæ€§è¦†ç›–ã€‚ */
.dropdown-menus {
    background: white;
    opacity: 0.0;
    z-index: 4;
    list-style: none;
    margin-left: -26px;
    position: absolute;
    padding-left: 0px;
    border: 1px solid var(--borderColor);
    border-radius: 4px;
    top: -3000px;
    margin-bottom: -34px;
    box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.02)
}

.dropdown-menus .list-menu {
    padding: 6px
}

/* é¡¶éƒ¨èœå•æ&nbsp;çš„å°å±å±žæ€§ï¼Œâ€œå°å±â€å®šä¹‰åœ¨767pxåŠä»¥ä¸‹ã€‚å½“ç„¶è¿™ä¸ªä¹ŸåŒ…å«å°å±çš„ä¸‹æ‹‰æ¡†æ&nbsp;·å¼ã€‚ */
@media all and (max-width: 767px) {
    .nav-list {
        text-align: left !important;
        padding-left: 10%;
        letter-spacing: 3px;
        line-height: 17px
    }

    .dropdown-menus {
        opacity: 1;
        margin-left: 0px;
        position: unset;
        padding-left: 30px;
        border: 0px solid var(--borderColor);
        width: auto;
        top: 0px;
        margin-bottom: 0px;
        box-shadow: 0 0 0 0 white;
        font-size: smaller
    }
}

/* ä¸‹æ‹‰æ¡†çš„æ&nbsp;·å¼ */
.list-menu:hover .dropdown-menus {
    opacity: 0.95;
    top: 56px;
    transition: opacity 0.2s
}

/* åˆ—å‡ºæ–‡ç«&nbsp;ï¼ˆæˆ–æ–‡ç«&nbsp;æ¡ç›®ï¼‰é¡µ
---------------------------------------------------*/
/* å¡ç‰‡ä¸Šçš„æ–‡ç«&nbsp;å‘å¸ƒæ—¶é—´è¿™éƒ¨åˆ†çš„å±žæ€§ */
.info-row {
    padding: 1rem;
    padding-bottom: 8px !important
}

/* æ–‡ç«&nbsp;é˜…è¯»é¡µ
---------------------------------------------------*/
/* æ–‡ç«&nbsp;ä½œè€…ã€æ—¶é—´ç­‰ä¿¡æ¯ä¸‹hræ°´å¹³çº¿çš„å±žæ€§ï¼Œè®¾ç½®margin-bottomä¸ºå››çº§ */
.bottom-5 {
    margin-bottom: 1.5rem !important
}

/* æ&nbsp;‡ç­¾çš„å±žæ€§ï¼Œè®¾ç½®margin-topä¸ºä¸‰çº§ */
.top-5, .mtop-5 {
    margin-top: 3rem !important
}

/* éªŒè¯ç&nbsp;æ¨¡æ€çª—çš„é…ç½® */
.modal-dialog {
    display: none;
    background-color: var(--conBgcolor);
    border-radius: var(--marRadius);
    border: 1px solid var(--borderColor);
    position: fixed;
    z-index: 100;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 300px;
    max-width: 90%;
    padding: 20px;
}

/* éªŒè¯ç&nbsp;æ¨¡æ€çª—çš„æŒ‰é’® */
.btn {
    cursor: pointer;
    color: var(--buttonTextColor);
    background-color: var(--buttonBgColor);
    padding: 10px 15px;
    font-weight: 600;
    border-radius: var(--marRadius);
    margin: 10px 0;
    border: none;
    transition: background-color 0.3s;
}

.btn:hover {
    color: #50525e
}

.modal-header {
    text-align: center;
    border-bottom: 1px solid var(--dividerColor);
    padding-bottom: 10px;
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 600;
}

.modal-content img {
    display: block;
    margin: 0 auto 20px;
    height: 40px;
}

.modal-content input[name="imgcode"] {
    padding: 10px;
    margin: 10px 0;
    width: calc(100% - 20px);
    border: 1px solid var(--borderColor);
    border-radius: var(--marRadius);
    box-sizing: border-box;
}

.modal-content .modal-footer {
    text-align: center;
    padding-top: 10px;
}

/* å¼¹å‡ºéªŒè¯ç&nbsp;æ¨¡æ€çª—åŽï¼Œå±å¹•èƒŒæ™¯è¦é”ä½ */
.lock-screen {
    display: none;
    z-index: 99;
    position: fixed;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    top: 0;
    left: 0;
}

/* éªŒè¯ç&nbsp;çš„ç‚¹å‡»æ&nbsp;·å¼ */
#captcha {
    cursor: pointer;
    display: block;
    margin: 0 auto;
}

/* ç¦æ­¢æ»šåŠ¨ */
.scroll-fix {
    overflow: hidden
}

/* é˜´å½±
   æ–‡ç«&nbsp;åˆ—å‡ºé¡µçš„æ–‡ç«&nbsp;æ‘˜è¦å¡ç‰‡å’Œè¾¹æ&nbsp;ç»„ä»¶å¡ç‰‡çš„é˜´å½±å’Œé¼&nbsp;æ&nbsp;‡æµ®åŠ¨åŽçš„é˜´å½±
---------------------------------------------------*/
.shadow-theme {
    box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.02);
    border-radius: var(--marRadius);
    background-color: var(--conBgcolor);
    transition: box-shadow 0.4s
}

/* æ—¥åŽ†æ&nbsp;·å¼
---------------------------------------------------*/
/* æ—¥åŽ†çš„åŠ&nbsp;è½½æ&nbsp;·å¼ï¼Œé˜²æ­¢ç¿»é¡µé€&nbsp;æˆå¤ªå¤§çš„è§†è§‰å˜åŒ– */
.cal_loading {
    margin-bottom: 243px;
}

#calendar {
    color: #212529;
}

.calendartop {
    letter-spacing: 3px;
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
    color: #000;
}

.calendartop a {
    font-weight: 100 !important;
}

.calendar {
    margin-bottom: -10px;
    width: 100%;
}

.calendar td {
    text-align: center;
    padding: 1px 10px;
    line-height: 1.6;
}

.calendar td a:link {
    color: #000;
    font-weight: bolder;
    text-decoration: underline;
}

.calendar td a:hover {
    color: #886353;
    text-decoration: none;
}

.calendar tr {
    height: 40px;
}

.day {
    color: #212529;
    background: #eaeaea;
    border-radius: var(--marRadius);
}

.sun {
    color: #333;
}

.week {
    color: #333;
}

/* é»‘å¤œæ¨¡å¼ä¸‹çš„æ—¥åŽ†æ&nbsp;·å¼ */
[data-theme="dark"] #calendar {
    color: #cfcfcf;
}

[data-theme="dark"] .calendartop {
    color: #cfcfcf;
}

[data-theme="dark"] .calendar td {
    color: #cfcfcf;
}

[data-theme="dark"] .calendar td a:link {
    color: #cfcfcf;
}

[data-theme="dark"] .calendar td a:hover {
    color: #f6607d;
}

[data-theme="dark"] .day {
    color: #cfcfcf;
    background: #3a3a3a;
    border-radius: var(--marRadius);
}

[data-theme="dark"] .sun {
    color: #a8a8a8;
}

[data-theme="dark"] .week {
    color: #a8a8a8;
}


/* ä¾§è¾¹æ&nbsp;å¡ç‰‡æ&nbsp;·å¼
---------------------------------------------------*/
/* å¡ç‰‡çš„å†…è¾¹è·å’Œå¤–è¾¹è· */
.side-bar {
    font-size: medium
}

.side-bar .widget {
    margin-bottom: 24px;
    padding: 20px
}

/* è¾¹æ&nbsp;ç»„ä»¶çš„æ&nbsp;‡é¢˜ */
.side-bar h3 {
    position: relative;
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 20px
}

.side-bar .widget li {
    position: relative;
    color: #6f6f6f;
    line-height: 2
}

/* åˆ†é¡µæŒ‰é’®æ&nbsp;·å¼
---------------------------------------------------*/
.pagination {
    font-size: 14px;
    padding: 10px;
    text-align: center
}

.pagination span {
    padding: 5.5px 6px 3px 6px;
    margin: 0 5px;
    border-radius: 8px;
    line-height: 3;
    color: #858796
}

.pagination a {
    color: var(--aColor);
    padding: 5.5px 10px 6px 10px;
    background: var(--buttonBgColor);
    margin: 0 5px;
    line-height: 3;
    border-radius: 8px
}

.pagination a:hover {
    text-decoration: none
}

#pagenavi {
    text-align: center;
    font-size: 14px
}

#pagenavi span {
    padding: 4.5px 9px 4px 9px;
    margin: 0 5px;
    line-height: 3;
    border-radius: var(--marRadius);
    color: #000
}

#pagenavi a {
    color: #c0bcbc;
    padding: 4.5px 9px 4px 9px;
    font-family: serif, monospace;
    margin: 0 5px;
    line-height: 3;
    border-radius: var(--marRadius)
}

/* è¯„è®ºæ&nbsp;·å¼
---------------------------------------------------*/
/* å‘è¡¨è¯„è®ºè¡¨å•æ&nbsp;·å¼ */
@media (min-width: 768px) {
    .commentform {
        height: 210px
    }
}

#comments {
    margin-top: 80px;
}

.comment-name {
    float: left;
    border-bottom-left-radius: 10px !important
}

.comment-mail {
    border-right: 1px var(--borderColor) solid !important;
    border-bottom-right-radius: 10px !important
}

.form-controls {
    display: block;
    height: calc(1.5em + 0.75rem + 2px);
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid var(--borderColor);
    border-radius: 0.25rem;
    transition: border-color 0.15s ease-out, box-shadow 0.15s ease-in-out
}

.comment-info {
    width: auto
}

.com_control {
    display: block;
    border-radius: 0px;
    border: 1px var(--borderColor) solid;
    border-right: 0px;
    height: 50px
}

/* è¯„è®ºå¤„çš„è¾“å…¥æ¡†æç¤ºï¼Œå±…ä¸­ã€éšè— */
.com_control:focus::-webkit-input-placeholder {
    color: rgba(255, 255, 255, 0)
}

.com_control::-webkit-input-placeholder {
    color: rgba(116, 116, 116, 0.336)
}

@media (min-width: 578px) {
    .com_control::-webkit-input-placeholder {
        text-align: center
    }
}

.comment-header {
    margin-block: 30px;
    height: 0
}

.comment-post {
    clear: both
}

.comment-post p {
    margin: 5px 0px
}

.comment-post small {
    font-size: 12px;
    color: #999
}

.comment-post input {
    padding: 7px 40px;
    font-size: small;
    color: #848797;
    width: 50%
}

.comment-post #comment {
    width: 100%;
    border: 1px var(--borderColor) solid;
    font-size: small;
    border-radius: var(--marRadius) 10px 0 0;
    height: 130px;
    resize: none
}

.comment-post #comment_submit {
    width: 84px;
    height: 35px;
    text-align: center;
    font-size: 14px;
    margin: 10px 0px;
    float: right;
    margin-right: 1px;
    border-radius: 8px;
    border: 1px solid var(--borderColor);
    padding: 7px 10px;
    justify-content: center
}

.comment-post #comment_submit:hover {
    cursor: pointer;
    color: var(--inputTextColor);
    background-color: var(--buttonBgColor);
}

.comment-post .input {
    width: 100px
}

.comment {
    margin: 10px 0;
    padding: 10px 0px;
    font-size: medium;
    overflow: hidden;
    color: #333
}

.comment span {
    color: var(--fontColor);
}

.comment .comment-time {
    color: #999999;
    display: inline;
    font-size: 10px
}

.comment .avatar {
    float: left;
    margin: 5px 4px
}

.comment .comment-infos {
    background: var(--bodyBground);
    padding: 12px 12px 5px;
    border-radius: var(--marRadius);
    margin-top: 9px;
    margin-left: 58px;
    color: var(--fontColor);
}

.comment .comment-infos-unGravatar {
    padding: 5px
}

.com-bottom {
    margin-bottom: 80px;
}

/* è¯„è®ºåˆ—è¡¨ä¸­æŒ‡å‘è¯„è®ºè€…å¤´åƒçš„ç®­å¤´ */
.arrow {
    position: absolute;
    margin-top: 3px;
    margin-left: -34px;
    border-width: 13px;
    border-style: solid;
    border-color: transparent var(--bodyBground) transparent transparent
}

.comment .comment-content {
    margin: 8px 0 0 0;
    word-break: break-word;
    color: var(--fontColor);
}

.comment .comment-reply {
    float: right;
    font-size: 12px;
    cursor: pointer;
    margin-top: -15px
}

.comment .comment-reply:hover {
    text-decoration: underline
}

.comment-children {
    margin: 20px 10px 10px 20px;
    clear: both;
    border: none;
    padding: 0
}

.comment .comment-post {
    width: 90%;
    margin: 15px auto
}

.comment-info {
    text-overflow: ellipsis;
    overflow: hidden;
    margin-top: -8px;
    white-space: nowrap
}

/* è¾¹æ&nbsp;å¤„çš„æœ€æ–°è¯„è®ºä¿¡æ¯margin-topåº”è¯¥æ˜¯0 */
.unstyle-li .comment-info {
    margin-top: 4px
}

.cancel-reply {
    font-size: large
}

/* è¯„è®ºäººçš„å¤´åƒ */
.avatar img {
    width: 40px;
    height: 40px;
    margin-top: 9px;
    margin-right: 4px;
    border-radius: 50%
}

.unstyle-li input[type="submit"] {
    background-color: var(--inputBorderColor);
    color: var(--buttonTextColor);
    margin-left: -25px;
    height: 39px;
    width: 55px;
    border: 0;
    border-radius: 0 3px 3px 0;
    padding: 0
}

/*æ–‡ç«&nbsp;æ¡ç›®ä¸­çš„éƒ¨åˆ†æ&nbsp;·å¼
---------------------------------------------------*/
/* æ–‡ç«&nbsp;æ¡ç›®çš„æ&nbsp;‡é¢˜ */
.card-title {
    margin-bottom: 30px
}

/* æ–‡ç«&nbsp;æ¡ç›®ä¸­çš„ç½®é¡¶å›¾æ¡ˆ */
.log-topflg {
    user-select: none;
    display: inline-block;
    position: relative;
    height: 26px;
    padding: 3px 4.5px;
    bottom: 3.5px;
    font-size: 14px;
    margin-left: 8px;
    cursor: default;
    background-color: antiquewhite;
    border-radius: 3px;
}

/* æ–‡ç«&nbsp;å†…å®¹é¡µæ&nbsp;·å¼
---------------------------------------------------*/
.log-con {
    background-color: var(--conBgcolor);
    border-radius: var(--marRadius);
    max-width: 960px;
    padding: 30px;
    font-size: 16px;
    height: fit-content;
    letter-spacing: 0.5px
}

.log-con p {
    margin-top: 0;
    margin-bottom: 16px
}

.log-con .date {
    margin-bottom: 0px
}

.log-con .markdown {
    margin-inline: 5px;
}

.loglist-content h1 {
    font-size: medium;
    font-family: inherit;
    letter-spacing: 0.5px;
    margin: 0
}

.loglist-content h2 {
    font-size: medium;
    font-family: inherit;
    letter-spacing: 0.5px;
    margin: 0
}

.loglist-content h3 {
    font-size: medium;
    font-family: inherit;
    letter-spacing: 0.5px;
    margin: 0
}

.loglist-content h4 {
    font-size: medium;
    font-family: inherit;
    letter-spacing: 0.5px;
    margin: 0
}

.loglist-content h5 {
    font-size: medium;
    font-family: inherit;
    letter-spacing: 0.5px;
    margin: 0
}

.loglist-content p {
    font-size: medium;
    font-family: inherit;
    margin: 0
}

/* éœ€è¦æ”¹åï¼Œä¾§è¾¹æ&nbsp;é“¾æŽ¥å¡ç‰‡çš„å‹æƒ…é“¾æŽ¥å±žæ€§ */
.no-margin-bottom {
    font-size: medium;
    padding-left: 10px
}

/* æ‘˜è¦å†…å®¹éƒ¨åˆ† */
.loglist-body {
    margin-bottom: -22px;
    font-size: small
}

.loglist-body p {
    margin: 0 -6px 0 0
}

/* æ–‡ç«&nbsp;æ&nbsp;‡é¢˜å’Œæ&nbsp;‡ç­¾ç­‰ */
.loglist-title {
    font-size: x-large
}

.loglist-tag {
    margin-top: 30px;
    line-height: 2;
    color: #000000
}

.loglist-tag a {
    color: #929292
}

.loglist-cover {
    width: 100%;
    height: 205px;
    border-radius: var(--marRadius) 10px 0 0
}

.loglist-cover img {
    position: absolute;
    opacity: 0.8;
    border-radius: var(--marRadius) 10px 0 0;
    transition: all 0.4s;
    clip: rect(50px, 730px, 250px, 0px);
    margin-top: -50px
}

.loglist-cover img:hover {
    opacity: 0.7;
    transform: scale(1.01);
    clip: rect(50px, 730px, 250px, 0px)
}

/* æ–‡ç«&nbsp;åˆ†ç±» */
.loglist-sort {
    user-select: none;
    display: inline-block;
    position: relative;
    height: 26px;
    padding: 3px 4.5px;
    bottom: 3.5px;
    font-size: 14px;
    margin-left: 8px;
    cursor: default;
    background-color: Lavender;
    border-radius: 3px;
}

@media (max-width: 415px) {
    .loglist-cover {
        height: 160px;
        overflow: hidden
    }

    .loglist-cover img {
        position: unset;
        width: 730px;
    }
}

@media (max-width: 375px) {
    .loglist-cover {
        height: 140px;
        overflow: hidden
    }

    .loglist-cover img {
        position: unset;
        width: 730px;
    }
}

/* æ¡ç›®çš„å…¶ä»–å†…å®¹ */
.loglist-content {
    font-size: medium;
    margin-left: 1px;
    margin-bottom: 5px;
    margin-right: 3px;
    margin-top: 30px
}

.log-info {
    font-size: small;
    letter-spacing: 0.5px;
}

.log-info a {
    color: var(--lightColor)
}

.log-count {
    font-size: small
}

.log-count a {
    color: var(--fontColor)
}

/* ä¾§è¾¹æ&nbsp;ç»„ä»¶çš„ä¸€äº›æ&nbsp;·å¼ */
.bloggerinfo {
    margin-bottom: -10px;
    text-align: center
}

.bloggerinfo-img {
    width: 100px;
    height: 100px;
    border: 0px solid var(--borderColor);
    border-radius: 50%
}

.comm-lates-name {
    font-weight: bolder
}

.bloginfo-name {
    font-size: x-large;
    margin-top: 15px;
    margin-bottom: 0px
}

.bloginfo-descript {
    margin-top: 20px;
    margin-bottom: 15px;
    color: #929292
}

/* æœç´¢æ&nbsp; */
.search {
    width: 80%;
    box-shadow: none;
    float: left;
    font-size: 1rem;
    padding: 0.4rem 0.75rem;
    line-height: 1.5;
    color: #495057;
    border: 1px solid var(--borderColor);
    /* å…¼å®¹ Safari ï¼ŒSafarié»˜è®¤inputä¼šæœ‰1pxçš„ä¸Šä¸‹å¤–è¾¹è· */
    margin-block: 0;
    border-radius: 0.25rem
}

/* æ–‡ç«&nbsp;é˜…è¯»å’Œæ–‡ç«&nbsp;æ¡ç›®çš„æ&nbsp;‡ç­¾ */
.tags {
    border: 1px solid var(--borderColor);
    padding: 1px 6px;
    border-radius: 4px;
    white-space: nowrap
}

/* ä¾§è¾¹æ&nbsp;ç»„ä»¶ä¸­çš„æ&nbsp;‡ç­¾ */
.tag-container {
    margin-block: 0;
    text-overflow: ellipsis
}

.tags-side {
    padding: 2px 6px;
    border-radius: 4px;
    white-space: nowrap
}

/* ä¾§è¾¹æ&nbsp;ç»„ä»¶ä¸­çš„æœ€æ–°æ–‡ç«&nbsp;æ&nbsp;·å¼ */
.blog-lates, .blog-hot {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 8px;
}

/* è¿”å›žä¸Šé¡µå›¾æ&nbsp;‡ */
.back-top {
    font-size: 20px;
    text-align: center;
    height: 34px;
    width: 34px;
    margin-left: -90px;
    position: absolute;
    top: 151px;
    border: 2px solid var(--borderColor);
    color: var(--fontColor);
    border-radius: 50%;
    cursor: pointer
}

.back-top:hover {
    border: 2px solid var(--borderColor);
    color: #bbbbbb
}

/* æ–‡ç«&nbsp;æ¡ç›®ä¸­çš„åˆ†å‰²çº¿ */
.list-line {
    border: 0;
    margin-top: 12px;
    margin-bottom: -7px;
    border-top: 1px solid rgb(245, 245, 246)
}

/* ä¾§è¾¹æ&nbsp;ç»„ä»¶ä¸­çš„æ–‡ç«&nbsp;åˆ†ç±» */
.log-classify-f {
    letter-spacing: 1px;
    font-size: 16px;
    font-weight: 400
}

.log-classify-c {
    margin-left: -27px;
    list-style: none;
    font-size: medium
}

/* ä¾§è¾¹æ&nbsp;ç»„ä»¶ä¸­çš„æœ€æ–°è¯„è®º */
.logcom-latest-time {
    position: absolute;
    right: 10px;
    color: var(--lightColor);
    margin-left: 10px;
    font-size: small
}

.comment-info_img {
    width: 27px;
    height: 27px;
    margin-bottom: 4px;
    margin-right: 3px;
    border-radius: 50%;
    vertical-align: middle;
    border-style: none
}

/* å„å¤„çš„æ—¥æœŸæ–‡å­—æ&nbsp;·å¼ */
.date {
    margin: 0;
    text-align: center;
    color: #7f7f7f
}

.date a {
    color: #7f7f7f
}

.log-con .date {
    font-size: small
}

.log-title {
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.75rem
}

.page-title {
    margin-bottom: 30px;
    font-size: 1.75rem
}

/* ç›¸é‚»æ–‡ç«&nbsp;æŒ‰é’®çš„æ&nbsp;·å¼ */
.neighbor-log {
    overflow: hidden;
    margin-block: 20px
}

.prev-log {
    margin: 3px 0;
    float: left;
    padding: 4px 8px 4px 8px;
    font-size: small;
    border: 1px solid var(--borderColor);
    border-radius: 0.5rem
}

.next-log {
    margin: 3px 0;
    float: right;
    padding: 4px 8px 4px 8px;
    font-size: small;
    border: 1px solid var(--borderColor);
    border-radius: 0.5rem;
}

.comment-info a {
    color: var(--lightColor);
    padding-left: 5px
}

.comment-info hr {
    margin: 4px 0px
}

/* ç½‘é¡µè¶³éƒ¨
---------------------------------------------------*/
.footinfo {
    line-height: 2;
    padding-block: 20px;
    text-align: center !important;
}

/* å›¾ç‰‡æ”¾å¤§
---------------------------------------------------*/
img[data-action="zoom"] {
    cursor: zoom-in
}

.zoom-img,
.zoom-img-wrap {
    position: relative;
    z-index: 666;
    -webkit-transition: all 300ms;
    -o-transition: all 300ms;
    transition: all 300ms;
}

img.zoom-img {
    cursor: zoom-out
}

.zoom-overlay {
    z-index: 420;
    background: #fff;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    opacity: 0;
    -webkit-transition: opacity 300ms;
    -o-transition: opacity 300ms;
    transition: opacity 300ms;
}

.zoom-overlay-open .zoom-overlay {
    opacity: 1;
}

.zoom-overlay-open,
.zoom-overlay-transitioning {
    cursor: default;
}

.cover-unclip {
    /* æ”¾å¤§åŽçš„å›¾ç‰‡æ—&nbsp;è£å‰ªã€æ—&nbsp;åœ†è§’ã€æ—&nbsp;é€æ˜Žåº¦ */
    clip: unset !important;
    border-radius: unset !important;
    opacity: 1 !important
}

/* toc
---------------------------------------------------*/
.toc-con {
    padding: 30px;
    padding-right: 50px;
    left: 150px;
    width: 300px;
    position: absolute;
    top: 200px
}

.toc-con .close-toc {
    color: #dcdcdd;
    left: 0px;
    position: absolute;
    padding-top: 5px;
}

.toc-con ul {
    margin: 0;
    padding: 0
}

.toc-con li {
    font-size: 14px;
    line-height: 1.8rem;
    cursor: pointer;
    list-style: none;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.toc-con div {
    scrollbar-color: #0000002b #fff0
}

.toc-con div::-webkit-scrollbar {
    width: 5px;
    background-color: rgb(0 0 0 / 0%)
}

.toc-con div::-webkit-scrollbar-thumb {
    background-color: rgb(0 0 0 / 10%)
}

/* page é¡µé¢ */
#page {
    margin-bottom: 24px
}

/* æ‘˜è¦çš„æº¢å‡ºï¼ˆoverflowï¼‰æ“ä½œ 
---------------------------------------------------*/
.subtitle-overflow {
    max-width: 700px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

/* ã€Œå½’æ¡£ã€çš„æ&nbsp;·å¼ 
---------------------------------------------------*/
.archive {
    color: #929292;
    font-size: 16px;
    padding: 4px;
    border-color: #ced4da
}

/* æ–‡ç«&nbsp;åˆ—å‡ºé¡µ ç¼–è¾‘ é“¾æŽ¥çš„æ&nbsp;·å¼ 
---------------------------------------------------*/
.loglist-article-edit a {
    color: #929292
}

/* ä¸€äº›é€‚åº”å„å±å¹•å°ºå¯¸æ˜¾ç¤ºæ•ˆæžœçš„æ&nbsp;·å¼
---------------------------------------------------*/
@media all and (max-width: 1200px) and (min-width: 992px) {

    /* mh æ˜¯æ–¹ä¾¿åœ¨ä¸­ã€å°å±å¹•éšè—å…ƒç´&nbsp;çš„ class */
    .mh {
        display: none
    }

    .bloggerinfo-img {
        width: 70px;
        height: 70px
    }

    .bloginfo-name {
        margin-top: 32px
    }

    /* ä¸­åž‹å±çŠ¶æ€ä¸‹çš„æ—¥åŽ† */
    #calendar {
        margin-left: -8px;
    }
}

@media all and (max-width: 991px) {
    /* å¤´éƒ¨æ—&nbsp;å®¹å™¨çš„é™å®½ */
    .blog-header-c {
        max-width: unset !important
    }

    .blog-header-c {
        height: 74px
    }

    body {
        width: 100%;
        margin: -2px;
        padding-left: 2px
    }

    /* mh æ˜¯æ–¹ä¾¿åœ¨ä¸­ã€å°å±å¹•éšè—å…ƒç´&nbsp;çš„ class */
    .mh {
        display: none
    }

    .loglist-title {
        font-size: 18px;
        font-weight: 500
    }

    .bloggerinfo {
        margin-bottom: 0px
    }

    .mb-5, .mtop-5 {
        margin-bottom: 2rem !important
    }

    .log-title {
        text-align: left
    }

    .log-con {
        padding: 30px 16px
    }

    .commentform .comment-info {
        width: 100%
    }

    /* å±•å¼€èœå•åŽï¼Œåšå®¢å¤´éƒ¨çš„ä¸‹è¾¹è·å˜å¤§ */
    .bottom-change {
        margin-bottom: 13px
    }

    /* ä¸ºæ–‡ç«&nbsp;åˆ—å‡ºé¡µå¡ç‰‡åœ¨å°å±å¹•çš„è§‚æ„Ÿä½“éªŒä¼˜åŒ– */
    .card-title {
        margin-bottom: 10px
    }

    .loglist-content {
        margin-top: 10px
    }

    .loglist-tag {
        margin-top: 10px
    }

    /* åšå®¢å¤´éƒ¨çš„ä¸‹è¾¹è· */
    .blog-header {
        margin-bottom: 1.6rem
    }

    /* è¯„è®ºçš„ä¿¡æ¯æ&nbsp;å˜åŒ– */
    .comment-post input {
        padding: 0.5em 0.75em
    }

    /* ä¾§è¾¹æ&nbsp;æ—¥åŽ† */
    #calendar {
        margin-left: 0
    }
}

/* åœ¨å¹³æ¿ä¸€äº›å¤„äºŽä¸­é—´å°ºå¯¸çš„ä¸å¸¸è§è®¾å¤‡æ‰€åšçš„ç¼©æ”¾å’Œå…¶ä»–ä¸€äº›è°ƒæ•´æ&nbsp;·å¼ */
@media all and (max-width: 991px) and (min-width: 768px) {

    #calendar {
        transform: scale(0.8);
        margin-left: -14px;
        margin-top: -14px
    }

    .unstyle-li form {
        transform: scale(0.7);
        width: 255px;
        margin-left: -47px
    }

    /* ä¸­å±å¹•ä¸‹ç¼©çŸ­è¾¹æ&nbsp;è¯„è®ºæ—¥æœŸæ˜¾ç¤º */
    .logcom-latest-time {
        max-width: 60px
    }

}

/* å¯¹ä¸€äº›æžå°å°ºå¯¸å±å¹•æ‰€åšçš„æ¯”è¾ƒå¦¥åçš„ç¼©æ”¾ç­‰è°ƒæ•´ */
@media all and (max-width: 349px) {

    #calendar {
        transform: scale(0.7);
        margin-left: -46px;
        margin-top: -14px
    }

    .unstyle-li form {
        transform: scale(0.7);
        width: 255px;
        margin-left: -47px
    }

    .bloginfo-name {
        font-size: small
    }
}

/* æ™®é€šç§»åŠ¨è®¾å¤‡çš„æ˜¾ç¤ºæ&nbsp;·å¼ */
@media all and (max-width: 577px) {
    .dropdown-menus .list-menu {
        padding-bottom: 0px
    }

    .nav-link {
        padding: 8px;
    }

    /* å¡ç‰‡å®¹å™¨å†…è¾¹è·ç•¥å°ä¸€ç‚¹ */
    .card-padding {
        padding: 14px;
    }

    .side-bar .widget {
        margin-bottom: 1.5rem
    }

    .pagination:after {
        content: "";
        margin-bottom: 20px;
        display: block;
        clear: both
    }

    .bar_top_line {
        display: block;
        margin-bottom: 23px
    }

    .pagination span {
        padding: 5.5px 9px 3px 9px
    }

    .pagination a {
        padding: 5.5px 9px 3px 9px
    }

    .comment .comment-info {
        float: left;
        margin-left: unset;
        width: 100%
    }

    .com_control {
        height: 44px
    }

    .mb-5, .mtop-5 {
        margin-bottom: 1.6rem !important
    }

    #pagenavi {
        line-height: 45px
    }

    .loglist-content p {
        font-size: 14px;
    }

    /* è¯„è®ºç›¸å…³ */
    .comment-post #comment {
        border-radius: 6px;
    }

    .comment-post input {
        width: 100%
    }

    .commentform .comment-info {
        margin-top: -5px
    }

    #comments {
        margin-bottom: 80px
    }

    .com_control {
        border: 1px solid var(--borderColor);
        border-radius: 6px !important;
        margin-top: 10px
    }

    .comment-mail {
        margin-bottom: 10px;
    }

    .comment-name {
        margin-bottom: 10px;
    }

    .comment .comment-post {
        display: table
    }

    /* è¯„è®ºåˆ—è¡¨æ¢æ–°æ&nbsp;·å¼ */
    .arrow {
        display: none
    }

    .comment .comment-infos {
        margin-left: 0;
        font-size: 14px;
    }

    .comment .avatar {
        margin: 6px 8px;
        height: 30px;
        width: 30px;
    }

    /* æ‘˜è¦çš„æº¢å‡ºï¼ˆoverflowï¼‰æ“ä½œ åœ¨ å°å±å¹•ä¸Šè¦æˆªå¾—å¤šä¸€ç‚¹ */
    .subtitle-overflow {
        max-width: 80%
    }

    /* ç½‘é¡µé¡¶éƒ¨çš„ä¸‹æ‹‰èœå•åœ¨ç§»åŠ¨ç«¯çš„æ˜¾ç¤ºä¼˜åŒ– */
    .dropdown-menus .list-menu {
        padding: 0px;
        letter-spacing: 2px
    }
}

/* ä¸º toc ç§»åŠ¨ç«¯è®¾ç«‹çš„æ&nbsp;·å¼ */
@media all and (max-width: 1274px) {
    .toc-con {
        height: 100vh;
        width: 60%;
        max-width: 300px;
        padding-right: 30px;
        /* ç£¨ç&nbsp;‚æ•ˆæžœ */
        background: rgba(237, 237, 237, 0.8);
        backdrop-filter: blur(2px);
        /* å…¼å®¹ Safari ç£¨ç&nbsp;‚æ•ˆæžœ */
        -webkit-backdrop-filter: blur(2px);
        /* å§‹ç»ˆå›ºå®šä½ç½® */
        z-index: 2;
        position: fixed !important;
        top: 0 !important
    }

    .toc-link {
        color: rgb(189, 189, 189);
        font-size: 10px;
        padding-left: 10px;
    }
}

/* ä¾§è¾¹æ&nbsp;æ–‡ç«&nbsp;å°é¢æ&nbsp;·å¼ */
.side-cover-image {
    position: relative;
    width: 100%;
    height: 160px;
    background-size: cover;
    background-position: center;
}

.side-title-container {
    position: absolute;
    bottom: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.3);
}

.side-title-container a {
    display: block;
    color: white;
    text-decoration: none;
    padding: 10px;
}

#theme-toggle {
    cursor: pointer;
    padding: 8px;
}

/* é¦–é¡µè½®æ’­å›¾æ&nbsp;·å¼ */
* {
    box-sizing: border-box;
}

.slideshow-container {
    max-width: 1000px;
    position: relative;
    margin: auto;
}

.mySlides {
    display: none;
}

.slideshow-prev,
.slideshow-next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
}

.slideshow-next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.slideshow-prev:hover,
.slideshow-next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.slideshow-text {
    color: #f2f2f2;
    font-size: 15px;
    padding: 8px 12px;
    position: absolute;
    bottom: 8px;
    width: 100%;
    text-align: center;
}

.active {
    background-color: #717171;
}

.fade {
    -webkit-animation-name: fade;
    -webkit-animation-duration: 1.5s;
    animation-name: fade;
    animation-duration: 1.5s;
}

@-webkit-keyframes fade {
    from {
        opacity: .4;
    }
    to {
        opacity: 1;
    }
}

@keyframes fade {
    from {
        opacity: .4;
    }
    to {
        opacity: 1;
    }
}</pre></body></html>