@charset  "UTF-8";

@import url('https://fonts.font.im/css2?family=Exo 2:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

@keyframes floating {
    0% { transform: translate(0,  -7px); }
    50%  { transform: translate(0, 7px); }
    100%   { transform: translate(0, -7px); }
}

@keyframes showbanner {
    0% {
        top: 0;
        background: var(--heo-theme);
    }
    40%{
        top: 44px;
    }
    80% {
        background: var(--heo-theme);
    }
    100% {
        background: var(--heo-secondbg);
    }
}

@keyframes showbannertext {
    0% {
        color: var(--heo-white);
    }
    80% {
        color: var(--heo-white);
    }
    100% {
        color: var(--heo-fontcolor);
    }
}

@keyframes bannerImgFadeIn {
    0% {
        filter: brightness(0) invert(1);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        filter: brightness(1) invert(0);
        opacity: 1;
    }
}

/* 全局允许文本选择 */
* {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

/* 特定元素禁用文本选择 */
img,
.nav-item,
.pagination-btn,
.page-number,
.code-copy-btn,
.line-numbers-rows {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

body {
    background: var(--heo-background);
    display: flex;
    margin: 0;
    padding: 0;
    flex-direction: column;
    font-family: 'Exo 2', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    align-items: center;
    position: relative;
    overflow-x: hidden;
    min-height: 100vh;
    width: 100%;
}

html {
    margin: 0;
    padding: 0;
    background: var(--heo-background);
    min-height: 100vh;
    width: 100%;
}

html::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 255, 0, 0.03) 0%, transparent 70%),
        radial-gradient(circle at 80% 70%, rgba(0, 255, 0, 0.02) 0%, transparent 70%),
        radial-gradient(circle at 40% 80%, rgba(0, 255, 0, 0.03) 0%, transparent 70%);
    z-index: -3;
    pointer-events: none;
}


body .need-padding {
    max-width: 1200px;
    width: 60%;
}

a {
    text-decoration:none;
    -webkit-user-drag: none;
}

/* span 元素允许文本选择 */

sup {
    font-size: 12px;
    background: var(--heo-green);
    color: var(--heo-white);
    padding: 2px 4px;
    border-radius: 4px;
    margin-left: 4px;
}

sup.hot {
    background: var(--heo-red);
}

img {
    user-select:none;
    -webkit-user-drag: none;
}

.nav {
    display: flex;
    width: 100%;
    left: 0;
    top: 0;
    position: fixed;
    justify-content: center;
    flex-direction: column;
    background: rgba(26, 26, 26, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    align-items: center;
    z-index: 9000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    min-height: 44px;
}

/* 首页初始状态 - 隐藏导航栏 */
.nav.home-initial {
    transform: translateY(-100%);
    opacity: 0;
}

/* 首页动画完成后显示 */
.nav.home-loaded {
    transform: translateY(0);
    opacity: 1;
    background: rgba(26, 26, 26, 0.9);
}

/* 滚动时的状态 */
.nav.scrolled {
    transform: translateY(0);
    opacity: 1;
    background: rgba(26, 26, 26, 0.95);
}

/* 非首页默认显示 */
.nav.always-visible {
    transform: translateY(0);
    opacity: 1;
    background: rgba(26, 26, 26, 0.95);
}

.nav.scrolled .nav-content {
    animation: slideDown 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideDown {
    from {
        transform: translateY(-10px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideDownBanner {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideUpBanner {
    from {
        transform: translateY(0);
        opacity: 1;
    }
    to {
        transform: translateY(-20px);
        opacity: 0;
    }
}

.nav-content {
    max-width: 1200px;
    width: 90%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
    background: transparent;
    z-index: 2;
    transition: ease-in-out 0.3s;
}

.nav-right .nav-menu {
    display: none;
}

a.site-logo {
    display: flex;
    align-items: center;
}

img.site-logo-img {
    width: 38px;
    filter: brightness(0) invert(1);
}

.menu-list {
    display: none;
}

.banner-img {
    width: 200px;
    max-width: 100%;
    pointer-events:none;
    object-fit:cover;
    border-radius: 10px;
    transform: translate(0,  -7px);
    position: relative;
    z-index: 2;
    filter: brightness(0) invert(1);
    opacity: 0;
    animation: bannerImgFadeIn 3.2s ease-out 0.5s forwards;
}

span.site-name {
    color: var(--heo-white);
    font-size: 16px;
    font-weight: 700;
    margin-left: 8px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

a.nav-item {
    color: var(--heo-white);
    opacity: 0.8;
    transition: all 0.3s ease;
    font-size: 16px;
    font-weight: 700;
    margin-left: 12px;
    position: relative;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 6px;
}

a.nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, rgba(0, 255, 0, 0.8), rgba(0, 150, 255, 0.8));
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

a.nav-item:not(:first-child)::before {
    content: '|';
    position: absolute;
    left: -8px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--heo-white);
    opacity: 0.4;
    font-size: 12px;
}

a.nav-item:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
}

a.nav-item:hover::after {
    width: 80%;
}

.nav-right {
    display: flex;
    align-items: center;
}

/* 导航下拉菜单样式 */
.nav-dropdown {
    position: relative;
    display: inline-block;
}

.nav-dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--heo-white);
    opacity: 0.8;
    transition: all 0.3s ease;
    font-size: 16px;
    font-weight: 700;
    margin-left: 12px;
    position: relative;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 6px;
}

.nav-dropdown-trigger::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, rgba(0, 255, 0, 0.8), rgba(0, 150, 255, 0.8));
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-dropdown-trigger:not(:first-child)::before {
    content: '|';
    position: absolute;
    left: -8px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--heo-white);
    opacity: 0.4;
    font-size: 12px;
}

.nav-dropdown-trigger:hover,
.nav-dropdown:hover .nav-dropdown-trigger {
    opacity: 1;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
}

.nav-dropdown-trigger:hover::after,
.nav-dropdown:hover .nav-dropdown-trigger::after {
    width: 80%;
}

.nav-dropdown-icon {
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .nav-dropdown-icon {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 180px;
    background: var(--heo-secondbg);
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 10000;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* 防止下拉菜单超出右边界 */
.nav-dropdown:last-child .nav-dropdown-menu {
    right: 0;
    left: auto;
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown-item {
    display: block;
    padding: 12px 20px;
    color: var(--heo-fontcolor);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    border-radius: 6px;
    margin: 4px 8px;
}

.nav-dropdown-item:hover {
    background: rgba(75, 108, 183, 0.2);
    color: var(--heo-theme);
    transform: translateX(5px);
}

.nav-dropdown-item:first-child {
    margin-top: 8px;
}

.nav-dropdown-item:last-child {
    margin-bottom: 8px;
}

/* 导航通知横幅样式 */
.nav-banner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, var(--heo-theme), rgba(75, 108, 183, 0.9));
    color: var(--heo-white);
    text-align: center;
    padding: 8px 0;
    z-index: 9999;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    animation: slideDownBanner 0.5s ease-out;
}

/* 当有nav-banner时，调整导航栏位置 */
body:has(.nav-banner) .nav {
    top: 36px;
}

.nav-banner-text {
    color: var(--heo-white);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 4px 8px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.nav-banner-text:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

@keyframes slideDownBanner {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideUpBanner {
    from {
        transform: translateY(0);
        opacity: 1;
    }
    to {
        transform: translateY(-100%);
        opacity: 0;
    }
}

/* 移动端导航子项样式 */
.nav-sub-item {
    padding-left: 40px !important;
    font-size: 14px !important;
    opacity: 0.8;
}

.mobile-nav-section {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.first-stack {
    display: flex;
    justify-content: space-between;
    margin-top: 200px;
    margin-bottom: 60px;
    align-items: center;
    padding: 80px 60px;
    position: relative;
    overflow: hidden;
}

/* 通知横幅样式 */

.notice-banner {
    width: 60%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px 0;
    background: #cccccc;
    margin: 100px auto;
    box-shadow: var(--heo-shadow-theme);
    animation: noticeSlideIn 0.5s ease-out 3.2s both;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.5s ease;
}

.notice-banner:hover {
    opacity: 1;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.notice-content {
    display: flex;
    align-items: center;
    justify-content: center;
}

.notice-text {
    color: #000000;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 8px;
    position: relative;
}

.notice-text::before {
    content: '📢';
    font-weight: bold;
    font-weight: 700;
    margin-right: 8px;
    color: #000000;
}

.notice-text:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
}

@keyframes noticeSlideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}



.first-stack::before {
    display: none;
}

.first-stack::after {
    display: none;
}

.left-Introduce {
    position: relative;
    z-index: 2;
    flex: 1;
    margin-right: 40px;
}

.right-stack {
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.title-group {
    display: flex;
    flex-direction: column;
    font-size: 40px;
    font-weight: 400;
    color: #ffffff;
    line-height: 61px;
    font-weight: bold;
    position: relative;
    z-index: 2;
    opacity: 0;
    animation: fadeInTitle 0.8s ease-in forwards;
}

.discription {
    display: block;
    width: 100%;
    max-width: 500px;
}

@keyframes fadeInTitle {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

span.discription-text {
    display: inline-block;
    font-size: 25px;
    font-weight: 400;
    color: #cccccc;
    line-height: 28px;
    margin-top: 28px;
    position: relative;
    z-index: 2;
    font-family: 'Courier New', monospace;
    overflow: hidden;
    white-space: nowrap;
    border-right: 2px solid #00ff00;
    width: 0;
    animation: 
        typewriter 2s steps(26, end) 1s forwards,
        blink-cursor 1s infinite;
}

span.discription-text::before {
    content: '$ ';
    color: #00ff00;
    font-weight: bold;
}

.shell-prompt {
    color: #00ff00;
    font-weight: bold;
}

@keyframes typewriter {
    from {
        width: 0;
    }
    to {
        width: 26ch; /* 约26个字符的宽度 */
    }
}

@keyframes blink-cursor {
    from, to {
        border-color: transparent;
    }
    50% {
        border-color: #cccccc;
    }
}

a.about-button {
    display: flex;
    padding: 12px 36px;
    background: var(--heo-theme);
    color: var(--heo-white);
    border-radius: 29px;
    box-shadow: 0px 12px 12px -9px var(--heo-theme-op);
    margin-top: 64px;
    width: fit-content;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    position: relative;
    z-index: 2;
    font-weight: bold;
    opacity: 0;
    transform: translateY(20px);
    animation: buttonFadeIn 1.2s ease-out 1.5s forwards, buttonPulse 2s ease-in-out 3s infinite;
}

/* 按钮淡入动画 */
@keyframes buttonFadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    50% {
        opacity: 0.7;
        transform: translateY(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 按钮呼吸灯动画 */
@keyframes buttonPulse {
    0%, 100% {
        opacity: 1;
        box-shadow: 0px 12px 12px -9px var(--heo-theme-op);
    }
    50% {
        opacity: 0.8;
        box-shadow: 0px 12px 20px -6px var(--heo-theme-op), 0 0 20px rgba(75, 108, 183, 0.3);
    }
}

a.about-button:hover {
    background: var(--heo-theme-op-deep);
    box-shadow: 0px 16px 20px -6px var(--heo-theme-op);
    transform: translateY(-4px) scale(1.02);
    color: var(--heo-white);
    opacity: 0.9;
    animation-play-state: paused; /* 悬停时暂停呼吸灯动画 */
}

a.about-button:active {
    transform: translateY(-1px) scale(0.98);
    opacity: 0.8;
    transition: all 0.1s ease;
}

.product-group {
    margin: 0;
    width: 100%;
}

h2.group-title {
    color: var(--heo-fontcolor);
    font-size: 32px;
    margin-bottom: 0;
}

.group-description {
    font-size: 14px;
    color: var(--heo-secondtext);
}

.group-items {
    display: flex;
    margin-top: 60px;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;

}

.group-item {
    display: flex;
    width: calc(100% / 2);
    margin-bottom: 60px;
}

a.group-item-icon {
    width: 122px;
    height: 122px;
}

img.group-item-icon-img {
    width: 122px;
    height: 122px;
    border-radius: 28px;
}

.group-info {
    display: flex;
    flex-direction: column;
}

.group-info-group {
    margin-left: 36px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 122px;
}

.group-info-group a.title {
    color: var(--heo-fontcolor);
    font-size: 24px;
    line-height: 1;
    margin-bottom: 8px;
    width: fit-content;
}

.group-info-group a.discription {
    color: var(--heo-fontcolor);
    font-size: 14px;
    width: fit-content;
}

a.linkbutton {
    padding: 8px 24px;
    display: flex;
    background: var(--heo-card-btn-bg);
    color: var(--heo-white);
    font-size: 16px;
    box-shadow: 0px 12px 12px -9px rgba(0,0,0,0.29);
    border-radius: 21px;
    transition: ease-in-out 0.3s;
    width: fit-content;
    white-space: nowrap;
}

a.linkbutton:hover {
    background: var(--heo-main);
    box-shadow: 0px 12px 12px -9px rgba(5, 51, 137, 0.29);
}

.footer {
    padding: 30px 0 30px 0;
    display: flex;
    justify-content: center;
    width: 100%;
    background: var(--heo-secondbg);
    align-items: center;
}

.footer .info {
    font-size: 15px;
    opacity: 0.6;
    color: var(--heo-fontcolor);
    transition: ease-in-out 0.3s;
    margin: 4px 0;
}

.footer a.info:hover {
    opacity: 1;
}

.footer .info-group .info:not(:first-child) {
    margin-left: 4px;
}

.footer-content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.footer-logo {
    display: flex;
    align-items: center;
}

.footer-logo-img {
    width: 120px;
    height: 120px;
    opacity: 0.9;
    transition: all 0.3s ease;
    margin-right: 20px;
    filter: brightness(1);
}

.footer-logo-img:hover {
    opacity: 0.8;
    transform: scale(1.1);
}

/* banner */

.product-banner {
    background-image: linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%);
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 94px 0 60px 0;
    height: fit-content;
    margin: 50px auto 0 auto;
}

.banner-info {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.product-banner .tips {
    color: var(--heo-orange);
    font-size: 14px;
}

.product-banner span.title {
    font-size: 48px;
    color: var(--heo-white);
    font-weight: bold;
    text-align: center;
    margin: 0 0 25px 0;
}

.banner-discription-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0.8;
    margin: 24px 0 32px 0;
}

.product-banner span.description {
    font-size: 20px;
    color: var(--heo-white);
    text-align: left;
}

.link-group {
    margin-bottom: 24px;
    display: flex;
    align-items: center;
}

a.primary-button {
    padding: 8px 26px;
    background: var(--heo-theme);
    color: var(--heo-white);
    border-radius: 26px;
    transition: ease-in-out 0.3s;
    white-space: nowrap;
}

a.primary-button:hover {
    background: var(--heo-white);
    color: var(--heo-fontcolor);
}

a.second-link {
    color: var(--heo-white);
    opacity: 0.6;
    font-size: 14px;
    margin-left: 12px;
    transition: ease-in-out 0.3s;
}

a.second-link:hover {
    opacity: 1;
}

.banner-pic {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    height: 400px;
    overflow: hidden;
}

.banner-pic-img {
    max-width: 968px;
    width: 90%;
    margin: auto;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.inline-word {
    word-break: keep-all;
    white-space: nowrap;
}


@media screen and (max-width: 1200px) {
    .group-item {
        width: 50%;
    }
}

@media screen and (max-width: 768px) {
    body::before {
        font-size: 8px;
        line-height: 1.2;
        columns: 15;
        column-gap: 20px;
        letter-spacing: 1px;
        animation-duration: 0.2s;
        left: 8px;
        padding: 10px;
    }

    body::after {
        font-size: 8px;
        line-height: 1.2;
        columns: 12;
        column-gap: 25px;
        letter-spacing: 1px;
        animation-duration: 0.15s;
        padding: 10px;
    }

    .first-stack {
        margin-bottom: 20px;
        padding: 40px 20px;
    }

    .notice-banner {
        margin: 40px auto;
        padding: 12px 0;
    }

    .notice-banner-firstwarp {
        margin: 30px auto 0 auto;
        padding: 12px 15px;
        border-radius: 8px;
        animation: noticeEntranceEffect 1.8s cubic-bezier(0.25, 0.1, 0.25, 1) 3s forwards;
    }

    .notice-banner-firstwarp .notice-text {
        font-size: 14px;
        padding: 6px 12px;
        animation: noticeTextSlideIn 1.4s cubic-bezier(0.25, 0.1, 0.25, 1) 3.6s forwards;
    }

    .notice-banner-firstwarp .notice-text::before {
        font-size: 16px;
        margin-right: 8px;
        animation: noticeTextSlideIn 1.2s cubic-bezier(0.25, 0.1, 0.25, 1) 4s forwards;
    }

    .notice-text {
        font-size: 13px;
        padding: 6px 12px;
    }

    .notice-text::before {
        font-size: 14px;
        margin-right: 6px;
    }

    .left-Introduce {
        margin-bottom: 40px;
        margin-right: 0;
    }

    a.about-button {
        margin-top: 40px;
    }

    .group-items {
        margin-top: 30px;
    }

    body .need-padding {
        width: 80%;
    }

    .first-stack {
        flex-direction: column;
        margin-top: 120px;
    }

    .product-group {
        margin:  0px;
    }

    .group-item {
        width: 100%;
    }

    .footer {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .footer .info {
        margin-bottom: 0;
    }

    .footer-logo-img {
        width: 125px;
        height: 125px;
    }

    .show-menu .nav {
        background: rgba(26, 26, 26, 0.95);
        backdrop-filter: blur(15px);
        transform: translateY(0);
        opacity: 1;
    }

    .show-menu .nav-content {
        background: transparent;
    }

    .nav-right .nav-item {
        display: none;
    }

    .nav-right .nav-menu {
        display: flex;
        color: var(--heo-white);
        padding: 8px 0 8px 8px;
    }

    .product-banner span.title {
        font-size: 40px;
    }

    .menu-list {
        display: flex;
        position: fixed;
        flex-direction: column;
        top: 44px;
        background: rgba(26, 26, 26, 0.95);
        backdrop-filter: blur(15px);
        width: 100%;
        height: 0%;
        z-index: 8000;
        align-items: center;
        overflow: hidden;
        transition: ease-in-out 0.3s;
        opacity: 0;
        margin-top: 20px;
    }

    /* 当有nav-banner时调整移动端菜单位置 */
    body:has(.nav-banner) .menu-list {
        top: 80px;
    }

    .show-menu .menu-list {
        height: 100%;
        opacity: 1;
    }

    .menu-list a.nav-item {
        padding: 8px 8px;
        font-size: 16px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        width: 90%;
        margin-left: 0;
    }

    .menu-list a.nav-item::before {
        display: none;
    }

    .show-menu .menu-list a.nav-item {
        padding: 12px 8px;
    }

    .banner-pic {
        margin-top: 20px;
        height: 200px;
    }

    .product-banner {
        padding-top: 60px;
    }

    h2.group-title {
        margin: 0;
    }

    a.linkbutton {
        margin-left: 0px;
    }

    .banner-img {
        height: 100%;
    }
}

@media screen and (max-width: 375px) {
    body::before {
        font-size: 6px;
        line-height: 1.1;
        columns: 10;
        column-gap: 15px;
        letter-spacing: 0.5px;
        animation-duration: 0.25s;
        left: 5px;
        padding: 8px;
    }

    body::after {
        font-size: 6px;
        line-height: 1.1;
        columns: 8;
        column-gap: 20px;
        letter-spacing: 0.5px;
        animation-duration: 0.2s;
        padding: 8px;
    }

    .first-stack {
        margin-bottom: 20px;
        padding: 30px 15px;
    }

    .notice-banner {
        margin: 30px auto;
        padding: 10px 0;
    }

    .notice-banner-firstwarp {
        margin: 25px auto 0 auto;
        padding: 10px 12px;
        border-radius: 6px;
        animation: noticeEntranceEffect 1.5s cubic-bezier(0.25, 0.1, 0.25, 1) 3.2s forwards;
    }

    .notice-banner-firstwarp .notice-text {
        font-size: 13px;
        padding: 5px 10px;
        animation: noticeTextSlideIn 1.2s cubic-bezier(0.25, 0.1, 0.25, 1) 3.8s forwards;
    }

    .notice-banner-firstwarp .notice-text::before {
        font-size: 14px;
        margin-right: 6px;
        animation: noticeTextSlideIn 1s cubic-bezier(0.25, 0.1, 0.25, 1) 4.2s forwards;
    }

    .notice-text {
        font-size: 12px;
        padding: 5px 10px;
    }

    .left-Introduce {
        margin-bottom: 40px;
        margin-right: 0;
    }

    .title-group {
        font-size: 32px;
        line-height: 44px;
    }

    span.discription-text {
        font-size: 18px;
        line-height: 26px;
        width: 0;
        animation: 
            typewriter-mobile 2s steps(15, end) 1s forwards,
            blink-cursor 1s infinite;
    }

    @keyframes typewriter-mobile {
        from {
            width: 0;
        }
        to {
            width: 15ch; /* 约15个字符的宽度 */
        }
    }

    a.about-button {
        margin-top: 40px;
    }

    .group-items {
        margin-top: 30px;
    }

    .group-item {
        flex-direction: row;
    }
    .group-info-group {
        margin-left: 20px;
        flex-direction: row;
        width: 100%;
        height: 45px;
    }

    .group-info-button {
        margin-top: 0px;
    }

    .product-group {
        margin: 0;
    }

    img.group-item-icon-img,a.group-item-icon {
        width: 40px;
        height: 40px;
        border-radius: 12px;
    }

    .product-banner {
        padding-top: 40px;
    }

    .banner-pic {
        margin-top: 20px;
        height: 150px;
    }

    h2.group-title {
        margin: 0;
    }

    a.linkbutton {
        margin-left: 8px;
    }

    .footer {
        margin-top: 20px;
    }

    .footer-logo-img {
        width: 125px;
        height: 125px;
    }
}

/* 表格样式 */
.table-container {
    margin-top: 40px;
    overflow-x: auto;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    background: var(--heo-secondbg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    background: transparent;
    font-family: 'Exo 2', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

.data-table thead {
    background: linear-gradient(135deg, rgba(0, 255, 0, 0.15), rgba(0, 150, 255, 0.15));
    border-radius: 12px 12px 0 0;
}

.data-table thead tr {
    border-radius: 12px 12px 0 0;
}

.data-table th {
    background: transparent;
    color: var(--heo-fontcolor);
    font-weight: 700;
    padding: 16px 20px;
    text-align: left;
    border-bottom: 2px solid rgba(0, 255, 0, 0.3);
    font-size: 16px;
    position: relative;
}

.data-table th:first-child {
    border-top-left-radius: 12px;
}

.data-table th:last-child {
    border-top-right-radius: 12px;
}

.data-table td {
    padding: 14px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--heo-fontcolor);
    font-size: 15px;
    line-height: 1.6;
    transition: all 0.3s ease;
}

.data-table tr:hover td {
    background: rgba(0, 255, 0, 0.05);
    transform: translateY(-1px);
}

.data-table tr:last-child td {
    border-bottom: none;
}

.data-table tr:last-child td:first-child {
    border-bottom-left-radius: 12px;
}

.data-table tr:last-child td:last-child {
    border-bottom-right-radius: 12px;
}

/* 响应式表格 */
@media screen and (max-width: 768px) {
    .table-container {
        margin-top: 30px;
        border-radius: 8px;
    }
    
    .data-table th,
    .data-table td {
        padding: 12px 16px;
        font-size: 14px;
    }
    
    .data-table th {
        font-size: 15px;
    }
}

@media screen and (max-width: 480px) {
    .data-table th,
    .data-table td {
        padding: 10px 12px;
        font-size: 13px;
    }
    
    .data-table th {
        font-size: 14px;
    }
}

/* 分页样式 */
.paginated-table {
    width: 100%;
}

.pagination-container {
    display: flex;
    justify-content: right;
    align-items: center;
    margin-left: 20px;
    margin-right: 20px;
    padding: 20px 0;
    flex-wrap: wrap;
    gap: 15px;
}

.pagination-info {
    color: var(--heo-fontcolor);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.pagination-info .current-page,
.pagination-info .total-pages,
.pagination-info .total-records {
    color: var(--heo-theme);
    font-weight: 600;
}

.pagination-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.pagination-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: rgba(75, 108, 183, 0.1);
    border: 1px solid rgba(75, 108, 183, 0.3);
    border-radius: 20px;
    color: var(--heo-fontcolor);
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
}

.pagination-btn:hover:not(:disabled) {
    background: rgba(75, 108, 183, 0.2);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(75, 108, 183, 0.2);
}

.pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.pagination-btn svg {
    transition: transform 0.3s ease;
}

.pagination-btn:hover:not(:disabled) svg {
    transform: translateX(2px);
}

.pagination-btn.prev-btn:hover:not(:disabled) svg {
    transform: translateX(-2px);
}

.page-numbers {
    display: flex;
    align-items: center;
    gap: 8px;
}

.page-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--heo-fontcolor);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
}

.page-number:hover {
    background: rgba(75, 108, 183, 0.2);
    border-color: rgba(75, 108, 183, 0.4);
    transform: translateY(-1px);
}

.page-number.active {
    background: var(--heo-theme);
    border-color: var(--heo-theme);
    color: var(--heo-white);
    box-shadow: 0 4px 12px rgba(75, 108, 183, 0.3);
}

.page-number.ellipsis {
    cursor: default;
    background: transparent;
    border: none;
    color: var(--heo-fontsubcolor);
}

.page-number.ellipsis:hover {
    background: transparent;
    transform: none;
}

/* 表格行显示/隐藏动画 */
.table-row {
    transition: all 0.3s ease;
}

.table-row.hidden {
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    position: absolute;
    left: -9999px;
}

/* 响应式分页 */
@media screen and (max-width: 768px) {
    .pagination-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
    }
    
    .pagination-controls {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .pagination-btn {
        padding: 6px 12px;
        font-size: 13px;
    }
    
    .page-number {
        width: 32px;
        height: 32px;
        font-size: 13px;
    }
}

@media screen and (max-width: 480px) {
    .pagination-info {
        font-size: 13px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .pagination-btn {
        padding: 5px 10px;
        font-size: 12px;
        gap: 4px;
    }
    
    .page-number {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }
    
    .page-numbers {
        gap: 6px;
    }
}

/* 面包屑导航样式 */
.breadcrumb-container {
    max-width: 1400px;
    margin: 100px auto 0;
    padding: 0 60px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    padding: 15px 25px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    font-size: 14px;
}

.breadcrumb-item {
    color: var(--heo-fontcolor);
    text-decoration: none;
    padding: 4px 8px;
    border-radius: 12px;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.breadcrumb-item:hover {
    background: rgba(75, 108, 183, 0.2);
    color: var(--heo-theme);
    opacity: 1;
    transform: translateY(-1px);
}

.breadcrumb-separator {
    color: var(--heo-fontsubcolor);
    opacity: 0.6;
    font-size: 12px;
}

.breadcrumb-current {
    color: var(--heo-theme);
    font-weight: 500;
    background: rgba(75, 108, 183, 0.1);
    padding: 4px 8px;
    border-radius: 12px;
    border: 1px solid rgba(75, 108, 183, 0.3);
}

/* 阅读进度条 */
.reading-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: var(--heo-theme);
    z-index: 1000;
    transition: width 0.1s ease;
}

.reading-progress-bar::after {
    display: none;
}

/* 目录样式 */
.toc-container {
    position: fixed;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    width: 250px;
    max-height: 60vh;
    z-index: 50;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.toc-container:hover {
    opacity: 1;
}

.toc-wrapper {
    background: var(--heo-secondbg);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    overflow: hidden;
}

.toc-title {
    padding: 12px 16px;
    background: rgba(75, 108, 183, 0.1);
    color: var(--heo-fontcolor);
    font-weight: 500;
    font-size: 14px;
    font-family: 'Microsoft YaHei', 'PingFang SC', sans-serif;
    display: flex;
    align-items: center;
    gap: 6px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.toc-icon {
    font-size: 16px;
}

.toc-content {
    padding: 16px;
    max-height: 50vh;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(75, 108, 183, 0.5) transparent;
}

.toc-content::-webkit-scrollbar {
    width: 4px;
}

.toc-content::-webkit-scrollbar-track {
    background: transparent;
}

.toc-content::-webkit-scrollbar-thumb {
    background: rgba(75, 108, 183, 0.5);
    border-radius: 2px;
}

.toc-content ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

.toc-content .toc-item {
    margin: 6px 0;
}

.toc-content .toc-link {
    display: block;
    padding: 6px 10px;
    color: #e0e0e0;
    text-decoration: none;
    font-size: 13px;
    font-family: 'Microsoft YaHei', 'PingFang SC', sans-serif;
    line-height: 1.4;
    border-radius: 4px;
    transition: all 0.2s ease;
    border-left: 2px solid transparent;
}

.toc-content .toc-link:hover {
    color: #ffffff;
    background: rgba(75, 108, 183, 0.1);
    border-left-color: var(--heo-theme);
}

.toc-content .toc-link.active {
    color: #ffffff;
    background: rgba(75, 108, 183, 0.15);
    border-left-color: var(--heo-theme);
    font-weight: 500;
}

.toc-content .toc-child {
    padding-left: 12px;
}

.toc-content .toc-child .toc-link {
    font-size: 12px;
    font-family: 'Microsoft YaHei', 'PingFang SC', sans-serif;
    opacity: 0.9;
    color: #d0d0d0;
    font-weight: 400;
}

.toc-content .toc-child .toc-child {
    padding-left: 24px;
}

/* 移动端隐藏目录 */
@media (max-width: 1200px) {
    .toc-container {
        display: none;
    }
}

/* 文章页面样式 */
.post-container {
    max-width: 1400px;
    width: 60%;
    margin: 20px auto 0;
    padding: 0;
    background: transparent;
    border-radius: 16px;
    position: relative;
}

.post {
    color: var(--heo-fontcolor);
    background: var(--heo-secondbg);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    margin-bottom: 26px;
}

.post-header {
    text-align: center;
    margin-bottom: 0;
    padding: 60px 40px 40px;
    background: var(--heo-secondbg);
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.post-header::before {
    display: none;
}

@keyframes headerGlow {
    0%, 100% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.1); }
}

.post-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.2;
    color: var(--heo-fontcolor);
    position: relative;
    z-index: 2;
}

.post-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    color: var(--heo-fontsubcolor);
    font-size: 14px;
    position: relative;
    z-index: 2;
}

.post-date {
    padding: 8px 16px;
    font-weight: 500;
}

.post-author {
    padding: 8px 16px;
    font-weight: 500;
    color: var(--heo-theme);
    background: rgba(75, 108, 183, 0.1);
    border-radius: 20px;
    border: 1px solid rgba(75, 108, 183, 0.3);
    transition: all 0.3s ease;
}

.post-author:hover {
    background: rgba(75, 108, 183, 0.15);
    transform: translateY(-1px);
}

.post-category .category-link,
.post-tags .tag-link {
    background: rgba(75, 108, 183, 0.1);
    padding: 6px 14px;
    border-radius: 20px;
    border: 1px solid rgba(75, 108, 183, 0.3);
    color: var(--heo-fontcolor);
    text-decoration: none;
    margin-right: 10px;
    transition: all 0.3s ease;
    display: inline-block;
    font-weight: 500;
}

.post-category .category-link:hover,
.post-tags .tag-link:hover {
    background: rgba(75, 108, 183, 0.2);
    transform: translateY(-2px);
}

.post-content {
    line-height: 1.8;
    font-size: 16px;
    margin-bottom: 0px;
    padding: 40px;
    position: relative;
}

.post-content h1,
.post-content h2,
.post-content h3,
.post-content h4,
.post-content h5,
.post-content h6 {
    margin: 40px 0 20px;
    font-weight: 600;
    color: var(--heo-fontcolor);
    position: relative;
    padding-left: 20px;
}

.post-content h1::before,
.post-content h2::before,
.post-content h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 60%;
    background: var(--heo-theme);
    border-radius: 2px;
}

.post-content h1 { 
    font-size: 2.2rem; 
    color: var(--heo-fontcolor);
}
.post-content h2 { 
    font-size: 1.8rem; 
    color: var(--heo-theme);
}
.post-content h3 { 
    font-size: 1.5rem; 
    color: var(--heo-fontcolor);
}
.post-content h4 { font-size: 1.3rem; }

.post-content p {
    margin-bottom: 18px;
    text-align: justify;
}

.post-content a {
    color: var(--heo-theme);
    text-decoration: none;
    border-bottom: 2px solid rgba(75, 108, 183, 0.3);
    transition: all 0.3s ease;
    position: relative;
    padding: 2px 4px;
    border-radius: 4px;
}

.post-content a:hover {
    color: var(--heo-theme);
    border-bottom-color: var(--heo-theme);
    background: rgba(75, 108, 183, 0.1);
}

/* 标题锚点链接样式 */
.post-content .headerlink {
    border: none !important;
    padding: 0 !important;
    background: none !important;
    text-decoration: none !important;
    opacity: 0;
    transition: opacity 0.3s ease;
    margin-left: 8px;
}

.post-content h1:hover .headerlink,
.post-content h2:hover .headerlink,
.post-content h3:hover .headerlink,
.post-content h4:hover .headerlink,
.post-content h5:hover .headerlink,
.post-content h6:hover .headerlink {
    opacity: 0.6;
}

.post-content .headerlink:hover {
    opacity: 1 !important;
}

.post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Prism.js 代码块样式 */
.post-content pre {
    background: #2d2d2d;
    border-radius: 8px;
    margin: 20px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid #444;
    overflow-x: auto;
    position: relative;
}

.post-content pre[class*="language-"] {
    background: #2d2d2d;
    border-radius: 8px;
    margin: 20px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid #444;
    overflow-x: auto;
    position: relative;
    padding: 20px;
}

.post-content code[class*="language-"] {
    background: none;
    color: #ccc;
    font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace;
    font-size: 14px;
    line-height: 1.5;
}

/* Prism.js 行号样式 */
.post-content pre.line-numbers {
    position: relative;
    padding-left: 3.8em;
    counter-reset: linenumber;
}

.post-content pre.line-numbers > code {
    position: relative;
    white-space: inherit;
}

.post-content .line-numbers .line-numbers-rows {
    position: absolute;
    pointer-events: none;
    top: 0;
    left: -3.8em;
    width: 3em;
    letter-spacing: -1px;
    border-right: 1px solid #555;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.post-content .line-numbers-rows > span {
    display: block;
    counter-increment: linenumber;
}

.post-content .line-numbers-rows > span:before {
    content: counter(linenumber);
    color: #999;
    display: block;
    padding-right: 0.8em;
    text-align: right;
}

/* 代码块复制按钮样式 */
.code-copy-btn {
    position: absolute;
    top: 8px;
    right: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ccc;
    padding: 8px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: inherit;
    user-select: none;
    opacity: 0.7;
    width: 32px;
    height: 32px;
}

.code-copy-btn:hover {
    background: rgba(75, 108, 183, 0.2);
    border-color: rgba(75, 108, 183, 0.4);
    color: var(--heo-theme);
    opacity: 1;
    transform: translateY(-1px);
}

.code-copy-btn:active {
    transform: translateY(0) scale(0.95);
}

.code-copy-btn.copied {
    background: rgba(34, 197, 94, 0.2);
    border-color: rgba(34, 197, 94, 0.4);
    color: #22c55e;
}

.code-copy-btn.error {
    background: rgba(239, 68, 68, 0.2);
    border-color: rgba(239, 68, 68, 0.4);
    color: #ef4444;
}

/* 代码复制按钮图标样式 */
.code-copy-btn::before {
    content: "📋";
    font-size: 14px;
}

.code-copy-btn.copied::before {
    content: "✅";
}

.code-copy-btn.error::before {
    content: "❌";
}

.post-content pre code {
    background: none;
    color: #ccc;
    font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace;
    font-size: 14px;
    line-height: 1.5;
    padding: 0;
    display: block;
}

/* 行内代码样式 */
.post-content code {
    background: #2a2a2a;
    padding: 3px 6px;
    border-radius: 4px;
    font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace;
    font-size: 13px;
    color: #e6e6e6;
    font-weight: 400;
}

.post-content pre code {
    background: none;
    padding: 0;
}

/* Prism.js 主题样式 - Dracula 变体 */
.token.comment,
.token.prolog,
.token.doctype,
.token.cdata {
    color: #6272a4;
}

.token.punctuation {
    color: #f8f8f2;
}

.token.namespace {
    opacity: .7;
}

.token.property,
.token.tag,
.token.constant,
.token.symbol,
.token.deleted {
    color: #ff79c6;
}

.token.boolean,
.token.number {
    color: #bd93f9;
}

.token.selector,
.token.attr-name,
.token.string,
.token.char,
.token.builtin,
.token.inserted {
    color: #50fa7b;
}

.token.operator,
.token.entity,
.token.url,
.language-css .token.string,
.style .token.string,
.token.variable {
    color: #f8f8f2;
}

.token.atrule,
.token.attr-value,
.token.function,
.token.class-name {
    color: #f1fa8c;
}

.token.keyword {
    color: #8be9fd;
}

.token.regex,
.token.important {
    color: #ffb86c;
}

.token.important,
.token.bold {
    font-weight: bold;
}

.token.italic {
    font-style: italic;
}

.token.entity {
    cursor: help;
}

/* 移动端代码块复制按钮适配 */
@media screen and (max-width: 768px) {
    .code-copy-btn {
        top: 6px;
        right: 6px;
        padding: 6px 10px;
        font-size: 11px;
        gap: 4px;
        border-radius: 6px;
    }
    
    .code-copy-btn svg {
        width: 14px;
        height: 14px;
    }
}

@media screen and (max-width: 480px) {
    .code-copy-btn {
        top: 4px;
        right: 4px;
        padding: 4px 8px;
        font-size: 10px;
        gap: 2px;
        border-radius: 4px;
    }
    
    .code-copy-btn svg {
        width: 12px;
        height: 12px;
    }
    
    .code-copy-btn:hover {
        transform: translateY(-1px) scale(1.02);
    }
}



.post-content blockquote {
    border-left: 4px solid var(--heo-theme);
    background: rgba(75, 108, 183, 0.1);
    padding: 15px 20px;
    margin: 20px 0;
    border-radius: 0 8px 8px 0;
}

.post-content ul,
.post-content ol {
    padding-left: 30px;
    margin-bottom: 15px;
}

.post-content li {
    margin-bottom: 8px;
}

.post-footer {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.post-nav {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin: 20px 20px;
}

.post-nav-prev,
.post-nav-next {
    flex: 1;
    padding: 20px;
    background: rgba(75, 108, 183, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(75, 108, 183, 0.3);
    text-decoration: none;
    color: var(--heo-fontcolor);
    transition: all 0.3s ease;
    display: block;
}

.post-nav-prev:hover,
.post-nav-next:hover {
    background: rgba(75, 108, 183, 0.2);
    transform: translateY(-2px);
}

.post-nav-title {
    display: block;
    font-size: 12px;
    color: var(--heo-fontsubcolor);
    margin-bottom: 5px;
}

.post-nav-subtitle {
    display: block;
    font-weight: 500;
}

.post-nav-next {
    text-align: right;
}

/* 归档页面样式 */
.archive-container,
.category-container,
.tag-container {
    max-width: 1400px;
    width: 60%;
    margin: 20px auto 0;
    padding: 40px 60px;
    background: var(--heo-secondbg);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--heo-fontcolor);
    margin-bottom: 26px;
}

.archive-header,
.category-header,
.tag-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.archive-title,
.category-title,
.tag-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--heo-theme);
}

.archive-count,
.category-count,
.tag-count {
    color: var(--heo-fontsubcolor);
    font-size: 14px;
}

.archive-year {
    margin: 30px 0 15px;
}

.year-title {
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--heo-theme);
    border-bottom: 1px solid var(--heo-theme);
    display: inline-block;
    padding-bottom: 3px;
}

.archive-post,
.category-post,
.tag-post {
    display: flex;
    align-items: center;
    padding: 15px 0;
    margin: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.archive-post:hover,
.category-post:hover,
.tag-post:hover {
    background: transparent;
    border-color: rgba(75, 108, 183, 0.3);
    transform: translateX(5px);
}

.archive-post .post-date,
.category-post .post-date,
.tag-post .post-date {
    color: var(--heo-fontsubcolor);
    font-size: 20px;
    position: relative;
}

.archive-post .post-date::after,
.category-post .post-date::after,
.tag-post .post-date::after {
    content: '|';
    color: var(--heo-fontsubcolor);
    font-weight: 300;
    margin-left: 15px;
    opacity: 0.6;
}

.archive-post .post-info,
.category-post .post-info,
.tag-post .post-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

/* 文章类别样式 */
.archive-post .post-category,
.category-post .post-category,
.tag-post .post-category {
    font-size: 12px;
    color: #36ac75;
    font-weight: 600;
    margin-bottom: 3px;
    display: flex;
    align-items: center;
    gap: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.archive-post .post-category::before,
.category-post .post-category::before,
.tag-post .post-category::before {
    content: '📁';
    font-size: 11px;
    opacity: 0.9;
}

.archive-post .post-category::after,
.category-post .post-category::after,
.tag-post .post-category::after {
    content: '•';
    color: var(--heo-fontsubcolor);
    font-weight: bold;
    margin-left: 2px;
    font-size: 14px;
}

/* 归档页面作者样式 */
.post-meta-inline {
    margin-bottom: 2px;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.post-author-inline {
    font-size: 11px;
    color: var(--heo-theme);
    font-weight: 500;
    opacity: 0.8;
}

.archive-post .post-title,
.category-post .post-title,
.tag-post .post-title {
    margin: 0;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.4;
}

.archive-post .post-title a,
.category-post .post-title a,
.tag-post .post-title a {
    color: var(--heo-fontcolor);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    padding: 2px 0;
}

.archive-post .post-title a::before,
.category-post .post-title a::before,
.tag-post .post-title a::before {
    content: '📝';
    margin-right: 8px;
    opacity: 0.7;
    font-size: 14px;
    transition: all 0.3s ease;
}

.archive-post .post-title a::after,
.category-post .post-title a::after,
.tag-post .post-title a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--heo-theme);
    transition: width 0.3s ease;
}

.archive-post .post-title a:hover,
.category-post .post-title a:hover,
.tag-post .post-title a:hover {
    color: var(--heo-theme);
    transform: translateX(3px);
}

.archive-post .post-title a:hover::before,
.category-post .post-title a:hover::before,
.tag-post .post-title a:hover::before {
    opacity: 1;
    transform: scale(1.1);
}

.archive-post .post-title a:hover::after,
.category-post .post-title a:hover::after,
.tag-post .post-title a:hover::after {
    width: 100%;
}

/* 分类和标签页面特有样式 */
.category-item,
.tag-section {
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.category-name,
.tag-name {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.category-name a,
.tag-name a {
    color: var(--heo-fontcolor);
    text-decoration: none;
    transition: color 0.2s ease;
}

.category-name a:hover,
.tag-name a:hover {
    color: var(--heo-theme);
}

.category-post-count,
.tag-post-count {
    color: var(--heo-fontsubcolor);
    font-size: 14px;
    font-weight: 400;
}

.more-posts {
    text-align: center;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.more-posts a {
    color: var(--heo-theme);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.more-posts a:hover {
    color: #00ff88;
}

/* 标签云样式 */
.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
    padding: 25px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.tag-item {
    background: rgba(75, 108, 183, 0.1);
    padding: 8px 15px;
    border-radius: 20px;
    border: 1px solid rgba(75, 108, 183, 0.3);
    color: var(--heo-fontcolor);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.tag-item:hover {
    background: rgba(75, 108, 183, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(75, 108, 183, 0.2);
}

/* 响应式设计 */
@media screen and (max-width: 768px) {
    .post-container,
    .archive-container,
    .category-container,
    .tag-container {
        width: 90%;
        margin-top: 60px;
        padding: 30px 20px;
        border-radius: 8px;
    }
    
    .post-title,
    .archive-title,
    .category-title,
    .tag-title {
        font-size: 2rem;
    }
    
    .post-content {
        padding: 30px 20px;
    }
    
    .post-header {
        padding: 40px 20px 30px;
    }
    
    .post-meta {
        gap: 10px;
    }
    
    .post-nav {
        flex-direction: column;
    }
    
    .post-nav-next {
        text-align: left;
    }
    
    .archive-post,
    .category-post,
    .tag-post {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .archive-post .post-date,
    .category-post .post-date,
    .tag-post .post-date {
        min-width: auto;
        margin-right: 0;
    }
    
    .category-item,
    .tag-section {
        padding: 20px 15px;
    }
    
    .tag-cloud {
        padding: 20px 15px;
    }
}

@media screen and (max-width: 480px) {
    .post-container,
    .archive-container,
    .category-container,
    .tag-container {
        width: 95%;
        padding: 25px 15px;
    }
    
    .post-title,
    .archive-title,
    .category-title,
    .tag-title {
        font-size: 1.5rem;
    }
    
    .post-content {
        font-size: 15px;
        padding: 25px 15px;
    }
    
    .post-header {
        padding: 30px 15px 25px;
    }
    
    .category-name,
    .tag-name {
        font-size: 1.2rem;
    }
}
