<style>
    :root {
      --primary-color: #2563eb;
      --secondary-color: #1e40af;
      --accent-color: #3b82f6;
      --text-color: #333;
      --light-text: #6b7280;
      --bg-light: #f9fafb;
      --white: #ffffff;
      --dark-bg: #111827;
    }

    /* 基础样式 */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Inter', sans-serif;
      color: var(--text-color);
      line-height: 1.6;
      overflow-x: hidden;
      /*padding-top: var(--header-height, 0);*/
      /* 防止滚动跳动 */
      scroll-padding-top: var(--header-height, 0);
    }

    .container {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }

    /* 首屏容器 */
    .first-screen {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      position: relative;
      /*background-color: var(--bg-light);*/
      overflow: hidden;
    }
    .first-screen > .bg-video {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      min-width: 100%;
      min-height: 100%;
      width: auto;
      height: auto;
      z-index: -1;
      object-fit: cover;
    }
    /* 视频遮罩层 */
    .video-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(to bottom,
      rgba(0,0,0,0.7) 0%,
      rgba(0,0,0,0.4) 50%,
      rgba(0,0,0,0.3) 100%);
      z-index: 0;
    }
    /* 确保内容在视频上方 */
    .header, .hero {
      position: relative;
      z-index: 1;
    }

    /* Hero部分优化 */
    .hero {
      flex: 1;
      display: flex;
      align-items: center;
      padding: 80px 0 0;
      z-index: 1;
    }

    .hero .container {
      display: flex;
      justify-content: center;
      align-items: center;
      width: 100%;
      height: 100%;
    }

    .hero-content.centered {
      text-align: center;
      max-width: 800px;
      padding: 0 20px;
      color: #fff; /* 文字颜色改为白色 */
    }
    .hero-content h1 {
      color: #fff; /* 标题白色 */
      text-align: center;
      text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3); /* 添加文字阴影提高可读性 */
    }

    .hero-content .subtitle {
      color: #fff; /* 标题白色 */
      text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    }
    hero-logo {
      margin-bottom: 30px;
    }

    .hero-logo img {
      height: auto;
      width: 200px;
    }
    .hero-content h1 {
      /*font-size: clamp(36px, 5vw, 60px);*/
      font-size: 50px;
      font-weight: 800;
      margin-bottom: 20px;
      line-height: 1.2;
    }

    .hero-content .subtitle {
      font-size: clamp(16px, 2vw, 20px);
      color: var(--light-text);
      margin-bottom: 30px;
    }

    .hero-buttons {
      display: flex;
      gap: 15px;
      flex-wrap: wrap;
      justify-content: center;
    }

    /* 导航栏优化 */
    .header {
      width: 100%;
      padding: 20px 0;
      /*background-color: var(--white);*/
      transition: all 0.4s ease;
      z-index: 1000;
      will-change: transform;
      /* 平滑过渡效果 */
    }

    .header .container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      position: relative;
    }
    .logo {
      flex: 0 0 auto;
    }
    .logo img {
      height: 80px;
      width: auto;
      margin-left: -6vw;
    }
    .main-nav {
      flex: 1;
      display: flex;
      justify-content: center;
      margin-right: 4vw;
    }
    .main-nav ul {
      display: flex;
      list-style: none;
      gap: 20px;
      align-items: center;
    }
    .auth-buttons {
      flex: 0 0 auto;
      display: flex;
      gap: 10px;
      margin-left: -1.5vw;
    }
    /* 基础按钮样式 */
    .auth-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 8px 20px;
      border-radius: 4px;
      font-size: 14px;
      font-weight: 500;
      text-decoration: none;
      cursor: pointer;
      transition: all 0.2s ease;
      min-width: 80px;
      text-align: center;
    }

    /* 登录按钮 */
    .login-btn {
      color: #ffffff;
      background-color: transparent;
      border: 1px solid rgba(255, 255, 255, 0.3);
    }

    .login-btn:hover {
      background-color: rgba(255, 255, 255, 0.1);
      border-color: rgba(255, 255, 255, 0.5);
    }

    /* 注册按钮 */
    .register-btn {
      color: #ffffff;
      width: 5vw;
      background-color: #3b82f6;
      border: 1px solid #3b82f6;
    }

    .register-btn:hover {
      background-color: #2563eb;
      transform: translateY(-1px);
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    }
    .main-nav ul li a {
      text-decoration: none;
      /*color: var(--text-color);*/
      color: #ffffff;
      font-weight: 500;
      font-size: 15px;
      transition: color 0.3s ease;
      white-space: nowrap;
    }

    .main-nav ul li a:hover {
      color: var(--primary-color);
    }

    .mobile-menu-btn {
      display: none;
      font-size: 24px;
      cursor: pointer;
      color: var(--text-color);
    }

    /* 固定导航栏样式 */
    .header.fixed {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      /* 添加半透明背景 */
      background: rgba(0,0,0,0.95);
      /* 添加细微阴影 */
      box-shadow: 0 2px 15px rgba(0,0,0,0.1);
      /* 硬件加速 */
      transform: translateZ(0);
    }

    @keyframes slideDown {
      from {
        transform: translateY(-100%);
      }
      to {
        transform: translateY(0);
      }
    }

    /* 响应式设计 */
    @media (max-width: 992px) {
      .hero .container {
        flex-direction: column;
        text-align: center;
      }

      .hero-content {
        padding-right: 0;
        margin-bottom: 40px;
      }

      .hero-buttons {
        justify-content: center;
      }

      .main-nav ul {
        gap: 15px;
      }
    }

    @media (max-width: 768px) {
      .first-screen {
        min-height: auto;
        padding-bottom: 80px;
      }

      .hero {
        padding-top: 40px;
      }

      .main-nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--white);
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
        transition: left 0.3s ease;
        z-index: 1001;
        padding: 80px 20px 20px;
      }

      .main-nav.active {
        left: 0;
      }

      .main-nav ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
      }

      .mobile-menu-btn {
        display: block;
        z-index: 1002;
      }

      .header.fixed .mobile-menu-btn {
        position: fixed;
        top: 20px;
        right: 20px;
      }
    }

    @media (max-width: 576px) {
      .hero-content h1 {
        font-size: 32px;
      }

      .hero-buttons {
        flex-direction: column;
        gap: 10px;
      }

      .btn {
        width: 100%;
        text-align: center;
      }
      .hero-logo {
        margin-bottom: 20px;
      }

      .hero-logo img {
        width: 50px;
      }
    }

    /* Services Section */
    /* 基础样式 */
    .services {
      padding: 80px 0;
      background-color: #f9fafb;
      width: 100vw; /* 全视口宽度 */
      position: relative;
      left: 50%;
      right: 50%;
      margin-left: -50vw;
      margin-right: -50vw;
    }

    .container {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }

    /* 标题区域优化 */
    .section-header {
      text-align: center;
      margin-bottom: 60px;
    }

    .section-subtitle {
      display: block;
        color: rgba(17,29,118,1);
      font-size: 40px;
      font-weight: 350;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 20px; /* 增大间距 */
    }

    .section-title2 {
      /*color: #2563eb; !* 蓝色标题 *!*/
        color: rgba(77,77,77,1);
      font-size: 22px;
      font-weight: 400;
      line-height: 1.6;
      margin: 0 auto;
      /*max-width: 900px;*/
    }

    /* 服务卡片网格 */
    /* 数据统计网格 */
    .stats-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 40px;
      text-align: center;
    }

    .stat-item {
      padding: 20px;
    }

    .stat-number {
      /*color: #2563eb;*/
        color: rgba(17,29,118,1);
      font-size: 42px;
      font-weight: 350;
      margin-bottom: 10px;
      line-height: 1.2;
    }

    .stat-label {
      /*color: #333;*/
        color: rgba(17,29,118,1);
      font-size: 18px;
      line-height: 1.4;
      margin: 0;
    }
    .stat-label1 {
      /*color: #333;*/
        color: rgba(17,29,118,1);
      font-size: 18px;
      line-height: 1.4;
      margin-top: 25px;
    }

    /* 响应式设计 */
    @media (max-width: 992px) {
      .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
      }
    }

    @media (max-width: 576px) {
      .stats-grid {
        grid-template-columns: 1fr;
        gap: 25px;
      }

      .section-title {
        font-size: 26px;
      }

      .stat-number {
        font-size: 36px;
      }
    }
    .services-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr); /* 固定4列 */
      gap: 30px;
    }

    /* 卡片样式优化 */
    .service-card {
      background: white;
      border-radius: 8px;
      padding: 40px 20px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center; /* 内容居中 */
    }

    .service-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }

    .service-icon {
      width: 70px;
      height: 70px;
      margin: 0 auto 20px;
      background: rgba(37, 99, 235, 0.1);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #2563eb;
      font-size: 28px;
    }

    .service-number {
      color: #2563eb; /* 蓝色数字 */
      font-size: 36px;
      margin-bottom: 15px;
      font-weight: 700;
    }

    .service-description {
      color: #4b5563;
      font-size: 18px;
      line-height: 1.6;
      margin: 0;
    }

    /* 响应式设计 */
    @media (max-width: 1200px) {
      .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        padding: 0 40px; /* 边缘留白 */
      }
    }
    @media (max-width: 768px) {
      .section-section {
        padding: 60px 0;
      }
      .section-subtitle{
        display: block;
        color: #2563eb;
        font-size: 30px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 20px;
      }
      .section-title {
        font-size: 20px;
      }

      .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
      }
    }

    @media (max-width: 480px) {
      .services-grid {
        grid-template-columns: 1fr;
      }

      .service-card {
        padding: 30px 15px;
      }
    }
    /*新增About Section模块*/
.sales-platform-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.sales-platform-title {
    text-align: center;
    font-size: 40px;
    font-weight: 400;
    color: rgba(17,29,118,1);
    margin-bottom: 50px;
    position: relative;
}

.sales-carousel-container {
    position: relative;
    margin-bottom: 60px;
}

.sales-carousel {
    display: flex;
    overflow: hidden;
    width: 100%;
    position: relative;
}

.sales-carousel-inner {
    display: flex;
    transition: transform 0.5s ease;
    width: 100%;
}

.sales-carousel-item {
    flex: 0 0 calc(100% / 3);
    padding: 0 15px;
    box-sizing: border-box;
}

.sales-service-card {
    background-color: white;
    border-radius: 12px;
    border: 2px solid rgba(17, 29, 118, 1);
    padding: 30px;
    height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sales-service-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 30px;
    color: #1e40af;
    font-size: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}
.sales-service-icon img{
    width: fit-content;
}

.sales-service-icon-large {
    width: 120px;
    height: 120px;
    margin-bottom: 30px;
    color: #1e40af;
    font-size: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sales-service-icon-large img{
    width: 140px;
    height: 140px;
}

.sales-service-title-main {
    font-size: 22px;
    font-weight: bold;
    color: #1e40af;
    margin-top: 100px;
}

.sales-service-title {
    font-size: 22px;
    font-weight: bold;
    color: #1e40af;
    margin-top: 120px;
}

.sales-language-switch {
    display: flex;
    gap: 15px;
    margin-top: auto;
}

.sales-language-btn {
    padding: 8px 20px;
    background-color: #f1f5f9;
    color: #1e40af;
    border: 1px solid rgba(17,29,118,1);
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
}

.sales-language-btn:hover {
    background-color: #1e40af;
    color: white;
}

.sales-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 10;
    border: none;
    color: #1e40af;
    font-size: 20px;
    transition: all 0.3s ease;
}

.sales-carousel-btn:hover {
    background-color: #1e40af;
    color: white;
    transform: translateY(-50%) scale(1.1);
}
.arrow-icon {
    width: 20px;
    height: 20px;
}
.sales-carousel-prev {
    left: -25px;
}

.sales-carousel-next {
    right: -25px;
}

.sales-map-container {
    width: 100%;
    height: 800px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -500px;
}

.sales-map-container img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

@media (max-width: 992px) {
    .sales-carousel-item {
        flex: 0 0 50%;
    }

    .sales-service-icon {
        width: 70px;
        height: 70px;
        font-size: 36px;
        margin-bottom: 25px;
    }

    .sales-service-title {
        font-size: 20px;
        margin-bottom: 25px;
    }
}

@media (max-width: 768px) {
    .sales-carousel-item {
        flex: 0 0 100%;
    }

    .sales-platform-title {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .sales-carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .sales-carousel-prev {
        left: -20px;
    }

    .sales-carousel-next {
        right: -20px;
    }

    .sales-map-container {
        height: 300px;
    }
}
    /* About Section */
    /* 基础样式 */
    .platforms-section {
      width: 100%;
      padding: 60px 0;
      background-color: #f8fafc;
    }

    .main-title {
      text-align: center;
      /*color: #1e40af;*/
      font-size: 36px;
      font-weight: 700;
      margin-bottom: 50px;
      padding: 0 20px;
    }

    /* 双栏容器 */
    .platforms-container {
      display: flex;
      width: 100%;
      max-width: 100%;
      margin: 0 auto;
      min-height: 500px; /* 设置最小高度 */
    }

    .platforms-list,
    .platforms-image {
      flex: 1;
      width: 50%;
    }

    /* 平台列表样式 */
    .platforms-list {
      padding: 0 40px;
      background-color: #ebf4fd;
      padding: 0 40px;
      display: flex;
      flex-direction: column;
      justify-content: center; /* 垂直居中内容 */
    }

    .platform-row {
      display: flex;
      margin-bottom: 30px;
    }

    .platform-item {
      flex: 1;
      display: flex;
      padding: 20px;
      margin: 0 10px;
      border-bottom: 1px solid #e2e8f0;
    }

    .platform-number {
      display: inline-block;
      min-width: 32px;
      height: 32px;
      background-color: #1e40af;
      color: white;
      border-radius: 50%;
      text-align: center;
      line-height: 32px;
      font-weight: bold;
      margin-right: 20px;
      flex-shrink: 0;
    }

    .platform-info {
      flex: 1;
    }

    .platform-name {
      display: flex;
      align-items: center;
      white-space: nowrap;
      gap: 8px;
    }

    /* 平台名称文字部分 */
    .platform-name-text {
      flex-shrink: 0;
      font-size: 15px;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    /* logo容器 */
    .platform-logo-container {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    /* logo图片样式 */
    .platform-logo {
      width: auto;
      height: 24px;
      max-width: 100%;
      object-fit: contain;
    }

    .platform-links p {
      margin: 8px 0;
      color: #4b5563;
      font-size: 15px;
      line-height: 1.5;
    }

    .lang-label {
      display: inline-block;
      width: 60px;
      color: #64748b;
      font-weight: 500;
    }

    .platform-links a {
      color: #3b82f6;
      text-decoration: none;
      transition: color 0.2s;
    }

    .platform-links a:hover {
      color: #2563eb;
      text-decoration: underline;
    }

    /* 图片区域 */
    .platforms-image {
      flex: 1;
      width: 50%;
      padding: 0 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
    }

    .platforms-image img {
      width: 100%;
      height: 100%;
      object-fit: cover; /* 保持图片比例并填充容器 */
      border-radius: 8px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
      position: absolute;
      top: 0;
      left: 0;
    }
    .platform-logo {
      /*width: 140px;*/
      /*height: 34px;*/
      vertical-align: middle;
      margin-left: 8px;
      display: inline-block;
    }
    .platform-logo1{
      width: 100px;
      height: 34px;
      vertical-align: middle;
      margin-left: 8px;
      display: inline-block;
    }

    /* 响应式设计 */
    @media (max-width: 1024px) {
      .platforms-container {
        flex-direction: column;
        min-height: auto;
      }

      .platforms-list,
      .platforms-image {
        width: 100%;
        height: auto;
        padding: 40px 20px;
      }

      .platforms-image {
        height: 400px; /* 移动端固定高度 */
        order: -1; /* 图片在上 */
      }
      .platforms-image img {
        position: static;
        height: 100%;
      }
    }

    @media (max-width: 768px) {
      .main-title {
        font-size: 28px;
      }

      .platform-row {
        flex-direction: column;
        margin-bottom: 0;
      }

      .platform-item {
        margin: 0 0 20px 60px;
        padding: 15px 0;
        /*margin-left: 60px;*/
      }

      .platforms-list {
        padding: 0 20px;
      }

      .platforms-image {
        height: 350px;
        padding: 0 20px 40px;
      }
      .platform-name {
        font-size: 18px; /* 适当减小字体大小 */
      }

      .platform-logo {
        width: 45px;
        height: 45px;
      }
    }

    @media (max-width: 480px) {
      .main-title {
        font-size: 24px;
        margin-bottom: 30px;
      }

      .platform-name {
        font-size: 18px;
      }

      .platform-links p {
        font-size: 14px;
      }

      .lang-label {
        width: 50px;
      }
    }

    /* Portfolio Section */
    /* 基础样式 - 使用唯一类名前缀 */
    /* 基础样式 */
.join-process {
    padding: 5rem 0;
    background: #f9fafb;
}

.join-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* 标题样式 */
.join-header {
    text-align: center;
    margin-bottom: 4rem;
}

.join-subtitle {
    display: block;
    /*color: #2563eb;*/
    color: rgba(77,77,77,1);
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.join-title {
    /*color: #111827;*/
    color: rgba(17,29,118,1);
    font-size: 40px;
    font-weight: 350;
    margin: 0;
}
.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.process-step {
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}

/* 水平分隔线 */
/*.process-step::before {*/
/*    content: "";*/
/*    position: absolute;*/
/*    bottom: -15px;*/
/*    left: 50%;*/
/*    transform: translateX(-50%);*/
/*    width: 80%;*/
/*    height: 1px;*/
/*    background-color: #e5e7eb;*/
/*}*/
.process-step::before {
    content: "";
    position: absolute;
    top: 30%;
    left: 95%;
    /*transform: translateX(-50%);*/
    width: 40%;
    height: 2px;
    background-color: rgba(17,29,118,1);
}

/* 移除最后一行步骤的分隔线 */
.process-step:nth-child(4)::before,
.process-step:nth-child(5)::before{

}
.process-step:nth-child(3)::before,
.process-step:nth-child(6)::before {
    display: none;
}

/*!* 垂直分隔线 *!*/
/*.process-step:not(:nth-child(3n))::after {*/
/*    content: "";*/
/*    position: absolute;*/
/*    top: 50%;*/
/*    right: -15px;*/
/*    transform: translateY(-50%);*/
/*    width: 1px;*/
/*    height: 60%;*/
/*    background-color: #e5e7eb;*/
/*}*/

.step-icon-container {
    margin-bottom: 20px;
    position: relative;
}

.icon-circle {
    width: 100px;
    height: 100px;
    background-color: #f3f4f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    /*margin: 0 auto 15px;*/
    /*margin-left: 40px;*/
}

.icon-circle i {
    color: rgba(17,29,118,1);
    font-size: 32px;
}

.step-num {
    width: 36px;
    height: 36px;
    /*background-color: #1e40af;*/
    background-color: rgba(17,29,118,1);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
    position: absolute;
    top: 32px;
    right: -20px;
    z-index: 2;
}

.step-title {
    color: rgba(17,29,118,1);
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 12px;
}

.step-content p {
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 8px;
    font-size: 16px;
}

.step-link, .merchant-center {
    color: #1e40af !important;
    text-decoration: none;
    word-break: break-all;
    display: inline-block;
    margin-top: 5px;
    font-weight: 500;
}

.step-link:hover, .merchant-center:hover {
    text-decoration: underline;
}

/* 响应式设计 */
@media (max-width: 992px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* 调整分隔线 */
    .process-step:nth-child(2n)::after {
        display: none;
    }

    .process-step:nth-child(odd)::before {
        display: none;
    }

    .process-step:nth-child(even)::before {
        display: block;
    }
}

@media (max-width: 768px) {
    .process-grid {
        grid-template-columns: 1fr;
    }

    .process-step {
        padding: 30px 20px;
    }

    /* 移除所有分隔线 */
    .process-step::before,
    .process-step::after {
        display: none !important;
    }

    /* 添加底部边框 */
    .process-step:not(:last-child) {
        border-bottom: 1px solid #e5e7eb;
        padding-bottom: 40px;
    }
}
/*新增全球商机模块的样式*/
.global-container{
    max-width: 1600px !important;
    margin: 0 auto !important;
    padding: 50px 20px !important;
}
.global-title{
    text-align: center !important;
    font-size: 40px !important;
    font-weight: 400 !important;
    color: rgba(17,29,118,1) !important;
    margin-bottom: 60px !important;
    position: relative !important;
}
    /* 网格布局 */
    /*.join-grid {*/
    /*  display: grid;*/
    /*  grid-template-columns: repeat(3, 1fr);*/
    /*  gap: 2.5rem;*/
    /*  margin: 0 auto;*/
    /*  max-width: 1100px;*/
    /*}*/

    /*.join-step {*/
    /*  position: relative;*/
    /*  padding: 1.5rem;*/
    /*}*/

    /*.step-header {*/
    /*  display: flex;*/
    /*  align-items: flex-start;*/
    /*  gap: 0.8rem;*/
    /*  margin-bottom: 1.2rem;*/
    /*}*/

    /*.step-num {*/
    /*  display: inline-block;*/
    /*  width: 2.2rem;*/
    /*  height: 2.2rem;*/
    /*  background: #2563eb;*/
    /*  color: white;*/
    /*  border-radius: 50%;*/
    /*  text-align: center;*/
    /*  line-height: 2.2rem;*/
    /*  font-weight: 700;*/
    /*  font-size: 1.1rem;*/
    /*  flex-shrink: 0;*/
    /*}*/

    /*.step-title {*/
    /*  margin: 0;*/
    /*  font-size: 1.25rem;*/
    /*  color: #111827;*/
    /*  line-height: 1.4;*/
    /*}*/

    /*.step-content {*/
    /*  padding-left: 3rem; !* 对齐标题文字 *!*/
    /*}*/
    /*.merchant-center {*/
    /*  color: #1e40af; !* 蓝色 *!*/
    /*  font-size: 1.1em; !* 比正常文字稍大 *!*/
    /*  font-weight: 600; !* 加粗 *!*/
    /*  text-decoration: none; !* 去除下划线 *!*/
    /*  transition: color 0.2s ease; !* 颜色过渡效果 *!*/
    /*}*/

    /*.merchant-center:hover {*/
    /*  color: #3b82f6; !* 鼠标悬停时变为稍浅的蓝色 *!*/
    /*  text-decoration: underline; !* 悬停时显示下划线 *!*/
    /*}*/

    /*.step-content p {*/
    /*  margin: 0.5rem 0;*/
    /*  color: #4b5563;*/
    /*  line-height: 1.6;*/
    /*}*/

    /*.step-link {*/
    /*  color: #3b82f6;*/
    /*  text-decoration: none;*/
    /*  word-break: break-all;*/
    /*  display: inline-block;*/
    /*  margin-top: 0.5rem;*/
    /*}*/

    /*.step-link:hover {*/
    /*  text-decoration: underline;*/
    /*}*/

    /*.step-note {*/
    /*  font-size: 0.875rem;*/
    /*  !*color: #6b7280;*!*/
    /*  margin-top: 0.5rem;*/
    /*  !*font-style: italic;*!*/
    /*}*/

    /*!* 响应式设计 *!*/
    /*@media (max-width: 1024px) {*/
    /*  .join-grid {*/
    /*    grid-template-columns: repeat(2, 1fr);*/
    /*  }*/
    /*}*/

    /*@media (max-width: 768px) {*/
    /*  .join-process {*/
    /*    padding: 3rem 0;*/
    /*  }*/

    /*  .join-title {*/
    /*    font-size: 1.75rem;*/
    /*  }*/

    /*  .join-grid {*/
    /*    gap: 2rem;*/
    /*  }*/

    /*  .join-step {*/
    /*    padding: 1.25rem;*/
    /*    margin-left: 30px;*/
    /*  }*/
    /*}*/

    /*@media (max-width: 576px) {*/
    /*  .join-grid {*/
    /*    grid-template-columns: 1fr;*/
    /*    max-width: 500px;*/
    /*  }*/

    /*  .step-header {*/
    /*    margin-bottom: 1rem;*/
    /*  }*/

    /*  .step-title {*/
    /*    font-size: 1.1rem;*/
    /*  }*/
    /*}*/
/* 新增产品展示样式*/
.container1 {
    max-width: 1600px;
    margin: 0 auto;
    padding: 50px 20px;
}

.section-title1 {
    text-align: center;
    font-size: 40px;
    font-weight: 400;
    color: rgba(17,29,118,1);
    margin-bottom: 60px;
    position: relative;
}


.showcase-container {
    display: flex;
}

.image-container {
    flex: 1;
    height: 500px;
    background-color: #f1f5f9;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.5s ease;
}

.carousel-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
}

.carousel {
    flex: 1;
    background-color: #e0f2fe;
    border-radius: 12px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* 调整内容分布 */
    position: relative;
    overflow: hidden;
}

.carousel-item {
    display: none;
    animation: fadeIn 0.5s ease;
    text-align: center;
}

.carousel-item.active {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.carousel-icon {
    width: 100px;
    height: 100px;
    margin-bottom: 15px; /* 减小图标与标题间距 */
}

.carousel-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.carousel-title {
    font-size: 24px; /* 调整标题大小 */
    font-weight: bold;
    color: #1e40af;
    margin-bottom: 20px;
}

.carousel-content {
    font-size: 16px;
    line-height: 1.8;
    color: #334155;
    margin-bottom: 30px; /* 为指示点留出空间 */

}

.carousel-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: auto; /* 将导航点固定在底部 */
    /*padding-top: 20px;*/
    position: absolute;
    bottom: 40px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #bfdbfe;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background-color: #1e40af;
    transform: scale(1.2);
}

/* 左右箭头样式 */
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.carousel-arrow:hover {
    background-color: white;
    transform: translateY(-50%) scale(1.1);
}

.carousel-arrow.left {
    left: 13px;
    margin-left:-13px;
}

.carousel-arrow.right {
    right: 10px !important;
    margin-right:-10px !important;
}

.arrow-icon {
    width: 20px;
    height: 20px;
}

.stats-container {
    display: flex;
    justify-content: space-around;
    margin-top: 40px;
    text-align: center;
}

.stat-item {
    font-size: 48px;
    font-weight: bold;
    color: #1e40af;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@media (max-width: 992px) {
    .showcase-container {
        flex-direction: column;
    }

    .image-container {
        height: 400px;
    }

    .carousel {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .carousel-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 10px;
    }

    .carousel-title {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .stats-container {
        flex-direction: column;
        gap: 20px;
    }

    .carousel-arrow {
        width: 35px;
        height: 35px;
    }

    .arrow-icon {
        width: 16px;
        height: 16px;
    }
}
    /* 底部导航栏样式*/
    .screen{
      z-index: 9999999999999999999;
      width: 100%;
      height: fit-content;
      /*background-color: black;*/
        background-color: rgba(17,29,118,1);
    .foot {
      padding-top: 15px;
      text-align: left;
      border-top: 1px solid #373b4f;
    .flex {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    p {
      text-align: center;
      width: fit-content;
      color: #999999;
      margin: 0;
    }

    span {
      padding: 0 10px;
      color: #999999;
      font-size: 12px;
    }

    p:nth-child(1),
    p:nth-child(3) {
      font-size: 12px;
      font-family: Source Han Sans CN;
      font-weight: 400;
      line-height: 30px;
    }

    p.red {
      color: #ef3e4f;
      /* font-weight: bold; */
      font-size: 12px;
      line-height: 30px;
    }

    p.red a {
      color: #999999;
    }
    }
    .yuming{
      color:white;

    }

    .left{
        margin-top: 6vh;
      /*padding-top: 3vh;*/
      display: flex;
      color:#FFFFFF;
    }
.logo1{
    width: 120px;
    height: 120px;
}
.logo1 img{
    width: 120px;
    margin-top: -40px;
    object-fit: contain;
}
    .left1{
      margin-left:6vw;
      width: fit-content;
        white-space: nowrap;
      font-size: 0.8709416522vw;
      font-family: Sarial, sans-serif, "Microsoft Yahei";
      font-weight: 400;
      color: #FFFFFF;
      line-height: 4.33745364647713vh;

    .community{
      color:gray;
      cursor: pointer;
      font-size: 0.7709416522vw
    }
    .community:hover{
      color:white;
      font-size: 0.7709416522vw
    }
    }
    .left3{
    //margin-left: 0.6932409012vw;
      width: fit-content;
        white-space: nowrap;
      font-size: 0.8709416522vw;
      font-family: Sarial, sans-serif, "Microsoft Yahei";
      font-weight: 400;
      color: #FFFFFF;
      line-height: 4.33745364647713vh;
    .community{
      color:gray;
      cursor: pointer;
      font-size: 0.7709416522vw
    }
    .community:hover{
      color:white;
      font-size: 0.7709416522vw
    }
    }
    .left2{
      margin-left:2vw;
      width: 25.51415366839977vw;
      font-size: 0.8709416522vw;
      font-family: Sarial, sans-serif, "Microsoft Yahei";
      font-weight: 400;
      color: #FFFFFF;
      line-height: 4.33745364647713vh;
    .community{
      color:gray;
      cursor: pointer;
      font-size: 0.7709416522vw
    }
    .community:hover{
      color:white;
      font-size: 0.7709416522vw
    }
    }

    }
    .right1{
      margin-top: 6vh;
      display: flex;
      color:#FFFFFF;
      gap:30px;
      width:fit-content;
    .left2{
      cursor: pointer;
      margin-left:2vw;
      width: 7vw;
      font-size: 0.7709416522vw;
      font-family: Sarial, sans-serif, "Microsoft Yahei";
      font-weight: 400;
      color: #FFFFFF;
      text-align: center;
      line-height: 3.33745364647713vh;
    .up{
      margin:0 auto;
      width: 7vw;
      height: auto;
    //background-image:url("../assets/attention.png");
      background-size:cover;
      background-position:center;
      background-repeat:no-repeat;
    }
    .down{
      width:  7vw;
      font-size: 13px;
      /*margin-left:15px;*/
      margin:0 auto;
      text-align: center;
    }
    }

    }
    }
</style>