:root {
    --primary-color: #4a6bff;
    --secondary-color: #2043c0;
    --accent-color: #61dafb;
    --dark-blue: #0a1a44;
    --medium-blue: #1e3a8a;
    --light-blue: #e0f2ff;
    --text-color: #333;
    --light-bg: #f5f5f5;
    --gradient-start: #1e3a8a;
    --gradient-mid: #3d5fd9;
    --gradient-end: #4a6bff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

/* 导航栏样式 */
.navbar {
    background: rgba(10, 26, 68, 0.95); /* 更深的蓝色背景 */
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo img {
    height: 40px;
}

.logo-text {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: 2px;
    background: linear-gradient(120deg, #fff, var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    padding: 0 5px;
}

.logo-text .highlight {
    color: var(--accent-color);
    position: relative;
}

.logo-text::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    animation: shimmerLine 2s infinite;
}

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

.nav-links {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.nav-links li a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    padding: 0.5rem 1rem;
    position: relative;
    transition: all 0.3s ease;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

/* 导航链接悬停效果 */
.nav-links li a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
    box-shadow: 0 0 10px var(--accent-color);
}

.nav-links li a:hover::before,
.nav-links li a.active::before {
    width: 80%;
}

.nav-links li a:hover {
    color: #fff;
    text-shadow: 0 0 10px rgba(41, 98, 255, 0.5);
}

/* 激活状态样式优化 */
.nav-links li a.active {
    color: #fff;
    position: relative;
}

.nav-links li a.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: var(--accent-color);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent-color);
    animation: pulseActive 2s infinite;
}

@keyframes pulseActive {
    0% { transform: translateX(-50%) scale(1); opacity: 1; }
    50% { transform: translateX(-50%) scale(1.5); opacity: 0.5; }
    100% { transform: translateX(-50%) scale(1); opacity: 1; }
}

/* 添加响应式导航栏支持 */
@media (max-width: 768px) {
    .nav-container {
        padding: 0.8rem;
    }
    
    .logo-text {
        font-size: 22px;
    }
    
    .nav-links {
        gap: 0.8rem;
    }
    
    .nav-links li a {
        padding: 0.3rem 0.6rem;
        font-size: 0.8rem;
    }
}

/* 改进hero区域视觉效果 - 更专业优雅的banner */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    overflow: hidden;
    background: linear-gradient(135deg, var(--dark-blue), var(--medium-blue), var(--primary-color));
    background-size: 300% 300%;
    animation: gradientBG 15s ease infinite;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    background-color: rgba(0, 0, 0, 0.25);
    background-image: 
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%232962ff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"),
        radial-gradient(circle at top right, rgba(97, 218, 251, 0.12) 0%, transparent 60%),
        radial-gradient(circle at bottom left, rgba(74, 107, 255, 0.12) 0%, transparent 60%);
}

/* 增强3D矩阵动画效果 */
.matrix-3d {
    position: absolute;
    width: 100%;
    height: 100%;
    perspective: 2000px;
    z-index: 1;
    opacity: 0.75;
}

.matrix-container {
    position: absolute;
    width: 300px;
    height: 300px;
    transform-style: preserve-3d;
    animation: rotate3D 20s linear infinite;
    will-change: transform;
}

/* 调整矩阵容器位置 */
.matrix-container:nth-child(1) {
    top: 15%;
    left: 70%;
    animation-duration: 22s;
}

.matrix-container:nth-child(2) {
    top: 60%;
    left: 20%;
    animation-delay: -5s;
    animation-direction: reverse;
    animation-duration: 26s;
}

.matrix-container:nth-child(3) {
    top: 35%;
    left: 45%;
    animation-delay: -10s;
    animation-duration: 28s;
}

/* 改进矩阵点视觉效果 */
.matrix-point {
    position: absolute;
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    transform-style: preserve-3d;
    box-shadow: 0 0 15px 5px rgba(97, 218, 251, 0.8);
    animation: pulsePoint 3s ease-in-out infinite;
    animation-delay: calc(var(--delay) * 1s);
}

/* 改进矩阵点脉冲动画 */
@keyframes pulsePoint {
    0%, 100% {
        opacity: var(--base-opacity, 0.7);
        transform: scale(1);
    }
    50% {
        opacity: calc(var(--base-opacity, 0.7) * 1.8);
        transform: scale(1.2);
        box-shadow: 0 0 20px 8px rgba(97, 218, 251, 1);
    }
}

/* 改进3D旋转动画 */
@keyframes rotate3D {
    0% {
        transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg);
    }
    33% {
        transform: rotateX(120deg) rotateY(60deg) rotateZ(120deg);
    }
    66% {
        transform: rotateX(240deg) rotateY(120deg) rotateZ(240deg);
    }
    100% {
        transform: rotateX(360deg) rotateY(180deg) rotateZ(360deg);
    }
}

/* 调整hero下方的过渡效果 */
.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to top, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 2;
    pointer-events: none;
}

/* 改进hero内容容器 */
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1000px;
    padding: 3.5rem;
    animation: fadeIn 1s ease-out;
    background: rgba(10, 26, 68, 0.25);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

/* 改进标题样式 */
.hero-content h1 {
    font-size: 5rem;
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: -1px;
    line-height: 1.1;
    background: linear-gradient(to right, #ffffff, var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: textFloat 3s ease-in-out infinite;
}

/* 改进副标题样式 */
.hero-content p {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.95);
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* 优化CTA按钮 */
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 36px;
}

.cta-button {
    padding: 16px 36px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 6px 15px rgba(0,0,0,0.25);
}

.cta-button:not(.outline) {
    background: linear-gradient(45deg, var(--dark-blue), var(--primary-color));
    color: #fff;
    border: none;
}

.cta-button.outline {
    background: linear-gradient(45deg, var(--dark-blue), var(--primary-color));
    color: #15d8f9;
    border: none;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.cta-button:not(.outline):hover {
    background: linear-gradient(45deg, var(--primary-color), var(--dark-blue));
}

.cta-button.outline:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--accent-color);
}

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

.animate-text {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
    animation-fill-mode: both; /* 确保动画结束后保持结束状态 */
}

.animate-text-delay {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease 0.3s forwards;
    animation-fill-mode: both; /* 确保动画结束后保持结束状态 */
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* 媒体查询调整 */
@media (max-width: 991px) {
    .hero {
        height: 90vh;
    }
    
    .hero-content h1 {
        font-size: 4rem;
    }
    
    .hero-content p {
        font-size: 1.3rem;
    }
    
    .matrix-container {
        width: 250px;
        height: 250px;
    }
}

@media (max-width: 768px) {
    .hero {
        height: 80vh;
    }
    
    .hero-content {
        padding: 2.5rem;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
    
    .cta-button {
        width: 100%;
        max-width: 250px;
        text-align: center;
        padding: 14px 30px;
    }
    
    .matrix-container {
        width: 200px;
        height: 200px;
    }
}

/* 优化特性区域样式 */
.features {
    padding: 6rem 0;
    background: linear-gradient(to bottom, var(--light-bg), #fff);
    position: relative;
    overflow: hidden;
}

/* 标题样式优化 */
.section-title {
    text-align: center;
    margin-bottom: 4rem;
    font-size: 2.5rem;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.title-line {
    height: 2px;
    width: 60px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

/* 特性卡片网格布局优化 */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    padding: 1rem;
}

/* 特性卡片样式优化 */
.feature-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(41, 98, 255, 0.1);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(41, 98, 255, 0.15);
}

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

/* 图标样式优化 */
.feature-icon {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
}

.icon-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    margin: 0 auto;
}

.icon-circle i {
    font-size: 2.5rem;
    color: white;
}

.icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    border-radius: 50%;
    filter: blur(20px);
    opacity: 0.3;
    z-index: 0;
}

/* 特性标题样式 */
.feature-card h3 {
    margin: 1.5rem 0 1rem;
    font-size: 1.5rem;
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

/* 特性描述文本样式 */
.feature-card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* 特性列表样式 */
.feature-list {
    list-style: none;
    text-align: left;
    margin-top: 1.5rem;
}

.feature-list li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    color: #555;
}

.feature-list li i {
    color: var(--primary-color);
    margin-right: 0.8rem;
    font-size: 0.9rem;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .features {
        padding: 4rem 0;
    }

    .section-title {
        font-size: 2rem;
        gap: 1rem;
    }

    .title-line {
        width: 40px;
    }

    .feature-card {
        padding: 2rem 1.5rem;
    }

    .icon-circle {
        width: 60px;
        height: 60px;
    }

    .icon-circle i {
        font-size: 2rem;
    }
}

/* 页脚样式优化 */
footer {
    background: #1a237e;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 2fr 1.5fr;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.footer-section h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-color);
}

.platform-desc {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-top: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
}

.platform-keywords {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.platform-keywords span {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
}

/* AI生态资源链接样式优化 */
.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.footer-links a i {
    font-size: 0.7rem;
}

/* 联系方式部分优化 */
.contact-info {
    margin-bottom: 1rem;
}

.contact-info p {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.social-links a {
    font-size: 1.2rem;
}

.qr-code {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.8rem;
    border-radius: 8px;
}

.qr-code img {
    width: 80px;
    height: 80px;
    margin-bottom: 0.3rem;
}

.qr-code p {
    font-size: 0.8rem;
}

/* 页脚底部优化 */
.footer-bottom {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-meta {
    margin-top: 0.5rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
}

/* 响应式优化 */
@media (max-width: 1200px) {
    .footer-content {
        grid-template-columns: 1fr 1.5fr 1fr;
        gap: 1.5rem;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }

    .footer-section:last-child {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-section:last-child {
        grid-column: auto;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }

    .qr-code {
        max-width: 150px;
        margin: 0 auto;
    }
}

/* 新增：数据统计区域样式 */
.stats {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1a237e, #0d47a1);
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item .stat-number {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    display: block;
}

/* 新增：解决方案预览样式 */
.solutions-preview {
    padding: 5rem 0;
    background: var(--light-bg);
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.solution-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.solution-card:hover {
    transform: translateY(-10px);
}

.solution-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.solution-card a {
    color: var(--primary-color);
    text-decoration: none;
    margin-top: 1rem;
    display: inline-block;
}

/* 新增：客户案例样式 */
.cases {
    padding: 5rem 0;
}

.cases-slider {
    display: flex;
    overflow-x: auto;
    padding: 2rem 0;
    gap: 2rem;
}

.case-card {
    min-width: 300px;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.case-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.case-card h3, .case-card p {
    padding: 1rem;
}

/* 新增：新闻动态样式 */
.news {
    padding: 5rem 0;
    background: var(--light-bg);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.news-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.news-date {
    color: var(--primary-color);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.news-card a {
    color: var(--primary-color);
    text-decoration: none;
    margin-top: 1rem;
    display: inline-block;
}

/* 响应式优化 */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.2rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* 产品服务页面新增样式 */
.product-header {
    background: linear-gradient(135deg, #1a237e, #0d47a1);
    color: white;
    padding: 150px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.product-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom right, transparent 49%, white 50%);
}

/* 核心产品展示样式 */
.product-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 6rem;
    align-items: center;
}

.product-item.reverse {
    direction: rtl;
}

.product-item.reverse .product-info {
    direction: ltr;
}

.product-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.product-icon i {
    font-size: 2.5rem;
    color: white;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 2rem;
}

.tech-tag {
    background: rgba(41, 98, 255, 0.1);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

/* 代码窗口样式 */
.code-window {
    background: #1e1e1e;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.code-header {
    background: #2d2d2d;
    padding: 0.8rem;
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ff5f56;
}

.dot:nth-child(2) {
    background: #ffbd2e;
}

.dot:nth-child(3) {
    background: #27c93f;
}

.code-content {
    padding: 1.5rem;
    color: #fff;
}

.code-content pre {
    margin: 0;
    font-family: 'Consolas', monospace;
}

/* 模型训练可视化 */
.model-training {
    background: rgba(41, 98, 255, 0.05);
    padding: 2rem;
    border-radius: 10px;
}

.training-progress {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.progress-bar {
    height: 8px;
    background: rgba(41, 98, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    width: 85%;
    animation: progressFill 2s ease-out;
}

.metrics {
    display: flex;
    justify-content: space-between;
    color: #666;
    font-size: 0.9rem;
}

/* Agent演示样式 */
.agent-demo {
    background: white;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.chat-window {
    padding: 1.5rem;
}

.chat-message {
    background: rgba(41, 98, 255, 0.05);
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.chat-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.action-icon {
    width: 40px;
    height: 40px;
    background: rgba(41, 98, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.action-icon:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* 技术优势卡片样式 */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.tech-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.tech-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(41, 98, 255, 0.15);
}

.model-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.model-item {
    background: rgba(41, 98, 255, 0.1);
    color: var(--primary-color);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.9rem;
}

.accuracy-meter {
    margin-top: 1rem;
}

.meter-bar {
    height: 6px;
    background: rgba(41, 98, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
}

.meter-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    width: 99.9%;
    animation: meterFill 2s ease-out;
}

.accuracy-text {
    display: block;
    text-align: center;
    margin-top: 0.5rem;
    color: var(--primary-color);
    font-size: 0.9rem;
}

/* 联系部分样式 */
.contact-section {
    background: var(--light-bg);
    padding: 5rem 0;
    text-align: center;
}

.contact-desc {
    margin: 1.5rem 0;
    font-size: 1.2rem;
    color: #666;
}

.contact-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

/* 动画效果 */
@keyframes progressFill {
    from { width: 0; }
    to { width: 85%; }
}

@keyframes meterFill {
    from { width: 0; }
    to { width: 99.9%; }
}

/* 响应式调整 */
@media (max-width: 768px) {
    .product-item {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .product-item.reverse {
        direction: ltr;
    }

    .tech-grid {
        grid-template-columns: 1fr;
    }

    .contact-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* 核心优势部分样式 */
.core-advantages {
    padding: 6rem 0;
    background: linear-gradient(to bottom, #fff, var(--light-bg));
    position: relative;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 1rem;
}

.advantage-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(41, 98, 255, 0.1);
}

.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(41, 98, 255, 0.15);
}

.advantage-icon {
    margin-bottom: 1.5rem;
}

.icon-wrapper {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: 0 auto;
}

.icon-wrapper i {
    font-size: 2rem;
    color: white;
    z-index: 2;
}

.advantage-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-align: center;
}

.advantage-card p {
    color: #666;
    margin-bottom: 1.5rem;
    text-align: center;
    line-height: 1.6;
}

.advantage-detail {
    margin-top: 1.5rem;
}

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

/* 通用部分样式 */
.section-title {
    text-align: center;
    margin-bottom: 4rem;
    font-size: 2.5rem;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

/* 通用间距类 */
.section-padding {
    padding: 6rem 0;
}

/* 通用响应式调整 */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
        gap: 1rem;
    }
    
    .section-padding {
        padding: 4rem 0;
    }
}

/* 页面头部通用样式 */
.page-header {
    padding-top: 120px; /* 导航栏高度 + 额外空间 */
    min-height: 300px;
    background: linear-gradient(135deg, #1a237e, #0d47a1);
    color: white;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 关于我们页面样式补充 */
.about-header {
    background: linear-gradient(135deg, #1a237e, #0d47a1);
    color: white;
    padding: 150px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* 平台介绍部分 */
.platform-intro {
    padding: 6rem 0;
    background: white;
}

.intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.intro-text h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.intro-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 2rem;
}

.platform-features {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.feature i {
    font-size: 2rem;
    color: var(--primary-color);
}

/* 技术动画 */
.tech-animation {
    position: relative;
    width: 300px;
    height: 300px;
    margin: 0 auto;
}

.animation-layer {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    opacity: 0.1;
    animation: pulse 2s infinite;
}

.animation-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4rem;
    color: var(--primary-color);
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.1; }
    50% { transform: scale(1.2); opacity: 0.2; }
    100% { transform: scale(1); opacity: 0.1; }
}

/* 核心技术卡片 */
.tech-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
}

.tech-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.tech-features {
    list-style: none;
    margin: 1.5rem 0;
}

.tech-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.tech-features li i {
    color: var(--primary-color);
}

/* 姿态检测动画 */
.pose-detection {
    height: 150px;
    background: linear-gradient(90deg, rgba(41, 98, 255, 0.1), rgba(41, 98, 255, 0.2));
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.pose-detection::after {
    content: '';
    position: absolute;
    width: 2px;
    height: 100%;
    background: var(--primary-color);
    left: 0;
    animation: scan 2s infinite linear;
}

@keyframes scan {
    from { left: 0; }
    to { left: 100%; }
}

/* 聊天演示 */
.chat-demo {
    margin-top: 1.5rem;
}

.chat-bubble {
    background: rgba(41, 98, 255, 0.1);
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.chat-bubble.response {
    background: var(--primary-color);
    color: white;
    margin-left: 2rem;
}

/* 专业团队部分 */
.team-intro {
    background: var(--light-bg);
    padding: 6rem 0;
}

.team-desc {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.expertise-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
}

.expertise-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.expertise-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.expertise-icon i {
    font-size: 2rem;
    color: white;
}

.expertise-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 1.5rem;
}

.expertise-tags span {
    background: rgba(41, 98, 255, 0.1);
    color: var(--primary-color);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.9rem;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .intro-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .platform-features {
        flex-direction: column;
        align-items: center;
    }

    .tech-animation {
        width: 200px;
        height: 200px;
    }

    .expertise-grid {
        grid-template-columns: 1fr;
    }
}

/* 解决方案页面样式 */
.solution-header {
    background: linear-gradient(135deg, #1a237e, #0d47a1);
    color: white;
    padding: 150px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.solution-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom right, transparent 49%, white 50%);
}

/* 解决方案概览 */
.solution-overview {
    padding: 6rem 0;
    background: white;
}

.overview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.overview-text h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.overview-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 2rem;
}

.overview-features {
    display: flex;
    gap: 2rem;
}

/* 主要解决方案 */
.main-solutions {
    padding: 6rem 0;
    background: var(--light-bg);
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.solution-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
}

.solution-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.solution-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.solution-icon i {
    font-size: 2.5rem;
    color: white;
}

.solution-features {
    list-style: none;
    margin: 1.5rem 0;
}

.solution-features li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.solution-features li i {
    color: var(--primary-color);
}

/* 解决方案演示 */
.solution-demo {
    margin-top: 2rem;
}

.demo-screen {
    background: rgba(41, 98, 255, 0.05);
    border-radius: 10px;
    height: 200px;
    position: relative;
    overflow: hidden;
}

.analysis-animation {
    position: absolute;
    width: 2px;
    height: 100%;
    background: var(--primary-color);
    left: 0;
    animation: scan 2s infinite linear;
}

.team-stats {
    position: absolute;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(90deg, 
            rgba(41, 98, 255, 0.1) 0%,
            rgba(41, 98, 255, 0.2) 50%,
            rgba(41, 98, 255, 0.1) 100%
        );
    animation: pulse 2s infinite;
}

/* 应用场景 */
.solution-scenarios {
    padding: 6rem 0;
    background: white;
}

.scenarios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.scenario-item {
    text-align: center;
    padding: 2rem;
    border-radius: 15px;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.scenario-item:hover {
    transform: translateY(-10px);
}

.scenario-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.scenario-icon i {
    font-size: 2rem;
    color: white;
}

/* 实施流程 */
.implementation-process {
    padding: 6rem 0;
    background: var(--light-bg);
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    position: relative;
}

.process-item {
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.4s ease;
}

.process-item.animate {
    opacity: 1;
    transform: translateY(0);
}

.process-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.process-icon i {
    font-size: 1.5rem;
    color: white;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .overview-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .overview-features {
        flex-direction: column;
        align-items: center;
    }

    .solutions-grid {
        grid-template-columns: 1fr;
    }

    .process-timeline {
        grid-template-columns: 1fr;
    }
}

/* 动画效果 */
@keyframes scan {
    from { left: 0; }
    to { left: 100%; }
}

@keyframes pulse {
    0% { opacity: 0.5; }
    50% { opacity: 0.8; }
    100% { opacity: 0.5; }
}

/* 添加视频时间轴动画 */
.video-timeline {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    height: 4px;
    background: rgba(41, 98, 255, 0.1);
    border-radius: 2px;
}

.video-timeline::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 30%;
    background: var(--primary-color);
    border-radius: 2px;
    animation: timelineProgress 3s infinite;
}

@keyframes timelineProgress {
    0% { width: 0; }
    100% { width: 100%; }
}

/* 添加羽毛球图标样式 */
.fa-shuttlecock::before {
    content: "\f45b"; /* 使用合适的 Font Awesome 图标代码 */
}

/* 优化场景卡片样式 */
.scenario-item {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(41, 98, 255, 0.1);
    transition: all 0.3s ease;
}

.scenario-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(41, 98, 255, 0.15);
    border-color: var(--primary-color);
}

/* 产品服务页面核心优势样式 */
.product-advantages {
    background: linear-gradient(135deg, #f5f7ff 0%, #e8eeff 100%);
    padding: 80px 0;
}

.product-advantages .advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.product-advantages .advantage-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(41, 98, 255, 0.1);
}

.product-advantages .advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(41, 98, 255, 0.1);
}

.product-advantages .icon-wrapper {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), #1a237e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
}

.product-advantages .icon-wrapper i {
    font-size: 28px;
    color: white;
    z-index: 2;
}

.product-advantages .icon-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--primary-color);
    opacity: 0.3;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.1;
    }
    100% {
        transform: scale(1);
        opacity: 0.3;
    }
}

.product-advantages .feature-list {
    margin-top: 20px;
    padding-left: 0;
    list-style: none;
}

.product-advantages .feature-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    color: #666;
}

.product-advantages .feature-list li i {
    color: var(--primary-color);
    margin-right: 10px;
}

/* 响应式调整 */
@media (max-width: 1200px) {
    .product-advantages .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .product-advantages .advantages-grid {
        grid-template-columns: 1fr;
    }
}

/* 行业解决方案样式优化 */
.industry-solutions {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7ff 0%, #e8eeff 100%);
    position: relative;
    z-index: 1;
}

.industry-solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.industry-solution-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
    border: 1px solid rgba(41, 98, 255, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.industry-solution-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(41, 98, 255, 0.1);
}

.industry-solution-card .solution-icon {
    margin-bottom: 20px;
}

.industry-solution-card .icon-wrapper {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), #1a237e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
}

.industry-solution-card .icon-wrapper i {
    font-size: 28px;
    color: white;
    z-index: 2;
}

.industry-solution-card h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 15px;
    text-align: center;
}

.industry-solution-card p {
    color: #666;
    text-align: center;
    margin-bottom: 20px;
}

.industry-solution-card .solution-features {
    margin-top: auto;
}

.industry-solution-card .feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.industry-solution-card .feature-list li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: #666;
}

.industry-solution-card .feature-list li i {
    color: var(--primary-color);
    margin-right: 10px;
}

/* 演示区域样式 */
.industry-solution-card .solution-demo {
    margin-top: 20px;
}

.industry-solution-card .demo-screen {
    height: 150px;
    background: rgba(41, 98, 255, 0.05);
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

/* 响应式调整 */
@media (max-width: 1200px) {
    .industry-solutions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .industry-solutions-grid {
        grid-template-columns: 1fr;
    }
}

/* 新闻详情页样式优化 */
.news-detail {
    padding: 100px 0 80px;
    background: linear-gradient(to bottom, #f5f7ff, #ffffff);
    position: relative;
    z-index: 1;
}

.news-detail .container {
    max-width: 900px;
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 50px;
    border: 1px solid rgba(41, 98, 255, 0.1);
}

.news-header {
    text-align: center;
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(41, 98, 255, 0.1);
    padding-bottom: 25px;
    position: relative;
}

.news-header::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 3px;
}

.news-header h1 {
    font-size: 32px;
    color: #1a3c6e;
    margin-bottom: 15px;
    font-weight: 600;
}

.news-meta {
    font-size: 14px;
    color: #666;
    display: flex;
    justify-content: center;
    gap: 25px;
}

.news-meta span {
    display: flex;
    align-items: center;
}

.news-meta i {
    color: var(--primary-color);
    margin-right: 6px;
}

.news-content {
    line-height: 1.8;
    color: #444;
    font-size: 16px;
}

.news-content h2 {
    margin: 35px 0 20px;
    color: #1a3c6e;
    font-size: 24px;
    font-weight: 600;
    position: relative;
    padding-left: 15px;
}

.news-content h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.news-content p {
    margin-bottom: 20px;
}

.news-content img {
    max-width: 100%;
    border-radius: 8px;
    margin: 20px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.news-footer {
    margin-top: 50px;
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(41, 98, 255, 0.1);
}

.back-button {
    display: inline-block;
    padding: 12px 25px;
    background-color: #2a5298;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    box-shadow: 0 4px 10px rgba(42, 82, 152, 0.2);
}

.back-button:hover {
    background-color: #1a3c6e;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .news-detail .container {
        padding: 30px 20px;
    }
    
    .news-header h1 {
        font-size: 26px;
    }
    
    .news-meta {
        flex-direction: column;
        gap: 10px;
    }
}

/* 在线咨询页面样式 */
.online-consultation {
    position: relative;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 40px 0;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin: 20px 0;
}

.consultation-header {
    text-align: center;
    margin-bottom: 40px;
}

.consultation-header h1 {
    font-size: 32px;
    color: #1a3c6e;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    margin-bottom: 10px;
}

.consultation-header p {
    color: #666;
    font-size: 16px;
}

.consultation-form-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
    background-color: #ffffff;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.consultation-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23333'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 20px;
}

.form-submit {
    grid-column: span 2;
    text-align: center;
    margin-top: 10px;
}

.submit-button {
    padding: 12px 30px;
    background-color: #2a5298;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-button:hover {
    background-color: #1a3c6e;
}

.consultation-contact-info {
    background-color: #f0f7ff;
    padding: 30px;
    border-radius: 6px;
}

.consultation-contact-info h3 {
    margin-bottom: 20px;
    font-size: 20px;
    color: #333;
}

.consultation-contact-info ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.consultation-contact-info ul li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.consultation-contact-info ul li i {
    margin-right: 10px;
    color: #007bff;
}

.business-hours {
    margin-bottom: 30px;
}

.business-hours h4 {
    margin-bottom: 10px;
    font-size: 16px;
    color: #333;
}

.business-hours p {
    margin-bottom: 5px;
    color: #666;
}

.qr-code {
    text-align: center;
}

.qr-code img {
    max-width: 150px;
    margin-bottom: 10px;
}

.qr-code p {
    font-size: 14px;
    color: #666;
}

.consultation-footer {
    text-align: center;
    margin-top: 40px;
}

/* 媒体查询 - 响应式设计 */
@media (max-width: 992px) {
    .consultation-form-container {
        grid-template-columns: 1fr;
    }
    
    .consultation-contact-info {
        order: -1;
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .consultation-form {
        grid-template-columns: 1fr;
    }
    
    .form-submit {
        grid-column: 1;
    }
}

/* 预约演示页面样式 */
.demo-reservation {
    position: relative;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 40px 0;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin: 20px 0;
}

.reservation-header {
    text-align: center;
    margin-bottom: 40px;
}

.reservation-header h1, .consultation-header h1 {
    font-size: 36px;
    color: #1a3c6e;
    font-weight: 700;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.reservation-header h1::after, .consultation-header h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 3px;
}

.reservation-header p, .consultation-header p {
    color: #555;
    font-size: 18px;
    max-width: 800px;
    margin: 20px auto 0;
}

.reservation-form-container, .consultation-form-container {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 35px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(41, 98, 255, 0.1);
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.reservation-form-container::before, .consultation-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: #2c3e50;
    font-size: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #dce1e9;
    border-radius: 6px;
    font-size: 15px;
    transition: all 0.3s ease;
    background-color: #f9fafc;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(41, 98, 255, 0.1);
    outline: none;
    background-color: #fff;
}

.submit-button {
    padding: 14px 35px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(41, 98, 255, 0.25);
    width: 100%;
    max-width: 250px;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(41, 98, 255, 0.3);
}

/* 演示类型描述区域 */
.demo-types, .consultation-contact-info {
    background: linear-gradient(to bottom right, #f0f7ff, #e8f0fe);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(41, 98, 255, 0.1);
    height: 100%;
}

.demo-types h3, .consultation-contact-info h3 {
    margin-bottom: 25px;
    font-size: 22px;
    color: #1a3c6e;
    text-align: center;
    position: relative;
    padding-bottom: 12px;
}

.demo-types h3::after, .consultation-contact-info h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 3px;
}

.demo-type-item {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px dashed rgba(41, 98, 255, 0.2);
    transition: transform 0.3s ease;
}

.demo-type-item:hover {
    transform: translateX(5px);
}

.demo-type-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.demo-type-item h4 {
    display: flex;
    align-items: center;
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.demo-type-item h4 i {
    margin-right: 12px;
    color: var(--primary-color);
    background: rgba(41, 98, 255, 0.1);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.demo-type-item p {
    color: #555;
    line-height: 1.7;
    padding-left: 46px;
}

/* 联系信息区域 */
.consultation-contact-info ul li {
    margin-bottom: 18px;
    display: flex;
    align-items: flex-start;
    color: #444;
}

.consultation-contact-info ul li i {
    margin-right: 12px;
    color: var(--primary-color);
    background: rgba(41, 98, 255, 0.1);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 3px;
}

.business-hours {
    background: rgba(255, 255, 255, 0.7);
    padding: 15px;
    border-radius: 8px;
    margin: 25px 0;
}

.business-hours h4 {
    margin-bottom: 12px;
    font-size: 17px;
    color: #1a3c6e;
    display: flex;
    align-items: center;
}

.business-hours h4 i {
    margin-right: 10px;
    color: var(--primary-color);
}

.business-hours p {
    margin-bottom: 8px;
    color: #555;
    padding-left: 26px;
}

.qr-code {
    text-align: center;
    background: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.qr-code img {
    max-width: 150px;
    margin-bottom: 12px;
    border-radius: 8px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
}

.qr-code p {
    font-size: 14px;
    color: #555;
    font-weight: 500;
}

.reservation-footer, .consultation-footer {
    text-align: center;
    margin-top: 30px;
}

.back-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 25px;
    background: linear-gradient(90deg, #2a5298, #1a3c6e);
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    box-shadow: 0 4px 10px rgba(42, 82, 152, 0.2);
}

.back-button i {
    margin-right: 8px;
}

.back-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(42, 82, 152, 0.3);
}

/* 响应式优化 */
@media (max-width: 992px) {
    .reservation-form-container, .consultation-form-container {
        padding: 25px;
    }
    
    .demo-type-item h4, .consultation-contact-info ul li {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .demo-reservation, .online-consultation {
        padding: 100px 0 60px;
    }
    
    .reservation-header h1, .consultation-header h1 {
        font-size: 28px;
    }
    
    .reservation-header p, .consultation-header p {
        font-size: 16px;
    }
    
    .form-group label {
        font-size: 14px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px;
        font-size: 14px;
    }
    
    .submit-button {
        padding: 12px 25px;
        font-size: 15px;
    }
}

/* 解决首页banner中animate-text类的h1标题显示问题 */
.animate-text {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
    animation-fill-mode: both; /* 确保动画结束后保持结束状态 */
}

.animate-text-delay {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease 0.3s forwards;
    animation-fill-mode: both; /* 确保动画结束后保持结束状态 */
}

/* 解决页脚qr-code样式冲突 */
/* 表单页面二维码样式 */
.demo-reservation .qr-code,
.online-consultation .qr-code,
.consultation-contact-info .qr-code {
    text-align: center;
    background: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.demo-reservation .qr-code img,
.online-consultation .qr-code img,
.consultation-contact-info .qr-code img {
    max-width: 150px;
    margin-bottom: 12px;
    border-radius: 8px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
}

.demo-reservation .qr-code p,
.online-consultation .qr-code p,
.consultation-contact-info .qr-code p {
    font-size: 14px;
    color: #555;
    font-weight: 500;
}

/* 页脚二维码样式 */
footer .qr-code {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.8rem;
    border-radius: 8px;
}

footer .qr-code img {
    width: 80px;
    height: 80px;
    margin-bottom: 0.3rem;
}

footer .qr-code p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
}

/* 添加缺失的动画帧 */
@keyframes gradientBG {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* 添加按钮波纹效果 */
.cta-button:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150%;
    height: 150%;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.6s ease-out;
    z-index: -1;
}

.cta-button:hover:after {
    transform: translate(-50%, -50%) scale(1);
}

/* 添加备案信息样式 */
.footer-icp {
    text-align: center;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    position: relative;
}

.footer-icp::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
}

.footer-icp p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.85rem;
    line-height: 1.6;
}

.footer-icp a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding: 2px 4px;
}

.footer-icp a:hover {
    color: var(--accent-color);
}

.footer-icp a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--accent-color);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.footer-icp a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}