/* =======================================================================
   强制光明模式 - 禁用系统暗黑模式
   ======================================================================= */
        /* =======================================================================
        全局组件样式
        ======================================================================= */
        /* 媒体查询：屏幕宽度小于 750px 时显示移动端内容 */
.pc-only {
    display: none !important;
}
.mobile-only {
    display: block !important;
}

/* 页面滚动进度条 */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, #3C6EDD, #ffc107);
    z-index: 1002;
    transition: width 0.1s ease;
}

/* 图片懒加载效果 */
.lazy-image {
    opacity: 0;
    transition: opacity 0.5s ease;
}

.lazy-image.loaded {
    opacity: 1;
}
/* 关键帧动画 */
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

/* 滚动进入动画 */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-up.animated {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-left.animated {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-right.animated {
    opacity: 1;
    transform: translateX(0);
}

:root {
    color-scheme: light only;
}

/* 强制所有元素使用光明模式 */
* {
    color-scheme: light only !important;
}

/* 针对可能受暗黑模式影响的元素进行强制设置 */
html {
    color-scheme: light only;
    background-color: #ffffff !important;
}

body {
    color-scheme: light only;
    background-color: #ffffff !important;
    color: #333333 !important;
}

/* 防止浏览器自动应用暗黑模式样式 */
@media (prefers-color-scheme: dark) {
    :root {
        color-scheme: light only !important;
    }
    
    html {
        background-color: #ffffff !important;
        color: #333333 !important;
    }
    
    body {
        background-color: #ffffff !important;
        color: #333333 !important;
    }
}

/* =======================================================================
   钉钉字体定义
   ======================================================================= */
@font-face {
    font-family: 'DingTalk JinBuTi';
    src: url('../../fonts/DingTalk JinBuTi.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'DingTalk Sans';
    src: url('../../fonts/DingTalk Sans.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* 钉钉进步体样式类 */
.dingtalk-jinbuti {
    font-family: 'DingTalk JinBuTi', 'PingFang SC', 'Microsoft YaHei', '微软雅黑', sans-serif !important;
    font-weight: bold;
}

.dingtalk-sans {
    font-family: 'DingTalk Sans', 'PingFang SC', 'Microsoft YaHei', '微软雅黑', sans-serif !important;
}

/* 数据成果模块专用钉钉进步体样式 */
.data-results-dingtalk {
    font-family: 'DingTalk JinBuTi', 'PingFang SC','Microsoft YaHei', '微软雅黑', sans-serif !important;
    font-weight: bold;
}

/* =======================================================================
   全局样式
   ======================================================================= */
body {
    font-family: 'Microsoft YaHei', sans-serif;
    color: #333;
    margin: 0;
    padding: 0;
}

/* 通用样式 */
.flex-col { display: flex; flex-direction: column; }
.flex-row { display: flex; flex-direction: row; }
.justify-between { display: flex; justify-content: space-between; }

/* 统一的H2标题样式 */
h2.section-title {
    position: relative;
    font-size: 2.9rem;
    font-weight: bold;
    color: #3C6EDD;
    font-family: HarmonyOS_Sans_SC_Bold;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 3.4rem 0 1.8rem 0;
    margin-bottom: 0;
    line-height: 4rem;
}

/* h2.section-title::after {
    content: "";
    display: block;
    width: 4.8rem;
    height: 0.4rem;
    background-color: #FFC60C;
} */
.container{
    --bs-gutter-x: 0!important;
    --bs-gutter-y: 0!important;
    width: auto;
    padding-right: 0!important;
    padding-left: 0!important;
    margin-right: 0!important;
    margin-left: 0!important;
    max-width: 100%;
}
.row{
    --bs-gutter-x: 0!important;
    --bs-gutter-y: 0!important;
    margin-top: 0!important;
    margin-right: 0!important;
    margin-left: 0!important;
}
.col-12{
    flex: 0 !important;
}

/* 动画效果实现 */
@keyframes fadeInOut {
    0%, 100% { opacity: 0; }
    50% { opacity: 1; }
}

/* =======================================================================
    案例展示模块
    ======================================================================= */

/* 案例展示容器 */
.case-section {
    /* padding: 80px 0; */
    background: #FCFCFC;
    padding-top: 9rem;
}
.case-section h2.section-title{
    /* padding:0 0 0.5rem 0.72rem; */
}


.case-group:last-child {
    margin-bottom: 0;
}

/* 案例头部导航 */
.case-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1.1rem 1.7rem 3.7rem;
}

.case-header-left {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.case-header-title {
    font-family: HarmonyOS_Sans_SC_Medium;
    font-size: 1.4rem;
    font-style: normal;
    font-weight: 600;
    color: rgba(75, 78, 78, 0.85);
}
h3.case-header-title{
    line-height: 0;
    margin:0;
}

.case-play-icon {
    font-size: 0.65rem;
    color: rgba(75, 78, 78, 0.85);
}

.case-more-link {
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.06rem;
    font-family: HarmonyOS_Sans_SC_Light;
    font-size: 1.3rem;
    color: #4B4E4E;
    opacity: 0.6;
    padding-top: 2rem;
    justify-content: end;
    gap: 0.2rem;
}

.case-more-link img {
    /* width: 0.18rem; */
    height: 1.1rem;;
    padding:0;
    margin:0;
}


/* 左侧案例卡片 */
.case-left {
    /* background: white; */
    /* box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08); */
    transition: all 0.3s ease;
    /* height: 100%; */
    display: flex;
    flex-direction: column;
    overflow: hidden;
    margin-bottom: 3.5rem;
    /* margin: 0.28rem 0.74rem 0; */
}

/* .case-left:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
} */

/* 左侧案例图片 */
.case-image-left {
    height: 20rem;
    overflow: hidden;
    flex-shrink: 0;
    text-align: center;
}

.case-image-left img {
    width: 30.2rem;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

/* .case-left:hover .case-image-left img {
    transform: scale(1.02);
} */

/* 左侧案例内容 */
.case-content-left {
    flex-grow: 1;
    display: flex;
    background: #F6F6F6;
    flex-direction: column;
    margin: 0 3.6rem 0 3.7rem;
    padding: 2.2rem 1.4rem 1.4rem 2rem;
}
/* 蓝色背景 */
.case-content-left.blue-bg {
   background: #192254;
}


.case-title {
    font-weight: 600;
    position: relative;
}
/* 白色字体 */
.case-title.white-text{
    color: #ffffff;
}

.case-description {
    flex-grow: 1;
    /* padding: 0 0.32rem 0.16rem 0.44rem; */
}

.case-subtitle {
    font-size: 1.7rem;
    font-weight: 600;
    color: #4B4E4E;
    margin: 1.5rem 0 1.2rem;
    text-align: left;
    opacity: 0.8;
    letter-spacing: 0.04rem;
}
/* 白色字体 */
.case-subtitle.white-text{
    color: rgba(255, 255, 255, 1);
}

.case-text {
    font-size: 1.5rem;
    line-height: 2.2rem;
    color: #4B4E4E;
    margin: 0;
    text-align: left;
    opacity: 0.65;
    letter-spacing: 0.02rem;
}
/* 白色字体 */
.case-text.white-text{
    color: rgba(255, 255, 255, 1);
}
p.case-text{
    margin:0;
}

/* 右侧案例卡片 */
.case-right {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: all 0.3s ease;
    background: white;
    margin: 0.32rem 0.72rem 0.84rem;
}

.mobile-right{
    margin: 0.28rem 0.72rem 0.64rem 0.74rem !important;
}
/* .case-right:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
} */

/* 右侧案例图片 */
.case-image-top {
    background: white;
    text-align: center;
}

.case-image-top img {
    width: 100%;
    height: 4rem;
    transition: transform 0.3s ease;
}

/* 右侧蓝色文字区域 */
.case-blue-section {
    background: #FFFFFF;
    box-shadow: 0px 1px 8px 0px rgba(0,0,0,0.09);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}


.case-title-blue {
    font-weight: 600;
    margin: 0;
    position: relative;
    z-index: 2;
    padding: 0 3.4rem 0 3.6rem;
    font-family: HarmonyOS_Sans_SC_Bold;
    font-size: 1.6rem;
    line-height: 3.5rem;
    color: #282726;
}

.case-subtitle-blue {
    font-size: 0.2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.35rem;
    text-align: left;
    opacity: 0.8;
}

.case-text-blue {
    font-family: PingFangSC, PingFang SC;
    font-weight: 400;
    font-size: 1.4rem;
    color: #282726;
    line-height: 2.7rem;
    text-align: justify;
}

/* 案例展示容器结束 */  

/* 顶部导航栏样式 */
.top-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    /* background-color: transparent; */
    background: #0E122D;
    opacity: 0;
    transition: opacity 0.3s ease;
    height: 9rem;
    line-height:9rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.top-nav.visible {
    opacity: 1;
}
.top-nav .item-mobile{
    /* height: 9rem;
    line-height:9rem; */
    justify-content: space-between;
    padding: 0 2.7rem 0 2.3rem;
}
.top-nav .a{
    all: unset;
    text-decoration: none;
}
.top-nav .col-md-4{
    all: unset;
}
.top-nav .row .col-6 {
    all: unset; /* 重置所有样式 */
     height: 9rem;
    line-height: 9rem;
} 
.top-nav .mobile-menu-btn{
    padding: 0;
    margin: 0;
}
.top-nav .menu-img{
    height: 3.3rem;
    /* width: 4.4rem; */
    /* margin-top: -0.55rem; */
}
.top-nav .logo img{
    /* height: 5rem; */
    width: 16.4rem;
}

.nav-links.d-md-none {
    display: none;
    position: fixed;
    top: 2.1rem;
    right: -22.4rem;
    width: 22.4rem /* 496/100 */;
    height: 100vh;
    z-index: 9999;
    background: #FFFFFF;
    box-shadow: 0px 4px 8px 8px rgba(0,0,0,0.1);
    transition: right 0.3s ease;
    overflow-y: auto;
}

.nav-links.d-md-none.active {
    display: block; /* 改为block布局 */
    right: 0;
}
.nav-links a {
    color: #333;
    margin: 0;
    text-decoration: none;
    font-size: 1.9rem;
    font-weight: 400;
    /* padding: 0.1rem 0 0.1rem 1.04rem; */
    position: relative;
    transition: color 0.3s ease;
    line-height: 2.5rem;
    text-align: right;
}

.nav-links a:hover,
.nav-links a.active {
    color: #3C6EDD;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #FFD700;
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

/* Ensure no conflicts with mobile navigation */
.nav-links.d-md-none a::after {
    display: none !important;
}

/* 菜单遮罩层 */
.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.menu-overlay.active {
    display: block;
    opacity: 1;
}
.mobile-menu-btn {
    display: block;
    background: none;
    border: none;
    font-size: 24px;
    color: #192254;
    cursor: pointer;
    z-index: 1002;
    position: relative;
}
/* 关闭按钮  */
.menu-close-btn {
    display: block;
    width: 100%;
    background: none;
    border: none;
    color: #192254;
    cursor: pointer;
    z-index: 1001;
    position: relative;
    height: 2rem;
}
.close-img{
    width: 2.2rem;
    height: 2.192rem;
    position: absolute;
    top: 1.6rem;
    left: 2.1rem;
}
/* .menu-close-btn:hover {
    background-color: #f8f9fa;
} */

/* 菜单项  */
.nav-links.d-md-none a {
    display: block;
    padding: 1.5rem 4.3rem;
    color: #2F2F2F;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
    margin-top: 3.5rem;
}

/* 第一个菜单项 - 移除额外的margin */
.nav-links.d-md-none a:first-child {
    margin-top: 0; /* 移除额外间距 */
}

/* 最后一个菜单项 */
.nav-links.d-md-none a:last-child {
    border-bottom: none;
}

/* 悬停效果 */
.nav-links.d-md-none a:hover {
    color: #3C6EDD;
    background-color: #f8f9fa;
}

/* Active状态 */
.nav-links.d-md-none a.active {
    font-weight: 600;

    background: #F2F2F2;
    font-family: HarmonyOS_Sans_SC;
    font-size: 1.9rem;
    color: #2A63D8;
    font-style: normal;
}

/* 移除所有伪元素 */
.nav-links.d-md-none a::before,
.nav-links.d-md-none a::after {
    display: none !important;
}

.hero-title {
    font-size: 26px;
}

.hero-subtitle {
    font-size: 18px;
}

/* .team-section .content-title {
    font-size: 18px;
    line-height: 1.8;
} */

/* =======================================================================
   导航二级菜单样式
   ======================================================================= */

/* 导航下拉菜单容器 */
.nav-dropdown {
    position: relative;
    display: inline-block;
}

/* 导航下拉菜单主项样式继承父级样式 */
.nav-dropdown > a {
    color: #333;
    margin-left: 30px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    position: relative;
    padding-bottom: 5px;
}



.nav-dropdown:hover > a::before {
    transform: translateY(-50%) rotate(90deg);
    border-left-color: #3C6EDD;
}

.nav-dropdown > a.active::after {
    transform: scaleX(1);
}

.nav-dropdown > a:hover::after {
    transform: scaleX(1);
}

/* 导航区域背景延伸效果 - 任何状态下都生效 */
.top-nav::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: transparent;
    z-index: -1;
    transition: all 0.3s ease;
}

/* 透明状态下悬停时显示白色背景 */
.top-nav:not(.sticky):hover::before {
    height: 240px;
    background-color: white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* 透明状态下悬停时导航链接颜色调整 */
.top-nav:not(.sticky):hover .nav-links a {
    color: #2F2F2F;
    text-shadow: none;
}

.top-nav:not(.sticky):hover .nav-links a:hover,
.top-nav:not(.sticky):hover .nav-links a.active {
    color: #2A63D8;
}

/* sticky状态下悬停时延伸现有的白色背景 */
.top-nav.sticky:hover::before {
    height: 220px;
    background-color: white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* 二级菜单 - 始终存在但默认隐藏在背景延伸区域外 */
.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: transparent;
    min-width: 200px;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    /* 移除动画效果 */
    z-index: 1000;
    padding: 15px 0;
    margin-top: 10px;
    /* 默认时在延伸背景区域外，用户看不见 */
    clip-path: inset(100% 0 0 0);
}

/* 当导航区域悬停时，背景延伸，二级菜单显现 - 任何状态下都生效 */
.top-nav:hover .nav-dropdown-menu {
    clip-path: inset(0 0 0 0);
}

/* 二级菜单项样式 */
.nav-dropdown-item {
    display: block;
    padding: 12px 25px;
    color: #999999 !important;
    text-decoration: none;
    font-size: 12px !important;
    font-weight: 400;
    white-space: nowrap;
}

.nav-dropdown-item:hover {
    color: #333333 !important;
    font-size: 14px !important;
}

/* 禁用二级菜单项的after伪元素样式 */
.nav-dropdown-item::after {
    display: none !important;
}

.nav-dropdown-item:hover::after {
    display: none !important;
}

/* 移除可能继承的导航链接样式 */
.nav-dropdown-item:hover {
    text-decoration: none !important;
}


/* 移动端隐藏二级菜单 */
    .nav-dropdown-menu {
        display: none !important;
    }
    
    /* 移动端取消导航背景延伸效果 */
    .top-nav::before {
        display: none;
    }
    
    .top-nav:hover::before {
        display: none;
    }
    
    /* 移动端导航下拉菜单容器样式重置 */
    .nav-links.d-md-none .nav-dropdown {
        display: block;
    }

    
    .nav-links.d-md-none .nav-dropdown > a:hover {
        color: #3C6EDD;
        background-color: #f8f9fa;
    }
    
    .nav-links.d-md-none .nav-dropdown > a.active {
        color: #3C6EDD;
        font-weight: 500;
        background-color: transparent;
    }
    
    /* 核心人文部分 */



    .team-section .row {
        display: flex;
        justify-content: space-between;
    }

    .team-card-content{
        position: absolute;
        text-align: center;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        width: 100%;

    }
    .team-card-content .team-card-title{
        font-weight: 500;
        font-family: HarmonyOS_Sans_SC_Medium;
        font-size: 3.5rem;
        color: #FFFFFF;
        line-height: 4rem;
        text-align: center;
        font-style: normal;
        margin-bottom: 1rem;
        letter-spacing: 0.1rem;
    }
    .team-card-content .team-card-text{
        font-family: HarmonyOS_Sans_SC;
        font-size: 2rem;
        color: #FFFFFF;
        line-height: 2.8rem;
        font-style: normal;
        padding: 0 3.2rem 0 3rem;
        letter-spacing: 0.1rem;
    }

    .team-card img {
        width: 100%;
        height: 100%;
    }

    .team-card:hover img {
        /* transform: scale(1.05); */
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    /* .team-left { text-align: left; }
    .team-right { text-align: right; } */
    .team-section .row,
    .team-section .col-md-4 {
        display: block;
        flex: 0 0 100%;
        max-width: 100%;
    }
    .team-left, .team-right {
        text-align: center;
    }
    /* 内容标题样式 */
    .content-title {
        font-weight: 800;
        margin-bottom: 0;
        font-family: HarmonyOS_Sans_SC_Bold;
        font-size: 2.2rem;
        color: #0E122D;
        line-height: 2.9rem;
        padding-bottom: 0.3rem;
        text-align: center;
        font-style: normal;
    }
    .content-title-s{
        font-family: HarmonyOS_Sans_SC;
        font-size: 1.7rem;
        color: #0E122D;
        line-height: 2.3rem;
        text-align: center;
        font-style: normal;
        font-weight: 600;
        /* margin-bottom: 1.5rem; */
    }

    /* 关于部分 */
    .about-description {
        font-family: HarmonyOS_Sans_SC;
        font-size: 1.5rem;
        color: #666565;
        line-height: 2.5rem;
        text-align: justify;
        font-style: normal;
        padding: 1.1rem 3.5rem 3.5rem 3.7rem;
    }
    .container p{
        margin-bottom: 0 !important;
    }

    /* 核心产品部分 */
    .product-card {
        position: relative;
        overflow: hidden;
        text-align: center;
    }

    .product-card img {
        width: 100%;
        transition: transform 0.4s ease, box-shadow 0.4s ease;
        background-clip: content-box;
    }
    .product-card-content{
        position: absolute;
        top: 4.6rem;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
    }

    .product-card-content .product-text-title{
        font-weight: 600;
        font-family: HarmonyOS_Sans_SC_Bold;
        font-size: 2.2rem;
        color: #FFFFFF;
        line-height: 2.9rem;
        text-align: center;
        font-style: normal;
        margin-bottom: 0.4rem;
    }
    .product-card-content .product-text-m{
        font-family: HarmonyOS_Sans_SC;
        font-size: 1.7rem;
        color: #FFFFFF;
        line-height: 2.3rem;
        text-align: center;
        font-style: normal;
        padding: 0 2.4rem;
    }
    .product-card .product-more{
        width: 10.1rem;
        position: absolute;
        bottom: 4.5rem;
        left: 50%;
        transform: translate(-50%, 0);
        background: rgba(60,110,221,0.31);
        border: 2px solid #FFFFFF;
        /* height: 4.8rem; */
        font-family: PingFangSC, PingFang SC;
        font-weight: 400;
        font-size: 1.7rem;
        color: #FFFFFF;
        line-height: 4.8rem;
        text-align: center;
        font-style: normal;
    }
    .product-item-img{
        position: absolute;
        bottom: 13.4rem;
        left: 1.9rem;
        right:1.9rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .product-item-img .pro-img{
        width: 9.87rem;
        height: 100%;
    }
    .pro-item-sm{
        position: absolute;
        /* bottom: 0.5rem; */
        top: 6.5rem;
        left: 50%;
        transform: translateX(-50%);
        font-family: HarmonyOS_Sans_SC_Medium;
        font-size: 1.2rem;
        color: #FFFFFF;
        line-height: 1.7rem;
        text-align: center;
        font-style: normal;
        width: 90%;
    }

    /* 为左边和右边的产品卡片添加特殊对齐样式 */
    .product-left { text-align: left; }
    .product-right { text-align: right; }

/* 关注我们部分样式 */
.footer-follow-section {
    background: #0E122D;
}
.qr-code-wrapper{
    display: flex;
    align-items: center;
    gap: 4.8rem;
}
.qr-code-item{
    /* width: 1.2375rem;
    height: 1.76rem; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-family: HarmonyOS_Sans_SC;
    font-size: 1.5rem;
    font-style: normal;
    text-align: center;
    color: rgba(255, 255, 255, 0.8); /* 纯白色，80% 的透明度 */
}
.qr-code-item img{
    /* width: 12rem; */
    height: 12rem;
    padding-bottom: 1.2rem;
}
.qr-code-item .code-s{
    line-height: 1.9rem;
    padding-bottom: 0.2rem;
}
.qr-code-item .code-n{
    line-height: 1.9rem;
}

.footer-follow-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding-top: 4.2rem;
    gap: 2.7rem;
}
.footer-title{
    font-weight: 600;
    font-family: HarmonyOS_Sans_SC_Bold;
    font-size: 2.5rem;
    color: #FFFFFF;
    line-height: 3.4rem;
    text-align: center;
    font-style: normal;
}


.contact-info,
.join-info {
    padding: 1.5rem 3.5rem 0;
}
.top-name{
    font-weight: 600;
}
.footer-copyright{
    font-family: HarmonyOS_Sans_SC;
    font-size: 1.5rem;
    color: #999999;
    line-height: 1.8rem;
    text-align: center;
    font-style: normal; 
    padding: 7.9rem 2rem 8.2rem;
}


/* 联系我们和加入我们部分样式 */
.contact-info p,
.join-info p {
    font-family: HarmonyOS_Sans_SC;
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 2.3rem;
    text-align: center;
    font-style: normal;
    margin: 0;
}
.join-info{
    display: flex;
    align-items: center;
    /* gap: 3.5rem; */
    justify-content: space-between;
}

.cooperation-title,
.media-title{
    font-weight: 600;
    padding-bottom: 0.5rem;
    color: #ffffff !important;
}


/* =======================================================================
   就医管家模块样式
   ======================================================================= */
/* 医疗服务网格样式 */
/* .medical-services-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    width: 100%;
    max-width: 100%;
    margin: 0;
    min-height: 600px;
} */


.medical-service-item {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    overflow: hidden;
    transition: all 0.8s ease;
    padding: 10px 40px;
}

.medical-service-item.animated {
    opacity: 1;
    transform: translateY(0);
}




