* {
    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: #1a1a1a;
    background: #ffffff;
    min-height: 100vh;
}

/* SEO优化样式 */
strong {
    font-weight: 600;
    color: inherit;
}

em {
    font-style: normal;
    font-weight: 500;
    color: #2563eb;
}

mark {
    background: #3b82f6;
    color: white;
    padding: 2px 8px;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.95em;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid #f1f5f9;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
}

.logo img {
    width: 36px;
    height: 36px;
    margin-right: 12px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-links a {
    text-decoration: none;
    color: #64748b;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: #2563eb;
}

/* Mobile menu */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
    gap: 4px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: #64748b;
    transition: all 0.3s ease;
    border-radius: 1px;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1001;
}

.mobile-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-nav ul li {
    border-bottom: 1px solid #f1f5f9;
}

.mobile-nav ul li a {
    display: block;
    padding: 10px 20px;
    text-decoration: none;
    color: #333;
}

.mobile-nav ul li a:hover {
    background: #f1f5f9;
}

/* 修复小屏幕下导航链接的显示问题 */
@media (max-width: 768px) {
    .nav-links {
        flex-direction: column;
        /* 将链接垂直排列 */
        position: absolute;
        top: 100%;
        right: 0;
        background: #fff;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        border: 1px solid #f1f5f9;
        display: none;
        /* 默认隐藏 */
        z-index: 1001;
    }

    .nav-links.show {
        display: flex;
        /* 显示链接 */
    }

    .mobile-menu-btn {
        display: flex;
        /* 显示菜单按钮 */
        cursor: pointer;
        background: none;
        border: none;
        padding: 0;
    }
}

/* Hero Section */
.hero {
    padding: 140px 0 100px;
    text-align: center;
    background: linear-gradient(180deg, #fafbff 0%, #ffffff 100%);
}

.hero h1 {
    font-size: 3.75rem;
    font-weight: 800;
    margin-bottom: 24px;
    color: #1a1a1a;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.hero .subtitle {
    font-size: 1.25rem;
    margin-bottom: 16px;
    color: #475569;
    font-weight: 400;
}

.hero .description {
    font-size: 1.125rem;
    margin-bottom: 0;
    color: #64748b;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.hero-image {
    margin: 60px 0;
}

.hero-image svg {
    max-width: 80%;
    width: 80%;
    height: auto;
    border-radius: 16px;
    transition: transform 0.3s ease;
}

.hero-svg {
    overflow: visible;
}

/* SVG文字在小屏幕上的优化 */
@media (max-width: 768px) {
    .hero-image svg {
        max-width: 100%;
        border-radius: 12px;
    }
}

.download-buttons {
    display: flex;
    gap: 0;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 32px;
    position: relative;
}

.btn-group {
    position: relative;
    display: flex;
}

.btn {
    padding: 16px 32px;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.2s ease;
    cursor: pointer;
}

.btn-primary {
    background: #2563eb;
    color: white;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}

.btn-primary:hover {
    background: #1d4ed8;
    transform: none;
    box-shadow: none;
}

.btn-dropdown {
    background: #1e40af;
    color: white;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    padding: 16px 20px;
    position: relative;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}

.btn-dropdown:hover {
    background: #1e3a8a;
    transform: none;
    box-shadow: none;
}

.dropdown-content {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%);
    background: white;
    min-width: 320px;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-8px);
    transition: all 0.2s ease;
    overflow: hidden;
    border: 1px solid #f1f5f9;
}

.dropdown-content.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-item {
    display: block;
    padding: 16px 20px;
    color: #1a1a1a;
    text-decoration: none;
    border-bottom: 1px solid #f8fafc;
    transition: all 0.2s ease;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item:hover {
    background: #f8fafc;
}

.dropdown-item .item-icon {
    font-size: 16px;
}

.dropdown-item .item-content {
    flex: 1;
}

.dropdown-item .item-title {
    font-weight: 600;
    margin-bottom: 2px;
    color: #1a1a1a;
}

.dropdown-item .item-desc {
    font-size: 13px;
    color: #64748b;
}

.btn-secondary {
    background: #f8fafc;
    color: #64748b;
    border: 1px solid #e2e8f0;
}

.btn-secondary:hover {
    background: #f1f5f9;
    color: #475569;
    transform: translateY(-2px);
}

/* Features Section */
.features {
    padding: 120px 0;
    background: #ffffff;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a1a1a;
    letter-spacing: -0.02em;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 32px;
    margin-top: 80px;
}

.feature-card {
    background: #ffffff;
    padding: 32px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #1d4ed8, #1e40af);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    border-radius: 16px 16px 0 0;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: #e2e8f0;
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: block;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1a1a1a;
    transition: color 0.2s ease;
}

.feature-card:hover h3 {
    color: #2563eb;
}

.feature-card p {
    color: #64748b;
    line-height: 1.6;
    font-size: 15px;
}

/* Screenshots Section */
.screenshots {
    padding: 120px 0;
    background: #fafbff;
}

.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 80px;
}

.screenshot-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
    position: relative;
}

.screenshot-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #10b981, #059669, #047857);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    border-radius: 16px 16px 0 0;
    z-index: 1;
}

.screenshot-card:hover::before {
    transform: scaleX(1);
}

.screenshot-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.screenshot-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.screenshot-card:hover img {
    transform: scale(1.05);
}

.screenshot-card .card-content {
    padding: 24px;
}

.screenshot-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1a1a1a;
    transition: color 0.2s ease;
}

.screenshot-card:hover h3 {
    color: #10b981;
}

.screenshot-card p {
    color: #64748b;
    font-size: 14px;
    line-height: 1.5;
}

/* Testimonials */
.testimonials {
    padding: 120px 0;
    background: #ffffff;
    overflow: hidden;
}

.testimonials .container {
    overflow: hidden;
}

.testimonials-grid {
    display: flex;
    overflow: hidden;
    gap: 16px;
    align-items: flex-start;
    position: relative;
    width: fit-content;
    animation: scroll 120s linear infinite;
}

@media (max-width: 768px) {
    .testimonials-grid {
        animation-duration: 80s;
    }
}

.testimonial-card {
    flex: 0 0 auto;
    width: 320px;
    background: #fafbff;
    padding: 32px;
    border-radius: 16px;
    position: relative;
    border: 1px solid #f1f5f9;
    overflow: hidden;
    transition: all 0.3s ease;
}

.testimonial-card::before {
    content: '"';
    font-size: 3rem;
    color: #cbd5e1;
    position: absolute;
    top: 20px;
    left: 28px;
    font-family: serif;
    font-weight: bold;
}

.testimonial-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #f59e0b, #d97706, #b45309);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    border-radius: 16px 16px 0 0;
}

.testimonial-card:hover::after {
    transform: scaleX(1);
}

.testimonial-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.06);
}

.testimonial-text {
    margin-bottom: 20px;
    font-style: italic;
    color: #475569;
    font-size: 15px;
    line-height: 1.6;
    margin-top: 20px;
    word-wrap: break-word;
}

.testimonial-author {
    font-weight: 600;
    color: #1a1a1a;
    font-size: 14px;
}

/* Statistics Section */
.statistics {
    padding: 120px 0;
    background: #fafbff;
}

.section-subtitle {
    text-align: center;
    color: #64748b;
    font-size: 1.125rem;
    margin-bottom: 80px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.stats-overview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 100px;
}

.stat-item {
    text-align: center;
    padding: 32px 24px;
    background: white;
    border-radius: 16px;
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #8b5cf6, #7c3aed, #6d28d9);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    border-radius: 16px 16px 0 0;
}

.stat-item:hover::before {
    transform: scaleX(1);
}

.stat-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2563eb;
    margin-bottom: 16px;
    display: block;
    transition: color 0.2s ease;
}

.stat-item:hover .stat-number {
    color: #8b5cf6;
}

.stat-label {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-top: 0px;
    margin-bottom: 2px;
    transition: color 0.2s ease;
}

.stat-item:hover .stat-label {
    color: #7c3aed;
}

.stat-desc {
    color: #64748b;
    font-size: 14px;
    line-height: 1.5;
}

/* CTA Section */
.cta {
    padding: 120px 0;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    text-align: center;
    color: white;
}

.cta h2 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 32px;
    letter-spacing: -0.02em;
}

/* Footer */
.footer {
    background: #f8fafc;
    color: #64748b;
    padding: 60px 0 40px;
    text-align: center;
    border-top: 1px solid #e2e8f0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
    text-align: left;
}

.footer-section h3 {
    margin-bottom: 16px;
    color: #1a1a1a;
    font-size: 16px;
    font-weight: 600;
}

.footer-section a {
    color: #64748b;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
    transition: color 0.2s ease;
    font-size: 14px;
}

.footer-section a:hover {
    color: #2563eb;
}

.footer-bottom {
    border-top: 1px solid #e2e8f0;
    padding-top: 32px;
    color: #64748b;
    font-size: 14px;
    line-height: 1.6;
}

.footer-bottom .name {
    font-weight: 600;
    color: #1a1a1a;
}

.footer-bottom .ipv6 {
    margin: 8px 0;
}

.footer-bottom .ipv6 img {
    height: 24px;
    margin: 0 4px;
    vertical-align: middle;
}

.footer-bottom .beian a {
    color: #64748b;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-bottom .beian a:hover {
    color: #2563eb;
}

.footer-bottom .beian img {
    display: inline;
    width: 12px;
    margin-right: 4px;
    vertical-align: baseline;
}

/* 恢复SVG颜色样式 */
.stop-blue {
    stop-color: #3b82f6;
    stop-opacity: 1;
}

.stop-blue-dark {
    stop-color: #1d4ed8;
    stop-opacity: 1;
}

.stop-green {
    stop-color: #10b981;
    stop-opacity: 1;
}

.stop-green-dark {
    stop-color: #059669;
    stop-opacity: 1;
}

.stop-yellow {
    stop-color: #f59e0b;
    stop-opacity: 1;
}

.stop-yellow-dark {
    stop-color: #d97706;
    stop-opacity: 1;
}

.stop-purple {
    stop-color: #8b5cf6;
    stop-opacity: 1;
}

.stop-purple-dark {
    stop-color: #7c3aed;
    stop-opacity: 1;
}

.stop-pink {
    stop-color: #ec4899;
    stop-opacity: 1;
}

.stop-pink-dark {
    stop-color: #db2777;
    stop-opacity: 1;
}

/* 移除悬浮动画 */
.hero-image svg:hover {
    transform: none;
}

.btn-primary:hover {
    transform: none;
    box-shadow: none;
}

.btn-dropdown:hover {
    transform: none;
    box-shadow: none;
}

/* 响应式下载按钮样式调整 */
@media (max-width: 768px) {
    .download-buttons {
        margin-bottom: 40px;
    }

    .btn-primary {
        font-size: 0.95rem;
        padding: 14px 20px;
        min-height: 48px;
        text-align: center;
        font-size: 24px;
    }

    .btn-dropdown {
        font-size: 0.95rem;
        padding: 14px 14px;
        min-height: 48px;
    }

    /* 优化下拉菜单在小屏上的显示 */
    .dropdown-content {
        min-width: 280px;
        max-width: 90vw;
    }
}

@media (max-width: 480px) {
    .btn-group {
        flex-direction: row;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .btn-primary {
        border-radius: 10px 0 0 10px;
        border-bottom: none;
        font-size: 1rem;
        padding: 16px 18px;
        min-height: 56px;
        flex: 1;
        white-space: nowrap;
        font-size: 24px;
        text-align: center;
    }

    .btn-dropdown {
        border-radius: 0 10px 10px 0;
        border-left: 1px solid rgba(255, 255, 255, 0.2);
        border-top: none;
        font-size: 1rem;
        padding: 16px 14px;
        min-height: 56px;
        flex-shrink: 0;
    }

    .dropdown-content {
        position: fixed;
        top: auto;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        min-width: 90vw;
        max-width: 320px;
        max-height: 60vh;
        overflow-y: auto;
    }
}

@media (max-width: 360px) {
    .btn-primary {
        font-size: 0.95rem;
        padding: 14px 16px;
        min-height: 52px;
        font-size: 24px;
        text-align: center;
    }

    .btn-dropdown {
        padding: 14px 12px;
        font-size: 0.95rem;
        min-height: 52px;
    }
}

/* 恢复右上角菜单按钮的功能 */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        /* 默认隐藏导航链接 */
    }

    .mobile-menu-btn {
        display: flex;
        /* 显示菜单按钮 */
        cursor: pointer;
        background: none;
        border: none;
        padding: 0;
    }

    .mobile-nav {
        display: none;
        /* 默认隐藏移动导航 */
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        z-index: 1001;
    }

    .mobile-nav.show {
        display: block;
        /* 显示移动导航 */
    }
}

/* 优化 footer 在小屏上的布局 */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    /* 在小屏上隐藏备案号 */
    .footer-bottom .beian {
        display: none;
    }
}

@media (max-width: 480px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    /* 进一步优化footer间距 */
    .footer {
        padding: 40px 0 20px;
    }

    .footer-bottom {
        padding-top: 20px;
    }
}

/* 恢复右上角菜单按钮的功能 */

/* 无限滚动动画 */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* Media Coverage Section */
.media-coverage {
    padding: 120px 0;
    background: #ffffff;
}

.media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 32px;
    margin-top: 80px;
}

.media-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 32px;
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-height: 200px;
    display: flex;
    flex-direction: column;
}

.media-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #10b981, #f59e0b, #8b5cf6, #ec4899);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    border-radius: 16px 16px 0 0;
}

.media-card:hover::before {
    transform: scaleX(1);
}

.media-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    border-color: #e2e8f0;
}

.media-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #f1f5f9;
    transition: all 0.3s ease;
}

.media-card:hover .author-avatar {
    border-color: #3b82f6;
    transform: scale(1.05);
}

.author-info .author-name {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 4px;
    transition: color 0.2s ease;
}

.media-card:hover .author-name {
    color: #2563eb;
}

.author-info .publish-date {
    font-size: 14px;
    color: #64748b;
    margin: 0;
    font-weight: 500;
}

.media-content {
    margin-bottom: 24px;
    min-height: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
}

.article-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.2s ease;
}

.media-card:hover .article-title {
    color: #2563eb;
}

.media-footer {
    border-top: 1px solid #f1f5f9;
    padding-top: 20px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-top: auto;
}

.read-more {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 8px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
}

.read-more:hover {
    color: #1d4ed8;
    background: #eff6ff;
    border-color: #bfdbfe;
    transform: translateX(4px);
}

.read-more::after {
    content: '→';
    transition: transform 0.2s ease;
}

.read-more:hover::after {
    transform: translateX(2px);
}

/* 媒体报道响应式优化 */
@media (max-width: 768px) {
    .media-coverage {
        padding: 80px 0;
    }

    .media-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-top: 60px;
    }

    .media-card {
        padding: 24px;
    }

    .author-avatar {
        width: 40px;
        height: 40px;
    }

    .article-title {
        font-size: 1.125rem;
    }

    .article-excerpt {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .media-coverage {
        padding: 60px 0;
    }

    .media-card {
        padding: 20px;
    }

    .media-header {
        gap: 12px;
        margin-bottom: 16px;
    }

    .author-avatar {
        width: 36px;
        height: 36px;
    }

    .author-info .author-name {
        font-size: 0.95rem;
    }

    .author-info .publish-date {
        font-size: 13px;
    }

    .article-title {
        font-size: 1rem;
        margin-bottom: 10px;
    }

    .media-content {
        margin-bottom: 20px;
    }

    .media-footer {
        padding-top: 16px;
    }
}

/* 兼容性展示区域样式 */
.compatibility-section {
    margin: 30px 0 20px 0;
    padding: 16px 24px;
}

.compatibility-items {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.compatibility-item {
    display: flex;
    align-items: center;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.2s ease;
    font-size: 0.9rem;
}

.compatibility-item.supported {
    background: #ecfdf5;
}

.compatibility-item.unsupported {
    background: #fef2f2;
    opacity: 0.7;
}

.compatibility-item:hover {
    transform: translateY(-1px);
}

.os-icon {
    font-size: 1rem;
    margin-right: 8px;
    width: 20px;
    text-align: center;
}

.os-name {
    font-weight: 500;
    color: #374151;
    margin-right: 8px;
}

.status-icon {
    font-size: 0.9rem;
    font-weight: bold;
}

.compatibility-item.supported .status-icon {
    color: #059669;
}

.compatibility-item.unsupported .status-icon {
    color: #dc2626;
}

/* 兼容性区域响应式设计 */
@media (max-width: 768px) {
    .compatibility-section {
        margin: 20px 0 15px 0;
        padding: 12px 16px;
    }
    
    .compatibility-items {
        gap: 12px;
    }
    
    .compatibility-item {
        padding: 6px 12px;
        font-size: 0.85rem;
    }
    
    .os-icon {
        font-size: 0.9rem;
        margin-right: 6px;
        width: 18px;
    }
    
    .os-name {
        margin-right: 6px;
    }
    
    .status-icon {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .compatibility-section {
        margin: 15px 0 10px 0;
        padding: 10px 12px;
    }
    
    .compatibility-items {
        gap: 8px;
        flex-direction: column;
    }
    
    .compatibility-item {
        padding: 6px 10px;
        font-size: 0.8rem;
        width: 100%;
        justify-content: center;
    }
    
    .os-icon {
        font-size: 0.85rem;
        margin-right: 8px;
        width: 16px;
    }
    
    .os-name {
        margin-right: 8px;
    }
    
    .status-icon {
        font-size: 0.75rem;
    }
}

/* Hero Stats (麦穗数据) 样式 */
.hero-stats {
    margin: 0 0 30px 0;
    padding: 0 0 20px 0;
}

.awards-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.award-badge {
    position: relative;
    width: 180px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wheat-svg-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.wheat-svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
}

.award-content {
    text-align: center;
    z-index: 10;
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0;
}

.hero-stat-numbers {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin: 0;
}

.hero-stat-number {
    font-size: 48px;
    font-weight: 800;
    color: #b45309;
    line-height: 1;
    display: inline-block;
}

.hero-stat-unit {
    font-size: 30px;
    font-weight: 700;
    color: #b45309;
    display: inline-block;
    margin-left: 3px;
}

.hero-stat-label {
    font-size: 16px;
    color: #6b7280;
    margin-top: 40px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
}

/* Hero Stats 响应式设计 */
@media (max-width: 768px) {
    .awards-container {
        gap: 20px;
        padding: 10px;
        flex-wrap: nowrap;
    }

    .award-badge {
        width: 110px;
        height: 110px;
    }

    .hero-stat-number {
        font-size: 28px;
    }

    .hero-stat-unit {
        font-size: 18px;
    }

    .hero-stat-label {
        font-size: 12px;
        bottom: 8px;
    }
}

@media (max-width: 480px) {
    .awards-container {
        gap: 15px;
        padding: 8px;
        flex-wrap: nowrap;
    }

    .award-badge {
        width: 90px;
        height: 90px;
    }

    .hero-stat-number {
        font-size: 22px;
    }

    .hero-stat-unit {
        font-size: 14px;
    }

    .hero-stat-label {
        font-size: 10px;
        bottom: 6px;
    }
}