* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-tap-highlight-color: transparent;
}
.web_bg {
    position: fixed;
    z-index: -999;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-attachment: local;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.web_bg {
    background-image: url(/zb_users/theme/one/images/beijinga.png);
}
:root {
    --bg-primary: linear-gradient(360deg, #ffd5df 0%, #9494a8 0%);
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-bg-hover: rgba(255, 255, 255, 0.9);
    --glass-border: rgba(255, 140, 158, 0.2);
    --glass-shadow: 0 8px 32px rgba(31, 38, 135, 0.1), 0 2px 8px rgba(255, 140, 158, 0.15);
    --glass-shadow-accent: 0 8px 32px rgba(255, 140, 158, 0.2), 0 2px 8px rgba(255, 140, 158, 0.25);
    --text-primary: #4a4a68;
    --text-secondary: #6b6b88;
    --text-tertiary: #9494a8;
    --accent-primary: #ff94a8;
    --accent-light: #ffc5d0;
    --accent-pale: #ffeef2;
    --sunlight-darkness:#ffffff;
    --border-light: rgba(255, 255, 255, 0.6);
    --border-divider: rgba(255, 140, 158, 0.1);
    --radius: 16px;
    --radius-sm: 12px;
    --radius-pill: 24px;
    --transition-duration: 0.4s;
}
.meta-author {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px 8px;
    border-radius: var(--radius-sm);
    background: var(--glass-bg-hover);
    transition: all 0.3s;
}
.meta-author:hover {
    background: var(--glass-bg-hover);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(255, 140, 158, 0.15);
}
.author-avatar {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid var(--glass-border);
}
.author-name {
    font-size: 12px;
    color: var(--text-secondary);
    font-weight: 500;
}
.post-sticky-icon {
    color: var(--accent-primary);
    font-size: 14px;
    transition: all 0.3s;
    flex-shrink: 0;
}
.post-sticky-icon:hover {
    color: #ff6b81;
    transform: scale(1.1);
}
.dark-mode {
    --bg-primary: linear-gradient(135deg, #1a1a3a 0%, #222244 100%);
    --glass-bg: rgba(38, 38, 70, 0.7);
    --glass-bg-hover: rgba(45, 45, 80, 0.9);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 2px 8px rgba(0, 0, 0, 0.2);
    --glass-shadow-accent: 0 8px 32px rgba(255, 140, 158, 0.15), 0 2px 8px rgba(255, 140, 158, 0.2);
    --text-primary: #f5f5ff;
    --text-secondary: #e0e0f0;
    --text-tertiary: #b0b0d0;
    --accent-primary: #ffa0b0;
    --accent-light: #ffb8c4;
    --accent-pale: #ffd8e0;
    --sunlight-darkness: #161829;
    --border-light: rgba(255, 255, 255, 0.1);
    --border-divider: rgba(255, 140, 158, 0.08);
}
body {
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    padding-top: 110px;
    min-height: 100vh;
    font-family:"PingFang SC", "Microsoft YaHei", "Helvetica Neue", sans-serif;
}
body::-webkit-scrollbar {
    width: 0;
}
.header, .left-sidebar, .main-content, .right-sidebar, .footer, .search, .login-icon, .side-nav a, .page-btn, .form-control, .submit-btn, .comment-title, .profile-tag, .tag, .post-item, .one-setting-modal {
    background: var(--glass-bg);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(4px);
    border: 1px solid var(--glass-border);
}
.header {
    position: fixed;
    top: 20px;
    left: 0;
    right: 0;
    z-index: 999;
    max-width: 1080px;
    width: 95%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 30px;
    padding: 12px 20px;
    border-radius: var(--radius);
    box-shadow: var(--glass-shadow);
}
.header.fixed {
    top: 0;
    border-radius: 0 0 var(--radius) var(--radius);
    box-shadow: var(--glass-shadow-accent);
}
.logo {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--accent-light), var(--accent-primary));
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--glass-shadow-accent);
    transition: transform 0.3s;
    overflow: hidden;
}
.logo:hover {
    transform: scale(1.05);
}
.logo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.95;
}
.nav-scroll-container {
    flex: 1;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.nav-scroll-container::-webkit-scrollbar {
    display: none;
}
.nav {
    display: flex;
    gap: 28px;
    padding: 4px 0;
}
.nav a {
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 16px;
    padding: 8px 0;
    position: relative;
    display: inline-block;
    font-weight: 500;
}
.nav a:hover {
    color: var(--accent-primary);
}
.nav a.active {
    color: var(--accent-primary);
    font-weight: 600;
}
.nav a.active::after {
    content:"";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-light), var(--accent-primary));
    border-radius: var(--radius-sm);
    box-shadow: 0 2px 4px rgba(255, 140, 158, 0.2);
}
.header-right {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 12px;
}
.search {
    width: 165px;
    height: 42px;
    border-radius: var(--radius);
    padding: 0 16px;
    gap: 10px;
    transition: all 0.3s;
    position: relative;
    display: flex;
    align-items: center;
}
.search:hover, .search:focus-within {
    background: var(--glass-bg-hover);
    transform: scale(1.02);
    box-shadow: var(--glass-shadow-accent);
}
.search-icon {
    color: var(--accent-primary);
    font-size: 16px;
}
.search-input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    font-size: 14px;
    color: var(--text-primary);
    min-height: 30px;
}
.search-input::placeholder {
    color: var(--text-tertiary);
}
.login-icon {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-tertiary);
    border-radius: var(--radius);
    transition: all 0.3s;
    text-decoration: none;
    font-size: 18px;
}
.login-icon:hover {
    color: #ffffff;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-light));
    transform: scale(1.1);
    box-shadow: var(--glass-shadow-accent);
}
.container.wrapper {
    max-width: 1080px;
    width: 95%;
    margin: 0 auto 20px;
    display: flex;
    gap: 16px;
    align-items: stretch;
}
.left-sidebar {
    width: 80px;
    border-radius: var(--radius);
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: var(--glass-shadow);
    justify-content: space-between;
    position: sticky;
    top: 0px;
    align-self: flex-start;
    height: calc(100vh - 20px);
    z-index: 1000;
}
.side-nav-top, .side-nav-bottom {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.side-nav a {
    display: block;
    width: 46px;
    height: 46px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-tertiary);
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.03);
    position: relative;
    cursor: pointer;
}
.side-nav a::before {
    content: attr(title);
    position: absolute;
    left: -60px;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-light));
    color: #fff;
    font-size: 12px;
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 10;
    box-shadow: var(--glass-shadow-accent);
}
.side-nav a::after {
    content:"";
    position: absolute;
    left: -6px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 5px 6px 5px 0;
    border-style: solid;
    border-color: transparent var(--accent-primary) transparent transparent;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}
.side-nav a:hover::before, .side-nav a:hover::after {
    opacity: 1;
    visibility: visible;
}
.side-nav a:hover {
    background: var(--glass-bg-hover);
    color: var(--accent-primary);
    transform: scale(1.1);
    box-shadow: var(--glass-shadow-accent);
}
.right-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.main-right-wrapper {
    display: flex;
    gap: 16px;
    flex: 1;
}
.main-content {
    flex: 1;
    border-radius: var(--radius);
    padding: 20px;
    box-shadow: var(--glass-shadow);
}
.post-item {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    padding: 20px;
    border-radius: var(--radius);
    margin-bottom: 20px;
    box-shadow: var(--glass-shadow);
    transition: all 0.3s;
}
.post-item:hover {
    box-shadow: var(--glass-shadow-accent);
}
.post-item:last-child {
    margin-bottom: 0;
}
.post-item-content {
    flex: 1;
    margin-right: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.post-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-primary);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.post-title a {
    color: var(--text-primary);
    text-decoration: none;
}
.post-title a:hover {
    color: var(--accent-primary);
}
.post-excerpt {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 12px;
    line-height: 1.6;
}
.post-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: var(--text-tertiary);
}
.post-meta-left {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
.post-meta-right {
    text-align: right;
}
.meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--text-tertiary);
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
}
.meta-item i {
    font-size: 11px;
    color: var(--accent-primary);
}
.post-meta-left a.meta-item:hover {
    color: var(--accent-primary);
    transform: translateY(-1px);
}
.post-item-img {
    width: 140px;
    height: 140px;
    flex-shrink: 0;
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    position: relative;
}
.post-item-img::after {
    content:"\e60a";
    font-family:"icon";
    font-weight: 900;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}
.post-item-img:hover::after {
    opacity: 1;
}
.post-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}
.post-item-img:hover {
    box-shadow: var(--glass-shadow-accent);
}
.post-item-img:hover img {
    transform: scale(1.1);
}
#post_pager {
    display: flex;
    justify-content: space-between;
    padding: 0px 2px 0px 2px;
    align-items: center;
}
.pagerpl {
    padding: 0px 0px 0px 0px!important;
}
#post_pager a {
    display: flex;
    align-content: center;
    align-items: center;
    font-size: 13px;
    padding: 5px 8px;
    background: var(--glass-bg);
    color: var(--text-secondary);
    border-radius: 5px;
    padding-left: 12px;
    margin-right: 5px;
    text-decoration: none;
}
#post_pager a i {
    font-size: 1px;
}
.pager_inner {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
}
#post_pager .c_paged {
    font-size: 14px;
    color: var(--text-secondary);
}
.ias_triggera {
    padding: 0px;
    text-align: center;
    justify-content: center;
    width: 100%;
}
.ias_triggera a {
    padding: 5px 15px;
    background: var(--glass-bg);
    color: var(--text-secondary);
    border-radius: 8px;
    text-decoration: none;
}
.right-sidebar {
    width: 245px;
    border-radius: var(--radius);
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 28px;
    box-shadow: var(--glass-shadow);
    flex-shrink: 0;
}
.profile {
    text-align: center;
    padding: 16px 0 24px;
    border-bottom: 1px solid var(--border-divider);
}
.avatar {
    width: 90px;
    height: 90px;
    border-radius: var(--radius);
    background: linear-gradient(135deg, var(--accent-pale), var(--accent-light));
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--glass-shadow-accent);
    overflow: hidden;
    transition: transform 0.3s;
    position: relative;
}
.avatar::after {
    content:"\e8a6";
    font-family:"icon";
    font-weight: 900;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}
.avatar:hover::after {
    opacity: 1;
}
.avatar:hover {
    transform: scale(1.05);
}
.avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.95;
}
.profile-name {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}
.profile-desc {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 16px;
}
.profile-tags {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}
.profile-tag {
    padding: 6px 10px;
    border-radius: var(--radius-pill);
    font-size: 12px;
    color: var(--text-secondary);
    transition: all 0.3s;
    font-weight: 500;
}
.profile-tag:hover {
    background: var(--glass-bg-hover);
    color: var(--accent-primary);
    transform: scale(1.05);
    box-shadow: 0 2px 8px rgba(255, 140, 158, 0.1);
}
.side-section {
    margin-bottom: 8px;
}
.side-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-divider);
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 10px;
}
.side-title i {
    color: var(--accent-primary);
    font-size: 18px;
}
.latest-posts li {
    list-style: none;
    margin-bottom: 12px;
    padding: 10px;
    border-radius: var(--radius-sm);
    background: var(--glass-bg);
    border: 1px solid var(--border-divider);
}
.latest-posts li:hover {
    background: var(--glass-bg-hover);
    border-color: var(--accent-primary);
}
.latest-posts a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    line-height: 1.6;
    transition: all 0.3s;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    width: 100%;
    display: block;
}
.latest-posts a:hover {
    color: var(--accent-primary);
    padding-left: 0;
}
.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}
.tag {
    padding: 6px 6px;
    border-radius: var(--radius-pill);
    font-size: 14px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s;
    font-weight: 500;
}
.tag:hover {
    background: var(--glass-bg-hover);
    color: var(--accent-primary);
    transform: scale(1.05) rotate(1deg);
    box-shadow: 0 2px 8px rgba(255, 140, 158, 0.15);
}
.footer {
    width: 100%;
    padding: 16px;
    border-radius: var(--radius);
    text-align: center;
    font-size: 13px;
    color: var(--text-tertiary);
    box-shadow: var(--glass-shadow);
}
.footer p {
    margin-bottom: 8px;
}
.footer .copyright {
    color: var(--accent-primary);
    font-weight: 500;
}
.article-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
    line-height: 1.4;
    background: var(--glass-bg);
    border-radius: var(--radius);
    padding: 20px;
    box-shadow: var(--glass-shadow);
}
.article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: var(--text-tertiary);
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-divider);
}
.article-title:hover {
    box-shadow: var(--glass-shadow-accent);
}
.article-content {
    font-size: 16px;
    color: var(--text-primary);
    line-height: 1.8;
    margin-bottom: 30px;
    background: var(--glass-bg);
    border-radius: var(--radius);
    padding: 20px;
    box-shadow: var(--glass-shadow);
}
.article-content:hover {
    box-shadow: var(--glass-shadow-accent);
}
.article-content p {
    margin-bottom: 20px;
    text-align: justify;
}
.article-content h1 {
    font-size: 22px;
    margin: 30px 0 15px;
    font-weight: 700;
    border-left: 4px solid var(--accent-primary);
    padding-left: 10px;
    background: linear-gradient(90deg, var(--accent-pale), transparent);
    padding: 8px 12px;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.article-content h2 {
    font-size: 20px;
    margin: 28px 0 14px;
    font-weight: 700;
    border-left: 3px solid var(--accent-primary);
    padding-left: 10px;
}
.article-content h3 {
    font-size: 18px;
    margin: 26px 0 13px;
    font-weight: 600;
    color: var(--accent-primary);
}
.article-content .bold, .article-content strong {
    color: var(--accent-primary);
    font-weight: 700;
}
.article-content del {
    color: var(--text-tertiary);
    text-decoration: line-through var(--accent-primary);
}
.article-content u {
    text-decoration: underline var(--accent-primary) 2px;
}
.article-content em {
    color: var(--accent-primary);
    font-style: italic;
}
.article-content a {
    /* color: var(--accent-primary); */
    /* text-decoration: none; */
    /* border-bottom: 1px dashed var(--accent-light); */
    /* transition: all 0.3s; */
}
.article-content a:hover {
    /* color: #ff6b81; */
    /* border-bottom: 1px solid #ff6b81; */
}
.article-content pre {
    background: var(--glass-bg);
    border-radius: var(--radius);
    padding: 16px;
    margin: 20px 0;
    overflow-x: auto;
    border: 1px solid var(--border-light);
    box-shadow: var(--glass-shadow);
}
.article-content code {
    background: var(--glass-bg);
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 14px;
    color: var(--accent-primary);
}
.article-content pre code {
    background: transparent;
    padding: 0;
    color: var(--text-primary);
}
.article-content ul, .article-content ol {
    margin: 15px 0 20px 25px;
}
.article-content ul li {
    margin-bottom: 8px;
    list-style: none;
    position: relative;
    padding-left: 15px;
}
.article-content ul li::before {
    content:"✨";
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 10px;
}
.article-content ol {
    counter-reset: li-counter;
}
.article-content ol li {
    margin-bottom: 8px;
    list-style: none;
    position: relative;
    padding-left: 25px;
}
.article-content ol li::before {
    counter-increment: li-counter;
    content: counter(li-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, var(--accent-light), var(--accent-primary));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    box-shadow: 0 2px 4px rgba(255, 140, 158, 0.2);
}
.article-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--glass-shadow);
    background: var(--glass-bg);
}
.article-content th, .article-content td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid var(--border-light);
}
.article-content th {
    background: linear-gradient(135deg, var(--accent-light), var(--accent-primary));
    color: white;
    font-weight: 600;
}
.article-content tr:nth-child(even) {
    /*background: var(--glass-bg-hover);/*
}
.article-content tr:hover {
    /*background: var(--accent-pale);*/
}
.article-content img.ue-image {
    max-width: 100%;
    height: auto;
    /* border-radius: var(--radius); c
    /* margin: 15px 0; */
    /* box-shadow: var(--glass-shadow); */
    /* transition: transform 0.3s; */
}
.post-tags {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 0;
    border-top: 1px solid var(--border-divider);
    border-bottom: 1px solid var(--border-divider);
    margin-bottom: 24px;
}
.post-nav {
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
    border-top: 1px solid var(--border-divider);
    border-bottom: 1px solid var(--border-divider);
    margin-bottom: 30px;
    background: var(--glass-bg);
    border-radius: var(--radius);
    padding: 20px;
    box-shadow: var(--glass-shadow);
    margin-top: 30px;
}
.post-nav a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s;
}
.post-nav a:hover {
    color: var(--accent-primary);
}
.prev-post:hover {
    transform: translateX(-3px) !important;
}
.next-post:hover {
    transform: translateX(3px) !important;
}
.comment-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    padding: 4px 20px;
    border-radius: var(--radius);
    border-left: 4px solid var(--accent-primary);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: var(--glass-shadow);
}
.comment-title::after {
    content:"";
    width: 8px;
    height: 8px;
    background-color: var(--accent-primary);
    border-radius: 50%;
}
.comment-count {
    font-size: 12px;
    color: var(--text-tertiary);
}
.comment-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.form-group {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.form-control {
    flex: 1;
    min-width: 120px;
    padding: 14px 16px;
    border-radius: var(--radius);
    font-size: 14px;
    transition: all 0.3s;
    color: var(--text-primary);
    min-height: 48px;
    border: 1px solid rgb(255 218 218 / 80%);
    background: var(--glass-bg);
}
.form-control:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(255, 140, 158, 0.1);
    background: var(--glass-bg-hover);
}
.comment-textarea-wrapper {
    position: relative;
    width: 100%;
}
.comment-textarea {
    width: 100%;
    height: auto;
    min-height: 80px;
    resize: none;
    overflow: hidden;
    padding-right: 20px;
    padding-left: 20px;
    padding-bottom: 40px;
}
.emoji-icon {
    position: absolute;
    left: 15px;
    bottom: 15px;
    color: var(--text-tertiary);
    font-size: 18px;
    transition: all 0.3s;
    cursor: pointer;
}
.emoji-icon:hover {
    color: var(--accent-primary);
    transform: scale(1.1);
}
.submit-btn {
    position: absolute;
    right: 15px;
    bottom: 15px;
    padding: 8px 20px;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-light));
    color: #fff;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s;
    box-shadow: var(--glass-shadow-accent);
    min-height: 36px;
    font-weight: 500;
}
.submit-btn:hover {
    background: linear-gradient(135deg, #ff6b81, var(--accent-primary));
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(255, 140, 158, 0.25);
}
.comments-list {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.comment-item {
    display: flex;
    gap: 15px;
    padding: 15px;
    border-radius: var(--radius);
    transition: all 0.3s;
    background: var(--glass-bg);
}
.comment-item-border {
    border: 1px solid var(--border-light);
}
.comment-item:hover {
    border-color: var(--accent-primary);
    box-shadow: var(--glass-shadow-accent);
}
.child-comment {
    margin-left: 55px;
    margin-top: 10px;
    padding: 15px;
    border-radius: var(--radius);
    background: var(--glass-bg);
    transition: all 0.3s;
}
.child-comment:hover {
    border-color: var(--accent-primary);
    box-shadow: var(--glass-shadow-accent);
}
.comment-avatar-link {
    display: block;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: var(--glass-shadow);
    transition: all 0.3s;
    border: 2px solid var(--glass-border);
}
.comment-avatar-link:hover {
    transform: scale(1.1);
    box-shadow: var(--glass-shadow-accent);
}
.comment-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.comment-content {
    flex: 1;
}
.comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}
.comment-author-info {
    display: flex;
    align-items: center;
    gap: 10px;
}
.comment-author-details {
    display: flex;
    flex-direction: column;
}
.comment-nickname-time {
    display: flex;
    flex-direction: column;
}
.comment-nickname {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 14px;
}
.comment-time {
    font-size: 12px;
    color: var(--text-tertiary);
}
.comment-floor {
    font-size: 12px;
    color: var(--text-tertiary);
    font-weight: 500;
    align-self: flex-start;
}
.comment-body {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 8px;
    color: var(--text-secondary);
}
.comment-location {
    font-size: 12px;
    color: var(--text-tertiary);
    margin-bottom: 8px;
}
.comment-actions {
    font-size: 12px;
}
.comment-reply {
    color: var(--accent-primary);
    text-decoration: none;
    transition: all 0.3s;
}
.comment-reply:hover {
    color: #ff6b81;
    text-decoration: underline;
}
/* ===================== 移动端响应式 ===================== */
 @media (max-width: 768px) {
    .header {
        top: 15px;
        padding: 10px 16px;
        gap: 16px;
    }
    .header.fixed {
        top: 0;
        border-radius: 0 0 var(--radius) var(--radius);
    }
    .logo {
        width: 40px;
        height: 40px;
    }
    .nav {
        gap: 20px;
    }
    .nav a {
        padding: 6px 0;
    }
    .header-right {
        gap: 8px;
    }
    .search {
        width: 140px;
        height: 38px;
        padding: 0 12px;
    }
    .login-icon {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }
    .container.wrapper {
        margin: 0 auto 10px;
        flex-direction: column;
        gap: 12px;
    }
    body {
        padding-top: 90px;
    }
    .left-sidebar, .right-sidebar {
        display: none;
    }
    .main-right-wrapper {
        flex-direction: column;
    }
    .main-content {
        width: 100%;
        padding: 20px;
    }
    .post-item {
        flex-direction: row;
        padding: 16px;
        margin-bottom: 16px;
    }
    .post-item-content {
        margin-right: 16px;
    }
    .post-item-img {
        width: 110px;
        height: auto;
        border-radius: var(--radius-sm);
    }
    .post-meta-left {
        gap: 12px;
    }
    .footer {
        margin: 0 auto 10px;
        padding: 16px 12px;
        font-size: 12px;
    }
    .form-group {
        flex-direction: column;
        gap: 12px;
    }
    .submit-btn {
        width: auto;
    }
    .comment-item {
        flex-direction: column;
        gap: 10px;
        padding: 10px;
    }
    .child-comment {
        margin-left: 20px;
    }
    .comment-title {
        font-size: 18px;
        padding: 10px 16px;
    }
    .comment-section > div[style*="display: flex"] {
        justify-content: space-between !important;
        align-items: center !important;
        gap: 10px;
    }
    .mobile-comment-btn {
        display: block!important;
    }
    .comment-title {
        font-size: 18px;
        padding: 10px 16px;
    }
    .comment-count {
        font-size: 12px;
    }
}
/* 更小屏幕适配（480px以下） */
 @media (max-width: 480px) {
    .header {
        gap: 10px;
    }
    .search {
        width: 120px;
    }
    .post-item {
        flex-direction: column;
    }
    .post-item-content {
        margin-right: 0;
        margin-bottom: 12px;
    }
    .post-item-img {
        width: 100%;
        height: 180px;
    }
    .comment-title {
        font-size: 16px;
        padding: 8px 12px;
    }
    .comment-textarea {
        min-height: 100px;
        padding-right: 90px;
        padding-left: 30px;
    }
    .submit-btn {
        padding: 6px 16px;
        font-size: 13px;
    }
}
/* 打印样式 */
 @media print {
    .header, .left-sidebar, .right-sidebar, .pagination, .comment-section {
        display: none !important;
    }
    body {
        background: white !important;
        color: black !important;
        padding: 0 !important;
    }
    .main-content, .footer, .post-item {
        background: white !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        border: none !important;
        box-shadow: none !important;
    }
    .main-content {
        padding: 0 !important;
    }
    .article-content {
        font-size: 14px;
        line-height: 1.5;
    }
    * {
        background: transparent !important;
        box-shadow: none !important;
        color: black !important;
    }
    .article-content table {
        border: 1px solid #ddd !important;
    }
    .article-content th, .article-content td {
        border-bottom: 1px solid #ddd !important;
    }
    .article-content h1, .article-content h2, .article-content h3 {
        color: black !important;
        border-left: 4px solid #ff94a8 !important;
    }
}
.highlightable {
    background: var(--glass-bg);
    padding: 4px 8px;
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
}
.highlightable:hover {
    background: var(--glass-bg-hover);
    color: var(--text-primary) !important;
    transform: translateY(-1px);
    box-shadow: var(--glass-shadow-accent);
}
.highlightable:hover i {
    color: var(--text-primary) !important;
}
.list-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}
.list-item {
    display: flex;
    flex-direction: column;
    background: var(--glass-bg);
    border-radius: var(--radius);
    box-shadow: var(--glass-shadow);
    transition: all 0.3s;
    overflow: hidden;
}
.list-item:hover {
    box-shadow: var(--glass-shadow-accent);
}
.list-item-img {
    width: 100%;
    height: 180px;
    overflow: hidden;
    position: relative;
}
.list-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}
.list-item-img:hover img {
    transform: scale(1.1);
}
.list-item-content {
    padding: 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.list-item-description {
    flex: 1;
    margin-bottom: 12px;
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
}
.list-item-footer {
    border-top: 1px solid var(--border-divider);
    padding-top: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.list-item-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.list-item-author {
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
}
.list-item-author .author-avatar {
    width: 20px;
    height: 20px;
}
.list-item-author .author-name {
    font-size: 12px;
    color: var(--text-secondary);
}
.list-item-info {
    display: flex;
    gap: 15px;
    font-size: 11px;
    color: var(--text-tertiary);
}
.list-item-info .meta-item {
    display: flex;
    align-items: center;
    gap: 3px;
}
.floating-buttons {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 998;
}
.floating-btn {
    width: 46px;
    height: 46px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-tertiary);
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.03);
    position: relative;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
.floating-btn::before {
    content: attr(title);
    position: absolute;
    right: 50px;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-light));
    color: #fff;
    font-size: 12px;
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 10;
    box-shadow: var(--glass-shadow-accent);
}
.floating-btn::after {
    content:"";
    position: absolute;
    right: 44px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 5px 0 5px 6px;
    border-style: solid;
    border-color: transparent transparent transparent var(--accent-primary);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}
.floating-btn:hover::before, .floating-btn:hover::after {
    opacity: 1;
    visibility: visible;
}
.floating-btn:hover {
    background: var(--glass-bg-hover);
    color: var(--accent-primary);
    transform: scale(1.1);
    box-shadow: var(--glass-shadow-accent);
}
.home-icon {
    color: var(--accent-primary) !important;
}
.home-icon:hover {
    color: #ff6b81 !important;
}
@media (max-width: 768px) {
    .floating-buttons {
        display: none;
    }
}
.friend-links-filters {
    display: flex;
    justify-content: flex-start;
    gap: 12px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}
.filter-btn {
    padding: 8px 16px;
    border-radius: var(--radius-pill);
    font-size: 14px;
    color: var(--text-secondary);
    background: var(--glass-bg);
    border: 1px solid var(--border-light);
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}
.filter-btn:hover {
    background: var(--glass-bg-hover);
    color: var(--accent-primary);
    border-color: var(--accent-light);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(255, 140, 158, 0.1);
}
.filter-btn.active {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-light));
    color: #ffffff;
    border-color: var(--accent-primary);
    box-shadow: var(--glass-shadow-accent);
}
.friend-links-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}
.friend-link-item {
    display: flex;
    align-items: center;
    padding: 16px;
    border-radius: var(--radius);
    background: var(--glass-bg);
    border: 1px solid var(--border-light);
    transition: all 0.3s;
    box-shadow: var(--glass-shadow);
    text-decoration: none;
    color: inherit;
}
.friend-link-item:hover {
    border-color: var(--accent-primary);
    box-shadow: var(--glass-shadow-accent);
    transform: translateY(-2px);
    color: inherit;
}
.friend-link-logo {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    margin-right: 15px;
    flex-shrink: 0;
    box-shadow: var(--glass-shadow);
}
.friend-link-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.friend-link-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.friend-link-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 6px;
}
.friend-link-desc {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 8px;
    line-height: 1.4;
}
.friend-link-category {
    display: inline-block;
    font-size: 11px;
    color: var(--text-tertiary);
    background: var(--glass-bg-hover);
    padding: 3px 8px;
    border-radius: var(--radius-pill);
    align-self: flex-end;
    margin-left: auto;
    margin-top: 4px;
}
.timeline-list {
    width: 100%;
    margin: 0 auto;
    padding: 0;
    position: relative;
    margin-bottom: 40px;
}
.timeline-list::before {
    content:"";
    position: absolute;
    left: 50%;
    top: 10px;
    bottom: 100px;
    width: 2px;
    height: 100%;
    margin-left: -1px;
    background: linear-gradient(to bottom, var(--accent-primary), var(--accent-light));
    z-index: 0;
}
.timeline-item {
    width: 50%;
    padding-top: 60px;
    position: relative;
    animation: fadeInUp 1s ease both;
    list-style: none;
}
.timeline-item:nth-child(odd) {
    float: left;
    clear: left;
    padding-right: 20px;
}
.timeline-item:nth-child(even) {
    float: right;
    clear: right;
    padding-left: 20px;
    margin-top: 100px;
}
.timeline-item:nth-child(1) {
    animation-delay: 0.1s;
}
.timeline-item:nth-child(2) {
    animation-delay: 0.2s;
}
.timeline-item:nth-child(3) {
    animation-delay: 0.3s;
}
.timeline-item:nth-child(4) {
    animation-delay: 0.4s;
}
.timeline-item:nth-child(5) {
    animation-delay: 0.5s;
}
.timeline-header {
    margin-bottom: 10px;
}
.timeline-tag {
    display: inline-block;
    height: 40px;
    line-height: 40px;
    padding: 0 10px;
    margin-right: 10px;
    font-size: 12px;
    color: var(--text-secondary);
    background: var(--glass-bg);
    border-radius: var(--radius-sm);
    box-shadow: var(--glass-shadow);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid var(--glass-border);
    text-decoration: none;
}
.timeline-tag a {
    text-decoration: none;
}
.timeline-item:nth-child(odd) .timeline-tag {
    float: right;
    margin-right: 0;
    margin-left: 10px;
}
.timeline-tag.type i {
    font-size: 20px;
    color: var(--text-secondary);
}
.timeline-card {
    padding: 15px;
    background: var(--glass-bg);
    border-radius: var(--radius);
    box-shadow: var(--glass-shadow);
    word-break: break-all;
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid var(--glass-border);
}
.timeline-card::before {
    content:"";
    position: absolute;
    right: -28px;
    top: -12px;
    width: 12px;
    height: 4px;
    border: 4px solid var(--glass-border);
    border-radius: 8px;
    background-color: var(--accent-primary);
    z-index: 1;
}
.timeline-item:nth-child(even) .timeline-card::before {
    left: -28px;
    right: auto;
}
.timeline-title {
    font-size: 16px;
    line-height: 30px;
    font-weight: bold;
    color: var(--text-primary);
    margin: 0 0 10px 0;
}
.timeline-title a {
    color: var(--text-primary);
    text-decoration: none;
}
.timeline-content {
    font-size: 16px;
    line-height: 26px;
    color: var(--text-secondary);
    overflow: hidden;
}
.timeline-content a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s;
}
.timeline-content a:hover {
    color: var(--text-secondary);
}
.timeline-footer {
    margin-top: 10px;
    color: var(--text-tertiary);
}
.timeline-item:nth-child(even) .timeline-footer {
    text-align: right;
}
.timeline-action {
    display: inline-block;
    margin-right: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
    color: var(--text-tertiary);
}
.timeline-item:nth-child(even) .timeline-action {
    margin-right: 0;
    margin-left: 20px;
}
.timeline-action i {
    font-size: 16px;
    margin-right: 5px;
}
.like-active {
    color: #ff5f53;
}
.timeline-tag:hover, .timeline-card:hover {
    transform: translateY(-4px);
    background: var(--glass-bg-hover);
    box-shadow: var(--glass-shadow-accent);
}
.timeline-action:hover {
    transform: translateY(0);
    background: transparent;
    box-shadow: none;
}
.clearfix::after {
    content:"";
    display: block;
    clear: both;
    visibility: hidden;
    height: 0;
}
@media screen and (max-width: 768px) {
    .timeline-list::before {
        left: 20px;
        margin-left: 0;
    }
    .timeline-item {
        width: 100%;
        padding: 40px 10px 0 50px !important;
        float: none !important;
        clear: both !important;
        margin-top: 0 !important;
    }
    .timeline-card::before {
        left: -48px !important;
        right: auto !important;
    }
    .timeline-tag {
        float: left !important;
        margin-left: 0 !important;
        margin-right: 10px !important;
    }
    .timeline-footer {
        text-align: left !important;
    }
    .timeline-action {
        margin-left: 0 !important;
        margin-right: 20px !important;
    }
    .image-list.type-a a, .image-list.type-b a, .image-list.type-c a, .image-list.type-d a {
        width: calc((100% - 15px) / 2);
        height: 100px;
        margin-right: 15px;
    }
    .image-list.type-a a:nth-child(2n), .image-list.type-b a:nth-child(2n), .image-list.type-c a:nth-child(2n), .image-list.type-d a:nth-child(2n) {
        margin-right: 0;
    }
    .timeline-card iframe {
        height: 200px;
    }
}
.album-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}
.album-item {
    display: flex;
    flex-direction: column;
    background: var(--glass-bg);
    border-radius: var(--radius);
    box-shadow: var(--glass-shadow);
    transition: all 0.3s;
    overflow: hidden;
    border: 1px solid var(--glass-border);
}
.album-item:hover {
    box-shadow: var(--glass-shadow-accent);
}
.album-cover {
    width: 100%;
    height: 180px;
    overflow: hidden;
    position: relative;
}
.album-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}
.album-item:hover .album-cover img {
    transform: scale(1.05);
}
.album-cover .album-title-overlay {
    position: absolute;
    bottom: 5px;
    right: 8px;
    background: rgb(0 0 0 / 20%);
    color: #ffffff;
    padding: 2px 10px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 100;
    z-index: 2;
    backdrop-filter: blur(4px);
}
.album-content {
    padding: 0px 10px 10px 10px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.album-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}
.album-footer {
    border-top: 1px solid var(--border-divider);
    padding-top: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.album-author {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}
.album-author .author-avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid var(--glass-border);
}
.album-author .author-name {
    font-size: 12px;
    color: var(--text-secondary);
    font-weight: 500;
}
.album-stats {
    display: flex;
    gap: 12px;
    font-size: 11px;
    color: var(--text-tertiary);
}
.album-stats .stat-item {
    display: flex;
    align-items: center;
    gap: 3px;
}
.album-stats .stat-item i {
    font-size: 6px;
}
.comments {
    max-width: 800px;
    margin: 0 auto;
    background-color: #fff;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.comments-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f2f2f2;
    color: #1d2129;
    display: flex;
    align-items: center;
    gap: 8px;
}
.comments-title .noticom {
    font-size: 15px;
    font-weight: normal;
    color: #86909c;
    margin-left: 10px;
}
.comments-title i {
    color: #07C160;
    font-size: 20px;
}
.popabxxk {
    margin-bottom: 15px;
}
.popabxxk-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.popabxxk-content p {
    color: #86909c;
    font-size: 13px;
}
.popabxxk-content input {
    padding: 10px 12px;
    border: 1px solid #e5e6eb;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.2s;
}
.popabxxk-content input:focus {
    outline: none;
    border-color: #07C160;
}
.respond_box {
    width: 100%;
}
.commentform {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.avatar_box {
    display: flex;
    align-items: center;
    gap: 10px;
}
.avatar_box img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    object-fit: cover;
}
.avatar_box #btntck {
    color: #86909c;
    font-size: 13px;
}
.comarea {
    width: 100%;
}
.comarea textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e5e6eb;
    border-radius: 18px;
    resize: none;
    font-size: 15px;
    line-height: 1.5;
    transition: all 0.2s;
}
.comarea textarea:focus {
    outline: none;
    border-color: #07C160;
    box-shadow: 0 0 0 2px rgba(7, 193, 96, 0.1);
}
.com_footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.com_tools {
    display: flex;
    gap: 10px;
    align-items: center;
}
.com_tools a {
    text-decoration: none;
    color: #86909c;
    font-size: 14px;
    padding: 5px 10px;
    border-radius: 15px;
    transition: all 0.2s;
}
.com_tools a:hover {
    background-color: #e9eaeb;
    color: #1d2129;
}
.com_tools .smile_btn-a {
    font-size: 18px;
}
.com_tools .spothighlight {
    color: #07C160;
    background-color: rgba(7, 193, 96, 0.1);
}
.com_push {
    display: flex;
    align-items: center;
    gap: 10px;
}
.commentreply a {
    color: #007AFF;
    text-decoration: none;
    font-size: 14px;
}
.push_comment {
    background-color: #07C160;
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}
.push_comment:hover {
    background-color: #06a852;
    transform: translateY(-1px);
}
.push_comment:active {
    transform: translateY(0);
}
.commentshow {
    position: relative;
    background: var(--glass-bg);
    border-radius: var(--radius);
    padding: 20px;
    box-shadow: var(--glass-shadow);
}
.commentshow:hover {
    box-shadow: var(--glass-shadow-accent);
}
.commentcuta {
    background: unset;
    box-shadow: none;
    padding: 0px;
}
.commentcuta:hover {
    box-shadow: none;
}
#AjaxCommentBegin {
    margin: -13px;
}
.comment_list {
    list-style: none;
}
.comment_item {
    display: flex;
    margin-bottom: 15px;
    animation: fadeIn 0.3s ease;
}
.comment_list.level-1 .comment_item {
    justify-content: flex-start;
}
.comment_list.level-1 .profile img {
    width: 42px;
    height: 42px;
}
.comment_list.level-2 .comment_item {
    flex-direction: row-reverse;
    justify-content: flex-start;
}
.comment_list.level-2 .profile {
    margin-right: 0;
    margin-left: 15px;
}
.comment_list.level-2 .profile img {
    width: 42px;
    height: 42px;
}
.profile {
    margin-right: 15px;
    flex-shrink: 0;
}
.profile a {
    position: relative;
    display: inline-block;
}
.profile img {
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease;
}
.profile img:hover {
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1);
}
.prove {
    position: absolute;
    bottom: 2px;
    right: 2px;
}
.rztb {
    width: 16px !important;
    height: 16px !important;
    border-radius: 4px !important;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.8) !important;
}
.at-symbol {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    opacity: 0;
    pointer-events: none;
    z-index: 2;
    background: rgb(52 73 94 / 41%);
    font-size: 1.5rem;
}
.profile a:hover .at-symbol {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}
.profile a:hover img {
    opacity: 0.7;
}
.info {
    max-width: 70%;
}
.comment_list.level-2 .info {
    text-align: left;
}
.info_header {
    margin-bottom: 6px;
    font-size: 13px;
}
.info_header .left {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}
.comment_list.level-2 .info_header .left {
    justify-content: flex-end;
}
.comment_list.level-1 .author {
    order: 1;
    white-space: nowrap;
}
.comment_list.level-1 .info_header span {
    order: 2;
    white-space: nowrap;
    color: var(--text-secondary);
}
.comment_list.level-2 .author {
    order: 3;
    white-space: nowrap;
}
.comment_list.level-2 .info_header span {
    order: 1;
    color: #86909c;
    white-space: nowrap;
}
.comment_list.level-2 .info_header span {
    position: relative;
    padding-right: 8px;
}
.comment_list.level-2 .author {
    position: relative;
}
.author a {
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}
.comment_list.level-1 .author a {
    color: var(--text-secondary);
    font-weight: 600;
}
.comment_list.level-2 .author a {
    color: var(--text-secondary);
    font-weight: 600;
}
.lhpl-comment-list {
    background: var(--glass-bg);
    border-radius: var(--radius);
    box-shadow: var(--glass-shadow);
}
.lhpl-empty-page {
    text-align: center;
    padding: 20px;
    margin: 0 auto;
}
.lhpl-empty-page i {
    font-size: 40px;
    color: #999;
}
.lhpl-empty-page p {
    font-size: 12px;
    color: var(--text-primary);
}
.comment_body {
    position: relative;
}
.comment_body p {
    padding: 12px 18px;
    border-radius: 18px;
    line-height: 1.6;
    word-break: break-word;
    font-size: 15px;
}
.comment_list.level-1 .comment_body p {
    background: var(--glass-bg);
    border: 1px solid var(--border-divider);
    color: var(--text-primary);
}
.comment_list.level-2 .comment_body p {
    background: var(--glass-bg);
    color: var(--text-secondary);
    border: 1px solid var(--border-divider);
}
.comment_list.level-1 .comment_body::before {
    content:'';
    position: absolute;
    left: -10px;
    top: 12px;
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-right: 10px solid #e3e3e3;
    border-bottom: 8px solid transparent;
}
.comment_list.level-2 .comment_body::after {
    content:'';
    position: absolute;
    right: -10px;
    top: 12px;
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-left: 10px solid #e3e3e3;
    border-bottom: 8px solid transparent;
}
.commentcut > .comment_list > .comment_item > .info > .comment_body > .expression > .commentcuta > .level-2 > .comment_item > .info > .comment_body::before {
    content:'';
    position: absolute;
    left: 0px;
    top: 0px;
    width: 0;
    height: 0;
    border-top: 0px solid transparent;
    border-right: 0px solid #e3e3e3;
    border-bottom: 0px solid transparent;
}
.commentcut > .comment_list > .comment_item> .info > .comment_body > .expression > .commentcuta .level-2 > .comment_item {
    padding-top: 20px;
}
.commentcut > .comment_list > .comment_item > .info > .comment_body > .expression > .commentcuta > .level-2 > .comment_item > .info {
    max-width: 100%;
}
.commentat {
    font-weight: 600;
    margin-right: 5px;
}
.comment_list.level-1 .commentat {
    color: var(--text-primary);
}
.comment_list.level-2 .commentat {
    color: var(--text-primary);
}
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@media (max-width: 600px) {
    .comments {
        padding: 15px;
        border-radius: 12px;
    }
    .info {
        max-width: 80%;
    }
    .comment_list.level-1 .profile img {
        width: 50px;
        height: 50px;
    }
    .comment_list.level-2 .profile img {
        width: 44px;
        height: 44px;
    }
    .commentshow:not(:last-child):after {
        left: 60px;
        right: 60px;
    }
    .comment_body p {
        font-size: 14px;
        padding: 10px 15px;
    }
    .com_tools {
        flex-wrap: wrap;
    }
    .push_comment {
        padding: 6px 15px;
        font-size: 14px;
    }
}
.comment-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:rgb(0 0 0 / 20%);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.comment-modal-overlay.activeplk {
    opacity: 1;
    visibility: visible;
}
.comment-modal-container {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
}
.comment-modal {
    background: var(--sunlight-darkness);
    border: 1px solid var(--border-divider);
    border-radius: 8px;
    width: 90%;
    max-width: 350px;
    padding: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(0);
    transition: transform 0.3s ease;
}
.comment-modal-container > .comment-modal > #modal-comment-container > #divCommentPost > .form-horizontal > .avacontent> .popabxxk-content {
    margin-top: 0px;
}
.comment-modal-container > .comment-modal > #modal-comment-container > #divCommentPost > .form-horizontal > .respond_box > .commentform > .avatar_box {
    padding-top: 0px;
}
.comment-modal-container > .comment-modal > #modal-comment-container > #divCommentPost {
    margin-bottom: 0px;
}
@media (max-width: 768px) {
    .comment-modal-container {
        align-items: flex-end;
        justify-content: center;
    }
    .comment-modal {
        width: 100%;
        max-width: none;
        border-radius: 16px 16px 0 0;
        padding: 20px 15px;
        transform: translateY(100%);
        max-height: 80vh;
        overflow-y: auto;
    }
    .comment-modal-overlay.activeplk .comment-modal {
        transform: translateY(0);
    }
}
.one-modal-mask {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    will-change: opacity;
    opacity: 0;
    padding: 20px;
    transition: opacity 0.28s ease;
}
.one-modal-mask.one-show {
    opacity: 1;
}
.one-setting-modal {
    width: 680px;
    height: 560px;
    background: var(--sunlight-darkness);
    border-radius: 24px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.18);
    will-change: transform;
    transform: translateY(0);
    backface-visibility: hidden;
    transition: transform 0.28s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    overflow: hidden;
    border: 1px solid var(--border-divider);
}
.one-modal-mask.one-show .one-setting-modal {
    transform: translateY(0);
}
.one-modal-left {
    width: 180px;
    border-right: 1px solid var(--border-divider);
    padding: 28px 0;
    display: flex;
    flex-direction: column;
}
.one-modal-left h2 {
    padding: 0 25px 25px;
    font-size: 16px;
    color: var(--accent-primary);
    border-bottom: 1px solid var(--border-divider);
    margin-bottom: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}
.one-menu-item {
    padding: 14px 20px;
    font-size: 14px;
    color: var(--accent-primary);
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    border-radius: 8px;
    margin: 2px 12px;
    gap: 5px;
}
.one-menu-item.one-active {
    background: #ffa3b4;
    color: #ffffff;
    font-weight: 500;
}
.one-menu-item:hover:not(.one-active) {
    background: #f2f3f5;
    color: #ff7891;
}
.one-modal-right {
    flex: 1;
    display: flex;
    flex-direction: column;
}
.one-modal-header {
    padding: 23px 28px;
    border-bottom: 1px solid var(--border-divider);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.one-modal-header h2 {
    font-size: 16px;
    color: var(--accent-primary);
    font-weight: 600;
}
.one-close-btn {
    background: none;
    border: none;
    font-size: 32px;
    color: #8c8c8c;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}
.one-close-btn:hover {
    color: #f56c6c;
    transform: rotate(90deg);
}
.one-modal-content {
    flex: 1;
    padding: 28px;
    overflow-y: auto;
}
.one-modal-content::-webkit-scrollbar {
    width: 0;
}
.one-content-panel {
    display: none;
}
.one-content-panel.one-active {
    display: block;
}
.one-setting-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}
.one-setting-item:last-child {
    border-bottom: none;
}
.one-setting-item span {
    font-size: 15px;
    color: #6b7280;
    font-weight: 500;
}
.one-switch {
    width: 50px;
    height: 26px;
    background: #dcdfe6;
    border-radius: 100px;
    position: relative;
    cursor: pointer;
    transition: all 0.2s;
}
.one-switch::after {
    content:"";
    position: absolute;
    width: 22px;
    height: 22px;
    background: #fff;
    border-radius: 50%;
    top: 2px;
    left: 2px;
    transition: all 0.2s;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}
.one-switch.one-on {
    background: var(--accent-primary);
}
.one-switch.one-on::after {
    left: 26px;
}
.one-section-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.one-section-title {
    font-size: 14px;
    color: #6b7280;
    font-weight: 500;
    margin-bottom: 16px;
    display: block;
}
.one-tips {
    color: #f56c6c;
    font-size: 12px;
    display: none;
}
.one-tips.one-show {
    display: block;
}
.one-bg-upload-area {
    width: 100%;
    height: 180px;
    border: 2px dashed #dcdfe6;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    margin-bottom: 28px;
    transition: all 0.2s;
}
.one-bg-upload-area:hover {
    border-color: #409eff;
    background: rgba(64, 158, 255, 0.05);
}
.one-bg-upload-area img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}
.one-upload-text, .one-plus-icon {
    position: relative;
    z-index: 3;
    color: #fff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
    opacity: 0;
    transition: opacity 0.2s;
    pointer-events: none;
}
.one-bg-upload-area:hover .one-upload-text, .one-bg-upload-area:hover .one-plus-icon {
    opacity: 1;
}
.one-plus-icon {
    font-size: 48px;
    font-weight: 200;
}
#oneBgFileInput {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
    z-index: 10;
}
.one-bg-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 28px;
}
.one-bg-item {
    height: 105px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.2s;
    position: relative;
}
.one-bg-item:hover {
    border-color: #ffa3b4;
}
.one-bg-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.one-bg-item .one-hover-tip {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    text-align: center;
    opacity: 0;
    transition: opacity 0.2s ease;
    padding: 8px;
}
.one-bg-item:hover .one-hover-tip {
    opacity: 1;
}
.one-bg-url-input {
    width: 100%;
    padding: 15px 18px;
    border: 1px solid #e8e9ed;
    border-radius: 12px;
    font-size: 14px;
    outline: none;
    transition: all 0.2s;
}
.one-bg-url-input:focus {
    border-color: #409eff;
    box-shadow: 0 0 0 3px rgba(64, 158, 255, 0.12);
}
.one-hidden {
    display: none !important;
}
.one-color-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 28px;
}
.one-color-item {
    height: 105px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    overflow: hidden;
}
.one-color-item .one-hover-tip {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    opacity: 0;
    transition: opacity 0.2s ease;
}
.one-color-item:hover .one-hover-tip {
    opacity: 1;
}
.one-color-slider {
    width: 100%;
    height: 10px;
    border-radius: 5px;
    background: linear-gradient(to right, #ff9a9e, #fad0c4, #fecfef, #a8edea, #fed6e3, #d4fc79, #96e6a1);
    cursor: pointer;
    position: relative;
    margin: 20px 0 32px 0;
}
.one-color-slider-thumb {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 18px;
    height: 18px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    pointer-events: none;
}
.comment-modala {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1200;
}
.modal-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}
.modal-content {
    position: relative;
    width: 90%;
    max-width: 400px;
    margin: 60px auto;
    background: var(--sunlight-darkness);
    border: 1px solid var(--border-divider);
    border-radius: var(--radius);
    padding: 15px;
    max-height: 80vh;
    overflow-y: auto;
}
.modal-content::-webkit-scrollbar {
    width: 0;
}
.comment-body {
    min-height: 100px;
}
/* 其他 */
 #wrap-load {
    flex: 1;
}
.randomsxtb {
    margin-left: auto;
    font-size: 16px;
    opacity: 0.8;
    color: var(--text-primary);
    cursor: pointer;
}
.randomsxbq {
    margin-left: auto;
    font-size: 16px;
    opacity: 0.8;
    color: var(--text-primary);
    cursor: pointer;
}
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0);
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.6s ease, background-color 0.6s ease;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}
.popup-overlay.activesd {
    opacity: 1;
    background-color: rgba(0, 0, 0, 0.2);
    pointer-events: auto;
}
.ejectnr {
    transform: translateY(100%);
    transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
    width: 100%;
}
.popup-overlay.activesd .ejectnr {
    transform: translateY(0);
}
@media (min-width: 1100px) {
    .ejectnr {
        width: 1080px;
    }
}
@-webkit-keyframes slideUpab {
    from {
        -webkit-transform:translateY(100%);
    }
    to {
        -webkit-transform:translateY(0);
    }
}
@keyframes slideUpab {
    from {
        transform:translateY(100%);
    }
    to {
        transform:translateY(0);
    }
}
.loader {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease;
    z-index: 9999;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    perspective: 800px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    will-change: transform;
}
.loader.show {
    opacity: 1;
    visibility: visible;
}
.loader .loader-item {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
}
.loader .loader-item:nth-child(1) {
    border-bottom: 6px solid #f13a8f;
    transform: rotateX(35deg) rotateY(-45deg);
    animation: rotate-one 1s linear infinite;
}
.loader .loader-item:nth-child(2) {
    border-right: 6px solid #4bc8eb;
    transform: rotateX(50deg) rotateY(10deg);
    animation: rotate-two 1s linear infinite;
}
.loader .loader-item:nth-child(3) {
    border-top: 6px solid #36f372;
    transform: rotateX(35deg) rotateY(55deg);
    animation: rotate-three 1s linear infinite;
}
@keyframes rotate-one {
    to {
        transform: rotateX(35deg) rotateY(-45deg) rotateZ(360deg);
    }
}
@keyframes rotate-two {
    to {
        transform: rotateX(50deg) rotateY(10deg) rotateZ(360deg);
    }
}
@keyframes rotate-three {
    to {
        transform: rotateX(35deg) rotateY(55deg) rotateZ(360deg);
    }
}
.contentk {
    text-align: center;
    padding: 0px 0px 60px 0px;
    max-width: 400px;
    margin: 0 auto;
}
.contentk img {
    max-width: 350px;
    height: auto;
    display: inline-block;
}
.contentk .comment-list {
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}
.mobile-comment-btn {
    display: none;
    padding: 6px 12px;
    border-radius: 15px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    box-shadow: var(--glass-shadow-accent);
    transition: all 0.3s;
    white-space: nowrap;
    color: var(--accent-primary);
    background: var(--glass-bg);
}
.mobile-comment-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 140, 158, 0.3);
}