/* 全局样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: #0a0a0a;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Header组件样式已移至header.css */

/* 主视觉区域 */
.hero-area {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 80px 20px;
    background: #0a0a0a;
    overflow: hidden;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: url('../images/首页顶部背景图.png') no-repeat center center;
    background-size: cover;
    opacity: 0.8;
    pointer-events: none;
    z-index: 1;
}

.hero-bg-decor-left {
    position: absolute;
    top: 0;
    left: 0;
    width: 40%;
    height: 100%;
    background: radial-gradient(ellipse at left center, rgba(0, 255, 136, 0.3) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.hero-bg-decor-right {
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: radial-gradient(ellipse at right center, rgba(123, 47, 242, 0.3) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    width: 100%;
}

.hero-title {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #ffffff;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-btn {
    background: linear-gradient(45deg, #6ef1e3, #7b2ff2);
    color: #0a0a0a;
    border: none;
    padding: 15px 40px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(110, 241, 227, 0.3);
}

.hero-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(110, 241, 227, 0.5);
}

/* 统计信息块区域 */
.stats-section {
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 100% !important;
    padding: 40px 20px !important;
    text-align: center !important;
    background: rgba(10, 10, 10, 0.3) !important;
    backdrop-filter: blur(5px) !important;
    z-index: 10 !important;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 40px;
}

.stat-item {
    flex: 1;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    justify-content: center;
}

.stat-number {
    font-size: 1.8rem !important;
    font-weight: bold !important;
    color: #00ff88 !important;
    text-shadow: 0 0 20px rgba(0, 255, 136, 1), 0 0 40px rgba(0, 255, 136, 0.6) !important;
    letter-spacing: 1px !important;
}

.stat-text {
    font-size: 0.9rem !important;
    color: #e0e0e0 !important;
    line-height: 1.4 !important;
    font-weight: 500 !important;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5) !important;
}

/* 滚动数字条 */
.ticker-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.9);
    padding: 15px 0;
    display: flex;
    justify-content: space-around;
    align-items: center;
    font-size: 18px;
    font-weight: bold;
    color: #6ef1e3;
    border-top: 1px solid rgba(110, 241, 227, 0.3);
    z-index: 3;
}

.ticker-bar span {
    animation: ticker 20s linear infinite;
    white-space: nowrap;
}

@keyframes ticker {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* TPS 性能对比区 */
.tps-section {
    position: relative;
    max-width: 100%;
    width: 100%;
    margin: 80px 0;
    padding: 80px 60px;
    min-height: 600px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    overflow: hidden;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
}

/* 背景遮罩 */
.tps-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 1;
}

/* 数据卡片 */
.tps-card {
    position: relative;
    z-index: 2;
    padding: 40px 50px;
    padding-top: 0px;
    max-width: 400px;
    width: 100%;
    margin: 0;
}

.tps-metrics {
    display: flex;
    flex-direction: column;
    gap: 35px;
    align-items: flex-start;
    width: 100%;
    padding-left: 40px;
}

.tps-metric-item {
    text-align: left;
    width: 100%;
}

.tps-metric-number {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 12px;
    text-shadow: 0 0 40px currentColor, 0 0 80px currentColor;
    letter-spacing: 1px;
    line-height: 1;
    font-family: 'Arial', sans-serif;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.tps-metric-number.tps-purple { 
    color: #7b2ff2; 
    text-shadow: 0 0 40px rgba(123, 47, 242, 1), 0 0 80px rgba(123, 47, 242, 0.8);
}

.tps-metric-number.tps-blue { 
    color: #6ef1e3; 
    text-shadow: 0 0 40px rgba(110, 241, 227, 1), 0 0 80px rgba(110, 241, 227, 0.8);
}

.tps-metric-number.tps-green { 
    color: #00ff88; 
    text-shadow: 0 0 40px rgba(0, 255, 136, 1), 0 0 80px rgba(0, 255, 136, 0.8);
}

.tps-metric-label {
    font-size: 1.1rem;
    color: #ffffff;
    font-weight: 400;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
    letter-spacing: 1px;
    font-family: 'Arial', sans-serif;
}

/* TPS区域动画效果 */
.tps-section {
    animation: tpsFadeIn 1s ease-out;
}

@keyframes tpsFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tps-metric-item {
    animation: metricSlideIn 0.8s ease-out;
    animation-fill-mode: both;
}

.tps-metric-item:nth-child(1) { animation-delay: 0.2s; }
.tps-metric-item:nth-child(2) { animation-delay: 0.4s; }
.tps-metric-item:nth-child(3) { animation-delay: 0.6s; }

@keyframes metricSlideIn {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* 悬停效果 */
.tps-metric-item:hover .tps-metric-number {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

.tps-metric-item:hover .tps-metric-label {
    color: #6ef1e3;
    transition: color 0.3s ease;
}

/* 2000+ TPS 展示区 */
.tps-2000-section {
    position: relative;
    margin: 80px 0;
    padding: 60px 20px;
    text-align: left;
    overflow: hidden;
    min-height: 400px;
    width: 100%;
}

.tps-2000-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tps-2000-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
    border-radius: 0;
    box-shadow: none;
}

.tps-2000-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: none;
    margin: 0;
    text-align: left;
    padding: 40px 0 0 40px;
}

.tps-2000-title {
    font-size: 3rem;
    font-weight: bold;
    color: #ffffff;
    text-shadow: 0 0 20px rgba(110, 241, 227, 0.5);
    text-align: left;
    margin: 0;
    position: relative;
    top: -20px;
    left: 20px;
}

.tps-2000-title span {
    display: block;
    font-size: 1rem;
    color: #6ef1e3;
    margin-top: 10px;
    text-align: left;
}

/* 添加渐变遮罩效果，让图片更好地融入页面 */
.tps-2000-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(10, 10, 10, 0.8) 0%,
        rgba(10, 10, 10, 0.3) 15%,
        rgba(10, 10, 10, 0) 30%,
        rgba(10, 10, 10, 0) 70%,
        rgba(10, 10, 10, 0.3) 85%,
        rgba(10, 10, 10, 0.8) 100%
    );
    z-index: 1;
    pointer-events: none;
}

/* 添加额外的渐变效果 */
.tps-2000-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        ellipse at center,
        rgba(110, 241, 227, 0.1) 0%,
        rgba(110, 241, 227, 0.05) 40%,
        rgba(10, 10, 10, 0) 70%
    );
    z-index: 1;
    pointer-events: none;
}

/* PC端优化 */
@media (min-width: 769px) {
    .tps-2000-section {
        min-height: 500px;
        padding: 80px 40px;
        width: 100vw;
        margin-left: calc(-50vw + 50%);
        margin-right: calc(-50vw + 50%);
    }
    
    .tps-2000-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        max-width: none;
        max-height: none;
    }
    
    .tps-2000-content {
        padding: 60px 0 0 60px;
        width: 100%;
    }
    
    .tps-2000-title {
        font-size: 3.5rem;
        top: -40px; /* 向上移动更多 */
        left: 40px; /* 向右移动更多 */
    }
}

/* 大屏幕优化 */
@media (min-width: 1200px) {
    .tps-2000-section {
        min-height: 600px;
        padding: 100px 60px;
    }
    
    .tps-2000-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .tps-2000-title {
        font-size: 4rem;
        top: -50px; /* 大屏幕向上移动更多 */
        left: 60px; /* 大屏幕向右移动更多 */
    }
    
    .tps-2000-title span {
        font-size: 1.2rem;
    }
}

/* 工作原理区 */
.work-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
}

.work-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 40px;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 20px;
}

.work-arrow {
    color: #6ef1e3;
    font-size: 1.5rem;
}

.work-content {
    display: flex;
    min-height: 340px;
    border-radius: 16px;
    overflow: hidden;
    background-image: url('../images/IMG_9008.PNG');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: left center;
    box-shadow: 0 0 40px 0 rgba(110,241,227,0.08);
}

.work-desc {
    flex: 1;
    padding: 40px 40px 40px 0;
    margin-left: 50%; /* 右半部分显示文字 */
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
}

.work-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    font-size: 1.2rem;
    font-weight: bold;
    color: #6ef1e3;
}

.work-text {
    margin-bottom: 15px;
    color: #ffffff;
    line-height: 1.8;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

@media (max-width: 900px) {
    .work-content {
        flex-direction: column;
        background: none;
        min-height: auto;
        position: relative;
    }
    .work-content::before {
        content: '';
        display: block;
        width: 100%;
        height: 250px;
        background-image: url('../images/IMG_9008.PNG');
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center top;
        border-radius: 16px 16px 0 0;
    }
    .work-desc {
        margin-left: 0;
        padding: 30px 20px;
        background: rgba(10, 10, 10, 0.9);
        border-radius: 0 0 16px 16px;
    }
}

/* 行业场景区 */
.scene-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
    text-align: center;
}

.scene-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 40px;
    color: #ffffff;
}

.scene-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.scene-card {
    height: 200px;
    background: rgba(24, 28, 42, 0.8);
    border: 1px solid rgba(110, 241, 227, 0.2);
    border-radius: 12px;
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

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

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

.scene-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    color: #ffffff;
    padding: 20px;
    transform: translateY(0);
    transition: transform 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.scene-card:hover .scene-overlay {
    transform: translateY(0);
}

.scene-overlay h3 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 8px;
    color: #6ef1e3;
}

.scene-overlay p {
    font-size: 14px;
    line-height: 1.4;
    opacity: 0.9;
}

.scene-card:hover {
    border-color: #6ef1e3;
    box-shadow: 0 0 20px rgba(110, 241, 227, 0.3);
    transform: translateY(-5px);
}

/* 底部大横幅 */
.bottom-banner {
    position: relative;
    margin: 80px 0 0 0;
    padding: 80px 20px;
    text-align: center;
    overflow: hidden;
}

.bottom-banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/keji.png') no-repeat center center;
    background-size: cover;
    opacity: 0.8;
    z-index: 1;
}

.bottom-banner-text {
    position: relative;
    z-index: 2;
    font-size: 2rem;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 40px;
    text-shadow: 0 0 20px rgba(110, 241, 227, 0.5);
}

.bottom-banner-btn {
    position: relative;
    z-index: 2;
    background: linear-gradient(45deg, #6ef1e3, #7b2ff2);
    color: #0a0a0a;
    border: none;
    padding: 15px 40px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(110, 241, 227, 0.3);
}

.bottom-banner-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(110, 241, 227, 0.5);
}

/* 页脚 */
.footer {
    background: #0a0a0a;
    padding: 40px 0;
    border-top: 1px solid rgba(110, 241, 227, 0.2);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/首页顶部背景图.png') no-repeat center center;
    background-size: cover;
    opacity: 0.3;
    z-index: 1;
    pointer-events: none;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}

.footer-nav {
    display: flex;
    gap: 40px;
}

.footer-nav a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #6ef1e3;
}

.footer-nav a {
    position: relative;
}

.footer-nav a.active {
    color: #6ef1e3;
}

.footer-nav a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #6ef1e3;
}

.footer-logo-svg {
    display: flex;
    align-items: center;
}

/* 响应式设计 - PC和H5兼容 */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .stats-section {
        padding: 40px 15px;
    }
    
    .stats-container {
        flex-direction: column;
        gap: 8px;
    }
    
    .stat-item {
        flex-direction: row !important;
        gap: 18px !important;
        justify-content: flex-start !important;
        width: 100%;
        max-width: 350px;
        align-items: flex-start !important;
    }
    
    .stat-number {
        font-size: 1.5rem !important;
        text-shadow: 0 0 10px rgba(0, 255, 136, 0.8), 0 0 20px rgba(0, 255, 136, 0.4) !important;
        min-width: 42px !important;
        flex-shrink: 0 !important;
    }
    
    .stat-text {
        font-size: 0.85rem !important;
        line-height: 1.4 !important;
        text-align: left !important;
        flex: 1 !important;
    }
    
    .tps-section {
        min-height: 500px;
        padding: 60px 30px;
    }
    
    .tps-card {
        padding: 35px 25px;
        max-width: 350px;
    }
    
    .tps-metrics {
        gap: 25px;
    }
    
    .tps-metric-number {
        font-size: 2.2rem;
    }
    
    .tps-metric-label {
        font-size: 0.95rem;
    }
    
    .work-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .scene-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .scene-card {
        height: 150px;
    }
    
    .scene-overlay {
        padding: 15px;
        text-align: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    
    .scene-overlay h3 {
        font-size: 16px;
        margin-bottom: 6px;
    }
    
    .scene-overlay p {
        font-size: 12px;
    }
    
    .nav-menu {
        gap: 20px;
    }
    
    .footer-nav {
        gap: 20px;
    }
    
    .ticker-bar {
        font-size: 14px;
        padding: 10px 0;
    }
    
    .tps-2000-title {
        font-size: 2rem;
    }
    
    .bottom-banner-text {
        font-size: 1.5rem;
    }
    
    .work-title {
        font-size: 1.5rem;
        flex-direction: column;
        gap: 10px;
    }
    
    .tps-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .stats-section {
        padding: 30px 10px;
    }
    
    .stats-container {
        gap: 6px;
    }
    
    .stat-item {
        gap: 20px !important;
        max-width: 320px;
        flex-direction: row !important;
        align-items: flex-start !important;
    }
    
    .stat-number {
        font-size: 1.3rem !important;
        min-width: 45px !important;
        flex-shrink: 0 !important;
    }
    
    .stat-text {
        font-size: 0.8rem !important;
        line-height: 1.3 !important;
        flex: 1 !important;
    }
    
    .scene-cards {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .scene-card {
        height: 120px;
    }
    
    .scene-overlay {
        padding: 12px;
        text-align: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    
    .scene-overlay h3 {
        font-size: 14px;
        margin-bottom: 4px;
    }
    
    .scene-overlay p {
        font-size: 11px;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 15px;
    }
    
    .footer-inner {
        flex-direction: column;
        gap: 20px;
    }
    
    .tps-2000-title {
        font-size: 1.5rem;
    }
    
    .bottom-banner-text {
        font-size: 1.2rem;
    }
    
    .work-content {
        padding: 20px;
        background: none;
    }
    
    .tps-section {
        padding: 50px 20px;
        min-height: 400px;
    }
    
    .tps-card {
        padding: 25px 20px;
        max-width: 280px;
    }
    
    .tps-metrics {
        gap: 20px;
    }
    
    .tps-metric-number {
        font-size: 1.8rem;
    }
    
    .tps-metric-label {
        font-size: 0.85rem;
    }
    
    .scene-section {
        padding: 0 15px;
    }
    
    .work-section {
        padding: 0 15px;
    }
    
    .header-inner {
        padding: 0 15px;
    }
    
    .footer-inner {
        padding: 0 15px;
    }
    
    .bottom-banner {
        padding: 60px 15px;
    }
    
    .tps-2000-section {
        padding: 40px 15px;
    }
}

/* 移动端导航优化 */
@media (max-width: 768px) {
    .logo-nav {
        flex-direction: column;
        gap: 20px;
        position: relative;
    }
    
    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
        display: none;
        width: 100%;
        background: rgba(10, 10, 10, 0.95);
        padding: 20px;
        border-radius: 12px;
        border: 1px solid rgba(110, 241, 227, 0.2);
        margin-top: 20px;
    }
    
    .nav-menu.active {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    
    .nav-menu .nav-link {
        padding: 10px 0;
        border-bottom: 1px solid rgba(110, 241, 227, 0.1);
        width: 100%;
        text-align: center;
    }
    
    .nav-menu .nav-link:last-child {
        border-bottom: none;
    }
    
    /* 汉堡菜单样式 */
    .hamburger-menu {
        display: block !important;
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        background: none;
        border: none;
        cursor: pointer;
        padding: 10px;
        z-index: 1000;
    }
    
    .hamburger-menu span {
        display: block;
        width: 25px;
        height: 3px;
        background: #6ef1e3;
        margin: 5px 0;
        transition: 0.3s;
        border-radius: 2px;
    }
    
    .hamburger-menu.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .hamburger-menu.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger-menu.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
}

/* 图片加载状态 */
.image-loading {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
    background: rgba(24, 28, 42, 0.8);
    border: 1px solid rgba(110, 241, 227, 0.3);
    border-radius: 12px;
    color: #6ef1e3;
    font-size: 16px;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { opacity: 0.6; }
    50% { opacity: 1; }
    100% { opacity: 0.6; }
}

/* 图片优化 */
img {
    max-width: 100%;
    height: auto;
    display: block; /* 改为直接显示 */
    border-radius: 12px;
    box-shadow: 0 0 30px rgba(110, 241, 227, 0.2);
}

.tps-chart {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 0 30px rgba(110, 241, 227, 0.2);
}

.tps-2000-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
    border-radius: 0;
    box-shadow: none;
}

.work-image {
    max-width: 300px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 0 30px rgba(110, 241, 227, 0.2);
}

/* 图片容器样式 */
.tps-image {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    position: relative;
}

.tps-2000-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.work-img {
    flex-shrink: 0;
    min-height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* 动画效果 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content,
.tps-section,
.work-section,
.scene-section {
    animation: fadeInUp 0.8s ease-out;
}

/* 滚动条样式 */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #0a0a0a;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #6ef1e3, #7b2ff2);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, #7b2ff2, #6ef1e3);
}

/* 加载动画 */
@keyframes shimmer {
    0% {
        background-position: -200px 0;
    }
    100% {
        background-position: calc(200px + 100%) 0;
    }
}

.loading {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200px 100%;
    animation: shimmer 1.5s infinite;
}

/* 图片加载优化 */
img[src] {
    transition: opacity 0.5s ease;
}

img[src]:not([src=""]) {
    opacity: 1;
}

/* 移动端触摸优化 */
@media (max-width: 768px) {
    .hero-btn,
    .bottom-banner-btn {
        min-height: 44px;
        padding: 15px 30px;
    }
    
    .nav-link {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .tps-bar-item {
        gap: 15px;
    }
    
    .tps-num {
        font-size: 1.5rem;
        min-width: 60px;
    }
    
    .work-content {
        padding: 20px;
        gap: 20px;
        background: none;
    }
    
    .work-image {
        max-width: 100%;
    }
}

/* 平板端优化 */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .tps-section {
        gap: 40px;
    }
    
    .work-content {
        gap: 40px;
    }
    
    .scene-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* 大屏幕优化 */
@media (min-width: 1200px) {
    .hero-title {
        font-size: 5rem;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
    }
    
    .tps-section {
        gap: 80px;
    }
    
    .work-content {
        gap: 80px;
    }
    
    .scene-cards {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* 新闻中心区域 */
.news-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.9), rgba(26, 26, 46, 0.9));
}

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

.news-title {
    font-size: 3rem;
    font-weight: bold;
    color: #ffffff;
    text-align: center;
    margin-bottom: 60px;
    background: linear-gradient(45deg, #ffffff, #6ef1e3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
    align-items: start;
}

.news-card {
    background: rgba(24, 28, 42, 0.8);
    border: 1px solid rgba(110, 241, 227, 0.2);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    height: 400px;
    position: relative;
    cursor: pointer;
    margin-bottom: 20px;
}

.news-card:hover {
    border-color: rgba(110, 241, 227, 0.4);
    box-shadow: 0 0 30px rgba(110, 241, 227, 0.2);
    transform: translateY(-5px);
}

.news-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(110, 241, 227, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.news-card:hover::after {
    opacity: 1;
}

.news-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.news-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.news-date {
    font-size: 12px;
    color: #6ef1e3;
    font-weight: 500;
    margin-bottom: 8px;
}

.news-card .news-title {
    font-size: 18px;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 12px;
    line-height: 1.4;
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    text-align: left;
}

.news-excerpt {
    font-size: 14px;
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 15px;
    flex: 1;
}

.news-read-more {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #6ef1e3;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.news-read-more:hover {
    color: #ffffff;
    transform: translateX(5px);
}

.news-read-more svg {
    transition: transform 0.3s ease;
}

.news-read-more:hover svg {
    transform: translateX(3px);
}

/* 新闻卡片加载动画 */
@keyframes newsCardFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.news-card {
    animation: newsCardFadeIn 0.6s ease-out;
}

.news-card:nth-child(1) { animation-delay: 0.1s; }
.news-card:nth-child(2) { animation-delay: 0.2s; }
.news-card:nth-child(3) { animation-delay: 0.3s; }

.news-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(110, 241, 227, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.news-card:hover::before {
    opacity: 1;
}

.news-pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
}

.page-btn {
    background: rgba(24, 28, 42, 0.8);
    border: 1px solid rgba(110, 241, 227, 0.2);
    color: #ffffff;
    padding: 10px 15px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.page-btn:hover {
    border-color: rgba(110, 241, 227, 0.4);
    background: rgba(110, 241, 227, 0.1);
}

.page-btn.active {
    background: linear-gradient(45deg, #6ef1e3, #7b2ff2) !important;
    border-color: transparent !important;
    color: #0a0a0a !important;
    box-shadow: 0 0 15px rgba(110, 241, 227, 0.5) !important;
    transform: scale(1.05) !important;
}

.news-more {
    text-align: center;
}

.news-more-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #6ef1e3;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    padding: 15px 30px;
    border: 2px solid rgba(110, 241, 227, 0.3);
    border-radius: 30px;
    transition: all 0.3s ease;
    background: rgba(110, 241, 227, 0.05);
}

.news-more-link:hover {
    border-color: #6ef1e3;
    background: rgba(110, 241, 227, 0.1);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(110, 241, 227, 0.2);
}

.news-more-link svg {
    transition: transform 0.3s ease;
}

.news-more-link:hover svg {
    transform: translateX(5px);
}

/* 强制新闻卡片独立显示 */
.news-card {
    box-sizing: border-box !important;
    clear: both;
    display: block !important;
    float: none !important;
    position: relative !important;
}

.news-grid .news-card {
    display: flex !important;
}

/* 新闻响应式设计 */
@media (max-width: 768px) {
    .news-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .news-card {
        height: auto;
        min-height: 350px;
    }
    
    .news-image {
        height: 180px;
    }
    
    .news-content {
        padding: 15px;
    }
    
    .news-card .news-title {
        font-size: 16px;
    }
    
    .news-excerpt {
        font-size: 13px;
    }
    
    .news-more-link {
        font-size: 14px;
        padding: 12px 25px;
    }
}

@media (max-width: 480px) {
    .news-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .news-card {
        height: auto;
        min-height: 320px;
    }
    
    .news-image {
        height: 160px;
    }
    
    .news-content {
        padding: 12px;
    }
    
    .news-card .news-title {
        font-size: 15px;
    }
    
    .news-excerpt {
        font-size: 12px;
    }
    
    .news-more-link {
        font-size: 13px;
        padding: 10px 20px;
    }
}