﻿/**
 * æ¨¡æ¿æ ·å¼è¡¨
 * ä¸»è¦é«äº®é¢è²ç»ä¸éç¨ï¼#59b8f8
 */
:root {
    --marRadius: 10px;
    --conBgcolor: #ffffff; /* å¯¼èªãå¡çãåå®¹çèæ¯é¢è² */
    --bodyBground: #f0f4f8; /* é¡µé¢èæ¯é¢è² - æ¸ç½æµèç° */
    --fontColor: #4a5568; /* æ®éææ¬çé¢è² - æ·±èç° */
    --aColor: #2d3748; /* a æ ç­¾çé¢è² */
    --aHoverColor: #3498db; /* a æ ç­¾ hover ç¶æçé¢è² - äº®è */
    --lightColor: #718096; /* æ¯è¾æµä¸ç¹çææ¬é¢è² */

    /* è¡¨ååæé®çå¸¸è§æ ·å¼ */
    --inputBgColor: #ffffff;
    --inputBorderColor: #e2e8f0;
    --inputTextColor: #2d3748;
    --buttonBgColor: #59b8f8; /* æé®èæ¯ - äº®è */
    --buttonTextColor: #ffffff;
    --buttonBorderColor: #59b8f8;
    --selectBgColor: #ffffff;
    --selectBorderColor: #e2e8f0;
    --selectTextColor: #2d3748;
    --dividerColor: #e2e8f0;
    --dropdownDividerColor: rgba(15, 23, 42, 0.08);
    --borderColor: rgba(0, 0, 0, 0.06);
}

[data-theme="dark"] {
    --conBgcolor: #1a202c; /* æ·±èç°å¡çèæ¯ */
    --bodyBground: #171923; /* æ·±èç°é¡µé¢èæ¯ */
    --fontColor: #e2e8f0; /* æµç°ææ¬ */
    --aColor: #cbd5e0; /* é¾æ¥é¢è² */
    --aHoverColor: #63b3ed; /* æµè Hover */
    --lightColor: #a0aec0; /* è¾å©ææ¬ */

    /* è¡¨ååæé®çé»å¤æ¨¡å¼æ ·å¼ */
    --inputBgColor: #2d3748;
    --inputBorderColor: #4a5568;
    --inputTextColor: #e2e8f0;
    --buttonBgColor: #4fb3f7; /* èè²æé® */
    --buttonTextColor: #ffffff;
    --buttonBorderColor: #4fb3f7;
    --selectBgColor: #2d3748;
    --selectBorderColor: #4a5568;
    --selectTextColor: #e2e8f0;
    --dividerColor: #2d3748;
    --dropdownDividerColor: rgba(148, 163, 184, 0.28);
    --borderColor: rgba(255, 255, 255, 0.1);
}

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;
}

/* å¶ä»æ ·å¼ */
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;
}

/* è¡¨åè¾å¥æ¡æ ·å¼ */
input, textarea {
    background-color: var(--inputBgColor);
    border: 1px solid var(--inputBorderColor);
    color: var(--inputTextColor);
    padding: 12px 16px;
    border-radius: var(--marRadius);
    font-size: 16px;
    width: 100%;
    box-sizing: border-box;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
}

input:focus, textarea:focus {
    border-color: var(--buttonBgColor);
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.15);
}

/* æé®æ ·å¼ */
button {
    background-color: var(--buttonBgColor);
    color: var(--buttonTextColor);
    border: 1px solid var(--buttonBorderColor);
    padding: 10px 24px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px rgba(52, 152, 219, 0.25);
}

button:hover {
    filter: brightness(0.9);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(52, 152, 219, 0.35);
}

button:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(52, 152, 219, 0.25);
}

/* ä¸æéæ©æ¡æ ·å¼ */
select {
    background-color: var(--selectBgColor);
    border: 1px solid var(--selectBorderColor);
    color: var(--selectTextColor);
    padding: 12px 16px;
    border-radius: var(--marRadius);
    font-size: 16px;
    width: 100%;
    box-sizing: border-box;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

select:focus {
    border-color: var(--buttonBgColor);
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.15);
}

/* åå²çº¿æ ·å¼ */
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;
}

/* å®ä¹ææåç´ ç 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: 80px;
    padding-bottom: 40px;
}

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

/* å¡çå±æ§ãé¡µé¢ä»¥å¡çå½¢å¼ç»æï¼è¿éç´æ¥éç½®ï¼è®©æ´ä¸ªé¡µé¢çå¡çæç»ä¸çåè¾¹è·ã */
.card-padding {
    padding: 1.25rem
}

/* å¸å±
   è¡ï¼rowï¼ä¸éæ©flexå¸å±ï¼å¹¶è®¾ç½®åè®¸æ¢è¡ï¼wrapï¼
   åï¼colï¼åéè¦éè¿æ ¹æ®å¤§å°å±åå«éç½®ï¼è¿æ¯ç½é¡µæéè¦çå°æ¹ï¼æ¯æ´ä¸ªç½é¡µçéª¨æ¶
---------------------------------------------------*/
.row {
    display: flex;
    flex-wrap: wrap;
}

/* å¤§å±ä¸çå */
@media (min-width: 768px) {
    .column-big {
        padding-right: 10px;
        flex: 0 0 66.666667%;
        max-width: 66.666667%
    }

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

    /* æç« åå¸æ¶é´åæç« éè¯»è¯è®ºæ°è¿ä¸¤åçéç½® */
    .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%
    }

    /* å·¥å·æ å */
    .column-small {
        padding-right: 8px;
        padding-left: 8px;
        width: 100%
    }

    /* æç« åå¸æ¶é´åæç« éè¯»è¯è®ºæ°ä¸¤åçéç½® */
    .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
    }
}

/* å¨ç»å¯¹å®ä½æåµä¸ï¼ä¸»è¾¹æ çå¨å®½(å¯ä¾ä¸äºä½äºä¸»è¾¹æ çé¾ä»¥è®¡ç®å®½åº¦çå¯¹è±¡ä½¿ç¨)
---------------------------------------------------*/
@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;
    min-height: 100vh;
}

.blog-header {
    flex: 0 0 auto;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1020;
    background-color: var(--conBgcolor);
    box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.02)
}

.blog-container {
    flex: 1 0 auto;
    margin-top: calc(71.63px + 2.3rem);
}

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

/* åå®¢å¤´é¨å±æ§çéç½®
---------------------------------------------------*/
.blog-header-c {
    height: 71.63px;
    display: flex;
    align-items: center;
    justify-content: space-between /* å¯¼èªæ ä¸ºä¸»è½´æ¹åä¸¤ç«¯å¯¹é½ï¼å³å¤§æ é¢ä¸å¯¼èªä¸¤é¨åï¼ä¸ä¸ªåå·¦é é½ï¼ä¸ä¸ªåå³é é½ */
}

/* åå®¢æ é¢åå¯æ é¢ */
.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ï¼è¦å¤§ï¼å¯ä½¿åæ ç¦»å¼å­ç¬¦åä¸æ®µè·ç¦»ä¾ç¶è½å¤èµ·å­å¯¼èªæ ç­¾
 * å¦å¤liæ ç­¾çåè¡¨é¡¹æ è®°ä¸ºç©º ï¼list-style: noneï¼ */
.nav-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0.7rem 0.8rem;
    border-radius: 8px;
    transition: background-color 0.2s ease, color 0.2s ease
}

.nav-link:focus-visible {
    outline: 2px solid var(--buttonBgColor);
    outline-offset: 2px;
}

.nav-link.has-down {
    gap: 0.38rem;
}

/* ä¸æèåæç¤ºï¼ç»å¸¦å­èåçå¯¼èªé¡¹æ·»å ç®­å¤´æç¤º */
.nav-link.has-down::after {
    content: '';
    width: 0.42rem;
    height: 0.42rem;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: translateY(-1px) rotate(45deg);
    opacity: 0.72;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.list-menu:hover > .nav-link.has-down::after,
.list-menu:focus-within > .nav-link.has-down::after {
    transform: translateY(1px) rotate(225deg);
    opacity: 1;
}

.list-menu {
    list-style: none
}

.user-menu {
    position: relative;
}

.user-menu::after {
    content: '';
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
    height: 10px;
}

.user-menu-trigger {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.45rem;
}

.user-menu-label {
    display: none;
    line-height: 1;
    font-size: 15px;
    font-weight: 500;
}

.user-menu-trigger:hover {
    background: rgba(52, 152, 219, 0.08);
}

.header-avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid var(--borderColor);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.user-menu:hover .header-avatar,
.user-menu:focus-within .header-avatar {
    border-color: var(--buttonBgColor);
    transform: scale(1.03);
}

.user-dropdown-menus {
    min-width: 120px;
    margin-left: 0;
    left: auto;
    right: 0;
    padding: 6px;
}

.nav-link-login {
    color: var(--buttonTextColor);
    background-color: var(--buttonBgColor);
    border: 1px solid var(--buttonBorderColor);
    min-height: 32px;
    padding: 0.22rem 0.62rem;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(89, 184, 248, 0.14);
}

.nav-link-login:hover {
    color: var(--buttonTextColor);
    background-color: var(--buttonBgColor);
    filter: brightness(0.95);
}

.nav-link-login:focus-visible {
    outline-color: var(--buttonTextColor);
    box-shadow: 0 0 0 3px rgba(89, 184, 248, 0.22);
}

/* å¯¼èªåè¡¨çååºå¼éç½®
   å¨ä¸åå¤§å°çå±å¹ä¸ï¼å¯¼èªèåä¼æä¸åçæ ·å¼ã
   æ ·å¼æ ¹æ®å±å¹å¤§å°åä¸ºä¸¤ç§ï¼767pxä»¥ä¸ï¼767pxä»¥ä¸
---------------------------------------------------*/
/* å¤§å±å¹ */
@media (min-width: 768px) {
    .nav-list {
        display: flex;
        align-items: center;
        gap: 2px;
        padding-block: 4.5px;
        text-align: center
    }

    .nav-list > .list-menu {
        position: relative;
    }

    /* å¤§å±å¹åè¡¨æ ·å¼ */
    .list-menu .list-menu {
        border-bottom: 1px solid var(--dropdownDividerColor);
    }

    .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: 1100;
        position: fixed;
        width: 280px;
        height: 100vh;
        background: var(--conBgcolor);
        top: 0;
        left: -280px;
        transition: left 0.3s ease-in-out;
        box-shadow: 2px 0 8px rgba(0, 0, 0, 0.1);
        overflow-y: auto;
        padding-top: 20px;
        border-right: 1px solid var(--borderColor);
    }

    /* é»ææ¨¡å¼ä¸çèåé´å½±ä¼å */
    [data-theme="dark"] .blog-header-nav {
        box-shadow: 2px 0 12px rgba(0, 0, 0, 0.4);
    }

    /* èåæ¾ç¤ºç¶æ */
    .blog-header-nav.show {
        display: block;
        left: 0;
    }

    /* é®ç½©å± */
    .nav-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 1010;
        backdrop-filter: blur(2px);
    }

    /* é»ææ¨¡å¼ä¸çé®ç½©å±ä¼å */
    [data-theme="dark"] .nav-overlay {
        background: rgba(0, 0, 0, 0.7);
    }

    .nav-overlay.show {
        display: block;
    }

    /* å°å±å¹ä¸å¤´é¨çåè¡¨æ ·å¼ */
    .nav-list {
        margin-top: 0px;
        margin-bottom: 5px;
        padding-left: 15px;
    }

    .list-menu {
        line-height: 32px;
        width: 100%;
    }

    .list-menu .nav-link {
        display: block;
        min-height: 44px;
        padding: 10px 15px;
        color: var(--fontColor);
        text-decoration: none;
        border-radius: 8px;
        line-height: 1.5;
        transition: background-color 0.2s;
    }

    .list-menu .nav-link.has-down {
        display: flex;
        justify-content: space-between;
    }

    .list-menu .nav-link:hover {
        background-color: var(--bodyBground);
    }

[data-theme="dark"] .list-menu .nav-link:hover {
        background-color: rgba(255, 255, 255, 0.1);
    }

    .user-menu-trigger {
        justify-content: flex-start;
        gap: 10px;
        width: 100%;
        padding: 10px 15px;
    }

    .header-avatar {
        display: none;
    }

    .user-menu-label {
        display: inline-flex;
        align-items: center;
        color: var(--fontColor);
    }

    .user-dropdown-menus {
        right: auto;
        width: 100%;
        padding-left: 0;
        padding-right: 0;
    }

    .nav-link-login {
        justify-content: center;
        min-height: 30px;
        padding: 0.2rem 0.56rem;
    }

    .user-dropdown-menus .list-menu:first-child {
        display: none;
    }
}

/* å¤§å±å¹ä¸çä¸ææ¡æ ·å¼ï¼è¿éè®¾ç½®çéæåº¦ä¸º0ï¼opacity: 0.0;ï¼ãä½å°å±ç¶æä¸
 * æ²¡æéèï¼æä»¥ä¸é¢ä¼å¨å°å±é¨åï¼å³767pxåä»¥ä¸çé¨åå¯¹è¿ä¸ªå±æ§è¦çã */
.dropdown-menus {
    background: var(--conBgcolor);
    opacity: 0;
    z-index: 30;
    list-style: none;
    margin-left: -26px;
    position: absolute;
    padding-left: 0;
    border: 1px solid var(--borderColor);
    border-radius: 10px;
    top: 100%;
    margin-bottom: 0;
    pointer-events: none;
    transform: translateY(6px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

[data-theme="dark"] .dropdown-menus {
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.45);
}

.dropdown-menus .list-menu {
    padding: 0
}

.dropdown-menus .list-menu .nav-link {
    width: 100%;
    justify-content: flex-start;
    border-radius: 8px;
    min-height: 40px;
    padding: 0.5rem 0.75rem;
}

/* é¡¶é¨èåæ çå°å±å±æ§ï¼âå°å±âå®ä¹å¨767pxåä»¥ä¸ãå½ç¶è¿ä¸ªä¹åå«å°å±çä¸ææ¡æ ·å¼ã */
@media all and (max-width: 767px) {
    .nav-list {
        text-align: left !important;
        padding-left: 15px;
        padding-right: 15px;
        letter-spacing: normal;
        line-height: 1.5;
    }

    .dropdown-menus {
        opacity: 1;
        margin-left: 0;
        position: unset;
        padding-left: 0;
        border: none;
        width: 100%;
        top: 0;
        margin-top: 2px;
        margin-bottom: 8px;
        background: transparent;
        box-shadow: none;
        transform: none;
        pointer-events: auto;
    }

    .dropdown-menus .list-menu .nav-link {
        min-height: 40px;
        padding: 8px 15px;
        font-size: 0.92em;
        line-height: 1.5;
        color: var(--fontColor-sec);
        position: relative;
        opacity: 0.85;
    }

    .dropdown-menus .list-menu .nav-link::before {
        display: none;
    }

    .dropdown-menus .list-menu .nav-link:hover {
        opacity: 1;
        background-color: rgba(0, 0, 0, 0.03);
    }
}

/* ä¸ææ¡çæ ·å¼ */
.list-menu:hover .dropdown-menus {
    opacity: 0.95;
    pointer-events: auto;
    transform: translateY(0);
    transition: opacity 0.2s ease, transform 0.2s ease
}

.list-menu:focus-within .dropdown-menus {
    opacity: 0.95;
    pointer-events: auto;
    transform: translateY(0);
}

/* ååºæç« ï¼ææç« æ¡ç®ï¼é¡µ
---------------------------------------------------*/
/* å¡çä¸çæç« åå¸æ¶é´è¿é¨åçå±æ§ */
.info-row {
    padding: 1rem;
    padding-bottom: 8px !important
}

/* æç« éè¯»é¡µ
---------------------------------------------------*/
/* æç« ä½èãæ¶é´ç­ä¿¡æ¯ä¸hræ°´å¹³çº¿çå±æ§ï¼è®¾ç½®margin-bottomä¸ºåçº§ */
.bottom-5 {
    margin-bottom: 1.5rem !important
}

/* æ ç­¾çå±æ§ï¼è®¾ç½®margin-topä¸ºä¸çº§ */
.top-5, .mtop-5 {
    margin-top: 3rem !important
}

/* éªè¯ç æ¨¡æçªçéç½® */
.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;
}

/* éªè¯ç æ¨¡æçªçæé® */
.btn {
    cursor: pointer;
    color: var(--buttonTextColor);
    background-color: var(--buttonBgColor);
    padding: 10px 20px;
    font-weight: 600;
    border-radius: 30px;
    margin: 10px 0;
    border: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px rgba(52, 152, 219, 0.25);
}

.btn:hover {
    filter: brightness(0.9);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(52, 152, 219, 0.35);
}

.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;
}

/* å¼¹åºéªè¯ç æ¨¡æçªåï¼å±å¹èæ¯è¦éä½ */
.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;
}

/* éªè¯ç çç¹å»æ ·å¼ */
#captcha {
    cursor: pointer;
    display: block;
    margin: 0 auto;
}

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

/* é´å½±
   æç« ååºé¡µçæç« æè¦å¡çåè¾¹æ ç»ä»¶å¡ççé´å½±åé¼ æ æµ®å¨åçé´å½±
---------------------------------------------------*/
.shadow-theme {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03), 0 1px 3px rgba(0, 0, 0, 0.02);
    border-radius: var(--marRadius);
    background-color: var(--conBgcolor);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.shadow-theme:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08), 0 2px 6px rgba(0, 0, 0, 0.04);
}

/* æ¥åæ ·å¼
---------------------------------------------------*/
/* æ¥åçå è½½æ ·å¼ï¼é²æ­¢ç¿»é¡µé æå¤ªå¤§çè§è§åå */
.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: #2b6cb0;
    background: #ebf8ff;
    border-radius: var(--marRadius);
}

.sun {
    color: #333;
}

.week {
    color: #333;
}

/* é»å¤æ¨¡å¼ä¸çæ¥åæ ·å¼ */
[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: var(--aHoverColor);
}

[data-theme="dark"] .day {
    color: #e2e8f0;
    background: #2d3748;
    border-radius: var(--marRadius);
}

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

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

[data-theme="dark"] .loglist-sort {
    background-color: rgba(66, 153, 225, 0.15);
    color: #63b3ed;
}

[data-theme="dark"] .loglist-sort a {
    color: #63b3ed;
}

[data-theme="dark"] .log-topflg {
    background-color: rgba(252, 129, 129, 0.15);
    color: #fc8181;
}


/* ä¾§è¾¹æ å¡çæ ·å¼
---------------------------------------------------*/
/* å¡ççåè¾¹è·åå¤è¾¹è· */
.side-bar {
    font-size: medium
}

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

/* è¾¹æ ç»ä»¶çæ é¢ */
.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
}

/* åé¡µæé®æ ·å¼
---------------------------------------------------*/
.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(--buttonTextColor);
    padding: 5.5px 10px 6px 10px;
    background: var(--buttonBgColor);
    margin: 0 5px;
    line-height: 3;
    border-radius: 8px;
    transition: all 0.3s;
    box-shadow: 0 4px 6px rgba(52, 152, 219, 0.25);
}

.pagination a:hover {
    text-decoration: none;
    filter: brightness(0.9);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(52, 152, 219, 0.35);
}

#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)
}

/* è¯è®ºæ ·å¼
---------------------------------------------------*/
/* åè¡¨è¯è®ºè¡¨åæ ·å¼ */
@media (min-width: 768px) {
    .commentform {
        min-height: 210px
    }
}

#comments {
    margin-top: 80px;
    margin-bottom: 32px;
}

.comment-name {
    border-radius: 10px 0 0 10px !important;
}

.comment-mail {
    border-radius: 0 !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;
    display: flex;
    flex-wrap: wrap;
    margin-top: 10px;
    gap: 0;
}

.com_control {
    display: block;
    border-radius: 0;
    border: 1px var(--borderColor) solid;
    border-right: 0;
    height: 50px;
    flex: 1;
    min-width: 120px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.comment-name {
    border-radius: 10px 0 0 10px !important;
}

.comment-mail {
    border-radius: 0 !important;
}

.captcha-container {
    flex: 1;
    min-width: 150px;
    border-radius: 0 10px 10px 0;
    border: 1px solid var(--borderColor);
    border-left: 0;
    display: flex;
    align-items: center;
    padding: 0 10px;
    height: 50px;
    background-color: var(--inputBgColor);
}

.comment-post {
    clear: both;
    padding: 12px 0 0;
    border: none;
    border-radius: 0;
    background: var(--conBgcolor);
}

#comments .commentform {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.captcha-container img {
    height: 34px;
    cursor: pointer;
    margin-right: 8px;
    border-radius: 4px;
}

.captcha-container input[name="imgcode"] {
    border: none;
    background: transparent;
    padding: 5px;
    height: 100%;
    width: 100%;
    outline: none;
}

/* è¯è®ºå¤çè¾å¥æ¡æç¤º */
.com_control::placeholder {
    color: rgba(116, 116, 116, 0.336);
    transition: color 0.2s;
}

.com_control:focus::placeholder {
    color: transparent;
}

.captcha-container input[name="imgcode"]::placeholder {
    color: rgba(116, 116, 116, 0.336);
    transition: color 0.2s;
}

.captcha-container input[name="imgcode"]:focus::placeholder {
    color: transparent;
}

@media (min-width: 578px) {
    .com_control::placeholder,
    .captcha-container input[name="imgcode"]::placeholder {
        text-align: center;
    }
}

.comment-header {
    margin: 26px 0 14px;
    height: auto;
    font-size: 18px;
    line-height: 1.4;
}

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

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

.comment-post input {
    padding: 7px 16px;
    font-size: small;
    color: #848797;
    width: auto;
}

.comment-post #comment {
    width: 100%;
    border: 1px var(--borderColor) solid;
    font-size: 15px;
    line-height: 1.75;
    border-radius: 12px;
    min-height: 168px;
    height: auto;
    resize: vertical;
    padding: 14px 16px;
    background: color-mix(in srgb, var(--bodyBground) 42%, var(--conBgcolor));
    transition: border-color 0.2s, box-shadow 0.2s, background-color 0.2s;
}

.comment-post #comment:focus {
    border-color: rgba(89, 184, 248, 0.65);
    box-shadow: 0 0 0 3px rgba(89, 184, 248, 0.16);
    background: var(--conBgcolor);
}

#comments .comment-info {
    margin-top: 0;
    gap: 10px;
    overflow: visible;
}

.comment-post #comment_submit {
    width: auto;
    min-width: 112px;
    height: 42px;
    text-align: center;
    font-size: 14px;
    margin: 0;
    float: none;
    border-radius: 999px;
    border: 1px solid var(--buttonBgColor);
    padding: 0 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--buttonBgColor);
    color: var(--buttonTextColor);
    transition: all 0.3s;
    box-shadow: 0 4px 6px rgba(52, 152, 219, 0.25);
}

.comment-post #cancel-reply {
    display: none;
    width: auto;
    min-width: 88px;
    height: 42px;
    text-align: center;
    font-size: 14px;
    margin: 0;
    float: none;
    border-radius: 999px;
    border: 1px solid var(--borderColor);
    padding: 0 16px;
    background-color: transparent;
    color: var(--fontColor);
    transition: all 0.3s;
}

.comment-post #cancel-reply:hover {
    cursor: pointer;
    filter: brightness(0.95);
}

.comment-post #comment_submit:hover {
    cursor: pointer;
    filter: brightness(0.9);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(52, 152, 219, 0.35);
}

.com_submit_p {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 4px;
}

#comments .com_control {
    height: 48px;
    min-width: 180px;
    border-right: 1px solid var(--borderColor);
    border-radius: 12px !important;
    background: var(--conBgcolor);
}

#comments .com_control:focus {
    border-color: rgba(89, 184, 248, 0.65);
    box-shadow: 0 0 0 3px rgba(89, 184, 248, 0.13);
}

#comments .com_control::placeholder,
#comments .captcha-container input[name="imgcode"]::placeholder {
    color: color-mix(in srgb, var(--lightColor) 66%, #ffffff 34%);
}

#comments .com_control:focus::placeholder,
#comments .captcha-container input[name="imgcode"]:focus::placeholder {
    color: color-mix(in srgb, var(--lightColor) 46%, #ffffff 54%);
}

#comments .captcha-container {
    min-width: 210px;
    height: 48px;
    border: 1px solid var(--borderColor);
    border-left: 1px solid var(--borderColor);
    border-radius: 12px;
    padding: 0 10px;
}

#comments .captcha-container img {
    width: 108px;
    height: 34px;
    object-fit: cover;
}

[data-theme="dark"] #comments .comment-post #comment {
    background: color-mix(in srgb, var(--inputBgColor) 88%, #000000 12%);
}

[data-theme="dark"] #comments .comment-post #comment:focus {
    background: var(--inputBgColor);
}

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

.comment {
    margin: 14px 0;
    padding: 2px 0;
    font-size: medium;
    overflow: visible;
    color: #333
}

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

.comment .comment-time {
    color: #999999;
    display: inline-block;
    font-size: 12px;
    margin-left: 8px;
    vertical-align: middle;
}

.comment .avatar {
    float: left;
    margin: 6px 8px 0 0;
}

.comment .comment-infos {
    background: var(--bodyBground);
    padding: 14px 14px 12px;
    border-radius: 12px;
    margin-top: 0;
    margin-left: 56px;
    border: 1px solid rgba(89, 184, 248, 0.14);
    color: var(--fontColor);
    position: relative;
    line-height: 1.7;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.comment:hover > .comment-infos {
    border-color: rgba(89, 184, 248, 0.24);
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
}

[data-theme="dark"] .comment .comment-infos {
    border-color: rgba(148, 163, 184, 0.26);
}

[data-theme="dark"] .comment:hover > .comment-infos {
    border-color: rgba(99, 179, 237, 0.5);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
}

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

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

/* è¯è®ºåè¡¨ä¸­æåè¯è®ºèå¤´åçç®­å¤´ */
.arrow {
    position: absolute;
    top: 14px;
    margin-left: -33px;
    border-width: 12px;
    border-style: solid;
    border-color: transparent var(--bodyBground) transparent transparent
}

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

.comment .comment-reply {
    display: flex;
    justify-content: flex-end;
    margin-top: 8px;
}

.comment .com-reply {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
    padding: 0 12px;
    background: transparent;
    border: 1px solid var(--borderColor);
    border-radius: 999px;
    box-shadow: none;
    appearance: none;
    font-size: 12px;
    font-weight: 500;
    line-height: 1;
    color: var(--lightColor);
    cursor: pointer;
    transition: color 0.2s, border-color 0.2s, background-color 0.2s;
}

.comment .com-reply:hover {
    color: var(--buttonBgColor);
    border-color: rgba(89, 184, 248, 0.4);
    background: rgba(89, 184, 248, 0.1);
}

.comment .com-reply:focus-visible {
    outline: 2px solid rgba(89, 184, 248, 0.45);
    outline-offset: 2px;
}

[data-theme="dark"] .comment .com-reply {
    border-color: rgba(148, 163, 184, 0.34);
}

.comment-children {
    margin: 14px 0 4px 28px;
    clear: both;
    border: none;
    padding: 0;
}

.comment .comment-post {
    width: 100%;
    margin: 12px 0 0;
    padding: 12px 0 0;
    background: transparent;
    border-top: 1px dashed var(--borderColor);
    border-radius: 0;
    clear: both;
}

.comment .comment-post .comment-info {
    margin-top: 8px;
    gap: 10px;
}

.comment .comment-post .com_control,
.comment .comment-post .captcha-container {
    border: 1px solid var(--borderColor);
    border-right: 1px solid var(--borderColor);
    border-radius: 10px !important;
}

.comment .comment-post .captcha-container {
    border-left: 1px solid var(--borderColor);
}

.comment-info {
    overflow: hidden;
    margin-top: -8px;
}

/* è¾¹æ å¤çææ°è¯è®ºä¿¡æ¯margin-topåºè¯¥æ¯0 */
.unstyle-li .comment-info {
    margin-top: 4px
}

.cancel-reply {
    font-size: large
}

/* è¯è®ºäººçå¤´å */
.avatar img {
    width: 42px;
    height: 42px;
    object-fit: cover;
    margin-top: 0;
    margin-right: 4px;
    border-radius: 50%;
    border: 1px solid var(--borderColor);
}

.unstyle-li input[type="submit"] {
    background-color: var(--buttonBgColor);
    color: var(--buttonTextColor);
    float: left;
    margin-left: -1px;
    height: 40px;
    width: 25%;
    border: 0;
    border-radius: 0 20px 20px 0;
    padding: 0;
    cursor: pointer;
    transition: background-color 0.3s;
}

.unstyle-li input[type="submit"]:hover {
    filter: brightness(0.9);
}

/*æç« æ¡ç®ä¸­çé¨åæ ·å¼
---------------------------------------------------*/
/* æç« æ¡ç®çæ é¢ */
.card-title {
    margin-bottom: 30px
}

/* æç« æ¡ç®ä¸­çç½®é¡¶å¾æ¡ */
.log-topflg {
    user-select: none;
    display: inline-block;
    position: relative;
    height: 26px;
    padding: 3px 10px;
    bottom: 3.5px;
    font-size: 13px;
    margin-left: 8px;
    cursor: default;
    background-color: rgba(245, 101, 101, 0.1);
    color: #c53030;
    border-radius: 13px;
    line-height: 1.5;
    font-weight: 600;
}

/* æç« åå®¹é¡µæ ·å¼
---------------------------------------------------*/
.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
}

/* éè¦æ¹åï¼ä¾§è¾¹æ é¾æ¥å¡ççåæé¾æ¥å±æ§ */
.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
}

/* æç« æ é¢åæ ç­¾ç­ */
.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) var(--marRadius) 0 0;
    overflow: hidden;
    position: relative;
}

.loglist-cover img {
    width: 100% !important;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s;
    display: block;
}

.loglist-cover img:hover {
    transform: scale(1.05);
}

/* æç« åç±» */
.loglist-sort {
    user-select: none;
    display: inline-block;
    position: relative;
    height: 26px;
    padding: 3px 10px;
    bottom: 3.5px;
    font-size: 13px;
    margin-left: 8px;
    cursor: default;
    background-color: rgba(52, 152, 219, 0.1);
    color: var(--buttonBgColor);
    border-radius: 13px;
    line-height: 1.5;
    font-weight: 500;
}

.loglist-sort a {
    color: var(--buttonBgColor);
}

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

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

/* æ¡ç®çå¶ä»åå®¹ */
.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)
}

/* ä¾§è¾¹æ ç»ä»¶çä¸äºæ ·å¼ */
.bloggerinfo {
    margin-bottom: -10px;
    text-align: center
}

.bloggerinfo-img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    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
}

/* æç´¢æ  */
.search {
    width: 75%;
    box-shadow: none;
    float: left;
    font-size: 1rem;
    padding: 8px 16px;
    height: 40px;
    line-height: 1.5;
    color: var(--inputTextColor);
    border: 1px solid var(--inputBorderColor);
    margin-block: 0;
    border-radius: 20px 0 0 20px;
    outline: none;
    transition: all 0.3s;
}

.search:focus {
    border-color: var(--buttonBgColor);
    z-index: 2;
    position: relative;
}

/* æç« éè¯»åæç« æ¡ç®çæ ç­¾ */
.tags {
    border: 1px solid var(--borderColor);
    padding: 1px 6px;
    border-radius: 4px;
    white-space: nowrap
}

/* ä¾§è¾¹æ ç»ä»¶ä¸­çæ ç­¾ */
.tag-container {
    margin-block: 0;
    text-overflow: ellipsis
}

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

/* ä¾§è¾¹æ ç»ä»¶ä¸­çææ°æç« æ ·å¼ */
.blog-lates, .blog-hot {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 8px;
}

/* è¿åä¸é¡µå¾æ  */
.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
}

/* æç« æ¡ç®ä¸­çåå²çº¿ */
.list-line {
    border: 0;
    margin-top: 12px;
    margin-bottom: -7px;
    border-top: 1px solid rgb(245, 245, 246)
}

/* ä¾§è¾¹æ ç»ä»¶ä¸­çæç« åç±» */
.log-classify-f {
    letter-spacing: 1px;
    font-size: 16px;
    font-weight: 400
}

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

/* ä¾§è¾¹æ ç»ä»¶ä¸­çææ°è¯è®º */
.logcom-latest-time {
    position: absolute;
    right: 10px;
    color: var(--lightColor);
    margin-left: 10px;
    font-size: small
}

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

/* ä¾§è¾¹æ ï¼ææ°è¯è®ºä¸å¾®è¯­çè½»éåè¡¨æ ·å¼ */
.side-bar .side-comment-list,
.side-bar .side-twitter-list {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.side-bar .side-comment-list .comment-info,
.side-bar .side-twitter-list .side-twitter-item {
    display: grid;
    grid-template-columns: 28px minmax(0, 1fr) auto;
    grid-template-rows: auto auto;
    column-gap: 8px;
    row-gap: 4px;
    align-items: center;
    margin-top: 0;
    padding: 12px 0;
    border: 0;
    border-bottom: 1px solid var(--borderColor);
    border-radius: 0;
    background: transparent;
    line-height: 1.5;
    transition: color 0.2s, border-color 0.2s;
}

.side-bar .side-comment-list .comment-info:hover,
.side-bar .side-twitter-list .side-twitter-item:hover {
    border-color: rgba(89, 184, 248, 0.28);
}

[data-theme="dark"] .side-bar .side-comment-list .comment-info:hover,
[data-theme="dark"] .side-bar .side-twitter-list .side-twitter-item:hover {
    border-color: rgba(99, 179, 237, 0.45);
}

.side-bar .side-comment-list li:last-child,
.side-bar .side-twitter-list li:last-child {
    border-bottom: 0;
}

.side-bar .side-comment-list .comment-info_img {
    grid-column: 1;
    grid-row: 1 / span 2;
    align-self: start;
    width: 28px;
    height: 28px;
    margin-right: 0;
    margin-bottom: 0;
    border: 0;
}

.side-bar .side-comment-list .comm-lates-name,
.side-bar .side-twitter-list .comm-lates-name {
    grid-column: 2;
    grid-row: 1;
    display: block;
    max-width: 100%;
    font-size: 13px;
    font-weight: 600;
    color: var(--fontColor);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.35;
    min-width: 0;
}

.side-bar .side-comment-list .logcom-latest-time,
.side-bar .side-twitter-list .logcom-latest-time {
    grid-column: 3;
    grid-row: 1;
    position: static;
    justify-self: end;
    margin-left: 0;
    padding: 0;
    font-size: 12px;
    line-height: 1.35;
    white-space: nowrap;
    color: var(--lightColor);
}

[data-theme="dark"] .side-bar .side-comment-list .logcom-latest-time,
[data-theme="dark"] .side-bar .side-twitter-list .logcom-latest-time {
    color: var(--lightColor);
}

.side-bar .side-comment-list .comment-info a {
    grid-column: 2 / 4;
    grid-row: 2;
    display: -webkit-box;
    margin-top: 0;
    padding-left: 0;
    color: var(--fontColor);
    line-height: 1.5;
    overflow: hidden;
    text-overflow: ellipsis;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.side-bar .side-twitter-list .side-twitter-item {
    color: var(--fontColor);
    font-size: 14px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.side-bar .side-twitter-list .side-twitter-item .comm-lates-name {
    max-width: 100%;
}

.side-bar .side-twitter-list .side-twitter-content {
    grid-column: 2 / 4;
    grid-row: 2;
    display: -webkit-box;
    margin-top: 0;
    color: var(--fontColor);
    line-height: 1.5;
    overflow: hidden;
    text-overflow: ellipsis;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.side-bar .side-twitter-list .side-twitter-content p {
    margin: 0;
}

.side-bar .side-twitter-list .side-twitter-content br {
    line-height: 1;
}

.side-bar .side-comment-list hr,
.side-bar .side-twitter-list hr {
    display: none;
}

.side-bar .side-comment-list br,
.side-bar .side-twitter-list br {
    display: none;
}

@media (max-width: 575px) {
    .side-bar .side-comment-list .logcom-latest-time,
    .side-bar .side-twitter-list .logcom-latest-time {
        position: static;
        display: inline-flex;
        margin-left: 8px;
        vertical-align: middle;
    }
}

/* åå¤çæ¥ææå­æ ·å¼ */
.date {
    margin: 0;
    text-align: center;
    color: #7f7f7f
}

.date a {
    color: #7f7f7f
}

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

.log-title {
    text-align: left;
    margin: 0;
    font-size: 1.75rem;
    line-height: 1.25;
    overflow-wrap: anywhere
}

.log-header {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 16px
}

.log-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 10px 14px;
    margin: 0;
    color: var(--lightColor);
    font-size: 14px;
    line-height: 1.6
}

.log-meta-left, .log-meta-right {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px 14px
}

.log-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap
}

.log-meta a {
    color: inherit
}

.log-meta .iconfont {
    font-size: 14px
}

@media (max-width: 480px) {
    .log-title {
        font-size: 1.55rem
    }

    .log-meta-item {
        white-space: normal
    }
}

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

/* ç¸é»æç« æé®çæ ·å¼ */
.neighbor-log {
    display: flex;
    gap: 12px;
    margin-block: 20px
}

.prev-log {
    flex: 1;
    min-width: 0
}

.next-log {
    flex: 1;
    min-width: 0
}

.neighbor-link {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 10px 12px;
    border: 1px solid var(--borderColor);
    border-radius: 0.75rem;
    transition: background-color 0.2s, border-color 0.2s
}

.neighbor-link:hover {
    background-color: rgba(89, 184, 248, 0.08);
    border-color: rgba(89, 184, 248, 0.28)
}

.neighbor-dir {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--lightColor);
    line-height: 1.2
}

.neighbor-title {
    font-size: 14px;
    line-height: 1.4;
    color: var(--fontColor);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.next-log .neighbor-dir {
    justify-content: flex-end
}

.next-log .neighbor-title {
    text-align: right
}

@media (max-width: 600px) {
    .neighbor-log {
        flex-direction: column
    }

    .neighbor-title {
        white-space: normal;
        overflow-wrap: anywhere
    }
}

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

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

/* ç½é¡µè¶³é¨
---------------------------------------------------*/
.footinfo {
    line-height: 2;
    padding-block: 30px;
    text-align: center !important;
    color: var(--lightColor);
    font-size: 14px;
    border-top: 1px solid var(--borderColor);
}

.footinfo a {
    color: var(--lightColor);
}

.footinfo a:hover {
    color: var(--aHoverColor);
}

/* å¾çæ¾å¤§
---------------------------------------------------*/
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 {
    /* æ¾å¤§åçå¾çæ è£åªãæ åè§ãæ éæåº¦ */
    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;
    z-index: 1000;
}

.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
}

/* ãå½æ¡£ãçæ ·å¼ 
---------------------------------------------------*/
.archive {
    color: #929292;
    font-size: 16px;
    padding: 4px;
    border-color: #ced4da
}

/* æç« ååºé¡µ ç¼è¾ é¾æ¥çæ ·å¼ 
---------------------------------------------------*/
.loglist-article-edit a {
    color: #929292
}

/* ä¸äºéåºåå±å¹å°ºå¯¸æ¾ç¤ºææçæ ·å¼
---------------------------------------------------*/
@media all and (max-width: 1200px) and (min-width: 992px) {

    /* mh æ¯æ¹ä¾¿å¨ä¸­ãå°å±å¹éèåç´ ç 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) {
    /* å¤´é¨æ å®¹å¨çéå®½ */
    .blog-header-c {
        max-width: unset !important
    }

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

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

    /* mh æ¯æ¹ä¾¿å¨ä¸­ãå°å±å¹éèåç´ ç 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
    }

    /* ä¸ºæç« ååºé¡µå¡çå¨å°å±å¹çè§æä½éªä¼å */
    .card-title {
        margin-bottom: 10px
    }

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

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

    /* åå®¢ä¸»å®¹å¨é¡¶é¨çä¸è¾¹è· */
    .blog-container {
        margin-top: calc(74px + 1.6rem)
    }

    /* è¯è®ºçä¿¡æ¯æ åå */
    .comment-post input {
        padding: 0.5em 0.75em
    }

    /* ä¾§è¾¹æ æ¥å */
    #calendar {
        margin-left: 0
    }
}

/* å¨å¹³æ¿ä¸äºå¤äºä¸­é´å°ºå¯¸çä¸å¸¸è§è®¾å¤æåçç¼©æ¾åå¶ä»ä¸äºè°æ´æ ·å¼ */
@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
    }

    /* ä¸­å±å¹ä¸ç¼©ç­è¾¹æ è¯è®ºæ¥ææ¾ç¤º */
    .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
    }
}

/* æ®éç§»å¨è®¾å¤çæ¾ç¤ºæ ·å¼ */
@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
    }

    .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: 10px;
        min-height: 112px;
    }

    .comment-post input {
        width: 100%
    }

    .commentform .comment-info {
        margin-top: 8px;
        gap: 10px;
    }

    #comments {
        margin-bottom: 64px
    }

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

    .comment-mail {
        margin-bottom: 0;
    }

    .comment-name {
        margin-bottom: 0;
    }

    .comment .comment-post {
        display: block;
        width: 100%;
    }

    /* è¯è®ºåè¡¨æ¢æ°æ ·å¼ */
    .arrow {
        display: none
    }

    .comment .comment-infos {
        margin-left: 38px;
        font-size: 14px;
        padding: 12px;
    }

    .comment .avatar {
        margin: 0 0 8px;
        height: 30px;
        width: 30px;
        float: left;
    }

    .comment .avatar img {
        height: 30px;
        width: 30px;
        margin-top: 0;
    }

    .comment {
        margin: 12px 0;
    }

    .comment-children {
        margin-left: 12px;
        padding-left: 8px;
    }

    .comment .comment-reply {
        margin-top: 10px;
    }

    .comment .com-reply {
        min-height: 32px;
        padding: 0 11px;
    }

    .comment-post {
        padding: 10px 0 0;
    }

    .comment-post #comment_submit,
    .comment-post #cancel-reply {
        width: 100%;
        min-width: 0;
        height: 44px;
    }

    #comments .comment-info {
        gap: 8px;
    }

    #comments .com_control,
    #comments .captcha-container {
        min-width: 100%;
        height: 44px;
    }

    #comments .captcha-container img {
        width: 96px;
        height: 30px;
    }

    .com_submit_p {
        gap: 6px;
    }

    .com_submit_p > * {
        width: 100%;
    }

    /* æè¦çæº¢åºï¼overflowï¼æä½ å¨ å°å±å¹ä¸è¦æªå¾å¤ä¸ç¹ */
    .subtitle-overflow {
        max-width: 80%
    }

    /* ç½é¡µé¡¶é¨çä¸æèåå¨ç§»å¨ç«¯çæ¾ç¤ºä¼å */
    .dropdown-menus .list-menu {
        padding: 0px;
        letter-spacing: 2px
    }
}

/* ä¸º toc ç§»å¨ç«¯è®¾ç«çæ ·å¼ */
@media all and (max-width: 1274px) {
    .toc-con {
        height: 100vh;
        width: 60%;
        max-width: 300px;
        padding-right: 30px;
        /* ç£¨ç ææ */
        background: var(--conBgcolor);
        backdrop-filter: blur(10px);
        /* å¼å®¹ Safari ç£¨ç ææ */
        -webkit-backdrop-filter: blur(10px);
        /* å§ç»åºå®ä½ç½® */
        z-index: 1150;
        position: fixed !important;
        top: 0 !important;
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
        left: 0 !important;
    }

    .toc-con div {
        height: calc(100vh - 60px) !important;
    }
}

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

/* ä¾§è¾¹æ æç« å°é¢æ ·å¼ */
.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;
}

/* é¦é¡µè½®æ­å¾æ ·å¼ */
* {
    box-sizing: border-box;
}

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

.mySlides {
    display: none;
    border-radius: var(--marRadius);
    overflow: hidden;
}

.mySlides img {
    border-radius: var(--marRadius);
    display: block;
    object-fit: cover;
}

.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;
    }
}

/* å³ä¾§æ¬æµ®å·¥å·æ  */
.side-toolbar {
    position: fixed;
    right: 20px;
    bottom: 80px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.side-btn {
    width: 40px;
    height: 40px;
    background-color: var(--conBgcolor);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    color: var(--fontColor);
}

.side-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    background-color: var(--buttonBgColor);
    color: var(--buttonTextColor);
}

.side-btn svg {
    width: 20px;
    height: 20px;
}

#back-to-prev {
    display: flex;
}

/* é»ææ¨¡å¼ä¸çæ ·å¼è°æ´ */
[data-theme="dark"] .side-btn {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .side-btn:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

/* ä¸»é¢å¾æ åæ¢é»è¾ */
.icon-sun {
    display: none;
}
.icon-moon {
    display: block;
}

[data-theme="dark"] .icon-sun {
    display: block;
}
[data-theme="dark"] .icon-moon {
    display: none;
}

/* ä¿®å¤æ¾å¤§å¾çè¢«é®æ¡çé®é¢ */
.zoom-fix-container {
    overflow: visible !important;
}

.zoom-fix-card {
    z-index: 1000 !important;
    position: relative; /* ç¡®ä¿ z-index çæ */
}

.auth-modal-mask {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.52);
    z-index: 1090;
    backdrop-filter: blur(2px);
}

.auth-modal {
    position: fixed;
    inset: 0;
    z-index: 1100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.auth-modal-card {
    width: 100%;
    max-width: 430px;
    background: var(--conBgcolor);
    border-radius: 14px;
    border: 1px solid var(--borderColor);
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.2);
    padding: 24px;
    position: relative;
}

.auth-modal-close {
    position: absolute;
    top: 10px;
    right: 12px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid var(--borderColor);
    background: transparent;
    box-shadow: none;
    color: var(--fontColor);
    padding: 0;
    line-height: 1;
}

.auth-modal-close:hover {
    transform: none;
    filter: none;
    background: var(--bodyBground);
    box-shadow: none;
}

.auth-modal-head h3 {
    margin-bottom: 4px;
    font-size: 22px;
    font-weight: 600;
}

.auth-modal-head p {
    margin: 0 0 18px 0;
    color: var(--lightColor);
    font-size: 14px;
    line-height: 1.5;
}

.auth-modal-alert {
    display: none;
    margin-bottom: 14px;
    border-radius: 10px;
    padding: 10px 12px;
    font-size: 14px;
    background: rgba(245, 101, 101, 0.1);
    color: #c53030;
}

.auth-modal-alert.show {
    display: block;
}

.auth-modal-alert.success {
    background: rgba(56, 161, 105, 0.15);
    color: #2f855a;
}

.auth-form-row {
    margin-bottom: 12px;
}

.auth-form-row input {
    height: 46px;
}

.auth-captcha-row,
.auth-inline-row {
    display: flex;
    gap: 10px;
    align-items: center;
}

.auth-captcha-row input,
.auth-inline-row input {
    flex: 1;
}

.auth-captcha-row img {
    width: 110px;
    height: 42px;
    border-radius: 8px;
    border: 1px solid var(--inputBorderColor);
    cursor: pointer;
    background: var(--inputBgColor);
}

.auth-inline-btn {
    margin: 0;
    height: 42px;
    line-height: 1;
    white-space: nowrap;
    padding: 0 14px;
    border-radius: 10px;
}

.auth-checkbox {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--lightColor);
    margin: 2px 0 10px;
    cursor: pointer;
}

.auth-checkbox input {
    width: 16px;
    height: 16px;
}

.auth-submit {
    width: 100%;
    margin: 4px 0 0;
}

.auth-login-ext {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.auth-login-ext a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.auth-login-ext img {
    display: block;
    max-height: 28px;
}

.auth-submit:disabled,
.auth-inline-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.auth-modal-switch {
    margin-top: 14px;
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    font-size: 14px;
}

.auth-modal-switch a {
    color: var(--buttonBgColor);
}

[data-theme="dark"] .auth-modal-alert {
    background: rgba(252, 129, 129, 0.2);
    color: #feb2b2;
}

[data-theme="dark"] .auth-modal-alert.success {
    background: rgba(72, 187, 120, 0.2);
    color: #9ae6b4;
}

@media (max-width: 577px) {
    .auth-modal {
        align-items: flex-end;
        padding: 10px 10px calc(env(safe-area-inset-bottom, 0px) + 10px);
    }

    .auth-modal-card {
        max-width: none;
        max-height: min(86vh, 640px);
        border-radius: 16px 16px 12px 12px;
        padding: 18px 16px 16px;
        overflow-y: auto;
    }

    .auth-modal-close {
        top: 8px;
        right: 8px;
        width: 40px;
        height: 40px;
    }

    .auth-captcha-row {
        gap: 8px;
    }

    .auth-captcha-row img {
        width: 96px;
    }

    .auth-inline-row {
        flex-direction: column;
        align-items: stretch;
    }

    .auth-inline-btn {
        width: 100%;
    }

    .auth-login-ext img {
        max-height: 24px;
    }
}

/* Moyan theme polish overrides. */
.column-big > .shadow-theme {
    border: 1px solid rgba(128, 150, 170, 0.12);
}

.card-title {
    line-height: 1.42;
    margin-bottom: 14px;
}

.loglist-title {
    color: #344054;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0;
}

.loglist-title:hover {
    color: var(--buttonBgColor);
    text-decoration: none;
}

.loglist-content {
    color: #667085;
    font-size: 15px;
    line-height: 1.78;
    margin-top: 16px;
}

.loglist-content p {
    margin: 0;
}

.loglist-tag {
    margin-top: 16px;
}

.loglist-tag .tags,
.tags-side {
    background: rgba(89, 184, 248, 0.08);
    border: 1px solid rgba(89, 184, 248, 0.16);
    color: var(--buttonBgColor);
    font-size: 12px;
    line-height: 1.7;
}

.loglist-sort {
    height: auto;
    padding: 2px 8px;
    font-size: 12px;
    line-height: 1.6;
    vertical-align: middle;
}

.info-row {
    align-items: center;
    border-top: 1px solid rgba(128, 150, 170, 0.12);
    color: #98a2b3;
    padding: 12px 20px 14px;
}

.log-info,
.log-count {
    line-height: 1.7;
}

.log-count a {
    color: #98a2b3;
}

.log-count a:hover {
    color: var(--buttonBgColor);
    text-decoration: none;
}

.loglist-cover {
    aspect-ratio: 16 / 6;
    height: auto;
}

.side-bar .widget {
    border: 1px solid rgba(128, 150, 170, 0.12);
    margin-bottom: 20px;
    padding: 18px;
}

.side-bar h3 {
    color: #344054;
    font-size: 15px;
    letter-spacing: 0;
    margin-bottom: 16px;
}

.bloginfo-name {
    color: #344054;
    font-size: 20px;
}

.bloginfo-descript {
    color: #667085;
    line-height: 1.75;
}

.side-twitter-list,
.side-comment-list {
    max-height: 260px;
    overflow: auto;
}

.side-twitter-content,
.side-comment-list a {
    color: #667085;
    line-height: 1.65;
}

.unstyle-li form {
    display: flex;
}

.search {
    float: none;
    min-width: 0;
}

.unstyle-li form input[type="submit"] {
    border: 0;
    border-radius: 0 20px 20px 0;
    background: var(--buttonBgColor);
    color: var(--buttonTextColor);
    cursor: pointer;
    height: 40px;
    padding: 0 16px;
    white-space: nowrap;
}

@media all and (max-width: 991px) {
    .loglist-title {
        font-size: 19px;
        font-weight: 700;
    }

    .info-row {
        gap: 8px;
        padding: 10px 14px 12px;
    }

    .loglist-cover {
        aspect-ratio: 16 / 8;
    }
}

@media all and (max-width: 577px) {
    .blog-container {
        margin-top: calc(74px + 1rem);
    }

    .column-big > .shadow-theme {
        margin-bottom: 18px;
    }

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

    .loglist-content {
        font-size: 14px;
        line-height: 1.7;
    }

    .side-bar .widget {
        padding: 16px;
    }
}

/* Apple-inspired visual direction: calm canvas, bold type, quiet chrome. */
:root {
    --marRadius: 18px;
    --conBgcolor: #ffffff;
    --bodyBground: #f5f5f7;
    --fontColor: #1d1d1f;
    --aColor: #1d1d1f;
    --aHoverColor: #0066cc;
    --lightColor: #86868b;
    --buttonBgColor: #0071e3;
    --buttonBorderColor: #0071e3;
    --buttonTextColor: #ffffff;
    --borderColor: rgba(0, 0, 0, 0.08);
    --inputBorderColor: rgba(0, 0, 0, 0.12);
}

body {
    background: var(--bodyBground);
    color: var(--fontColor);
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", Arial, "PingFang SC", "Microsoft YaHei", sans-serif;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

.blog-header {
    background: rgba(255, 255, 255, 0.78);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: none;
    backdrop-filter: saturate(180%) blur(18px);
    -webkit-backdrop-filter: saturate(180%) blur(18px);
}

.blog-header-title {
    color: #1d1d1f;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0;
}

.blog-header-subtitle {
    color: #86868b;
    letter-spacing: 0.14rem;
}

.nav-link {
    color: #1d1d1f;
    border-radius: 999px;
    font-size: 14px;
    min-height: 36px;
    padding: 0.45rem 0.78rem;
}

.nav-link:hover,
.list-menu:hover > .nav-link,
.list-menu:focus-within > .nav-link {
    color: #0066cc;
    background: rgba(0, 102, 204, 0.08);
    text-decoration: none;
}

.nav-link-login {
    border-radius: 999px;
    box-shadow: none;
}

.blog-container {
    max-width: 1120px;
    margin-top: calc(71.63px + 2.6rem);
}

.column-big > .shadow-theme,
.side-bar .widget {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 22px;
    box-shadow: none;
}

.shadow-theme {
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.shadow-theme:hover {
    transform: translateY(-3px);
    border-color: rgba(0, 0, 0, 0.1);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
}

.card-padding {
    padding: 26px;
}

.card-title {
    margin-bottom: 12px;
}

.loglist-title {
    color: #1d1d1f;
    font-size: 27px;
    font-weight: 700;
    line-height: 1.2;
}

.loglist-title:hover {
    color: #0066cc;
}

.loglist-content {
    color: #6e6e73;
    font-size: 16px;
    line-height: 1.72;
    margin-top: 14px;
}

.loglist-tag {
    margin-top: 18px;
}

.loglist-tag .tags,
.tags-side,
.loglist-sort,
.log-topflg {
    background: #f5f5f7;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 999px;
    color: #6e6e73;
    font-size: 12px;
    font-weight: 500;
}

.loglist-sort a {
    color: #6e6e73;
}

.loglist-cover {
    aspect-ratio: 16 / 7;
    height: auto;
    border-radius: 22px 22px 0 0;
}

.loglist-cover img:hover {
    transform: scale(1.025);
}

.info-row {
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    color: #86868b;
    padding: 14px 26px 16px;
}

.log-info a,
.log-count a {
    color: #86868b;
}

.log-info a:hover,
.log-count a:hover {
    color: #0066cc;
}

.side-bar .widget {
    padding: 22px;
}

.side-bar h3 {
    color: #1d1d1f;
    font-size: 15px;
    font-weight: 700;
}

.bloggerinfo-img {
    border: 1px solid rgba(0, 0, 0, 0.08);
    height: 96px;
    width: 96px;
}

.bloginfo-name {
    color: #1d1d1f;
    font-size: 21px;
    font-weight: 700;
}

.bloginfo-descript,
.side-twitter-content,
.side-comment-list a {
    color: #6e6e73;
}

.search {
    background: #f5f5f7;
    border-color: transparent;
    border-radius: 999px 0 0 999px;
    color: #1d1d1f;
}

.search:focus {
    background: #ffffff;
    border-color: #0071e3;
}

.unstyle-li form input[type="submit"] {
    background: #0071e3;
    border-radius: 0 999px 999px 0;
    box-shadow: none;
    font-weight: 600;
}

.pagination a,
.pagination span {
    border-radius: 999px;
    box-shadow: none;
}

.pagination a {
    background: #0071e3;
}

.side-btn {
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

[data-theme="dark"] {
    --conBgcolor: #1d1d1f;
    --bodyBground: #000000;
    --fontColor: #f5f5f7;
    --aColor: #f5f5f7;
    --aHoverColor: #2997ff;
    --lightColor: #a1a1a6;
    --buttonBgColor: #0071e3;
    --buttonBorderColor: #0071e3;
}

[data-theme="dark"] .blog-header {
    background: rgba(22, 22, 23, 0.78);
    border-bottom-color: rgba(255, 255, 255, 0.12);
}

[data-theme="dark"] .blog-header-title,
[data-theme="dark"] .nav-link,
[data-theme="dark"] .loglist-title,
[data-theme="dark"] .side-bar h3,
[data-theme="dark"] .bloginfo-name {
    color: #f5f5f7;
}

[data-theme="dark"] .column-big > .shadow-theme,
[data-theme="dark"] .side-bar .widget {
    background: #1d1d1f;
    border-color: rgba(255, 255, 255, 0.12);
}

[data-theme="dark"] .loglist-content,
[data-theme="dark"] .bloginfo-descript,
[data-theme="dark"] .side-twitter-content,
[data-theme="dark"] .side-comment-list a {
    color: #a1a1a6;
}

[data-theme="dark"] .loglist-tag .tags,
[data-theme="dark"] .tags-side,
[data-theme="dark"] .loglist-sort,
[data-theme="dark"] .log-topflg,
[data-theme="dark"] .search {
    background: #2c2c2e;
    border-color: rgba(255, 255, 255, 0.1);
    color: #a1a1a6;
}

@media all and (max-width: 991px) {
    .blog-container {
        margin-top: calc(74px + 1.5rem);
    }

    .loglist-title {
        font-size: 22px;
    }

    .card-padding {
        padding: 20px;
    }
}

@media all and (max-width: 577px) {
    .blog-container {
        margin-top: calc(74px + 1rem);
    }

    .column-big > .shadow-theme,
    .side-bar .widget {
        border-radius: 18px;
    }

    .card-padding {
        padding: 18px;
    }

    .loglist-title {
        font-size: 20px;
    }

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

    .info-row {
        padding: 12px 18px 14px;
    }

    .loglist-cover {
        aspect-ratio: 16 / 9;
        border-radius: 18px 18px 0 0;
    }
}

