/* 首页特定的body样式 */
body.home-page {
    background: white;
    padding-top: 45px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* 主要内容 */
main {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* 容器样式 */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* 主横幅区域 */
.hero-section {
    position: relative;
    min-height: 50vh;
    padding: 70px 0;
    background: linear-gradient(135deg, #F8FAFF 0%, #E8F0FF 100%);
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,102,255,0.05) 0%, rgba(0,209,255,0.05) 100%);
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
    z-index: -1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    position: relative;
}

.hero-text {
    max-width: 480px;
}

.hero-text h1 {
    font-size: 3.6rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.gradient-text {
    background: var(--gradient);
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    font-weight: 700;
}

.highlight {
    color: var(--text);
    display: block;
    font-size: 0.8em;
    margin-top: 8px;
    font-weight: 600;
}

.hero-subtitle {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 32px;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 38px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    padding: 26px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(8px);
    border-radius: 13px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.stat-item {
    text-align: left;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    background: var(--gradient);
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 6px;
}

.stat-label {
    color: var(--text-light);
    font-size: 0.72rem;
    font-weight: 500;
}

.hero-visual {
    position: relative;
}

.simulation-preview {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 24px 48px rgba(0,0,0,0.1);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.3s ease;
}

.simulation-preview:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.simulation-preview img {
    width: 100%;
    height: auto;
    display: block;
}

.floating-card {
    position: absolute;
    background: white;
    padding: 8px 20px;
    border-radius: 13px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 10px;
    animation: float 3s ease-in-out infinite;
}

.floating-card i {
    font-size: 1.2rem;
    background: var(--gradient);
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.floating-card span {
    font-weight: 500;
}

.card-1 {
    top: 20%;
    left: -10px;
    animation-delay: 0s;
}

.card-2 {
    bottom: 20%;
    right: -10px;
    animation-delay: 1.5s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .container {
        padding: 0 26px;
    }
    
    .hero-text h1 {
        font-size: 2.8rem;
    }
    
    .hero-stats {
        padding: 24px;
        gap: 24px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-section {
        padding: 64px 0;
        text-align: center;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .hero-text {
        max-width: 100%;
    }
    
    .hero-text h1 {
        font-size: 2.4rem;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .stat-item {
        text-align: center;
    }
    
    .floating-card {
        display: none;
    }
} 

/* 导航栏样式 */
.nav-bar {
    background-color: #333;
    color: white;
    padding: 10px 0;
}

/* 主要内容区域 */
.main-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 20px;
}

/* 卡片样式 */
.card {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* 响应式设计 */
@media (max-width: 768px) {
    .main-content {
        grid-template-columns: 1fr;
    }
} 

/* Logo样式 */
.logo-link {
    display: inline-block;
    text-decoration: none;
    cursor: pointer;
}

.logo-link:hover {
    opacity: 0.8;
}

.logo-img {
    height: 40px;
    width: auto;
}