/* 全局样式重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #0a192f;
    color: #e6f1ff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 头部样式 */
.header {
    background-color: rgba(10, 25, 47, 0.95);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    padding: 0 20px;
}

.logo h1 {
    font-size: 24px;
    color: #64ffda;
    text-shadow: 0 0 10px rgba(100, 255, 218, 0.3);
    margin-bottom: 5px;
}

.logo-subtitle {
    font-size: 14px;
    color: #8892b0;
    margin: 0;
}

.nav {
    display: flex;
    align-items: center;
}

.nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav ul li {
    margin-left: 30px;
}

.nav ul li a {
    text-decoration: none;
    color: #8892b0;
    font-weight: 500;
    transition: all 0.3s;
    font-size: 16px;
}

.nav ul li a:hover {
    color: #64ffda;
}

/* 移动端导航菜单按钮 */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #64ffda;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* 响应式导航样式 */
@media (max-width: 991px) {
    .menu-toggle {
        display: flex;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background-color: rgba(10, 25, 47, 0.98);
        padding: 80px 20px 20px;
        transition: right 0.3s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
    }

    .nav.active {
        right: 0;
    }

    .nav ul {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav ul li {
        margin: 0;
        width: 100%;
        padding: 10px 0;
        border-bottom: 1px solid rgba(100, 255, 218, 0.1);
    }

    .nav ul li:last-child {
        border-bottom: none;
    }

    .nav ul li a {
        display: block;
        padding: 10px 0;
        font-size: 16px;
    }

    /* 菜单按钮动画 */
    .menu-toggle.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
}

@media (max-width: 767px) {
    .header .container {
        height: 70px;
        padding: 0 15px;
    }

    .logo h1 {
        font-size: 20px;
    }

    .logo-subtitle {
        font-size: 12px;
    }

    .nav {
        width: 250px;
    }

    .nav ul li a {
        font-size: 15px;
    }
}

@media (max-width: 575px) {
    .header .container {
        height: 60px;
        padding: 0 10px;
    }

    .logo h1 {
        font-size: 18px;
    }

    .logo-subtitle {
        font-size: 11px;
    }

    .nav {
        width: 220px;
    }

    .nav ul li a {
        font-size: 14px;
    }
}

/* 英雄区域样式 */
.hero {
    background: linear-gradient(135deg, #0a192f 0%, #112240 100%);
    color: #e6f1ff;
    padding: 160px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(100, 255, 218, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.hero-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: contain;
}

.floating {
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}

.hero-content h2 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #64ffda;
    text-shadow: 0 0 20px rgba(100, 255, 218, 0.3);
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
    color: #8892b0;
}

.hero-stats {
    display: flex;
    justify-content: flex-start;
    gap: 60px;
    margin: 40px 0;
}

.stat-item {
    text-align: left;
}

.stat-number {
    display: block;
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #64ffda;
}

.stat-text {
    font-size: 18px;
    color: #8892b0;
}

/* 按钮样式 */
.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: transparent;
    color: #64ffda;
    text-decoration: none;
    border: 2px solid #64ffda;
    border-radius: 5px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.btn:hover {
    background-color: rgba(100, 255, 218, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(100, 255, 218, 0.2);
}

/* 功能特点区域 */
.features {
    padding: 100px 0;
    background-color: #112240;
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #64ffda, transparent);
}

.section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
    color: #64ffda;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.feature-card {
    background: rgba(17, 34, 64, 0.7);
    border: 1px solid rgba(100, 255, 218, 0.1);
    border-radius: 15px;
    padding: 25px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: #64ffda;
    box-shadow: 0 8px 25px rgba(100, 255, 218, 0.2);
}

.feature-icon {
    font-size: 32px;
    margin-bottom: 15px;
    display: inline-block;
    background: rgba(100, 255, 218, 0.1);
    padding: 12px;
    border-radius: 10px;
}

.feature-card h3 {
    color: #64ffda;
    font-size: 20px;
    margin-bottom: 12px;
}

.feature-card > p {
    color: #8892b0;
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.5;
}

.feature-list {
    list-style: none;
    margin-top: auto;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    padding: 12px;
    background: rgba(10, 25, 47, 0.5);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.feature-list li:hover {
    background: rgba(100, 255, 218, 0.1);
    transform: translateX(5px);
}

.feature-icon-small {
    font-size: 20px;
    margin-right: 12px;
    flex-shrink: 0;
}

.feature-detail {
    flex-grow: 1;
}

.feature-detail h4 {
    color: #64ffda;
    font-size: 16px;
    margin-bottom: 4px;
}

.feature-detail p {
    color: #8892b0;
    font-size: 13px;
    line-height: 1.4;
}

/* 下载区域 */
.download {
    padding: 100px 0;
    background-color: #112240;
    position: relative;
}

.download-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.download-card {
    background: rgba(17, 34, 64, 0.7);
    border: 1px solid rgba(100, 255, 218, 0.1);
    border-radius: 15px;
    padding: 25px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    height: 100%;
}

.download-card:hover {
    transform: translateY(-5px);
    border-color: #64ffda;
    box-shadow: 0 8px 25px rgba(100, 255, 218, 0.2);
}

.download-icon {
    font-size: 32px;
    margin-bottom: 15px;
    display: inline-block;
    background: rgba(100, 255, 218, 0.1);
    padding: 12px;
    border-radius: 10px;
}

.download-content h3 {
    color: #64ffda;
    font-size: 20px;
    margin-bottom: 12px;
}

.download-content p {
    color: #8892b0;
    margin-bottom: 15px;
    line-height: 1.5;
    font-size: 14px;
}

.download-info {
    margin: 15px 0;
    padding: 12px;
    background: rgba(10, 25, 47, 0.5);
    border-radius: 8px;
    border: 1px solid rgba(100, 255, 218, 0.1);
}

.info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    border-bottom: 1px solid rgba(100, 255, 218, 0.1);
}

.info-item:last-child {
    border-bottom: none;
}

.info-label {
    color: #8892b0;
    font-size: 13px;
}

.info-value {
    color: #64ffda;
    font-size: 13px;
    font-weight: 500;
}

.btn {
    display: inline-block;
    width: 100%;
    text-align: center;
    padding: 10px 20px;
    margin-top: 15px;
    background-color: transparent;
    color: #64ffda;
    text-decoration: none;
    border: 1px solid #64ffda;
    border-radius: 5px;
    transition: all 0.3s;
}

.btn:hover {
    background-color: rgba(100, 255, 218, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(100, 255, 218, 0.2);
}

/* 页脚样式 */
.footer {
    background-color: #0a192f;
    color: #8892b0;
    padding: 30px 0;
    text-align: center;
    border-top: 1px solid rgba(100, 255, 218, 0.1);
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
}

.footer-info p {
    margin: 10px 0;
    opacity: 0.8;
}

/* 友情链接样式 */
.footer-links {
    margin: 30px 0;
    padding: 20px 0;
    border-top: 1px solid rgba(100, 255, 218, 0.1);
    border-bottom: 1px solid rgba(100, 255, 218, 0.1);
}

.footer-links h4 {
    color: #64ffda;
    font-size: 18px;
    margin-bottom: 15px;
}

.footer-links .flink_list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.footer-links .flink_list li a {
    color: #8892b0;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 14px;
}

.footer-links .flink_list li a:hover {
    color: #64ffda;
}

/* 统计代码样式 */
.footer-stats {
    margin-top: 20px;
    font-size: 13px;
}

.footer-stats p {
    margin: 5px 0;
}

.footer-stats a {
    color: #8892b0;
    text-decoration: none;
    transition: all 0.3s;
}

.footer-stats a:hover {
    color: #64ffda;
}

/* 响应式设计 */
/* 大屏幕 (1200px以上) */
@media (min-width: 1201px) {
    .container {
        max-width: 1200px;
    }

    .hero-wrapper {
        gap: 60px;
    }

    .hero-content h2 {
        font-size: 48px;
    }

    .hero-image img {
        max-height: 450px;
    }

    .features-grid,
    .download-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* 中等屏幕 (992px - 1200px) */
@media (max-width: 1200px) {
    .container {
        max-width: 960px;
        padding: 0 30px;
    }

    .hero-content h2 {
        font-size: 40px;
    }

    .hero-image img {
        max-height: 400px;
    }

    .features-grid,
    .download-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .section-title {
        font-size: 32px;
    }
}

/* 平板 (768px - 991px) */
@media (max-width: 991px) {
    .container {
        max-width: 720px;
        padding: 0 20px;
    }

    .header .container {
        padding: 15px 20px;
    }

    .hero-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-content h2 {
        font-size: 36px;
    }

    .hero-image {
        order: -1;
    }

    .hero-image img {
        max-height: 350px;
    }

    .hero-stats {
        justify-content: center;
    }

    .stat-item {
        text-align: center;
    }

    .features-grid,
    .download-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .section-title {
        font-size: 28px;
    }

    .feature-card,
    .download-card {
        padding: 20px;
    }
}

/* 手机 (576px - 767px) */
@media (max-width: 767px) {
    .container {
        max-width: 540px;
        padding: 0 15px;
    }

    .header .container {
        flex-direction: column;
        height: auto;
        padding: 15px;
    }

    .nav ul {
        margin-top: 15px;
        flex-direction: column;
        text-align: center;
    }

    .nav ul li {
        margin: 8px 0;
    }

    .hero {
        padding: 120px 0 60px;
    }

    .hero-content h2 {
        font-size: 32px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .hero-image img {
        max-height: 300px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .features-grid,
    .download-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .section-title {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .feature-card,
    .download-card {
        padding: 20px;
    }

    .feature-icon,
    .download-icon {
        font-size: 28px;
        padding: 10px;
    }

    .feature-card h3,
    .download-content h3 {
        font-size: 18px;
    }

    .footer-links .flink_list {
        flex-direction: column;
        gap: 10px;
    }

    .footer-links .flink_list li {
        text-align: center;
    }

    .footer-stats {
        font-size: 12px;
    }
}

/* 小屏手机 (575px以下) */
@media (max-width: 575px) {
    .container {
        padding: 0 10px;
    }

    .hero {
        padding: 100px 0 40px;
    }

    .hero-content h2 {
        font-size: 28px;
    }

    .hero-content p {
        font-size: 14px;
    }

    .hero-image img {
        max-height: 250px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    .stat-number {
        font-size: 24px;
    }

    .stat-text {
        font-size: 14px;
    }

    .feature-list li {
        padding: 8px;
        font-size: 13px;
    }

    .feature-icon-small {
        font-size: 14px;
    }
}

/* ========== CMS 内页 / 文章列表 / 侧栏 / 分页 ========== */
.logo-link {
    color: inherit;
    text-decoration: none;
}

.logo-link:hover {
    color: #64ffda;
}

.zdafccnav {
    flex-wrap: wrap;
    row-gap: 8px;
    column-gap: 4px;
    align-items: center;
    justify-content: flex-end;
}

.zdafccnav-item {
    margin-left: 0;
}

.zdafccnav .zdafccnav-item {
    margin-left: 18px;
}

.zdafccthis > a,
.zdafccthis a,
li.zdafccthis a {
    color: #64ffda !important;
}

.page-sub .inner-hero {
    padding: 100px 0 24px;
    background: linear-gradient(135deg, #0a192f 0%, #112240 100%);
    border-bottom: 1px solid rgba(100, 255, 218, 0.12);
}

.page-sub .page-main {
    padding: 40px 0 80px;
    background-color: #0a192f;
}

.page-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 32px;
    align-items: start;
}

.page-content {
    min-width: 0;
}

.page-sidebar {
    min-width: 0;
}

.zdafccbreadcrumb {
    font-size: 14px;
    color: #8892b0;
    margin-bottom: 20px;
}

.zdafccbreadcrumb a {
    color: #8892b0;
    text-decoration: none;
}

.zdafccbreadcrumb a:hover {
    color: #64ffda;
}

.zdafccbreadcrumb .sep {
    margin: 0 8px;
    opacity: 0.6;
}

.zdafccbreadcrumb .current {
    color: #e6f1ff;
}

.block-title {
    font-size: 20px;
    color: #64ffda;
    margin: 28px 0 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(100, 255, 218, 0.15);
}

.article-header {
    margin-bottom: 20px;
}

.article-title {
    font-size: 32px;
    line-height: 1.25;
    color: #e6f1ff;
    margin-bottom: 12px;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 20px;
    font-size: 14px;
    color: #8892b0;
}

.article-meta a {
    color: #64ffda;
    text-decoration: none;
}

.article-litpic {
    margin: 20px 0;
    text-align: center;
}

.article-litpic img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    border: 1px solid rgba(100, 255, 218, 0.15);
}

.article-litpic img[src=""] {
    display: none;
}

.typography {
    font-size: 16px;
    line-height: 1.85;
    color: #ccd6f6;
}

.typography p {
    margin: 0 0 1em;
}

.typography img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.article-gallery {
    margin-top: 24px;
    display: grid;
    gap: 16px;
}

.article-gallery-item {
    margin: 0;
    padding: 12px;
    background: rgba(17, 34, 64, 0.6);
    border: 1px solid rgba(100, 255, 218, 0.1);
    border-radius: 10px;
}

.article-gallery-item img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.article-gallery-item figcaption {
    margin-top: 8px;
    font-size: 13px;
    color: #8892b0;
}

.zdafccdiyfield {
    margin-top: 24px;
    padding: 16px;
    background: rgba(17, 34, 64, 0.5);
    border-radius: 10px;
    border: 1px solid rgba(100, 255, 218, 0.1);
}

.zdafccmeta-tags {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 24px 0 0;
    padding: 0;
}

.zdafcctagitem a {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(100, 255, 218, 0.08);
    color: #64ffda;
    text-decoration: none;
    font-size: 13px;
}

.zdafcctagitem a:hover {
    background: rgba(100, 255, 218, 0.18);
}

.article-prenext {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 32px;
    padding-top: 20px;
    border-top: 1px solid rgba(100, 255, 218, 0.12);
}

.article-prenext-item {
    font-size: 14px;
    color: #8892b0;
}

.article-prenext-item a {
    color: #64ffda;
    text-decoration: none;
}

.article-prenext-item.is-next {
    text-align: right;
}

.related-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 16px;
}

.related-item {
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr);
    gap: 14px;
    padding: 14px;
    background: rgba(17, 34, 64, 0.55);
    border: 1px solid rgba(100, 255, 218, 0.1);
    border-radius: 12px;
}

.article-prenext-single {
    margin-top: 32px;
    padding-top: 20px;
    border-top: 1px solid rgba(100, 255, 218, 0.12);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    font-size: 14px;
    color: #8892b0;
}

.article-prenext-single a {
    color: #64ffda;
    text-decoration: none;
}

.article-prenext-single a:hover {
    text-decoration: underline;
}

.related-thumb a {
    display: block;
}

.related-thumb img {
    width: 100%;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

.related-title {
    color: #e6f1ff;
    text-decoration: none;
    font-weight: 600;
    display: block;
    margin-bottom: 8px;
}

.related-title:hover {
    color: #64ffda;
}

.related-desc {
    font-size: 13px;
    color: #8892b0;
    margin: 0;
    line-height: 1.5;
}

.arclist-inline {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
}

.arclist-inline a {
    color: #8892b0;
    text-decoration: none;
}

.arclist-inline a:hover {
    color: #64ffda;
}

.sidebar-block {
    background: rgba(17, 34, 64, 0.65);
    border: 1px solid rgba(100, 255, 218, 0.12);
    border-radius: 14px;
    padding: 16px 14px 12px;
    margin-bottom: 18px;
}

.sidebar-title {
    font-size: 16px;
    color: #64ffda;
    margin: 0 0 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(100, 255, 218, 0.12);
}

.sidebar-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.sidebar-item {
    display: flex;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(100, 255, 218, 0.08);
}

.sidebar-item:last-child {
    border-bottom: none;
}

.sidebar-thumb {
    flex: 0 0 88px;
    max-width: 88px;
}

.sidebar-thumb img {
    width: 100%;
    height: 66px;
    object-fit: cover;
    border-radius: 6px;
    display: block;
}

.sidebar-item-main {
    flex: 1;
    min-width: 0;
}

.sidebar-item-title {
    display: block;
    color: #e6f1ff;
    text-decoration: none;
    font-size: 13px;
    line-height: 1.45;
    font-weight: 500;
}

.sidebar-item-title:hover {
    color: #64ffda;
}

.sidebar-item-meta {
    display: block;
    margin-top: 6px;
    font-size: 12px;
    color: #8892b0;
}

.sidebar-list-plain a {
    color: #8892b0;
    text-decoration: none;
    font-size: 13px;
}

.sidebar-list-plain a:hover {
    color: #64ffda;
}

.sidebar-list-plain li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(100, 255, 218, 0.06);
}

.sidebar-channelart {
    font-size: 13px;
}

.sidebar-channel-parent {
    display: inline-block;
    margin-bottom: 10px;
    color: #64ffda;
    text-decoration: none;
    font-weight: 600;
}

.sidebar-channel-son {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 10px;
}

.sidebar-channel-son a {
    color: #8892b0;
    text-decoration: none;
    padding: 4px 8px;
    border-radius: 6px;
    background: rgba(10, 25, 47, 0.5);
}

.sidebar-channel-son a:hover {
    color: #64ffda;
}

.list-header {
    margin-bottom: 24px;
}

.list-title {
    font-size: 30px;
    color: #e6f1ff;
    margin-bottom: 10px;
}

.list-desc {
    color: #8892b0;
    font-size: 15px;
    line-height: 1.7;
}

.list-cards {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 18px;
}

.list-card {
    display: grid;
    grid-template-columns: minmax(0, 280px) minmax(0, 1fr);
    gap: 18px;
    padding: 16px;
    background: rgba(17, 34, 64, 0.6);
    border: 1px solid rgba(100, 255, 218, 0.1);
    border-radius: 14px;
}

.list-card-thumb {
    display: block;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(100, 255, 218, 0.12);
}

.list-card-thumb img {
    width: 100%;
    height: 100%;
    min-height: 160px;
    max-height: 200px;
    object-fit: cover;
    display: block;
}

.list-card-body {
    min-width: 0;
}

.list-card-channel a {
    font-size: 12px;
    color: #64ffda;
    text-decoration: none;
}

.list-card-title {
    display: block;
    margin: 8px 0 10px;
    font-size: 20px;
    color: #e6f1ff;
    text-decoration: none;
    line-height: 1.35;
}

.list-card-title:hover {
    color: #64ffda;
}

.list-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 16px;
    font-size: 13px;
    color: #8892b0;
    margin-bottom: 10px;
}

.list-card-intro {
    font-size: 14px;
    color: #8892b0;
    line-height: 1.65;
    margin: 0;
}

.pagebar {
    margin-top: 28px;
}

.zdafccpages-spread .pagelist {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    list-style: none;
    margin: 0;
    padding: 12px 16px;
    background: rgba(17, 34, 64, 0.55);
    border: 1px solid rgba(100, 255, 218, 0.12);
    border-radius: 10px;
}

.zdafccpages-spread .pagelist li {
    margin: 0;
}

.zdafccpages-spread .pagelist a,
.zdafccpages-spread .pagelist span {
    color: #8892b0;
    text-decoration: none;
    font-size: 14px;
}

.zdafccpages-spread .pagelist a:hover {
    color: #64ffda;
}

.list-channel-loop {
    margin-top: 40px;
}

.channel-loop-card {
    padding: 16px;
    margin-bottom: 16px;
    border-radius: 12px;
    border: 1px solid rgba(100, 255, 218, 0.1);
    background: rgba(17, 34, 64, 0.45);
}

.channel-loop-head {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px;
    align-items: center;
    margin-bottom: 12px;
}

.channel-loop-head h3 {
    margin: 0;
    font-size: 18px;
}

.channel-loop-head h3 a {
    color: #64ffda;
    text-decoration: none;
}

.channel-loop-son {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.channel-loop-son a {
    font-size: 13px;
    color: #8892b0;
    text-decoration: none;
}

.channel-loop-more {
    color: #64ffda !important;
}

.channel-loop-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.channel-loop-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 0;
}

.channel-loop-thumb img {
    width: 100%;
    height: 72px;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

.channel-loop-title {
    font-size: 13px;
    color: #e6f1ff;
    text-decoration: none;
    line-height: 1.4;
}

.channel-loop-title:hover {
    color: #64ffda;
}

.home-articles {
    padding: 100px 0;
    background-color: #0a192f;
    position: relative;
}

.home-articles-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: 1fr;
}

@media (min-width: 480px) {
    .home-articles-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 768px) {
    .home-articles-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (min-width: 1100px) {
    .home-articles-grid {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }
}

.home-article-card {
    background: rgba(17, 34, 64, 0.65);
    border: 1px solid rgba(100, 255, 218, 0.1);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.home-article-card:hover {
    transform: translateY(-4px);
    border-color: #64ffda;
    box-shadow: 0 8px 24px rgba(100, 255, 218, 0.15);
}

.home-article-thumb {
    display: block;
    aspect-ratio: 220 / 132;
    overflow: hidden;
    border-bottom: 1px solid rgba(100, 255, 218, 0.08);
}

.home-article-thumb a {
    display: block;
    width: 100%;
    height: 100%;
}

.home-article-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.home-article-body {
    padding: 12px 12px 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.home-article-title {
    color: #e6f1ff;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.45;
    font-weight: 600;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.home-article-title:hover {
    color: #64ffda;
}

.home-article-date {
    font-size: 12px;
    color: #8892b0;
}

.flink_title {
    color: #64ffda;
    font-size: 16px;
    margin-bottom: 10px;
}

.flink_list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px 18px;
    margin: 0;
    padding: 0;
}

.flink_list a {
    color: #8892b0;
    text-decoration: none;
    font-size: 14px;
}

.flink_list a:hover {
    color: #64ffda;
}

.footer-domain-note {
    font-size: 12px;
    opacity: 0.75;
}

.inner-hero-slide:empty {
    display: none;
}

@media (max-width: 1200px) {
    .channel-loop-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 991px) {
    .page-layout {
        grid-template-columns: 1fr;
    }

    .page-sidebar {
        order: 2;
    }

    .page-content {
        order: 1;
    }

    .list-card {
        grid-template-columns: 1fr;
    }

    .list-card-thumb img {
        min-height: 200px;
        max-height: 240px;
    }

    .related-item {
        grid-template-columns: 100px minmax(0, 1fr);
    }

    .article-prenext-single {
        flex-direction: column;
        align-items: stretch;
    }

    .zdafccnav .zdafccnav-item {
        margin-left: 0;
    }
}

@media (max-width: 767px) {
    .article-title {
        font-size: 26px;
    }

    .home-articles {
        padding: 70px 0;
    }

    .channel-loop-list {
        grid-template-columns: 1fr;
    }

    .zdafccpages-spread .pagelist {
        justify-content: center;
    }
}

@media (max-width: 575px) {
    .page-sub .inner-hero {
        padding: 88px 0 16px;
    }

    .list-title {
        font-size: 24px;
    }
}
 