/*全局字体控制*/
:root {
  --font-zh: "PingFang SC", "Microsoft YaHei", sans-serif;
  --font-en: "Inter", "Roboto", "Helvetica Neue", Arial, sans-serif;
}
* {
  font-family: var(--font-en), var(--font-zh);
}




.no-link-style,
.no-link-style:hover{
  text-decoration: none;
  color:inherit !important; /* 继承原色 */
}

.dropdown-toggle::after {

  transition: transform 0.2s ease; /* 加过渡动画更丝滑 */
}

.dropdown-toggle[aria-expanded="true"]::after {
  transform: rotate(180deg); /* 旋转180度变成向上 */
}

.dropdown-menu {
  border-radius: 15px !important; /* 自定义圆角半径，数值越大越圆 */
  /* 可选：去掉默认边框，让圆角更柔和 */
  border: 1px solid #e5e7eb;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* 下拉菜单容器：左右留白，限制子元素宽度 */
.dropdown-menu {
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  padding: 8px 16px; /* 上下8px，左右16px → 给子元素留出安全区 */
  overflow: hidden; /* 防止内容溢出 */
}

/* 下拉菜单项：去掉左右margin，只保留内部padding */
.dropdown-item {
  display: block;
  padding: 12px 16px; /* 项内部上下/左右内边距 */
  margin: 4px 0; /* 只保留上下间距，去掉左右margin */
  border-radius: 8px;
  transition: background-color 0.2s ease;
}


.dropdown-item:hover {
  background-color: #ebe9fe; /* 你图中的淡紫色色块 */
  border-radius: 8px; /* 让色块也带圆角，和菜单整体风格一致 */
}

/* 外层下拉 */
.language-dropdown {
    width: 100%;
    max-width: 360px;
}

/* 顶部按钮 */
.language-btn {
    width: 100%;
    height: 50px;
    padding: 0 28px;
    background: #fff;
    border: 1px solid #9b5cff;
    border-radius: 39px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: none !important;
    outline: none !important;
    color: #111;
}

/* 下拉菜单 */
.language-menu {
    width: 100%;
    min-width: 100%;
    margin-top: 14px;
    padding: 18px 18px 20px;
    border: 1px solid #e9e9e9;
    border-radius: 34px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    background: #fff;
}

html {
    scroll-behavior: smooth;
}

/* =========================
   统一语言按钮箭头样式
========================= */

/* 去掉 Bootstrap 默认小三角 */
.language-btn.dropdown-toggle::after,
.mobile-language-btn.dropdown-toggle::after {
    display: none;
}

/* PC端按钮布局 */
.language-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.language-btn-inner {
    display: flex;
    align-items: center;
}

/* 统一箭头样式：和 md 以下一样 */
.language-arrow {
    width: 8px;
    height: 8px;
    border-right: 2px solid #555;
    border-bottom: 2px solid #555;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    display: inline-block;
    margin-top: -4px;
}

/* PC端打开时旋转180度 */
.language-dropdown.show .language-arrow {
    transform: rotate(225deg);
    margin-top: 2px;
}

/* 移动端打开时旋转180度 */
.mobile-language-dropdown.show .language-arrow {
    transform: rotate(225deg);
    margin-top: 2px;
}

/* 去掉产品默认箭头 */
/* 去掉 Bootstrap 默认箭头 */
.product-dropdown .dropdown-toggle::after,
.language-dropdown .dropdown-toggle::after,
.mobile-language-dropdown .dropdown-toggle::after {
    display: none !important;
    border: 0 !important;
    content: none !important;
}

/* =========================
   顶部导航整行垂直居中
========================= */
.header-row {
    min-height: 30px;
}

/* 让三个列都垂直居中 */
.header-row > [class*="col-"] {
    display: flex;
    align-items: center;
}

/* 左边 logo */
.header-row .navbar-brand {
    display: flex;
    align-items: center;
    margin-bottom: 0;
}

.header-row .navbar-brand img {
    display: block;
    max-height: 56px;
    width: auto;
}

/* 中间导航整体 */
.header-row .nav {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
}

/* 每个导航项 */
.header-row .nav-item {
    display: flex;
    align-items: center;
}

/* 导航文字垂直居中 */
.header-row .nav-link {
    display: flex;
    align-items: center;
    padding-top: 0;
    padding-bottom: 0;
    line-height: 1;
    height: 30px;
}

/* 产品按钮 */
.product-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 30px;
    line-height: 1;
}

/* 右边语言区域 */
.header-row .language-dropdown {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

/* 语言按钮本身 */
.language-btn {
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    line-height: 1;
    margin-bottom: 0;
}

/* 按钮里的左侧内容 */
.language-btn-inner {
    display: flex;
    align-items: center;
}

/* 产品箭头和语言箭头微调 */
.nav-arrow,
.language-arrow {
    position: relative;
    top: -1px;
}

/* 产品按钮布局 */
.product-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 产品右侧小三角，和语言按钮统一 */
.nav-arrow {
    margin-left: 10px;
    width: 8px;
    height: 8px;
    border-right: 2px solid #555;
    border-bottom: 2px solid #555;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
    display: inline-block;
    flex-shrink: 0;
    margin-top: -4px;
}

/* 展开后旋转180度 */
.product-dropdown.show .nav-arrow {
    transform: rotate(225deg);
    margin-top: 2px;
}

/* 默认隐藏移动端新增区域 */
.mobile-header-wrap,
.mobile-menu-mask,
.mobile-menu-panel {
    display: none;
}

/* 防止打开菜单后页面滚动 */
body.mobile-menu-open {
    overflow: hidden;
}

/* ===============================
   md 及以下
================================ */
@media (max-width: 991.98px) {

    /* 隐藏你原来的PC导航 */
    .container > .row.mt-4 {
        display: none;
    }

    /* 显示移动端头部 */
    .mobile-header-wrap {
        display: block;
        margin-top: 16px;
    }

    /* 移动端顶部栏 */
    .mobile-header-box {
        background: #fff;
        height: 56=3px;
        padding: 17px 16px 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
        border: none;              /* 去掉之前那条边框 */
        border-radius: 0;
        box-shadow: none;
    }

    /* logo */
    .mobile-logo img {
        height: 40px;
        width: auto;
        display: block;
    }

    /* 右侧区域 */
    .mobile-header-right {
        display: flex;
        align-items: center;
    }

    /* 语言按钮 */
    .mobile-language-dropdown {
        margin-right: 14px;
    }

    .mobile-language-btn {
        width: 76px;
        height: 46px;
        padding: 0 10px;
        border: 1px solid #d8d8d8;
        border-radius: 23px;
        background: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: none !important;
        outline: none !important;
    }

    .mobile-language-btn:hover,
    .mobile-language-btn:focus,
    .mobile-language-btn:active {
        background: #fff !important;
        border-color: #d8d8d8 !important;
        box-shadow: none !important;
    }

    .mobile-language-btn.dropdown-toggle::after {
        display: none;
    }

    .mobile-language-btn img {
        width: 24px;
        height: 24px;
        border-radius: 50%;
        object-fit: cover;
        display: block;
        margin-right: 8px;
    }

    .mobile-language-arrow {
        width: 8px;
        height: 8px;
        border-right: 2px solid #555;
        border-bottom: 2px solid #555;
        transform: rotate(45deg);
        margin-top: -3px;
    }

    .mobile-language-menu {
        min-width: 180px;
        margin-top: 10px;
        border: 1px solid #ececec;
        border-radius: 16px;
        padding: 8px 0;
        box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
    }

    .mobile-language-menu .dropdown-item {
        display: flex;
        align-items: center;
        font-size: 16px;
        padding: 12px 16px;
    }

    .mobile-language-menu .dropdown-item img {
        width: 22px;
        height: 22px;
        border-radius: 50%;
        object-fit: cover;
    }

    /* 汉堡按钮 */
    .mobile-menu-btn {
        width: 40px;
        height: 40px;
        border: 0;
        background: transparent;
        padding: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        outline: none !important;
        box-shadow: none !important;
    }

    .mobile-menu-btn span {
        display: block;
        width: 28px;
        height: 2px;
        background: #222;
        border-radius: 2px;
        margin: 3px 0;
    }

    /* 遮罩 */
    .mobile-menu-mask {
        display: block;
        position: fixed;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.35);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 1040;
    }

    .mobile-menu-mask.show {
        opacity: 1;
        visibility: visible;
    }

    /* 右侧抽屉 */
    .mobile-menu-panel {
        display: block;
        position: fixed;
        top: 0;
        right: 0;
        width: 82%;
        max-width: 360px;
        height: 100vh;
        background: #fff;
        transform: translateX(100%);
        transition: transform 0.35s ease;
        z-index: 1050;
        border-top-left-radius: 36px;
        box-shadow: -8px 0 28px rgba(0, 0, 0, 0.08);
        overflow-y: auto;
    }

    .mobile-menu-panel.show {
        transform: translateX(0);
    }

    .mobile-menu-close {
        position: absolute;
        top: 26px;
        right: 26px;
        width: 43px;
        height: 43px;
        border: 0;
        border-radius: 11px;
        padding-bottom: 6px;
        background: #ebe9fe;
        color: #111;
        font-size: 33px;
        line-height: 1;
        cursor: pointer;
        outline: none !important;
        box-shadow: none !important;
    }

    .mobile-menu-inner {
        padding: 110px 32px 40px;
    }

    .mobile-nav-link {
        display: flex;
        align-items: center;
        justify-content: space-between;
        font-size: 18px;
        font-weight: 420;
        color: #111;
        text-decoration: none !important;
        padding: 18px 0;
    }

    .mobile-nav-link:hover {
        color: #111;
        text-decoration: none;
    }

    .mobile-nav-group {
        width: 100%;
    }

.mobile-nav-group {
    width: 100%;
}

.mobile-submenu-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* 箭头 */
.mobile-nav-arrow {
    width: 8px;
    height: 8px;
    border-right: 2px solid #111;
    border-bottom: 2px solid #111;
    transform: rotate(45deg);
    transition: transform 0.25s ease;
    flex-shrink: 0;
    margin-right: 2px;
    margin-top: -4px;
}

/* 展开后箭头朝上 */
.mobile-submenu-toggle.open .mobile-nav-arrow {
    transform: rotate(-135deg);
    margin-top: 4px;
}

/* 子菜单默认隐藏 */
.mobile-submenu {
    display: none;
    padding: 6px 0 10px 0;
}

/* 展开时显示 */
.mobile-submenu.show {
    display: block;
}

/* 子菜单项 */
.mobile-submenu-link {
    display: block;
    color: #666;
    font-size: 16px;
    text-decoration: none !important;
    padding: 12px 0 12px 18px;
    line-height: 1.6;
}

.mobile-submenu-link:hover {
    color: #111;
    text-decoration: none;
}

    .mobile-submenu-link {
        display: block;
        color: #555;
        font-size: 16px;
        text-decoration: none !important;
        padding: 10px 0 10px 8px;
    }

    .mobile-submenu-link:hover {
        color: #111;
    }
}

/* ===============================
   lg 及以上隐藏移动端
================================ */
@media (min-width: 992px) {
    .mobile-header-wrap,
    .mobile-menu-mask,
    .mobile-menu-panel {
        display: none !important;
    }
}



/*banner*/

/* ================================
   Banner整体区域
================================ */
.hero-section {
    background-color: #f3f3f3; /* 背景浅灰色 */
    min-height: 750px;         /* 最小高度，接近效果图 */
    margin: 25px 0 0 0;
    display: flex;
    align-items: center;       /* 垂直居中 */
    overflow: hidden;
}

/* 左侧内容区域内边距 */
.hero-content {
    padding: 30px 0;
}

/* ================================
   Banner标题
================================ */
.hero-title {
    font-size: 69px;    /* 大标题字号 */
    line-height: 1.3;  /* 行高 */
    font-weight: 700;   /* 粗体 */
    color: #000;
    margin-bottom: 10px;
    letter-spacing: -1px;
    min-height: auto;
    overflow: visible;
}

/* 标题中紫色高亮文字 */
.hero-title .highlight {
    display: inline-block;
    background: linear-gradient(180deg, #a95cff 0%, #7e3ff2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    line-height: inherit;

}

/* ================================
   Banner描述文字
================================ */
.hero-desc {
    margin-top: 80px;
    font-size: 22px;
    line-height: 1.5;
    color: #7f8796;
    max-width: 620px;
}

/* ================================
   右侧图片区域
================================ */
.hero-right {
    text-align: right;
}

/* 右侧主图 */
.hero-banner-img {
    margin: 78px 0 0 0;
    display: inline-block;
}

/* ================================
   lg以下（平板横屏 / 小电脑）
   992px - 1199.98px
================================ */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .hero-section {min-height: 600px;}  /* 最小高度 */
  .hero-title {font-size: 50px; margin-bottom: 1px;}
  .hero-desc {font-size: 20px;}
}
/* ================================
   md设备768px
================================ */
@media (min-width: 768px) and (max-width: 991.98px) {
  .hero-title {font-size: 69px; margin-top: 50px; text-align:center;}
  .hero-desc {font-size: 20px; margin-top: 50px; text-align:center;}
  .hero-banner-img {margin: 78px 0 0 0;}
}
/* ================================
   sm设备
   576px - 767.98px
   字体再缩小一档
================================ */
@media (max-width: 767.98px) {
  .hero-title {font-size: 50px; margin-top: 30px; text-align:center;}
  .hero-desc {font-size: 16px; margin-top: 30px; text-align:center;}
  .hero-banner-img {margin: -15px 0 0 0; }
}



/* 合作伙伴滚动区域 */
.partner-marquee-section {
    background: #ffffff;
    padding: 50px 0;
    overflow: hidden;
}

/* 可视区域 */
.partner-marquee {
    width: 100%;
    overflow: hidden;
    position: relative;
    background: #ffffff;
}

/* 左右渐隐遮罩 */
.partner-marquee::before,
.partner-marquee::after {
    content: "";
    position: absolute;
    top: 0;
    z-index: 2;
    width: 199px;      /* 遮罩宽度，可自行调大调小 */
    height: 100%;
    pointer-events: none;
}

/* 左侧遮罩：白 -> 透明 */
.partner-marquee::before {
    left: 0;
    background: linear-gradient(to right, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
}

/* 右侧遮罩：透明 -> 白 */
.partner-marquee::after {
    right: 0;
    background: linear-gradient(to left, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
}

/* 滚动轨道 */
.partner-marquee-track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: partnerMarquee 39s linear infinite;
}

/* 单个 logo */
.partner-logo-item {
    flex: 0 0 auto;
    width: 220px;              /* 每个logo占位宽度 */
    padding: 0 39px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* logo 图片 */
.partner-logo-item img {
    max-width: 100%;
    max-height: 39px;
    width: auto;
    height: auto;
    display: block;
    object-fit: contain;

    /* 接近参考图的灰色弱化效果 */
    /* filter: grayscale(100%);
    opacity: 0.55;*/
    transition: all 0.3s ease;
}

/* 鼠标移入高亮 */
.partner-logo-item img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* 无缝滚动动画
   因为后面复制了一整组，所以移动50%即可无缝衔接 */
@keyframes partnerMarquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* 平板 */
@media (max-width: 991.98px) {
    .partner-marquee-section {
        padding: 28px 0;
    }

    .partner-logo-item {
        width: 180px;
        padding: 0 24px;
    }

    .partner-logo-item img {
        max-height: 38px;
    }

    .partner-marquee-track {
        animation-duration: 26s;
    }
}

/* 手机 */
@media (max-width: 575.98px) {
    .partner-logo-item {
        width: 150px;
        padding: 0 18px;
    }

    .partner-logo-item img {
        max-height: 32px;
    }

    .partner-marquee-track {
        animation-duration: 22s;
    }
}


/* =========================
   智能访问方式模块
========================= */
.smart-access-section {
    background: #ffffff;
    padding: 133px 0 103px;
}

/* =========================
   顶部区域
========================= */
.smart-access-top {
    margin-bottom: 18px;
}



.smart-access-title {
    margin: 0;
    font-size: 50px;
    line-height: 1.12;
    font-weight: 600;
    color: #111111;
    letter-spacing: -1.2px;
}

.smart-access-info {
    padding-left: 12px;
}

.smart-access-desc {
    margin: 0;
    max-width: 840px;
    font-size: 20px;
    line-height: 1.72;
    font-weight: 400;
    color: #70788a;
}

/* =========================
   上方三个功能点
========================= */
.smart-access-feature-list {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 46px;
    margin-bottom: 42px;
}

.smart-feature-item {
    flex: 1;
    max-width: 280px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}


.smart-feature-line {
    width: 200px;
    height: 2px;
    background: #b77cff;
    margin-top: 28px;
    margin-bottom: 38px;
    border-radius: 2px;
}

.smart-feature-icon-wrap {
    width: 100%;
    height: 78px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    align-items: center;
}

.smart-feature-icon {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    position: relative;
    padding-bottom: 22px;
}



.smart-feature-icon img {
    display: block;
    width: auto;
    height: auto;
    align-items: center;
    max-width: 100%;
    max-height: 100%;
}

/* 文字外层：统一高度 */
.smart-feature-text-wrap {
    width: 100%;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 6px;
}

.smart-feature-text {
    margin-top: 36px;
    font-size: 23px;
    line-height: 1;
    color: #111111;
}

/* =========================
   底部四张卡片
========================= */
.smart-card-row {
    margin-top: 6px;
    margin-left: -15px;
    margin-right: -15px;
}

.smart-card-row > [class*="col-"] {
    padding-left: 10px;
    padding-right: 10px;
}

.smart-card {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    background: transparent;
    height: auto;
}

.smart-card-bg {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 24px;
}

.smart-card-content {
    position: absolute;
    left: 26px;
    top: 24px;
    z-index: 2;
}

.smart-card-title {
    margin: 10px 0  0;
    font-size: 26px;
    line-height: 1.3;
    font-weight: 500;
    color: #111111;
}



/* =========================
  lg 调整
========================= */
@media (min-width: 992px) and (max-width: 1200px) {
    .smart-access-title {
        font-size: 58px;
    }
    .smart-access-top {
        margin-bottom: 50px;
    }
    
    .smart-access-title-wrap {
        margin-bottom: 26px;
    }

    .smart-access-info {
        padding-left: 0;
    }
    
    .smart-access-desc {
        font-size: 19px;
        margin-top: 20px;
    }

    .smart-access-feature-list {
        gap: 24px;
        margin-bottom: 66px;
    }

    .smart-feature-item::after {
        width: 160px;
    }

    .smart-card {
        min-height: 380px;
    }

    .smart-card-content {
        left: 36px;
        top: 36px;
    }
    .smart-feature-line {
    width: 260px;
    margin-top: 28px;
    }
    .smart-card-title {
        font-size: 39px;
    }
}

/* =========================
   md 屏幕
========================= */
@media (max-width: 991.98px) {
    .smart-access-section {
        padding: 90px 0 10px;
    }

    .smart-access-top {
        margin-bottom: 50px;
    }

    .smart-access-title-wrap {
        margin-bottom: 26px;
    }

    .smart-access-title {
        font-size: 46px;
        line-height: 1.25;
    }

    .smart-access-info {
        padding-left: 0;
    }

    .smart-access-desc {
        font-size: 17px;
        line-height: 1.8;
        margin-bottom: 10px;
        max-width: 100%;
    }

    .smart-access-feature-list {
        gap: 24px;
        margin-bottom: 50px;
    }



    .smart-feature-item {
        max-width: none;
    }

    .smart-feature-icon-wrap {
        max-width: none;
    }    

    .smart-feature-icon {
        height: 74px;
        margin-bottom: 12px;
    }

    .smart-feature-icon img {
        max-height: 42px;
    }

    .smart-feature-text-wrap {
        height: 46px;
    }

    .smart-feature-text {
        margin-top: 22px;
        font-size: 22px;
    }

    .smart-card {
        min-height: 330px;
    }

    .smart-card-content {
        left: 26px;
        top: 26px;
    }

    .smart-card-title {
        font-size: 22px;
    }
    .smart-feature-line {
        width: 150px;
        margin-top: 28px;
    }    
}

/* =========================
   sm / xs 屏幕
========================= */
@media (max-width: 576px) {
    .smart-access-section {
        padding: 70px 0 30px;
    }

    .smart-access-title {
        font-size: 36px;
        line-height: 1.3;
    }

    .smart-access-desc {
        font-size: 15px;
        line-height: 1.8;
        margin-bottom: 28px;
    }


    .smart-access-feature-list {
        gap: 20px;
    }
    
    .smart-feature-icon-wrap {
        height: 72px;
    }

    .smart-feature-icon {
        height: 72px;
    }

    .smart-feature-icon-img{
      padding: 0 10px;

    }

    .smart-feature-text {
        margin-top: 18px;
        font-size: 20px;
    }


    .smart-feature-text {
        font-size: 18px;
    }

        .smart-feature-line {
        width: 100px;
        margin-top: 24px;
    }

    .smart-card {
        min-height: 300px;
    }

    .smart-card-title {
        font-size: 39px;
        margin-top: 10px;
        padding: 6px 10px 0;
    }

}
    /*  产品区域 */
    
    .access-products-section {
    background: #ffffff;
    padding: 65px 0 90px;
}

.access-products-header {
    max-width: 980px;
    margin: 0 auto 60px;
}

.access-products-title {
    margin: 0;
    font-size: 50px;
    line-height: 1.18;
    font-weight: 600;
    color: #111111;
    letter-spacing: -1px;
}

.access-products-desc {
    margin: 33px auto 0;
    max-width: 980px;
    font-size: 20px;
    line-height: 1.5;
    color: #70788a;
}

.access-products-row {
    margin-left: -14px;
    margin-right: -14px;
}

.access-products-row > [class*="col-"] {
    padding-left: 14px;
    padding-right: 14px;
    margin-bottom: 0 !important;
}

.access-product-card {
    /*position: relative;*/
    overflow: hidden;
    border-radius: 26px;
    background: transparent;
    margin: auto;
    width: 100%;
    box-sizing: border-box;
}

.access-product-bg {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 26px;

}

.access-product-content {
    position: absolute;
    padding: 0 42px;
    margin-right: 8px;
    top: 40px;
    z-index: 2;
}

.access-product-name {
    margin: 13px 0 0;
    font-size: 36px;
    line-height: 1;
    font-weight: 500;
    color: #8f4dff;
    font-family: Arial, Helvetica, sans-serif;
}

.access-product-text {
    margin: 20px 0 0;
    font-size: 20px;
    line-height: 1.3;
    color: #222222;
    max-width: 100%;
}

@media (max-width: 1399.98px) {
    .access-products-title {
        font-size: 50px;
    }

    .access-products-desc {
        font-size: 20px;
    }

    .access-product-content {
        padding: 0 42px;
        margin-right: 8px;
        top: 40px;
    }

    .access-product-name {
        font-size: 36px;
    }

    .access-product-text {
        margin-top: 20px;
        font-size: 18px;
    }
}

@media (max-width: 1199.98px) {
    .access-products-section {
        padding: 65px 0 80px;
    }

    .access-products-header {
        margin-bottom: 58px;
    }

    .access-products-title {
        font-size: 58px;
    }

    .access-products-desc {
        margin-top: 24px;
        font-size: 20px;
    }

    .access-product-content {
        padding: 0 28px;
        margin-right: 8px;
        top: 16px;

    }

    .access-product-name {
        font-size: 28px;
    }

    .access-product-text {
        font-size: 16px;
        margin-top: 10px;
        line-height: 1.3;
    }
}

@media (max-width: 991.98px) {
    .access-products-section {
        padding: 65px 0 64px;
    }

    .access-products-header {
        margin-bottom: 44px;
    }

    .access-products-title {
        font-size: 46px;
        line-height: 1.24;
    }

    .access-products-desc {
        font-size: 17px;
        line-height: 1.5;
        margin-top: 18px;
    }

    .access-products-row > [class*="col-"] {
        margin-bottom: 22px !important;
    }

    .access-product-content {
        padding: 0 32px;
        margin-right: 8px;
        top: 24px;

    }

    .access-product-name {
        font-size: 30px;

    }

    .access-product-text {
        font-size: 17px;
        margin-top: 16px;
    }
}

@media (max-width: 767.98px) {
    .access-products-section {
        padding: 65px 0 46px;
    }

    .access-products-header {
        margin-bottom: 34px;
    }

    .access-products-title {
        font-size: 35px;
        line-height: 1.3;
    }

    .access-products-desc {
        font-size: 17px;
        line-height: 1.4;
    }

    .access-product-card {
        padding-left: 10px;
        padding-right: 10px;
    }


    
    .access-product-content {
        padding: 0 43px;
        margin-right: 25px;
        top: 20px;

    }

    .access-product-name {
        font-size: 36px;
        margin-top: 50px;

    }

    .access-product-text {
        font-size: 20px;
        line-height: 1.65;
        margin-top: 14px;

    }

}


@media (max-width: 576px){

    .access-product-name {
        font-size: 36px;
        margin-top: 30px;
        line-height: 0.5;

    }

    

}

    /* PFI V1 区域 */
    
.pfi-beta-section {
    background: #ffffff;
    padding: 100px 0 120px;
}

.pfi-beta-header {
    margin-bottom: 64px;
}

.pfi-beta-title {
    margin-bottom: 70px;
    font-size: 56px;
    line-height: 1.12;
    font-weight: 600;
    color: #111111;
    font-family: Arial, Helvetica, sans-serif;
}

.pfi-beta-tabs {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-top: 52px;
    font-family: Arial, Helvetica, sans-serif;
}

.pfi-beta-tab-btn {
    min-width: 300px;
    height: 72px;
    padding: 0 42px;
    border-radius: 50px;
    border: 1.5px solid #8e99a7;
    background: transparent;
    color: #636d79;
    font-size: 24px;
    line-height: 1;
    outline: none !important;
    box-shadow: none !important;
    transition: all 0.25s ease;
    cursor: pointer;
}

.pfi-beta-tab-btn.active {
    border-color: #b77cff;
    color: #8f4dff;
    font-weight: 500;
}

.pfi-beta-content-wrap {
    position: relative;
}

.pfi-beta-pane {
    display: none;
}

.pfi-beta-pane.active {
    display: block;
}

/* Corridor */
.pfi-beta-corridor-intro {
    text-align: center;
    font-size: 20px;
    line-height: 1.7;
    color: #222222;
    margin-bottom: 58px;
}

.pfi-corridor-row {
    margin-top: 34px;
}

/* 卡片之间间距更紧凑 */
.pfi-corridor-side-row > .col-md-6 {
    margin-bottom: 20px;
}

.pfi-corridor-row > [class*="col-"] {
    padding-left: 10px;
    padding-right: 10px;
}

.corridor-main-card {
    background: linear-gradient(180deg, #9b5cff 0%, #7a3df0 100%);
    border-radius: 16px;
    min-height: 290px;
    padding: 26px 28px 28px 28px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

 /*.corridor-main-bg {
   position: absolute;
    inset: 0;
    background: linear-gradient(180deg, #9b5cff 0%, #7a3df0 100%);


}*/

.corridor-main-image {
    margin: 50px auto 75px;
    width: auto;
    height: auto;
    display: block;

}

.corridor-main-content {
    left: 36px;
    right: 36px;
    bottom: 38px;
}

.corridor-main-title {
    font-size: 26px;
    line-height: 1.25;
    font-weight: 500;
    color: #ffffff;
}

.corridor-main-text {
    margin: 6px 0 0;
    font-size: 18px;
    line-height: 1.3;
    color: rgba(255,255,255,0.88);
}

.pfi-corridor-side-row {
    margin-left: -10px;
    margin-right: -10px;
}

.pfi-corridor-side-row > [class*="col-"] {
    padding-left: 10px;
    padding-right: 10px;
}

.corridor-info-card {
    background: #f5f6f8;
    border-radius: 16px;
    min-height: 290px;
    padding: 26px 28px 28px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.corridor-info-top {
    display: block;
    height: auto;
}

.corridor-info-copy {
    flex: 1;
    padding-top: 0;
    max-width: 100%;
}

.corridor-info-title {
    margin: 0;
    font-size: 26px;
    line-height: 1.3;
    font-weight: 500;
    color: #111111;
}

.corridor-info-text {
    margin: 6px 0 0;
    font-size: 18px;
    line-height: 1.3;
    color: #70788a;
}

.corridor-info-icon {
    width: auto;
    height: auto;
    display: block;
    margin-left: auto;   /* 图标靠右 */
}

/* PFI V1 */
.pfi-v1-row {
    min-height: 600px;
}

.pfi-v1-copy {
    padding-left: 42px;
}

.pfi-v1-subtitle {
    margin: 0 0 44px;
    font-size: 30px;
    line-height: 1.35;
    color: #8f4dff;
    font-weight: 500;
}

.pfi-v1-list {
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    list-style: none;
}

.pfi-v1-list li {

    position: relative;
    padding-left: 33px;
    margin-bottom: 62px;
    font-size: 20px;
    line-height: 1.5;
    color: #222222;
}

.pfi-v1-list li:last-child {
    margin-bottom: 0;
}

.pfi-v1-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 15px;
    height: 15px;
    border: 4px solid #8f4dff;
    border-radius: 50%;
    background: #ffffff;
    box-sizing: border-box;
}

.pfi-v1-image-wrap {
    text-align: center;
}

.pfi-v1-image {
    max-width: 100%;
    width: auto;
    height: auto;
    display: inline-block;
    margin-left: 30px;
}

@media (max-width: 1399.98px) {

    .pfi-beta-tab-btn {
        min-width: 290px;
        height: 72px;
        font-size: 22px;
    }

}

@media (max-width: 1199.98px) {
    .pfi-beta-section {
        padding: 100px 0 80px;
    }

    .pfi-beta-title {
        font-size: 64px;
    }

    .pfi-beta-tabs {
        gap: 24px;
        margin-top: 42px;
    }

    .pfi-beta-tab-btn {
        min-width: 250px;
        height: 66px;
        font-size: 20px;
    }

    .pfi-beta-corridor-intro {
        font-size: 20px;
        margin-bottom: 44px;
    }

    .corridor-main-card {
        padding: 22px 22px 24px;
    }

    .corridor-main-image {
        width: 82%;
        margin-bottom: 75px;
        margin-top: 62px;
    }

    .corridor-main-content {
        left: 28px;
        right: 28px;
        bottom: 34px;
    }

    .corridor-main-title {
        font-size: 22px;
    }

    .corridor-main-text {
        font-size: 16px;
    }

    .corridor-info-card {
        padding: 22px 22px 24px;
        min-height: 160px;
    }

    .corridor-info-title {
        font-size: 22px;
    }

    .corridor-info-text {
        font-size: 16px;
    }

    .corridor-info-icon {
        width: 50%;
    }

    .pfi-v1-row {
        min-height: auto;
    }

    .pfi-v1-copy {
        padding-left: 10px;
    }

    .pfi-v1-subtitle {
        font-size: 24px;
        margin-bottom: 34px;
    }

    .pfi-v1-list li {
        font-size: 18px;
        margin-bottom: 44px;
    }
        .pfi-v1-image {
        width: 100%;
        margin-left: 6px;
    }
}

@media (max-width: 991.98px) {
    .pfi-beta-section {
        padding: 82px 0 64px;
    }

    .pfi-beta-title {
        font-size: 52px;
    }

    .pfi-beta-tabs {

        gap: 16px;
        margin-top: 34px;
    }

    .pfi-beta-tab-btn {

        max-width: 100px;
    }

    .pfi-beta-corridor-intro {
        font-size: 18px;
        margin-bottom: 34px;
    }

    .corridor-main-card {
        height: auto;
    }

    .corridor-main-title {
        font-size: 26px;
    }

    .corridor-main-text {
        font-size: 18px;
    }    

    .corridor-main-image {
        width: auto;
        height: auto;
        display: block;

    }

    .corridor-main-text {
        margin-bottom: 20px;
}

    .corridor-info-card {
        min-height: 230px;
    }

   /* .corridor-info-copy {
        max-width: 65%;
    }*/

    .corridor-info-title {
        font-size: 26px;
    }

    .corridor-info-text {
        font-size: 18px;
    }

    .corridor-info-icon {
        width: 100px;
    }

    .pfi-v1-copy {
        padding-left: 0;
        margin-bottom: 100px;

    }

    .pfi-v1-subtitle {
        font-size: 22px;
        text-align: center;
        margin: 40px auto 90px;
    }

    .pfi-v1-list li {
            width: calc(50% - 20px);
        font-size: 17px;
        margin: 30px 0 30px;
        padding-left: 34px;
        align-items: center; 
    }

    .pfi-v1-list li::before {
        width: 16px;
        height: 16px;
        border-width: 4px;
        top: 7px;
        
    }

    .pfi-v1-image {
        width: 100%;
        margin-left: 0;
    }
}

@media (max-width: 767.98px) {
    .pfi-beta-section {
        padding: 66px 0 46px;
    }

    .pfi-beta-header {
    margin-bottom: 45px;
}

    .pfi-beta-title {
        font-size: 42px;
            margin-bottom: 50px;

    }
    
    .pfi-beta-tabs {

        gap: 12px;
        margin-top: 34px;
    }    

    .pfi-beta-tab-btn {
        min-width: 190px;
        height: 66px;
        font-size: 17px;
    }

    .pfi-beta-corridor-intro {
        font-size: 17px;
        line-height: 1.8;
        margin-bottom: 43px;
    }

    .corridor-main-card {
        min-height: 535px;
    }

    .corridor-main-content {
        left: 24px;
        right: 24px;
        bottom: 24px;
    }

    .corridor-main-image {
        margin: 30px auto 45px;
        width: auto;
        height: auto;
        display: block;
    }

    .corridor-info-card {
        min-height: auto;
        padding: 20px 18px 22px;
    }

    .corridor-info-top {
        gap: 12px;
    }

    .corridor-info-copy {
        padding-bottom: 20px;
    }

    .corridor-info-icon {
    width: 150px;
}

    .pfi-v1-subtitle {
        font-size: 20px;
        margin: 24px auto 48px;
    }

    .pfi-v1-list li {
        font-size: 16px;
        line-height: 1.75;
        align-items: center; 
    }
}

/* 底部 */
.footer-cta-section {
    background: #000000;
}

/* =========================
   上半部分紫色区域
========================= */
.footer-cta-main {
    background: linear-gradient(180deg, #8f4dff 0%, #8c4af8 100%);
    min-height: 590px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
}

.footer-cta-content {
    padding: 40px 0;
}

.footer-cta-title {
    margin: 0;
    font-size: 60px;
    line-height: 1.1;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 1px;
    font-family: Arial, Helvetica, sans-serif;
}

.footer-cta-subtitle {
    margin: 36px 0 0;
    font-size: 39px;
    line-height: 1.4;
    font-weight: 500;
    color: #ffffff;
    letter-spacing: 1px;
}

.footer-cta-line {
    display: inline-block;
    width: 64px;
    height: 2px;
    background: rgba(255, 255, 255, 0.9);
    margin-top: 86px;
}

/* =========================
   下半部分黑色footer
========================= */
.site-footer {
    background: #000000;
    padding: 34px 0;
}

.footer-row {
    min-height: 92px;
}

.footer-logo {
    display: inline-flex;

}

.footer-logo img {
    display: block;
}

.footer-links {
    display: flex;
    gap: 39px;
    justify-content: center !important;
    margin-top: 12px;
    margin-left: 146px;
}

.footer-link {
    font-size: 15px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.88);
    text-decoration: none !important;
    transition: all 0.25s ease;
}

.footer-link:hover {
    color: #ffffff;
}

.footer-copyright {
    text-align: right;
    font-size: 15px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.72);
    margin-top: 12px;
}

/* =========================
   xl / lg
========================= */
@media (max-width: 1399.98px) {
    .footer-cta-main {
        min-height: 540px;
    }

    .footer-cta-title {
        font-size: 60px;
    }

    .footer-cta-subtitle {
        font-size: 40px;
    }
}

@media (max-width: 1199.98px) {
    .footer-cta-main {
        min-height: 500px;
    }

    .footer-cta-title {
        font-size: 54px;
    }

    .footer-cta-subtitle {
        font-size: 30px;
        margin-top: 28px;
    }

    .footer-cta-line {
        margin-top: 68px;
    }

    .footer-links {
        gap: 48px;
    }

    .footer-link,
    .footer-copyright {
        font-size: 15px;
    }
}

/* =========================
   md
========================= */
@media (max-width: 991.98px) {
    .footer-cta-main {
        min-height: 420px;
    }

    .footer-cta-title {
        font-size: 46px;
    }

    .footer-cta-subtitle {
        font-size: 23px;
        line-height: 1.5;
        margin-top: 24px;
    }

    .footer-cta-line {
        margin-top: 54px;
    }

    .site-footer {
        padding: 26px 0;
    }

    .footer-row {
        margin-left: 3px;
        margin-top: 15px;
        margin-bottom: 15px;
    }

    .footer-links {
        gap: 34px;
        right: 16px;
        justify-content: right !important;

    }

    .footer-copyright {

        text-align: right;
        margin-top: -10px;

    }
}

/* =========================
   sm / xs
========================= */
@media (max-width: 767.98px) {
    .footer-cta-main {
        min-height: 360px;
        padding: 40px 0;
    }

    .footer-cta-title {
        font-size: 28px;
    }

    .footer-cta-subtitle {
        font-size: 18px;
        line-height: 1.6;
        margin-top: 20px;
    }

    .footer-cta-line {
        width: 52px;
        margin-top: 42px;
    }

    .site-footer {
        padding: 22px 0 26px;
    }

    .footer-links {
        right: 14px;
        display: flex;
        gap: 23px;
        justify-content: right !important;
        margin-bottom: 10px;

    }

    .footer-link{
        font-size: 14px;
    }


    .footer-copyright {
        font-size: 14px;
        text-align: right;
        margin-top: -5px;
    }
   
}
html,
body {
    overflow-x: hidden;
}