:root {

  --blue-color: #1d89ff;

  --dark-color: #333;

  --white-color: #ffffff;

}



@font-face {

  font-family: "Montserrat";

  src: url("../font/Montserrat-SemiBold.ttf") format("truetype");

  font-weight: normal;

  font-style: normal;

}



.font16 {

  font-size: 16px;

}



.font18 {

  font-size: 18px;

}



.font20 {

  font-size: 20px;

}



.font24 {

  font-size: 24px;

}



.font28 {

  font-size: 28px;

}



.font32 {

  font-size: 32px;

}



.font36 {

  font-size: 36px;

}



.font38 {

  font-size: 38px;

}



.font48 {

  font-size: 48px;

}



.font52 {

  font-size: 52px;

}



.font56 {

  font-size: 56px;

}



.max936 {

  max-width: 936px;

  margin: 0 auto;

}



.tc {

  text-align: center;

}



.dis_flex {

  display: flex;

}



.dis_between {

  justify-content: space-between;

}



.dis_center {

  align-items: center;

}



.m_button {

  display: flex;

}



.mo_show {

  display: none !important;

}



.one_line {

  overflow: hidden;

  white-space: nowrap;

  -o-text-overflow: ellipsis;

  text-overflow: ellipsis;

}



.two_line {

  overflow: hidden;

  display: -webkit-box;

  -webkit-line-clamp: 2;

  -webkit-box-orient: vertical;

}



@media (max-width: 1440px) {

  .font36 {

    font-size: 34px;

  }



  .font48 {

    font-size: 42px;

  }



  .font52 {

    font-size: 48px;

  }

  .font56 {

    font-size: 52px;

  }

}



@media (max-width: 1366px) {

  .font28 {

    font-size: 26px;

  }



  .font32 {

    font-size: 30px;

  }



  .font36 {

    font-size: 32px;

  }



  .font48 {

    font-size: 40px;

  }



  .font52 {

    font-size: 44px;

  }

  .font56 {

    font-size: 50px;

  }

}



@media (max-width: 1280px) {

  .font24 {

    font-size: 22px;

  }



  .font28 {

    font-size: 24px;

  }



  .font32 {

    font-size: 28px;

  }



  .font36 {

    font-size: 30px;

  }



  .font48 {

    font-size: 38px;

  }



  .font52 {

    font-size: 40px;

  }

  .font56 {

    font-size: 46px;

  }

}



@media (max-width: 768px) {

  .font48 {

    font-size: 28px;

  }



  .font52 {

    font-size: 30px;

  }

}



@media (max-width: 767px) {

  .font24 {

    font-size: 20px;

  }



  .font28 {

    font-size: 22px;

  }



  .font32 {

    font-size: 24px;

  }



  .font36 {

    font-size: 24px;

  }



  .font48 {

    font-size: 26px;

  }



  .font52 {

    font-size: 28px;

  }



  .pc_show {

    display: none !important;

  }



  .mo_show {

    display: block !important;

  }

}



/* btn */

.m_btn a {

  position: relative;

  display: flex;

  padding: 16px 16px 16px 0;

  align-items: center;

  border-radius: 48px;

  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);

}



.m_btn a:nth-child(2) {

  margin-left: 16px;

}



.m_btn i {

  display: flex;

  width: 38px;

  height: 38px;

  padding: 7px;

  justify-content: center;

  align-items: center;

  border-radius: 30px;

  background-color: var(--main-color);

}



.m_btn span {

  margin-right: 24px;

}



.m_btn span em {

  opacity: 0;

  font-size: 18px;

  font-style: normal;

  font-weight: 400;

}



.white_btn {

  background: var(--white-color);

  box-shadow: -8px 24px 52.66px 0 #D4DEED;

}



.white_btn span::before {

  color: var(--white-color);

}



.white_btn span:after {

  color: var(--blue-color);

}



.white_btn i {

  background: var(--blue-color);

}



.opacity_btn {

  background-color: #F0F3F7;

  border-color: #F0F3F7;

}



.opacity_btn span:after {

  color: #666;

}



.opacity_btn span::before {

  color: var(--white-color);

}



.opacity_btn i {

  background-color: var(--blue-color);

}



.opa_btn {



  background: rgba(0, 0, 0, 0.20);

  -webkit-backdrop-filter: blur(8px);

  backdrop-filter: blur(8px);

  -webkit-font-smoothing: antialiased;

  transform: translateZ(0);

  backface-visibility: hidden;

  outline: 1px solid transparent;

  will-change: background, box-shadow;

  background-clip: padding-box;

  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.8);

}



.opa_btn span:after,

.opa_btn span::before {

  color: var(--white-color);

}



.opa_btn i {

  background-color: var(--white-color);

}



.border_btn {

  background: linear-gradient(130deg, rgba(76, 195, 255, 0) 32.29%, #4cc3ff 84.48%), #1d89ff;

  box-shadow: 0 -2px 8px 0 #4cc3ff inset;

}



.border_btn span:after {

  color: var(--white-color);

}



.border_btn span::before {

  color: var(--blue-color);

}



.border_btn i {

  background-color: var(--white-color);

}



.m_btn a i svg {

  transition: all 0.3s;

}



/* button hover */

.m_btn .white_btn:hover::before {

  opacity: 0;

}



.m_btn .opacity_btn:hover i,

.m_btn .white_btn:hover i {

  background-color: var(--white-color);

}



.m_btn .opacity_btn:hover i svg path,

.m_btn .white_btn:hover i svg path {

  stroke: var(--blue-color);

}



.opa_btn:hover,

.opacity_btn:hover,

.white_btn:hover {

  background: linear-gradient(130deg, rgba(76, 195, 255, 0) 32.29%, #4cc3ff 84.48%), #1d89ff;

  box-shadow: 0 -2px 8px 0 #4cc3ff inset;

}



.opacity_btn:hover span,

.white_btn:hover span {

  color: var(--white-color);

}



.border_btn:hover {

  box-shadow: none;

  background: rgba(255, 255, 255, 0.8);

  backdrop-filter: blur(8px);

  -webkit-backdrop-filter: blur(8px);

}





.m_btn .border_btn:hover i {

  background-color: var(--main-color);

}



.m_btn .border_btn:hover i svg path {

  stroke: var(--white-color);

}



/* 按钮文字动画 */

.m_btn span {

  position: relative;

  padding-left: 32px;

  overflow: hidden;

  display: inline-block;

  transition: transform 0.5s ease;

}



.m_btn span:after {

  content: attr(data-text);

  position: absolute;

  top: 0;

  left: 32px;

  width: 100%;

  height: 100%;

  font-size: 18px;

  font-weight: 400;

  transition: transform 0.5s ease;

}



.m_btn span::before {

  content: attr(data-text);

  position: absolute;

  top: 0;

  left: -50%;

  width: 100%;

  height: 100%;

  font-size: 18px;

  font-weight: 400;

  transform: translateX(-100%);

  transition: transform 0.5s ease;

}



.m_btn a:hover span:after {

  transform: translateX(110%);

  color: var(--white-color);

  left: 50%;

}



.m_btn a:hover span::before {

  transform: translateX(0);

  left: 32px;

}



.m_btn a:hover i svg {

  transform: rotate(45deg);

}



@media (max-width: 1279px) {

  .m_btn a {

    /* padding: 16px 16px 16px 22px; */

  }



  .m_btn span {

    margin-right: 10px;

  }

}



@media (max-width: 767px) {

  .m_btn a {

    /* padding: 12px 10px 12px 16px; */

  }



  .m_btn span em,

  .m_btn span::before,

  .m_btn span::after {

    font-size: 16px;

  }



  .m_btn span {

    margin-right: 10px;

  }



  .m_btn i {

    width: 30px;

    height: 30px;

    padding: 3px;

  }

}



/* banner */

.pro_ban {

  position: relative;

}



.pro_ban_box {

  padding-top: 190px;

  width: 100%;

  min-height: 600px;

  height: 100vh;

  z-index: 1;

  overflow: hidden;

}



.pro_ban .img {

  position: absolute;

  left: 0;

  top: 0;

  width: 100%;

  height: 100%;

  z-index: -1;

}



.pro_ban .img img {

  width: 100%;

  height: 100%;

  object-fit: cover;

}



.pro_ban .t {

  color: var(--dark-color);

  text-align: center;

  font-style: normal;

  font-weight: 700;

  line-height: 1.5;

}



.pro_ban .t span {

  margin-right: 10px;

  background: linear-gradient(90deg, #1d89ff 8.21%, #4cc3ff 50.7%, #4cc3ff 100%);

  background-clip: text;

  -webkit-background-clip: text;

  -webkit-text-fill-color: transparent;

}



.pro_ban .text {

  padding-top: 16px;

  color: #666;

  text-align: center;

  font-size: 18px;

  font-style: normal;

  font-weight: 400;

  line-height: 28px;

}



.pro_ban .m_btn {

  padding-top: 30px;

  justify-content: center;

}



.product_nav {

  display: flex;

  padding: 23px 0;

  justify-content: center;

  align-items: center;

  width: 100%;

  z-index: 9;

}



.product_nav>.m_pd {

  display: flex;

  justify-content: center;

}



.pro_d_menu {

  display: flex;

  padding: 6px;

  border-radius: 50px;

  border: 1px solid #eaeaea;

  background: rgba(255, 255, 255, 0.8);

  box-shadow: 0 6px 24px 0 rgba(0, 0, 0, 0.04);

  backdrop-filter: blur(8px);

}



.pro_d_menu ul {

  display: flex;

  margin-left: -4px;

  margin-right: -4px;

}



.pro_d_menu ul li {

  padding: 0 4px;

}



.pro_d_menu ul li a {

  display: flex;

  padding: 16px 24px;

  justify-content: center;

  align-items: center;

  color: var(--dark-color);

  font-size: 20px;

  font-style: normal;

  font-weight: 400;

  line-height: 1.5;

  border-radius: 40px;

  transition: all 0.3s;

}



.pro_d_menu ul li.active a {

  background-color: var(--main-color);

  color: var(--white-color);

}



@media (min-width: 768px) {

  .pro_d_menu ul li a:hover {

    background-color: var(--main-color);

    color: var(--white-color);

    border-radius: 40px;

  }

}



.sticky .pro_d_menu ul li a {

  padding: 10px 24px;

}



.page_title {

  max-width: 1040px;

  margin: 0 auto;

}



.page_title .t {

  font-style: normal;

  font-weight: 700;

  line-height: 1.5;

}



.page_title .des {

  margin-top: 16px;

  font-style: normal;

  font-size: 20px;

  font-weight: 400;

  line-height: 1.55;

}



.p_black .t {

  color: var(--dark-color);

}



.p_black .des {

  color: #666;

}



.p_black .des strong {

  padding: 4px 6px;

  margin-left: 8px;

  margin-right: 8px;

  border-radius: 6px;

  background: rgba(29, 137, 255, 0.20);

  color: var(--blue-color);

  font-weight: 400;

}



.p_white .t {

  color: var(--white-color);

}



.p_white .des {

  color: var(--white-color);

}



.page_bg .product_box {

  position: relative;

}



@media (max-width: 1200px) {

  .product_nav.sticky {

    top: 60px !important;

  }



  .sticky .pro_d_menu ul li a,

  .pro_d_menu ul li a {

    padding: 10px 16px;

  }



  .pro_d_menu ul li a {

    font-size: 18px;

  }

}



@media (max-width: 991px) {

  .pro_d_menu ul {

    display: flex;

    flex-wrap: wrap;

    align-items: stretch;

    margin: 0;

  }



}



@media (max-width: 767px) {
  .pro_ban_box {
    padding-top: 110px;
    padding-bottom: 300px;
    height: auto;
  }

  .page_title .des {

    font-size: 16px;

  }



  .pro_d_menu {

    padding: 10px;

    border-radius: 16px;

  }



  .pro_d_menu {

    width: 100%;

    overflow-x: auto;

    -webkit-overflow-scrolling: touch;

  }



  .pro_d_menu::-webkit-scrollbar {

    display: none;

  }



  .pro_d_menu {

    -ms-overflow-style: none;

    scrollbar-width: none;

  }



  /* 导航列表样式 */

  .pro_d_menu ul {

    list-style: none;

    display: flex;

    flex-wrap: inherit;

    white-space: nowrap;

  }



  .pro_d_menu li {

    display: inline-block;

    padding: 12px 20px;
    margin-right: 10px;
  }



  .pro_d_menu ul li a {

    padding: 10px 15px;

    font-size: 18px;

  }

}



@media (max-width: 359px) {

  .pro_ban .m_btn {

    flex-flow: column;

  }



  .m_btn a:nth-child(2) {

    margin-top: 16px;

    margin-left: 0;

  }

}



/* 产品介绍  */

.pro_infor_box {

  position: relative;

  padding-bottom: 100px;

  background-image: url(../images/m_infor_bg.jpg);

  background-repeat: no-repeat;

  background-size: cover;

  background-position: center;

}



.pro_infor_box .thumb {

  margin-top: 55px;

  padding: 16px;

  border-radius: 24px;

  border: 1px solid #fff;

  background: rgba(255, 255, 255, 0.7);

  box-shadow: -8px 24px 52.66px 0 #d4deed;

  backdrop-filter: blur(12px);

}

.pro_infor_box .thumb img {

  border-radius: 10px;

  overflow: hidden;

}

/* 服务能力 */

.pro_fwnl_box {

  padding: 100px 0;

  background-image: url(../images/m_fwnl_bg.jpg);

  background-repeat: no-repeat;

  background-size: cover;

  background-position: center top;

}



.pro_fwnl_box .thumb {

  margin-top: 55px;

  padding: 16px;

  border-radius: 24px;

  border: 1px solid #fff;

  background: rgba(255, 255, 255, 0.7);

  box-shadow: -8px 24px 52.66px 0 #d4deed;

  backdrop-filter: blur(12px);

}

.pro_fwnl_box .thumb img {

  border-radius: 10px;

  overflow: hidden;

}

/* 产品能力 */

.pro_cpnl_box {

  padding: 100px 0;

  /* padding-bottom: 20px; */

  background-image: url(../images/m_cpnl_bg.png);

  background-repeat: no-repeat;

  background-size: cover;

  background-position: center bottom;

}



.m_cpnl_loop {

  margin-top: 55px;

  display: flex;

  justify-content: space-between;

}



.m_cpnl_loop .sidebar {

  width: 433px;

  overflow-y: auto;

  max-height: 542px;

  padding-right: 16px;

  position: relative;

  z-index: 1;

}



@media (min-width: 991px) {



  .m_cpnl_loop .sidebar::-webkit-scrollbar {

    width: 6px;

  }



  .m_cpnl_loop .sidebar::-webkit-scrollbar-track {

    background: rgba(0, 0, 0, 0.1);

    border-radius: 30px;

  }



  .m_cpnl_loop .sidebar::-webkit-scrollbar-thumb {

    border-radius: 30px;

    background-color: var(--blue-color);

  }

}



.m_cpnl_loop .sidebar-item {

  display: flex;

  padding: 16px 20px;

  flex-direction: column;

  align-items: flex-start;

  margin-bottom: 16px;

  border-radius: 16px;

  border: 1px solid rgba(0, 0, 0, 0.08);

  background: var(--white-color);

  cursor: pointer;

  transition: all 0.3s ease;

}



.m_cpnl_loop .sidebar-item:last-child {

  /* margin-bottom: 0; */

}



.m_cpnl_loop .sidebar-item.active {

  border: 1px solid var(--blue-color);

  /* box-shadow: 0 0 20px 0 rgba(212, 222, 237, 0.8); */

}



.m_cpnl_loop .sidebar-item h3 {

  color: var(--dark-color);

  font-size: 20px;

  font-style: normal;

  font-weight: 700;

  line-height: 30px;

  margin-bottom: 4px;

}



.m_cpnl_loop .sidebar-item.active h3 {

  color: var(--blue-color);

}



.m_cpnl_loop .sidebar-item p {

  color: #666;

  font-size: 16px;

  font-style: normal;

  font-weight: 400;

  line-height: 26px;

}



.m_cpnl_loop .content {

  flex: 1;

  margin-left: 8px;

  margin-top: -30px;

  /* margin-right: -5px; */

  overflow: hidden;

}



.m_cpnl_loop .swiper-container {

  padding-top: 30px;

  margin-left: 15px;

  /* padding-right: 20px; */

  padding-bottom: 40px;

  width: 100%;

  height: 628px;

}

.m_cpnl_loop .swiper-slide {

  /* padding: 30px; */

  /* margin-bottom: 50px; */

}

.m_cpnl_loop .slide-content {

  display: flex;

  align-items: center;

  justify-content: center;

  width: 100%;

  height: 100%;

}



.m_cpnl_loop .slide-content img {

  max-height: 100%;

  border-radius: 10px;

  background: #e6eaf2;

  border: 1px solid rgba(255, 255, 255, 1);

  box-shadow: 0px 4px 32px 0 #d4deed;

}



@media (max-width: 1440px) {

  .m_cpnl_loop .sidebar {

    width: 400px;

  }

}



@media (max-width: 1366px) {

  .m_cpnl_loop .sidebar {

    width: 360px;

  }



  .m_cpnl_loop .sidebar {

    max-height: 478px;

  }

}



@media (max-width: 1280px) {

  .m_cpnl_loop .sidebar {

    width: 320px;

  }



  .m_cpnl_loop .sidebar {

    max-height: 478px;

  }

  .m_cpnl_loop .swiper-container {

    height: 478px;

  }

}



@media (max-width: 767px) {

  .m_cpnl_loop {
    margin-top: 20px;
    flex-direction: column;

  }



  .m_cpnl_loop .sidebar {

    width: 100%;

    max-height: none;

    padding-right: 0;

    overflow-y: hidden;

    margin-bottom: 10px;

  }



  .m_cpnl_loop .sidebar-swiper {

    width: 100%;

    height: auto;

  }



  .sidebar-swiper .swiper-slide {

    width: 280px;

    padding: 0;
    height: auto;
    margin-right: 10px;

  }



  .m_cpnl_loop .sidebar-item {

    margin-bottom: 0;
    height: 100%;
  }



  .sidebar::-webkit-scrollbar {

    width: 0px;

    height: 0;

  }



  .sidebar::-webkit-scrollbar-track {

    border-radius: 0;

  }



  .sidebar::-webkit-scrollbar-thumb {

    border-radius: 0;

  }



  /* 右侧内容区适配 */

  .m_cpnl_loop .content {

    margin-top: 30px;
    margin-top: 0;
    width: 100%;

    margin-left: 0;

  }



  .m_cpnl_loop .content .swiper-container {

    height: 100%;
    margin: 0;
    padding-top: 0;

  }

  .pro_fwnl_box .thumb {

    margin-top: 55px;

    padding: 8px;

    border-radius: 16px;


  }
}



.sidebar-swiper {

  display: none;

}



@media (max-width: 767px) {

  .m_cpnl_loop .sidebar-swiper {

    display: block;

    height: auto;

    overflow: visible;

  }



  .sidebar-static {

    display: none !important;

  }

}



/* 应用场景 */

.pr {

  position: relative;

}



.pro_heart_box {

  padding-top: 100px;

  padding-bottom: 100px;

  background-image: url(../images/m_yycj_bg.jpg);

  background-repeat: no-repeat;

  background-size: cover;

  overflow: hidden;

}



.index_o_loop {

  padding-top: 64px;

}



.heart_top {

  padding-left: 88px;

  padding-right: 88px;

}



.heart_t_b {

  position: absolute;

  top: 50%;

  transform: translateY(-50%);

  display: flex;

  width: 64px;

  height: 64px;

  padding: 16px;

  justify-content: center;

  align-items: center;

  border-radius: 60px;

  background: rgba(255, 255, 255, 0.3);

  transition: all 0.3s ease-in-out;

  cursor: pointer;

}



.heart_t_b:hover {

  background-color: var(--white-color);

}



.heart_t_b:hover svg path {

  stroke: var(--blue-color);

}



.cy2_prev {

  left: 0;

}



.cy2_next {

  right: 0;

}



.cy-swiper .swiper-wrapper {

  align-items: stretch;

}

.cy-swiper.mm .swiper-wrapper {

  justify-content: center;

}

.cy-swiper .swiper-slide {

  display: flex;

  padding: 20px 10px;

  flex-direction: column;

  align-items: center;

  height: auto;

  border-radius: 12px;

  cursor: pointer;

  overflow: hidden;

}



.cy-swiper .swiper-slide-thumb-active {

  background: rgba(255, 255, 255, 0.3);

}



.cy-swiper .progress {

  height: 2px;

  width: 100%;

  background-color: transparent;

  overflow: hidden;

  position: absolute;

  left: 0;

  bottom: 0;

}



.cy-swiper .progress-bar {

  position: absolute;

  top: 0;

  left: 0;

  height: 100%;

  width: 0;

  background-color: var(--white-color);

  transition: width linear;

}



.cy-swiper .icon {

  width: 48px;

}



.cy-swiper .t {

  margin-top: 16px;

  color: var(--white-color);

  font-style: normal;

  font-weight: 400;

  line-height: 28px;

  text-align: center;

}



.cy-swiper02 {

  margin-top: 32px;

  border-radius: 16px;

  border: 1px solid #fff;

  background: linear-gradient(117deg, rgba(255, 255, 255, 0.8) 27.49%, rgba(255, 255, 255, 0.48) 84.02%);

  box-shadow: 0 8px 80px 0 rgba(0, 27, 77, 0.08);

  backdrop-filter: blur(12px);

}



@media (min-width: 768px) {

  .cy-swiper02 .swiper-wrapper {

    align-items: stretch;

  }

}



.cy-swiper02 .swiper-slide {

  height: auto;

}



.cy-swiper02 .swiper-slide .bg {

  position: relative;

  padding: 40px;

  display: flex;

  justify-content: space-between;

  height: 100%;



  pointer-events: none;

  overflow: hidden;

}



.cy-swiper02 .swiper-slide-active .bg {

  opacity: 1;

  pointer-events: inherit;

}



.ten_left {

  position: relative;

  padding-bottom: 120px;

  max-width: 520px;

  min-width: 340px;

  width: 42%;

}



.ten_right {

  /* position: absolute; */

  padding-left: 34px;

  width: 58%;

  /* right: 0;

    bottom: 0;

    width: 60%;

    max-width: calc(100% - 380px);

    height: calc(100% - 56px); */

}



.ten_left .top_title .t {

  color: var(--dark-color);

  font-style: normal;

  font-weight: 700;

  line-height: 1.5;

}



.ten_left .top_title .des {

  margin-top: 16px;

  color: #666;

  font-style: normal;

  font-weight: 400;

  min-height: 56px;

  line-height: 28px;

}



.guide_table_left {

  position: relative;

  padding-left: 18px;

  margin-top: 24px;

}



.guide_table_left::before {

  content: "";

  position: absolute;

  top: 0;

  left: 0;

  width: 2px;

  height: 100%;

  background-color: rgba(0, 0, 0, 0.08);

}



.guide_table_left ul li {

  padding-bottom: 14px;

  padding-top: 10px;

  cursor: pointer;

}



.guide_table_left ul li:first-child {

  padding-top: 0;

}



.guide_table_left ul li:last-child {

  padding-bottom: 0;

}



.guide_table_left .title {

  color: var(--dark-color);

  font-size: 20px;

  font-style: normal;

  font-weight: 400;

  line-height: 1.5;

}



.ten_right .guide_table_right {

  position: relative;

  width: 100%;

  height: 100%;

}



.guide_table_right .pub-t1 {

  position: absolute;

  display: flex;

  opacity: 0;

  width: 100%;

  height: 100%;

  transition: opacity 0.3s;

}



.guide_table_right .border {

  display: flex;

  align-items: center;

  width: 100%;

  height: 100%;

}



.guide_table_right img {

  border-radius: 8px;

  width: 100%;

}



.ten_left_loop .progress_bar {

  position: absolute;

  top: 0;

  left: 0;

  height: 0;

  width: 2px !important;

  border-radius: 30px;

  background-color: var(--main-color);

  transition: height 0.3s ease;

}



.guide_table_left ul li .text {

  opacity: 0;

  max-height: 0;

  overflow: hidden;

  transition:

    opacity 0.2s,

    max-height 0.5s ease;

}



.guide_table_left ul li .text p {

  color: #666;

  font-size: 18px;

  font-style: normal;

  font-weight: 400;

  line-height: 28px;

}



.guide_pic {

  margin-top: 30px;

}



.guide_pic img {

  width: 100%;

  border-radius: 16px;

  background: #e6eaf2;

  box-shadow: -10px 20px 48px 0 #e8ecf2;

}



.ten_left .jt_more {

  position: absolute;

  bottom: 0;

  left: 0;

  width: 100%;

}



.jt_more a {

  margin-right: 14px;

  display: flex;

  padding: 12px 16px 12px 24px;

  justify-content: center;

  align-items: center;

  border-radius: 50px;

  font-size: 18px;

  font-style: normal;

  font-weight: 400;

  transition: background-color 0.3s;

}



.jt_more a:last-child {

  margin-right: 0;

}



.jt_more a i {

  margin-left: 16px;

  width: 24px;

  height: 24px;

  background-repeat: no-repeat;

  background-size: 100%;

}



.jt_blue i {

  background-image: url(../images/hzys_white_jt.svg);

}



.jt_more .jt_blue {

  color: var(--white-color);

  background: linear-gradient(130deg, rgba(76, 195, 255, 0) 32.29%, #4cc3ff 84.48%), #1d89ff;

}



.jt_more .jt_white {

  background-color: var(--white-color);

  color: #666;

}



.jt_more .jt_white i {

  background-image: url(../images/hzys_grey_jt.svg);

}



.jt_more a:hover {

  background-color: var(--main-color);

  color: var(--white-color);

}



.jt_more a:hover i {

  background-image: url(../images/hzys_white_jt.svg);

}



.guide_table_left .active .title {

  color: var(--main-color);

  font-weight: 700;

}



.guide_table_left ul li.active .text {

  max-height: inherit;

  opacity: 1;

  padding-top: 8px;

}



.guide_table_right .pub-t1.d-show {

  opacity: 1;

}



@media (max-width: 991px) {

  .ten_left {

    width: 100%;

    max-width: inherit;

    min-width: inherit;

  }



  .ten_right {

    display: none !important;

  }



  .ten_left .guide_pic {

    display: block !important;

  }



  .guide_pic img {

    border-radius: 8px;

  }

}



@media (max-width: 767px) {

  .pro_heart_box {

    padding-top: 60px;

  }



  .heart_t_b {

    display: none !important;

    width: 46px;

    height: 46px;

    padding: 10px;

  }



  .heart_top {

    padding-left: 0;

    padding-right: 0;

  }
  .heart_top .swiper-container {
    overflow: visible;
  }


  .cy2_prev {

    left: -8px;

  }



  .cy2_next {

    right: -8px;

  }



  .cy-swiper .swiper-slide {

    padding: 20px 10px;

    /* width: 100px; */

    width: 140px !important;

  }



  .cy-swiper .icon {

    width: 36px;

  }



  .cy-swiper02 {

    height: auto;

  }



  .cy-swiper02 .swiper-wrapper {

    /* height: inherit !important; */

  }



  .cy-swiper02 .swiper-slide {

    /* height: inherit; */

  }



  .cy-swiper02 .swiper-slide .bg {

    padding: 35px 20px;

    height: auto;

  }



  .cy-swiper .t {

    margin-top: 16px;

    font-size: 16px;

    line-height: 26px;

  }



  .ten_left .top_title .des,

  .guide_table_left ul li .text p {

    font-size: 16px;

    line-height: 1.5;

  }



  .guide_table_left .title {

    font-size: 18px;

  }



  .ten_left .jt_more {

    justify-content: space-between;

  }



  .ten_left .jt_more a {

    padding: 12px 10px 12px 16px;

    margin: 0;

    width: calc(50% - 4px);

    font-size: 16px;

  }



  .jt_more a i {

    margin-left: 6px;

    width: 20px;

    height: 20px;

  }

}



/* 客户案例 */

.pro_khal_box {

  padding: 100px 0;

  background-image: url(../images/m_khal_bg.jpg);

  background-repeat: no-repeat;

  background-size: cover;

  overflow: hidden;

}



.m_left_button {}



.m_left_button div {

  position: absolute;

  top: 50%;

  transform: translateY(-50%);

  display: flex;

  width: 64px;

  height: 64px;

  padding: 16px;

  justify-content: center;

  align-items: center;

  border-radius: 60px;

  border: 1px solid rgba(0, 0, 0, 0.1);

  background: #fff;

  box-shadow: 0 0 34px 0 rgba(82, 107, 143, 0.2);

  cursor: pointer;

  z-index: 9;

}



.m_left_button .m_left_b {

  left: -96px;

}



.m_left_button .m_right_b {

  right: -96px;

}



.m_left_button div:hover {

  background-color: var(--blue-color);

}



.m_left_button div:hover svg path {

  stroke: var(--white-color);

}



.m_left_button .swiper-button-disabled {

  opacity: 0.5;

  cursor: not-allowed;

  pointer-events: none;

}



.show_swiper {

  margin-top: 55px;

  overflow: visible;

}



.show_swiper .border {

  border-radius: 14px;

  overflow: hidden;

}



.show_swiper .thumb {

  position: relative;

  border-radius: 14px;

  overflow: hidden;

}



.show_swiper .thumb img:first-child {

  position: absolute;

  left: 50%;

  top: 50%;

  transform: translate(-50%, -50%);

  width: 100%;

  height: 100%;

  display: block;

  object-fit: cover;

  transition: transform 0.4s;

}



.show_swiper .cont {

  position: relative;

  display: flex;

  padding: 24px;

  margin-top: -24px;

  flex-direction: column;

  align-items: flex-start;

  height: 216px;

  transition: all 0.4s;

  z-index: 1;

}

.show_swiper .cont::before {

  content: "";

  position: absolute;

  left: 0;

  top: 0;

  width: 100%;

  height: 100%;

  border-radius: 14px;

  background: linear-gradient(180deg, rgba(255, 255, 255, 0.90) 0%, #FFF 100%);

  backdrop-filter: blur(16px);

  -webkit-backdrop-filter: blur(16px);

  transition: all .4s ease;

  z-index: -1;

}

.show_swiper .cont .s_t {

  color: #333;

  font-size: 16px;

  font-style: normal;

  font-weight: 290;

  line-height: 26px;

}



.show_swiper .cont .t {

  margin-top: 16px;

  color: var(--dark-color);

  font-style: normal;

  font-weight: 700;

  line-height: 1.5;

  height: 72px;

}



.show_swiper .cont span {

  padding-top: 30px;

  display: block;

}



.show_swiper .cont span i {

  display: block;

  width: 24px;

  height: 24px;

  background-image: url(../images/arrow-up-right.svg);

  background-repeat: no-repeat;

}



.m_case_more {

  padding-top: 48px;

  display: flex;

  justify-content: center;

}



.m_case_more a {

  display: inline-flex;

  padding: 16px 28px 16px 32px;

  justify-content: center;

  align-items: center;

  border-radius: 60px;

  color: #2879fb;

  text-align: center;

  font-size: 20px;

  font-style: normal;

  font-weight: 400;

  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);

  border: 1px solid transparent;

  cursor: pointer;

  user-select: none;

  -webkit-tap-highlight-color: transparent;

}



.m_case_more a span {

  margin-left: 16px;

  display: flex;

  align-items: center;

  transition: transform 0.3s ease;

}



@media (hover: hover) {

  .m_case_more a:hover {

    background-color: rgba(40, 121, 251, 0.08);

    border-color: rgba(40, 121, 251, 0.2);

  }



  .m_case_more a:hover span {

    transform: translateX(6px);

  }

}



.m_case_more a:active {

  transform: scale(0.96);

  background-color: rgba(40, 121, 251, 0.15);

  transition: all 0.1s;

}



.icon-arrow {

  width: 24px;

  height: 24px;

  fill: none;

  stroke: currentColor;

  stroke-width: 2;

  stroke-linecap: round;

  stroke-linejoin: round;

}





.show_swiper a:hover .cont {

  margin-top: -100px;

  height: 292px;

}



.show_swiper a:hover .thumb img:first-child {

  -webkit-transform: translate(-50%, -50%) scale(1.05);

  -ms-transform: translate(-50%, -50%) scale(1.05);

  transform: translate(-50%, -50%) scale(1.05);

}



@media (max-width: 1366px) {

  .m_left_button .m_left_b {

    left: -80px;

  }



  .m_left_button .m_right_b {

    right: -80px;

  }

}



@media (max-width: 1024px) {

  .m_left_button .m_left_b {

    left: -70px;

  }



  .m_left_button .m_right_b {

    right: -70px;

  }

}

@media (max-width: 1024px) {

  .m_left_button .m_left_b {

    left: -10px;

  }



  .m_left_button .m_right_b {

    right: -10px;

  }

  .m_left_button {

    padding-top: 30px;

    display: flex;

    align-items: center;

    justify-content: center;

  }



  .m_left_button div {

    position: relative;

    top: inherit;

    transform: inherit;

  }



}

@media (max-width: 767px) {



  .show_swiper .cont {

    padding: 24px 16px;

    height: 216px;

  }



  .show_swiper .cont .t {

    margin-top: 16px;

    height: 72px;

  }

  .show_swiper .cont {

    margin-top: -40px;

  }



  .show_swiper a:hover .cont {

    margin-top: -60px;

    height: 252px;

  }







  .pro_khal_box,

  .pro_fwnl_box,

  .pro_cpnl_box {

    padding: 50px 0;

  }



  .pro_infor_box {

    padding-bottom: 50px;

  }



  .m_left_button div {

    width: 54px;

    height: 54px;

  }

}



/* pro2 */

.pro_two_bg {

  background-image: url(../images/m_pro2_bg.jpg);

  background-repeat: no-repeat;

  background-size: cover;

  background-position: center bottom;

}



.scroll-track {

  position: relative;

  min-height: 250vh;

}



/* 粘性视图：在滚动轨道内始终吸附在屏幕上 */

.sticky-viewport {

  position: sticky;

  top: 0;

  height: 120vh;

  width: 100%;

  overflow: hidden;

  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: flex-start;

}



.sticky-viewport .m_pd {

  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: flex-start;

  perspective: 1200px;

  padding-top: 190px;



  height: 100%;

}



.sticky-viewport .max936 {

  margin-bottom: 40px;

}



/* 图片包裹层及图片 */

.image-wrapper {

  width: 100%;

  transform-origin: center bottom;

  will-change: transform;

  z-index: 1;

}



.dashboard-img {

  width: 100%;

  height: auto;

  display: block;

}



@media (max-width:1200px) {

  .scroll-track {

    min-height: inherit;

  }



  .sticky-viewport .m_pd {

    padding-top: 100px;

  }



  .sticky-viewport {

    height: auto;

  }



  .image-wrapper {

    transform: inherit !important;

  }

}



/* case */

.ban_black .pd p {

  color: #222;

}



.ban_black .pd span {

  color: #666;

}



.m_case_box {

  background-color: #f0f3f7;

}



.case_last_box {

  padding: 70px 0;

  background-repeat: no-repeat;

  background-position: center;

  background-size: cover;

  overflow: hidden;

}



.case_last_box .t {

  color: var(--white-color);

  font-style: normal;

  font-weight: 700;

}



.case_last_box .des {

  padding-top: 15px;

  color: var(--white-color);

  font-style: normal;

  font-weight: 400;

  line-height: normal;

}



.case_last_box .m_page_more {

  padding-top: 38px;

}



.m_page_more {

  display: flex;

  align-items: center;

  justify-content: center;

}



.m_page_more a {

  margin-left: 10px;

  margin-right: 10px;

  display: flex;

  align-items: center;

  justify-content: center;

  min-width: 160px;

  height: 50px;

  border-radius: 4px;

  border: 1px solid rgba(255, 255, 255, 0.7);

  font-size: 16px;

  font-style: normal;

  font-weight: 400;

  line-height: normal;

  transition: all 0.3s;

}



.m_page_more a i {

  margin-left: 10px;

  width: 15px;

  height: 15px;

  background-repeat: no-repeat;

}



.m_page_more .white_border {

  color: var(--white-color);

}



.m_page_more .white_bg {

  color: #0062ff;

  background: linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, 0.78) 100%);

}



.m_page_more .white_border i {

  background-image: url(../images/m_case_more_jt1.svg);

}



.m_page_more .white_bg i {

  background-image: url(../images/m_case_more_jt2.svg);

}



.m_page_more .white_border:hover {

  color: #0062ff;

  background: linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, 0.78) 100%);

}



.m_page_more .white_border:hover i {

  background-image: url(../images/m_case_more_jt2.svg);

}



.new_top_bg {

  padding-top: 85px;

  overflow: hidden;

}



.new_swiper .button {

  position: absolute;

  left: 50%;

  bottom: 40px;

  padding-right: 40px;

  padding-left: 40px;

  width: 50%;

  display: flex;

  align-items: center;

  justify-content: space-between;

  z-index: 9;

}



.new_swiper .new_pagination {

  position: relative;

}



.new_swiper .new_pagination span {

  margin-right: 6px;

  width: 17px;

  height: 3.5px;

  border-radius: 8px;

  background: rgba(0, 0, 0, 0.1);

  opacity: 1;

}



.new_swiper .new_pagination span.swiper-pagination-bullet-active {

  background: var(--blue-color);

  width: 53px;

}



.right_button {

  display: flex;

  align-items: center;

}



.right_button>div {

  display: flex;

  width: 50px;

  height: 50px;

  padding: 14px;

  justify-content: center;

  align-items: center;

  border-radius: 54px;

  background-color: #f0f3f7;

  transition: all 0.3s;

  cursor: pointer;

}



.right_button>div:first-child {

  margin-right: 7px;

}



.right_button>div:hover {

  background-color: var(--blue-color);

}



.right_button>div:hover svg path {

  stroke: var(--white-color);

}



.new_swiper .swiper-slide {

  opacity: 0 !important;

}



.new_swiper .swiper-slide .bg {

  position: relative;

  width: 100%;

  display: flex;

  border-radius: 16px;

  background: var(--white-color);

  overflow: hidden;

}



.new_swiper .swiper-slide.swiper-slide-active {

  opacity: 1 !important;

}



.new_swiper .new_s_left {

  order: 2;

  width: 50%;

  position: relative;

  padding: 40px 44px;

}



.new_swiper .new_s_right {

  width: 50%;

  height: 492px;

  overflow: hidden;

}



.new_swiper .new_s_left .time {

  color: #666;

  font-size: 16px;

  font-style: normal;

  font-weight: 400;

  line-height: 26px;

}



.new_swiper .new_s_left .t {

  margin-top: 20px;

  color: var(--dark-color);

  font-style: normal;

  font-weight: 700;

  line-height: 1.5;

  max-height: 108px;

}



.new_swiper .new_s_left .des {

  margin-top: 20px;

  color: #666;

  font-size: 16px;

  font-style: normal;

  font-weight: 400;

  line-height: 26px;

  height: 52px;

  overflow: hidden;

  display: -webkit-box;

  -webkit-line-clamp: 2;

  -webkit-box-orient: vertical;

}



.new_swiper .new_s_right i {

  display: block;

  width: 100%;

  height: 100%;

  background-repeat: no-repeat;

  background-position: center;

  background-size: cover;

}



.new_swiper .new_s_left a:hover span {

  border-color: var(--main-color);

  color: var(--white-color);

}



/* case list */

.banner_n .banner_img.mobile img {

  object-fit: cover;

}



.m_bgan_list {

  padding-top: 80px;

}



.m_bgan_list .case_title {

  color: #000;

  font-style: normal;

  font-weight: 700;

  line-height: 30px;

}



.nav-wrapper {

  position: relative;

  margin-top: 24px;

  margin-bottom: 30px;

}



.nav-tabs {

  display: flex;

  overflow-x: auto;

  padding: 0px 0 10px 0;

  white-space: nowrap;

  cursor: grab;

  user-select: none;

  scroll-behavior: smooth;

}



.nav-tabs::-webkit-scrollbar {

  height: 6px;

}



.nav-tabs::-webkit-scrollbar-track {

  background: #f1f1f1;

  border-radius: 10px;

}



.nav-tabs::-webkit-scrollbar-thumb {

  background: #d1d5db;

  border-radius: 10px;

}



.nav-tabs::-webkit-scrollbar-thumb:hover {

  background: #9ca3af;

}



.nav-tabs.grabbing {

  cursor: grabbing;

  scroll-behavior: auto !important;

}



.nav-link {

  display: flex;

  padding: 16px 24px;

  justify-content: center;

  align-items: center;

  margin-right: 16px;

  border-radius: 64px;

  background: #fff;

  transition: all 0.2s ease;

  border: 1px solid transparent;

}



.nav-link:last-child {

  margin-right: 0;

}



.nav-link:hover {

  background-color: var(--blue-color);

  color: var(--white-color);

}



.nav-link.active {

  background-color: var(--blue-color);

  color: var(--white-color);

}



/* 案例网格布局 */

.case-grid .show_swiper {

  margin-top: 35px;

}



.case-grid ul {

  display: flex;

  flex-wrap: wrap;

  margin-left: -10px;

  margin-right: -10px;

}



.case-grid ul li {

  padding: 10px;

  width: 33.33%;

}



.case-grid .show_swiper .cont {

  position: relative;

  padding: 28px;

}



.case-grid .show_swiper .cont .t {

  margin-top: 20px;

  font-size: 22px;

  color: var(--dark-color);

  font-style: normal;

  font-weight: 400;

  line-height: 1.5;

  height: auto;

  max-height: 72px;

}



.case-grid .more {

  position: absolute;

  left: 0;

  left: 28px;

  top: 180px;

  display: flex;

  align-items: center;

  padding: 7px 0;

  color: var(--blue-color);

  font-size: 14px;

  font-style: normal;

  font-weight: 400;

  opacity: 0;

  transition: all 0.4s;

}



.case-grid .more i {

  margin-left: 7px;

  width: 22px;

  height: 22px;

  background-image: url(../images/m_case_listjt.svg);

  background-repeat: no-repeat;

}



.case-grid a:hover .more {

  opacity: 1;

}



@media (max-width: 1280px) {

  .new_swiper .new_pagination span.swiper-pagination-bullet-active {

    width: 30px;

  }

}



@media (max-width: 1024px) {

  .new_swiper .new_s_right {

    height: 400px;

  }



  .new_swiper .new_s_left {

    width: 50%;

    padding: 40px 35px;

  }



  .new_swiper .new_pagination span.swiper-pagination-bullet-active {

    width: 40px;

  }



  .case-grid .show_swiper .cont .t {

    font-size: 20px;

  }

}



@media (max-width: 767px) {

  .new_top_bg {

    padding-top: 50px;

  }



  .new_swiper .swiper-wrapper {

    align-items: stretch;

  }



  .new_swiper .swiper-slide {

    height: auto;

  }



  .new_swiper .swiper-slide .bg {

    flex-flow: column;

    height: 100%;

  }



  .new_swiper .new_s_left {

    width: 100%;

    padding: 30px 25px;

    padding-bottom: 100px;

  }



  .new_swiper .new_s_right {

    height: auto;

    width: 100%;

  }



  .new_swiper .button {

    left: 0%;

    bottom: 25px;

    padding-right: 25px;

    padding-left: 25px;

    width: 100%;

  }



  .new_swiper .new_pagination span.swiper-pagination-bullet-active {

    width: 17px;

  }



  .m_bgan_list {

    padding-top: 50px;

  }



  .nav-link {

    padding: 12px 24px;

  }



  .case-grid ul li {

    width: 100%;

  }



  .case-grid .more {

    left: 28px;

    top: 165px;

    opacity: 1;

  }

}



/*page*/

.paged {

  padding: 50px 0 50px 0;

  text-align: center;

  overflow: hidden;

}



.paged .pagination {

  display: flex;

  align-items: center;

  justify-content: center;

}



.paged .pagination li {

  display: inline-block;

}



.paged:after {

  clear: both;

  content: "";

  width: 0px;

  display: block;

  height: 0px;

  visibility: hidden;

}



.paged span,

.paged a {

  display: flex;

  align-items: center;

  justify-content: center;

  margin: 0 8px;

  padding: 4px;

  height: 64px;

  width: 64px;

  font-size: 18px;

  font-weight: 400;

  border-radius: 56px;

  background: var(--white-color);

}



.paged ul li:first-child a:hover,

.paged ul li:first-child span:hover,

.paged ul li:last-child a:hover,

.paged ul li:last-child span:hover,

.paged a:hover,

.paged .active span {

  color: var(--white-color);

  background-color: var(--blue-color);

}



.paged a:hover svg path {

  stroke: var(--white-color);

}



.paged ul li.disabled span {

  cursor: default;

  pointer-events: none;

}



@media (max-width: 767px) {

  .paged {

    padding: 30px 0 30px 0;

  }



  .paged span,

  .paged a {

    font-size: 16px;

    padding: 0 5px;

    margin: 0 2px;

    width: 40px;

    height: 40px;

  }



  .paged ul li:first-child span,

  .paged ul li:last-child a,

  .paged ul li:first-child a,

  .paged ul li:last-child span {

    width: 40px;

    height: 40px;

  }



  .paged ul li:first-child a,

  .paged ul li:first-child span,

  .paged ul li:last-child a,

  .paged ul li:last-child span {

    display: none;

  }

}



/* 标杆案例 详情 */

.height90 {

  height: 90px;

}



.bg_d_first {

  padding: 80px 0;

  background-image: url(../images/m_bgal_bg01.jpg);

  background-repeat: no-repeat;

  background-position: center bottom;

  background-size: cover;

}



.m_top_box {

  justify-content: space-between;

  align-items: stretch;

}



.m_top_box .top_left {

  display: flex;

  flex-flow: column;

  justify-content: space-between;

  width: 50%;

  padding-right: 70px;

}



.m_top_box .top_left .s_t {

  font-size: 16px;

  color: #666;

  font-style: normal;

  font-weight: 400;

  line-height: 25px;

}



.m_top_box .top_left .big_t {

  color: var(--dark-color);

  font-style: normal;

  font-weight: 700;

  line-height: 1.5;

}



.m_top_box .top_left .des {

  margin-top: 20px;

  padding-right: 10px;

  color: #666;

  font-size: 16px;

  font-style: normal;

  font-weight: 400;

  line-height: 26px;

  height: 182px;

  overflow-y: auto;

}



.m_top_box .top_left .m_btn {

  margin-top: 50px;

}



.m_top_box .thumb {

  margin-left: 10px;

  position: relative;

  width: 50%;

  border-radius: 16px;

  overflow: hidden;

}



.m_top_box .thumb img {

  width: 100%;

}



.m_top_box .thumb img:first-child {

  position: absolute;

  left: 0;

  top: 0;

  width: 100%;

  height: 100%;

  object-fit: contain;

}



@media (max-width: 1200px) {

  .m_top_box .top_left {

    padding-right: 30px;

  }



}



@media (max-width: 1024px) {

  .m_top_box {

    flex-flow: column;

  }



  .m_top_box .top_left {

    padding-right: 0;

    width: 100%;

  }



  .m_top_box .top_left .des {

    padding-right: 0;

    height: auto;

  }



  .m_top_box .thumb {

    margin-top: 30px;

    margin-left: 0;

    width: 100%;

  }



}



@media (max-width: 767px) {



  .bg_d_first {

    padding: 50px 0;

  }



}



.m_bgal_two {

  padding: 100px 0 80px 0;

  background: var(--white-color);

}



.bgal_bg_box {

  position: relative;

  padding-top: 90px;

  padding-bottom: 70px;

  padding-left: 30px;

  padding-right: 30px;

  overflow: hidden;

}



/* 头部背景装饰 */

.bgal_bg_box::before {

  content: "";

  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  background-image: url(../images/m_bgal_bg02.jpg);

  background-repeat: no-repeat;

  background-size: cover;

  box-shadow: -8px 24px 52.66px #D4DEED;

  border-radius: 10px;

  z-index: 1;

}



.bgal_bg_box .n_cont {

  position: relative;

  z-index: 10;

  max-width: 830px;

  margin: 0 auto;

  text-align: center;

}



.bgal_bg_box .n_cont h2 {

  color: #fff;

  font-style: normal;

  font-weight: 700;

  line-height: normal;

}



.bgal_bg_box .n_cont p {

  margin-top: 40px;

  color: var(--white-color);

  font-size: 16px;

  font-style: normal;

  font-weight: 400;

  line-height: 26px;

}



/* 向下滚动图标 */

.bgal_bg_box .scroll-icon {

  margin-top: 100px;

  width: 46px;

  height: 46px;

  border: 1px white dashed;

  border-radius: 50%;

  background-image: url(../images/arrow-right.svg);

  background-size: 22px;

  background-repeat: no-repeat;

  background-position: center;

  animation: bounce 1s infinite;

  display: inline-block;

}



@keyframes bounce {



  0%,

  100% {

    transform: translateY(0);

  }



  50% {

    transform: translateY(-0.5rem);

  }

}



.bgal_td_list {

  padding-top: 100px;

}



.bgtd_title {

  color: #181818;

  font-style: normal;

  font-weight: 700;

  line-height: normal;

}



.bgal_td_list .pain-points {

  padding-top: 30px;

}



.bgal_td_list .pain-points ul {

  margin-left: -10px;

  margin-right: -10px;

  display: flex;

  align-items: stretch;

  flex-wrap: wrap;

}



.bgal_td_list .pain-points ul li {

  padding: 10px;

  padding-top: 20px;

  width: 25%;

}



/* 卡片样式 */

.bgal_td_list .pain-points .div {

  min-height: 284px;

  height: 100%;

  padding: 40px;

  border-radius: 10px;

  background: linear-gradient(0deg, #FFF 0%, #FFF 100%), #F5F9FF;

  box-shadow: 4px 0px 30px 0 rgba(212, 222, 237, 0.50);

  transition: all 0.3s ease;

}



.bgal_td_list .pain-points ul li:hover .div {

  transform: translateY(-8px);

}



.bgal_td_list .pain-points .div>div:first-child {

  width: 58px;

  height: 58px;

  border-radius: 50%;

  border: 1px dashed var(--blue-color);

  display: flex;

  align-items: center;

  justify-content: center;

  margin: 0 auto;

}



.bgal_td_list .pain-points .div>div:first-child span {

  display: flex;

  width: 36px;

  height: 36px;

  flex-direction: column;

  justify-content: center;

  align-items: center;

  border-radius: 30px;

  background: var(--blue-color);

  color: var(--white-color);

  text-align: center;

  font-size: 18px;

  font-style: normal;

  font-weight: 400;

}



.bgal_td_list .pain-points h3 {

  margin-top: 30px;

  color: var(--dark-color);

  text-align: center;

  font-size: 17px;

  font-style: normal;

  font-weight: 400;

  line-height: normal;

}



.bgal_td_list .pain-points p {

  margin-top: 10px;

  color: #666;

  text-align: center;

  font-size: 16px;

  font-style: normal;

  font-weight: 290;

  line-height: 24px;

  /* 150% */

}



@media (max-width: 1366px) {

  .bgal_td_list .pain-points .div {

    padding: 40px 30px;

  }



}



@media (max-width: 1200px) {

  .bgal_td_list .pain-points ul li {

    width: 50%;

  }



}



@media (max-width: 767px) {

  .m_bgal_two {

    padding: 50px 0 50px 0;

  }



  .bgal_td_list {

    padding-top: 50px;

  }



  .bgal_td_list .pain-points ul li {

    width: 100%;

  }



}



/*方案优势 */

.bgal_d_adv {

  position: relative;

  padding: 100px 0 80px 0;

  overflow: hidden;

  z-index: 1;

}



.bgal_d_adv:after {

  content: "";

  position: absolute;

  left: 0;

  top: 0;

  width: 100%;

  height: calc(100% - 67px);

  background-color: #F0F3F7;

  background-image: url(../images/bgal_fa_bg.png);

  background-repeat: no-repeat;

  background-size: cover;

  background-position: top center;

  z-index: -1;

}



.bgal_adv_loop {

  position: relative;

  margin-top: 30px;

}

.bgal_adv_loop .adv_swiper {

  overflow: visible;

}

.bgal_adv_loop .solution-card {

  display: flex;

  flex-flow: column;

  height: 100%;

  border-radius: 10px;

  background: #F7F8FB;

  box-shadow: 0px 6px 20px 0 rgba(212, 222, 237, 0.50);

  transition: transform .4s;

  overflow: hidden;

}



.bgal_adv_loop .swiper-slide {

  padding: 30px 10px;

  height: auto;

}



.bgal_adv_loop .card-image {

  position: relative;

}



.bgal_adv_loop .card-image img:first-child {

  position: absolute;

  left: 50%;

  top: 50%;

  transform: translate(-50%, -50%);

  width: 100%;

  height: 100%;

  display: block;

  object-fit: cover;

  transition: transform 0.4s;

}



.bgal_adv_loop .card-content {

  display: flex;

  padding: 40px 32px;

  flex-direction: column;

  align-items: flex-start;

  align-self: stretch;

  flex: 1;

  border-radius: 0 0 10px 10px;

  background: #FFF;

}



.bgal_adv_loop .card-title {

  color: #333;

  font-size: 20px;

  font-style: normal;

  font-weight: 700;

  line-height: normal;

}



.bgal_adv_loop .card-desc {

  margin-top: 20px;

  color: #666;

  font-size: 16px;

  font-style: normal;

  font-weight: 290;

  line-height: 24px;

}



.bgal_adv_loop .solution-card:hover {

  transform: translateY(-8px);

}



.adv_button {

  position: absolute;

  display: flex;

  align-items: center;

  justify-content: center;

  right: -35px;

  top: 50%;

  transform: translateY(-50%);

  width: 90px;

  height: 90px;

  border-radius: 50%;

  background: linear-gradient(130deg, rgba(76, 195, 255, 0.00) 32.29%, #4CC3FF 84.48%), linear-gradient(0deg, #1D89FF 0%, #1D89FF 100%), #1D89FF;

  z-index: 9;

}



.adv_button>div {

  cursor: pointer;

}



@media (max-width: 991px) {

  .adv_button {

    right: -25px;

    width: 70px;

    height: 70px;

  }



}



@media (max-width: 767px) {



  .bgal_d_adv {

    padding: 50px 0 30px 0;

  }



  .adv_swiper {

    overflow: visible;

  }



  .adv_button {

    right: -16px;

    width: 60px;

    height: 60px;

  }



  .adv_button>div {

    width: 26px;

  }



  .adv_button>div svg {

    width: 100%;

  }

}



/* 系统展示 */

.bgal_d_system {

  position: relative;

  padding: 100px 0;



  overflow: hidden;

  z-index: 1;

}



.bgal_d_system:after {

  content: "";

  position: absolute;

  left: 0;

  top: 0;

  width: 100%;

  height: 100%;

  background-image: url(../images/bgal_xt_bg.jpg);

  background-repeat: no-repeat;

  background-size: cover;

  background-position: top center;

  z-index: -1;

}



.d_system_cont {

  margin-top: 60px;

  padding: 60px 125px;

  width: 100%;

  border-radius: 20px;

  border: 1px solid #FFF;

  background: rgba(242, 243, 248, 0.50);

  box-shadow: -8px 24px 52.66px 0 #D4DEED;

}



.xt_swiper {

  border-radius: 10px;

}

.xt_swiper .swiper-slide {

  display: flex;

  align-items: center;

  justify-content: center;

  height: auto;

}

.xt_swiper .thumb {

  border-radius: 10px;

  overflow: hidden;

}



.d_system_cont {

  position: relative;

}



.system_button {

  display: flex;

  align-items: center;

  justify-content: center;

}



.system_button>div {

  position: absolute;

  top: 50%;

  transform: translateY(-50%);

  display: flex;

  align-items: center;

  justify-content: center;

  width: 50px;

  height: 50px;

  border: 1px dashed rgba(102, 116, 140, 0.7);

  border-radius: 50%;

  cursor: pointer;

}



.system_button .xt-prev {

  left: 35px;

}



.system_button .xt-next {

  right: 35px;

}



@media (max-width: 1200px) {



  .d_system_cont {

    padding: 60px 55px;

  }



  .system_button .xt-prev {

    left: 5px;

  }



  .system_button .xt-next {

    right: 5px;

  }



  .system_button>div {



    width: 46px;

    height: 46px;



  }



}



@media (max-width: 991px) {



  .d_system_cont {

    margin-top: 40px;

    padding: 40px 20px;

  }



  .system_button {

    margin-top: 20px;

  }



  .system_button .xt-prev {

    left: -5px;

  }



  .system_button .xt-next {

    right: -5px;

  }



  .system_button>div {

    position: relative;

    width: 46px;

    height: 46px;

    top: inherit;

    transform: inherit;

  }



}



@media (max-width: 767px) {



  .bgal_d_system {

    padding: 50px 0;

  }



}



.bg_d_last {

  padding: 88px 0;

  background-color: #f0f3f7;

  overflow: hidden;

}



.bg_d_last .page_title {

  justify-content: space-between;

  align-items: center;

}



.bg_d_last .more {

  position: absolute;

  left: 0;

  left: 28px;

  top: 180px;

  display: flex;

  align-items: center;

  padding: 7px 0;

  color: var(--blue-color);

  font-size: 14px;

  font-style: normal;

  font-weight: 400;

  opacity: 0;

  transition: all 0.4s;

}



.bg_d_last .more i {

  margin-left: 7px;

  width: 22px;

  height: 22px;

  background-image: url(../images/m_case_listjt.svg);

  background-repeat: no-repeat;

}



.bg_d_last a:hover .more {

  opacity: 1;

}



.m_dxcase_button {

  margin-top: 48px;

  display: flex;

  align-items: center;

  justify-content: space-between;

  z-index: 9;

}



.m_dxcase_button .sjcse_pagination {

  position: relative;

}



.m_dxcase_button .sjcse_pagination span {

  margin-right: 6px;

  width: 17px;

  height: 3.5px;

  border-radius: 8px;

  background: rgba(0, 0, 0, 0.1);

  opacity: 1;

}



.m_dxcase_button .sjcse_pagination span.swiper-pagination-bullet-active {

  background: var(--blue-color);

  width: 53px;

}



.m_dxcase_button .swiper-slide.swiper-slide-active {

  opacity: 1 !important;

}



.m_dxcase_button .right_button>div {

  width: 46px;

  height: 46px;

  padding: 11px;

  border-radius: 60px;

  background: #FFF;

}



.m_dxcase_button .right_button>div:hover {

  background-color: var(--blue-color);

}



@media (max-width: 1200px) {

  .height90 {

    height: 62px;

  }



  .bgal_adv_loop .card-content {

    padding: 40px 30px;

  }

}







@media (max-width: 767px) {

  .bg_d_last {

    padding: 50px 0;

  }



  .bg_d_last .page_title {

    flex-flow: column;

  }



  .bg_d_last .m_btn {

    margin-top: 30px;

  }



  .m_dxcase_button .sjcse_pagination span.swiper-pagination-bullet-active {

    width: 17px;

  }



  .m_dxcase_button {

    margin-top: 30px;

  }



  .bg_d_last .more {

    left: 28px;

    top: 165px;

    opacity: 1;

  }





}



/* index */

.m_new_banner {

  position: relative;

  height: 960px;

  max-height: 100vh;

  overflow: hidden;

}



@media (min-width: 1921px) {

  .m_new_banner .m_banner_btn {

    top: 54%;

  }

  .m_new_banner .index_banner_text {

    margin-top: -250px;

  }



}

@media (min-width: 1024px) and (max-width: 1920px) {

  .m_new_banner .index_banner_text {

    margin-top: -150px;

  }



  .m_new_banner .m_banner_btn {

    bottom: inherit;

    top: 60%;

  }

}



/* index first */

.index_m_first {

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;



  z-index: 9;

}



.index_m_first::before {

  content: '';

  position: absolute;

  left: 0;

  right: 0;

  bottom: 0;

  height: 147px;

  background-image: url(../images/m_first_bg.svg);

  background-repeat: no-repeat;

  background-size: cover;

  z-index: -1;

}



.index_m_first ul {

  display: flex;

  align-items: flex-end;

  margin-left: -10px;

  margin-right: -10px;

}



.index_m_first ul li {

  padding: 0 10px;

  width: 20%;

}



.index_m_first .bg {

  display: flex;

  flex-flow: column;

  height: 132px;

  padding: 20px;

  justify-content: center;

  align-items: center;

  border-radius: 10px 10px 0 0;

  background: linear-gradient(180deg, rgba(255, 255, 255, 0.70) 0%, #FFF 100%);

  backdrop-filter: blur(7.5px);

  transition: height 0.5s ease;

}



.index_m_first .bg .number {

  color: var(--dark-color);

  font-size: 16px;

  font-style: normal;

  font-weight: 400;

}



.index_m_first .bg .number strong {

  margin-right: 2px;

  color: var(--dark-color);

  font-family: "Montserrat";

  font-size: 40px;

  font-style: normal;

  font-weight: 700;

  line-height: normal;

  background: linear-gradient(117deg, #00D2FF 8.31%, #0062FF 91.76%);

  background-clip: text;

  -webkit-background-clip: text;

  -webkit-text-fill-color: transparent;

}



.index_m_first .bg .t {

  margin-top: 4px;

  color: var(--dark-color);

  font-size: 16px;

  font-style: normal;

  font-weight: 400;

  line-height: normal;

}



.index_m_first .bg .text {

  color: #FFF;

  text-align: center;

  font-size: 14px;

  font-style: normal;

  font-weight: 400;

  line-height: 21px;

  height: 0;

  opacity: 0;

  transition: all 0.3s ease;

  overflow: hidden;

}



.index_m_first .bg:hover {

  height: auto;

}



.index_m_first .bg:hover {

  background: linear-gradient(102deg, #00D2FF -9.9%, #0062FF 101.36%), #0062FF;

}



.index_m_first .bg:hover .t {

  color: var(--white-color);

}



.index_m_first .bg:hover .number {

  color: var(--white-color);

}



.index_m_first .bg:hover .number strong {

  color: #FFF;

  -webkit-text-fill-color: inherit;

  background: transparent;

}



.m_firswiper {

  border-radius: 10px;



}



.fir-pagination {

  margin-top: 10px;

  position: relative;

  text-align: center;

  width: 100%;

}



.fir-pagination span {

  opacity: 1;

  background-color: rgba(0, 0, 0, 0.2);

  margin: 0 4px;

}



.fir-pagination span.swiper-pagination-bullet-active {

  background-color: var(--blue-color);

}



@media (min-width: 1024px) {

  .m_new_banner .m_banner {

    width: 100%;

    height: 100vh;

  }



  .index_m_first .bg:hover .text {

    height: auto;

    opacity: 0.5;

    overflow: visible;

    margin-top: 10px;

    min-height: 60px;

  }





}



@media (max-width: 1366px) {



  .index_m_first .bg .number strong {

    font-size: 36px;

  }



}



@media (max-width: 1024px) {

  .m_new_banner {

    height: auto;

    max-height: inherit;

  }



  .index_m_first {

    position: relative;

    padding: 30px 0;

    background: #F5F9FF;

  }



  .index_m_first::before {

    display: none;

  }



  .index_m_first ul {

    flex-wrap: wrap;

    align-items: stretch;

  }



  .index_m_first ul li {

    padding: 10px;

    width: 33.33%;

  }



  .index_m_first .bg {

    height: 100%;

    border-radius: 10px;

  }

  .index_m_first .bg:hover {

    height: 100%;

  }

  .index_m_first .bg .text {

    margin-top: 10px;

    height: auto;

    opacity: 1;

    color: #666;

    transition: inherit;

  }



  .index_m_first .bg .number strong {

    font-size: 32px;

  }



  .index_m_first .bg:hover .text {

    color: rgba(255, 255, 255, 0.5);

  }



}





@media (max-width: 767px) {

  .index_m_first ul li {

    width: 100%;

  }



}



.m_index_pain {

  margin-top: 60px;

  margin-left: 60px;

  margin-right: 60px;

  padding-top: 100px;

  padding-bottom: 80px;

  background-image: url(../images/m_industy_bg.jpg);

  background-repeat: no-repeat;

  background-size: cover;

  background-position: center bottom;

  border-radius: 24px;

  overflow: hidden;

}



.index_m_title {

  max-width: 976px;

  margin: 0 auto;

}



.index_m_title .big_t {

  color: var(--dark-color);

  font-style: normal;

  font-weight: 700;

  line-height: 1.5;

}



.index_m_title .small_t {

  margin-top: 20px;

  display: flex;

  justify-content: center;

  align-items: center;

  flex-wrap: wrap;

  color: #666;

  font-size: 20px;

  font-style: normal;

  font-weight: 400;

  line-height: 1.5;

}



.index_m_title .small_t span {

  margin-left: 8px;

  padding: 4px 6px;

  border-radius: 6px;

  background: rgba(29, 137, 255, 0.20);

  color: var(--blue-color);

}





/* 五大痛点卡片 */

.pain-points-grid {

  display: flex;

  align-items: stretch;

  flex-wrap: wrap;

  margin-top: 40px;

  width: 100%;

}



.pain-point-card {

  position: relative;

  width: calc(33.33% - 32px);

  margin: 16px;



  padding: 24px;

  overflow: hidden;

  border-radius: 16px;

  border: 1px solid rgba(29, 137, 255, 0.10);

  background: var(--white-color);

  transition: all 0.3s ease;

}



.pain-point-card:hover {

  transform: translateY(-8px);

  box-shadow: 0 8px 32px rgba(29, 137, 255, 0.15);

}



/* 卡片顶部图标 */

.pain-point-card .card-icon {

  width: 48px;

  height: 48px;

  margin-bottom: 24px;

}



.pain-point-card .card-icon img {

  width: 100%;

  height: 100%;

  object-fit: contain;

}



/* 卡片标题 */

.pain-point-card .card-title {

  font-size: 20px;

  font-weight: 700;

  color: #333;

  line-height: 1.5;

  margin-bottom: 16px;

}



/* 特点列表 */

.pain-point-card .feature-list {

  display: flex;

  flex-direction: column;

}



.pain-point-card .feature-item {

  display: flex;

  align-items: flex-start;

  margin-bottom: 8px;

}



.pain-point-card .feature-item:last-child {

  margin-bottom: 0;

}



.pain-point-card .feature-item .feature-icon {

  margin-top: 12px;

  margin-right: 8px;

  width: 4px;

  height: 4px;

  background-color: var(--blue-color);

  border-radius: 50%;

}





.pain-point-card .feature-item .feature-text {

  flex: 1;

  font-size: 16px;

  font-weight: 400;

  color: #666;

  line-height: 26px;

}



/* 右上角标签 */

.pain-point-card .card-tag {

  position: absolute;

  top: 0;

  right: 0;

  padding-left: 14px;

  width: 96px;

  height: 38px;

  display: flex;

  align-items: center;

  justify-content: center;

}



.pain-point-card .card-tag .tag-icon {

  position: absolute;

  right: 0;

  top: 0;

  width: 100%;

  height: 100%;

  background-image: url(../images/m_pain_bg.svg);

  background-repeat: no-repeat;

}





.pain-point-card .card-tag .tag-text {

  font-size: 16px;

  font-weight: 400;

  color: var(--blue-color);

}





@media (max-width: 1580px) {



  .m_index_pain .m_pd {

    padding: 0 5%;

  }





}



@media (max-width: 1366px) {



  .m_index_pain .m_pd {

    padding: 0 4%;

  }





}



@media (max-width: 1024px) {

  .m_index_pain {

    margin-left: 40px;

    margin-right: 40px;

    padding-top: 60px;

    padding-bottom: 40px;

  }

  .pain-point-card {

    width: calc(50% - 32px);

  }



}



@media (max-width: 767px) {

  .index_m_title .small_t {

    margin-top: 16px;

    font-size: 16px;

  }



  .index_m_title .small_t span {

    margin-top: 4px;

  }



  .m_index_pain {

    margin-top: 30px;

    margin-left: 16px;

    margin-right: 16px;

    padding-top: 50px;

    padding-bottom: 40px;

    border-radius: 16px;

  }



  .pain-point-card {

    width: 100%;

    margin: 0;

    margin-top: 16px;

  }

}



/* product */

.m_in_product {

  margin-top: 50px;

  padding: 100px 0;

  background-image: url(../images/m_index_probg.jpg);

  background-repeat: no-repeat;

  background-size: cover;

  background-position: center;

  overflow: hidden;

}



.m_in_product .big_t {

  color: var(--white-color);

}



.m_in_product .small_t {

  color: rgba(255, 255, 255, 0.8);

}



.m_probg_box {

  margin-top: 20px;

}



.m_probg_box .so-pagination {

  position: relative;

  bottom: inherit;

  margin-top: 20px;

}



.m_probg_box .swiper-wrapper {

  align-items: stretch
}



.m_probg_box .swiper-slide {

  margin-top: 20px;

  height: auto;

}



.m_probg_box .service-card {

  display: flex;

  justify-content: space-between;

  padding: 20px;

  height: 100%;

  border-radius: 16px;

  background: rgba(0, 72, 152, 0.60);

  backdrop-filter: blur(8px);

  transition: all 0.3s ease;

}



.m_probg_box .card-header {

  flex: 1;

  display: flex;

  flex-flow: column;

}



.m_probg_box .icon-box {

  width: 40px;

  margin-right: 18px;

}



.m_probg_box .card-title {

  color: var(--white-color);

  font-size: 18px;

  font-style: normal;

  font-weight: 700;

  line-height: 28px;

}



.m_probg_box .card-desc {

  margin-top: 8px;

  color: rgba(255, 255, 255, 0.6);

  font-size: 16px;

  font-style: normal;

  font-weight: 400;

  line-height: normal;

}



.swiper-pagination-bullet {

  background: #fff;

  opacity: 0.3;

}



.swiper-pagination-bullet-active {

  background: #fff;

  opacity: 1;

}



.m_probg_box .service-card:hover {

  transform: translateY(-8px);

}



.m_probg_bottom {

  padding-top: 34px;

  display: flex;

  align-items: stretch;

  justify-content: space-between;

}



.m_probg_bottom .m_probg_left {

  display: flex;

  flex-flow: column;

  width: calc(50% - 10px);

  height: 482px;

}



.m_probg_bottom .m_probg_right {

  display: flex;

  align-items: flex-start;

  width: calc(50% - 20px);

}



.m_probg_right .thumb {

  position: relative;

  display: flex;

  justify-content: center;

  align-items: center;

  height: 100%;

  width: 100%;

  border-radius: 16px;

  border: 1px solid #FFF;

  background: rgba(255, 255, 255, 0.90);

  box-shadow: 0 8px 80px 0 rgba(0, 27, 77, 0.08);

  overflow: hidden;

}



.m_probg_right .thumb::before {

  content: '';

  position: absolute;

  top: 0;

  left: 0;

  width: 68px;

  height: 79px;

  background-image: url(../images/m_cpqj_left.svg);

  background-repeat: no-repeat;

}



.m_probg_right .thumb::after {

  content: '';

  position: absolute;

  right: 0;

  bottom: 0;

  width: 71px;

  height: 47px;

  background-image: url(../images/m_cpqj_right.svg);

  background-repeat: no-repeat;

}



.m_probg_left .loop {

  display: flex;

  justify-content: space-between;

  padding: 16px 20px;

  margin-bottom: 10px;

  margin-right: 8px;

  border-radius: 16px;

  border-left: 3px solid #00D0FF;

  background: rgba(0, 72, 152, 0.60);

  backdrop-filter: blur(8px);

}



.m_probg_left .m_zm {

  display: flex;

  align-items: center;

  justify-content: center;

  width: 38px;

  color: #FFF;

  text-align: center;

  font-family: "Montserrat";

  font-size: 46px;

  font-style: normal;

  font-weight: 700;

  line-height: 0.9;

}



.m_probg_left .m_scoll {

  padding-right: 8px;

  flex: 1;

  width: 100%;

  overflow-y: auto;

}



.m_probg_left .m_scoll::-webkit-scrollbar {

  width: 4px;

  height: 2px;

}



.m_probg_left .m_scoll::-webkit-scrollbar-button:vertical {

  display: none;

}



.m_probg_left .m_scoll::-webkit-scrollbar-corner,

.m_probg_left .m_scoll::-webkit-scrollbar-track {

  background-color: rgba(255, 255, 255, 0.3);

}



.m_probg_left .m_scoll::-webkit-scrollbar-thumb {

  border-radius: 6px;

  background-color: rgba(255, 255, 255, 0.8);

}



.m_probg_left .accordion-item {

  margin-bottom: 10px;

  padding: 16px 20px;

  border-radius: 16px;

  border-left: 3px solid #00D0FF;

  background: rgba(0, 72, 152, 0.60);

  backdrop-filter: blur(8px);

  overflow: hidden;

}



.m_probg_left .accordion-item:last-child {

  margin-bottom: 0;

}



.m_probg_left .header-content {

  flex: 1;

  padding-left: 20px;

}



.accordion-header {

  display: flex;

  align-items: center;

  cursor: pointer;

  position: relative;

}



.m_probg_left .title {

  color: #FFF;

  font-size: 18px;

  font-style: normal;

  font-weight: 700;

  line-height: 28px;

}



.m_probg_left .subtitle {

  margin-top: 4px;



  color: rgba(255, 255, 255, 0.6);

  font-size: 16px;

  font-style: normal;

  font-weight: 400;

  line-height: 26px;

}



.m_probg_left .arrow-icon {

  width: 24px;

  height: 24px;

  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);

}



.m_probg_left .accordion-body {

  position: relative;

  display: none;

  margin-top: 16px;

  padding: 16px 0 0px 58px;

}



.m_probg_left .sub-item {

  margin-top: 10px;

  position: relative;

  padding-left: 30px;

  opacity: 0;

  transform: translateY(10px);

  transition: all 0.4s ease;

  transition-delay: 0.1s;

}



.m_probg_left .sub-item:first-child {

  margin-top: 0;

}



.m_probg_left .accordion-body::before {

  content: "";

  position: absolute;

  left: 58px;

  top: 0;

  width: 0;

  height: 1px;

  background-color: rgba(255, 255, 255, 0.2);

  transition: width .8s;

}



.m_probg_left .sub-item::before {

  content: "";

  position: absolute;

  left: 0;

  top: 3px;

  width: 20px;

  height: 20px;

  background-image: url(../images/m-check-circle.svg);

  background-repeat: no-repeat;

}



.accordion-item.active .sub-item {

  opacity: 1;

  transform: translateY(0);

}



.m_probg_left .sub-header {

  display: flex;

  align-items: center;

  font-weight: 500;

  margin-bottom: 4px;

  color: #FFF;

  font-size: 16px;

  font-style: normal;

  font-weight: 400;

  line-height: 24px;

}



.m_probg_left .sub-desc {

  color: rgba(255, 255, 255, 0.6);

  font-size: 16px;

  font-style: normal;

  font-weight: 400;

  line-height: 24px;

}



.accordion-item.active .arrow-icon {

  transform: rotate(180deg);

}



.m_probg_left .accordion-item.active .accordion-body::before {

  width: calc(100% - 58px);

}



@media (max-width: 1024px) {

  .m_probg_bottom {

    flex-flow: column;

  }



  .m_probg_bottom .m_probg_left {

    width: 100%;

    height: auto;

  }



  .m_probg_bottom .m_probg_right {

    margin-top: 30px;

    width: 100%;

  }



}



@media (max-width: 767px) {

  .m_in_product {

    margin-top: 30px;

    padding: 50px 0;

  }



  .m_probg_box .service-card {

    flex-flow: column;

  }



  .m_probg_box .icon-box {

    margin-bottom: 18px;

  }



  .m_probg_left .loop,

  .accordion-header {

    flex-flow: column;

    align-items: flex-start;

  }



  .m_probg_left .m_zm {

    justify-content: flex-start;

    font-size: 36px;

  }



  .m_probg_left .header-content {

    padding-left: 0;

    padding-top: 16px;

  }



  .m_probg_left .accordion-body {

    margin-top: 16px;

    padding: 16px 0 0px 0;

  }



  .m_probg_left .accordion-body::before {

    left: 0px;

  }



  .m_probg_left .arrow-icon {

    margin: 0 auto;

  }





}



/* 核心产品 */

.m_in_hertpro {

  padding-top: 80px;

  padding-bottom: 100px;

  background-image: url(../images/m_hertpro_bg.jpg);

  background-repeat: no-repeat;

  background-position: center top;

  background-size: cover;

  overflow: hidden;

}



.m_hertpro_cont {

  margin-top: 30px;

  display: flex;

  justify-content: space-between;

  align-items: stretch;

}



.m_hertpro_cont .hert_sidebar {

  padding-top: 60px;

  padding-bottom: 60px;

  width: 325px;

  border-radius: 16px;

  background: var(--white-color);

  overflow: hidden;

}



.hert-item {

  position: relative;

  display: flex;

  align-items: center;

  padding: 18px 20px 18px 30px;

  margin-bottom: 18px;

  min-height: 80px;

  cursor: pointer;

  z-index: 1;

  transition: all 0.3s;

}



.hert-item::before {

  content: "";

  position: absolute;

  left: 0;

  top: 0;

  width: 0;

  height: 100%;

  background: linear-gradient(130deg, rgba(76, 195, 255, 0.00) 32.29%, #4CC3FF 84.48%), linear-gradient(0deg, #1D89FF 0%, #1D89FF 100%), linear-gradient(90deg, #0062FF 0%, rgba(0, 98, 255, 0.00) 100%);

  transition: width .4s cubic-bezier(0.165, 0.84, 0.44, 1);

  z-index: -1;

}



.hert-item.active::before {

  width: 100%;

}



.hert-item .icon {

  width: 30px;

  height: 30px;

  margin-right: 10px;

}



.hert-item .icon img:nth-child(2) {

  display: none;

}



.hert-item span {

  flex: 1;

  color: #1D212D;

  font-size: 16px;

  font-style: normal;

  font-weight: 400;

}



.hert-item.active .icon img:nth-child(1) {

  display: none;

}



.hert-item.active .icon img:nth-child(2) {

  display: block;

}



.hert-item.active span {

  color: var(--white-color);

}



.m_hertpro_right {

  flex: 1;

  margin-left: 20px;



  overflow: hidden;

}



.content-item {

  display: none;

  border-radius: 16px;

  border: 1px solid #FFF;

  overflow: hidden;

  background: #FFF;

  animation: fadeIn 0.4s;

}



.content-item.active {

  display: block;

}



@keyframes fadeIn {

  from {

    opacity: 0;

    transform: translateY(10px);

  }



  to {

    opacity: 1;

    transform: translateY(0);

  }

}



.m_hertpro_right .top_bg {

  display: flex;

  align-items: center;

  justify-content: space-between;

  padding: 28px 32px;

  background-image: url(../images/m_hertpro_bg2.jpg);

  background-repeat: no-repeat;

  background-size: cover;

}



.m_hertpro_right .top_bg>div:first-child {

  flex: 1;

  margin-right: 30px;

  max-width: 730px;

}



.top_bg .content-title {

  margin-bottom: 8px;

  color: #1D2333;

  font-size: 24px;

  font-style: normal;

  font-weight: 700;

  line-height: 1.5;

}



.top_bg .content-desc {

  color: #666;

  font-size: 16px;

  font-style: normal;

  font-weight: 400;

  line-height: 26px;

}



.btn-detail {

  display: inline-flex;

  padding: 12px 25px;

  justify-content: center;

  align-items: center;

  border-radius: 30px;

  background: linear-gradient(130deg, rgba(76, 195, 255, 0.00) 32.29%, #4CC3FF 84.48%), linear-gradient(0deg, #1D89FF 0%, #1D89FF 100%), #0062FF;

}



.m_hertpro_right .grid {

  display: flex;

  flex-wrap: wrap;

  padding: 26px 30px;

}



.m_hertpro_right .card {

  padding-bottom: 37px;

  width: 50%;

}



.m_hertpro_right .card:nth-child(3),

.m_hertpro_right .card:nth-child(4) {

  padding-bottom: 0;

}



.m_hertpro_right .card:nth-of-type(odd) {

  padding-right: 45px;

  border-right: 1px solid #EEE;

}



.m_hertpro_right .card:nth-of-type(even) {

  padding-left: 45px;

}



.m_hertpro_right .card:nth-child(n+3) {

  padding-top: 36px;

  border-top: 1px solid #EEE;

}



.m_hertpro_right .card-tag {

  display: inline-block;

  padding: 4px 6px;

  border-radius: 6px;

  background: #DCE8FF;

  color: var(--blue-color);

  font-size: 14px;

  font-style: normal;

  font-weight: 400;

  line-height: 24px;

}



.m_hertpro_right .card-title {

  margin-top: 16px;

  color: #000;

  font-size: 18px;

  font-style: normal;

  font-weight: 400;

  line-height: 24px;

}



.m_hertpro_right .card-desc {

  margin-top: 10px;

  color: #666;

  font-size: 16px;

  font-style: normal;

  font-weight: 290;

  line-height: 24px;

}



@media (max-width: 1279px) {

  .m_hertpro_right .top_bg {

    flex-flow: column;

    align-items: flex-start;

  }



  .m_hertpro_right .top_bg>div:first-child {

    margin-right: 0px;

    max-width: 100%;

  }



  .m_hertpro_right .jt_more {

    padding-top: 25px;

  }



  .m_hertpro_cont .hert_sidebar {

    width: 300px;

  }



  .hert-item {

    padding: 18px 20px 18px 20px;

  }



  .m_hertpro_right .card {

    padding-bottom: 27px;

  }



  .m_hertpro_right .card:nth-of-type(odd) {

    padding-right: 35px;

  }



  .m_hertpro_right .card:nth-of-type(even) {

    padding-left: 35px;

  }



  .m_hertpro_right .card:nth-child(n+3) {

    padding-top: 26px;

  }



}



@media (max-width: 991px) {

  .m_hertpro_cont .hert_sidebar {

    width: 220px;

  }



  .m_hertpro_right .card {

    padding-bottom: 16px !important;

    margin-bottom: 16px;

    width: 100%;

    border: none !important;

    border-bottom: 1px solid #EEE !important;

  }



  .m_hertpro_right .card:nth-of-type(odd) {

    padding-right: 0;

  }



  .m_hertpro_right .card:nth-of-type(even) {

    padding-left: 0;

  }



  .m_hertpro_right .card:nth-child(n+3) {

    padding-top: 0;

  }



  .m_hertpro_right .top_bg {

    padding: 26px;

  }



  .m_hertpro_right .grid {

    padding: 26px;

  }

}



@media (max-width: 991px) {

  .m_hertpro_cont {

    flex-direction: column;

    gap: 0;

  }



  .m_hertpro_cont .hert_sidebar {

    width: 100%;

    padding: 20px 16px;

    display: flex;

    overflow-x: auto;

    -webkit-overflow-scrolling: touch;

    border-bottom: 1px solid var(--border-color);

    position: sticky;

    top: 0;

    z-index: 100;

    scrollbar-width: none;

  }



  .hert_sidebar::-webkit-scrollbar {

    display: none;

  }



  .hert-item::before {

    display: none;

  }



  .hert-item {

    flex: 0 0 auto;

    padding: 15px 0;

    min-height: inherit;

    margin-bottom: 0;

    width: 180px;

    margin-right: 16px;

    border-bottom: 3px solid transparent;

  }



  .hert-item:last-child {

    margin-right: 0;

  }



  .hert-item.active {

    border-bottom-color: var(--blue-color);

  }



  .hert-item.active span {

    color: var(--blue-color);

    line-height: 1.5;

  }



  .m_hertpro_right {

    margin-top: 30px;

    margin-left: 0;

  }





}



@media (max-width: 767px) {

  .m_in_hertpro {

    padding-top: 50px;

    padding-bottom: 50px;



  }



}



/* 标杆案例 */

.m_bgcase_box {

  padding-top: 90px;

  padding-bottom: 100px;

  background-color: #F5F9FF;

  background-image: url(../images/m_bgcase_bg.png);

  background-repeat: no-repeat;

  background-position: center;

  background-size: cover;

  overflow: hidden;

}



.m_bgcase_box .show_swiper {

  margin-top: 50px;

  overflow: hidden;

}



.m_bgcase_box .m_left_button div {

  padding: 5px;

  width: 51px;

  height: 51px;

  border: 1px dashed #66748C;

  opacity: 0.7;

  box-shadow: inherit;

  background: transparent;

  border-radius: 50%;

}



.m_bgcase_box .m_left_button div:hover {

  background-color: var(--blue-color);

  border-color: var(--blue-color);

}



.m_bgcase_box .case-grid .show_swiper .cont .t {

  font-weight: 700;

}



.m_incase_more {

  padding-top: 90px;

}



.m_incase_more .m_in_more a {

  align-items: center;

  border-radius: 4px;

  background: linear-gradient(130deg, rgba(76, 195, 255, 0.00) 32.29%, #4CC3FF 84.48%), linear-gradient(0deg, #1D89FF 0%, #1D89FF 100%), linear-gradient(180deg, #0062FF 0%, rgba(0, 98, 255, 0.73) 100%);

}



.m_incase_more .m_in_more a img {

  width: 15px;

  height: 15px;

}



@media (max-width: 1279px) {}



@media (max-width: 767px) {

  .m_bgcase_box {

    padding-top: 50px;

    padding-bottom: 50px;

  }



  .m_bgcase_box .show_swiper {

    margin-top: 35px;

  }



  .m_incase_more {

    padding-top: 40px;

  }





}



/* new */

.m_in_newbox {

  /* padding-top: 50px; */

  padding-bottom: 100px;

  background-color: var(--white-color);

  overflow: hidden;

}



.indexNews .list {

  margin: auto;

  display: flex;

  justify-content: space-between;

  padding-top: 48px;

}



.indexNews .list .left {

  width: 67%;

}



.indexNews .list .left ul {

  margin-left: -10px;

  margin-right: -10px;

  display: flex;

}



.indexNews .list .left ul li {

  width: 50%;

  float: left;

  padding-left: 10px;

  padding-right: 10px;

}



.indexNews .list .left .img {

  width: 100%;

  height: 248px;

  position: relative;

  overflow: hidden;

  border-radius: 8px 8px;

}



.indexNews .list .left ul li .img span {

  position: absolute;

  top: 14px;

  left: 17px;

  display: block;

  padding: 10px 16px;

  border-radius: 8px;

  background: rgba(29, 137, 255, 0.80);

  text-align: center;

  color: #fff;

  font-size: 16px;

}



.indexNews .list .left .img i {

  display: block;

  height: 100%;

  width: 100%;

  border-radius: 8px;

  background-repeat: no-repeat;

  background-position: center;

  background-size: cover;

  transition: all 0.6s;

}



.indexNews .list .left ul li .content {

  width: 100%;

  margin-top: 8px;

}



.indexNews .list .left .content .time {

  font-size: 16px;

  color: var(--blue-color);

  padding-left: 25px;

  background-image: url(../images/blue_time.svg);

  background-size: 18px 18px;

  background-position: left;

  background-repeat: no-repeat;

  margin: 15px 0 10px 0;

}



.indexNews .list .left .content .title {

  font-size: 18px;

  color: var(--dark);

  line-height: 28px;

  font-weight: 700;

  height: 56px;

  overflow: hidden;

  display: -webkit-box;

  -webkit-line-clamp: 2;

  -webkit-box-orient: vertical;

}



.indexNews .list .left .content p {

  font-size: 16px;

  height: 56px;

  line-height: 28px;

  color: #666;

  margin: 16px 0;

  overflow: hidden;

  display: -webkit-box;

  -webkit-line-clamp: 2;

  -webkit-box-orient: vertical;

}



.indexNews .list .left .content .more {

  display: inline-block;

  color: #999;

  font-size: 16px;

  font-weight: 400;

  line-height: 28px;

  padding-right: 28px;

  background-image: url(../images/grey_jt.svg);

  background-size: 20px 20px;

  background-position: right;

  background-repeat: no-repeat;

}



.indexNews .list .left a:hover .img i {

  transform: scale(1.08);

}



.indexNews .list .left a:hover .title {

  color: rgba(5, 81, 169, 1);

}



.indexNews .list .left a:hover .more {

  color: var(--main-color);

  background-image: url(../images/blue_jt.svg);

}



.indexNews .list .right {

  width: 33%;

  padding-left: 20px;

}



.indexNews .list .right ul {

  border-radius: 8px;

  background: rgba(255, 255, 255, 0.70);

  padding-left: 32px;

  height: 484px;

}



.indexNews .list .right ul li {

  width: 100%;

  border-bottom: solid 1px #EFF0F3;

  padding-top: 20px;

  padding-bottom: 20px;

}



.indexNews .list .right ul li:first-child {

  padding-top: 0;

}



.indexNews .list .right ul li:last-child {

  border-bottom: none;

  padding-bottom: 0;

}



.indexNews .list .right .title {

  line-height: 28px;

  margin-bottom: 10px;

}



.indexNews .list .right .title a {

  font-size: 18px;

  color: var(--dark);

  font-weight: 700;

  overflow: hidden;

  text-overflow: ellipsis;

  display: -webkit-box;

  -webkit-line-clamp: 1;

  -webkit-box-orient: vertical;

}



.indexNews .list .right .time {

  padding-top: 6px;

  display: flex;

  align-items: center;

  font-size: 16px;

  color: #999;

}



.indexNews .list .right .time a {

  color: #999;

}



.indexNews .list .right .time span {

  position: relative;

  padding-left: 10px;

  margin-left: 8px;

}



.indexNews .list .right .time span:before {

  content: "·";

  position: absolute;

  left: 0;

}



.indexNews .list .right .title a:hover {

  color: var(--main-color);

}



@media only screen and (max-width:991px) {

  .indexNews .list {

    display: block;

    overflow: hidden;

  }



  .indexNews .list .left {

    width: 100%;

  }



  .indexNews .list .right {

    width: 100%;

    margin-top: 40px;

    padding-left: 0;

  }



  .indexNews .list .right ul {

    padding-left: 0;

    height: auto;

  }



}



@media only screen and (max-width:767px) {

  .m_in_newbox {

    padding-bottom: 50px;

  }



  .indexNews {

    padding-top: 40px;

  }

  .indexNews .list {

    padding-top: 0;

  }

  .indexNews .list .left ul {

    flex-wrap: wrap;

  }

  .indexNews .list .left ul li {

    width: 100%;

    padding-bottom: 20px;

  }



}



/* 网格背景 */

.os_background {

  position: absolute;

  left: 0;

  bottom: 0;

  height: 42%;

  width: 100%;

  z-index: -2;

}



.lg_bg {

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 25%;

  background-image: linear-gradient(to top, #ffffff, transparent);

  z-index: -1;

}



.saber-background_containe {

  position: absolute;



  overflow: hidden;

  inset: 0;

  transition: perspective 3s ease 0s;

  perspective: 1000px !important;

  z-index: -6;

}



.os_background .mask {

  position: absolute;

  width: 100%;

  height: 100%;

  background: linear-gradient(to top, rgba(0, 0, 0, 0) 0px, var(--white-color) 50%);

  inset: 0;

  z-index: 100;

}



.saber-background_lines {

  --right: #b1cbf9;

  --left: #b2e0f7;

  position: absolute;

  width: 200vw;

  margin-left: -50%;

  transform: translateY(0);

  background-image: linear-gradient(to right, var(--left) 50%, var(--right) 50%);

  -webkit-mask-image: linear-gradient(90deg, #000 2px, transparent 0), linear-gradient(180deg, #000 2px, transparent 0);

  mask-image: linear-gradient(90deg, #000 2px, transparent 0), linear-gradient(180deg, #000 2px, transparent 0);

  -webkit-mask-size: 80px 80px;

  mask-size: 80px 80px;

  overflow: hidden;

  -webkit-mask-repeat: repeat;

  mask-repeat: repeat;

  display: flex;

  align-items: center;

  justify-content: center;

  inset: -100% 0;

  background-position-y: 100%;

  -webkit-mask-position: 50% 0;

  mask-position: 50% 0;

  animation: saber-background_go-up 60s linear infinite;

}



@keyframes saber-background_go-up {

  0% {

    transform: translateY(0)
  }



  to {

    transform: translateY(calc(50% + 28px))
  }

}



/* H4 OntoPlant OS平台 */

.m_os_banner {

  position: relative;

  display: flex;

  min-height: 100vh;

  width: 100%;

  z-index: 1;

  overflow: hidden;

}



.m_os_banner .img {

  position: absolute;

  width: 100%;

  height: 100%;

  top: 0;

  left: 0;

  z-index: -1;

}



.m_os_banner .img::before {

  content: '';

  position: absolute;

  width: 100%;

  height: 100%;

  top: 0;

  left: 0;

  opacity: 0.8;

  background: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.40) 60.32%, #000 100%);

}



.m_os_banner .img img {

  width: 100%;

  height: 100%;

  object-fit: cover;

}



.m_os_banner .m_pd {

  padding-bottom: 115px;

  display: flex;

  flex-flow: column;

  justify-content: space-between;

  min-height: 750px;

}



.m_os_banner .top {

  padding-top: 200px;

}



.m_os_banner .top .title {

  color: var(--white-color);

  font-style: normal;

  font-weight: 700;

  line-height: 1.5;

}



.m_os_banner .top .text {

  padding-top: 16px;

  max-width: 936px;

  margin: 0 auto;

  color: var(--white-color);

  font-size: 18px;

  font-style: normal;

  font-weight: 400;

  line-height: 28px;

}



.m_os_banner .top .m_btn {

  padding-top: 70px;

  justify-content: center;

}



.m_os_banner .bottom {

  margin-top: 80px;

}



.m_os_banner .bottom ul {

  display: flex;

  justify-content: space-between;

  margin-left: -20px;

  margin-right: -20px;

}



.m_os_banner .bottom ul li {

  padding: 0 30px;

  text-align: center;

}



.m_os_banner .bottom .icon {

  width: 64px;

  margin: 0 auto;

}



.m_os_banner .bottom .title {

  margin-top: 16px;

  color: var(--white-color);

  font-style: normal;

  font-weight: 700;

  line-height: 1.5;

}



.m_os_banner .bottom .text {

  margin-top: 8px;

  color: var(--white-color);

  font-size: 18px;

  font-style: normal;

  font-weight: 400;

  line-height: 28px;

  opacity: 0.8;

}



@media (max-width: 1200px) {

  .m_os_banner .top {

    padding-top: 150px;

  }





}



@media (max-width: 767px) {

  .m_os_banner .m_pd {

    padding-bottom: 70px;

    min-height: inherit;

  }



  .m_os_banner .top .text {

    font-size: 16px;

  }



  .m_os_banner .top .m_btn {

    padding-top: 40px;

  }



  .m_os_banner .top .m_btn {

    flex-flow: column;

  }



  .m_os_banner .top .m_btn a:nth-child(2) {

    margin-left: 0px;

    margin-top: 16px;

  }



  .m_os_banner .bottom ul {

    flex-flow: column;

    margin: 0;

  }



  .m_os_banner .bottom ul li {

    padding: 15px 0;

    width: 100%;

  }

}



/* 业务全景 */

.os_first_cont {

  padding-top: 100px;

}



.os_thumb {

  margin-top: 56px;

  padding: 16px;

  border-radius: 24px;

  border: 1px solid rgba(29, 137, 255, 0.20);

  background: rgba(222, 239, 255, 0.20);

  overflow: hidden;

}

@media (max-width: 1200px) {

  .os_first_cont {

    padding-top: 60px;

  }



}


/* 云边协同 */

.os_two_box {

  padding: 100px 0;

  background: var(--white-color);

  overflow: hidden;

}



/* 敏捷构建 */

.os_three_box {

  position: relative;

  padding: 100px 0;

  background-color: #F8FCFE;

  overflow: hidden;

  z-index: 1;

}



.os_three_box .thumb {

  margin-top: 36px;

  padding: 16px;

  border-radius: 24px;

  border: 1px solid rgba(29, 137, 255, 0.20);

  background: rgba(222, 239, 255, 0.20);

  backdrop-filter: blur(8px);

  overflow: hidden;

}

.os_three_box .thumb .img {



  border-radius: 10px;



}



/* 功能架构 */

.os_four_box {

  padding: 100px 0;

  background-image: url(../images/m_os_fourbg.jpg);

  background-repeat: no-repeat;

  background-size: cover;

  background-position: center top;

  overflow: hidden;

}



.os_four_box .thumb {

  margin-top: 55px;

  padding: 16px;

  border-radius: 24px;

  border: 1px solid rgba(29, 137, 255, 0.20);

  background: rgba(222, 239, 255, 0.20);

  backdrop-filter: blur(8px);

  overflow: hidden;

}





/* 平台优势 */

.os_five_box {

  padding: 100px 0;

  background-image: url(../images/m_os_fivebg.jpg);

  background-repeat: no-repeat;

  background-size: cover;

  background-position: center;

  overflow: hidden;

}



.main-card {

  margin-top: 55px;

  padding: 26px 26px 26px 48px;

  position: relative;

  display: flex;

  justify-content: space-between;

  border-radius: 16px;

  border: 1px solid #FFF;

  background: rgba(255, 255, 255, 0.90);

  backdrop-filter: blur(8px);

  overflow: hidden;

}



.main-card::before {

  content: '';

  position: absolute;

  left: -5px;

  bottom: -5px;

  width: 30%;

  height: 70%;

  max-width: 320px;

  max-height: 342px;

  background-image: url(../images/m_os_ptysbg.svg);

  background-size: contain;

  background-position: left bottom;

  z-index: -1;

}



.content-left {

  display: flex;

  flex-direction: column;

  width: 50%;

}



.content-left .icon-box {

  display: flex;

  justify-content: center;

  align-items: center;

  margin-bottom: 32px;

  width: 64px;

  height: 64px;

  border-radius: 12px;

  background: rgba(29, 137, 255, 0.20);

}



.content-left .title {

  color: var(--dark-color);

  font-style: normal;

  font-weight: 700;

  line-height: 1.5;

}



.content-left .title span {

  color: var(--blue-color);

}



.content-left .feature-list {

  margin-top: 32px;

  display: flex;

  flex-direction: column;

}



.content-left .feature-item {

  display: flex;

  align-items: flex-start;

  padding-bottom: 40px;

}



.feature-list .feature-item:last-child {

  padding-bottom: 0;

}



.content-left .check-icon {

  width: 18px;

  margin-top: 4px;

  margin-right: 14px;

}



.content-left .feature-item p {

  flex: 1;

  color: #666;

  font-size: 16px;

  font-style: normal;

  font-weight: 400;

  line-height: 26px;

}



.content-right {

  display: flex;

  flex-direction: column;

  position: relative;

  width: 50%;

  padding-left: 64px;

}



.content-right .sub-card {

  padding: 24px;
  border-radius: 16px;

  background: #F0F5FD;

  transition: transform 0.3s ease;

}



.sub-card:hover {

  transform: translateY(-2px);

}



.sub-card h3 {

  margin: 0 0 8px 0;

  color: var(--dark-color);

  font-size: 20px;

  font-style: normal;

  font-weight: 700;

  line-height: 1.5;

}



.sub-card p {

  color: #666;

  font-size: 16px;

  font-style: normal;

  font-weight: 400;

  line-height: 26px;

}



.arrow-divider {

  display: flex;

  justify-content: space-between;

  padding: 14px 0;

  width: 50%;

  margin: 0 auto;

  max-width: 180px;

}



.custom-arrow {

  width: 26px;

  height: 24px;

}



.arrow-down-anim path:first-child {

  animation: opacityPulse 2s infinite ease-in-out;

}



.arrow-down-anim path:last-child {

  animation: opacityPulseReverse 2s infinite ease-in-out;

}



.arrow-up-anim {

  transform: rotate(180deg);

}



.arrow-up-anim path:first-child {

  animation: opacityPulseReverse 2s infinite ease-in-out;

}



.arrow-up-anim path:last-child {

  animation: opacityPulse 2s infinite ease-in-out;

}



@keyframes opacityPulse {



  0%,

  100% {

    opacity: 0.2;

  }



  50% {

    opacity: 0.8;

  }

}



@keyframes opacityPulseReverse {



  0%,

  100% {

    opacity: 1;

  }



  50% {

    opacity: 0.3;

  }

}



@media (max-width: 1024px) {

  .main-card {

    padding: 26px;

    flex-flow: column;

  }



  .content-left {

    width: 100%;

  }



  .content-right {

    width: 100%;

    padding-left: 0px;

    padding-top: 30px;

  }



  .main-card::before {

    width: 60%;

    height: 40%;



  }





}



@media (max-width: 767px) {

  .main-card::before {

    width: 70%;

    height: 20%;



  }



  .main-card {

    padding: 26px 20px;

  }



  .content-left .icon-box {

    margin-bottom: 32px;

    padding: 10px;

    width: 54px;

    height: 54px;

  }

.content-right .sub-card {
    padding: 20px 20px;

}

  .feature-item {

    padding-bottom: 30px;

  }



  .custom-arrow {

    width: 20px;

    height: 18px;

  }





}



/* 演进路线 */

.os_six_box {

  padding: 100px 0;

  background-image: url(../images/m_os_sixbg.jpg);

  background-repeat: no-repeat;

  background-size: cover;

  background-position: center;

  overflow: hidden;

}



:root {

  --wave-color: #1D89FF;

  --top-node-spacing: 340px;

}



.timeline-section {

  position: relative;

  min-height: 320px;

  display: flex;

  align-items: center;

  overflow: hidden;

}



.main-container {

  position: relative;

  margin-top: 50px;

  width: 100%;

  display: flex;

  flex-direction: column;

  z-index: 5;

}



.timeline-container {

  position: relative;

  height: 500px;

  width: 100%;

}

.timeline-container:active,

.timeline-container:focus,

.timeline-container.dragging {

  cursor: grab;
  /* 未拖动时的抓手 */

  cursor: -webkit-grab;
  /* 兼容移动端 */

}



.timeline-track {

  position: absolute;

  top: 0;

  left: 0;

  height: 100%;

  transition: transform 0.6s cubic-bezier(0.25, 1, 0.3, 1);

  will-change: transform;

}



.wave-svg {

  position: absolute;

  top: 50%;

  left: 0;

  height: 300px;

  transform: translateY(-50%);

  z-index: 1;

  pointer-events: none;

  overflow: visible;

}



.wave-path {

  fill: none;

  stroke: var(--wave-color);

  stroke-width: 1.5px;

}



.time-node-wrapper {

  position: absolute;

  top: 50%;

  z-index: 2;

  opacity: 0;

  transform: translateY(15px);

  animation: nodeFadeIn 0.8s cubic-bezier(0.25, 1, 0.3, 1) forwards;

}



@keyframes nodeFadeIn {

  to {

    opacity: 1;

    transform: translateY(0);

  }

}



.node-circle {

  width: 40px;

  height: 40px;

  border-radius: 50%;

  position: absolute;

  transform: translate(-50%, -50%);

  display: flex;

  justify-content: center;

  align-items: center;

  transition: all 0.4s ease;

  cursor: pointer;

}



.node-circle::after {

  content: '';

  width: 8px;

  height: 8px;

  background: #888;

  ;

  border-radius: 50%;

}



.node-circle::before {

  content: '';

  position: absolute;

  left: 0;

  top: 0;

  width: 100%;

  height: 100%;

  border-radius: 50%;

  border: 1px solid #888;

  z-index: -1;

}



.time-node-wrapper.active .node-circle::before {

  background-color: var(--blue-color);

  border-color: var(--blue-color);

  animation: nodeBreath 1.6s infinite ease-in-out;

}



.time-node-wrapper.active .node-circle:after {

  background-color: #fff;

}



@keyframes nodeBreath {

  0% {

    transform: scale(1);

    opacity: 1;

  }



  50% {

    transform: scale(1.15);

    opacity: 0.85;

  }



  100% {

    transform: scale(1);

    opacity: 1;

  }

}



.node-content {

  position: absolute;

  left: -15px;

  width: 450px;

  transition: all 0.4s ease;

  pointer-events: none;

  cursor: pointer;

}



.time-node-wrapper.active .node-content {

  opacity: 1;

  pointer-events: auto;

}



.node-year {

  color: var(--dark-color);

  font-family: "Montserrat";

  font-size: 24px;

  font-style: normal;

  font-weight: 700;

  line-height: 36px;

}



.time-node-wrapper.active .node-year {

  color: var(--blue-color);

}



.node-details {

  list-style: none;

}



.node-details li {

  margin-top: 7px;

  padding-left: 12px;

  position: relative;

  color: #666;

  font-size: 18px;

  font-style: normal;

  font-weight: 400;

  line-height: 28px;

}



.node-details li::before {

  content: '•';

  position: absolute;

  left: 0;

  color: #666;

}



.time-node-wrapper.pos-bottom .node-content {

  top: 40px;

}



.time-node-wrapper.pos-top .node-content {

  bottom: 40px;

}



/* 底部滑动器 */

.bottom-slider-area {

  width: 100%;

  padding-top: 70px;

}



.slider-container {

  position: relative;

  height: 86px;

  width: 100%;

  border-radius: 90px;

  background: var(--blue-color);

  backdrop-filter: blur(2px);

  overflow: hidden;

}



.slider-track {

  height: 100%;

  width: max-content;

  display: flex;

  align-items: center;

  position: absolute;

  left: 0;

  transition: transform 0.6s cubic-bezier(0.25, 1, 0.3, 1);

}



.slider-item {

  position: relative;

  font-family: "Montserrat";

  color: rgba(255, 255, 255, 0.6);

  font-size: 20px;

  font-weight: 700;

  padding: 0 48px;

  cursor: pointer;

  transition: all 0.3s;

  white-space: nowrap;

}



.slider-item:after {

  content: "";

  position: absolute;

  top: 50%;

  left: 50%;

  transform: translate(-50%, -50%);

  margin-left: 70px;

  width: 55px;

  height: 3px;

  background-image: url(../images/m_os_line.svg);

  background-repeat: no-repeat;

  background-position: right center;

  background-size: contain;

}



.slider-item:last-child:after {

  display: none;

}



.slider-item.active {

  color: #fff;

}



@media (max-width: 1024px) {

  :root {

    --top-node-spacing: 240px;

  }



  .node-content {

    width: 250px;

  }



  .swipe-hint {

    display: block;

  }



  .timeline-container {

    height: 450px;

  }



  .slider-container {

    height: 65px;

    border-radius: 60px;

  }



  .node-details li {

    font-size: 16px;

  }



  .node-circle {

    width: 34px;

    height: 34px;

  }



  .slider-item {

    font-size: 18px;

    padding: 0 30px;

  }



  .slider-item:after {

    margin-left: 50px;

    width: 30px;

    height: 3px;

  }



  .bottom-slider-area {

    padding-top: 40px;

  }





}

@media (max-width: 1024px) {
.timeline-container {
    height: 530px;
  }
  .node-content {
    width: 272px;
  }
.node-details li {
  font-size: 15px;
  line-height: 22px;
}

}

/*提交需求 */



.m_os_lastbox {

  padding: 100px 0;

  background-image: url(../images/m_os_lastbg.jpg);

  background-repeat: no-repeat;

  background-size: cover;

  background-position: center;

  overflow: hidden;

}



.m_os_lastbox .m_pd {

  display: flex;

  justify-content: space-between;

}



.m_os_lastbox .mess_left {}



.m_os_lastbox .mess_left .page_title .des {

  font-size: 18px;

  opacity: 0.8;

}



.mess_left .text {

  padding-top: 66px;

  color: #FFF;

  font-size: 16px;

  font-style: normal;

  font-weight: 400;

  line-height: 28px;

}



.mess_left .text span {

  margin-right: 8px;

}



.mess_left .red {

  color: #F00;

}



.m_os_lastbox .mess_right {

  flex: 1;

  padding-left: 140px;

}



.clearfix:after {

  content: "";

  display: block;

  height: 0;

  visibility: hidden;

  clear: both;

}



.indus_mess .indus_form ._list {

  padding-bottom: 26px;

  margin-left: -12px;

  margin-right: -12px;

}



.indus_form ._list .text {

  color: #FFF;

  font-size: 16px;

  font-style: normal;

  font-weight: 400;

  line-height: 26px;

}



.indus_mess .indus_form ._list .w50 {

  float: left;

  width: calc(50% - 24px);

  margin-right: 12px;

  margin-left: 12px;

}



.indus_mess .indus_form .big_width {

  padding-left: 12px;

  padding-right: 12px;

}



.indus_mess .indus_form ._list .i_ {

  margin-top: 8px;

  border-radius: 12px;

  background: #FFF;

  padding: 12px 16px;

  height: 56px;

  display: flex;

  align-items: center;

  position: relative;

}



.indus_mess .indus_form ._list .i_.active {

  border-bottom-left-radius: 0;

  border-bottom-right-radius: 0;

}



.indus_mess .indus_form ._list .input_box {

  float: left;

  padding: 10px 0;

  height: 56px;

  width: 100%;

  position: relative;

}



.indus_mess .indus_form ._list .textarea_box {

  height: 196px;

}



.indus_mess .indus_form ._list .textarea_box .input_box {

  height: 100%;

}



.indus_mess .indus_form ._list .textarea_box textarea {

  width: 100%;

  height: 100%;

  line-height: 1.5;

  border: none;

  background-color: transparent;

  font-family: "Microsoft YaHei";

  font-size: 16px;

  font-weight: 400;

  color: #333;

  resize: none;

}



.indus_mess .other .input {

  width: calc(100% - 95px);

  right: 0;

  left: inherit;

  padding-left: 16px;

}



.indus_mess .indus_form ._list label {

  float: left;

  width: 85px;

  font-size: 16px;

  color: #999999;

  margin-bottom: 0;

}



.indus_mess .star {

  font-weight: 400;

  font-size: 16px;

  line-height: 26px;

  color: #F00;

}



.input {

  display: block;

  height: 36px;

  width: 100%;

  position: absolute;

  left: 0;

  top: 50%;

  transform: translateY(-50%);

  font-size: 16px;

  font-weight: 400;

  color: #333;

  outline: 0;

  line-height: 36px;

  border: none;

  background: none;

  font-family: "Microsoft YaHei";

}



.indus_mess .indus_form label.error {

  position: absolute;

  left: -14px;

  top: 100%;

  font-size: 14px;

  color: #F00;

  line-height: 24px;

  width: auto;

}



.last_submit .code_w50 {

  max-width: 492px;

}



.indus_mess .indus_form .btn {

  padding-top: 32px;

  display: flex;

}



.pop_tc .indus_mess .indus_form .btn button {

  width: 100%;

}



.indus_mess .indus_form .btn button {

  display: flex;

  width: 244px;

  height: 64px;

  padding: 16px 24px;

  justify-content: space-between;

  align-items: center;

  border-radius: 12px;

  background: linear-gradient(130deg, rgba(76, 195, 255, 0.00) 32.29%, #4CC3FF 84.48%), #1D89FF;

  box-shadow: 0 -2px 8px 0 #4CC3FF inset;

  cursor: pointer;

  border: none;

}



.indus_mess .indus_form .btn span {

  color: var(--white-color);

  font-size: 18px;

  font-style: normal;

  font-weight: 400;

  font-family: "Microsoft YaHei UI";

}



.indus_mess .indus_form ._list .i_ input::-webkit-input-placeholder,

.indus_mess .indus_form ._list .i_ textarea::-webkit-input-placeholder {

  color: rgba(0, 0, 0, 0.20);

  font-size: 16px;

  font-family: "Microsoft YaHei";

}



.indus_mess .indus_form ._list .i_ input::-moz-placeholder,

.indus_mess .indus_form ._list .i_ textarea::-moz-placeholder {

  color: rgba(0, 0, 0, 0.20);

  font-size: 16px;

  font-family: "Microsoft YaHei";

}



.indus_mess .indus_form ._list .i_ input::-ms-input-placeholder,

.indus_mess .indus_form ._list .i_ textarea::-ms-input-placeholder {

  color: rgba(0, 0, 0, 0.20);

  font-size: 16px;

  font-family: "Microsoft YaHei";

}



.last_submit {

  padding-bottom: 0 !important;

  margin-left: 0 !important;

  margin-right: 0 !important;

}



.code {

  margin-top: 8px;

}



.code_yz {

  display: flex;

}



.code_yz .i_ {

  width: calc(100% - 128px);

  margin-right: 14px;

}



.code img {

  width: 128px;

  height: 56px;

  border-radius: 12px;

}



@media (max-width:1200px) {

  .m_os_lastbox .mess_left {

    width: 35%;

  }



  .m_os_lastbox .mess_right {

    padding-left: 100px;

  }

}



@media (max-width:991px) {

  .m_os_lastbox .m_pd {

    flex-flow: column;

  }



  .m_os_lastbox .mess_left {

    width: 100%;

  }



  .m_os_lastbox .mess_right {

    padding-left: 0;

    flex: inherit;

    width: 100%;

    padding-top: 30px;

  }





}



@media (max-width:767px) {

  .contact_message {

    padding: 40px 0 50px 0;

  }



  .mess_right {

    flex: inherit;

    padding-left: 0;

  }



  .indus_mess .indus_form ._list {

    margin: 0;

    padding-bottom: 0;

    padding-left: 0;

    padding-right: 0;

  }



  .indus_mess .indus_form ._list .w50 {

    width: 100%;

    margin: 0;

    margin-bottom: 30px;

  }



  .last_submit {

    padding-top: 30px !important;

  }



  .indus_mess .indus_form .btn {

    justify-content: space-between;

  }



  .indus_mess .indus_form .btn button {

    width: 49%;

    margin-right: 0 !important;

  }



  .last_submit .index_more a {

    width: 100%;

  }

  .m_os_lastbox .mess_left .page_title .des {

    font-size: 16px;

  }

}



@media (max-width: 767px) {

  .os_first_cont {

    padding-top: 50px;

  }



  .os_two_box,

  .os_three_box,

  .os_four_box,

  .os_five_box,

  .os_six_box,

  .m_os_lastbox {

    padding: 50px 0;

  }



}
@media (max-width: 767px) {
.os_thumb,.os_three_box .thumb,
.os_four_box .thumb,
.os_five_box .thumb,
.os_six_box .thumb {
  margin-top: 30px;
  padding: 8px;
  border-radius: 12px;

}
}




@media (max-width: 767px) {}



@media (max-width: 767px) {}