:root {
    --main-color: #0064FA;
    --dark-main-color: #0A52BD;
    --grey-color: #999;
    --lightgrey-color: #eee;
    --darkgrey-color: #242527;
}

@font-face {
    font-family: "钉钉进步体 Regular";
    font-weight: 400;
    src: url("/asset/webfont/DingTalk-JinBuTi.woff2") format("woff2"),
        url("/asset/webfont/DingTalk-JinBuTi.woff") format("woff");
    font-display: swap;
}

/* 全局重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;

}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', "Helvetica Neue", Helvetica, "PingFang SC", "Microsoft YaHei", Tahoma, Arial;
    color: var(--darkgrey-color);
    line-height: 1.5;
    font-weight: 400;
    margin: 0;
    padding: 0;
}

/* 禁止页面滚动的样式 */
body.no-scroll {
    overflow: hidden;
    /* 禁止滚动 */
    height: 100%;
    /* 防止页面高度塌陷 */
    touch-action: none;
    /* 防止触摸滚动 */
}


@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

button,
a {
    transition: all 0.2s ease-in-out;
    text-decoration: none;
    /* 移除下划线 */
    cursor: pointer;
    color: inherit;

}

button:hover,
a:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 48px -8px rgba(50, 72, 198, 0.12);
}

button:active,
a:active {
    transform: translateY(1px);
}

/* 头部导航 */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(4px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 100;
}

nav {
    place-content: center space-between;
    align-items: center;
    display: flex;
    flex: 0 0 auto;
    flex-flow: row;
    height: 64px;
    overflow: visible;
    padding: 16px 40px;
    z-index: 1;
}

/* 添加这段代码来专门处理 logo 的 hover 效果 */
.logo:hover {
    box-shadow: none;
    transform: none !important;
    /* 覆盖可能存在的变形效果 */
    background: none !important;
    /* 覆盖可能存在的背景变化 */
    cursor: pointer;
    /* 保持鼠标手型 */
}

/* 全局样式 */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 24px;
    position: relative;
    gap: 16px;
    max-width: 1200px;
    width: 100%;
    justify-self: center;
}

/* 导航链接基础样式 */
.nav-links {
    display: flex;
    gap: 20px;
    list-style: none;
    align-items: center;
}

.nav-links .home{
    z-index: 999;
}

.nav-links>li {
    display: flex;
}

.nav-links a {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.56px;
    text-wrap-mode: nowrap;
}

/* 如果下拉菜单的字体大小也需要保持一致，可以保留或删除这个样式 */
.dropdown-menu a span {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.56px;
}

/* 下拉菜单容器样式 */
.dropdown {
    position: relative;
}

.dropdown>a {
    display: flex;
    align-items: center;
    gap: 5px;
}

.arrow {
    display: inline-flex;
    /* 改为inline-flex */
    align-items: center;
    /* 垂直居中 */
    justify-content: center;
    /* 水平居中 */
    width: 6px;
    height: 6px;
    border: solid var(--grey-color);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
    position: relative;
    /* 添加相对定位 */
    top: -1px;
    /* 微调位置 */
}

.dropdown:hover .arrow {
    transform: rotate(225deg);
    border-color: var(--main-color);
    top: 1px;
    /* 微调位置 */
}

/* 下拉菜单样式 */
.dropdown-menu {
    padding: 12px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    display: none;
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    /* 默认位置 */
    list-style: none;
    background: #fff;
    border-radius: 16px;
    background: rgba(255, 255, 255);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 900;
}

/* 下拉菜单缓冲热区 */
.dropdown-menu::before {
    content: "";
    position: absolute;
    top: -50px;
    /* 向上扩展8px */
    left: 0;
    right: 0;
    height: 50px;
    /* 高度设置为缓冲区大小 */
    z-index: -1;
    /* 不影响视觉 */
}

/* 下拉菜单项样式 */
.dropdown-menu li {
    width: 100%;
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    padding: 8px 16px 8px 8px;
    gap: 8px;
    color: #333;
    white-space: nowrap;
}

.dropdown-menu a:hover {
    border-radius: 12px;
    background: #eee;
    transform: none;
    box-shadow: none;
}

/* 悬停时显示下拉菜单 */
.dropdown:hover .dropdown-menu {
    display: flex;
    /* animation: fadeIn 0.2s ease-in-out; */
}

/* 隐藏遮罩层 */
.hidden {
    display: none !important;
    /* 强制隐藏 */
}

/* 遮罩层样式 */
#videoOverlay, #videoOverlay1, #videoOverlay2 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    /* 半透明黑色背景 */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    /* 保证在顶层显示 */
}

/* 视频容器 */
.video-container {
    position: relative;
    width: 80%;
    max-width: 800px;
    aspect-ratio: 16 / 9;
    /* 保持16:9宽高比 */
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* iframe样式 */
.video-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* 关闭按钮 */
.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #fff;
    color: #000;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    font-size: 14px;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.close-btn:hover {
    background: #ddd;
}

.main-btn {
    padding: 8px 20px;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    text-decoration: none;
    text-wrap-mode: nowrap;
}

.main-btn.secondary {
    background-color: transparent;
    border: 1px solid var(--main-color);
    color: var(--main-color);
}

.main-btn.secondary:hover {
    background-color: #fff;
}

/* 汉堡菜单样式 */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

/* 为主要内容添加动画 */
main {
    opacity: 0;
    transform: translateY(10px);
    animation: fadeIn 0.6s ease-out forwards;
}


.logo {
    place-content: flex-start center;
    align-items: flex-start;
    display: flex;
    flex: 0 0 auto;
    flex-flow: column;
    gap: 8px;
    height: 100%;
    overflow: visible;
    padding: 0px;
    position: relative;
    width: min-content;
}

.main-btn {
    color: #fff;
    background-color: rgb(0, 100, 250);
    border-radius: 32px;
    padding: 8px 16px;
    font-size: 14px;
}

.main-btn:hover {
    background-color: rgb(35, 123, 255);
}

.nav-btn {
    display: flex;
    width: 48px;
    height: 48px;
    padding: 12px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 32px;
    background: #EBEBED;
}

.nav-btns {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* 移动端底部操作栏 */
.bottomMenu {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    padding: 16px;
    box-sizing: border-box;
    z-index: 10;
    gap: 16px;
    display: none;
    /* 默认隐藏，仅在移动端显示 */
}


.bottomMenu .main-btn {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    /* 移动端显示 */
}


/* 侧边栏样式 */
.side-bar {
    position: fixed;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    display: flex;
    padding: 4px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    align-self: stretch;
    border-radius: 40px;
    border: 1px solid rgba(53, 61, 69, 0.16);
    background: #FFF;
    /* shadow ok */
    box-shadow: 0px 4px 8px rgba(53, 61, 69, 0.08), 0px 8px 16px rgba(0, 63, 156, 0.08), 0px 16px 32px rgba(53, 61, 69, 0.08);
}

.side-bar a {
    transform: none;
    box-shadow: none;
}

.side-item {
    position: relative;
}

/* 项目内容布局 */
.side-item span {
    background: #fff;
    border-radius: 32px;
    display: flex;
    padding: 12px 8px;
    gap: 2px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.side-item p {
    font-size: 11px;
    color: #333333;
    margin: 0;
}


/* 调整第一个按钮的宽度，使其能容纳文字 */
.side-item:first-child {
    width: auto;
    white-space: nowrap;
}

.side-item .hover-content {
    position: absolute;
    right: 80px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    width: 180px;
    padding: 24px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    background: white;
    border-radius: 16px;
    box-shadow: 0px 4px 8px rgba(53, 61, 69, 0.08), 0px 8px 16px rgba(0, 63, 156, 0.08), 0px 16px 32px rgba(53, 61, 69, 0.08);
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.side-item .hover-content::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    border-left: 8px solid white;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
}

.side-item span:hover {
    background-color: var(--lightgrey-color);
}

.side-item:hover .hover-content {
    opacity: 1;
    visibility: visible;
    right: 80px;
}

.hover-content h4 {
    color: #333;
    margin: 0 0 5px 0;
    font-size: 14px;
}

.hover-content p {
    color: #666;
    margin: 5px 0;
    font-size: 12px;
}

.hover-content-group {
    display: flex;
    width: 124px;
    flex-direction: column;
    align-items: center;
}

.hover-content-group h4 {
    color: var(--main-color);
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    line-height: 100%;
    /* 133.333% */
    letter-spacing: 0.72px;
}

.hover-content-group p {
    color: var(--darkgrey-color);
    text-align: center;
    font-size: 12px;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: 0.48px;
}


/* 通用 */
.image-container {
    width: 100%;
}

.image-container img {
    width: 100%;
    height: auto;
}



/* 首屏区域 */
.hero {
    position: relative;
    /* 使父元素相对定位 */
    display: flex;
    padding: 160px 16px 40px 16px;
    flex-direction: column;
    align-items: center;
    gap: 56px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.10) 0%, #FFF 100%);
    /* background: linear-gradient(180deg, rgba(255, 255, 255, 0.10) 0%, #FFF 100%), url('/asset/image/herobg.jpg') lightgray 50% / cover no-repeat; */
}

.heroContent {
    position: relative;
    /* 使父元素相对定位 */
    display: flex;
    padding: 120px 72px 72px 72px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 24px;
    height: 500px;
    max-width: 1200px;
    width: 100%;
}

.heroContent.center {
    align-items: center;
}

.heroBg {
    display: flex;
    justify-content: center;
}

/* 不同背景的修饰类 */
.heroBg.bg-erp {
    background: url('/asset/image/banner/erp.jpg') center center / cover no-repeat;
}

.heroBg.bg-sis {
    background: url('/asset/image/banner/sis.jpg') center center / cover no-repeat;
}

.heroBg.bg-tis {
    background: url('/asset/image/banner/tis.jpg') center center / cover no-repeat;
}

.heroBg.bg-recruit {
    background: url('/asset/image/banner/recruit.jpg') center center / cover no-repeat;
}

.heroBg.bg-payment {
    background: url('/asset/image/banner/payment.jpg') center center / cover no-repeat;
}

.heroBg.bg-lms {
    background: url('/asset/image/banner/lms.jpg') center center / cover no-repeat;
}

.heroBg.bg-hardware {
    background: url('/asset/image/banner/hardware.jpg') center center / cover no-repeat;
}

.heroBg.bg-event {
    background: url('/asset/image/banner/event.jpg') center center / cover no-repeat;
}

.heroBg.bg-edupay {
    background: url('/asset/image/banner/edupay.jpg') center center / cover no-repeat;
}

.heroBg.bg-insurance {
    background: url('/asset/image/banner/insurance.jpg') center center / cover no-repeat;
}

.heroBg.bg-industry {
    background: url('/asset/image/banner/industry.jpg') center center / cover no-repeat;
}

.heroBg.bg-support {
    background: url('/asset/image/banner/support.jpg') center center / cover no-repeat;
}

.heroBg.bg-safe {
    background: url('/asset/image/banner/safe.jpg') center center / cover no-repeat;
}

.heroBg.bg-safe {
    background: url('/asset/image/banner/safe.jpg') center center / cover no-repeat;
}

.heroBg.bg-history {
    background: url('/asset/image/banner/history.jpg') center center / cover no-repeat;
}

.heroBg.bg-team {
    background: url('/asset/image/banner/team.jpg') center center / cover no-repeat;
}

.heroBg.bg-customers {
    background: url('/asset/image/banner/customers.jpg') center center / cover no-repeat;
}

.heroBg.bg-minfei {
    background: url('/asset/image/banner/minfei.jpg') center center / cover no-repeat;
    margin-top: 56px;
}

.heroBg.bg-love {
    background: url('/asset/image/banner/love.jpg') center center / cover no-repeat;
    margin-top: 56px;
}

.heroBg.bg-fund {
    background: url('/asset/image/fund/fund_banner.png') center center / cover no-repeat;
    margin-top: 56px;
}

.heroBg.bg-culture {
    background: #0064eb url('/asset/image/banner/culture') center center / cover no-repeat;
    margin-top: 56px;
}

.heroBg.bg-sem-erp {
    background: url('/asset/image/sem/erp/header_background_web.png') center center / cover no-repeat;
    margin-top: 56px;
}

.heroBg.bg-marketing {
    background: url('/asset/image/hero-bg-erp.jpg') center center / cover no-repeat;
}

.heroContent.with-qr-code {
    position: relative;
    display: flex;
    padding: 120px 72px 72px 72px;
    gap: 64px;
    height: 500px;
    flex-direction: row;
    align-items: center;
}

.banner-qr-code {
    display: flex;
    padding: 12px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.80);
    box-shadow: 0px 4px 8px -4px rgba(53, 61, 69, 0.08), 0px 8px 16px -8px rgba(0, 63, 156, 0.08), 0px 16px 32px -32px rgba(53, 61, 69, 0.08);
    backdrop-filter: blur(8px);
}

.banner-qr-code img {
    width: 160px;
    height: 160px;
}

.banner-qr-code p {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.56px;
}

.hero-title-group {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
    align-items: flex-start;
}

.mask {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    mask-image: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1));
    -webkit-mask-image: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1));
    z-index: 2;
}

.hero img {
    position: absolute;
    /* 使图片绝对定位 */
    bottom: 40px;
    /* 将图片放置在底部 */
    left: 50%;
    /* 水平居中 */
    transform: translateX(-50%);
    /* 使图片居中 */
    z-index: 3;
}

.hero-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    z-index: 4;
}

.text-left {
    align-items: flex-start;
    text-align: left;
}

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

.text-group {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.text-section {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hero-title h1 {
    color: var(--darkgrey-color);
    font-family: "钉钉进步体 Regular";
    font-size: 40px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-shadow: 0px 4px 32px rgba(255, 255, 255, 0.6);
}

.hero-title h2 {
    color: var(--darkgrey-color);
    font-family: "钉钉进步体 Regular";
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.hero-title p {
    color: var(--darkgrey-color);
    font-family: "钉钉进步体 Regular";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    /* 27px */
    letter-spacing: 0.72px;
}

.hero-title.white h1,
.hero-title.white h2 {
    color: #fff;
}

.main-btn.big {
    display: flex;
    height: 48px;
    padding: 16px 32px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    z-index: 4;
}

/* 数据统计 */
.stats {
    display: flex;
    align-items: flex-start;
    gap: 32px;
    z-index: 4;
}

.stat-item {
    display: flex;
    width: 140px;
    padding: 12px 16px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 4px;
    border-radius: 16px;
    border: 1px solid #FFF;
    background: rgba(255, 255, 255, 0.64);
    box-shadow: 0px 16px 32px 0px rgba(0, 53, 131, 0.16);
    backdrop-filter: blur(4px);
}

.stat-item .gradient {
    text-align: center;
    font-family: "钉钉进步体 Regular";
    font-size: 36px;
    font-style: normal;
    line-height: 120%;
    /* 43.2px */
    letter-spacing: 1.44px;
    background: linear-gradient(270deg, #4049E2 0%, #9163EF 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-item span {
    color: var(--darkgrey-color);
    font-family: "钉钉进步体 Regular";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.72px;
    /* text-overflow: ; */
}

.stat-item p {
    color: var(--darkgrey-color);
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.56px;
    opacity: 0.4;
}

.feature-group {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* banner里的按钮们 */
.feature-buttons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    width: auto;
    max-width: 960px;
}

.feature-buttons.sis {
    grid-template-columns: repeat(5, 1fr);
}

.feature-buttons.tis {
    grid-template-columns: repeat(3, 1fr);
}

.feature-button {
    display: flex;
    padding: 12px 16px;
    align-items: center;
    gap: 8px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.feature-button:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-2px);
}

.feature-button img {
    width: 32px;
    height: 32px;
}

.feature-button span {
    color: var(--darkgrey-color);
    font-size: 16px;
    font-weight: 500;
    text-wrap-mode: nowrap;
}

.feature-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #FF4D8F;
    color: white;
    font-size: 12px;
    padding: 2px 6px;
    border-radius: 10px;
    font-weight: 500;
}

/* 移动端适配 */
@media (max-width: 809px) {
    .feature-buttons {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 16px;
        width: 100%;
    }

    .feature-buttons.sis {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 16px;
    }

    .feature-group {
        width: 100%;
    }

    .feature-button {
        padding: 12px;
    }

    .feature-button img {
        width: 24px;
        height: 24px;
    }

    .feature-button span {
        font-size: 14px;
    }
}


.banner-download {
    position: absolute;
    top: 56px;
    display: flex;
    padding: 16px;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0px 4px 8px rgba(53, 61, 69, 0.08), 0px 8px 16px rgba(0, 63, 156, 0.08), 0px 16px 32px rgba(53, 61, 69, 0.08);
    z-index: 9;
    display: none;
}

.banner-download img {
    width: 168px;
    height: 168px;
}

.banner-download p {
    font-size: 14px;
    line-height: 150%;
    color: #000;
}

/* 只有在桌面端 hover 时才显示 */
@media (min-width: 809px) {
    .downloadApp:hover .banner-download {
        display: flex;
    }
}


/* 重点logo区域 */
.main-logos {
    display: flex;
    padding: 24px 0px;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.logo-row {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.logo-row img {
    display: flex;
    width: 160px;
    height: 60px;
    justify-content: center;
    align-items: center;
}

/* 产品介绍区域 */
.main-container {
    display: flex;
    padding: 40px 16px;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    align-self: stretch;
    overflow: hidden;
}

.main-info-container {
    display: flex;
    gap: 24px;
    max-width: 960px;
    margin: 0 auto;
    width: 100%;
    justify-content: center;
}

.title-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.title-group-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}

.product-icon {
    display: none;
}

.product-nav {
    display: none;
}

.product-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    width: -webkit-fill-available;
    max-width: 960px;
}

.product-group.row {
    flex-direction: row;
}

.product-main-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.main-container h1 {
    color: #000;
    font-family: "钉钉进步体 Regular";
    font-size: 40px;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 1.6px;
    text-align: center;
    /* background: linear-gradient(90deg, #0064FA 11.56%, #9402FA 40.58%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; */
}

.colorfulh1 {
    font-size: 40px;
    letter-spacing: 1.6px;
    text-align: center;
    background: linear-gradient(90deg, #0064FA 0%, #9600FA 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.main-container h2 {
    font-size: 32px;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 1.28px;
    color: #000;
}

.main-container h3 {
    font-size: 24px;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.96px;
    /* color: #000; */
}

.main-container h4 {
    font-size: 20px;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.96px;
    /* color: #000; */
}


.main-container.colorful h2 {
    font-size: 32px;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 1.28px;
    background: linear-gradient(90deg, #0064FA 0%, #9600FA 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.main-container.colorful h2 {
    font-size: 32px;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 1.28px;
    background: linear-gradient(90deg, #0064FA 0%, #9600FA 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.main-container h5 {
    color: var(--darkgrey-color);
    font-family: "Noto Sans SC";
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    letter-spacing: 0.72px;
}

.rgfw-img-group {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 400px;
    /* 设置合适高度 */
    width: 100%;
    background: url('/asset/image/support/rgfw-bg.png') no-repeat center bottom;
    background-size: auto 100%;
    /* 宽度 50%，高度自动缩放 */
    overflow: hidden;
}

/* 4 张图片分别定位 */
.rgfw-img-group img:nth-child(1) {
    /* 上左 */
    top: 16%;
    left: 16%;
    animation: floating1 3s infinite ease-in-out;
}

.rgfw-img-group img:nth-child(2) {
    /* 上右 */
    top: 36%;
    right: 12%;
    animation: floating2 3.5s infinite ease-in-out 0.5s;
    /* 延迟 0.5s 开始 */
}

.rgfw-img-group img:nth-child(3) {
    /* 下左 */
    bottom: -4%;
    left: 16%;
    animation: floating1 4s infinite ease-in-out 0.8s;
    /* 延迟 0.8s */
}

.rgfw-img-group img:nth-child(4) {
    /* 下右 */
    bottom: 10%;
    right: 16%;
    animation: floating2 3.2s infinite ease-in-out 0.3s;
    /* 延迟 0.3s */
}

@keyframes floating1 {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes floating2 {
    0% {
        transform: translateY(0) translateX(0);
    }

    50% {
        transform: translateY(-4px);
    }

    100% {
        transform: translateY(0) translateX(0);
    }
}

.main-container.rgfw img {
    width: 24%;
    position: absolute;
}

.product-slider {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE and Edge */
}

.product-slider.blue {
    background: #E8F1FE;
    border-radius: 32px;
    gap: 8px;
}

/* .product-slider.mid {
    justify-content: center;
} */

.product-slider::-webkit-scrollbar {
    display: none;
}

.product-item {
    background-color: #fff;
    display: flex;
    width: fit-content;
    height: 100px;
    padding: 16px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    cursor: pointer;
    flex: 0 0 auto;
    /* 防止子元素自动伸缩 */
    max-width: 218px;
}

.product-item.blue {
    background-color: #E8F1FE;
}

.product-item:hover {
    border-radius: 16px;
    background: rgba(123, 130, 142, 0.08);
    transition: background-color 0.3s;
    /* 添加过渡效果 */
}

.product-item.active {
    border-radius: 16px;
    background: rgba(123, 130, 142, 0.08);
    transition: background-color 0.3s;
    /* 添加过渡效果 */
}

.product-item h3 {
    color: var(--);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.56px;
    text-align: center;
}

/* 新增样式，继承原有样式并覆盖特定属性 */
.product-item.compact {
    height: auto;
    /* 覆盖原有的固定高度 */
    padding: 8px 16px;
}

.product-item.compact h3 {
    font-size: 16px;
    /* 覆盖原有的字体大小 */

}

.product-item.compact:hover {
    border-radius: 16px;
    background: var(--lightgrey-color);
    transition: background-color 0.3s;
    /* 添加过渡效果 */
}

.product-item.compact.active {
    border-radius: 32px;
    background: var(--darkgrey-color);
    transition: background-color 0.3s;
    color: #fff;
    /* 添加过渡效果 */
}

.product-item.blue:hover {
    border-radius: 32px;
    background: var(--main-color);
    transition: background-color 0.3s;
    color: #fff;
    /* 添加过渡效果 */
}

.product-item.blue.active {
    border-radius: 32px;
    background: var(--main-color);
    transition: background-color 0.3s;
    color: #fff;
    /* 添加过渡效果 */
}

.product-content {
    display: flex;
    width: -webkit-fill-available;
    padding: 40px;
    gap: 24px;
    justify-content: space-between;
    align-items: center;
    border-radius: 24px;
    background: var(--gBG, linear-gradient(283deg, #E3EDFD 0%, #F0EFFE 50%, #F5F7FF 100%));
    display: none;
    /* opacity: 0; */
    transition: opacity 0.3s ease-in-out;
}

.product-content.active {
    display: flex;
    opacity: 1;
}

.product-content.lite {
    background: none;
    padding: 0px;
}


.product-content.tab-group {
    padding: 0;
    border-radius: 0;
    background: none;
    flex-direction: column;
}



.product-features {
    place-content: flex-start;
    align-items: flex-start;
    display: flex;
    flex: 1 0 0px;
    flex-flow: column;
    gap: 24px;
    height: min-content;
    overflow: visible;
    padding: 0px;
    position: relative;
    width: -webkit-fill-available;
}

.product-features.big-gap {
    gap: 32px;
}

.product-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.product-title {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.product-title.small {
    gap: 0px;
}

.product-title-divider {
    height: 5px;
    background: #0064fa;
    border-radius: 3px;
    width: 48px;
}

.product-image {
    aspect-ratio: 1.25 / 1;
    flex: 1 0 0px;
    height: var(--framer-aspect-ratio-supported, 352px);
    position: relative;
    width: -webkit-fill-available;
}

.product-content img {
    width: 100%;
    height: 100%;
    /* border-radius: inherit; */
    object-position: center center;
    object-fit: contain;
}

.product-features h3 {
    color: var(--darkgrey-color);
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.96px;
}

.product-features h4 {
    color: var(--darkgrey-color);
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.8px;
}

.product-features h5 {
    color: var(--darkgrey-color);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.64px;
}


.feature-list {
    list-style: none;
}

.feature-list li {
    color: var(--darkgrey-color);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 14px;
    padding-left: 24px;
    position: relative;
}

.feature-list.customer li {
    display: flex;
    gap: 8px;
}

.feature-list li:before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    background-image: url('/asset/image/li.svg');
    background-size: cover;
    position: absolute;
    left: 0;
    /* top: 2px;  */
    /* 调整图标垂直位置，对齐标题 */
}

.feature-list li h4 {
    color: var(--darkgrey-color);
    font-size: 14px;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 4px;
}

.feature-list li p {
    color: var(--darkgrey-color);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
}


.product-image {
    width: 100%;
    height: auto;
}

.img-right {
    background: var(--gBG, linear-gradient(283deg, #E3EDFD 0%, #F0EFFE 50%, #F5F7FF 100%));
    border-radius: 24px;
}

/* 服务板块基础样式 */
.product {
    padding: 80px 0;
    background: #fff;
}

.product-title-group {
    text-align: center;
    margin-bottom: 60px;
}

.product-title-group h2 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 16px;
}

.product-title-group p {
    font-size: 16px;
    color: #666;
}

/* 服务数据统计样式 */
.service-stat-item {
    box-shadow: none;
    width: 160px;
}

.service-stat-item h3 {
    color: var(--darkgrey-color);
    text-align: center;
    font-family: "DingTalk JinBuTi";
    font-size: 36px;
    line-height: 120%;
    /* 43.2px */
    letter-spacing: 1.44px;
}

.service-stat-item p {
    text-align: center;
    font-weight: 500;
    letter-spacing: 0.56px;
    opacity: 0.4;
}

/* .stat-item {
    text-align: center;
}

.stat-item h3 {
    font-size: 32px;
    font-weight: bold;
    color: #333;
    margin-bottom: 8px;
}

.stat-item h3 span {
    font-size: 16px;
    margin-left: 4px;
}

.stat-item p {
    font-size: 14px;
    color: #666;
} */

/* 服务卡片列表样式 */
.service-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 960px;
    margin: 0 auto;
    width: 100%;
}

.service-cards.c2 {
    grid-template-columns: repeat(2, 1fr);
}

.service-cards.c4 {
    grid-template-columns: repeat(4, 1fr);
}

.service-cards.c5 {
    grid-template-columns: repeat(5, 1fr);
}

.service-card {
    display: flex;
    padding: 16px;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    flex: 1 0 0;
    border-radius: 16px;
    /* border: 1px solid #E1E0ED; */
    background: #F2F1FF;
    box-shadow: 0px 40px 120px -32px rgba(176, 191, 231, 0.16);
    backdrop-filter: blur(4px);
}

.service-card-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.service-card h3 {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.96px;
    text-wrap: nowrap;
}

.service-card p {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.56px;
}

.service-card img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
}

.service-card.erp {
    flex-direction: row;
    padding: 24px;
    justify-content: space-between;
    align-items: flex-start;
    flex-shrink: 0;
    border-radius: 24px;
    background: #FFF;
    border: none;
    /* shadow ok */
    box-shadow: 0px 4px 8px rgba(53, 61, 69, 0.08), 0px 8px 16px rgba(0, 63, 156, 0.08), 0px 16px 32px rgba(53, 61, 69, 0.08);
}

.service-card-title.erp {
    align-items: flex-start;
    gap: 16px;
}

.service-card.erp img {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
}

.service-card.products {
    padding: 24px;
    justify-content: center;
    align-items: flex-start;
    gap: 16px;
    border: none;
}

.service-card-title.products {
    display: flex;
    align-items: flex-start;
    gap: 4px;
    align-self: stretch;
}

.service-card.products img {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
}

.service-card.sis img {
    height: 186px;
    align-self: stretch;
}


/* 平台赋能 */
.card-group {
    align-content: flex-start;
    align-items: flex-start;
    display: flex;
    flex: none;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 16px;
    height: min-content;
    justify-content: flex-start;
    max-width: 960px;
    overflow: visible;
    padding: 0;
    position: relative;
    width: 100%;
}

/* SEE大会卡片样式 */
.see-conference {
    display: flex;
    padding: 32px;
    justify-content: space-between;
    align-items: flex-start;
    align-self: stretch;
    border-radius: 24px;
    border: 1px solid #E1E0ED;
    background: url('/asset/image/fnbg.png') no-repeat 47% bottom;
    /* 居中显示 */
    background-size: cover;
    /* 背景图自适应容器尺寸 */
    box-shadow: 0px 40px 120px -32px rgba(176, 191, 231, 0.16);
    backdrop-filter: blur(4px);
}

.see-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
    flex-shrink: 0;
    width: 100%;
}

.see-content h3 {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
}

.see-content p {
    font-size: 18px;
    opacity: 0.9;
    color: #fff;
    text-wrap-style: balance;
}

.see-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 56px;
}

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

.see-stats h4 {
    color: #FFF;
    font-size: 32px;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 1.28px;
}

.see-stats h4 span {
    font-size: 16px;
    margin-left: 2px;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.64px;
}

.see-stats p {
    color: #FFF;
    font-size: 14px;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.64px;
    opacity: 0.8;
}

.see-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.see-image img {
    max-width: 100%;
    height: auto;
}

/* 三个服务卡片样式 */
.platform-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.platform-card {
    display: flex;
    flex-direction: column;
    background: #F5F7FA;
    border-radius: 24px;
    /* 圆角 */
    overflow: hidden;
    /* 超出部分裁剪 */
    text-align: center;
}

.platform-card-title-group {
    display: flex;
    padding: 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    align-self: stretch;
}

.platform-card img {
    width: 100%;
    height: auto;
}

.platform-card h3 {
    font-size: 20px;
    font-weight: bold;
    color: #333;
}

.platform-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.grbg-section {
    background: url('/asset/image/grbg.jpg') lightgray 50% bottom / cover no-repeat;
    background-size: cover;
}

.grbg-section-reverse {
    background: url('/asset/image/grbg.jpg') lightgray center bottom / cover no-repeat;
    background-size: cover;
    transform: none;
    /* 移除之前的transform */
}

/* 使用伪元素来处理背景图 */
.grbg-section-reverse {
    position: relative;
    background: none;
    /* 移除直接背景 */
}

.grbg-section-reverse::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/asset/image/grbg.jpg') lightgray center bottom / cover no-repeat;
    transform: scaleY(-1);
    z-index: -1;
    /* 确保背景在内容下方 */
}

.grbg-light-blue-section {
    background: linear-gradient(0deg, rgba(248, 251, 255, 0) 0%, rgba(0, 102, 255, 0.04) 32%);
    background-size: cover;
}

/* 好评 */
/* 好评区域整体样式 */
.testimonials {
    display: flex;
    flex-direction: column;
    gap: 40px;
    width: 100%;
    align-items: center;
}

/* 评价卡片样式 */
.testimonial-card {
    max-width: 960px;
    min-width: 300px;
    width: 100%;
    display: flex;
    align-items: flex-start;
    gap: 24px;
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.90);
    box-shadow: 0px 40px 120px -32px rgba(176, 191, 231, 0.16);
    backdrop-filter: blur(4px);
}

/* 评价内容区域 */
.testimonial-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    flex: 1 0 0;
    align-self: stretch;
}

.testimonial-content-title {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    align-self: stretch;
}

.testimonial-content h3 {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0.96px;
}

.testimonial-content p {
    color: #666;
    font-size: 13px;
    font-weight: 350;
    letter-spacing: 0.52px;
}

/* 作者信息样式 */
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: auto;
}

.author-avatar {
    width: 48px;
    height: 48px;
    /* border-radius: 50%; */
}

.author-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.author-info h4 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.author-info p {
    font-size: 14px;
    color: #666;
}

/* 视频区域样式 */
.testimonial-image {
    flex: 1;
    position: relative;
    min-width: 400px;
    border-radius: 8px;
    overflow: hidden;
    height: 256px;
    width: 100%;
}

.video-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border: none;
    background: none;
    cursor: pointer;
    transition: transform 0.2s;
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.play-button .material-icons {
    font-size: 64px;
    color: white;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

/* 视频弹窗样式 */
.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.modal-content {
    position: relative;
    width: 80%;
    max-width: 1000px;
    aspect-ratio: 16/9;
}

.close-modal {
    position: absolute;
    right: -40px;
    top: -40px;
    color: white;
    font-size: 30px;
    cursor: pointer;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#videoPlayer {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* logo */
.logo-scroll-container {
    width: 100%;
    overflow: visible;
    display: flex;
    gap: 24px;
    flex-direction: column;
}

.logo-scroll-row {
    position: relative;
    width: 100%;
    height: 60px;
    overflow: visible;
}

.logo-track {
    display: flex;
    position: absolute;
    animation: scroll 30s linear infinite;
    width: fit-content;
    /* 重置列表样式 */
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 16px;
}

.logo-track.reverse {
    animation-direction: reverse;
}

.logo-item {
    flex: 0 0 160px;
    height: 60px;
    padding: 4px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 16px;
}

.logo-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    /* filter: grayscale(100%); 
    opacity: 0.6;
    transition: all 0.3s ease; */
}

/* .logo-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
} */

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* 当用户偏好减少动画时停止滚动 */
@media (prefers-reduced-motion: reduce) {
    .logo-track {
        animation: none;
    }
}

.logo-group {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
}


/* 生态 */
.st {
    width: 100%;
    /* 或者任意你需要的固定宽度 */
    max-width: 960px;
    /* 限制容器的最大宽度 */
    margin: 0 auto;
    /* 居中 */
}

.st img {
    width: 100%;
    /* 图片宽度充满容器 */
    height: auto;
    /* 自动计算高度，保持图片比例 */
    display: block;
    /* 移除图片底部的空白间隙 */
}

.st .mobile {
    display: none;
}

/* 客户案例卡片 */
.swiper-container {
    width: 100%;
    max-width: 960px;
}

.swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    height: auto;
}

.industry-card.slide {
    padding: 24px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.90);
}

.cc-content h3 {
    font-size: 18px;
    font-weight: bold;
}

.cc-content p {
    font-size: 14px;
    color: #666;
    font-weight: 350;
    line-height: normal;
    letter-spacing: 0.52px;
}

.cc-content {
    display: flex;
    /* min-width: 300px; */
    gap: 24px;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    flex: 1 0 0;
    align-self: stretch;
}

.cc-title {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    align-self: stretch;
}

.cc-avatar {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cc-avatar img {
    width: 48px;
    height: 48px;
}

.cc-avatar p {
    color: #000;
    font-size: 13px;
    letter-spacing: 0.52px;
}


/* 公司动态 */
/* 新闻列表样式 */
.news-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding-bottom: 40px;
    overflow: visible;
}

.news-track {
    display: flex;
    gap: 24px;
    /* 复制一份内容以实现无缝滚动 */
    animation: scroll 30s linear infinite;
}

/* 修改滚动动画，使用translateX(-50%) */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* 其他样式保持不变 */
.news-card {
    display: flex;
    min-width: 264px;
    flex-direction: column;
    align-items: flex-start;
    max-width: 300px;
    border-radius: 24px;
    background: #FFF;

    /* shadow blue */
    box-shadow: 0px 3px 32px -4px rgba(67, 73, 105, 0.08), 0px 16px 48px -8px rgba(50, 73, 198, 0.12);
}

.news-track:hover {
    animation-play-state: paused;
}

.news-image {
    position: relative;
    width: 100%;
    height: 160px;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-date {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
}

.news-content {
    padding: 24px;
}

.news-content h3 {
    font-size: 16px;
    margin-bottom: 8px;
    letter-spacing: 0.64px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-content p {
    font-size: 13px;
    color: #666;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* 添加滚动动画 */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-300px * 5 - 24px * 5));
    }
}

.news-track {
    animation: scroll 30s linear infinite;
}

.news-track:hover {
    animation-play-state: paused;
}

/* 留咨 */
.contact-section {
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.00) 0%, #FFF 100%), url('/asset/image/lzbg.jpg') lightgray 50% / cover no-repeat;
    display: flex;
    padding: 40px 16px;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    align-self: stretch;
}

.contact-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.contact-content h1 {
    font-size: 36px;
}

.contact-content p {
    font-size: 16px;
    color: #666;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 60px;
}

.contact-item {
    text-align: center;
}

.contact-item p {
    color: var(--darkgrey-color);
    font-size: 14px;
    line-height: 14px;
    /* 171.429% */
    padding-bottom: 4px;
    letter-spacing: 0.56px;
    opacity: 0.6;
}

.contact-item h3 {
    color: var(--darkgrey-color);
    font-size: 24px;
    font-weight: 500;
    line-height: 24px;
    /* 100% */
    letter-spacing: 0.96px;
}

.contact-item h3 a {
    text-decoration: none;
    color: inherit;
}

/* 页脚样式 */
.footer {
    display: flex;
    padding: 24px 40px;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    align-self: stretch;
    background: #1C1D1F;
}

.footer-content {
    display: flex;
    width: 100%;
    max-width: 960px;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    flex: 1 0 0;
}

.footer h3 {
    color: #FFF;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.64px;
}

.footer h4 {
    color: #666;
    font-size: 14px;
    letter-spacing: 0.56px;
}

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

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #999;
    font-size: 14px;
    letter-spacing: 0.56px;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #fff;
}

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    flex: 1 0 0;
    min-width: 160px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    flex-shrink: 0;
}


/* 联系方式部分 */
.contact-section .qr-code {
    text-align: center;
    margin-bottom: 24px;
}

.qr-code img {
    width: 140px;
    height: 140px;
}

.qr-code p {
    color: #999;
    font-size: 14px;
    line-height: normal;
    letter-spacing: 0.56px;
}

.footer-contact-info {
    display: flex;
    align-items: flex-start;
    gap: 24px;
}

.footer-contact-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.footer-contact-item p {
    color: #FFF;
    font-family: "Noto Sans SC";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.56px;
}

.footer-contact-item h3 {
    color: #FFF;
    font-family: "Noto Sans SC";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.64px;
    text-wrap-mode: nowrap;
}


.divider {
    width: 100%;
    max-width: 960px;
    height: 1px;
    background: #333;
}

.divider.grey {
    background: rgba(0, 0, 0, 0.1);
}

.divider.white {
    background: rgb(255, 255, 255, 0.64);
}

.company-info {
    display: flex;
    width: 100%;
    max-width: 960px;
    justify-content: space-between;
    align-items: flex-start;
    text-align: center;
}

.company-info a,
.company-info p {
    color: rgba(255, 255, 255, 0.40);
    font-size: 12px;
}

.company-info-beian {
    display: flex;
    align-items: center;
    gap: 8px;
}

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

    .product-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .product-features {
        text-align: center;
    }

    .feature-list li {
        display: flex;
    }

    .feature-list li:before {
        position: static;
    }
} */


/* 卡片 */
.industry-cards {
    padding: 40px 0;
    position: relative;
    overflow: hidden;
}

.card-container {
    width: 100vw;
    overflow: hidden;
    position: relative;
    display: flex;
    justify-content: center;
}

/* 横向滚动容器 */
.carousel-wrapper {
    width: 960px;
    /* 固定宽度 960px */
    gap: 24px;
    display: flex;
    scroll-snap-type: x mandatory;
    /* 横向滚动吸附效果 */
    overflow-x: auto;
    /* 启用横向滚动 */
    scroll-behavior: smooth;
    /* 平滑滚动体验 */
    -webkit-overflow-scrolling: touch;
    /* 移动端优化 */
    scroll-padding: 0 24px;
    /* 左右边距控制 */
}


/* 滚动条隐藏 */
.carousel-wrapper::-webkit-scrollbar {
    display: none;
}

.card-container-sis {
    display: flex;
    gap: 24px;
    width: 100%;
    max-width: 960px;
}

.card-container::-webkit-scrollbar {
    display: none;
}

.industry-card {
    flex: 0 0 304px;
    /* 每个卡片占80%宽度 */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border-radius: 16px;
    background: #FFF;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.industry-card.compact {
    align-items: center;
    justify-content: center;
    padding: 24px 12px;
    background: #F5F8FD;
}

.industry-card.compact h4 {
font-size: 14px;
}

.industry-card.shadow {
    box-shadow: 0px 4px 8px rgba(53, 61, 69, 0.08), 0px 8px 16px rgba(0, 63, 156, 0.08), 0px 16px 32px rgba(53, 61, 69, 0.08);
}

/* .industry-card:hover {
    transform: translateY(-5px);
} */

.industry-card-sis {
    display: flex;
    min-width: 300px;
    padding: 24px;
    gap: 8px;
    flex: 1 0 0;
    border-radius: 24px;
    background: #FFF;
    justify-content: space-between;
    /* box-shadow: 0px 4px 8px rgba(53, 61, 69, 0.08), 0px 8px 16px rgba(0, 63, 156, 0.08), 0px 16px 32px rgba(53, 61, 69, 0.08); */
}

.card-image {
    max-height: 180px;
    width: 100%;
    height: auto;
    overflow: hidden;
}

.card-image.recruit {
    max-height: 200px;
}

.card-image-sis img {
    width: 100%;
    height: 100%;
    object-fit: contain;

}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;

}

.card-image-icon img {
    width: 40px;
    height: 40px;
    object-fit: cover;

}

.card-content {
    display: flex;
    padding: 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    align-self: stretch;
}

.card-content-sis {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    align-self: stretch;
    width: -webkit-fill-available;
}

.card-content-sis h3,
.card-content h3 {
    color: #000;
    font-family: "Noto Sans SC";
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.96px;
}

.card-content h4 {
    color: #000;
    font-family: "Noto Sans SC";
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.72px;
}

.card-content p {
    color: rgba(0, 0, 0, 0.6);
    font-family: "Noto Sans SC";
    font-size: 14px;
    line-height: normal;
    letter-spacing: 0.64px;
}

.card-content.small p {
    font-size: 14px;
}

.card-content ul {
    list-style: none;
    padding: 0;
}

.card-content li {
    color: #000;
    font-family: "Noto Sans SC";
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 200%;
    /* 28px */
    letter-spacing: 0.56px;
}

.card-content li:before {
    content: "";
    position: absolute;
    left: 0;
    color: #1890ff;
}

.card-content.compact {
    padding: 16px;
    gap: 8px;
}

.card-content.row {
    flex-direction: row;
    /* padding: 24px; */
    gap: 8px;
    align-items: center;
}

.card-content-logo {
    height: 48px;
    width: 48px;
}

.tag {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 4px 8px;
    border-radius: 8px;
    background: #D9F3FD;
    color: #039FD7;
    font-size: 14px;
    width: fit-content;
}

.tag.purple {
    background: #F1F3FF;
    color: #443568;
}

.tag.blue {
    background: #EDF1FF;
    color: #305BDA;
}

.tag.pink {
    background: #ffe0dd;
    color: #ff5948;
}

.vip-group {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    max-width: 960px;
    justify-items: center;
    /* gap:16px; */
    row-gap: 24px;
    /* 只设置行间距 */
}

.vip-card {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1 0 0;
    align-items: center;
    /* box-shadow: 0px 4px 8px rgba(53, 61, 69, 0.08), 0px 8px 16px rgba(0, 63, 156, 0.08), 0px 16px 32px rgba(53, 61, 69, 0.08); */
}

.vip-card .card-image {
    height: 120px;
    width: fit-content;
    overflow: hidden;
}

.vip-card .card-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0px;
    gap: 0px;
}

.vip-card h5 {
    /* color: var(--dark-main-color); */
}

.card-navigation {
    position: relative;
    display: flex;
    justify-content: center;
    gap: 24px;
    pointer-events: none;
}

.card-navigation button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    border: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    pointer-events: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.card-navigation button:hover {
    background: #1890ff;
    color: #fff;
}

.img-group {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* 三列等宽 */
    gap: 24px;
    /* 设置间距 */
    max-width: 960px;
    /* 控制整体宽度 */
    margin: auto;
    width: 100%;
}

.item img {
    width: 100%;
}

.img-group .item {
    width: 100%;
    height: 120px;
    border-radius: 16px;
    overflow: hidden;
}

.img-group .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* 让图片填充满区域，并裁剪多余部分 */
}

.img-group.c2 {
    grid-template-columns: repeat(2, 1fr);
}

.img-group.c4 {
    grid-template-columns: repeat(4, 1fr);
}

.img-group.c5 {
    grid-template-columns: repeat(5, 1fr);
}

.img-group .item.support {
    height: 175px;
    transition: transform 0.2s ease-in-out;
}

.img-group .item.support:hover {
    transform: translateY(-8px);
    transition: transform 0.2s ease-in-out;
}

.img-group .item.support-gw {
    height: 124px;
    transition: transform 0.2s ease-in-out;
}

.img-group .item.support-gw:hover {
    transform: translateY(-8px);
    transition: transform 0.2s ease-in-out;
}

.img-group .item.share {
    height: 100%;
}

.img-group .item.kj {
    height: 218px;
}

.img-group.share {
    height: 344px;
}

.img-group .item-share {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
}

.img-group .item-share img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.item-share-left {
    display: flex;
    flex-direction: column;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
}

.item-share-left img {
    height: 100%;
    object-fit: cover;
}

.item-share-left-group {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 16px;
    gap: 8px;
    background-color: #fff;
}

.item-share-left-icon {
    width: 64px;
    height: 64px;
}

.item-share-left-title {
    display: flex;
    flex-direction: column;
}


.safe-zs {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.safe-zs-image {
    width: 100%;
    padding: 16px;
    border-radius: 16px;
    background: linear-gradient(146deg, #C5D7FF 0%, rgb(235 250 255 / 70%) 90%);
}

.safe-zs-image img {
    width: 100%;
}

.safe-zs-title {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.safe-zs-title h4 {
    text-align: center;
}

.safe-zs-title p {
    color: rgba(0, 0, 0, 0.6);
    font-size: 14px;
}

/* history */
/* 时间轴容器基础样式 */
.timeline-container {
    padding: 40px 0;
    max-width: 1200px;
    margin: 0 auto;
}

.timeline {
    position: relative;
    width: 100%;
}

/* 桌面端时间轴中线 */
@media screen and (min-width: 768px) {
    .timeline::before {
        content: '';
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        width: 2px;
        height: 100%;
        background: var(--main-color);
    }
}

/* 时间轴项目基础样式 */
.timeline-item {
    position: relative;
    margin-bottom: 24px;
    width: 100%;
}

/* 年份标记样式 */
.year-marker {
    background: var(--main-color);
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    display: inline-block;
    font-size: 18px;
    position: relative;
    z-index: 2;
    margin-bottom: 20px;
}

/* 事件内容基础样式 */
.event-content {
    background: hsl(216deg 100% 49% / 8%);
    padding: 8px;
    border-radius: 16px;
    margin-bottom: 20px;
    position: relative;
}

.event {
    margin-bottom: 15px;
}

.event p {
    font-size: 16px;
}

.month {
    color: var(--main-color);
    font-weight: bold;
    font-size: 20px;
}

/* 桌面端布局 */
@media screen and (min-width: 768px) {
    .timeline-item {
        display: flex;
        justify-content: center;
    }

    /* 年份标记居中 */
    .year-marker {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    /* 左右交替布局 */
    .timeline-item:nth-child(odd) .event-content {
        margin-right: 56%;
        margin-left: 24px;
        padding-right: 24px;
        width: 100%;
    }

    .timeline-item:nth-child(odd) .event-content .event {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
    }

    .timeline-item:nth-child(odd) .event-content .event p {
        text-align: end;
    }

    .timeline-item:nth-child(even) .event-content {
        margin-left: 56%;
        margin-right: 24px;
        padding-left: 24px;
        width: 100%;
    }

    /* 添加连接点 */
    .event-content::before {
        content: '';
        position: absolute;
        width: 16px;
        height: 16px;
        background: var(--main-color);
        border-radius: 50%;
        top: 16px;
    }

    .timeline-item:nth-child(odd) .event-content::before {
        right: -8px;
    }

    .timeline-item:nth-child(even) .event-content::before {
        left: -8px;
    }
}

/* 移动端布局 */
@media screen and (max-width: 767px) {
    .timeline::before {
        content: '';
        position: absolute;
        left: 20px;
        width: 2px;
        height: 100%;
        background: var(--main-color);
    }

    .year-marker {
        margin-left: 40px;
    }

    .event-content {
        margin-left: 40px;
        padding-left: 20px;
        margin-right: 24px;
    }

    /* 添加连接点 */
    .event-content::before {
        content: '';
        position: absolute;
        left: -27px;
        width: 16px;
        height: 16px;
        background: var(--main-color);
        border-radius: 50%;
        top: -50px;
    }
}

/* team */
/* .team-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
} */

.team-intro {
    position: relative;
    max-width: 800px;
    /* 自动布局 */
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 48px 56px;
    border-radius: 24px;
    background: linear-gradient(180deg, #F3FAFF 0%, #E3F3FF 100%);
    box-shadow: inset 0px 1px 0px 0px rgba(255, 255, 255, 0.5), inset 0px -1px 0px 0px rgba(93, 199, 251, 0.5);
}

.team-quote1 {
    /* 自动布局子元素 */
    position: absolute;
    left: 24px;
    top: 24px;
    width: 2.63%;
    height: 10.96%;
    z-index: 1;
}

.team-quote2 {
    /* 自动布局子元素 */
    position: absolute;
    right: 24px;
    bottom: 24px;
    width: 2.63%;
    height: 10.96%;
    z-index: 1;
    transform: rotate(180deg);
}

.quote {
    font-size: 18px;
    line-height: 1.5;
    color: #314666;
    position: relative;
}

.team-members {
    display: flex;
    gap: 40px;
    flex-direction: column;
}

.member-card {
    background: #fff;
    height: 304px;
    display: flex;
    align-items: center;
}

.member-info {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0px;
}

.member-photo {
    width: 211px;
    height: 295px;
    position: absolute;
    z-index: 2;
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.member-intro {
    position: absolute;
    bottom: -72px;
    width: 248px;
    display: flex;
    flex-direction: column;
    padding: 16px 40px;
    border-radius: 24px 0px 24px 0px;
    background: linear-gradient(90deg, rgba(0, 100, 250, 0.6) 60%, rgba(0, 100, 250, 0.2) 100%);
    backdrop-filter: blur(32px);
    box-shadow: inset 1px 1px 0px 0px rgba(255, 255, 255, 0.9);
    z-index: 3;
}



.member-intro h3 {
    font-size: 24px;
    color: #fff;
}

.title {
    display: block;
    color: #fff;
    font-size: 18px;
}

.member-details {
    margin-left: 60px;
    width: 640px;
    height: 160px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    padding: 35px 102px;
    z-index: 0;
    border-radius: 32px 0px 32px 0px;
    background: linear-gradient(270deg, rgba(105, 173, 254, 0.5) -21%, #3893FF 60%);
    box-shadow: inset 0px 1px 3px 0px rgba(255, 255, 255, 0.8);
}

.member-text-group {
    position: absolute;
    left: 48%;
}

.member-text-group p {
    color: #fff;
    font-size: 18px;
}



/* 响应式布局 */
@media screen and (max-width: 768px) {
    .team-members {
        grid-template-columns: 1fr;
    }

    .member-card {
        justify-content: flex-end;
        flex-direction: column;
        gap: 96px;
        height: 424px;
    }

    .member-intro {
        left: -40px;
    }

    .member-details {
        width: 170px;
        height: 170px;
    }

    .member-text-group {
        position: relative;
        left: 6%;
        width: 100%;
    }

    .member-text-group p {
        color: #314666;
        font-size: 16px;
    }
}

@media screen and (min-width: 769px) {
    .team-members {
        grid-template-columns: repeat(2, 1fr);
    }

    .member-info {
        flex-direction: row;
    }

    /* .member-photo {
        width: 200px;
        height: 200px;
    } */
}

/* customers */
/* 客户案例区域样式 */
.customer-cases {
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.customer-cases .product-title {
    text-align: left;
}

.customer-cases .product-title h3 {
    font-size: 28px;
    font-weight: 600;
    color: #333;
}

.customer-cases-jp {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 0 20px;
}

/* 案例卡片样式 */
.case-card {
    background: #fff;
    border-radius: 24px;
    border: 1px solid rgba(216, 236, 255, .5);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
    display: flex;
}

.case-card:hover {
    border: 1px solid rgba(255, 255, 255);
    transform: none;
    /* shadow ok */
    box-shadow: 0px 4px 8px rgba(53, 61, 69, 0.08), 0px 8px 16px rgba(0, 63, 156, 0.08), 0px 16px 32px rgba(53, 61, 69, 0.08);
}

.case-image {
    min-width: 180px;
    height: auto;
    overflow: hidden;
}

.case-image img {
    width: 100%;
    /* 宽度自适应容器宽度 */
    height: 100%;
    /* 高度按比例自适应 */
    object-fit: cover;
    /* 保证图片裁剪并充满容器 */
}

.case-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

.case-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
}

/* .tag {
    display: inline-block;
    padding: 4px 12px;
    background-color: #E8F3FF;
    color: #0066FF;
    border-radius: 4px;
    font-size: 14px;
  } */

/* 统计数据样式 */
.case-stats {
    display: flex;
    gap: 24px;
}

.case-stats-item {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.case-stats-item .number {
    font-size: 24px;
    font-weight: 600;
    color: #333;
}

.case-stats-item .unit {
    font-size: 14px;
    color: #666;
}

.case-desc {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.case-link {
    display: inline-block;
    color: #0066FF;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.case-link:hover {
    color: #0052CC;
}

.tag-group {
    display: flex;
    flex-direction: row;
    gap: 8px;
}

/* 响应式调整 */
@media screen and (max-width: 768px) {
    .customer-cases {
        padding: 40px 0;
    }

    .customer-cases .product-title h3 {}

    .customer-cases-jp {
        grid-template-columns: 1fr;
        padding: 0 16px;
    }

    .case-content {
        padding: 16px;
    }
}

.blog-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 800px;
    margin-top: 80px;
    padding-bottom: 40px;
}

.blog-category {
    display: flex;
    align-items: center;
    gap: 8px;
}

.blog-category .info {
    font-size: 12px;
    color: #314666;
}

.blog-section {}

.blog-container h1 {
    font-family: 'Open Sans';
    font-weight: 600;
    color: #222;
    font-size: 40px;
}

.blog-container h3 {
    font-weight: 500;
    color: #222;
    font-size: 20px;
    margin-bottom: 12px;
}

.blog-container p {
    white-space: pre-line;
    font-size: 16px;
    color: #51565d;
}


/* company */
.main-container.company {
    position: relative;
    /* 必须给父元素设置定位，以便绝对定位的伪元素相对于父元素 */
}

.main-container.company::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 180px;
    bottom: 0;
    background: url('/asset/image/about/company_bg.png') no-repeat center top;
    z-index: -1;
}

.main-container.company::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 45px;
    background: url('/asset/image/about/company_bg2.png') no-repeat right top;
    z-index: -1;
}

.honor-container {
    margin-top: 80px;
    max-width: 960px;
    display: flex;
    gap: 40px;
    flex-direction: column;
}

.honor-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
    gap: 40px;
}

.honor-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
}

.honor-item p {
    font-size: 14px;
    text-align: center;
}

.honor-image {
    height: 240px;
}

.honor-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* minfei */
.mainInfo_container {
    display: flex;
    padding: 0 16px 40px 16px;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    align-self: stretch;
}

.mainInfo_container .mainInfo_header {
    margin: -57px auto 0;
    position: relative;
    width: 1120px;
    height: 113px;
    background-image: url('/asset/image/minfei/main-info-header-bg.png');
    background-repeat: no-repeat;
    background-size: contain;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
}

.mainInfo_title {
    color: hsla(0, 0%, 100%, .8);
    font-size: 18px;
}

.mainInfo_bigTitle {
    color: #fff;
    font-size: 24px;
}

.mainInfo_desc {
    color: hsla(0, 0%, 100%, .6);
    font-size: 14px;
}

.mainInfo_container .mainInfo_img {
    position: absolute;
    top: 142px;
    left: 236px;
}

.mainInfo_infoCard {
    position: absolute;
    top: 182px;
    right: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.mainInfo_infoItem {
    margin-bottom: 88px;
}

.product-info-image {
    position: relative;
    aspect-ratio: 1.25 / 1;
    flex: 1 0 0px;
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
}

.product-info-image img {
    width: 150%;
    height: 100%;
    object-fit: contain;
}

.main-container.image {
    padding: 40px 0px;
}

.sectionTitle-bg {
    width: 100%;
    height: 132px;
    background-image: url('/asset/image/minfei/minfei31.png');
    background-repeat: no-repeat;
    background-size: auto 100%;
    background-position: 50%;
}

.sectionTitle-bg.bg2 {
    background-image: url('/asset/image/minfei/minfei41.png');
}


.image-container._80 {
    width: 80%;
}

.image-container._20 {
    width: 20%;
}

/* love */
.loveBannerFoot {
    position: absolute;
    z-index: 1;
    left: 0;
    right: 0;
    bottom: 0;
    height: 120px;
    background-color: #ff5948;
    color: #fff;
}

.main-container.bg-red {
    background-color: #ff5948;
    color: #fff;
}

.loveBFInner {
    display: flex;
    align-items: center;
    gap: 24px;

}

.loveBFInner h1 {
    color: #fff;
}

.loveBFInner h3 {}


.main-container.love-info::before {
    content: "";
    position: absolute;
    left: 50%;
    margin-left: -500px;
    z-index: -1;
    width: 254px;
    height: 254px;
    background: url("/asset/image/love/lovebg1.png") no-repeat;
}

.main-container.love-info::after {
    content: "";
    position: absolute;
    right: 20%;
    margin-left: 500px;
    z-index: -1;
    width: 106px;
    height: 106px;
    background-color: #0064fa;
    border-radius: 50%;
}

.love-info {
    margin: 40px 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}


.love-info h4 {
    color: #ff5948;
    font-size: 18px;
}

.love-info h5 {
    color: var(--main-color);
    font-size: 16px;
}

.love-info p {
    font-size: 14px;
    white-space: pre-line;
    text-align: center;
}

.main-container.love-target {
    height: 540px;
    background: url('/asset/image/love/lovebg2.jpg') no-repeat center bottom;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -ms-background-size: cover;
    background-size: cover;
    display: flex;
    justify-content: center;
}

.love-info.target {
    max-width: 640px;
    width: 100%;
}

.love-target h4 {
    color: #fff;
    font-size: 18px;
}

.love-target h5 {
    color: #fff;
    font-size: 16px;
    font-weight: 400;
}

.love-target li {
    color: #fff;
    font-size: 14px;
    font-weight: 400;
}

.love-info.target .feature-list li:before {
    background-image: url('/asset/image/li_white.svg');
}

.love-info.process {
    max-width: 640px;
    width: 100%;
    gap: 32px;
}

.process {
    display: flex;
    /* gap: 48px; */
    justify-content: space-between;
    width: 88%;
}

.process-circle {
    width: 120px;
    height: 120px;
    border-radius: 120px;
    border: 1px solid #ff5948;
    display: flex;
    justify-content: center;
    align-items: center;
}

.process-circle h5 {
    color: #ff5948;
    white-space: pre-line;
    text-align: center;
}

.love-divider::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    z-index: 1;
    width: 100%;
    height: 44px;
    background: url('/asset/image/love/lovebg3.png') no-repeat right top;
}

.love-info.case {
    margin: 0;
}

.love-info.love .logo-group {
    flex-wrap: wrap;
}

.love-info.love .logo-item {
    flex: 0 0 120px;
    height: 80px;
}

/* .love-info.target {
    flex: 0 0 120px;
    height: 80px;
} */

.invest-info {
    display: flex;
    gap: 16px;
    flex-direction: column;
    padding: 40px 0;
}

.invest-info p {
    white-space: pre-line;
    text-align: center;
}

/* 基金介绍区域 */
.fund-intro {
    display: flex;
    flex-direction: column;
    align-items: center;
    align-self: stretch;
    background: linear-gradient(180deg, #FFF 0%, rgba(255, 255, 255, 0.00) 100%), url('/asset/image/fund/fund_bg1.png') lightgray 50% / cover no-repeat;
}

.fund-group {
    display: flex;
    width: -webkit-fill-available;
    max-width: 960px;
    height: 400px;
    padding: 0px 40px;
    align-items: center;
    gap: 24px;
}

.fund-image {
    flex: 1 0 0px;
    height: 256px;
    position: relative;
    width: -webkit-fill-available;
    display: flex;
    justify-content: center;
    align-items: center;
}

.fund-group img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.fund-title {
    place-content: flex-start;
    align-items: flex-start;
    display: flex;
    flex: 1 0 0px;
    flex-flow: column;
    gap: 24px;
    height: min-content;
    overflow: visible;
    padding: 0px;
    position: relative;
    width: -webkit-fill-available;
}

.fund-intro h2 {
    color: var(--darkgrey-color);
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 1.28px;
}

.fund-intro p {
    color: var(--darkgrey-color);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.64px;
    white-space: pre-line;
    text-wrap-mode: nowrap;
}

.item.fund {
    height: 220px;
    position: relative;
    border-radius: 0;
}

.item.fund p {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* 居中对齐 */
    color: white;
    /* 文字颜色 */
    font-size: 16px;
    /* 适当调整字号 */
    text-align: center;
    /* 居中文本 */
    white-space: pre-line;
    border-radius: 5px;
}

.sectionTitle-bg.fundbg {
    background-image: url('/asset/image/fund/fund_bg3.png');
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
}

/* contact */
.contact-container {
    margin-top: 80px;
    max-width: 960px;
    display: flex;
    gap: 40px;
    flex-direction: column;
}

.contact-container.notop {
    margin-top: 0;
}

.item.contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    height: 100%;
}

.item.contact img {
    width: 80px;
    height: 80px;
}

.item.contact p {
    font-size: 16px;
    white-space: pre-line;
    text-align: center;
}

.main-container.contact-map {
    background-image: url('/asset/image/about/contact_map.png');
    padding-bottom: 120px;
}

.contact-location-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
    max-width: 960px;
    gap: 48px;
}

.contact-location-list-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.contact-location-list-item img {
    width: 20px;
    height: 24px;
    margin-right: 8px;
    position: relative;
    top: 4px;
}

.contact-location-list-item span {
    font-size: 20px;
    font-weight: 500;
    color: rgba(51, 51, 51, 1);
    line-height: 28px;
}

/* contact */
.media-group {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.media-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.media-item img {}

/* careers */
.videoBg {
    position: relative;
    overflow: hidden;
    justify-items: center;
    /* 移除 height: 100vh，使用原有高度 */
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.video-background video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    object-fit: cover;
}

/* 添加遮罩层 */
.videoBg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8) 100%;
    z-index: 1;
}

/* 确保内容在遮罩层上方 */
.heroContent {
    position: relative;
    z-index: 2;
    /* 更新z-index确保在遮罩层之上 */
}

.videoBg h1 {
    color: #fff;
}

.careers-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
    max-width: 960px;
    gap: 48px;
}

.careers-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.careers-item h3{
    font-size: 24px;
}

.careers-item p{
    font-size: 18px;
}

.careers-item li{
    font-size: 16px;
}


@media (max-width: 809px) {
    nav {
        padding: 16px;
        height: 56px;
    }

    nav .nav-btns {
        display: none;
    }

    .navbar {
        justify-self: auto;
    }

    .nav-btns {
        justify-content: center;
    }

    .dropdown-menu {
        display: flex;
        flex-direction: column;
        position: relative;
        padding: 0;
        top: 0;
        left: 0;
        transform: none;
        box-shadow: none;
        gap: 0;
    }

    /* 调整导航菜单的布局，适配移动端 */
    .nav-links {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        position: absolute;
        padding-left: 16px;
        top: 56px;
        right: 0;
        background: white;
        width: 100%;
        border-radius: 0;
        box-shadow: none;
        z-index: 999;
        height: 100vh;
        /* 最大高度为屏幕高度的 80% */
        overflow-y: auto;
        /* 垂直方向启用滚动 */
        padding-right: 10px;
        /* 防止滚动条遮挡内容 */
    }

    .dropdown {
        padding: 8px 0;
    }

    .dropdown a {
        text-decoration: none;
        color: #333;
    }

    .dropdown-menu a {
        display: flex;
        color: #555;
        font-size: 14px;
        height: 56px;
    }

    .dropdown-menu a span {
        font-size: 18px;
        letter-spacing: 0.56px;
    }

    .dropdown .arrow {
        display: none;

    }


    /* 隐藏导航栏 */
    .nav-links {
        display: none;
    }

    /* 隐藏滚动条（可选，保持美观） */
    .nav-links::-webkit-scrollbar {
        width: 5px;
        /* 滚动条宽度 */
    }

    .nav-links::-webkit-scrollbar-thumb {
        background-color: #ccc;
        /* 滚动条颜色 */
        border-radius: 10px;
        /* 滚动条圆角 */
    }

    .nav-links::-webkit-scrollbar-track {
        background-color: #f9f9f9;
        /* 滚动条轨道颜色 */
    }

    .nav-links li {
        text-align: center;
        flex-direction: column;
        width: 100%;
    }

    .nav-links li:last-child {
        border-bottom: none;
    }

    /* 显示汉堡菜单按钮 */
    .menu-toggle {
        display: block;
    }

    /* 显示菜单 */
    .nav-links.active {
        display: flex;
    }


    /* 调整字体大小 */
    .nav-links a {
        font-size: 18px;
        height: 56px;
        align-content: center;
        text-align: left;
    }

    .dropdown>a {
        font-size: 12px;
        height: 24px;
        color: var(--grey-color);
    }


    .dropdown-menu a span {
        font-size: 18px;
    }

    nav .main-btn {
        display: none;
    }


    /* 移动端底部栏 */
    .bottomMenu {
        display: flex;
        /* 移动端显示 */
    }



    /* 侧边栏 */
    .side-bar {
        display: none;
    }


    .stats {
        display: flex;
        justify-content: center;
        align-items: center;
        align-content: center;
        gap: 32px;
        align-self: stretch;
        flex-wrap: wrap;
    }

    .hero {
        padding: 120px 16px 40px 16px;
    }

    .hero img {
        bottom: 140px;
    }

    .hero-title h1 {
        font-size: 28px;
    }

    .hero-title p {
        font-size: 14px;
        text-align: center;
    }

    .hero-title-group {
        align-items: inherit;
    }

    .heroContent {
        align-items: center;
        max-height: none;
        padding: 120px 24px 24px 24px;
    }

    .heroContent.with-qr-code {
        flex-direction: column;
        align-items: center;
        max-height: none;
        padding: 120px 24px 24px 24px;
        gap: 32px;
        height: auto;
    }

    .hero-title.text-left {
        align-items: center;
    }


    .main-logos {
        padding: 16px 0;
    }

    .logo-row {
        gap: 8px;
        flex-wrap: wrap;
    }

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

    .main-container {
        padding: 32px 16px;
        gap: 24px;
    }


    /* .product-nav {
        display: flex;
        align-items: flex-start;
        gap: 16px;
    } */

    .main-container h1,
    .colorfulh1 {
        font-size: 28px;
    }

    .main-container h2 {
        font-size: 24px;
        text-align: center;
        text-wrap-style: balance;
    }

    .main-container h3 {
        font-size: 18px;
        text-wrap-style: balance;
    }

    .main-container h4 {
        font-size: 16px;
        text-wrap-style: balance;
    }


    .main-container.colorful h2 {
        font-size: 24px;
    }

    .main-container.colorful h5 {
        font-size: 16px;
        text-align: center;
    }

    .main-container.love-info::after{
        opacity: 0;
    }

    .product-info {
        align-items: center;
    }

    .product-title {
        align-items: center;
        width: 100%;
    }

    .product-item h3 {
        text-align: left;
        width: auto;
        height: auto;
    }

    .product-slider {
        width: 100%;
        justify-content: flex-start;
        padding: 0 16px;
        scroll-snap-type: x mandatory;
        scroll-padding: 0 16px;
        gap: 16px;
    }

    .product-slider.blue {
        width: auto;
        justify-content: flex-start;
        padding: 0;
        scroll-snap-type: x mandatory;
        scroll-padding: 0 16px;
        gap: 16px;
    }

    .product-item {
        scroll-snap-align: center;
        flex-shrink: 0;
        display: flex;
        flex-direction: row;
        height: auto;
        padding: 8px 16px 8px 8px;
    }

    .product-item img {
        width: 36px;
    }

    .product-content {
        display: flex;
        align-items: flex-start;
        flex-direction: column-reverse;
        width: -webkit-fill-available;
        padding: 16px;
        gap: 16px;
        display: none;
    }

    .product-group {
        gap: 16px;
    }

    .product-features {
        gap: 16px;
    }

    .product-features h3 {
        font-size: 18px;
    }

    .product-features h4 {
        font-size: 16px;
    }

    .product-features h5 {
        font-size: 14px;
    }

    .product-icon {
        display: flex;
        height: 56px;
        align-items: center;
        gap: 8px;
    }

    .product-icon img {
        width: auto;
    }

    .product-icon h3 {
        font-size: 16px;
        font-weight: 500;
    }

    .service-stat {
        gap: 0px;
    }

    .service-stat-item {
        width: auto;
    }

    .service-stat-item h3 {
        font-size: 24px;
        line-height: 120%;
        /* 28.8px */
        letter-spacing: 0.96px;
    }

    .service-stat-item p {
        font-size: 12px;
        letter-spacing: 0.48px;
    }

    .service-card.products {
        padding: 16px;
        justify-content: flex-start;
    }

    .service-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .service-cards.sis {
        grid-template-columns: repeat(1, 1fr);
        gap: 16px;
    }

    .service-cards.c2 {
        grid-template-columns: repeat(1, 1fr);
    }

    .service-cards.c4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-cards.c5 {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-cards h3 {
        font-size: 18px;
        text-wrap: auto;
    }

    .service-cards p {
        font-size: 14px;
    }

    .service-card.sis img {
        height: auto;
    }

    .platform-cards {
        display: flex;
        flex-direction: column;
    }

    /* .platform-card-title-group {

    } */

    .platform-card h3 {
        font-size: 18px;
    }

    .platform-card p {
        font-size: 16px;
    }


    /* 卡片 */

    .carousel-wrapper {
        width: 100%;
        /* 小屏幕占满宽度 */
        gap: 0;
    }

    /* .industry-card {
        margin: 0
    } */

    .industry-card.erp {
        flex: 0 0 80%;
        /* 移动端卡片宽度占 80% */
        margin: 0 12px;
    }

    .industry-card.compact{
        margin: 0;
    }

    .card-content-sis h3,
    .card-content h3 {
        font-size: 18px;
    }

    .card-content p {
        font-size: 14px;
    }

    .vip-card p {
        text-wrap-mode: nowrap;
    }

    .card-container-sis {
        flex-direction: column;
    }

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

    .img-group.c2 {
        grid-template-columns: repeat(1, 1fr);
    }

    .img-group.c2.contact {
        grid-template-columns: repeat(2, 1fr);
    }

    .img-group.c2.share {
        grid-template-columns: repeat(2, 1fr);
    }

    .img-group.c4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .img-group.c5 {
        grid-template-columns: repeat(2, 1fr);
    }

    .img-group.share {
        height: 100%;

    }

    .img-group {
        gap: 16px;
    }

    .img-group .item.support,
    .img-group .item.support-gw {
        height: 100%;
    }

    /* 好评 */
    .testimonial-card {
        flex-direction: column-reverse;
        padding: 24px;
    }

    .testimonial-content {
        gap: 40px;
    }

    .testimonial-image {
        min-width: unset;
        aspect-ratio: 16/9;
    }

    .modal-content {
        width: 95%;
    }

    .close-modal {
        right: 0;
        top: -40px;
    }


    /* 服务卡片 */
    .service-card.erp {
        flex-direction: column-reverse;
        justify-content: flex-end;
        padding: 16px;
    }

    .safe-zs-image {
        width: 80%;
        align-self: center;
    }


    /* 生态 */
    .st .desktop {
        display: none;
    }

    .st .mobile {
        display: block;
    }

    /* .contact-item p {

    } */

    .mainInfo_container .mainInfo_header {
        margin: 0;
    }

    .sectionTitle-bg {
        background-size: auto 80%;
    }

/* honor */
.honor-grid {
    grid-template-columns: repeat(2, 1fr);
}

    /* fund */

    .fund {
        padding-top: 24px;
    }

    .fund-group {
        display: flex;
        flex-direction: column-reverse;
        width: -webkit-fill-available;
        height: auto;
    }

    .fund-group img {
        width: 70%;
        height: 70%;
    }

    .fund-title {
        align-items: center;
        padding-bottom: 24px;
    }

    .fund h2 {
        font-size: 24px;
    }

    .fund p {
        font-size: 14px;
    }

    .contact-item h3 {
        font-size: 18px;
    }

    .footer-content {
        gap: 40px;
        display: flex;
        flex-direction: column;
    }

    .footer-contact-item {
        min-width: 160px;
    }

    .company-info {
        flex-direction: column;
        gap: 8px;
        padding-bottom: 80px;
    }
}