/* ===== 重置样式和基础设置 ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px; /* 设置基础字体大小 */
    /* 使用 JS 控制平滑滚动，避免与脚本重复导致抖动 */
    scroll-behavior: auto;
    /* 避免与 section[id] 的 scroll-margin-top 叠加产生双重偏移，这里设为 0 */
    scroll-padding-top: 0;
}

/* 统一修正所有 section 的锚点定位，使其考虑固定头部高度 */
section[id] {
    /* 使用变量，根据实际头部高度动态更新，默认约88px */
    scroll-margin-top: var(--anchor-offset, 88px);
}

body {
    font-family: 'Inter', 'Noto Sans SC', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
}

ul {
    list-style: none;
}

/* ===== 容器和网格系统 ===== */

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col-md-3, .col-md-6 {
    padding: 0 15px;
}

.col-md-3 {
    flex: 0 0 25%;
    max-width: 25%;
}

.col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.text-white {
    color: white;
}

/* ===== 加载动画 (DNA主题) ===== */
#loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

#loading.hidden {
    opacity: 0;
    pointer-events: none;
}

.loading-container {
    text-align: center;
    color: white;
}

.dna-loader {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
}

.dna-strand {
    position: absolute;
    width: 4px;
    height: 80px;
    background: linear-gradient(to bottom, #ff6b6b, #4ecdc4);
    border-radius: 2px;
    animation: dna-rotation 2s infinite linear;
}

.dna-strand:nth-child(1) {
    left: 38px;
    animation-delay: 0s;
}

.dna-strand:nth-child(2) {
    right: 38px;
    animation-delay: 1s;
}

@keyframes dna-rotation {
    0% { transform: rotateY(0deg); }
    100% { transform: rotateY(360deg); }
}

/* 导航栏样式由 components.css 统一管理 */

/* 按钮样式 components.css 统一管理  */

/* ===== 首页英雄区 ===== */
.hero-section {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display:flex;
    align-items: flex-end;
}

.hero-bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/5d.gif');
    background-size: cover;
    background-position: center;
    z-index: -2;
}

/* 添加底部渐变遮罩 */
/* .hero-bg-gradient::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 10%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
    pointer-events: none;
} */

.hero-bg-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin:auto;
    background: linear-gradient(180deg, #FFEBD5 0%, #FFFFFF 100%);
}

.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

#particles-canvas {
    width: 100%;
    height: 100%;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 35, 126, 0.3);
    z-index: -1;
}

.hero-content {
    width: 100%;
    position: relative;
    z-index: 2;
    color: #333;
}

.hero-title {
    font-size: 4rem;
    line-height:4rem;
    font-weight:500;
    background: #344054;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 3rem;
    margin-bottom: 40px;
    color: #344054;
}
.hero-subtitle-en {
    font-size:20px;
}
.hero-buttons {
    margin-top: 40px;
}
.delay-1 {
    animation-delay: 0.3s;
}

.delay-2 {
    animation-delay: 0.6s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: float 2s ease-in-out infinite;
}

.scroll-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid white;
    border-radius: 15px;
    position: relative;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: white;
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel 2s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes scroll-wheel {
    0% { opacity: 1; top: 8px; }
    100% { opacity: 0; top: 20px; }
}

/* ===== 章节样式 ===== */
.section-padding {
    padding:100px 0;
}
.section-header {
    margin-bottom: 30px;
    /* 添加统一的入场动画初始状态 */
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* 统一的入场动画触发状态 */
.section-header.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.bg-light {
    background-color: #f8f9fa;
}

.bg-dark {
    background-color: #1a1d29;
}

.section-title {
    text-align:center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2c3e50;
    position: relative;
}

.section-title.text-white {
    color: white;
}

/* 统一的红线动画效果 */
.section-title::after {
    /* content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, #FF4848 0%, #FF3E73 100%);
    transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.5s;
    border-radius: 2px; */
}

.section-header.animate-in .section-title::after {
    width: 100%;
}

.section-subtitle {
    font-size: 1rem;
    color: #344054;
    max-width: 1135px;
    margin: 0 auto;
    line-height: 1.8;
    /* 添加统一的副标题动画 */
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease 0.8s;
}

/* 统一的副标题动画触发状态 */
.section-header.animate-in .section-subtitle {
    opacity: 1;
    transform: translateY(0);
}

.section-subtitle.text-white {
    color: rgba(255, 255, 255, 0.8);
}

/* ===== 关于我们 ===== */
.about-section {
    background: white;
    overflow: hidden;
}

/* 标题入场动画 */
.about-section .section-header {
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-section .section-header.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.about-section .section-title {
    position: relative;
    display: inline-block;
}

.about-section .section-title::after {
    /* content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, #FF4848 0%, #FF3E73 100%);
    transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.5s;
    border-radius: 2px; */
}

.about-section .section-header.animate-in .section-title::after {
    width: 100%;
}

/* 副标题动画 */
.about-section .section-subtitle {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease 0.8s;
}

.about-section .section-header.animate-in .section-subtitle {
    opacity: 1;
    transform: translateY(0);
}

.about-text h3 {
    font-size: 2rem;
    color: #1a237e;
    margin-bottom: 20px;
}

.about-features {
    margin-top: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #ff4757, #ff3742);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    color: white;
    font-size: 24px;
}

.feature-content h4 {
    color: #1a237e;
    margin-bottom: 5px;
}

.image-container {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.img-responsive {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(26, 35, 126, 0.8), rgba(255, 71, 87, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.image-container:hover .image-overlay {
    opacity: 1;
}

.image-container:hover .img-responsive {
    transform: scale(1.1);
}

.overlay-content {
    text-align: center;
    color: white;
}

/* ===== 生命信息轮播 ===== */
.life-info-carousel {
    margin-top: 50px;
}

.life-info-swiper {
    padding: 40px 0;
}

.life-info-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 350px;
}

.life-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #1a237e, #3949ab);
    transition: all 0.3s ease;
    z-index: -1;
}

.life-info-card:hover::before {
    left: 0;
}

.life-info-card:hover {
    transform: translateY(-10px);
    color: white;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #ff4757, #ff3742);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 32px;
    transition: all 0.3s ease;
    padding: 15px;
}

.service-icon-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.life-info-card:hover .service-icon {
    background: white;
    color: #ff4757;
}

.life-info-card:hover .service-icon-img {
    filter: brightness(0) saturate(100%) invert(27%) sepia(85%) saturate(6482%) hue-rotate(348deg) brightness(98%) contrast(95%);
}

.life-info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #1a237e;
    transition: color 0.3s ease;
}

.life-info-card:hover h3 {
    color: white;
}

.life-info-card p {
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

.life-info-card:hover p {
    color: white;
}

.card-stats {
    margin-top: 20px;
}

.stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: #ff4757;
    transition: color 0.3s ease;
}

.life-info-card:hover .stat-number {
    color: white;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: #666;
    transition: color 0.3s ease;
}

.life-info-card:hover .stat-label {
    color: rgba(255, 255, 255, 0.8);
}

/* ===== AI众包平台轮播 ===== */
.platform-section {
    background: white;
    padding: 20px 0;
    text-align: center;
}

.platform-tabs {
    /* margin-bottom: 10px; */
    width: 100%;
    max-width:975px;
    margin:auto;
    display: flex;
    justify-content: center;
}

.tab-nav {
    display: flex;
    flex-wrap:wrap;
    justify-content: center;
    gap: 1.25rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.tab-nav li {
    list-style: none;
}

.tab-nav a {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border-radius: 0.6rem;
    color: #FF6868;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #FFF2F2;
}

.tab-nav a:hover,
.tab-nav a.active {
    background: linear-gradient(90deg, #FF4848 0%, #FF3E73 100%);
    color: white;
}

.platform-showcase {
    width: 90rem;
    margin: 0 auto;
    max-width: 100%;
    /* overflow: hidden; */
    overflow-y: auto;
}

/* .swiper-slide {
    width: 100%;
    height: 100%;
} */

.swiper-slide img {
    width: 100%;
    display: block;
    object-fit: cover;
}
/* PC端保持原有轮播形式 */
.bio-swiper .swiper-wrapper .swiper-slide {
   border-radius:8px;
   transition: all 0.3s ease;
   height: auto;
   display: flex;
   align-items: center;
   transform: none !important;
   opacity: 1 !important;
}

.bio-swiper .swiper-wrapper .swiper-slide:hover {
   transform: scale(1.1) translateY(-5px) !important;
   box-shadow: 0 7px 12px rgba(0, 0, 0, 0.2);
}

.platform-features {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.feature-badge {
    background: rgba(255, 255, 255, 0.9);
    padding: 8px 15px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.badge-icon {
    font-size: 16px;
}

/* 导航按钮样式 */
.platform-next,
.platform-prev {
    width: 3.125rem !important;
    height: 3.125rem !important;
    background-color: #F2F2F2!important;
    border-radius: 50% !important;
    color: #333 !important;
}

.platform-next:after,
.platform-prev:after {
    font-size: 1.25rem !important;
    font-weight: bold !important;
}

/* 轮播指示器样式 */
.platform-pagination {
    position: absolute;
    bottom: 0rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    width: 100%;
    gap: 0.625rem;
}

.swiper-pagination-bullet {
    width:  6rem !important;
    height: 0.4rem !important;
    background: #f2f2f2 !important;
    border-radius: 0.125rem !important;
    opacity: 1 !important;
    cursor: pointer;
}

.swiper-pagination-bullet-active {
    background: #FF4848 !important;
    width: 6rem !important;
}
/* .platform-img{
    width: 83%!important;
    margin: 0 auto !important;
} */
/* ===== 数据监控中心 ===== */
.dashboard-section {
    background: #1a1d29;
    color: white;
}

.dashboard-display {
    position: relative;
    text-align: center;
    margin-top: 60px;
}

.dashboard-img {
    max-width: 100%;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-icon {
    font-size: 2rem;
    margin-bottom: 10px;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: #4ecdc4;
    display: block;
    margin-bottom: 5px;
}

.stat-label {
    color: #bdc3c7;
    font-size: 0.9rem;
}

/* ===== 数据安全保护 ===== */
.data-security-section {
    max-width:1920px;
    margin:auto;
    background: url('../images/194309732@1x.png') no-repeat;
    background-size:cover;
}

.data-security-section .section-title {
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.data-security-section .section-subtitle {
    color: #666;
    max-width: 800px;
    margin: 0 auto 0;
    line-height: 1.6;
}

.security-modules {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 40px;
    padding: 0;
    justify-content: center;
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
}

.security-module {
    background: white;
    border: none;
    border-radius: 12px;
    padding: 1.87rem 1.56rem;
    text-align: left;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    flex: 1;
    flex-shrink: 0;
}

.architecture-module {
    background: #fafafa;
}

.security-module:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.module-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    gap: 12px;
}
.module-icon-box{
    display: flex;
    justify-content: flex-end;
    width: 100%;
}
.module-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    color: white;
    font-size: 18px;
    flex-shrink: 0;
   
}

.module-icon.orange {
    background: #ff9500;
}

.module-icon.green {
    background: #34c759;
}

.module-icon.purple {
    background: #af52de;
}

.module-icon.blue {
    background: #007aff;
}

.module-header h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
}

.module-content {
    padding-left: 0;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 8px;
    padding-left: 0;
}

.feature-list li:last-child {
    margin-bottom: 0;
}

/* ===== 最终区域 ===== */
.final-section {
    position: relative;
    width:1400px;
    margin:auto;
    margin-bottom:30px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.final-bg {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 20px;
    transition: all 0.3s ease;
}
.final-bg-mobile {
    display:none;
}

.final-bg.loaded {
    opacity: 1;
}

.final-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.final-subtitle {
    font-size: 18px;
    opacity: 0.9;
}

/* 页脚样式由 components.css 统一管理 */

/* 返回顶部按钮样式由 components.css 统一管理 */

/* 滚动进度条样式由 components.css 统一管理 */

/* ===== 视差效果 ===== */
.parallax-element {
    transition: transform 0.1s ease-out;
}

.parallax-bg {
    transition: transform 0.1s ease-out;
}

/* ===== Swiper 自定义样式 ===== */
.swiper-pagination-bullet {
    background: #ff4757;
    opacity: 0.3;
}

.swiper-pagination-bullet-active {
    opacity: 1;
}
.platform-img-box{
    position: relative;
}
.platform-btn-box{
    position: absolute;
    bottom: 40%;
    left: 0;
    transform: translateX(0,-40%);
    display: flex;
    justify-content: center;
    width: 100%;
}
.swiper-button-next,
.swiper-button-prev {
    color: #ff4757;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 20px;
    color: white;
}



/* ===== 关于我们服务样式 ===== */
.about-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.service-item {
    background: #f3f5f9;
    border-radius: 20px;
    overflow: hidden;
    /* box-shadow: 0 5px 20px rgba(46, 45, 45, 0.08); */
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #f0f0f0;
    opacity: 0;
    transform: translateY(60px) scale(0.9);
    position: relative;
}



.service-item.animate-in {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.service-item.animate-in::before {
    left: 100%;
}

.service-item:nth-child(1).animate-in {
    transition-delay: 0.2s;
}

.service-item:nth-child(2).animate-in {
    transition-delay: 0.4s;
}

.service-item:nth-child(3).animate-in {
    transition-delay: 0.6s;
}

.service-item:hover {
    transform: translateY(-10px) scale(1);
    box-shadow: 0 5px 20px rgba(95, 81, 81, 0.1);
}

.service-image {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.service-image img {
    width: 100%;
    height:auto;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);

}

.service-item:hover .service-image img {
    transform: scale(1.1) rotate(2deg);
}

.service-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(49, 41, 41, 0.4), rgba(49, 41, 41, 0.3));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-item:hover .service-image::after {
    opacity: 1;
}

.service-content {
    padding: 25px 20px;
    position: relative;
    overflow: hidden;
}

.service-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #FF4848 0%, #FF3E73 100%);
    transition: left 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-item:hover .service-content::before {
    left: 0;
}

.service-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #2c3e50;
    line-height: 1.4;
}

.service-item.animate-in .service-content h3 {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.3s;
}

.service-item.animate-in::after {
    opacity: 1;
    transform: scale(1) rotate(0deg);
    transition-delay: 0.8s;
}

/* ===== 我们可以提供 ===== */

.provide-section .section-title {
    font-size: 2.8rem;
    margin-bottom: 15px;
}

.provide-section .section-subtitle {
    font-size: 1rem;
    color: #666;
    margin: 0 auto 10px;
    line-height: 1.8;
}

.wake-up-module {
    background:#F2F5F9;
    border-radius: 32px;
    padding:100px 80px;
    color: white;
    margin: 40px 0;
    position: relative;
    overflow: hidden;
    /* box-shadow: 0 30px 60px rgba(28, 37, 65, 0.15); */
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.wake-up-module-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.wake-up-module:hover {
    transform: translateY(-5px);
}

.wake-up-title {
    font-size: 3rem;
    margin-bottom: 1.25rem;
    /* background: linear-gradient(90deg, #FFFFFF 0%, #E0E5FF 100%); */
    /* -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text; */
    color: #1D2939;
}

.wake-up-desc {
    font-size: 1.2rem;
    color: #1D2939; /* rgba(255, 255, 255, 0.85); */
    margin-bottom: 35px;
    max-width: 500px;
    line-height: 1.8;
}

.wake-up-link {
    display: inline-flex;
    align-items: center;
    color: #FF6868;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    padding: 0.625rem 0.94rem;
    background: #FFF2F2;
    border-radius: 0.625rem;
    transition: all 0.3s ease;
}

.wake-up-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(5px);
}

.wake-up-phone{
   position: relative;
    padding-top: 50px;
}
.wake-up-phone .bg-img{
    width: 412px;
}
.wake-up-phone .msg-box-style{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.msg-box-style p{
    background: #fff;
    color: #000;
    padding:0.625rem;
    box-sizing: border-box;
    display: inline-block;
    font-size: 0.875rem;
}
.msg-box .r-p{
    position: absolute;
    right: -7.5rem;
    top: 6.25rem;
    border-radius:  0.625rem 0 0.625rem 0.625rem;
    background: #FF6868;
    color: #fff;
}
.msg-box .l-p{
    position: absolute;
    
}
.msg-box .l-p:nth-child(2){
    top: 10rem;
    left: 0px;
    border-radius:   0 0.6rem 0.6rem 0.6rem;
}
.msg-box .l-p:nth-child(3){
    top: 14rem;
    left: -8.75rem; 

}
.msg-box .l-p:nth-child(4){
    top: 23.75rem;
    left: 2.5rem;
    border-radius:   0 0.6rem 0.6rem 0.6rem;
}

.msg-box img{
    width:18.75rem;
}
.wake-up-link:hover::after {
    transform: translateX(5px);
}
/* msg-box2 */
.msg-box2 {
    display: none;
}
.msg-box2 .l-p{
    position: absolute;
    top: 5.625rem;
    left: 3.75rem;
    background: #FF6868;
    color: #fff;
    border-radius:   0 10px 10px 10px;
}
.msg-box2 .r-p{
    position: absolute;
  
}
.msg-box2 .r-p:nth-child(2){
    top: 7.19rem;
    right: -8rem;
    border-radius:    10px 0 10px 10px;
    max-width:20rem
}
.msg-box2 .r-p:nth-child(3){
    top: 13.4rem;
    right: -2rem;
}
.msg-box2 .r-p:nth-child(4){
    top: 24rem;
    right: -7.8rem;
    border-radius:    10px 0 10px 10px;
    max-width:20rem
}
.msg-box2 img{
    width: 13.75rem;
}
/* msg-box3 */
.msg-box3 {
    display: none;
}
.msg-box3 .l-p{
    position: absolute;
    top: 5.625rem;
    left: 3.75rem;
    background: #FF6868;
    color: #fff;
    border-radius:   0 10px 10px 10px;
}
.msg-box3 .l-p:nth-child(3){
    top: 14rem;
    left: -5rem;
    background: #FF6868;
    color: #fff;
    border-radius:   0 10px 10px 10px;
}
.msg-box3 .r-p{
    position: absolute;
  
}
.msg-box3 .r-p:nth-child(2){
    top: 8.87rem;
    right: -7.5rem;
    border-radius:10px 0 10px 10px;
    max-width: 20rem;
}
/* .msg-box3 .r-p:nth-child(3){
    width: 220px;
    top: 215px;
    right: -66px;
} */
.msg-box3 .r-p:nth-child(4){
    top: 20.6rem;
    right: -6.75rem;
    border-radius:    10px 0 10px 10px;
    max-width: 20rem;
}
.wake-up-display {
    position: absolute;
    right: 5rem;
    bottom: -1.9rem;
    width: 28rem;
    height: 28rem;
    transform: rotate(-5deg);
    transition: transform 0.3s ease;
}

.wake-up-module:hover .wake-up-display {
    transform: rotate(-3deg) translateY(-10px);
}


.service-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin: 5rem 0;
}

.service-card {
    border-radius: 24px;
    padding: 2.5rem 1.875rem;
    text-align: center;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: #ffffff;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.service-card:hover .card-icon {
    transform: scale(1.1);
    background:#ffffff;
}

.card-icon i {
    font-size: 32px;
    background: linear-gradient(90deg, #FF4848 0%, #FF3E73 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-card h4 {
    font-size: 1.4rem;
    /* font-weight: 600; */
    margin-bottom: 20px;
    color:#344054;
}

.service-card p {
    color: #344054;
    line-height: 1.8;
    font-size: 1rem;
}


/* ===== 滚动效果优化 ===== */
.section-highlight {
    animation: sectionFade 0.8s ease-out;
}

@keyframes sectionFade {
    0% {
        opacity: 0.7;
        transform: translateY(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 滚动时的过渡效果 */
.is-scrolling .section {
    transition: transform 0.3s ease-out;
}

/* ===== 醒来智能监控系统 ===== */
.wake-up-section {
    /* background: linear-gradient(180deg, #FFFFFF 0%, #F5F7FF 100%); */
    /* padding: 80px 0; */
}

.wake-up-section .wake-up-module {
    margin-top: 0;
}

/* 更新原有样式 */
.provide-section {
    padding: 20px 0;
}
/* ===== 生命信息工程 ===== */
.bioengineering-section {
    width: 100%;
    padding-top:70px;
}

.bioengineering-section .container {
    padding: 0;
}

.bio-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.bio-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.bio-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.bio-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.bio-item:hover img {
    transform: scale(1.1);
}

.bio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.bio-item:hover .bio-overlay {
    transform: translateY(0);
}

.bio-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    left: auto;
    padding: 0.375rem 1rem;
    border-radius: 1.25rem;
    font-size: 0.875rem;
    font-weight: 500;
    z-index: 1;
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    width: auto;
    display: inline-block;
    white-space: nowrap;
}

.bio-tag.hot {
    background: linear-gradient(90deg, #FF4848 0%, #FF3E73 100%);
    color: white;
}

.bio-tag.new {
    background: linear-gradient(90deg, #4CAF50 0%, #45B649 100%);
    color: white;
}

.bio-overlay h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.bio-overlay p {
    font-size: 0.9rem;
    opacity: 0.8;
}


/* ===== 生命信息工程轮播 ===== */
.bio-swiper {
    padding: 40px 15px;
    position: relative;
    overflow: visible;
}
.bio-swiper .swiper-wrapper {
    align-items: center;
}
.bio-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); */
    width: 100%;
    min-height: 319px;
    height: auto;
}
.innovation-card {
    min-height: 350px;
    height: auto;
}
.bio-card img {
    width: 100%;
    height:100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.bio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
}

.bio-overlay h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.bio-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0;
}

/* Swiper导航按钮样式 */
.bio-swiper .swiper-button-next,
.bio-swiper .swiper-button-prev {
    color: #FF4848;
    background: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.bio-swiper .swiper-button-next {
    right: 20px;
}

.bio-swiper .swiper-button-prev {
    left: 20px;
}

.bio-swiper .swiper-button-next:after,
.bio-swiper .swiper-button-prev:after {
    font-size: 1rem;
}

/* Swiper分页器样式 */
.bio-swiper .swiper-pagination {
    bottom: 0;
}



/* ===== 留凤智算中心 ===== */
.liufeng-center-section {
    /* background: linear-gradient(135deg, #e8f0fe 0%, #f5f7ff 100%); */
    padding: 65px 0;
}

.liufeng-center-section .section-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.liufeng-center-section .section-subtitle {
    color: #666;
    font-size: 1rem;
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.6;
}

.center-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.tab-item {
    padding: 8px 25px;
    background: #FFF2F2;
    border-radius: 0.625rem;
    color:#FF6868;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-item.active,
.tab-item:hover {
    background: linear-gradient(90deg, #FF4848 0%, #FF3E73 100%);
    color: white;
}

.center-display {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.center-dashboard {
    width: 100%;
    /* max-width: 14400px; */
    height: 800px;
    background: linear-gradient(135deg, #1a237e 0%, #283593 25%, #3949ab 50%, #5c6bc0 75%, #7986cb 100%);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(26, 35, 126, 0.3);
}




/* ===== 新闻资讯模块 ===== */
.news-section {
    position: relative;
    overflow: hidden;
}

.news-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.3;
    pointer-events: none;
}

.news-container {
    position: relative;
    z-index: 2;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 100px;
    margin-bottom: 50px;
}

.news-card {
    background: #ffffff;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.news-image {
    position: relative;
    height: 284px;
    border-radius: 8px;
    overflow: hidden;
}
.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.news-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1D2939;
    margin-bottom: 12px;
    height:68px;
    margin-top:36px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
}

.news-card:hover .news-title {
    color: #FF4848;
}

.news-excerpt {
    font-size: 1rem;
    height:73px;
    color: #344054;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-meta {
    margin-top:40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.news-date {
    font-size: 0.875rem;
    color: #344054;
    font-weight: 500;
}

.news-link {
    font-size: 0.875rem;
    color: #1D2939;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.news-link:hover {
    color: #FF4848;
}

.news-link:hover::after {
    transform: translateY(-50%) translateX(4px);
}

.news-load-more {
    text-align: center;
    margin-top: 40px;
}

.news-load-more .btn {
    padding: 12px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.news-load-more .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: left 0.5s ease;
}

.news-load-more .btn:hover::before {
    left: 100%;
}

.loading-placeholder {
    animation: pulse 1.5s ease-in-out infinite;
}

.loading-placeholder .news-title,
.loading-placeholder .news-excerpt {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 2s infinite;
    border-radius: 4px;
}

.loading-placeholder .news-title {
    height: 24px;
    margin-bottom: 12px;
}

.loading-placeholder .news-excerpt {
    height: 60px;
    margin-bottom: 20px;
}

.loading-placeholder .image-placeholder {
    animation: shimmer 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

.btn-loading {
    margin-left: 8px;
}

/* 新闻卡片动画 */
.news-card {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

.news-card:nth-child(1) {
    animation-delay: 0.1s;
}

.news-card:nth-child(2) {
    animation-delay: 0.2s;
}

.news-card:nth-child(3) {
    animation-delay: 0.3s;
}

/* ===== 创新与知识产权成果模块 ===== */
.innovation-section {
    padding-top:40px;
    position: relative;
    overflow: hidden;
}

.innovation-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.innovation-section .section-header {
    position: relative;
    z-index: 2;
}

.innovation-carousel-container {
    position: relative;
    z-index: 2;
    margin-top: 60px;
}

.innovation-item {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    background: #ffffff;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.innovation-item:hover {
    transform: scale(1.02);
}

.innovation-image {
    flex: 1;
    /* width: 256px; */
    /* height: 349px; */
    position: relative;
}

.innovation-image img {
    width: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.innovation-item:hover .innovation-image img {
    transform: scale(1.1);
}

.innovation-content {
    padding: 30px;
    background: #ffffff;
    position: relative;
}

.innovation-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
}

.innovation-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
    line-height: 1.3;
}

.innovation-description {
    font-size: 1rem;
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}

/* 轮播自动播放动画 */
@keyframes innovationSlide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}
