/* 全局样式重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 基础样式 */
.za49bebody {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Microsoft YaHei', 'PingFang SC', 'Hiragino Sans GB', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

.za49becontainer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

body {
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* 头部导航样式 */
.za49beheader {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.za49beheader .za49becontainer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.za49belogo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.za49belogo-text {
    font-size: 1.8rem;
    font-weight: bold;
    margin: 0;
}

.za49belogo-subtitle {
    font-size: 0.9rem;
    opacity: 0.9;
    white-space: nowrap;
}

.za49benav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.za49benav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s;
    padding: 0.5rem 0;
    display: block;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.za49benav-link:hover {
    opacity: 0.8;
}

.za49bemobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 5px;
    z-index: 1001;
    -webkit-tap-highlight-color: transparent;
}

.za49bemobile-menu-toggle.za49beactive .za49bemenu-icon:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.za49bemobile-menu-toggle.za49beactive .za49bemenu-icon:nth-child(2) {
    opacity: 0;
}

.za49bemobile-menu-toggle.za49beactive .za49bemenu-icon:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.za49bemenu-icon {
    width: 25px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* 主横幅区域 */
.za49behero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.za49behero-wrapper {
    display: flex;
    align-items: center;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.za49behero-content {
    flex: 1;
    text-align: left;
    z-index: 2;
}

.za49behero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.za49behero-img {
    max-width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
    animation: za49befloat 3s ease-in-out infinite;
    will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
    .za49behero-img {
        animation: none;
    }
}

@keyframes za49befloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

.za49behero-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-align: left;
}

.za49behero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.za49behero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.za49bebtn {
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
    border: 2px solid transparent;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    user-select: none;
}

.za49bebtn-primary {
    background: #fff;
    color: #667eea;
}

.za49bebtn-primary:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.za49bebtn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.za49bebtn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.za49bebtn-download {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    width: 100%;
    text-align: center;
}

.za49bebtn-download:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.za49behero-stats {
    display: flex;
    justify-content: flex-start;
    gap: 3rem;
    flex-wrap: wrap;
}

.za49bestat-item {
    text-align: center;
}

.za49bestat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.za49bestat-label {
    display: block;
    font-size: 1rem;
    opacity: 0.9;
}

/* 功能特点区域 */
.za49befeatures {
    padding: 80px 0;
    background: #fff;
}

.za49besection-header {
    text-align: center;
    margin-bottom: 3rem;
}

.za49besection-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #333;
}

.za49besection-description {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.za49befeatures-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.za49befeature-card {
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s;
    border: 1px solid #e0e0e0;
}

.za49befeature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: #667eea;
}

@media (hover: none) {
    .za49befeature-card:hover {
        transform: none;
    }
}

.za49befeature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.za49befeature-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #333;
}

.za49befeature-description {
    color: #666;
    line-height: 1.8;
}

/* 下载区域 */
.za49bedownload {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.za49bedownload-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.za49bedownload-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.za49bedownload-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

@media (hover: none) {
    .za49bedownload-card:hover {
        transform: none;
    }
}

.za49bedownload-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.za49bedownload-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: #333;
}

.za49bedownload-version {
    color: #667eea;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.za49bedownload-size {
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

/* 产品优势区域 */
.za49beadvantages {
    padding: 80px 0;
    background: #f9f9f9;
}

.za49beadvantages-content {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.za49beadvantage-item {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.za49beadvantage-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.za49beadvantage-title {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #667eea;
}

.za49beadvantage-text {
    color: #666;
    line-height: 1.8;
}

/* 常见问题区域 */
.za49befaq {
    padding: 80px 0;
    background: #fff;
}

.za49befaq-list {
    max-width: 900px;
    margin: 0 auto;
}

.za49befaq-item {
    background: #f9f9f9;
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #667eea;
    transition: all 0.3s;
}

.za49befaq-item:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateX(5px);
}

.za49befaq-question {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #333;
}

.za49befaq-answer {
    color: #666;
    line-height: 1.8;
}

/* 关于我们区域 */
.za49beabout {
    padding: 80px 0;
    background: #f9f9f9;
}

.za49beabout-content {
    max-width: 900px;
    margin: 0 auto;
}

.za49beabout-text {
    text-align: center;
}

.za49beabout-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.za49beabout-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.za49beabout-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.za49beabout-feature-icon {
    color: #667eea;
    font-weight: bold;
    font-size: 1.2rem;
}

.za49beabout-feature-text {
    color: #333;
    font-weight: 500;
}

/* 页脚样式 */
.za49befooter {
    background: #2c3e50;
    color: #fff;
    padding: 50px 0 20px;
}

.za49befooter-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.za49befooter-section {
    margin-bottom: 1rem;
}

.za49befooter-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.za49befooter-heading {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.za49befooter-description {
    color: #bbb;
    line-height: 1.6;
}

.za49befooter-links {
    list-style: none;
}

.za49befooter-links li {
    margin-bottom: 0.5rem;
}

.za49befooter-link {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s;
}

.za49befooter-link:hover {
    color: #fff;
}

.za49befooter-text {
    color: #bbb;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.za49befooter-bottom {
    border-top: 1px solid #34495e;
    padding-top: 1.5rem;
    text-align: center;
}

.za49befooter-copyright {
    color: #bbb;
    font-size: 0.9rem;
}

/* 响应式设计 */
@media (max-width: 1400px) {
    .za49behero-wrapper {
        gap: 2.5rem;
    }
}

@media (max-width: 1200px) {
    .za49becontainer {
        padding: 0 30px;
    }

    .za49behero-title {
        font-size: 2.8rem;
    }
}

@media (min-width: 769px) and (max-width: 992px) {
    .za49befeatures-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .za49bedownload-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .za49becontainer {
        padding: 0 20px;
    }

    .za49behero-wrapper {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .za49behero-content {
        text-align: center;
    }

    .za49behero-title {
        text-align: center;
        font-size: 2.5rem;
    }

    .za49behero-subtitle {
        font-size: 1.2rem;
    }

    .za49behero-buttons {
        justify-content: center;
    }

    .za49behero-stats {
        justify-content: center;
    }

    .za49behero-img {
        max-height: 400px;
    }

    .za49befeatures-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .za49bedownload-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }
}

@media (max-width: 768px) {
    .za49becontainer {
        padding: 0 15px;
    }

    .za49beheader {
        padding: 0.8rem 0;
    }

    .za49belogo-text {
        font-size: 1.5rem;
    }

    .za49belogo-subtitle {
        font-size: 0.75rem;
    }

    .za49benav {
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background: #667eea;
        display: none;
        padding: 1rem 0;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        max-height: calc(100vh - 60px);
        overflow-y: auto;
    }

    .za49benav-active {
        display: block;
    }

    .za49benav-list {
        flex-direction: column;
        gap: 0;
        padding: 0 20px;
    }

    .za49benav-item {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .za49benav-item:last-child {
        border-bottom: none;
    }

    .za49benav-link {
        display: block;
        padding: 1rem 0;
        font-size: 1rem;
    }

    .za49bemobile-menu-toggle {
        display: flex;
    }

    .za49behero {
        padding: 60px 0;
    }

    .za49behero-wrapper {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .za49behero-content {
        text-align: center;
    }

    .za49behero-title {
        font-size: 2rem;
        text-align: center;
        line-height: 1.3;
    }

    .za49behero-subtitle {
        font-size: 1.1rem;
        padding: 0 10px;
    }

    .za49behero-buttons {
        justify-content: center;
        flex-direction: row;
        gap: 0.8rem;
    }

    .za49behero-stats {
        justify-content: center;
        gap: 1.5rem;
    }

    .za49behero-img {
        max-height: 300px;
        width: 100%;
        padding: 0 20px;
    }

    .za49bestat-number {
        font-size: 2rem;
    }

    .za49bestat-label {
        font-size: 0.9rem;
    }

    .za49besection-title {
        font-size: 2rem;
        line-height: 1.3;
    }

    .za49besection-description {
        font-size: 1rem;
        padding: 0 10px;
    }

    .za49befeatures {
        padding: 60px 0;
    }

    .za49befeatures-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .za49befeature-card {
        padding: 1.5rem;
    }

    .za49befeature-icon {
        font-size: 2.5rem;
    }

    .za49befeature-title {
        font-size: 1.3rem;
    }

    .za49bedownload {
        padding: 60px 0;
    }

    .za49bedownload-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .za49bedownload-card {
        padding: 1.5rem;
    }

    .za49beadvantages {
        padding: 60px 0;
    }

    .za49beadvantages-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .za49beadvantage-item {
        padding: 1.5rem;
    }

    .za49befaq {
        padding: 60px 0;
    }

    .za49befaq-item {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }

    .za49befaq-question {
        font-size: 1.1rem;
    }

    .za49beabout {
        padding: 60px 0;
    }

    .za49beabout-description {
        font-size: 1rem;
        padding: 0 10px;
    }

    .za49beabout-features {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .za49befooter {
        padding: 40px 0 20px;
    }

    .za49befooter-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .za49befooter-section {
        text-align: center;
    }
}

@media (max-width: 576px) {
    .za49behero-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .za49bestat-item {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .za49becontainer {
        padding: 0 12px;
    }

    .za49belogo-text {
        font-size: 1.3rem;
    }

    .za49belogo-subtitle {
        font-size: 0.7rem;
        display: none;
    }

    .za49behero {
        padding: 40px 0;
    }

    .za49behero-title {
        font-size: 1.5rem;
        line-height: 1.3;
        margin-bottom: 0.8rem;
    }

    .za49behero-subtitle {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
        padding: 0 5px;
    }

    .za49behero-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 0.8rem;
        margin-bottom: 2rem;
    }

    .za49bebtn {
        width: 100%;
        max-width: 100%;
        padding: 14px 20px;
        text-align: center;
        font-size: 1rem;
        min-height: 44px;
    }

    .za49behero-img {
        max-height: 220px;
        padding: 0 10px;
    }

    .za49behero-stats {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .za49bestat-item {
        width: 100%;
    }

    .za49bestat-number {
        font-size: 1.8rem;
    }

    .za49bestat-label {
        font-size: 0.85rem;
    }

    .za49besection-title {
        font-size: 1.8rem;
        line-height: 1.3;
        margin-bottom: 0.8rem;
    }

    .za49besection-description {
        font-size: 0.95rem;
        padding: 0 5px;
    }

    .za49befeatures {
        padding: 50px 0;
    }

    .za49befeatures-grid {
        gap: 1.2rem;
    }

    .za49befeature-card {
        padding: 1.2rem;
    }

    .za49befeature-icon {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }

    .za49befeature-title {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }

    .za49befeature-description {
        font-size: 0.9rem;
        line-height: 1.7;
    }

    .za49bedownload {
        padding: 50px 0;
    }

    .za49bedownload-grid {
        gap: 1.2rem;
    }

    .za49bedownload-card {
        padding: 1.2rem;
    }

    .za49bedownload-icon {
        font-size: 2.5rem;
    }

    .za49bedownload-title {
        font-size: 1.2rem;
    }

    .za49bedownload-version,
    .za49bedownload-size {
        font-size: 0.85rem;
    }

    .za49beadvantages {
        padding: 50px 0;
    }

    .za49beadvantages-content {
        gap: 1.2rem;
    }

    .za49beadvantage-item {
        padding: 1.2rem;
    }

    .za49beadvantage-title {
        font-size: 1.1rem;
    }

    .za49beadvantage-text {
        font-size: 0.9rem;
    }

    .za49befaq {
        padding: 50px 0;
    }

    .za49befaq-item {
        padding: 1.2rem;
        margin-bottom: 0.8rem;
    }

    .za49befaq-question {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }

    .za49befaq-answer {
        font-size: 0.9rem;
        line-height: 1.7;
    }

    .za49beabout {
        padding: 50px 0;
    }

    .za49beabout-description {
        font-size: 0.95rem;
        margin-bottom: 1.2rem;
    }

    .za49beabout-feature-text {
        font-size: 0.9rem;
    }

    .za49befooter {
        padding: 30px 0 15px;
    }

    .za49befooter-title {
        font-size: 1.3rem;
    }

    .za49befooter-heading {
        font-size: 1.1rem;
    }

    .za49befooter-description,
    .za49befooter-text {
        font-size: 0.9rem;
    }
}

/* 横屏移动设备优化 */
@media (max-width: 768px) and (orientation: landscape) {
    .za49behero {
        padding: 40px 0;
    }

    .za49behero-img {
        max-height: 250px;
    }

    .za49behero-title {
        font-size: 1.8rem;
    }

    .za49behero-subtitle {
        font-size: 1rem;
    }
}

/* 高分辨率屏幕优化 */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .za49behero-img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* 打印样式 */
@media print {
    .za49beheader,
    .za49befooter,
    .za49behero-buttons,
    .za49bebtn,
    .za49bemobile-menu-toggle {
        display: none;
    }

    .za49behero,
    .za49befeatures,
    .za49bedownload,
    .za49beabout {
        page-break-inside: avoid;
    }

    .za49behero-wrapper {
        flex-direction: column;
    }
}

/* ========== 内页 / 文章列表 / 侧栏 / 首页文章板块 ========== */
.za49belogo-home {
    color: inherit;
    text-decoration: none;
}

.za49belogo-home:hover {
    opacity: 0.9;
}

.za49benav-item.za49bethis > .za49benav-link,
.za49benav-item.za49bethis > a.za49benav-link {
    font-weight: 700;
    border-bottom: 2px solid rgba(255, 255, 255, 0.95);
}

.za49benav-item dl,
.za49benav-item .za49benav-child {
    margin: 0;
    padding: 0.35rem 0 0 0.75rem;
    list-style: none;
}

.za49benav-item dd,
.za49benav-item .za49benav-child a {
    margin: 0;
    font-size: 0.9rem;
}

.za49benav-item dd a,
.za49benav-item .za49benav-child a {
    color: rgba(255, 255, 255, 0.92);
    text-decoration: none;
    display: block;
    padding: 0.25rem 0;
}

@media (min-width: 769px) {
    .za49benav-item {
        position: relative;
    }

    .za49benav-item dl,
    .za49benav-item .za49benav-child {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        min-width: 200px;
        background: rgba(102, 126, 234, 0.98);
        padding: 0.5rem 0.75rem 0.75rem;
        border-radius: 0 0 8px 8px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        z-index: 1002;
    }

    .za49benav-item:hover dl,
    .za49benav-item:hover .za49benav-child,
    .za49benav-item:focus-within dl,
    .za49benav-item:focus-within .za49benav-child {
        display: block;
    }
}

/* 首页文章板块：桌面约 5 列 × 2 行 */
.za49behome-articles {
    padding: 80px 0;
    background: linear-gradient(180deg, #f8f9ff 0%, #fff 40%);
}

.za49behome-articles-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1.25rem;
}

.za49behome-article-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e8e8f0;
    box-shadow: 0 6px 18px rgba(102, 126, 234, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.za49behome-article-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(102, 126, 234, 0.15);
}

.za49behome-article-link {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.za49behome-article-thumb {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #eef0fb;
}

.za49behome-article-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.za49behome-article-body {
    padding: 0.85rem 0.9rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    flex: 1;
}

.za49behome-article-title {
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.35;
    color: #333;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.za49behome-article-meta {
    font-size: 0.75rem;
    color: #667eea;
    margin: 0;
}

.za49behome-article-desc {
    font-size: 0.78rem;
    color: #777;
    margin: 0;
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* 内页顶条 */
.za49bepage-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 56px 0 40px;
}

.za49bepage-hero--compact {
    padding-top: 48px;
}

.za49bebreadcrumb {
    font-size: 0.9rem;
    opacity: 0.95;
    margin-bottom: 0.75rem;
}

.za49bebreadcrumb a {
    color: #fff;
    text-decoration: none;
}

.za49bebreadcrumb a:hover {
    text-decoration: underline;
}

.za49bebreadcrumb-sep {
    margin: 0 0.35rem;
    opacity: 0.8;
}

.za49bepage-hero-title {
    font-size: 1.85rem;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 0.5rem;
}

.za49bepage-hero-desc {
    margin: 0;
    max-width: 720px;
    font-size: 1rem;
    opacity: 0.95;
    line-height: 1.6;
}

/* 双栏布局 */
.za49belayout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 2rem;
    align-items: start;
    padding-top: 2.5rem;
    padding-bottom: 3rem;
}

.za49bemain {
    min-width: 0;
}

.za49besidebar {
    position: sticky;
    top: 88px;
    align-self: start;
    max-height: calc(100vh - 100px);
    overflow-y: auto;
    padding-right: 4px;
}

.za49besidebar-block {
    background: #fff;
    border: 1px solid #e8e8f0;
    border-radius: 12px;
    padding: 1rem 1rem 0.75rem;
    margin-bottom: 1.25rem;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
}

.za49besidebar-title {
    font-size: 1rem;
    margin: 0 0 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #667eea;
}

.za49besidebar-title a {
    color: #333;
    text-decoration: none;
}

.za49besidebar-title a:hover {
    color: #667eea;
}

.za49besidebar-articles {
    list-style: none;
    margin: 0;
    padding: 0;
}

.za49besidebar-articles li {
    border-bottom: 1px solid #f0f0f5;
}

.za49besidebar-articles li:last-child {
    border-bottom: none;
}

.za49besidebar-article {
    display: flex;
    gap: 0.65rem;
    align-items: flex-start;
    padding: 0.55rem 0;
    text-decoration: none;
    color: #333;
}

.za49besidebar-article:hover {
    color: #667eea;
}

.za49besidebar-article-thumb {
    flex: 0 0 72px;
    width: 72px;
    height: 48px;
    border-radius: 6px;
    overflow: hidden;
    background: #eef0fb;
}

.za49besidebar-article-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.za49besidebar-article-txt {
    font-size: 0.82rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* 文章页 */
.za49bearticle {
    background: #fff;
    border-radius: 14px;
    padding: 1.75rem 1.75rem 2rem;
    border: 1px solid #e8e8f0;
    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.06);
}

.za49bearticle-meta-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.25rem;
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 1rem;
}

.za49bearticle-meta-bar a {
    color: #667eea;
    text-decoration: none;
}

.za49bearticle-meta-bar small {
    color: #999;
}

.za49bearticle-litpic {
    margin-bottom: 1.25rem;
    border-radius: 10px;
    overflow: hidden;
    background: #f3f4fb;
}

.za49bearticle-litpic img[src=""],
.za49bearticle-litpic img:not([src]) {
    display: none;
}

.za49bearticle-litpic img {
    width: 100%;
    max-height: 420px;
    object-fit: cover;
}

.za49betypography {
    font-size: 1.05rem;
    line-height: 1.85;
    color: #333;
    word-break: break-word;
}

.za49betypography img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.za49bearticle-gallery {
    margin-top: 1.5rem;
}

.za49bearticle-figure {
    margin: 1rem 0;
}

.za49bearticle-figure figcaption {
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.35rem;
}

.za49bemeta-tags--article {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    list-style: none;
    margin: 1.5rem 0 0;
    padding: 0;
}

.za49betagitem a {
    display: inline-block;
    padding: 0.25rem 0.65rem;
    border-radius: 999px;
    background: #eef0fb;
    color: #667eea;
    text-decoration: none;
    font-size: 0.85rem;
}

.za49beprenext {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 1.25rem;
    border-top: 1px solid #eee;
}

.za49beprenext--single {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
}

.za49beprenext--single a {
    color: #667eea;
    text-decoration: none;
}

.za49beprenext--single a:hover {
    text-decoration: underline;
}

.za49beprenext-item {
    font-size: 0.95rem;
}

.za49beprenext-item a {
    color: #667eea;
    text-decoration: none;
}

.za49berelated {
    margin-top: 2rem;
    background: #fff;
    border-radius: 14px;
    padding: 1.5rem;
    border: 1px solid #e8e8f0;
}

.za49berelated-title {
    font-size: 1.15rem;
    margin: 0 0 1rem;
    color: #333;
}

.za49berelated-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.za49berelated-link {
    display: flex;
    gap: 0.85rem;
    text-decoration: none;
    color: inherit;
    align-items: flex-start;
}

.za49berelated-thumb {
    flex: 0 0 100px;
    width: 100px;
    height: 64px;
    border-radius: 8px;
    overflow: hidden;
    background: #eef0fb;
}

.za49berelated-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.za49berelated-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    min-width: 0;
}

.za49berelated-name {
    font-weight: 600;
    color: #333;
}

.za49berelated-desc {
    font-size: 0.88rem;
    color: #666;
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* 列表页 */
.za49belist-banner {
    margin-bottom: 1.25rem;
}

.za49belist-items {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.za49belist-item {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e8e8f0;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
}

.za49belist-card {
    display: grid;
    grid-template-columns: minmax(140px, 280px) minmax(0, 1fr);
    gap: 1.1rem;
    padding: 1rem 1.1rem;
    text-decoration: none;
    color: inherit;
    align-items: stretch;
}

.za49belist-thumb {
    border-radius: 10px;
    overflow: hidden;
    background: #eef0fb;
    min-height: 120px;
}

.za49belist-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 120px;
}

.za49belist-body {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    min-width: 0;
}

.za49belist-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #222;
    line-height: 1.35;
}

.za49belist-card:hover .za49belist-title {
    color: #667eea;
}

.za49belist-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
    font-size: 0.82rem;
    color: #777;
}

.za49belist-cat {
    color: #667eea;
    font-weight: 500;
}

.za49belist-intro {
    font-size: 0.92rem;
    color: #555;
    line-height: 1.55;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.za49bepagebar {
    margin-top: 2rem;
}

.za49bepages-split {
    background: #fff;
    border: 1px solid #e8e8f0;
    border-radius: 12px;
    padding: 0.85rem 1rem;
}

.za49bepages-split .pagelist {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem 0.75rem;
    width: 100%;
    list-style: none;
    margin: 0;
    padding: 0;
}

.za49bepages-split .pagelist li {
    margin: 0;
}

.za49bepages-split .pagelist a,
.za49bepages-split .pagelist span {
    display: inline-block;
    padding: 0.35rem 0.65rem;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.9rem;
    color: #444;
    border: 1px solid #e0e0e8;
    background: #fafbff;
}

.za49bepages-split .pagelist a:hover {
    border-color: #667eea;
    color: #667eea;
}

@media (min-width: 769px) {
    .za49bepages-split .pagelist {
        flex-wrap: nowrap;
    }
}

/* 响应式：内页与首页文章 */
@media (max-width: 1199px) {
    .za49behome-articles-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 992px) {
    .za49belayout {
        grid-template-columns: 1fr;
    }

    .za49besidebar {
        position: static;
        max-height: none;
        overflow: visible;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1rem;
    }

    .za49besidebar-block {
        margin-bottom: 0;
    }

    .za49behome-articles-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .za49belist-card {
        grid-template-columns: minmax(120px, 200px) minmax(0, 1fr);
    }
}

@media (max-width: 768px) {
    .za49behome-articles {
        padding: 60px 0;
    }

    .za49behome-articles-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.85rem;
    }

    .za49behome-article-body {
        padding: 0.65rem 0.7rem 0.85rem;
    }

    .za49behome-article-title {
        font-size: 0.88rem;
    }

    .za49bepage-hero-title {
        font-size: 1.45rem;
    }

    .za49bearticle {
        padding: 1.25rem 1rem;
    }

    .za49beprenext {
        grid-template-columns: 1fr;
    }

    .za49beprenext--single {
        flex-direction: column;
        align-items: stretch;
    }

    .za49belist-card {
        grid-template-columns: 1fr;
    }

    .za49belist-thumb {
        min-height: 180px;
    }

    .za49bepages-split .pagelist {
        justify-content: center;
    }

    .za49besidebar {
        grid-template-columns: 1fr;
    }

    .za49benav-item dl,
    .za49benav-item .za49benav-child {
        display: block;
        position: static;
        background: transparent;
        box-shadow: none;
        padding: 0.25rem 0 0 0.5rem;
    }
}

@media (max-width: 480px) {
    .za49behome-articles-grid {
        grid-template-columns: 1fr;
    }

    .za49bepage-hero {
        padding: 44px 0 32px;
    }

    .za49bepage-hero-title {
        font-size: 1.25rem;
    }
}

