

:root {
    --primary-color: #0db984;
    --primary-light: #34d399;
    --primary-dark: #059669;
    --primary-bg: rgba(16, 185, 129, 0.08);
    
    
    --accent-color: #885af3;
    --accent-light: #a78bfa;
    
    
    --bg-body: #f0fdf4;
    --bg-white: #fcfdfd;
    --bg-light: #f8fafc;
    --bg-muted: #f2f7fc;
    
    
    --text-dark: #1e293b;
    --text-body: #48526a;
    --text-muted: #94a3b8;
    --text-light: #cbd5e1;
    
    
    --border-color: #e2e8f0;
    --border-light: #f1f5f9;
    
    
    --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.1);
    --shadow-primary: 0 4px 20px rgba(16, 185, 129, 0.25);
    
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    
    
    --header-height: 70px;
    --sidebar-width: 320px;
    --container-width: 1280px;
    
    
    --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}


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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', -apple-system, sans-serif;
    background: var(--bg-body);
    color: var(--text-body);
    line-height: 1.7;
    font-size: 12px;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

img {
    max-width: 100%;
    display: block;
}

ul, ol {
    list-style: none;
}


.t9d6-container-k8ff {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.t9d6-layout-q0bb {
    display: grid;
    grid-template-columns: 1fr var(--sidebar-width);
    gap: 30px;
    padding-top: 31px;
}

.t9d6-main-content-a288 {
    min-width: 0;
}

.t9d6-sidebar-rb6d {
    position: sticky;
    top: calc(var(--header-height) + 20px);
    height: fit-content;
}


.t9d6-header-c80e {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
    z-index: 1000;
}

.t9d6-header-c80e .t9d6-container-k8ff {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.t9d6-logo-x900 {
    display: flex;
    align-items: center;
    gap: 10px;
}

.t9d6-logo-x900 img {
    height: 36px;
}

.t9d6-logo-text-o00b img {
    height: 18px;
    opacity: 0.8;
}


.t9d6-nav-list-g26d {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--bg-muted);
    padding: 7px;
    border-radius: var(--radius-full);
}

.t9d6-nav-list-g26d li a {
    display: block;
    padding: 11px 20px;
    color: var(--text-body);
    font-size: 16px;
    font-weight: 500;
    border-radius: var(--radius-full);
    transition: var(--transition);
}

.t9d6-nav-list-g26d li a:hover,
.t9d6-nav-list-g26d li a.active {
    background: var(--bg-white);
    color: var(--primary-color);
    box-shadow: var(--shadow-sm);
}


.t9d6-menu-toggle-p78d {
    display: none;
    width: 32px;
    height: 30px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.t9d6-menu-toggle-p78d span {
    width: 22px;
    height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: var(--transition);
}


.t9d6-main-jd9a {
    padding-top: var(--header-height);
    min-height: 100vh;
}


.t9d6-banner-k044 {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 50%, #70e5b7 100%);
    border-radius: var(--radius-xl);
    padding: 61px 50px;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
    color: #fcfdfe;
}

.t9d6-banner-k044::before {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -20%;
    width: 80%;
    height: 100%;
    background: rgba(255, 254, 255, 0.1);
    border-radius: 50%;
}

.t9d6-banner-k044::after {
    content: '';
    position: absolute;
    top: -30%;
    left: -10%;
    width: 50%;
    height: 80%;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.t9d6-banner-content-j926 {
    position: relative;
    z-index: 1;
    max-width: 600px;
}

.t9d6-banner-tag-jf6a {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 18px;
}

.t9d6-banner-title-pf88 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 15px;
}

.t9d6-banner-desc-e8d8 {
    font-size: 1.1rem;
    opacity: 0.95;
    margin-bottom: 30px;
    line-height: 1.7;
}

.t9d6-banner-btn-e20e {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: var(--bg-white);
    color: var(--primary-dark);
    font-weight: 600;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.t9d6-banner-btn-e20e:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    color: var(--primary-dark);
}


.t9d6-section-e0f8 {
    margin-bottom: 40px;
}

.t9d6-section-header-lf77 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 21px;
}

.t9d6-section-title-ka2f {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
}

.t9d6-section-title-ka2f i {
    width: 34px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-bg);
    color: var(--primary-color);
    border-radius: var(--radius-md);
    font-size: 16px;
}

.t9d6-section-more-v75d {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 16px;
    background: var(--bg-white);
    color: var(--text-muted);
    font-size: 13px;
    border-radius: var(--radius-full);
    border: 1px solid var(--border-color);
}

.t9d6-section-more-v75d:hover {
    color: var(--primary-color);
    border-color: var(--primary-color);
}


.t9d6-article-grid-i418 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.article-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xs);
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.article-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.article-card-image {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: var(--bg-muted);
}

.article-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.article-card:hover .article-card-image img {
    transform: scale(1.08);
}

.article-card-tag {
    position: absolute;
    top: 14px;
    left: 17px;
    padding: 5px 12px;
    background: var(--primary-color);
    color: #fdffff;
    font-size: 12px;
    font-weight: 500;
    border-radius: var(--radius-full);
}

.article-card-body {
    padding: 19px;
}

.article-card-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.5;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-card-title a {
    color: inherit;
}

.article-card-title a:hover {
    color: var(--primary-color);
}

.article-card-desc {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 11px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-card-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 13px;
    color: var(--text-muted);
}

.article-card-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}


.t9d6-article-list-f7a7 {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.article-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.article-item:hover {
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.article-item-image {
    flex-shrink: 0;
    width: 180px;
    height: 120px;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--bg-muted);
}

.article-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.article-item:hover .article-item-image img {
    transform: scale(1.05);
}

.article-item-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.article-item-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    line-height: 1.5;
}

.article-item-title a {
    color: inherit;
}

.article-item-title a:hover {
    color: var(--primary-color);
}

.article-item-desc {
    flex: 1;
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.7;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-item-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 12px;
}

.article-item-tag {
    padding: 4px 12px;
    background: var(--primary-bg);
    color: var(--primary-color);
    font-size: 12px;
    font-weight: 500;
    border-radius: var(--radius-full);
}

.article-item-meta {
    display: flex;
    gap: 14px;
    font-size: 13px;
    color: var(--text-muted);
}

.article-item-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}


.t9d6-sidebar-widget-m43a {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-bottom: 24px;
    border: 1px solid var(--border-light);
}

.t9d6-sidebar-title-x1c0 {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--bg-muted);
}

.t9d6-sidebar-title-x1c0 i {
    color: var(--primary-color);
}


.t9d6-hot-list-l99a {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hot-item {
    display: flex;
    gap: 14px;
}

.hot-item-rank {
    flex-shrink: 0;
    width: 28px;
    height: 31px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-muted);
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 600;
    border-radius: var(--radius-sm);
}

.hot-item-rank.top {
    background: var(--primary-color);
    color: #fff;
}

.hot-item-content {
    flex: 1;
    min-width: 0;
}

.hot-item-title {
    font-size: 15px;
    color: var(--text-dark);
    line-height: 1.5;
    margin-bottom: 4px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.hot-item-title a {
    color: inherit;
}

.hot-item-title a:hover {
    color: var(--primary-color);
}

.hot-item-meta {
    font-size: 13px;
    color: var(--text-muted);
}


.t9d6-tag-cloud-e2c2 {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.t9d6-tag-cloud-e2c2 a {
    padding: 6px 14px;
    background: var(--bg-muted);
    color: var(--text-body);
    font-size: 13px;
    border-radius: var(--radius-full);
    transition: var(--transition);
}

.t9d6-tag-cloud-e2c2 a:hover {
    background: var(--primary-color);
    color: #fff;
}


.t9d6-service-grid-g07e {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.t9d6-service-card-j9cf {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 30px 20px;
    text-align: center;
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.t9d6-service-card-j9cf:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-primary);
    border-color: var(--primary-light);
}

.t9d6-service-icon-qa2a {
    width: 72px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-bg) 0%, rgba(18, 182, 126, 0.15) 100%);
    border-radius: var(--radius-lg);
}

.t9d6-service-icon-qa2a img {
    width: 41px;
    height: 38px;
}

.t9d6-service-title-dd80 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.t9d6-service-desc-m61a {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
}


.t9d6-detail-wrap-lf79 {
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--border-light);
    margin-bottom: 30px;
}

.t9d6-detail-header-bbda {
    padding: 40px;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
    border-bottom: 1px solid var(--border-light);
}

.t9d6-detail-title-b37c {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.4;
    margin-bottom: 20px;
}

.t9d6-detail-meta-x5fb {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 15px;
    color: var(--text-muted);
}

.t9d6-detail-meta-x5fb span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.t9d6-detail-meta-x5fb a {
    color: var(--primary-color);
}

.t9d6-detail-content-n3ff {
    padding: 40px;
}

.t9d6-detail-content-n3ff p {
    margin-bottom: 1.5em;
    line-height: 1.9;
}

.t9d6-detail-content-n3ff img {
    border-radius: var(--radius-md);
    margin: 20px 0;
}

.t9d6-detail-content-n3ff h2, .t9d6-detail-content-n3ff h3 {
    color: var(--text-dark);
    margin: 1.8em 0 1em;
    font-weight: 600;
}

.t9d6-detail-content-n3ff blockquote {
    background: var(--bg-light);
    border-left: 4px solid var(--primary-color);
    padding: 20px 24px;
    margin: 24px 0;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}


.t9d6-detail-tags-aa63 {
    padding: 24px 40px;
    background: var(--bg-light);
    border-top: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.t9d6-detail-tags-label-w64b {
    font-size: 14px;
    color: var(--text-muted);
}

.t9d6-detail-tags-aa63 a {
    padding: 4px 14px;
    background: var(--bg-white);
    color: var(--text-body);
    font-size: 13px;
    border-radius: var(--radius-full);
    border: 1px solid var(--border-color);
}

.t9d6-detail-tags-aa63 a:hover {
    background: var(--primary-color);
    color: #fffcfd;
    border-color: var(--primary-color);
}


.t9d6-detail-nav-dd8d {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.t9d6-detail-nav-item-pbc0 {
    padding: 24px;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.t9d6-detail-nav-item-pbc0:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-sm);
}

.t9d6-detail-nav-item-pbc0.t9d6-next-n7fe {
    text-align: right;
}

.t9d6-detail-nav-label-j34e {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.t9d6-detail-nav-item-pbc0.t9d6-next-n7fe .t9d6-detail-nav-label-j34e {
    justify-content: flex-end;
}

.t9d6-detail-nav-title-ldb8 {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-dark);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.t9d6-detail-nav-item-pbc0:hover .t9d6-detail-nav-title-ldb8 {
    color: var(--primary-color);
}

.t9d6-detail-nav-empty-r14e {
    background: var(--bg-light);
}

.t9d6-detail-nav-empty-r14e .t9d6-detail-nav-title-ldb8 {
    color: var(--text-muted);
}


.t9d6-related-section-ec02 {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 30px;
    border: 1px solid var(--border-light);
}

.t9d6-related-title-x32b {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 23px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--bg-muted);
    display: flex;
    align-items: center;
    gap: 8px;
}

.t9d6-related-title-x32b i {
    color: var(--primary-color);
}

.t9d6-related-grid-p5b7 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.related-item {
    padding: 18px;
    background: var(--bg-light);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.related-item:hover {
    background: var(--bg-muted);
}

.related-item-title {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    line-height: 1.5;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.related-item-title a {
    color: inherit;
}

.related-item-title a:hover {
    color: var(--primary-color);
}

.related-item-meta {
    font-size: 13px;
    color: var(--text-muted);
    display: flex;
    gap: 12px;
}


.t9d6-category-header-e43e {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    border-radius: var(--radius-xl);
    padding: 50px;
    margin-bottom: 28px;
    text-align: center;
    color: #fffffe;
}

.t9d6-category-title-rfbc {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.t9d6-category-desc-y818 {
    font-size: 1rem;
    opacity: 0.9;
}


.t9d6-pagination-ld14 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 40px;
}

.t9d6-pagination-ld14 a,
.t9d6-pagination-ld14 span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 14px;
    background: var(--bg-white);
    color: var(--text-body);
    font-size: 17px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.t9d6-pagination-ld14 a:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.t9d6-pagination-ld14 .active {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}


.t9d6-footer-t9ee {
    background: var(--bg-white);
    border-top: 1px solid var(--border-light);
    padding: 63px 0 30px;
    margin-top: 58px;
}

.t9d6-footer-grid-g0b3 {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 42px;
}

.t9d6-footer-brand-vf8f p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-top: 16px;
}

.t9d6-footer-title-y8d5 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.t9d6-footer-links-t9c2 {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.t9d6-footer-links-t9c2 a {
    font-size: 14px;
    color: var(--text-muted);
}

.t9d6-footer-links-t9c2 a:hover {
    color: var(--primary-color);
}

.t9d6-footer-bottom-nd80 {
    text-align: center;
    padding-top: 28px;
    border-top: 1px solid var(--border-light);
    font-size: 14px;
    color: var(--text-muted);
}


@media (max-width: 1021px) {
    .t9d6-layout-q0bb {
        grid-template-columns: 1fr;
    }
    
    .t9d6-sidebar-rb6d {
        display: none;
    }
    
    .t9d6-service-grid-g07e {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .t9d6-footer-grid-g0b3 {
        grid-template-columns: 1fr 1fr;
    }
    
    .t9d6-related-grid-p5b7 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 58px;
    }
    
    .t9d6-nav-list-g26d {
        display: none;
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        flex-direction: column;
        background: var(--bg-white);
        padding: 16px;
        border-radius: 0;
        box-shadow: var(--shadow-lg);
        gap: 4px;
    }
    
    .t9d6-nav-list-g26d.active {
        display: flex;
    }
    
    .t9d6-menu-toggle-p78d {
        display: flex;
    }
    
    .t9d6-banner-k044 {
        padding: 40px 24px;
        border-radius: var(--radius-lg);
    }
    
    .t9d6-banner-title-pf88 {
        font-size: 1.6rem;
    }
    
    .t9d6-banner-desc-e8d8 {
        font-size: 0.95rem;
    }
    
    .t9d6-article-grid-i418 {
        grid-template-columns: 1fr;
    }
    
    .article-item {
        flex-direction: column;
    }
    
    .article-item-image {
        width: 100%;
        height: 180px;
    }
    
    .t9d6-service-grid-g07e {
        grid-template-columns: 1fr;
    }
    
    .t9d6-detail-header-bbda,
    .t9d6-detail-content-n3ff {
        padding: 24px;
    }
    
    .t9d6-detail-title-b37c {
        font-size: 1.4rem;
    }
    
    .t9d6-detail-nav-dd8d {
        grid-template-columns: 1fr;
    }
    
    .t9d6-detail-nav-item-pbc0.t9d6-next-n7fe {
        text-align: left;
    }
    
    .t9d6-detail-nav-item-pbc0.t9d6-next-n7fe .t9d6-detail-nav-label-j34e {
        justify-content: flex-start;
    }
    
    .t9d6-related-grid-p5b7 {
        grid-template-columns: 1fr;
    }
    
    .t9d6-footer-grid-g0b3 {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .t9d6-category-header-e43e {
        padding: 30px 20px;
        border-radius: var(--radius-lg);
    }
    
    .t9d6-category-title-rfbc {
        font-size: 1.5rem;
    }
}


::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--text-muted);
}


::selection {
    background: var(--primary-color);
    color: #fff;
}

/* ========================================= */
/* AI GENERATED STYLE OVERRIDES FOR PAPER ART BRAND */
/* ========================================= */

:root {
    /* Theme Tokens - Paper Cutting Art */
    --paper-red: #C91F37;
    --paper-red-dark: #8B1020;
    --paper-gold: #D4AF37;
    --paper-gold-light: #F4E5B0;
    --paper-ink: #1A1A1A;
    --paper-gray: #333333;
    --paper-bg: #F9F7F2;
    --paper-white: #FFFFFF;
    --paper-font-serif: "Noto Serif SC", "Songti SC", "SimSun", serif;
    --paper-shadow: 0 4px 20px rgba(139, 16, 32, 0.08);
    --paper-border-gold: 1px solid rgba(212, 175, 55, 0.3);
    
    /* Overwrite standard tokens */
    --primary-color: var(--paper-red);
    --primary-light: #E04E5E;
    --primary-dark: var(--paper-red-dark);
    --primary-bg: rgba(201, 31, 55, 0.05);
    --bg-body: var(--paper-bg);
    --bg-muted: #F0EFE9;
    --text-dark: var(--paper-ink);
    --text-body: var(--paper-gray);
    --radius-lg: 4px; /* Sharper corners for paper cut feel */
    --radius-xl: 8px;
    --radius-full: 2px;
}

/* Global Texture & Typography */
.paper-theme-main {
    font-family: var(--paper-font-serif);
    background-color: var(--paper-bg);
    position: relative;
}

.paper-texture-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.4;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.08'/%3E%3C/svg%3E");
}

/* Hero Section */
.paper-hero-section {
    position: relative;
    margin-bottom: 60px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--paper-shadow);
}

.paper-hero-swiper {
    height: 600px;
    background: var(--paper-ink);
}

.paper-hero-slide {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.paper-hero-image-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.paper-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

.paper-placeholder-pattern {
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 50% 50%, var(--paper-red-dark) 0%, var(--paper-red) 100%),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23D4AF37' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.paper-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(26,26,26,0.9) 0%, rgba(26,26,26,0.3) 60%, transparent 100%);
}

.paper-hero-content {
    position: relative;
    z-index: 2;
    max-width: var(--container-width);
    width: 100%;
    padding: 0 40px;
    color: #fff;
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards 0.3s;
}

@keyframes fadeInUp {
    to { transform: translateY(0); opacity: 1; }
}

.paper-hero-tag {
    display: inline-block;
    padding: 6px 12px;
    border: 1px solid var(--paper-gold);
    color: var(--paper-gold);
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.paper-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 4px 10px rgba(0,0,0,0.5);
    font-family: var(--paper-font-serif);
}

.paper-hero-desc {
    font-size: 1.2rem;
    max-width: 600px;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.8;
}

.paper-btn-primary {
    display: inline-block;
    padding: 12px 36px;
    background: var(--paper-red);
    color: #fff;
    border: 1px solid var(--paper-red);
    font-size: 16px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.paper-btn-primary:hover {
    background: transparent;
    border-color: #fff;
    color: #fff;
}

/* Sections General */
.paper-section {
    margin-bottom: 60px;
}

.paper-section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 30px;
    border-bottom: 1px solid var(--paper-border-gold);
    padding-bottom: 15px;
}

.paper-section-title {
    font-size: 2rem;
    color: var(--paper-ink);
    font-family: var(--paper-font-serif);
}

.paper-icon-decoration {
    color: var(--paper-red);
    margin-right: 10px;
}

.paper-more-link {
    color: var(--paper-gray);
    font-size: 14px;
    border-bottom: 1px solid transparent;
}

.paper-more-link:hover {
    color: var(--paper-red);
    border-color: var(--paper-red);
}

/* Highlights Grid */
.paper-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.paper-card-highlight {
    background: #fff;
    padding: 30px 20px;
    text-align: center;
    border: 1px solid #eee;
    transition: all 0.3s ease;
    position: relative;
}

.paper-card-highlight::after {
    content: '';
    position: absolute;
    top: 10px; right: 10px; bottom: 10px; left: 10px;
    border: 1px dashed #ddd;
    pointer-events: none;
    transition: all 0.3s ease;
}

.paper-card-highlight:hover {
    transform: translateY(-5px);
    box-shadow: var(--paper-shadow);
    border-color: var(--paper-gold);
}

.paper-card-highlight:hover::after {
    border-color: var(--paper-gold);
}

.paper-card-icon {
    font-size: 40px;
    color: var(--paper-red);
    margin-bottom: 20px;
}

.paper-card-title {
    font-size: 18px;
    margin-bottom: 10px;
    font-family: var(--paper-font-serif);
}

.paper-card-desc {
    font-size: 14px;
    color: #888;
}

/* Article/News Grid */
.paper-article-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.paper-article-card {
    display: flex;
    background: #fff;
    border-bottom: 2px solid var(--paper-red);
    transition: all 0.3s ease;
}

.paper-article-card:hover {
    box-shadow: var(--paper-shadow);
}

.paper-article-img-wrap {
    width: 200px;
    height: 160px;
    overflow: hidden;
    position: relative;
}

.paper-article-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.paper-article-card:hover .paper-article-img {
    transform: scale(1.1);
}

.paper-placeholder-img {
    width: 100%;
    height: 100%;
    background: #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
}

.paper-article-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--paper-red);
    color: #fff;
    padding: 2px 8px;
    font-size: 12px;
}

.paper-article-body {
    flex: 1;
    padding: 20px;
}

.paper-article-title {
    font-size: 18px;
    margin-bottom: 10px;
    font-family: var(--paper-font-serif);
}

.paper-article-title a {
    color: var(--paper-ink);
}

.paper-article-title a:hover {
    color: var(--paper-red);
}

.paper-article-desc {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.paper-article-meta {
    font-size: 12px;
    color: #999;
    display: flex;
    gap: 15px;
}

/* Featured Works List */
.paper-list-layout {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.paper-list-item {
    display: flex;
    align-items: center;
    background: #fff;
    padding: 15px;
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.paper-list-item:hover {
    border-color: var(--paper-gold);
    background: #fffbf0;
}

.paper-list-img-wrap {
    width: 100px;
    height: 100px;
    margin-right: 20px;
    overflow: hidden;
    border-radius: 4px;
}

.paper-list-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.paper-list-content {
    flex: 1;
}

.paper-list-title {
    font-size: 16px;
    margin-bottom: 5px;
    font-family: var(--paper-font-serif);
}

.paper-list-title a { color: var(--paper-ink); }

.paper-list-desc {
    font-size: 13px;
    color: #777;
    margin-bottom: 8px;
}

.paper-list-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.paper-tag-outline {
    font-size: 12px;
    color: var(--paper-red);
    border: 1px solid var(--paper-red);
    padding: 1px 6px;
}

.paper-list-meta {
    font-size: 12px;
    color: #aaa;
}

/* Sidebar Widgets */
.paper-widget {
    background: #fff;
    padding: 25px;
    margin-bottom: 30px;
    border-top: 4px solid var(--paper-red);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.paper-widget-title {
    font-size: 18px;
    font-family: var(--paper-font-serif);
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
    margin-bottom: 20px;
    color: var(--paper-ink);
}

.paper-info-box p {
    margin-bottom: 10px;
    font-size: 14px;
    color: #555;
    border-bottom: 1px dashed #eee;
    padding-bottom: 10px;
}

.paper-btn-block {
    display: block;
    text-align: center;
    background: var(--paper-ink);
    color: var(--paper-gold);
    padding: 12px;
    margin-top: 15px;
    font-weight: bold;
}

.paper-hot-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px dotted #eee;
}

.paper-rank-badge {
    width: 24px;
    height: 24px;
    background: #eee;
    color: #666;
    text-align: center;
    line-height: 24px;
    border-radius: 50%;
    font-size: 12px;
    margin-right: 12px;
}

.paper-rank-badge.top {
    background: var(--paper-red);
    color: #fff;
}

.paper-hot-title {
    font-size: 14px;
    margin-bottom: 2px;
}
.paper-hot-title a { color: #333; }

.paper-hot-meta {
    font-size: 12px;
    color: #999;
}

.paper-tag-cloud a {
    display: inline-block;
    padding: 4px 10px;
    margin: 0 5px 5px 0;
    background: #f5f5f5;
    color: #666;
    font-size: 12px;
    transition: all 0.2s;
}

.paper-tag-cloud a:hover {
    background: var(--paper-red);
    color: #fff;
}

.paper-about-text {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    text-align: justify;
}

/* Footer Adjustments */
.t9d6-footer-t9ee {
    background: var(--paper-ink);
    color: #999;
    border-top: 4px solid var(--paper-gold);
}

.t9d6-footer-title-y8d5 {
    color: var(--paper-gold);
}

.t9d6-footer-links-t9c2 a:hover {
    color: var(--paper-gold);
}

/* Swiper Pagination Customization */
.paper-pagination .swiper-pagination-bullet {
    background: #fff;
    opacity: 0.5;
}
.paper-pagination .swiper-pagination-bullet-active {
    background: var(--paper-red);
    opacity: 1;
}
