/* 全局样式 */
:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #00c6ff;
    --text-color: #f5f5f5;
    --light-gray: #f5f6fa;
    --white: #ffffff;
    --dark-blue: #1a2b47;
    --tech-gradient: linear-gradient(135deg, #00c6ff, #0072ff);
    --tech-glow: 0 0 15px rgba(0, 198, 255, 0.7);
    --container-width: 85%;  /* 新增：容器宽度比例 */
    --container-max-width: 1800px;  /* 新增：容器最大宽度 */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
    position: relative;
}

body {
    font-family: 'Microsoft YaHei', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    position: relative;
    z-index: 1;
    background-color: transparent;
}

/* 确保所有内容在视差背景之上，但在光晕效果之下 */
.navbar,
section,
.footer {
    position: relative;
    z-index: 5;
    background-color: transparent;
}

/* 创建内容包装器，确保所有内容正确滚动 */
.content-wrapper {
    position: relative;
    z-index: 5;
    overflow-x: hidden;
    min-height: 100vh;
    width: 100%;
    display: block;
}

/* 修改容器样式，使用可变宽度 */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 导航栏样式 */
.navbar {
    min-height: 68px;
    background: rgba(10, 24, 40, 0.92);
    box-shadow: 0 2px 16px rgba(0,198,255,0.10);
    border-bottom: 1.5px solid #00c6ff;
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar .container {
    width: 100%;
    max-width: none;
    padding-left: 0;
    padding-right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.logo {
    margin-right: auto;
}

.logo h1 {
    font-size: 1.4rem;
    padding-left: 10px;
    letter-spacing: 2px;
}

/* 添加装饰元素 */
.logo h1::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 70%;
    background: linear-gradient(to bottom, #00c6ff, #0072ff);
    border-radius: 2px;
}

/* 鼠标悬停效果 */
.logo:hover h1 {
    transform: translateX(3px);
    color: #00c6ff;
}

/* 添加优雅的下划线效果 */
.logo h1::after {
    content: '';
    position: absolute;
    left: 15px;
    bottom: -3px;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, #00c6ff, transparent);
    transition: width 0.4s ease;
}

.logo:hover h1::after {
    width: 70%;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--accent-color);
}

.center-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 3px;
    text-shadow: 0 2px 12px #00c6ff55;
    display: flex;
    align-items: center;
    gap: 18px;
}

.center-title::before,
.center-title::after {
    content: '';
    display: inline-block;
    width: 32px;
    height: 2px;
    background: linear-gradient(90deg, #00c6ff, transparent);
    border-radius: 1px;
}

.nav-links .submit-btn, .nav-links a#navContactBtn {
    background: linear-gradient(90deg, #00c6ff, #0072ff);
    color: #fff !important;
    border-radius: 20px;
    padding: 8px 26px;
    font-weight: 600;
    margin-left: 12px;
    box-shadow: 0 2px 8px #00c6ff33;
    transition: background 0.3s, box-shadow 0.3s;
    border: none;
    outline: none;
    display: inline-block;
}

.nav-links a#navContactBtn:hover {
    background: linear-gradient(90deg, #00eaff, #00c6ff);
    box-shadow: 0 0 16px #00eaff88;
    color: #fff;
}

/* 首页轮播图样式 */
.hero-slider {
    position: relative;
    height: 100vh;
    margin-top: 80px;
    overflow: hidden;
    background-color: transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-radius: 0;
    margin: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-container {
    position: relative;
    height: 100%;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.slides {
    height: 100%;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

/* 移除原有的半透明背景，让动态背景完全显示 */
.slide::before {
    content: none;
}

.slide-content {
    position: relative;
    text-align: center;
    color: white;
    z-index: 2;
    width: 90%;
    max-width: 900px;
    padding: 50px 40px;
    opacity: 0;
    transition: opacity 1s ease 0.5s, transform 1s ease 0.5s;
    transform: translateY(30px);
    /* 移除半透明背景 */
    background-color: transparent;
    border-radius: 15px;
    /* 移除模糊效果 */
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
    border: none;
}

.slide.active .slide-content {
    opacity: 1;
    transform: translateY(0);
}

/* 增强文字阴影效果，使其在没有背景的情况下更加清晰可见 */
.slide-content h1 {
    font-size: 3.8rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8), 0 0 30px rgba(0, 0, 0, 0.6);
    position: relative;
    display: inline-block;
    font-weight: 700;
    letter-spacing: 1px;
}

.slide-content h1::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 4px;
    background-color: var(--accent-color);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    transition: width 0.5s ease 1s;
    border-radius: 2px;
}

.slide.active .slide-content h1::after {
    width: 120px;
}

.slide-content .subtitle {
    font-size: 1.8rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 0, 0, 0.6);
    font-weight: 500;
}

.cta-btn {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(135deg, rgba(0, 198, 255, 0.9), rgba(0, 114, 255, 0.9));
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.4s ease;
    box-shadow: 0 8px 20px rgba(0, 198, 255, 0.4);
    border: 2px solid var(--accent-color);
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.6s ease;
    z-index: -1;
}

.cta-btn:hover::before {
    left: 100%;
}

.cta-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, transparent, #fff, transparent);
    animation: buttonGlow 2s linear infinite;
}

@keyframes buttonGlow {
    0% {
        opacity: 0.3;
        transform: translateX(-100%);
    }
    100% {
        opacity: 1;
        transform: translateX(100%);
    }
}

.slider-controls {
    position: absolute;
    bottom: 30px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

.slider-arrow {
    background: rgba(0, 198, 255, 0.2);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
    margin: 0 15px;
}

.slider-arrow:hover {
    background: rgba(0, 198, 255, 0.8);
}

.slider-dots {
    display: flex;
    justify-content: center;
    align-items: center;
}

.dot {
    width: 12px;
    height: 12px;
    margin: 0 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: var(--accent-color);
    transform: scale(1.3);
}

@media (max-width: 768px) {
    .slide-content h1 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .slide-content .subtitle {
        font-size: 1.3rem;
        margin-bottom: 1.8rem;
    }
    
    .slider-arrow {
        width: 35px;
        height: 35px;
    }
    
    .logo h1 {
        font-size: 1.5rem;
    }
    
    .logo-icon-small {
        margin-right: 5px;
    }
    
    .nav-links {
        display: none;
    }
    
    .navbar .container {
        justify-content: center;
    }

    .slide-content {
        padding: 30px 25px;
        width: 95%;
    }

    .cta-btn {
        padding: 12px 30px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .slide-content h1 {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }
    
    .slide-content .subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .cta-btn {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
    
    .logo h1 {
        font-size: 1.3rem;
        padding-left: 10px;
    }
    
    .logo h1::before {
        height: 60%;
        width: 3px;
    }

    .slide-content h1::after {
        bottom: -8px;
        height: 3px;
    }

    .slide.active .slide-content h1::after {
        width: 80px;
    }

    .slide-content {
        padding: 25px 20px;
    }
}

/* 通用部分样式 */
.section {
    padding: 5rem 0;
    position: relative;
}

.section#clients {
    /* 恢复原始布局，不强制flex、width等 */
    position: relative;
    overflow: hidden;
    padding: 5rem 0;
}

.clients-container, .clients-rows, .clients-wrapper {
  width: var(--container-width);
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  overflow: hidden;
}

.clients-container::-webkit-scrollbar {
  height: 8px;
}
.clients-container::-webkit-scrollbar-thumb {
  background: #e74c3c;
  border-radius: 4px;
}
.clients-container::-webkit-scrollbar-track {
  background: #f5f5f5;
}
.client-img-scroll {
  width: 120px;
  height: 80px;
  object-fit: contain;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transition: transform 0.2s;
}
.client-img-scroll:hover {
  transform: scale(1.08);
  box-shadow: 0 4px 16px rgba(231,76,60,0.15);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
}

.section-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 700px;
    margin: 0 auto;
}

/* 统一标题样式 */
.about-header h2, 
.values-header h2, 
.services-header h2, 
.advantages-header h2, 
.startup-events-header h2, 
.clients-header h2, 
.honors-header h2, 
.contact-header h2 {
    color: #ffffff;
    text-shadow: 0 0 15px rgba(0, 198, 255, 0.7);
    font-weight: 700;
    position: relative;
    font-size: 3rem;
    margin-bottom: 0.5rem;
    text-align: left;
    margin-left: 5%;
    letter-spacing: 1px;
    transform: translateZ(0);
    display: inline-block;
    padding-right: 30px;
}

/* 统一标题装饰线 */
.about-header h2:after, 
.values-header h2:after, 
.services-header h2:after, 
.advantages-header h2:after, 
.startup-events-header h2:after, 
.clients-header h2:after, 
.honors-header h2:after, 
.contact-header h2:after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 2px;
    background-color: rgba(0, 198, 255, 0.8);
    box-shadow: 0 0 10px rgba(0, 198, 255, 0.5);
}

/* 统一副标题样式 */
.en-title {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.2rem;
    margin-left: 5%;
    margin-top: 0.5rem;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* 公司简介样式 */
.about {
    background-color: transparent;
    padding: 5rem 0;
    overflow: hidden;
    position: relative;
}

.about::before {
    content: none;
}

.about-header {
    padding: 0 0 2rem 0;
    position: relative;
    text-align: center;
    margin-bottom: 2rem;
}

.about-header h2 {
    color: #ffffff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
    font-weight: 600;
    position: relative;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    text-align: left;
    margin-left: 5%;
}

.about-header h2:after {
    content: '';
    position: absolute;
    left: -15px;
    top: 0;
    height: 100%;
    width: 5px;
    background-color: #00c6ff;
    transform: scaleY(1.2);
}

.en-title {
    color: #fff;
    font-size: 1rem;
    margin-left: 5%;
    margin-top: 0.3rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* 修改关于我们容器样式 */
.about-container {
    display: flex;
    width: var(--container-width);
    max-width: var(--container-max-width);
    margin: 0 auto;
    height: auto;
    min-height: 400px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.5s ease;
    opacity: 1;
    transform: translateY(0);
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.about-container.animate {
    opacity: 1;
    transform: translateY(0);
}

.about-image {
    flex: 1;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
}

.about-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0,0,0,0.6), rgba(0,0,0,0.2));
    z-index: 1;
}

.about-image::after {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0) 100%);
    transform: rotate(45deg);
    transition: all 1.5s ease;
    z-index: 2;
}

.about-container:hover .about-image::after {
    top: 100%;
    left: 100%;
}

.left-image {
    /* 如果本地图片不可用，使用在线图片 */
    background: url('https://images.unsplash.com/photo-1449824913935-59a10b8d2000?ixlib=rb-1.2.1&auto=format&fit=crop&w=1000&q=80') center/cover no-repeat;
    position: relative;
    animation: slideFromLeft 1s ease forwards;
}

.right-image {
    /* 如果本地图片不可用，使用在线图片 */
    background: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?ixlib=rb-1.2.1&auto=format&fit=crop&w=1000&q=80') center/cover no-repeat;
    position: relative;
    animation: slideFromRight 1s ease forwards;
}

.about-content {
    flex: 2;
    background: transparent;
    color: white;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    position: relative;
    overflow: hidden;
    animation: fadeIn 1s ease 0.4s forwards;
    opacity: 1;
}

.about-content::before {
    content: none;
}

.about-content::after {
    content: '"';
    position: absolute;
    font-size: 250px;
    font-family: serif;
    opacity: 0.1;
    bottom: -80px;
    right: 30px;
    line-height: 1;
    z-index: 1;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    opacity: 1;
}

.about-content-inner {
    position: relative;
    z-index: 3;
    width: 100%;
    opacity: 1;
}

.about-years {
    display: inline-block;
    margin-bottom: 1.5rem;
    background: rgba(0, 198, 255, 0.2);
    padding: 15px 25px;
    border-radius: 10px;
    position: relative;
    animation: scaleIn 1s ease 0.2s forwards;
    opacity: 1;
    border: 1px solid rgba(0, 198, 255, 0.3);
    box-shadow: 0 5px 15px rgba(0, 198, 255, 0.2);
}

.about-years .number {
    font-size: 3rem;
    font-weight: bold;
    display: inline-block;
    vertical-align: middle;
    line-height: 1;
    color: rgba(0, 198, 255, 1);
    text-shadow: 0 0 10px rgba(0, 198, 255, 0.5);
}

.stat-item {
    text-align: center;
    flex: 1;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    margin: 0 10px;
    transition: transform 0.3s ease, background 0.3s ease;
    opacity: 1;
    transform: translateY(0);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.stat-item:hover {
    transform: translateY(-10px);
    background: rgba(0, 198, 255, 0.2);
    border: 1px solid rgba(0, 198, 255, 0.3);
}

.stat-number {
    font-size: 2.2rem;
    font-weight: bold;
    margin-bottom: 10px;
    background: linear-gradient(to right, #ffffff, #00c6ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
}

/* 价值观样式 - 现代科技风格 */
.values {
    background-color: transparent;
    padding: 5rem 0;
    position: relative;
}

.values::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 198, 255, 0.05) 0%, transparent 70%);
    z-index: 0;
}

.values-header {
    padding: 0 0 2rem 0;
    position: relative;
    text-align: center;
    margin-bottom: 2rem;
}

.values-header h2 {
    color: #ffffff;
    text-shadow: 0 0 15px rgba(0, 198, 255, 0.7);
    font-weight: 700;
    position: relative;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    display: inline-block;
}

.values-header .en-title {
    color: #fff;
    text-shadow: 0 0 10px rgba(0, 198, 255, 0.5);
    text-align: center;
    margin-left: 0;
}

/* 修改价值观容器样式 */
.values-container {
    width: var(--container-width);
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* 新的价值观网格布局 */
.values-grid {
    display: block;
    width: 100%;
}

/* 主要价值观卡片 */
.main-value {
    grid-column: 1 / -1;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, rgba(0, 114, 255, 0.2), rgba(0, 0, 0, 0.7));
    transform: translateY(0);
    padding: 2rem;
    text-align: center;
    border-radius: 15px;
    border: 1px solid rgba(0, 198, 255, 0.3);
    box-shadow: 0 0 20px rgba(0, 198, 255, 0.3);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.main-value .value-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
}

.main-value .value-icon i {
    font-size: 3rem;
}

.main-value h3 {
    font-size: 2.2rem;
    margin: 1.5rem 0;
}

.main-value p {
    font-size: 1.2rem;
    max-width: 80%;
    margin: 0 auto;
}

/* 价值观卡片样式 */
.value-card {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 114, 255, 0.2));
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 198, 255, 0.3);
    box-shadow: 0 0 20px rgba(0, 198, 255, 0.3);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 0.8s forwards;
}

.value-card:nth-child(2) {
    animation-delay: 0.1s;
}

.value-card:nth-child(3) {
    animation-delay: 0.3s;
}

.value-card:nth-child(4) {
    animation-delay: 0.5s;
}

.value-card:nth-child(5) {
    animation-delay: 0.7s;
}

.value-card:nth-child(6) {
    animation-delay: 0.9s;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 30px rgba(0, 198, 255, 0.5);
    border-color: rgba(0, 198, 255, 0.6);
}

.value-card-inner {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

/* 价值观图标 */
.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #00c6ff, #0072ff);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 0 20px rgba(0, 198, 255, 0.6);
    border: 2px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.value-card:hover .value-icon {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(0, 198, 255, 0.8);
}

.value-icon i {
    font-size: 2rem;
    color: white;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
}

.value-card:hover .value-icon i {
    transform: rotateY(360deg);
}

/* 价值观标题 */
.value-card h3 {
    font-size: 1.6rem;
    color: #fff;
    margin: 1rem 0;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(0, 198, 255, 0.7);
    position: relative;
    transition: all 0.3s ease;
}

.value-card:hover h3 {
    transform: scale(1.05);
    color: #00c6ff;
}

/* 分隔线 */
.value-divider {
    width: 50px;
    height: 3px;
    background: linear-gradient(to right, #00c6ff, transparent);
    margin: 0.5rem auto 1.5rem;
    transition: width 0.3s ease;
}

.value-card:hover .value-divider {
    width: 100px;
}

/* 价值观描述 */
.value-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
    transition: all 0.3s ease;
}

.value-card:hover p {
    color: #fff;
}

/* 发光效果 */
.glow-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 198, 255, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.value-card:hover .glow-effect {
    opacity: 1;
}

/* 活跃状态样式 */
.value-card.value-active {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 198, 255, 0.5);
    border-color: rgba(0, 198, 255, 0.6);
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(0, 114, 255, 0.3));
}

.value-card.value-active .value-icon {
    transform: scale(1.15);
    box-shadow: 0 0 35px rgba(0, 198, 255, 1);
}

.value-card.value-active h3 {
    color: #00c6ff;
    transform: scale(1.05);
}

.value-card.value-active .value-divider {
    width: 120px;
    background: linear-gradient(to right, #00c6ff, rgba(0, 198, 255, 0.3));
}

.value-card.card-hover {
    z-index: 5;
}

/* 添加图标脉冲动画 */
.value-icon.icon-pulse {
    animation: iconPulse 1s infinite alternate;
}

@keyframes iconPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 15px rgba(0, 198, 255, 0.6);
    }
    100% {
        transform: scale(1.1);
        box-shadow: 0 0 25px rgba(0, 198, 255, 1);
    }
}

/* 添加卡片淡入动画 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 响应式布局 */
@media (max-width: 1200px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .values-grid {
        grid-template-columns: 1fr;
        grid-gap: 1.5rem;
    }
    
    .main-value {
        padding: 1.5rem;
    }
    
    .main-value .value-icon {
        width: 80px;
        height: 80px;
    }
    
    .main-value .value-icon i {
        font-size: 2.5rem;
    }
    
    .main-value h3 {
        font-size: 1.8rem;
    }
    
    .main-value p {
        font-size: 1.1rem;
    }
    
    .value-card-inner {
        padding: 2rem 1.2rem;
    }
    
    .value-card h3 {
        font-size: 1.4rem;
    }
}

/* 值卡片动画效果 */
.value-card {
    --card-index: 0;
}

.value-card:nth-child(1) {
    --card-index: 0;
}

.value-card:nth-child(2) {
    --card-index: 1;
}

.value-card:nth-child(3) {
    --card-index: 2;
}

.value-card:nth-child(4) {
    --card-index: 3;
}

.value-card:nth-child(5) {
    --card-index: 4;
}

.value-card:nth-child(6) {
    --card-index: 5;
}

/* 服务项目样式 */
.services {
    padding: 5rem 0;
    position: relative;
    background-color: transparent;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 198, 255, 0.05) 0%, transparent 70%);
    z-index: 0;
}

.services-header {
    padding: 0 0 2rem 0;
    position: relative;
    text-align: center;
    margin-bottom: 2rem;
}

.services-header h2 {
    color: #ffffff;
    text-shadow: 0 0 15px rgba(0, 198, 255, 0.7);
    font-weight: 700;
    position: relative;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    display: inline-block;
}

.services-header .en-title {
    color: #fff;
    text-shadow: 0 0 10px rgba(0, 198, 255, 0.5);
    text-align: center;
    margin-left: 0;
}

.services-container {
    width: var(--container-width);
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 2rem;
    margin: 2rem 0;
}

.service-item {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 114, 255, 0.2));
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 198, 255, 0.3);
    box-shadow: 0 0 20px rgba(0, 198, 255, 0.3);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 0.8s forwards;
}

.service-item:nth-child(1) {
    animation-delay: 0.1s;
}

.service-item:nth-child(2) {
    animation-delay: 0.3s;
}

.service-item:nth-child(3) {
    animation-delay: 0.5s;
}

.service-item:nth-child(4) {
    animation-delay: 0.7s;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 30px rgba(0, 198, 255, 0.5);
    border-color: rgba(0, 198, 255, 0.6);
}

.service-item h3 {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(0, 198, 255, 0.7);
    position: relative;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #00c6ff, #0072ff);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 1rem auto;
    box-shadow: 0 0 15px rgba(0, 198, 255, 0.6);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
}

.service-item:hover .service-icon {
    transform: scale(1.1);
    box-shadow: 0 0 25px rgba(0, 198, 255, 1);
}

.service-icon i {
    font-size: 2.5rem;
    color: white;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.service-details {
    margin-top: 1.5rem;
}

.service-details p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-size: 1rem;
    margin-bottom: 0.8rem;
}

/* 服务项目响应式布局 */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        grid-gap: 1.5rem;
    }
    
    .service-item {
        padding: 1.5rem;
    }
    
    .service-icon {
        width: 70px;
        height: 70px;
    }
    
    .service-icon i {
        font-size: 2rem;
    }
    
    .service-item h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .service-item {
        padding: 1.2rem;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        margin: 0.8rem auto;
    }
    
    .service-icon i {
        font-size: 1.8rem;
    }
    
    .service-item h3 {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }
    
    .service-details p {
        font-size: 0.9rem;
        margin-bottom: 0.6rem;
    }
}

/* 服务优势样式 */
.advantages {
    padding: 5rem 0;
    position: relative;
    background-color: transparent;
}

.advantages::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 198, 255, 0.05) 0%, transparent 70%);
    z-index: 0;
}

.advantages-header {
    padding: 0 0 2rem 0;
    position: relative;
    text-align: center;
    margin-bottom: 2rem;
}

.advantages-header h2 {
    color: #ffffff;
    text-shadow: 0 0 15px rgba(0, 198, 255, 0.7);
    font-weight: 700;
    position: relative;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    display: inline-block;
}

.advantages-header .en-title {
    color: #fff;
    text-shadow: 0 0 10px rgba(0, 198, 255, 0.5);
    text-align: center;
    margin-left: 0;
}

.advantages-container {
    width: var(--container-width);
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 2rem;
    margin: 2rem 0;
}

.advantage-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    height: 100%;
    transform: translateY(30px);
    opacity: 0;
    animation: fadeInUp 0.8s forwards;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(0, 198, 255, 0.2);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    padding-top: 30px;
}

.advantage-item:nth-child(1) {
    animation-delay: 0.2s;
}

.advantage-item:nth-child(2) {
    animation-delay: 0.4s;
}

.advantage-item:nth-child(3) {
    animation-delay: 0.6s;
}

.advantage-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 198, 255, 0.3);
    border-color: rgba(0, 198, 255, 0.5);
}

.advantage-icon {
    position: relative;
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.advantage-icon::before {
    content: '';
    position: absolute;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(0, 198, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.7;
    transition: all 0.5s ease;
}

.advantage-item:hover .advantage-icon::before {
    width: 140px;
    height: 140px;
    opacity: 1;
    background: radial-gradient(circle, rgba(0, 198, 255, 0.2) 0%, transparent 70%);
}

.advantage-badge {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #00c6ff, #0072ff);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    box-shadow: 0 10px 20px rgba(0, 198, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
    z-index: 2;
}

.advantage-badge::after {
    content: '';
    position: absolute;
    width: 90%;
    height: 90%;
    border-radius: 50%;
    border: 1px dashed rgba(255, 255, 255, 0.3);
    top: 5%;
    left: 5%;
    animation: rotate 20s linear infinite;
}

.advantage-item:hover .advantage-badge {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 15px 30px rgba(0, 198, 255, 0.6);
}

.advantage-badge i {
    font-size: 2.2rem;
    color: white;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.advantage-content {
    padding: 0.5rem 1.5rem 1.5rem;
    border-radius: 15px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-top: none;
}

.advantage-content.red-bg {
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.2), rgba(0, 0, 0, 0.3));
}

.advantage-content.gray-bg {
    background: linear-gradient(135deg, rgba(52, 73, 94, 0.2), rgba(0, 0, 0, 0.3));
}

.advantage-content h3 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(0, 198, 255, 0.7);
    text-align: center;
}

.advantage-content p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-size: 1rem;
    text-align: center;
}

/* 服务优势响应式布局 */
@media (max-width: 992px) {
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .advantages-grid {
        grid-template-columns: 1fr;
        grid-gap: 3rem;
    }
    
    .advantage-content {
        padding: 0.5rem 1.2rem 1.2rem;
    }
    
    .advantage-content h3 {
        font-size: 1.3rem;
    }
    
    .advantage-content p {
        font-size: 0.95rem;
    }
}

/* 初创活动样式 */
.startup-events {
    padding: 5rem 0;
    position: relative;
    background-color: transparent;
}

.startup-events::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 198, 255, 0.05) 0%, transparent 70%);
    z-index: 0;
}

.startup-events-header {
    padding: 0 0 2rem 0;
    position: relative;
    text-align: center;
    margin-bottom: 2rem;
}

.startup-events-header h2 {
    color: #ffffff;
    text-shadow: 0 0 15px rgba(0, 198, 255, 0.7);
    font-weight: 700;
    position: relative;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    display: inline-block;
}

.startup-events-header .en-title {
    color: #fff;
    text-shadow: 0 0 10px rgba(0, 198, 255, 0.5);
    text-align: center;
    margin-left: 0;
}

.startup-events-container {
    width: var(--container-width);
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.startup-events-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    grid-gap: 2rem;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 198, 255, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.startup-events-images {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(0, 114, 255, 0.2));
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    height: 100%;
    width: 100%;
}

.grid-item {
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(0, 198, 255, 0.1);
    transition: all 0.3s ease;
}

.grid-item:hover {
    background: rgba(0, 198, 255, 0.1);
}

.building-img {
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?ixlib=rb-1.2.1&auto=format&fit=crop&w=1000&q=80') center/cover no-repeat;
    transition: all 0.5s ease;
}

.grid-item:hover .building-img {
    transform: scale(1.1);
}

.icon-img {
    background: linear-gradient(135deg, rgba(0, 114, 255, 0.2), rgba(0, 0, 0, 0.7));
}

.icon-img i {
    font-size: 2rem;
    color: rgba(0, 198, 255, 0.8);
    text-shadow: 0 0 15px rgba(0, 198, 255, 0.5);
    transition: all 0.3s ease;
}

.grid-item:hover .icon-img i {
    transform: scale(1.2);
    color: rgba(0, 198, 255, 1);
}

.startup-events-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.event-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    border: 1px solid rgba(0, 198, 255, 0.1);
    transition: all 0.3s ease;
    transform: translateX(30px);
    opacity: 0;
    animation: fadeInLeft 0.8s forwards;
}

.event-item:nth-child(1) {
    animation-delay: 0.2s;
}

.event-item:nth-child(2) {
    animation-delay: 0.4s;
}

.event-item:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes fadeInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.event-item:hover {
    background: rgba(0, 198, 255, 0.1);
    border-color: rgba(0, 198, 255, 0.3);
    transform: translateX(-5px);
}

.event-item h3 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(0, 198, 255, 0.7);
    position: relative;
    display: inline-block;
}

.event-item h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(to right, rgba(0, 198, 255, 1), transparent);
    transition: width 0.3s ease;
}

.event-item:hover h3::after {
    width: 100%;
}

.event-item p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-size: 1rem;
}

/* 初创活动响应式布局 */
@media (max-width: 992px) {
    .startup-events-grid {
        grid-template-columns: 1fr;
    }
    
    .startup-events-images {
        display: none;
    }
}

@media (max-width: 768px) {
    .event-item {
        padding: 1.2rem;
    }
    
    .event-item h3 {
        font-size: 1.3rem;
    }
    
    .event-item p {
        font-size: 0.95rem;
    }
}

/* 动画效果 */
@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* 荣誉资质样式 */
.honors {
    padding: 5rem 0;
    position: relative;
    background-color: transparent;
}

.honors::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 198, 255, 0.05) 0%, transparent 70%);
    z-index: 0;
}

.honors-header {
    padding: 0 0 2rem 0;
    position: relative;
    text-align: center;
    margin-bottom: 2rem;
}

.honors-header h2 {
    color: #ffffff;
    text-shadow: 0 0 15px rgba(0, 198, 255, 0.7);
    font-weight: 700;
    position: relative;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    display: inline-block;
}

.honors-header .en-title {
    color: #fff;
    text-shadow: 0 0 10px rgba(0, 198, 255, 0.5);
    text-align: center;
    margin-left: 0;
}

.honors-container {
    width: var(--container-width);
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* 荣誉资质样式简化 */
.honors-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

.honor-card {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
    border: 1px solid rgba(0, 198, 255, 0.2);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    transform: translateY(30px);
    opacity: 0;
    animation: fadeInUp 0.8s forwards;
    height: 100%;
    padding-top: 30px; /* 增加顶部内边距，为图标留出空间 */
}

.honor-card:nth-child(1) {
    animation-delay: 0.1s;
}

.honor-card:nth-child(2) {
    animation-delay: 0.2s;
}

.honor-card:nth-child(3) {
    animation-delay: 0.3s;
}

.honor-card:nth-child(4) {
    animation-delay: 0.4s;
}

.honor-card:nth-child(5) {
    animation-delay: 0.5s;
}

.honor-card:nth-child(6) {
    animation-delay: 0.6s;
}

.honor-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 198, 255, 0.3);
    border-color: rgba(0, 198, 255, 0.5);
}

.honor-card.featured {
    transform: scale(1.05) translateY(30px);
    border-color: rgba(0, 198, 255, 0.4);
    box-shadow: 0 20px 40px rgba(0, 198, 255, 0.4);
}

.honor-card.featured:hover {
    transform: scale(1.05) translateY(-15px);
    box-shadow: 0 25px 50px rgba(0, 198, 255, 0.5);
}

.honor-icon {
    position: relative;
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.honor-icon::before {
    content: '';
    position: absolute;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(0, 198, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.7;
    transition: all 0.5s ease;
}

.honor-card:hover .honor-icon::before {
    width: 140px;
    height: 140px;
    opacity: 1;
    background: radial-gradient(circle, rgba(0, 198, 255, 0.2) 0%, transparent 70%);
}

.honor-badge {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #00c6ff, #0072ff);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    box-shadow: 0 10px 20px rgba(0, 198, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
    z-index: 2;
}

.honor-badge::after {
    content: '';
    position: absolute;
    width: 90%;
    height: 90%;
    border-radius: 50%;
    border: 1px dashed rgba(255, 255, 255, 0.3);
    top: 5%;
    left: 5%;
    animation: rotate 20s linear infinite;
}

.honor-card:hover .honor-badge {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 15px 30px rgba(0, 198, 255, 0.6);
}

.honor-badge i {
    font-size: 2.2rem;
    color: white;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.honor-content {
    padding: 0.5rem 1.5rem 1.5rem;
    text-align: center;
}

.honor-content h3 {
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 0.8rem;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(0, 198, 255, 0.5);
}

.honor-desc {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.honor-year {
    display: inline-block;
    background: rgba(0, 198, 255, 0.2);
    color: #fff;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    border: 1px solid rgba(0, 198, 255, 0.3);
}

.rating {
    margin-top: 0.5rem;
}

.rating i {
    color: #FFD700;
    margin: 0 2px;
    font-size: 1rem;
}

.ribbon {
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    overflow: hidden;
}

.ribbon span {
    position: absolute;
    display: block;
    width: 225px;
    padding: 8px 0;
    background-color: rgba(0, 198, 255, 0.7);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    color: #fff;
    font-size: 0.7rem;
    text-transform: uppercase;
    text-align: center;
    right: -25px;
    top: 30px;
    transform: rotate(45deg);
    font-weight: 700;
    letter-spacing: 1px;
}

.ribbon span::before {
    content: "";
    position: absolute;
    left: 0px;
    top: 100%;
    z-index: -1;
    border-left: 3px solid rgba(0, 198, 255, 0.7);
    border-right: 3px solid transparent;
    border-bottom: 3px solid transparent;
    border-top: 3px solid rgba(0, 198, 255, 0.7);
}

.ribbon span::after {
    content: "";
    position: absolute;
    right: 0%;
    top: 100%;
    z-index: -1;
    border-right: 3px solid rgba(0, 198, 255, 0.7);
    border-left: 3px solid transparent;
    border-bottom: 3px solid transparent;
    border-top: 3px solid rgba(0, 198, 255, 0.7);
}

/* 响应式样式 */
@media (max-width: 992px) {
    .honors-showcase {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .honor-card {
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .honor-card {
        margin-bottom: 3rem;
    }
    
    .honor-card.featured {
        transform: translateY(30px);
    }
    
    .honor-card.featured:hover {
        transform: translateY(-15px);
    }
}

@media (max-width: 576px) {
    .honors-showcase {
        grid-template-columns: 1fr;
    }
}

/* 客户案例样式 - Logo展示 */

.clients-header {
    padding: 0 0 2rem 0;
    position: relative;
    text-align: center;
    margin-bottom: 2rem;
}

.clients-header h2 {
    color: #ffffff;
    text-shadow: 0 0 15px rgba(0, 198, 255, 0.7);
    font-weight: 700;
    position: relative;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    display: inline-block;
}

.clients-header .en-title {
    color: #fff;
    text-shadow: 0 0 10px rgba(0, 198, 255, 0.5);
    text-align: center;
    margin-left: 0;
}

.clients-rows {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 100%;
    overflow: hidden;
}

.client-list {
    display: flex;
    gap: 2rem;
    padding: 1rem 0;
    width: max-content;
    position: relative;
    margin: 0 auto;
    overflow: hidden;
}

.client-list.row-1 {
    animation: scrollRight 18s linear infinite;
    animation-delay: 0s;
    will-change: transform;
    transform-origin: center center;
}

.client-list.row-2 {
    animation: scrollRight 18s linear infinite reverse;
    animation-delay: 0s;
    will-change: transform;
    transform-origin: center center;
}

.client-list:hover {
    animation-play-state: paused;
}

@keyframes scrollRight {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.client-item {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.5s ease;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    width: 200px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.2rem;
    cursor: pointer;
    flex-shrink: 0;
}

.client-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 198, 255, 0.3);
    border-color: rgba(0, 198, 255, 0.4);
    background: rgba(255, 255, 255, 0.15);
    z-index: 10;
}

.client-logo-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.client-logo {
    max-width: 80%;
    max-height: 60%;
    object-fit: contain;
    transition: all 0.5s ease;
    filter: grayscale(100%);
    opacity: 0.7;
}

.client-item:hover .client-logo {
    filter: grayscale(0);
    opacity: 1;
    transform: scale(1.05);
}

.client-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 198, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.3;
    transition: all 0.5s ease;
    animation: glowPulse 4s infinite;
}

.client-item:hover .client-glow {
    opacity: 0.6;
    background: radial-gradient(circle, rgba(0, 198, 255, 0.2) 0%, transparent 70%);
}

/* 客户卡片3D悬停效果 */
.client-item {
    transform-style: preserve-3d;
    perspective: 1000px;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.6s ease;
}

.client-item:hover {
    transform: translateY(-10px) rotateX(5deg) rotateY(-5deg);
    box-shadow: 15px 15px 25px rgba(0, 114, 255, 0.2), 
                -5px -5px 25px rgba(0, 198, 255, 0.1);
}

/* 增强客户名称动画效果 */
.client-name {
    position: relative;
    display: inline-block;
}

.client-name::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, #00c6ff, transparent);
    transform: translateX(-50%);
    transition: width 0.4s ease;
}

.client-item:hover .client-name::after {
    width: 80%;
}

/* 添加脉冲动画效果到图标 */
@keyframes iconPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 198, 255, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(0, 198, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 198, 255, 0);
    }
}

.client-hexagon {
    animation: iconPulse 2s infinite;
}

.client-item:hover .client-hexagon {
    animation: iconPulse 1s infinite;
}

/* 添加脉冲发光动画 */
@keyframes glowPulse {
    0%, 100% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(0.9);
    }
    50% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

/* 页脚样式 */
.footer {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.9), rgba(0, 114, 255, 0.1), rgba(0, 0, 0, 0.9));
    padding: 3rem 0 1.5rem;
    position: relative;
    z-index: 10;
    border-top: 1px solid rgba(0, 198, 255, 0.3);
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.3);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.footer-info {
    flex: 1;
    min-width: 250px;
    margin-bottom: 1.5rem;
}

.footer-info h3 {
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 1rem;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(0, 198, 255, 0.5);
    position: relative;
    display: inline-block;
}

.footer-info h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(to right, rgba(0, 198, 255, 1), transparent);
    transition: width 0.3s ease;
}

.footer-info:hover h3::after {
    width: 100%;
}

.footer-info p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.footer-social {
    flex: 1;
    min-width: 250px;
    margin-bottom: 1.5rem;
}

.footer-social h3 {
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 1rem;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(0, 198, 255, 0.5);
    position: relative;
    display: inline-block;
}

.footer-social h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(to right, rgba(0, 198, 255, 1), transparent);
    transition: width 0.3s ease;
}

.footer-social:hover h3::after {
    width: 100%;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(0, 198, 255, 0.2), rgba(0, 114, 255, 0.2));
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 198, 255, 0.3);
}

.social-links a:hover {
    transform: translateY(-5px);
    background: linear-gradient(135deg, rgba(0, 198, 255, 0.4), rgba(0, 114, 255, 0.4));
    box-shadow: 0 5px 15px rgba(0, 198, 255, 0.4);
}

.social-links i {
    font-size: 1.3rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* 页脚响应式布局 */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
    }
    
    .footer-info, .footer-social {
        margin-bottom: 2rem;
    }
}

/* 联系我们样式 */
.contact {
    padding: 5rem 0;
    position: relative;
    background-color: transparent;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 198, 255, 0.05) 0%, transparent 70%);
    z-index: 0;
}

.contact-header {
    padding: 0 0 2rem 0;
    position: relative;
    text-align: center;
    margin-bottom: 2rem;
}

.contact-header h2 {
    color: #ffffff;
    text-shadow: 0 0 15px rgba(0, 198, 255, 0.7);
    font-weight: 700;
    position: relative;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    display: inline-block;
}

.contact-header .en-title {
    color: #fff;
    text-shadow: 0 0 10px rgba(0, 198, 255, 0.5);
    text-align: center;
    margin-left: 0;
}

.contact-container {
    width: var(--container-width);
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 3rem;
}

.contact-info {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 198, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transform: translateX(-30px);
    opacity: 0;
    animation: fadeInRight 0.8s forwards;
}

@keyframes fadeInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #00c6ff, #0072ff);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 10px 20px rgba(0, 198, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
}

.contact-item:hover .contact-icon {
    transform: scale(1.1);
    box-shadow: 0 15px 30px rgba(0, 198, 255, 0.6);
}

.contact-icon i {
    font-size: 1.5rem;
    color: white;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.contact-text h3 {
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 0.5rem;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(0, 198, 255, 0.5);
}

.contact-text p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 1rem;
}

.contact-form {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 198, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transform: translateX(30px);
    opacity: 0;
    animation: fadeInLeft 0.8s forwards 0.2s;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    color: #fff;
    margin-bottom: 0.5rem;
    font-size: 1rem;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 198, 255, 0.2);
    border-radius: 8px;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: rgba(0, 198, 255, 0.6);
    box-shadow: 0 0 15px rgba(0, 198, 255, 0.3);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.submit-btn {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(135deg, rgba(0, 198, 255, 0.9), rgba(0, 114, 255, 0.9));
    color: white;
    text-decoration: none;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.4s ease;
    box-shadow: 0 8px 20px rgba(0, 198, 255, 0.4);
    cursor: pointer;
    border: 2px solid var(--accent-color);
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    width: 100%;
}

.submit-btn:hover {
    box-shadow: 0 12px 25px rgba(0, 198, 255, 0.6);
    transform: translateY(-3px);
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.6s ease;
    z-index: -1;
}

.submit-btn:hover::before {
    left: 100%;
}

/* 联系我们响应式布局 */
@media (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
        grid-gap: 2rem;
    }
    
    .contact-info, .contact-form {
        transform: translateX(0);
    }
}

@media (max-width: 768px) {
    .contact-item {
        margin-bottom: 1.5rem;
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
        margin-right: 1rem;
    }
    
    .contact-icon i {
        font-size: 1.2rem;
    }
    
    .contact-text h3 {
        font-size: 1.1rem;
    }
    
    .contact-text p {
        font-size: 0.95rem;
    }
}

/* 弹窗样式 */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal[style*="display: block"] {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: rgba(0, 0, 0, 0.8);
    margin: 10% auto;
    padding: 2rem;
    width: 80%;
    max-width: 600px;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(0, 198, 255, 0.3);
    position: relative;
    animation: modalFadeIn 0.5s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    color: #fff;
    font-size: 1.8rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.close-btn:hover {
    color: var(--accent-color);
    transform: scale(1.1);
}

/* 表单样式 */
#contactForm {
    width: 100%;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: #fff;
    margin-bottom: 0.5rem;
    font-size: 1rem;
    font-weight: 500;
}

.required {
    color: #e74c3c;
    margin-left: 3px;
}

input[type="text"],
input[type="tel"],
input[type="email"],
textarea {
    width: 100%;
    padding: 12px 15px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 198, 255, 0.2);
    border-radius: 8px;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

input[type="text"]:focus,
input[type="tel"]:focus,
input[type="email"]:focus,
textarea:focus {
    outline: none;
    border-color: rgba(0, 198, 255, 0.6);
    box-shadow: 0 0 15px rgba(0, 198, 255, 0.3);
}

textarea {
    min-height: 150px;
    resize: vertical;
}

.phone-verification {
    display: flex;
    gap: 10px;
}

.phone-verification input {
    flex: 1;
}

.verify-btn {
    padding: 0 15px;
    background: rgba(0, 198, 255, 0.3);
    border: 1px solid rgba(0, 198, 255, 0.5);
    border-radius: 8px;
    color: #fff;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.verify-btn:hover {
    background: rgba(0, 198, 255, 0.5);
}

.error-message {
    color: #e74c3c;
    font-size: 0.9rem;
    margin-top: 5px;
    min-height: 20px;
}

.form-success {
    text-align: center;
    padding: 2rem 1rem;
}

.form-success i {
    font-size: 4rem;
    color: #2ecc71;
    margin-bottom: 1.5rem;
}

.form-success h3 {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 1rem;
}

.form-success p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

.close-success-btn {
    padding: 10px 30px;
    background: linear-gradient(135deg, rgba(46, 204, 113, 0.8), rgba(39, 174, 96, 0.8));
    border: none;
    border-radius: 50px;
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.close-success-btn:hover {
    background: linear-gradient(135deg, rgba(46, 204, 113, 1), rgba(39, 174, 96, 1));
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(46, 204, 113, 0.4);
}

/* 客户案例自动轮播样式 */
.client-carousel {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
  will-change: transform;
  width: 100%;
}
.clients-container {
  overflow: hidden;
  width: 100%;
  position: relative;
  min-height: 120px;
}
.client-img-carousel {
  flex: 0 0 calc(100% / 6);
  max-width: calc(100% / 6);
  height: 80px;
  object-fit: contain;
  margin: 0 8px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: box-shadow 0.2s;
}
.client-img-carousel:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.10);
}
.client-carousel-indicator {
  text-align: center;
  margin-top: 12px;
}
.carousel-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #e0e0e0;
  margin: 0 4px;
  cursor: pointer;
  transition: background 0.2s;
}
.carousel-dot.active {
  background: #007bff;
}
@media (max-width: 900px) {
  .client-img-carousel {
    flex: 0 0 calc(100% / 4);
    max-width: calc(100% / 4);
    height: 60px;
  }
}
@media (max-width: 600px) {
  .client-img-carousel {
    flex: 0 0 calc(100% / 2);
    max-width: calc(100% / 2);
    height: 48px;
  }
}

/* 创意投资展示区样式 */
.creative-investment {
  padding: 5rem 0 3rem 0;
  background: none;
}
.creative-investment-header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.creative-investment-header h2 {
  color: #fff;
  font-size: 2.6rem;
  font-weight: 700;
  text-shadow: 0 0 15px rgba(0,198,255,0.7);
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
  display: inline-block;
  position: relative;
}
.creative-investment-header .en-title {
  color: rgba(255,255,255,0.7);
  font-size: 1.2rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-shadow: 0 0 10px rgba(0,0,0,0.5);
}
.creative-investment-container {
  width: var(--container-width);
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 20px;
}
.creative-investment-main {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  align-items: stretch;
  justify-content: space-between;
}
.creative-card {
  background: linear-gradient(135deg, rgba(0,198,255,0.12), rgba(0,114,255,0.10), rgba(0,0,0,0.18));
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,198,255,0.10), 0 1.5px 8px rgba(0,0,0,0.10);
  padding: 2.2rem 2.5rem;
  min-width: 260px;
  min-height: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: box-shadow 0.3s, transform 0.3s;
  position: relative;
  margin-bottom: 1.5rem;
}
.creative-card:hover {
  box-shadow: 0 12px 36px rgba(0,198,255,0.18), 0 2px 12px rgba(0,114,255,0.10);
  transform: translateY(-6px) scale(1.03);
}
.creative-card.highlight-card {
  flex: 1 1 320px;
  background: linear-gradient(135deg, rgba(0,198,255,0.22), rgba(0,114,255,0.18), rgba(26,43,71,0.85));
  color: #fff;
  box-shadow: 0 8px 32px rgba(0,198,255,0.18), 0 1.5px 8px rgba(0,0,0,0.10);
  font-size: 1.5rem;
  font-weight: 600;
  min-height: 160px;
  margin-right: 2.5rem;
  align-items: flex-start;
  justify-content: center;
}
.creative-card .creative-icon {
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 1.2rem;
  text-shadow: 0 0 18px rgba(0,198,255,0.5);
}
.creative-card .creative-text {
  font-size: 1.3rem;
  font-weight: 500;
  color: #fff;
  letter-spacing: 1px;
}
.creative-card-group {
  display: flex;
  gap: 1.5rem;
  flex: 2 1 480px;
  align-items: stretch;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.creative-card.system-card {
  background: linear-gradient(135deg, rgba(0,198,255,0.18), rgba(0,114,255,0.13), rgba(0,0,0,0.18));
  color: #fff;
  min-width: 200px;
  min-height: 140px;
  flex: 1 1 200px;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.creative-card.system-card.main-system {
  border: 2px solid #00c6ff;
  box-shadow: 0 0 18px 2px rgba(0,198,255,0.18);
}
.creative-card .creative-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #fff;
}
.creative-card .creative-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.92);
  line-height: 1.6;
}
.creative-card.placeholder {
  opacity: 0.7;
  background: linear-gradient(135deg, rgba(0,198,255,0.08), rgba(0,114,255,0.06), rgba(0,0,0,0.10));
  border: 1.5px dashed #00c6ff;
}
@media (max-width: 900px) {
  .creative-investment-main {
    flex-direction: column;
    gap: 1.5rem;
  }
  .creative-card-group {
    flex-wrap: wrap;
    gap: 1rem;
  }
  .creative-card.highlight-card {
    margin-right: 0;
    margin-bottom: 1.5rem;
  }
}
@media (max-width: 600px) {
  .creative-investment-container {
    padding: 0 6px;
  }
  .creative-card, .creative-card.system-card {
    padding: 1.2rem 0.8rem;
    min-width: 140px;
    font-size: 1rem;
  }
}

.creative-card.new-highlight-card {
  background: linear-gradient(120deg, #1a2b47 40%, #00c6ff 100%);
  color: #fff;
  min-width: 200px;
  min-height: 140px;
  flex: 1 1 200px;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-right: 0;
  margin-bottom: 0;
  box-shadow: 0 8px 28px 0 rgba(0,198,255,0.18), 0 2px 12px rgba(0,114,255,0.12);
  border: 2px solid #00c6ff;
  position: relative;
  overflow: hidden;
}
.creative-card.new-highlight-card .creative-icon {
  font-size: 3rem;
  margin-bottom: 1.1rem;
  color: #fff;
  filter: drop-shadow(0 0 8px #00eaff);
  position: relative;
  z-index: 2;
  animation: icon-bounce 1.8s infinite alternate;
}
@keyframes icon-bounce {
  0% { transform: translateY(0); }
  60% { transform: translateY(-6px) scale(1.08); }
  100% { transform: translateY(0); }
}
.glow-animate i {
  animation: none;
}

.creative-card.highlight-card .creative-icon,
.creative-card.highlight-card .creative-text {
  display: block;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.nav-contact-btn {
  display: block;
  margin: 32px auto 0 auto;
  text-align: center;
  max-width: 220px;
}

.value-row {
  display: flex;
  gap: 32px;
  margin-top: 32px;
  justify-content: center;
  width: 100%;
}
.value-row .value-card {
  flex: 1 1 0;
  max-width: 48%;
  min-width: 320px;
  height: 100%;
  box-sizing: border-box;
}
@media (max-width: 900px) {
  .value-row {
    flex-direction: column;
    gap: 16px;
  }
  .value-row .value-card {
    max-width: 100%;
    min-width: 0;
  }
}

/* 客户案例文字logo样式 */
.client-text-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 160px;
  height: 80px;
  /* background: linear-gradient(135deg, #e0f7fa 0%, #fff 100%); */
  background: none;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0, 174, 255, 0.08);
  margin: 0 auto;
  position: relative;
  transition: box-shadow 0.3s;
}
.client-text-logo:hover {
  box-shadow: 0 4px 24px rgba(0, 174, 255, 0.18);
}
.client-logo-text {
  font-size: 1.4rem;
  font-weight: 700;
  color: #00bcd4;
  letter-spacing: 2px;
  text-shadow: 0 2px 8px rgba(0, 188, 212, 0.12);
  transition: transform 0.2s, color 0.2s;
  z-index: 1;
}

/* 右侧悬浮按钮样式 */

/* 基础定位 */
.floating-contact-btn {
    position: fixed;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9998;
}

/* 按钮容器 - 添加发光背景 */
.contact-icon {
    width: 72px; /* 增大尺寸 */
    height: 72px;
    background: linear-gradient(145deg, #00eaff, #0072ff);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 
        0 0 15px rgba(0, 234, 255, 0.6), /* 外发光 */
        0 8px 25px rgba(0, 114, 255, 0.3); /* 内阴影 */
    position: relative;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* 悬停效果 - 放大+发光增强 */
.contact-icon:hover {
    transform: translateY(-5px) scale(1.15);
    box-shadow: 
        0 0 25px rgba(0, 234, 255, 0.8),
        0 12px 35px rgba(0, 114, 255, 0.4);
}

/* 点击效果 - 按下动画 */
.contact-icon:active {
    transform: translateY(2px) scale(0.98);
    box-shadow: 
        0 0 10px rgba(0, 234, 255, 0.6),
        0 5px 15px rgba(0, 114, 255, 0.2);
}

/* 图标容器 */
.icon-wrapper {
    position: relative;
    width: 36px;
    height: 36px;
}

/* 信封图标 - 主图标 */
.envelope-icon {
    position: absolute;
    font-size: 1.6rem;
    color: white;
    text-shadow: 
        0 0 10px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(0, 234, 255, 0.5); /* 图标发光 */
    z-index: 2;
    transition: all 0.3s ease;
}

/* 气泡图标 - 动态装饰 */
.bubble-icon {
    position: absolute;
    font-size: 1.2rem;
    color: #00eaff;
    bottom: -10px;
    right: -10px;
    animation: bubbleFloat 2s infinite ease-in-out;
    z-index: 1;
    filter: drop-shadow(0 0 8px rgba(0, 234, 255, 0.7));
}

/* 气泡浮动动画 - 增强弹性 */
@keyframes bubbleFloat {
    0%, 100% { 
        transform: translateY(0) rotate(0deg) scale(1);
        opacity: 0.8;
    }
    50% { 
        transform: translateY(-10px) rotate(5deg) scale(1.1);
        opacity: 1;
    }
}

/* 脉冲动画 - 增强呼吸感 */
@keyframes pulse {
    0% { 
        box-shadow: 
            0 0 0 0 rgba(0, 234, 255, 0.7),
            0 0 15px rgba(0, 234, 255, 0.3);
    }
    70% { 
        box-shadow: 
            0 0 0 20px rgba(0, 234, 255, 0),
            0 0 30px rgba(0, 234, 255, 0);
    }
    100% { 
        box-shadow: 
            0 0 0 0 rgba(0, 234, 255, 0),
            0 0 0 0 rgba(0, 234, 255, 0);
    }
}

/* 提示文字 - 基础样式 */
.tooltip {
    position: absolute;
    right: 0; /* 初始位置（右侧隐藏） */
    top: 100%; /* 位于按钮下方 */
    transform: translateY(10px); /* 初始向下偏移 */
    background: linear-gradient(90deg, #0072ff, #00c6ff);
    color: white;
    padding: 10px 16px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 5px 15px rgba(0, 114, 255, 0.2);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    margin-top: 12px; /* 与按钮的间距 */
}
 
/* 提示文字 - 悬停显示（从右侧滑入下方） */
.contact-icon:hover .tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(0); /* 向上移动到正确位置 */
    right: 50%; /* 水平居中 */
    transform: translateX(50%) translateY(12px); /* 精确居中+向下移动 */
}
 
/* 鼠标离开时平滑隐藏 */
.contact-icon .tooltip {
    transition-delay: 0.1s;
}

/* 呼吸灯动画 */
@keyframes breathing {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

/* 提示文字悬停时显示 + 呼吸灯 */
.contact-icon:hover .tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(50%) translateY(12px);
    animation: breathing 1.5s ease-in-out infinite alternate;
}

/* 按钮整体呼吸灯 */
.contact-icon.pulse {
    animation: 
        pulse 1s infinite,
        breathing 1.5s ease-in-out infinite alternate;
}