:root {
    --primary-color: #000000;
    --secondary-color: #00A980;
    --accent-color: #FF6B4A;
    --text-color: #333333;
    --light-text: #FFFFFF;
    --background: #FFFFFF;
    --section-bg: #F5F9FC;
    --card-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease;
    --header-height: 70px;
    --mobile-header-height: 60px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'PingFang SC', 'Microsoft YaHei', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
}

.zed6ebcontainer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 导航样式优化 */
.zed6ebmain-nav {
    background: #000000;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.zed6ebmain-nav .zed6ebcontainer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.zed6eblogo a {
    color: var(--light-text);
    text-decoration: none;
    font-size: 26px;
    font-weight: bold;
}

.zed6ebnav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
}

.zed6ebnav-menu a {
    color: var(--light-text);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: var(--transition);
    padding: 8px 12px;
    border-radius: 4px;
}

.zed6ebnav-menu a:hover {
    background: var(--secondary-color);
    color: var(--light-text);
}

/* Banner区域样式 */
.zed6ebintro-banner {
    padding: 120px 0 80px;
    background: #000000;
    color: var(--light-text);
    position: relative;
    overflow: hidden;
}

.zed6ebbanner-content {
    max-width: 1200px;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.zed6ebbanner-text {
    flex: 1;
    max-width: 600px;
}

.zed6ebbanner-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.zed6ebbanner-featured-image {
    max-width: 100%;
    height: auto;
    max-height: 500px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    pointer-events: none;
}

.zed6ebbanner-content h1 {
    font-size: 48px;
    margin-bottom: 25px;
    line-height: 1.2;
}

.zed6ebintro-text {
    font-size: 18px;
    margin-bottom: 35px;
    opacity: 0.9;
}

.zed6ebaction-btns {
    display: flex;
    gap: 20px;
}

.zed6ebbtn-primary, .zed6ebbtn-outline {
    padding: 15px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.zed6ebbtn-primary {
    background: var(--accent-color);
    color: var(--light-text);
}

.zed6ebbtn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 74, 0.3);
}

.zed6ebbtn-outline {
    border: 2px solid var(--light-text);
    color: var(--light-text);
}

.zed6ebbtn-outline:hover {
    background: var(--light-text);
    color: var(--primary-color);
}

/* 下载区域样式 */
.zed6ebdownload-section {
    padding: 60px 0;
    background: var(--section-bg);
}

.zed6ebdownload-image {
    text-align: center;
    margin-bottom: 30px;
}

.zed6ebdownload-featured-image {
    max-width: 100%;
    height: auto;
    max-height: 400px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

@media (max-width: 768px) {
    .zed6ebdownload-featured-image {
        max-height: 250px;
    }
}

.zed6ebdownload-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.zed6ebdownload-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.zed6ebdownload-card {
    background: var(--background);
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
}

.zed6ebdownload-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.zed6ebdownload-card h3 {
    color: var(--primary-color);
    font-size: 24px;
    margin-bottom: 20px;
}

.zed6ebfeature-list {
    list-style: none;
    margin: 25px 0;
}

.zed6ebfeature-list li {
    margin: 12px 0;
    padding-left: 25px;
    position: relative;
}

.zed6ebfeature-list li::before {
    content: "✓";
    color: var(--secondary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.zed6ebdownload-btn {
    display: inline-block;
    padding: 14px 32px;
    background: var(--secondary-color);
    color: var(--light-text);
    text-decoration: none;
    border-radius: 8px;
    transition: var(--transition);
    text-align: center;
    width: 100%;
}

.zed6ebdownload-btn:hover {
    background: #008c69;
    transform: translateY(-2px);
}

/* 特色功能区域 */
.zed6ebfeatures-section {
    padding: 60px 0;
    background: var(--section-bg);
}

.zed6ebsection-header {
    text-align: center;
    margin-bottom: 40px;
}

.zed6ebsection-header h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.zed6ebsection-desc {
    font-size: 18px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.zed6ebfeatures-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.zed6ebfeature-card {
    background: var(--background);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    display: flex;
    gap: 25px;
    position: relative;
    overflow: hidden;
}

.zed6ebfeature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--secondary-color);
    transition: var(--transition);
}

.zed6ebfeature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.zed6ebfeature-card:hover::before {
    width: 100%;
    opacity: 0.1;
}

.zed6ebfeature-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--section-bg);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--secondary-color);
}

.zed6ebfeature-content {
    flex: 1;
}

.zed6ebfeature-content h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.zed6ebfeature-content p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.zed6ebfeature-details {
    list-style: none;
    padding: 0;
    margin: 0;
}

.zed6ebfeature-details li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    color: #666;
    font-size: 15px;
}

.zed6ebfeature-details li::before {
    content: "•";
    color: var(--secondary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

@media (max-width: 992px) {
    .zed6ebfeatures-grid {
        grid-template-columns: 1fr;
    }
    
    .zed6ebfeature-card {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .zed6ebsection-header h2 {
        font-size: 28px;
    }
    
    .zed6ebsection-desc {
        font-size: 16px;
    }
    
    .zed6ebfeature-card {
        flex-direction: column;
        text-align: center;
        padding: 25px;
    }
    
    .zed6ebfeature-icon {
        margin: 0 auto 20px;
    }
    
    .zed6ebfeature-details li {
        text-align: left;
    }
}

/* 安装教程区域 */
.zed6ebguide-section {
    padding: 60px 0;
    background: var(--section-bg);
}

.zed6ebguide-container {
    max-width: 1000px;
    margin: 0 auto;
}

.zed6ebguide-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 30px;
}

.zed6ebguide-step {
    background: var(--background);
    border-radius: 20px;
    padding: 40px 30px;
    position: relative;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
}

.zed6ebguide-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.zed6ebstep-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 48px;
    font-weight: bold;
    color: var(--secondary-color);
    opacity: 0.1;
}

.zed6ebstep-icon {
    width: 60px;
    height: 60px;
    background: var(--section-bg);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--secondary-color);
    font-size: 28px;
}

.zed6ebstep-content h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.zed6ebstep-content p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.zed6ebstep-details {
    list-style: none;
    padding: 0;
    margin: 0;
}

.zed6ebstep-details li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    color: #666;
    font-size: 15px;
}

.zed6ebstep-details li::before {
    content: "→";
    color: var(--secondary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.zed6ebguide-note {
    background: var(--primary-color);
    border-radius: 20px;
    padding: 30px;
    color: var(--light-text);
}

.zed6ebnote-content h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--light-text);
}

.zed6ebnote-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.zed6ebnote-content ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
}

.zed6ebnote-content ul li::before {
    content: "!";
    color: var(--accent-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

@media (max-width: 992px) {
    .zed6ebguide-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .zed6ebguide-steps {
        grid-template-columns: 1fr;
    }
    
    .zed6ebguide-step {
        padding: 30px 20px;
    }
    
    .zed6ebstep-number {
        font-size: 36px;
    }
    
    .zed6ebstep-icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    
    .zed6ebstep-content h3 {
        font-size: 20px;
    }
}

/* 安全保障区域 */
.zed6ebsafe-section {
    padding: 60px 0;
    background: var(--section-bg);
}

.zed6ebsafe-container {
    max-width: 1200px;
    margin: 0 auto;
}

.zed6ebsafe-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 30px;
}

.zed6ebsafe-card {
    background: var(--background);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    display: flex;
    gap: 25px;
    position: relative;
    overflow: hidden;
}

.zed6ebsafe-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--secondary-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.zed6ebsafe-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.zed6ebsafe-card:hover::after {
    transform: scaleX(1);
}

.zed6ebsafe-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--section-bg);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--secondary-color);
}

.zed6ebsafe-content {
    flex: 1;
}

.zed6ebsafe-content h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.zed6ebsafe-content p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.zed6ebsafe-details {
    list-style: none;
    padding: 0;
    margin: 0;
}

.zed6ebsafe-details li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    color: #666;
    font-size: 15px;
}

.zed6ebsafe-details li::before {
    content: "✓";
    color: var(--secondary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.zed6ebsafe-stats {
    display: flex;
    justify-content: space-around;
    background: var(--primary-color);
    border-radius: 20px;
    padding: 30px;
    margin-top: 20px;
}

.zed6ebstat-item {
    text-align: center;
    color: var(--light-text);
}

.zed6ebstat-number {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 10px;
    color: var(--accent-color);
}

.zed6ebstat-label {
    font-size: 16px;
    opacity: 0.9;
}

@media (max-width: 992px) {
    .zed6ebsafe-grid {
        grid-template-columns: 1fr;
    }
    
    .zed6ebsafe-stats {
        flex-direction: column;
        gap: 30px;
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .zed6ebsafe-card {
        padding: 30px 20px;
        flex-direction: column;
        text-align: center;
    }
    
    .zed6ebsafe-icon {
        margin: 0 auto 20px;
    }
    
    .zed6ebsafe-details li {
        text-align: left;
    }
    
    .zed6ebstat-number {
        font-size: 28px;
    }
    
    .zed6ebstat-label {
        font-size: 14px;
    }
}

/* 页脚样式 */
.zed6ebsite-footer {
    background: var(--darker-bg);
    padding: 15px 0;
    text-align: center;
}

.zed6ebfooter-content {
    color: var(--text-color);
    font-size: 13px;
}

.zed6ebsite-footer p {
    text-align: center;
    margin: 5px 0;
    color: var(--text-color);
    font-size: 13px;
}

.zed6ebsite-footer a {
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition);
}

.zed6ebsite-footer a:hover {
    color: var(--primary-color);
}

/* 响应式设计 */
@media (max-width: 768px) {
    .zed6ebnav-toggle {
        display: block;
        width: 30px;
        height: 22px;
        position: relative;
        cursor: pointer;
    }

    .zed6ebnav-toggle span {
        display: block;
        width: 100%;
        height: 2px;
        background: var(--light-text);
        position: absolute;
        transition: var(--transition);
    }

    .zed6ebnav-toggle span:first-child {
        top: 0;
    }

    .zed6ebnav-toggle span:nth-child(2) {
        top: 10px;
    }

    .zed6ebnav-toggle span:last-child {
        bottom: 0;
    }

    .zed6ebnav-menu {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: var(--primary-color);
        padding: 20px;
        flex-direction: column;
        gap: 15px;
    }

    .zed6ebnav-menu.active {
        display: flex;
    }

    .zed6ebbanner-content h1 {
        font-size: 36px;
    }

    .zed6ebaction-btns {
        flex-direction: column;
    }

    .zed6ebdownload-options,
    .zed6ebfeatures-grid,
    .zed6ebguide-steps,
    .zed6ebsafe-grid {
        grid-template-columns: 1fr;
    }
}

/* 动画效果 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.zed6ebdownload-card,
.zed6ebfeature-item,
.zed6ebguide-step,
.zed6ebsafe-card {
    animation: fadeInUp 0.6s ease-out forwards;
}

/* 广告区域样式 */
.zed6ebad-section {
    padding: 20px 0;
    background: var(--background);
}

.zed6ebad-section .container {
    text-align: center;
}

/* 友情链接和相关站点样式 */
.zed6ebrelated-links {
    padding: 20px 0;
    background: var(--section-bg);
}

.zed6ebfriend-links {
    margin-bottom: 15px;
}

.zed6ebrelated-sites ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.zed6ebrelated-sites li a {
    color: var(--text-color);
    text-decoration: none;
    padding: 6px 12px;
    border-radius: 4px;
    background: var(--background);
    transition: var(--transition);
}

.zed6ebrelated-sites li a:hover {
    color: var(--secondary-color);
    box-shadow: var(--card-shadow);
}

/* 底部导航样式 */
.zed6ebfooter-nav {
    background: var(--dark-bg);
    padding: 30px 0;
    margin-top: 20px;
}

.zed6ebfooter-nav-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.zed6ebfooter-nav-column h4 {
    color: var(--light-text);
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: 600;
}

.zed6ebfooter-nav-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.zed6ebfooter-nav-column ul li {
    margin-bottom: 8px;
}

.zed6ebfooter-nav-column ul li a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 13px;
    transition: var(--transition);
}

.zed6ebfooter-nav-column ul li a:hover {
    color: var(--primary-color);
}

/* 移动端适配 */
@media screen and (max-width: 768px) {
    .zed6ebad-section {
        padding: 15px 0;
    }

    .zed6ebrelated-links {
        padding: 15px 0;
    }

    .zed6ebrelated-sites ul {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    .zed6ebfooter-nav {
        padding: 20px 0;
        margin-top: 15px;
    }

    .zed6ebfooter-nav-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .zed6ebfooter-nav-column {
        text-align: center;
    }

    .zed6ebfooter-nav-column h4 {
        font-size: 15px;
        margin-bottom: 10px;
    }

    .zed6ebfooter-nav-column ul li {
        margin-bottom: 6px;
    }

    .zed6ebfooter-nav-column ul li a {
        font-size: 12px;
    }

    .zed6ebsite-footer {
        padding: 12px 0;
    }
}

/* PC端导航样式（1200px以上） */
@media screen and (min-width: 1201px) {
    .zed6ebcontainer {
        max-width: 1200px;
        padding: 0 20px;
    }

    .zed6ebnav-toggle {
        display: none;
    }

    .zed6ebnav-menu {
        display: flex !important;
        gap: 30px;
    }
}

/* 平板端适配（768px - 1200px） */
@media screen and (max-width: 1200px) {
    .zed6ebcontainer {
        max-width: 100%;
        padding: 0 30px;
    }

    .zed6ebbanner-content h1 {
        font-size: 40px;
    }

    .zed6ebfeatures-grid,
    .zed6ebdownload-options {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* 移动端适配（768px以下） */
@media screen and (max-width: 768px) {
    .zed6ebmain-nav {
        height: 50px;
    }

    .zed6ebmain-nav .container {
        height: 50px;
        padding: 0 15px;
    }

    .zed6eblogo a {
        font-size: 18px;
    }

    .zed6ebnav-toggle {
        display: block;
        width: 22px;
        height: 16px;
        position: relative;
        cursor: pointer;
        margin-right: 5px;
    }

    .zed6ebnav-toggle span {
        display: block;
        width: 100%;
        height: 1px;
        background: var(--light-text);
        position: absolute;
        transition: var(--transition);
    }

    .zed6ebnav-toggle span:first-child {
        top: 0;
    }

    .zed6ebnav-toggle span:nth-child(2) {
        top: 8px;
    }

    .zed6ebnav-toggle span:last-child {
        bottom: 0;
    }

    .zed6ebnav-menu {
        display: none;
        position: absolute;
        top: 50px;
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.98);
        padding: 10px 0;
        flex-direction: column;
        gap: 0;
    }

    .zed6ebnav-menu.active {
        display: flex;
    }

    .zed6ebnav-menu li a {
        padding: 12px 20px;
        font-size: 15px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        display: block;
    }

    .zed6ebbanner-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .zed6ebbanner-text {
        max-width: 100%;
    }

    .zed6ebbanner-image {
        order: -1;
    }

    .zed6ebbanner-featured-image {
        max-height: 300px;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        -webkit-touch-callout: none;
        pointer-events: none;
    }

    .zed6ebbanner-content h1 {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .zed6ebintro-text {
        font-size: 14px;
        margin-bottom: 25px;
    }

    .zed6ebaction-btns {
        flex-direction: column;
        gap: 15px;
    }

    .zed6ebbtn-primary, .zed6ebbtn-outline {
        padding: 10px 25px;
        font-size: 14px;
        width: 100%;
    }

    .zed6ebdownload-section,
    .zed6ebfeatures-section,
    .zed6ebguide-section,
    .zed6ebsafe-section {
        padding: 40px 0;
    }

    .zed6ebsection-header {
        margin-bottom: 30px;
    }

    .zed6ebsection-header h2 {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .zed6ebsection-desc {
        font-size: 14px;
    }

    .zed6ebdownload-options,
    .zed6ebfeatures-grid,
    .zed6ebguide-steps,
    .zed6ebsafe-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .zed6ebdownload-card,
    .zed6ebfeature-card,
    .zed6ebguide-step,
    .zed6ebsafe-card {
        padding: 20px;
    }

    .zed6ebdownload-card h3,
    .zed6ebfeature-content h3,
    .zed6ebstep-content h3,
    .zed6ebsafe-content h3 {
        font-size: 18px;
    }

    .zed6ebfeature-list li,
    .zed6ebfeature-details li,
    .zed6ebstep-details li,
    .zed6ebsafe-details li {
        font-size: 14px;
        margin: 8px 0;
    }

    .zed6ebdownload-btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    .zed6ebfooter-nav {
        padding: 30px 0;
    }

    .zed6ebfooter-nav-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .zed6ebfooter-nav-column {
        text-align: center;
    }

    .zed6ebfooter-nav-column h4 {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .zed6ebfooter-nav-column ul li {
        margin-bottom: 8px;
    }

    .zed6ebfooter-nav-column ul li a {
        font-size: 13px;
    }
}

/* ========== 内页通用：双栏、侧栏、列表项、分页 ========== */
.zed6ebbody-inner {
    padding-top: 80px;
}

@media (max-width: 768px) {
    .zed6ebbody-inner {
        padding-top: 50px;
    }
}

.zed6ebinner-hero {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    color: var(--light-text);
    padding: 36px 0 32px;
    margin-bottom: 0;
}

.zed6ebinner-hero h1 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.35;
}

.zed6ebinner-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 20px;
    font-size: 14px;
    opacity: 0.88;
}

.zed6ebinner-meta a {
    color: var(--secondary-color);
    text-decoration: none;
}

.zed6ebbreadcrumb {
    font-size: 13px;
    margin-bottom: 14px;
    opacity: 0.75;
}

.zed6ebbreadcrumb a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
}

.zed6ebbreadcrumb a:hover {
    color: var(--secondary-color);
}

.zed6ebtwo-col {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    align-items: flex-start;
    padding: 40px 0 50px;
}

.zed6ebmain-col {
    flex: 1 1 0;
    min-width: 0;
    max-width: 100%;
}

.zed6ebsidebar {
    flex: 0 0 300px;
    width: 100%;
    max-width: 100%;
}

.zed6ebside-widget {
    background: var(--background);
    border-radius: 16px;
    padding: 20px 18px;
    box-shadow: var(--card-shadow);
    margin-bottom: 22px;
}

.zed6ebside-widget h3 {
    font-size: 17px;
    color: var(--primary-color);
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--secondary-color);
}

.zed6ebside-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.zed6ebside-list-thumb li {
    margin-bottom: 12px;
}

.zed6ebside-list-thumb li:last-child {
    margin-bottom: 0;
}

.zed6ebside-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    text-decoration: none;
    color: inherit;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    transition: var(--transition);
}

.zed6ebside-list-thumb li:last-child .zed6ebside-item {
    border-bottom: 0;
}

.zed6ebside-item:hover {
    color: var(--secondary-color);
}

.zed6ebside-thumb {
    flex: 0 0 80px;
    width: 80px;
    height: 60px;
    overflow: hidden;
    border-radius: 8px;
    background: var(--section-bg);
}

.zed6ebside-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.zed6ebside-txt {
    flex: 1;
    min-width: 0;
}

.zed6ebside-title {
    display: block;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 4px;
    color: var(--text-color);
}

.zed6ebside-desc {
    display: block;
    font-size: 12px;
    color: #777;
    line-height: 1.45;
}

/* 文章正文区 */
.zed6ebarticle-litpic {
    margin-bottom: 22px;
    border-radius: 12px;
    overflow: hidden;
    max-height: 420px;
    background: var(--section-bg);
}

.zed6ebarticle-litpic img {
    width: 100%;
    height: auto;
    display: block;
    max-height: 420px;
    object-fit: contain;
}

.zed6ebarticle-body {
    font-size: 16px;
    line-height: 1.85;
    color: #333;
}

.zed6ebarticle-body img {
    max-width: 100%;
    height: auto;
}

.zed6ebprenext {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: space-between;
    margin: 28px 0;
    padding: 16px;
    background: var(--section-bg);
    border-radius: 12px;
    font-size: 14px;
}

.zed6ebprenext-stack {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.zed6ebprenext a {
    color: var(--secondary-color);
    text-decoration: none;
}

/* 内页「相关内容」：缩略图 + 标题摘要卡片 */
.zed6eblike-list.zed6ebrelated-as-thumb li {
    margin: 0;
    padding: 0;
    border-bottom: none;
}

.zed6eblike-list.zed6ebrelated-as-thumb > li > a {
    font-weight: 400;
    color: inherit;
}

.zed6eblike-list.zed6ebrelated-as-thumb > li > a:hover {
    color: inherit;
}

.zed6ebrelated-thumb-card {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 18px;
    padding: 18px 0;
    border-bottom: 1px solid #eee;
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.zed6ebrelated-thumb-card:hover {
    background: rgba(0, 169, 128, 0.04);
    margin-left: -8px;
    margin-right: -8px;
    padding-left: 8px;
    padding-right: 8px;
    border-radius: 10px;
}

.zed6ebrelated-as-thumb li:last-child .zed6ebrelated-thumb-card {
    border-bottom: none;
}

.zed6ebrelated-thumb-wrap {
    flex: 0 0 240px;
    width: 240px;
    max-width: 42%;
    border-radius: 12px;
    overflow: hidden;
    background: var(--section-bg);
    aspect-ratio: 16 / 10;
    align-self: flex-start;
}

.zed6ebrelated-thumb-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.zed6ebrelated-thumb-body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    justify-content: center;
}

.zed6ebrelated-thumb-title {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.45;
    color: var(--primary-color);
}

.zed6ebrelated-thumb-card:hover .zed6ebrelated-thumb-title {
    color: var(--secondary-color);
}

.zed6ebrelated-thumb-desc {
    font-size: 14px;
    line-height: 1.55;
    color: #666;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media (max-width: 600px) {
    .zed6ebrelated-thumb-card {
        flex-direction: column;
        gap: 12px;
        padding: 16px 0;
    }

    .zed6ebrelated-thumb-wrap {
        flex: 1 1 auto;
        width: 100%;
        max-width: 100%;
        aspect-ratio: 16 / 9;
    }
}

.zed6ebpagebar .zzpages.zed6ebpages {
    width: 100%;
}

.zed6eblike-block,
.zed6ebtag-block {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid #e8e8e8;
}

.zed6eblike-block h3,
.zed6ebtag-block h3 {
    font-size: 18px;
    margin-bottom: 14px;
}

.zed6eblike-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.zed6eblike-list li {
    margin-bottom: 14px;
    padding-bottom: 14px;
    border-bottom: 1px solid #f0f0f0;
}

.zed6eblike-list a {
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
}

.zed6eblike-list a:hover {
    color: var(--secondary-color);
}

.zed6eblike-list p {
    font-size: 14px;
    color: #666;
    margin-top: 6px;
}

.zed6ebmeta-tags {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0;
    margin: 0;
}

.zed6ebtagitem a {
    display: inline-block;
    padding: 6px 12px;
    background: var(--section-bg);
    border-radius: 6px;
    font-size: 13px;
    text-decoration: none;
    color: var(--text-color);
}

.zed6ebtagitem a:hover {
    background: var(--secondary-color);
    color: var(--light-text);
}

.zed6ebimages-gallery p {
    margin-bottom: 16px;
}

.zed6ebimages-gallery img {
    max-width: 100%;
    border-radius: 8px;
}

/* 列表页列表 */
.zed6eblist-header {
    padding: 40px 0 8px;
}

.zed6eblist-header h1 {
    font-size: 30px;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.zed6eblist-subnav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 14px;
    margin-top: 12px;
}

.zed6eblist-subnav a {
    font-size: 14px;
    color: var(--secondary-color);
    text-decoration: none;
}

.zed6eblist-box {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
}

.zed6eblist-item {
    display: flex;
    gap: 20px;
    padding: 22px 0;
    border-bottom: 1px solid #e8e8e8;
    align-items: flex-start;
}

.zed6eblist-thumb {
    flex: 0 0 200px;
    max-width: 40%;
    border-radius: 12px;
    overflow: hidden;
    background: var(--section-bg);
}

.zed6eblist-thumb img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.zed6eblist-body {
    flex: 1;
    min-width: 0;
}

.zed6eblist-body .zed6eblist-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.zed6eblist-body .zed6eblist-title a {
    color: var(--primary-color);
    text-decoration: none;
}

.zed6eblist-body .zed6eblist-title a:hover {
    color: var(--secondary-color);
}

.zed6eblist-info {
    font-size: 13px;
    color: #888;
    margin-bottom: 8px;
}

.zed6eblist-intro {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

/* 分页：左右分布 */
.zed6ebpagebar {
    margin: 24px 0 40px;
    padding: 16px 0;
}

.zed6ebpagebar .zzpages.zed6ebpages,
.zed6ebpagebar .zed6ebpages {
    width: 100%;
}

.zed6ebpagebar .pagelist {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.zed6ebpagebar .pagelist li {
    margin: 0;
}

.zed6ebpagebar .pagelist::after {
    content: "";
    flex: 1 1 auto;
    order: 1;
    min-width: 8px;
}

.zed6ebpagebar .pagelist li:first-child {
    order: 0;
    margin-right: auto;
}

.zed6ebpagebar .pagelist li:last-child {
    order: 2;
    margin-left: auto;
}

/* 首页文章板块：5 列 × 2 行 */
.zed6ebhome-articles {
    padding: 50px 0;
    background: var(--background);
}

.zed6ebhome-articles .zed6ebsection-header {
    margin-bottom: 28px;
}

.zed6ebhome-articles-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px 16px;
}

.zed6ebhome-article-card {
    background: var(--section-bg);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
    transition: var(--transition);
}

.zed6ebhome-article-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
}

.zed6ebhome-article-card a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.zed6ebhome-article-thumb {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #e8e8e8;
}

.zed6ebhome-article-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.zed6ebhome-article-cap {
    padding: 12px 12px 14px;
}

.zed6ebhome-article-cap .zed6ebhome-article-title {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.45;
    color: var(--primary-color);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.zed6ebhome-article-cap .zed6ebhome-article-desc {
    font-size: 12px;
    color: #666;
    margin-top: 6px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media (max-width: 1100px) {
    .zed6ebhome-articles-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .zed6ebtwo-col {
        flex-direction: column;
        padding: 28px 0 36px;
    }

    .zed6ebsidebar {
        flex: 1 1 100%;
        order: 3;
    }

    .zed6ebmain-col {
        order: 1;
    }

    .zed6eblist-item {
        flex-direction: column;
    }

    .zed6eblist-thumb {
        flex: 1 1 auto;
        max-width: 100%;
        width: 100%;
    }

    .zed6ebhome-articles-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .zed6ebinner-hero h1 {
        font-size: 22px;
    }

    .zed6eblist-header h1 {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .zed6ebhome-articles-grid {
        grid-template-columns: 1fr;
    }
}

/* 导航：CMS 栏目与当前态 */
.zed6ebnav-menu .zed6ebnav-item,
.zed6ebnav-menu > li {
    list-style: none;
}

.zed6ebnav-menu .zed6ebthis > a,
.zed6ebnav-menu li.zed6ebthis a {
    background: var(--secondary-color);
    color: var(--light-text) !important;
    border-radius: 4px;
}

/* 友情链接块（jz:show） */
.zed6ebflink .flink_title {
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.zed6ebflink .flink_list {
    list-style: none;
    padding: 0;
    margin: 0 0 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 14px;
}

.zed6ebflink .flink_list a {
    color: var(--text-color);
    text-decoration: none;
}

.zed6ebflink .flink_list a:hover {
    color: var(--secondary-color);
}

/* 内页幻灯容器：无输出时折叠 */
.zed6ebinner-slide:empty {
    display: none;
}

/* 分页三栏：左中右对齐 */
.zed6ebpagebar-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.zed6ebpagebar-inner .zed6ebpages-left,
.zed6ebpagebar-inner .zed6ebpages-right {
    flex: 0 1 auto;
}

.zed6ebpagebar-inner .zed6ebpages-mid {
    flex: 1 1 auto;
    display: flex;
    justify-content: center;
    min-width: 0;
}

.zed6ebpagebar-inner .zzpages .pagelist,
.zed6ebpagebar-inner ul.pagelist {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 10px;
    list-style: none;
    padding: 0;
    margin: 0;
    justify-content: center;
}

.zed6ebpagebar-inner .zed6ebpages-left .zzpages .pagelist,
.zed6ebpagebar-inner .zed6ebpages-left ul.pagelist {
    justify-content: flex-start;
}

.zed6ebpagebar-inner .zed6ebpages-right .zzpages .pagelist,
.zed6ebpagebar-inner .zed6ebpages-right ul.pagelist {
    justify-content: flex-end;
}
