/* src/static/css/global.css */
/* 全站公共导航样式统一引入 */
@import url('/static/css/nav-common.css');
/* PC端（屏幕≥1200px） */
@media (min-width: 1200px) {
  html {
    font-size: 16px;
  } /* 1rem = 16px */
}
/* 平板（768px~1199px） */
@media (min-width: 768px) and (max-width: 1199px) {
  html {
    font-size: 16px;
  } /* 1rem = 14px */
}
/* 移动端（≤767px） */
@media (max-width: 767px) {
  html {
    font-size: 14px;
  } /* 1rem = 12px */
}
@media (min-width: 768px) {
    .only-mobile {
      display: none;
    }
    .only-desktop {
      display: block;
    }
    /* PC 端显示控制 */
    .pc-only {
      display: block !important;
    }

    .mobile-only {
      display: none;
    }
    .logo_img {
      float: left;
      width: 30%;
      cursor: pointer;
    }
    .fixed_box {
      width: 4.13rem;
      height: 4.5rem;
      background: #ffffff;
      box-shadow: 0px 4px 10px 0px rgba(77, 87, 153, 0.3);
      border-radius: 0.75rem;
      margin-top: 0.75rem;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      padding: 0.75rem 0;
      box-sizing: border-box;
    }
    .fixed_box img {
      margin-bottom: 0.63rem;
    }
    .fixed_box p {
      font-size: 0.75rem;
      color: #333333;
    }
    .header-title {
      font-size: 1rem;
    }
    .contcat_number {
      font-weight: bold;
      font-size: 1.5rem;
      margin-right: 2.75rem;
    }
    .phone_contact_number {
      display: none;
    }
    .login_btn {
      color: #007fff;
      border: 0.06rem solid #007fff;
    }
    .trial_use_btn {
      background-color: #007fff;
      color: #ffffff;
    }
    .company_name {
      font-weight: normal;
      font-size: 1em;
    }
    #menu_index {
      display: flex;
      align-items: center;
    }
    .header {
      margin: auto;
      width: 87.5rem;
      height: 5.63rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .main {
      margin: auto;
      float: left;
      width: 100%;
      border: 0;
    }
    /* #header-img {
      height: 2.4rem;
      float: left;
      margin: auto;
    } */
    .header-logo {
      width: 134px;
      height: 36px;
      align-self: center;
    }
    .phone_logo {
      display: none;
    }
    .header-important {
      float: left;
      margin-left: 6px;
      align-self: center;
    }
    .phone_footer {
        display: none;
      }
    .footer {
        display: flex;
        flex-direction: column;
        width: 100%;
        background-color: #060c14;
        box-sizing: border-box;
        color: #bfbfbf;
    }
    .footer_top {
      padding: 40px 0;
      width: 70%;
      display: flex;
      margin: 0 auto;
      border-bottom: 1px solid #293037;
    }
    .footer_left {
      width: 400px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }
    .footer_font {
      font-size: 1.1em;
    }
    .f28d00 {
      color: #f28d00;
    }
    .footer_left_title {
      margin-bottom: 10px;
    }
    .footer_logo {
      width: 200px;
      height: 55px;
    }
    .footer_qrcode {
      width: 96%;
    }
    .footer_right {
      flex: 1;
      display: flex;
      justify-content: space-around;
      border-left: 1px solid #293037;
    }
    .footer_right ul {
      list-style: none;
      text-align: left;
    }
    .footer_right ul li:first-child {
      margin-bottom: 24px;
      color: #ffffff;
    }
    .footer_right ul li:not(first-child) {
      margin-bottom: 14px;
    }
    .footer_bottom {
      padding: 20px 0;
    }
    .dy_ks_xhs {
      display: flex;
      flex-direction: column;
    }
    .dy_ks_xhs img {
      margin-bottom: 0.94rem;
    }
    .phone_menu_box {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    .sol_msg {
        width: 47.19rem;
        color: #2b2f33;
        font-size: 1.2rem;
        text-align: left;
        margin: 2.31rem 0 4.5rem;
      }
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

a {
    text-decoration: none;
}
a:visited {
text-decoration: none;
}
a:hover {
text-decoration: none;
}
a:active {
text-decoration: none;
}

/* 全站通用：基础页脚与按钮样式（避免页面遗漏内联样式时失真） */
.footer {
  display: flex;
  flex-direction: column;
  width: 100%;
  background: #060c14;
  color: #bfbfbf;
}
.footer_top {
  padding: 40px 0;
  width: 70%;
  max-width: 1400px;
  height: auto;
  display: flex;
  margin: 0 auto;
  border-bottom: 1px solid #293037;
}
.footer_left {
  width: 400px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.footer_font {
  font-size: 1.1em;
}
.f28d00 {
  color: #f28d00;
}
.footer_left_title {
  margin-bottom: 10px;
}
.footer_right {
  flex: 1;
  display: flex;
  justify-content: space-around;
  border-left: 1px solid #293037;
}
.footer_right ul {
  list-style: none;
  text-align: left;
  padding: 0;
}
.footer_right ul li:first-child {
  margin-bottom: 24px;
  color: #fff;
}
.footer_right ul li {
  margin-bottom: 14px;
}
.footer_bottom {
  padding: 20px 0;
  text-align: center;
}
.phone_footer {
  display: none;
}
.footer_logo {
  width: 200px;
  height: 55px;
}
.footer_qrcode {
  width: 96%;
}
.footer_right {
  flex: 1;
  display: flex;
  justify-content: space-around;
  border-left: 1px solid #293037;
}
.footer_right ul {
  list-style: none;
  text-align: left;
}
.footer_right ul li:first-child {
  margin-bottom: 24px;
  color: #ffffff;
}
.footer_right ul li:not(first-child) {
  margin-bottom: 14px;
}
.footer_bottom {
  padding: 20px 0;
}
.footer_bottom a {
  color: #bfbfbf;
}
.footer_bottom a:hover {
  color: #fbfcfd
}

/* 业务常用按钮兜底样式 */
.banner_btn,
.mfsy_btn,
.cpzj_btn,
.look_detail {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 38px;
  color: #fff;
  border: none;
  text-decoration: none;
}
.look_detail {
  background: transparent;
  color: #006aff;
  border: 1px solid #006aff;
  border-radius: 20px;
}
.trial_use_btn {
  background: #007fff;
  color: #fff;
  border: 2px solid #007fff;
}

/* 预约演示区块与按钮：全站兜底水平居中 */
.cpzj {
  text-align: center;
}
.cpzj .cpzj_btn {
  /* 保持按钮为行内级以配合 text-align */
  display: inline-flex;
}

/* 推荐：统一区块标题容器类（比 first-child 更稳健） */
.section-head {
  width: 87.5rem;
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center;
}
@media (max-width: 768px) {
  .section-head {
    width: 100%;
    padding: 0 15px;
    box-sizing: border-box;
  }
}

/* 统一按钮为原生 CSS，替代 Element-UI 依赖 */
.el-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  font-size: 14px;
  line-height: 1;
  color: #333;
  background-color: #fff;
  border: 1px solid #dcdfe6;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease;
}
.el-button:hover {
  border-color: #409eff;
}
.el-button--default {
  background-color: #fff;
  border-color: #dcdfe6;
}
.el-button--primary {
  background: #409eff;
  border-color: #409eff;
  color: #fff;
}
.el-button--primary:hover {
  background: #66b1ff;
  border-color: #66b1ff;
  opacity: 0.9;
  color: #fff;
}
.is-round {
  border-radius: 999px;
}

/* 常用业务按钮的默认样式兜底（各页若有自定义将覆盖） */
.banner_btn,
.mfsy_btn,
.cpzj_btn,
.look_detail {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 38px;
  color: #fff;
  border: none;
}
.look_detail {
  background: transparent;
  color: #006aff;
  border: 1px solid #006aff;
  border-radius: 20px;
}
.login_btn {
  background: transparent;
  color: #007fff;
  border: 1px solid #007fff;
}
.login_btn1 {
    height: 3rem;
    background: #0080ff;
    font-size: 1.06rem;
    color: #fbfcfd;
    border: 0.06rem solid #007fff;
    width: 100%;
}
.trial_use_btn {
  background: #007fff;
  color: #fff;
  border: 2px solid #007fff;
}

/* 统一设置 Element-UI 列宽 */
.el-col-12 {
  width: 50%;
}

.el-col-24 {
  width: 100%;
}

/* 自定义右箭头图标（替代 Element UI） */
.el-icon-arrow-right {
  display: inline-block;
  /* width: 16px; */
  height: 16px;
  vertical-align: middle;
  position: relative;
  margin-left: 4px;
}

.el-icon-arrow-right::before {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg);
  top: 50%;
  left: 50%;
  margin-top: -4px;
  margin-left: -5px;
}

/* 统一设置边框父级 padding */
.banner {
  height: 30rem;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  position: relative;
}

@media (max-width: 768px) {
  .banner {
    height: 410px;
    background-size: 100% 100% !important;
  }
}

.border_parent {
  text-align: center;
}

#app {
    font-family: 'Avenir', Helvetica, Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-align: center;
    color: #2c3e50 !important;
}

@media (max-width: 768px) {
  .border_parent {
    padding: 1.88rem 0;
  }
}

/* 通用Grid容器样式（产品功能、核心功能等网格布局兜底） */
.grid-container {
  width: 87.5rem;
  display: grid;
  box-sizing: border-box;
  margin: 0 auto;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
}

.grid-item {
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Grid项目内容默认样式 */
/* .item-content {
  width: 100%;
  height: 12.5rem;
  background-color: #edf6ff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}

.item-content:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}

.item-content-title {
  font-size: 1.13rem;
  color: #434343;
  margin: 1.25rem 0 0.5rem;
}

.item-content-msg {
  font-size: 1rem;
  color: #7a7a7a;
} */

/* 移动端Grid布局调整 */
@media (max-width: 768px) {
  .grid-container {
    width: 100%;
    margin: 0 auto;
    display: grid;
    box-sizing: border-box;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.625rem;
    padding: 0 15px;
  }

  .grid-item {
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .item-content {
    width: 100%;
    height: 96px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    padding: 10px;
  }

  .item-content img {
    width: 24px;
    height: 24px;
  }

  .item-content:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
  }

  .item-content-title {
    font-size: 12px;
    color: #434343;
    margin: 8px 0 0 0;
    text-align: center;
  }

  .item-content-msg {
    font-size: 0.875rem;
    color: #7a7a7a;
  }
}

/* 标题样式兜底 */
.font_size_40 {
  font-size: 2.5rem;
  color: #434343;
  font-weight: bold;
}

.small_title {
  font-size: 1.13rem;
  color: #4d4d4d;
  margin: 30px 0;
}

@media (max-width: 768px) {
  .font_size_40 {
    font-size: 18px;
    color: #333333;
    font-weight: 500;
  }

  .small_title {
    font-size: 14px;
    color: #4d4d4d;
    margin: 15px auto;
  }
}
