html {
    font-size: 0.6em;
}

body::-webkit-scrollbar {
    display: none;
}

body {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

body h2 {
    font-weight:normal;
    text-shadow:0 0 5px #11191f; 
}

.menu-parent a {
    cursor: pointer;
}

.menu-parent ul,
#catalog:before,
#catalog:after,
#catalog span {
    transition: 0.2s;
    -webkit-transition: 0.2s;
}


.menu-parent:hover > ul {
    visibility: visible;
    opacity: 1;
}

.menu-parent ul {
    visibility: hidden;
    opacity: 0;
}

#search,
.menu-parent {
    position: relative;
}

.menu-parent ul {
    position: absolute;
    left: 50%;
    min-width: 100px;
    padding: 0;
    border-radius: 5px;
    background: rgba(238, 238, 238, 0.95);
    text-align: center;
    list-style: none;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
}

.menu-parent ul:before {
    content: "";
    position: absolute;
    top: -7px;
    left: 50%;
    margin-left: -7px;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-bottom: 7px solid rgba(238, 238, 238, 0.95);
}

.menu-parent li {
    display: block;
}

.menu-parent ul li {
    margin-top: 1rem;
    z-index: 1000;
    text-align: center;
    margin-left: 0em;
}

.menu-parent ul a {
    display: block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

@media (max-width: 600px) {
    #nav {
        width: 100%;
        max-height: 0;
        overflow: hidden;
        text-align: center;
    }
    .on #nav {
        max-height: 240px;
    }
    .nav-menu {
        max-height: 50em;
        overflow: auto;
    }
    .nav-menu li,
    .nav-menu a {
        display: block;
    }
    .nav-menu a:hover {
        font-weight: bold;
        border: 0;
    }
    .menu-parent {
        margin-left: -5em;
    }
    .menu-parent ul {
        position: relative;
        left: 0;
        margin: 0 auto;
        padding: 0;
        width: 75%;
        visibility: visible;
        opacity: 1;
        transform: none;
        -webkit-transform: none;
    }
    .comment-form .textarea {
        width: 50%;
    }
}

.loading-div {
    width: 100vw;
    height: 100vh;
    background-color: #fff;
    display: table-cell;
    vertical-align: middle;
    color: #555;
    overflow: hidden;
    text-align: center;
}

.loading-div::before {
    display: inline-block;
    vertical-align: middle;
}

a {
    text-decoration: none;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    color: #000000;
}

.navbar li {
    list-style: none;
}

.content li {
    margin-left: 60%;
}

body {
    width: 100%;
    margin: 0 auto;
    color: #d6d5d5;
    font-family: 'Mirages Custom', 'Merriweather', 'Open Sans', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft Yahei', 'WenQuanYi Micro Hei', 'Segoe UI Emoji', 'Segoe UI Symbol', Helvetica, Arial, sans-serif;
    -webkit-tap-highlight-color: transparent;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    line-height: 2em;
    text-align: justify;
    word-wrap: break-word;
    font-size: 1em;
    background: #2c2a2a;
}

.container {
    max-width: 820px;
    /* background: #000; */
    margin: 0 auto;
    margin-top: 2em;
    transition: all 0.6s ease;
}

.container img{
    /* min-height:80%; */
    /* max-width: 100%; */
    /* min-height:700px; */
    margin: 0 auto;
}
@media only screen and (max-width: 768px) {
    .container img{
        height: auto;
        max-width: 100%;
        margin: 0 auto;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.navbar img {
    height: 80px;
    /* width: 100%; */
    vertical-align: top;
}

#headerTop {
    position: fixed;
    top: 0;
    left: 0px;
    z-index: 1000;
    background-color: rgba(52, 50, 50, 0.7); /* 修改背景色 */
    width: 100%;
}

#headerTop.sticky {
    background-color: rgba(52, 50, 50, 0.85); /* 滚动时背景色加深 */
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.7rem 1.5rem; /* 压缩整体高度 */
    z-index: 999;
    width: 100%;
    max-width: 100%;
}

#nava {
    /* color: #000; */
    /* height: 40px; */
    line-height: 80px;
    font-weight: 700;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: all 0.3s ease-in-out;
    background-color: #101010;
}

.hamburger {
    display: none;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color: #101010;
}

.nav-menu {
    background-color: #181616;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-right: 10em;
}

.nav-item {
    margin-left: 5rem;
}

.nav-link {
    font-size: 1.6rem;
    font-weight: 400;
    color: #475569;
    text-align: center;
}

.nav-link:hover {
    color: #482ff7;
}

.nav-logo {
    font-size: 2.1rem;
    font-weight: 500;
    color: #482ff7;
    margin-left: 10em;
}
@media only screen and (max-width: 1024px) {
    .nav-logo {
        margin-left: 6em;
    }
}
@media only screen and (max-width: 768px) {
    .nav-logo {
        font-size: 2.1rem;
        font-weight: 500;
        color: #482ff7;
        margin-left: 6em;
    }
    .nav-menu {
/*         position: fixed;
 */        left: -120%;
        top: 6rem;
        background-color: #1f1f1f;
        flex-direction: column;
        background-color: #f7f7f7;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    }
    .nav-menu.active {
        left: 0;
    }
    .nav-item {
        width: 100%;
        margin: 0;
        border-bottom: 1px solid #f3f4f6;
    }
    .nav-link {
        display: block;
        padding: 2.5rem 0;
    }
    .hamburger {
        display: block;
        cursor: pointer;
    }
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    .hamburger.active .bar:nth-child(1) {
        -webkit-transform: translateY(8px) rotate(45deg);
        transform: translateY(8px) rotate(45deg);
    }
    .hamburger.active .bar:nth-child(3) {
        -webkit-transform: translateY(-8px) rotate(-45deg);
        transform: translateY(-8px) rotate(-45deg);
    }
}

@media only screen and (max-width: 960px) {
    .nav-logo {
        font-size: 2.1rem;
        font-weight: 500;
        color: #482ff7;
        margin-left: 0em;
    }
    .nav-menu {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-right: 0em;
    }
}

footer {
    text-align: center;
    padding: 10px 0;
    font-size: 1em;
    line-height: 3em;
    color: #000;
    background: #f7f7f7;
    border-top: 1px solid #e2e8f0;
}

.list-pager {
    max-width: 820px;
    margin: 0 auto;
    padding: 1em 1em;
    font-size: 12px;
    font-weight: 700;
}

.list-pager .next {
    float: right;
}

.list-pager .next i {
    margin-left: 8px;
}

.list-pager .prev {
    float: left;
}

.list-pager .prev i {
    margin-right: 8px;
}

.clear {
    clear: both;
}

.father_tags {
    height: auto;
    padding: 0em 1.2em;
    align-items: center;
    display: flex;
}

.right_tags {
    margin-left: auto;
}

summary {
    outline: 0;
}

.keywords a {
    display: inline-block;
    margin-right: 0.5rem;
    margin-top: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 1rem;
    background: #f5f5f5;
    color: #777 importent;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 400;
}

.keywords a:hover {
    background-color: #000;
    color: #fff;
}

.icp {
    color: #999;
}

#footer .links a:hover,
.icp:hover {
    color: #333;
}

a:hover,
.tags a:hover,
#footer .links a:hover {
    color: #333;
}

.postcc {
    padding: 1.2em;
    font-size: 1.0em;
    line-height: 1.5em;
}

.postcc h1 {
    font-size: 2.8em;
    color: #1f1f1f;
    font-weight: 700;
    line-height: 2em;
}

.postcc h1:before {
    content: "#";
    margin-right: 5px;
    color: #ff6d6d;
    position: relative;
}

.postcc h2 {
    font-size: 2.6em;
    color: #1f1f1f;
    font-weight: 700;
    line-height: 2em;
}

.postcc h2:before {
    content: "#";
    margin-right: 5px;
    color: #b94a48;
    position: relative;
}

.postcc h3 {
    font-size: 2.4em;
    color: #1f1f1f;
    font-weight: 700;
    line-height: 2em;
}

.postcc p{
    font-size: 1.7em;
    line-height: 1.5em;
}

.postcc span{
    font-size: 1.3em;
}

.postcc {
    line-height: 1.6;
    word-wrap: break-word;
}

.postcc a {
    color: #1abc9c;
    border: 0;
}

.postcc a:hover {
    color: #3354aa;
    border: 0;
}


.nav-menu ul a:hover {
    color: #333;
    border: 0;
}

.postcc img,
.postcc video {
    min-width: 80%;
    max-width: 100%;
    margin-top: 0.5em;
    margin-bottom: 0.5em;
    text-align: center;
    margin:0 auto;
}

.postcc hr {
    margin: 1.5em auto;
    border: none;
    border-top: 1px dashed #eee;
}

.postcc ul,
.postcc ol {
    padding-left: 2em;
    font-size: 1.6em;
    margin: 0.4em 0em;
}

.postcc .thumb,
.postcc .more {
    text-align: center;
}

.footerb {
    font-size: 1.5em;
}

.commentsdd {
    padding: 1.5em 1em;
    border-radius: 1em;
}

.postlink {
    max-width: 820px;
    background: #fff;
    margin: 0 auto;
}

.postlink .links {
    letter-spacing: -9em;
}

.postlink ul {
    padding: 2em 1em;
}

@media screen and (max-width: 600px) {
    .postlink .links li {
        display: inline-block;
        width: 50%;
        letter-spacing: 0;
    }
}

@media screen and (min-width: 600px) and (max-width: 960px) {
    .postlink .links li {
        display: inline-block;
        width: 25%;
        letter-spacing: 0;
    }
}

@media screen and (min-width: 960px) {
    .postlink .links li {
        display: inline-block;
        width: 25%;
        letter-spacing: 0;
    }
}

.postlink .links a {
    position: relative;
    display: block;
    height: 5em;
    line-height: 5em;
    font-weight: 700;
    margin: 5px 10px;
    text-align: center;
    color: #444;
    background: #fcfcfc;
    border: 0;
    border-radius: 2px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
}

.postlink .links a:hover {
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.postlink .links .l_logo {
    padding-left: 3em;
}

.l_logo img,
.l_logo i {
    position: absolute;
    top: 0;
    left: 0;
    width: 5em;
    height: 5em;
    background: #ccc;
    overflow: hidden;
}

.l_logo i {
    text-align: center;
    margin: 0 auto;
    font: 1em/1 Segoe UI Symbol;
    line-height: 5em;
}

pre,
code {
    font-size: 1em;
    background: #f7f3f7;
}

code {
    font-family: Consolas, Inconsolata, Courier, monospace, "PingFang SC", "Microsoft YaHei", sans-serif;
    font-size: 1em;
    padding: 0.2em 0.4em;
    color: #b94a48;
}

pre {
    position: relative;
    background: #21252b;
    border-radius: 5px;
    font: 15px/22px "Microsoft YaHei", "Arial", Sans-Serif;
    line-height: 1.6;
    margin-bottom: 0.5em;
    max-width: 100%;
    overflow: auto;
    text-shadow: none;
    color: #000;
    padding-top: 30px;
    box-shadow: 0 10px 30px 0px rgb(0 0 0 / 10%);
}

pre:before {
    content: " ";
    position: absolute;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    background: #fc625d;
    width: 12px;
    height: 12px;
    left: 12px;
    margin-top: -18px;
    -webkit-box-shadow: 20px 0 #fdbc40, 40px 0 #35cd4b;
    box-shadow: 20px 0 #fdbc40, 40px 0 #35cd4b;
    z-index: 2;
}

pre code {
    display: block;
    padding: 0.2em;
    color: #444;
}

pre code.hljs {
    display: block;
    overflow-x: auto;
}

code.hljs {
    padding: 3px 3px;
}

.hljs {
    color: #a9b7c6;
    background: #282b2e;
    display: block;
    overflow-x: auto;
    padding: 0.5em;
    max-height: 25em;
}

.hljs-button {
    font-size: 11px;
    color: #0b0b0b;
}

.hljs-ln-n:before {
    content: attr(data-line-number);
}

.hljs-ln {
    margin: 1rem 0.5rem;
}

.hljs-ln-numbers {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    text-align: center;
    color: #ccc;
    border-right: 1px solid #CCC;
    vertical-align: top;
}

.hljs .hljs-ln td {
    padding: 0 10px;
}

.hljs-button:hover {
    color: #000;
    background-color: #f7f7f7;
}

blockquote {
    font-size: 1.5em;
    margin: 1em 0.2em;
    padding-left: 1.5em;
    padding-top: 0.5em;
    padding-bottom: 0.5em;
    background: #f9f9f9;
    border-left: 4px solid #ddd;
    color: #555;
}

.carousel {
    position: relative;
    box-sizing: border-box;
}

.carousel *,
.carousel *:before,
.carousel *:after {
    box-sizing: inherit;
}

.carousel.is-draggable {
    cursor: move;
    cursor: grab;
}

.carousel.is-dragging {
    cursor: move;
    cursor: grabbing;
}

.carousel__viewport {
    position: relative;
    overflow: hidden;
    max-width: 100%;
    max-height: 100%;
}

.carousel__track {
    display: flex;
}

.carousel__slide {
    flex: 0 0 auto;
    width: var(--carousel-slide-width, 60%);
    max-width: 100%;
    padding: 1rem;
    position: relative;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
}

.has-dots {
    margin-bottom: calc(0.5rem + 22px);
}

.carousel__dots {
    margin: 0 auto;
    padding: 0;
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    list-style: none;
    user-select: none;
}

.carousel__dots .carousel__dot {
    margin: 0;
    padding: 0;
    display: block;
    position: relative;
    width: 22px;
    height: 22px;
    cursor: pointer;
}

.carousel__dots .carousel__dot:after {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: currentColor;
    opacity: 0.25;
    transition: opacity 0.15s ease-in-out;
}

.carousel__dots .carousel__dot.is-selected:after {
    opacity: 1;
}

.carousel__button {
    width: var(--carousel-button-width, 48px);
    height: var(--carousel-button-height, 48px);
    padding: 0;
    border: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: all;
    cursor: pointer;
    color: var(--carousel-button-color, currentColor);
    background: var(--carousel-button-bg, transparent);
    border-radius: var(--carousel-button-border-radius, 50%);
    box-shadow: var(--carousel-button-shadow, none);
    transition: opacity 0.15s ease;
}

.carousel__button.is-prev,
.carousel__button.is-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.carousel__button.is-prev {
    left: 10px;
}

.carousel__button.is-next {
    right: 10px;
}

.carousel__button[disabled] {
    cursor: default;
    opacity: 0.3;
}

.carousel__button svg {
    width: var(--carousel-button-svg-width, 50%);
    height: var(--carousel-button-svg-height, 50%);
    fill: none;
    stroke: currentColor;
    stroke-width: var(--carousel-button-svg-stroke-width, 1.5);
    stroke-linejoin: bevel;
    stroke-linecap: round;
    filter: var(--carousel-button-svg-filter, none);
    pointer-events: none;
}

html.with-fancybox {
    scroll-behavior: auto;
}

body.compensate-for-scrollbar {
    overflow: hidden !important;
    touch-action: none;
}

.fancybox__container {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    direction: ltr;
    margin: 0;
    padding: env(safe-area-inset-top, 0px) env(safe-area-inset-right, 0px) env(safe-area-inset-bottom, 0px) env(safe-area-inset-left, 0px);
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    color: var(--fancybox-color, #fff);
    -webkit-tap-highlight-color: transparent;
    overflow: hidden;
    z-index: 1050;
    outline: none;
    transform-origin: top left;
    --carousel-button-width: 48px;
    --carousel-button-height: 48px;
    --carousel-button-svg-width: 24px;
    --carousel-button-svg-height: 24px;
    --carousel-button-svg-stroke-width: 2.5;
    --carousel-button-svg-filter: drop-shadow(1px 1px 1px rgba(0, 0, 0, 0.4));
}

.fancybox__container *,
.fancybox__container *::before,
.fancybox__container *::after {
    box-sizing: inherit;
}

.fancybox__container:focus {
    outline: none;
}

body:not(.is-using-mouse) .fancybox__container:focus {
    box-shadow: 0 0 0 1px #fff,
                0 0 0 2px var(--fancybox-accent-color, rgba(1, 210, 232, 0.94));
}

@media all and (min-width: 1024px) {
    .fancybox__container {
        --carousel-button-width: 48px;
        --carousel-button-height: 48px;
        --carousel-button-svg-width: 27px;
        --carousel-button-svg-height: 27px;
    }
}

.fancybox__backdrop {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    background: var(--fancybox-bg, rgba(24, 24, 27, 0.92));
}

.fancybox__carousel {
    position: relative;
    flex: 1 1 auto;
    min-height: 0;
    height: 100%;
    z-index: 10;
}

.fancybox__carousel.has-dots {
    margin-bottom: calc(0.5rem + 22px);
}

.fancybox__viewport {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: visible;
    cursor: default;
}

.fancybox__track {
    display: flex;
    height: 100%;
}

.fancybox__slide {
    flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 48px 8px 8px 8px;
    position: relative;
    overscroll-behavior: contain;
    display: flex;
    flex-direction: column;
    outline: 0;
    overflow: auto;
    --carousel-button-width: 36px;
    --carousel-button-height: 36px;
    --carousel-button-svg-width: 22px;
    --carousel-button-svg-height: 22px;
}

.fancybox__slide::before,
.fancybox__slide::after {
    content: "";
    flex: 0 0 0;
    margin: auto;
}

@media all and (min-width: 1024px) {
    .fancybox__slide {
        padding: 64px 100px;
    }
}

.fancybox__content {
    margin: 0 env(safe-area-inset-right, 0px) 0 env(safe-area-inset-left, 0px);
    padding: 36px;
    color: var(--fancybox-content-color, #374151);
    background: var(--fancybox-content-bg, #fff);
    position: relative;
    align-self: center;
    display: flex;
    flex-direction: column;
    z-index: 20;
}

.fancybox__content:focus:not(.carousel__button.is-close) {
    outline: thin dotted;
    box-shadow: none;
}

.fancybox__caption {
    align-self: center;
    max-width: 100%;
    margin: 0;
    padding: 1rem 0 0 0;
    line-height: 1.375;
    color: var(--fancybox-color, currentColor);
    visibility: visible;
    cursor: auto;
    flex-shrink: 0;
    overflow-wrap: anywhere;
}

.is-loading .fancybox__caption {
    visibility: hidden;
}

.fancybox__container > .carousel__dots {
    top: 100%;
    color: var(--fancybox-color, #fff);
}

.fancybox__nav .carousel__button {
    z-index: 40;
}

.fancybox__nav .carousel__button.is-next {
    right: 8px;
}

@media all and (min-width: 1024px) {
    .fancybox__nav .carousel__button.is-next {
        right: 40px;
    }
}

.fancybox__nav .carousel__button.is-prev {
    left: 8px;
}

@media all and (min-width: 1024px) {
    .fancybox__nav .carousel__button.is-prev {
        left: 40px;
    }
}

.carousel__button.is-close {
    position: absolute;
    top: 8px;
    right: 8px;
    top: calc(env(safe-area-inset-top, 0px) + 8px);
    right: calc(env(safe-area-inset-right, 0px) + 8px);
    z-index: 40;
}

@media all and (min-width: 1024px) {
    .carousel__button.is-close {
        right: 40px;
    }
}

.fancybox__content > .carousel__button.is-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: var(--fancybox-color, #fff);
}

.fancybox__no-click,
.fancybox__no-click button {
    pointer-events: none;
}

.fancybox__spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    color: var(--fancybox-color, currentColor);
}

.fancybox__slide .fancybox__spinner {
    cursor: pointer;
    z-index: 1053;
}

.fancybox__spinner svg {
    animation: fancybox-rotate 2s linear infinite;
    transform-origin: center center;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 100%;
    height: 100%;
}

.fancybox__spinner svg circle {
    fill: none;
    stroke-width: 2.75;
    stroke-miterlimit: 10;
    stroke-dasharray: 1,200;
    stroke-dashoffset: 0;
    animation: fancybox-dash 1.5s ease-in-out infinite;
    stroke-linecap: round;
    stroke: currentColor;
}

@keyframes fancybox-rotate {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes fancybox-dash {
    0% {
        stroke-dasharray: 1,200;
        stroke-dashoffset: 0;
    }
    50% {
        stroke-dasharray: 89,200;
        stroke-dashoffset: -35px;
    }
    100% {
        stroke-dasharray: 89,200;
        stroke-dashoffset: -124px;
    }
}

.fancybox__backdrop,
.fancybox__caption,
.fancybox__nav,
.carousel__dots,
.carousel__button.is-close {
    opacity: var(--fancybox-opacity, 1);
}

.fancybox__container.is-animated[aria-hidden="false"] .fancybox__backdrop,
.fancybox__container.is-animated[aria-hidden="false"] .fancybox__caption,
.fancybox__container.is-animated[aria-hidden="false"] .fancybox__nav,
.fancybox__container.is-animated[aria-hidden="false"] .carousel__dots,
.fancybox__container.is-animated[aria-hidden="false"] .carousel__button.is-close {
    animation: 0.15s ease backwards fancybox-fadeIn;
}

.fancybox__container.is-animated.is-closing .fancybox__backdrop,
.fancybox__container.is-animated.is-closing .fancybox__caption,
.fancybox__container.is-animated.is-closing .fancybox__nav,
.fancybox__container.is-animated.is-closing .carousel__dots,
.fancybox__container.is-animated.is-closing .carousel__button.is-close {
    animation: 0.15s ease both fancybox-fadeOut;
}

.fancybox-fadeOut {
    animation: 0.1s ease both fancybox-fadeOut;
}

.fancybox-zoomInUp {
    animation: 0.2s ease both fancybox-zoomInUp;
}

@keyframes fancybox-fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fancybox-fadeOut {
    to {
        opacity: 0;
    }
}

@keyframes fancybox-zoomInUp {
    from {
        transform: scale(0.97) translate3d(0, 16px, 0);
        opacity: 0;
    }
    to {
        transform: scale(1) translate3d(0, 0, 0);
        opacity: 1;
    }
}

@keyframes fancybox-zoomOutDown {
    to {
        transform: scale(0.97) translate3d(0, 16px, 0);
        opacity: 0;
    }
}

@keyframes fancybox-throwOutUp {
    to {
        transform: translate3d(0, -30%, 0);
        opacity: 0;
    }
}

@keyframes fancybox-throwOutDown {
    to {
        transform: translate3d(0, 30%, 0);
        opacity: 0;
    }
}

.fancybox__carousel .carousel__slide {
    scrollbar-width: thin;
    scrollbar-color: #ccc rgba(255, 255, 255, 0.1);
}

.fancybox__carousel .carousel__slide::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

.fancybox__carousel .carousel__slide::-webkit-scrollbar-track {
    background-color: rgba(255, 255, 255, 0.1);
}

.fancybox__carousel .carousel__slide::-webkit-scrollbar-thumb {
    background-color: #ccc;
    border-radius: 2px;
    box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.2);
}

.fancybox__carousel.is-draggable .fancybox__slide,
.fancybox__carousel.is-draggable .fancybox__slide .fancybox__content {
    cursor: move;
    cursor: grab;
}

.fancybox__carousel.is-dragging .fancybox__slide,
.fancybox__carousel.is-dragging .fancybox__slide .fancybox__content {
    cursor: move;
    cursor: grabbing;
}

.fancybox__carousel .fancybox__slide .fancybox__content {
    cursor: auto;
}

.fancybox__carousel .fancybox__slide.can-zoom_in .fancybox__content {
    cursor: zoom-in;
}

.fancybox__carousel .fancybox__slide.can-zoom_out .fancybox__content {
    cursor: zoom-out;
}

.fancybox__carousel .fancybox__slide.is-draggable .fancybox__content {
    cursor: move;
    cursor: grab;
}

.fancybox__carousel .fancybox__slide.is-dragging .fancybox__content {
    cursor: move;
    cursor: grabbing;
}

.fancybox__image {
    transform-origin: 0 0;
    user-select: none;
    transition: none;
}

.fancybox__html5video,
.fancybox__iframe {
    border: 0;
    display: block;
    height: 100%;
    width: 100%;
    background: transparent;
}

.fancybox-placeholder {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

.fancybox__thumbs {
    flex: 0 0 auto;
    position: relative;
    padding: 0px 3px;
    opacity: var(--fancybox-opacity, 1);
}

.fancybox__container.is-animated[aria-hidden="false"] .fancybox__thumbs {
    animation: 0.15s ease-in backwards fancybox-fadeIn;
}

.fancybox__container.is-animated.is-closing .fancybox__thumbs {
    opacity: 0;
}

.fancybox__thumbs .carousel__slide {
    flex: 0 0 auto;
    width: var(--fancybox-thumbs-width, 96px);
    margin: 0;
    padding: 8px 3px;
    box-sizing: content-box;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    cursor: pointer;
}

.fancybox__thumbs .carousel__slide .fancybox__thumb::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-width: 5px;
    border-style: solid;
    border-color: var(--fancybox-accent-color, rgba(34, 213, 233, 0.96));
    opacity: 0;
    transition: opacity 0.15s ease;
    border-radius: var(--fancybox-thumbs-border-radius, 4px);
}

.fancybox__thumbs .carousel__slide.is-nav-selected .fancybox__thumb::after {
    opacity: 0.92;
}

.fancybox__thumbs .carousel__slide > * {
    pointer-events: none;
    user-select: none;
}

.fancybox__thumb {
    position: relative;
    width: 100%;
    padding-top: calc(100% / (var(--fancybox-thumbs-ratio, 1.5)));
    background-size: cover;
    background-position: center center;
    background-color: rgba(255, 255, 255, 0.1);
    background-repeat: no-repeat;
    border-radius: var(--fancybox-thumbs-border-radius, 4px);
}

.fancybox__toolbar {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 20;
    background: linear-gradient(to top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.006) 8.1%, rgba(0, 0, 0, 0.021) 15.5%, rgba(0, 0, 0, 0.046) 22.5%, rgba(0, 0, 0, 0.077) 29%, rgba(0, 0, 0, 0.114) 35.3%, rgba(0, 0, 0, 0.155) 41.2%, rgba(0, 0, 0, 0.198) 47.1%, rgba(0, 0, 0, 0.242) 52.9%, rgba(0, 0, 0, 0.285) 58.8%, rgba(0, 0, 0, 0.326) 64.7%, rgba(0, 0, 0, 0.363) 71%, rgba(0, 0, 0, 0.394) 77.5%, rgba(0, 0, 0, 0.419) 84.5%, rgba(0, 0, 0, 0.434) 91.9%, rgba(0, 0, 0, 0.44) 100%);
    padding: 0;
    touch-action: none;
    display: flex;
    justify-content: space-between;
    --carousel-button-svg-width: 20px;
    --carousel-button-svg-height: 20px;
    opacity: var(--fancybox-opacity, 1);
    text-shadow: var(--fancybox-toolbar-text-shadow, 1px 1px 1px rgba(0, 0, 0, 0.4));
}

@media all and (min-width: 1024px) {
    .fancybox__toolbar {
        padding: 8px;
    }
}

.fancybox__container.is-animated[aria-hidden="false"] .fancybox__toolbar {
    animation: 0.15s ease-in backwards fancybox-fadeIn;
}

.fancybox__container.is-animated.is-closing .fancybox__toolbar {
    opacity: 0;
}

.fancybox__toolbar__items {
    display: flex;
}

.fancybox__counter {
    min-width: 72px;
    padding: 0 10px;
    line-height: var(--carousel-button-height, 48px);
    text-align: center;
    font-size: 17px;
    font-variant-numeric: tabular-nums;
    -webkit-font-smoothing: subpixel-antialiased;
}

.fancybox__progress {
    background: var(--fancybox-accent-color, rgba(34, 213, 233, 0.96));
    height: 3px;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    transform: scaleX(0);
    transform-origin: 0;
    transition-property: transform;
    transition-timing-function: linear;
    z-index: 30;
    user-select: none;
}

.fancybox__container:fullscreen::backdrop {
    opacity: 0;
}

.fancybox__button--fullscreen g:nth-child(2) {
    display: none;
}

.fancybox__container:fullscreen .fancybox__button--fullscreen g:nth-child(1) {
    display: none;
}

.fancybox__container:fullscreen .fancybox__button--fullscreen g:nth-child(2) {
    display: block;
}

.fancybox__button--slideshow g:nth-child(2) {
    display: none;
}

.fancybox__container.has-slideshow .fancybox__button--slideshow g:nth-child(1) {
    display: none;
}

.fancybox__container.has-slideshow .fancybox__button--slideshow g:nth-child(2) {
    display: block;
}

.card {
    margin-top: 10px;
    width: 100%;
/*     height: 24.5em;
 */ 
    height: 100%;   
    text-align: center;
    transition: all 0.25s;
    overflow: hidden;
    background: #fff no-repeat center;
    border-radius: 0.375em;
}

.postheader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    width: 80%;
}

.card img {
    width: 100%;
}

.bg {
    height: 100%;
   /*  height: 24.5em; */
    text-align: center;
    line-height: 100%;
    position: relative;
    background-color:#2c2a2a;
    background-size: 100% auto;
    background-position: center;
    background-repeat: no-repeat;
}

.frosted-glass {
    /* filter: brightness(50%); */
    width: 100%;
    /* height: 24.5em; */
    height: 236px;
    background: inherit;
}

.containers {
    max-width: 820px;
    margin: 0 auto;
    padding: 0.3rem 0 0.3rem;
    transition: all 0.6s ease;
}

.containers:hover {
    transform: scale(1.05, 1.05);
}

@media only screen and (max-width: 768px) {
    .frosted-glass {
        height: 14.5em;
    }
    .containers:hover {
        transform: scale(1.0, 1.0);
    }
}

.fontstyle {
    text-decoration: none;
    color: #fff;
}

.father {
    height: 100%;
    /* height: 14em; */
    height:105px;
    top: 0.1rem;
    text-align: center;
    line-height: 100%;
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
    background-color: rgb(85 80 80);
}

@media only screen and (max-width: 768px) {
    .father {
        margin-top:50px;
        height: 14em;
        text-align: center;
        line-height: 100%;
        position: relative;
        background-position: center center;
        background-color: rgb(85 80 80);
    }
}

.father img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    margin-top: -6.5em;
}

.lvjing {
    width: 100%;
    height: 100%;
    background: inherit;
    filter: brightness(70%);
    /* margin-top: -6.5em; */
}

.son {
    position: absolute;
    /* top: 29%; */
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    width: 100%;
}

.blog-title {
    font-size: 3.5rem;
    line-height: 2.5;
    /* margin-bottom: 0.75rem; */
    font-weight: 700;
    /* margin-top: 1em; */
}

.blog-description {
    font-size: 1.5rem;
    font-weight: 400;
    display: none;
}

.btn-xy a {
    height: 3.2em;
    width: 8em;
    background-color: #e7e7e7;
    color: black;
    border-radius: 100rem;
    line-height: 3.2em;
    text-align: center;
}

.btn-xy a:hover {
    background-color: #000;
    color: #fff;
}

.m-news-opt {
    max-width: 820px;
    padding: 0em 1em;
    margin: 0 auto;
    transition: all 0.6s ease;
    color:#000;
}

.m-news-opt .opt-item {
    float: left;
    padding: 1em;
    width: 50%;
    margin-left: -1px;
    list-style: none;
    font-size: 1.5em;
    background-color: #f7f7f7;
    border-radius: 0.2em;
}

.m-news-opt .ta-r {
    padding: 1em;
    list-style: none;
    font-size: 1.5em;
    background-color: #f7f7f7;
    text-align: right;
    border-radius: 0.2em;
}

.ellipsis {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.ellipsis a{
    color:#1abc9c;
}

.fix {
    height: 100%;
}

.post_title {
    /* margin-top: 2.5em; */
    padding-bottom: 1em;
    font-size: 2.0em;
    line-height: 1.5em;
}

.post_p {
    font-size: 1.4em;
    line-height: 1.4em;
}

.search {
    padding: 0;
}

.search form {
    position: relative;
    width: 20em;
    margin: 0 auto;
}

@media only screen and (max-width: 768px) {
    .search {
        padding-bottom: 1em;
    }
    .search form {
        position: relative;
        width: 75%;
        margin: 0 auto;
    }
}

.d3 form {
    background: #f7f7f7;
}

.d3 input,
.d3 button {
    border: none;
    outline: none;
    background: rgba(238, 238, 238, 0.95);
}

.d3 input {
    width: 100%;
    height: 42px;
    padding-left: 1em;
}

.d3 button {
    height: 42px;
    width: 42px;
    position: absolute;
    top: 0;
    right: 0;
    cursor: pointer;
}

.d3 button:before {
    content: "搜索";
    font-size: 16px;
    color: #000;
}

.tags_culd_list {
    list-style: none;
    font-size: 1.5em;
}

.tags_culd_list li {
    display: inline-block;
    margin-right: 8px;
    margin-bottom: 1em;
}

.tags_culd_list li a:before {
    content: '#';
    display: inline-block;
    position: relative;
    margin-right: 3px;
}

#page_achives a {
    color: #000;
}

.page-ach li {
    margin-bottom: 0.2em;
}

.license {
    max-width: 820px;
    margin: 0 auto;
    margin-top: 2em;
    transition: all 0.6s ease;
}

.post-copyright {
    font-size: 1.65em;
    margin: 1em;
    margin-bottom: 2em;
    padding: 10px;
    border-left: 4px solid #000;
    background-color: rgba(220, 220, 220, 0.1);
    list-style: none;
    word-break: break-all;
    position: relative;
    overflow: hidden;
    line-height:1.5em;
}

.post-copyright li {
    display: list-item;
    text-align: -webkit-match-parent;
}

.post-copyright a {
    color: #1abc9c;
    text-decoration: none;
    transition: color 0.1s;
}

.post_praise {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.post_praise_btn {
    border: 1px solid #ccc;
    line-height: 36px;
    text-align: center;
    height: 36px;
    display: block;
    border-radius: 4px;
    -webkit-transition-duration: 0.4s;
    transition-duration: 0.4s;
    background-color: #fff;
    color: #999;
    margin: 0 auto;
    padding: 0 25px;
}

.post_praise_btn .smanll {
    margin: 0 0.25rem;
    font-size: 80%;
}

.post_praise button:hover {
    color: #f77b83;
    border-color: #f77b83;
    outline-style: none;
}

a[data-fancybox] img {
    cursor: zoom-in;
}

.fancybox__caption {
    text-align: center;
}

button {
    border: none;
    outline: none;
}

.text:hover {
    border: 1px solid #35B995;
}

p.word:before {
    content: "[";
    margin-right: 5px;
    color: #000;
    position: relative;
}

p.word:after {
    content: "]";
    margin-left: 5px;
    color: #000;
    position: relative;
}

p.word {
    font-size: 21px !important;
    display: table;
    margin: 1em auto 1em;
    color: #737373;
    font-weight: 600;
}

.protected p:nth-child(2) {
    display: table;
    margin: 0 auto;
}

@media (max-width: 860px) {
    .protected p:nth-child(2) {
        margin: 1em auto 1em;
    }
}

.protected p:nth-child(2) > input:nth-child(1) {
    width: 189px;
    height: 42px;
    float: left;
    border-radius: 5px 0 0 5px;
    padding: 0 0 0 10px;
    border-color: #000;
    outline: none;
}

.protected .submit {
    width: 70px;
    height: 42px;
    color: #fff;
    background: #000;
    border-radius: 0 5px 5px 0;
    box-shadow: none;
    border: 0;
    text-shadow: none;
    outline: none;
}

.protected p:nth-child(2) > input:nth-child(2) {
    width: 70px;
    height: 42px;
    color: #fff;
    background: #000;
    border-radius: 0 5px 5px 0;
    box-shadow: none;
    border: 0;
    text-shadow: none;
    outline: none;
}

#QR {
    padding-top: 20px;
}

#QR a {
    border: 0;
}

#QR img {
    width: 10em;
    max-width: 100%;
    display: inline-block;
    margin: 0.8em 2em 0 2em;
}

#rewardButton {
    border: 1px solid #ccc;
    line-height: 36px;
    text-align: center;
    height: 36px;
    display: block;
    border-radius: 4px;
    -webkit-transition-duration: 0.4s;
    transition-duration: 0.4s;
    background-color: #fff;
    color: #999;
    margin: 0 auto;
    padding: 0 25px;
}

#rewardButton:hover {
    color: #f77b83;
    border-color: #f77b83;
    outline-style: none;
}

#agree-btn:hover {
    color: #f77b83;
    border-color: #f77b83;
    outline-style: none;
}

#rewardButton {
    color: #000;
    border-radius: 50px;
    cursor: pointer;
}

#agree-btn {
    color: #000;
    border-radius: 50px;
    cursor: pointer;
}

.error-message {
    text-align: center;
}

.error-message h3 {
    font-size: 2.5em;
    font-weight: 700;
    margin-top: 2.5em;
    margin-bottom: 2.5em;
    color: #030749;
}

.error-message p {
    font-size: 1.5em;
    font-weight: 700;
    margin: 1em;
    margin-top: 2em;
    color: #030749;
}

.error-message form {
    width: 30em;
    margin-bottom: 3em;
}

/* 新增头部布局样式 */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    z-index: 999;
    width: 100%;
    max-width: 100%;
}

.nav-logo-container {
    flex: 1;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    min-width: 150px;
    white-space: nowrap;
    overflow: hidden;
/*     text-overflow: ellipsis;
 */}

.menu.topnav {
    flex: 2;
    display: flex;
    justify-content: flex-start; /* 改为左对齐 */
    overflow: hidden;
}

.nav-menu {
    display: flex;
    flex-wrap: nowrap; /* 确保不换行 */
    justify-content: flex-start;
    align-items: center;
    margin: 0;
    padding: 0;
    gap: 1.5rem;
    overflow-x: auto; /* 允许横向滚动 */
    white-space: nowrap; /* 确保不换行 */
    -ms-overflow-style: none; /* IE 和 Edge 不显示滚动条 */
    scrollbar-width: none; /* Firefox 不显示滚动条 */
}

/* 隐藏WebKit浏览器的滚动条，但保留功能 */
.nav-menu::-webkit-scrollbar {
    display: none;
}

.nav-item {
    margin-left: 0;
    white-space: nowrap;
    flex-shrink: 0; /* 防止项目被压缩 */
}

.nav-link {
    font-size: 1.6rem;
    font-weight: 400;
    color: #475569;
    text-align: center;
    padding: 0.5rem 0.75rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: #482ff7;
    background-color: rgba(72, 47, 247, 0.05);
}

/* 确保社交媒体图标显示 */
.social-icons {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.social-icon {
    font-size: 2rem; /* 增大图标尺寸 */
    color: #333;
    transition: color 0.3s ease;
    display: inline-flex; /* 改为inline-flex确保图标正确显示 */
    align-items: center;
    justify-content: center;
    width: 2rem; /* 固定宽度 */
    height: 2rem; /* 固定高度 */
    text-align: center;
}

.social-icon i {
    display: inline-block; /* 确保图标正确显示 */
}

.search.d3 {
    margin-right: 1rem;
}

/* 修改搜索框样式 */
.d3 form {
    display: flex;
    background: #f7f7f7;
    border-radius: 4px;
}

.d3 input {
    width: 180px;
    height: 36px;
    padding-left: 1em;
    border-radius: 4px 0 0 4px;
}

.d3 button {
    height: 36px;
    width: 60px;
    position: relative;
    border-radius: 0 4px 4px 0;
    background: #eee;
}

/* 响应式调整 */
@media only screen and (max-width: 960px) {
    .nav-logo {
        margin-left: 0;
    }
    
    .nav-menu {
        gap: 2rem;
    }
    
    .nav-item {
        margin-left: 0;
    }
    
    .d3 input {
        width: 140px;
    }
}

@media only screen and (max-width: 768px) {
    .navbar {
        padding: 1rem;
    }
    
    .menu.topnav {
        position: fixed;
        left: -100%;
        top: 8rem;
        flex-direction: column;
        background-color: #f7f7f7;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        z-index: 99;
    }
    
    .menu.topnav.active {
        left: 0;
    }
    
    .nav-menu {
        flex-direction: column;
    }
    
    .nav-item {
        margin: 1rem 0;
    }
    
    .hamburger {
        display: block;
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .nav-right {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: #f7f7f7;
        padding: 1rem;
        z-index: 999;
    }
    
    .menu.topnav.active + .nav-right {
        display: flex;
        flex-direction: column;
    }
    
    .social-icons {
        margin-top: 1rem;
        justify-content: center;
    }
    
    .search.d3 {
        width: 100%;
        margin-right: 0;
    }
    
    .d3 form {
        width: 100%;
    }
    
    .d3 input {
        width: 100%;
    }
}

/* 修改导航菜单样式，适应分类平铺展示 */
.nav-menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0;
    gap: 1.5rem;
}

.nav-item {
    margin-left: 0;
    white-space: nowrap;
}

.nav-link {
    font-size: 1.6rem;
    font-weight: 400;
    color: #475569;
    text-align: center;
    padding: 0.5rem 0.75rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: #482ff7;
    background-color: rgba(72, 47, 247, 0.05);
}

/* 优化移动端菜单样式 */
@media only screen and (max-width: 768px) {
    .menu.topnav {
        position: fixed;
        top: 20rem;
        flex-direction: column;
        background-color: #343232;
        width: 100%;
        text-align: center;
        transition: 0.3s;
/*         box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
 */        z-index:99;
        padding: 1rem 0;
        max-height: 80vh;
        overflow-y: auto;
    }
    
    .menu.topnav.active {
        left: 50%;
    }
    
    .nav-menu {
        flex-direction: column;
        flex-wrap: nowrap;
        gap: 0;
    }
    
    .nav-item {
        width: 100%;
        margin: 0;
        border-bottom: 1px solid #f3f4f6;
    }
    
    .nav-link {
        display: block;
        padding: 1.5rem 0;
        width: 100%;
        border-radius: 0;
    }
}

/* 头部背景颜色修改 */
#headerTop {
    position: fixed;
    top: 0;
    left: 0px;
    z-index: 1000;
    background-color: rgba(52, 50, 50, 1); /* 修改背景色 */
    width: 100%;
}

#headerTop.sticky {
    background-color: rgba(52, 50, 50, 1); /* 滚动时背景色加深 */
    z-index: 1000;
}

/* 导航菜单布局调整 */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.7rem 1.5rem; /* 压缩整体高度 */
    z-index: 999;
    width: 100%;
    max-width: 100%;
}

/* 修改LOGO样式 - 改为白色并增大字体 */
.nav-logo-container {
    flex: 1;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    min-width: 150px; /* 缩短最小宽度 */
    white-space: nowrap;
    overflow: hidden;
/*     text-overflow: ellipsis;
 */}

.nav-logo {
    font-size: 2.2rem; /* 增大logo字体 */
    font-weight: 500;
    color: #ffffff; /* 保持纯白色 */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3); /* 增强文字阴影，提高可读性 */
    letter-spacing: 0.5px; /* 添加字间距，提高清晰度 */
}

/* 中间导航菜单调整 */
.menu.topnav {
    flex: 2;
    display: flex;
    justify-content: flex-start;
    overflow: hidden;
    max-width: 50%; /* 限制最大宽度 */
}

.nav-menu {
    display: flex;
/*     flex-wrap: nowrap;
 */    justify-content: flex-start;
    align-items: center;
    background-color:rgba(52, 50, 50);
    margin: 0;
    padding: 0;
    gap: 1rem; /* 缩小间隔 */
    overflow-x: auto;
    white-space: nowrap;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.nav-menu::-webkit-scrollbar {
    display: none;
}

/* 减小分类文字尺寸 */
.nav-item {
    margin-left: 0;
    white-space: nowrap;
    flex-shrink: 0;
}

.nav-link {
    font-size: 1.6rem; /* 减小字体大小 */
    font-weight: 400;
    color: #e0e0e0; /* 更亮的文字颜色 */
    text-align: center;
    padding: 0.3rem 0.6rem; /* 缩小内边距 */
    border-radius: 4px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: #ffffff; /* 悬停时为白色 */
    background-color: rgba(255, 255, 255, 0.1); /* 半透明白色背景 */
}

/* 右侧搜索和社交媒体图标区域调整 */
.nav-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 0.8rem; /* 缩小间隔 */
    min-width: 180px; /* 确保最小宽度适合内容 */
    white-space: nowrap;
}

/* 社交媒体图标调整 */
.social-icons {
    display: flex;
    gap: 0.8rem; /* 缩小图标间隔 */
    align-items: center;
}

.social-icon {
    font-size: 2rem; /* 减小图标尺寸 */
    color: #e0e0e0; /* 更亮的图标颜色 */
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    text-align: center;
    background: #2b2626;
    border-radius: 100%;
}

.social-icon:hover {
    color: #ffffff; /* 悬停时为白色 */
}

/* 搜索框调整 */
.search.d3 {
    margin-right: 0.5rem;
    position: relative;
}

.search-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #ffffff;
}

.search-toggle:hover {
    background: rgba(255, 255, 255, 0.25);
}

.search-toggle i {
    font-size: 14px;
}

.search-form-container {
    position: absolute;
    right: 0;
    top: 0;
    height: 32px;
    width: 32px; /* 初始宽度，与图标相同 */
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    opacity: 0;
    visibility: hidden;
}

.search-form-container.active {
    width: 180px; /* 展开后的宽度 */
    opacity: 1;
    visibility: visible;
}

.d3 form {
    display: flex;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px; /* 椭圆形 */
    height: 32px;
    width: 100%;
}

.d3 input {
    width: 100%;
    height: 32px;
    padding: 0 0.8em;
    border-radius: 16px; /* 椭圆形 */
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 0.9em;
    border: none;
}

/* 移除搜索按钮（使用回车提交） */
.d3 button {
    display: none;
}

@media only screen and (max-width: 768px) {
    .search.d3{
        display: block;
    }
    .d3 input {
        width: 75%;
    }
    .d3 button {
        display: block;
        border-radius: 16px;
        background-color: rgba(255, 255, 255, 0.1);
        height: 32px;
        width: 25%;
    }
}

.d3 input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.d3 input:focus {
    outline: none;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.3);
}



#page-jump{
    width:60px;
    height:35px;
    border: 1px solid  #d1d2d3;
    background-color: rgba(52, 50, 50, 1);
    color:#d1d2d3;
}

#page-jump-btn{
    padding:0 10px;
    height:35px;
}

.ad-banner img{
    width: 820px;
    height: 82px;
}

#page-info{
    width: 60%;
    font-size:18px;
    float:left;
    text-align: center;
    height: 100;
}

.back-home-wap{
    display: none;
    font-size: 16px;
}
.back-home-wap a{
    color: white;
}
/* 适配移动端 */
@media only screen and (max-width: 768px) {
    .nav-logo-container {
        justify-content: center;
    }

    .back-home-wap{
        display: block;
    }
    .ad-banner img{
        width: 100%;
        max-height: 82px;
    }
    .search-form-container.active {
        width: 140px;
    }
    
    .nav-right {
        position: fixed;
        top: -70px;
        /* bottom: 0; */
        margin-top:165px;
        left: 0;
        width: 100%;
        background-color: rgba(52, 50, 50, 0.95); /* 保持配色一致 */
        padding: 0.7rem;
        z-index: 9;
        justify-content: center;
        box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
    }
    .nav-right .social-icons{
        display: none;
        position: fixed;
        bottom: 0;
        width: 100%;
        z-index: 999;
        background-color: rgba(52, 50, 50, 0.95); /* 保持配色一致 */
        padding: 0.7rem;
        justify-content: center;
    }
    article{
        position:static;
        /* margin-top: 50px !important;; */
    }
    .clear-50{
        width: 100%;
        height:50px;
    }
    
    .hamburger .bar {
        background-color: #e0e0e0; /* 汉堡菜单颜色改为亮色 */
    }


}


#article-title {
    text-align: center;
    padding:1.2em;
}
#article-title a {
    color:rgb(244, 244, 244);
}
.OwO-logo svg{
    fill:#fff !important;
}
.vedit .vrow{
    width:50%;
    float:left;
    line-height: 1em !important;
}
.vedit .vrow .vicon{
    height: 2em !important;
}
.vedit .vsubmit{
    background: #1abc9c !important;
}
#search{
    background: none;
}
.comment-list img{
    min-height: 0;
}