:root {
  --default-font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Ubuntu, "Helvetica Neue", Helvetica, Arial, "PingFang SC",
    "Hiragino Sans GB", "Microsoft Yahei UI", "Microsoft Yahei",
    "Source Han Sans CN", sans-serif;
  --rpx: 100vw / 776;
}

.product-card {
  width: 100%;
  height: 100%;
  background-image: url(./assets/images/product-card-bg.png);
  background-size: cover;
  background-position: top;
  box-shadow: 0 calc(9*0.4545*var(--rpx)) calc(29*0.4545*var(--rpx)) 0 rgba(22, 25, 40, .63);
  display: flex;
  padding: calc(36*0.4545*var(--rpx)) calc(18*0.4545*var(--rpx));
  position: relative;
  border-radius: calc(6*0.4545*var(--rpx));
  color: #ffffff;
}

.product-card .product-card__index {
  position: absolute;
  top: calc(30*0.4545*var(--rpx));
  right: calc(30*0.4545*var(--rpx));
  font-size: calc(85*0.4545*var(--rpx));
  line-height: calc(66*0.4545*var(--rpx));
  height: calc(66*0.4545*var(--rpx));
  color: hsla(0, 0%, 100%, .1);
  font-family: DINCond
}

.product-card .product-card__logo {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 calc(18*0.4545*var(--rpx))
}

.product-card .product-card__logo img {
  height: calc(300*0.4545*var(--rpx))
}

.product-card .product-card__content {
  flex: 1;
  margin: 0 calc(18*0.4545*var(--rpx));
  padding-top: calc(30*0.4545*var(--rpx))
}

.product-card .product-card__content .product-card__title {
  font-size: calc(12.726*var(--rpx))
}

.product-card .product-card__content .product-card__sub-title {
  color: #b4bdc9;
  font-family: DINCond;
  font-size: calc(7.272*var(--rpx))
}

.product-card .product-card__content .product-card__abstract {
  margin-top: calc(20*0.4545*var(--rpx));
  font-size: calc(7.272*var(--rpx))
}

.product-card .product-card__content .product-card__description {
  color: #97a3b4;
  margin-top: calc(10*0.4545*var(--rpx));
  font-size: calc(7.272*var(--rpx))
}

@media(max-width:calc(1199.98*0.4545*var(--rpx))) {
  .product-card .product-card__logo img {
    height: calc(220*0.4545*var(--rpx))
  }
}

@media(max-width:calc(991.99*0.4545*var(--rpx))) {
  .product-card .product-card__logo img {
    height: calc(150*0.4545*var(--rpx))
  }
}

@media(max-width:calc(767.99*0.4545*var(--rpx))) {
  .product-card {
    flex-direction: column;
    padding: calc(16*0.4545*var(--rpx))
  }

  .product-card .product-card__index {
    display: none
  }

  .product-card .product-card__logo img {
    height: calc(130*0.4545*var(--rpx))
  }

  .product-card .product-card__content {
    padding-top: calc(10*0.4545*var(--rpx))
  }

  .product-card .product-card__content .product-card__title {
    text-align: center;
    font-size: calc(10.908*var(--rpx))
  }

  .product-card .product-card__content .product-card__sub-title {
    text-align: center
  }

  .product-card .product-card__content .product-card__abstract {
    margin-top: calc(10*0.4545*var(--rpx))
  }
}

.swiper-container {
  width: 100%;
  height: calc(400*0.4545*var(--rpx));
  overflow: hidden;
  padding: calc(50*0.4545*var(--rpx)) 0;
}

.swiper-wrapper {
  align-items: center;
}

.swiper-slide {
  width: calc(810*0.4545*var(--rpx)) !important;
  /* 使用 !important 确保宽度 */
  height: calc(335*0.4545*var(--rpx));
  transition: all 0.3s ease;
  opacity: 0.7;
  transform: scale(0.9);
}

.swiper-slide-active {
  width: calc(900*0.4545*var(--rpx)) !important;
  height: calc(372*0.4545*var(--rpx));
  opacity: 1;
  transform: scale(1);
}

.swiper-pagination {
  bottom: calc(20*0.4545*var(--rpx)) !important;
}

.swiper-pagination-bullet {
  width: calc(50*0.4545*var(--rpx));
  height: calc(4*0.4545*var(--rpx));
  border-radius: calc(2*0.4545*var(--rpx));
  background: rgba(255, 255, 255, 0.3);
  margin: 0 calc(2*var(--rpx)) !important;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: #fff;
}

.product-card {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  padding: calc(20*0.4545*var(--rpx));
  border: calc(1*0.4545*var(--rpx)) solid #ccc;
  border-radius: calc(8*0.4545*var(--rpx));
  text-align: center;
  background-image: url(./assets/images/product-card-bg.png);
  background-size: cover;
  background-position: top;
  box-shadow: 0 calc(9*0.4545*var(--rpx)) calc(29*0.4545*var(--rpx)) 0 rgba(22, 25, 40, .63);
  box-sizing: border-box;
  overflow: hidden;
}

/* 激活状态的样式 */
.swiper-slide-active .product-card {
  width: calc(900*0.4545*var(--rpx));
  height: calc(372*0.4545*var(--rpx));
}

/* 产品卡片内部布局 */
.product-card__index {
  font-size: calc(24*0.4545*var(--rpx));
  margin-bottom: calc(15*0.4545*var(--rpx));
}

.product-card__logo {
  margin-bottom: calc(15*0.4545*var(--rpx));
}

.product-card__logo img {
  max-width: 100%;
  height: auto;
}

.product-card__content {
  text-align: left;
}

.product-card__title {
  font-size: calc(20*0.4545*var(--rpx));
  font-weight: bold;
  margin-bottom: calc(10*0.4545*var(--rpx));
}

.product-card__sub-title {
  color: #666;
  margin-bottom: calc(10*0.4545*var(--rpx));
}

.product-card__abstract {
  margin-bottom: calc(10*0.4545*var(--rpx));
}

.product-card__description {
  color: #888;
}

.swiper-pagination {
  position: absolute;
  bottom: calc(10*0.4545*var(--rpx));
  text-align: center;
}

.main-container {
  overflow: hidden;
}

.main-container,
.main-container * {
  box-sizing: border-box;
}

input,
select,
textarea,
button {
  outline: 0;
}

.main-container {
  position: relative;
  width: calc(776 * var(--rpx));
  height: calc(2200 * var(--rpx));
  margin: 0 auto;
  background: rgba(0, 0, 0, 0);
  overflow: hidden;
}

.root {
  position: absolute;
  height: calc(2200 * var(--rpx));
  top: 0;
  right: 0;
  left: 0;
  background: rgba(0, 0, 0, 0);
}

groups-0 {
  position: relative;
  width: calc(718 * var(--rpx));
  height: calc(50 * var(--rpx));
  margin: 0 0 0 0;
  z-index: 456;
  overflow: visible auto;
}

.button-0 {
  position: relative;
  width: calc(213 * var(--rpx));
  height: calc(35 * var(--rpx));
  margin: calc(120 * var(--rpx)) 0 0 calc(159 * var(--rpx));
  z-index: 458;
  overflow: visible auto;
}

.background-0 {
  position: relative;
  width: calc(175 * var(--rpx));
  height: calc(25 * var(--rpx));
  margin: calc(2 * var(--rpx)) 0 0 calc(3 * var(--rpx));
  cursor: pointer;
  border: none;
  background: none;
  z-index: 459;
}

.data-power-0 {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: absolute;
  height: calc(25 * var(--rpx));
  right: calc(5 * var(--rpx));
  bottom: calc(2 * var(--rpx));
  color: #ffffff;
  font-family: Inter, var(--default-font-family);
  font-size: calc(20.300000190734863 * var(--rpx));
  font-weight: 600;
  line-height: calc(10.65511360168457 * var(--rpx));
  text-align: left;
  white-space: nowrap;
  z-index: 460;
}

.groups {
  position: relative;
  width: calc(718 * var(--rpx));
  height: calc(30 * var(--rpx));
  margin: 0 0 0 0;
  background: rgba(0, 0, 0, 0);
  z-index: 456;
  overflow: visible auto;
}

.button {
  position: relative;
  width: calc(235 * var(--rpx));
  height: calc(25 * var(--rpx));
  margin: calc(5 * var(--rpx)) 0 0 calc(159 * var(--rpx));
  background-color: rgba(255, 255, 255, 0);
  z-index: 458;
  overflow: visible auto;
}

.background {
  position: relative;
  width: calc(215 * var(--rpx));
  height: calc(18 * var(--rpx));
  margin: calc(2 * var(--rpx)) 0 0 calc(3 * var(--rpx));
  cursor: pointer;
  transform: skew(-8deg);
  background-color: rgba(255, 255, 255, 0.9);
  border: none;
  z-index: 459;
}

.data-power {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: absolute;
  height: calc(15 * var(--rpx));
  right: calc(5 * var(--rpx));
  bottom: calc(2 * var(--rpx));
  color: #292c40;
  font-family: Inter, var(--default-font-family);
  font-size: calc(10.300000190734863 * var(--rpx));
  font-weight: 600;
  line-height: calc(10.65511360168457 * var(--rpx));
  text-align: left;
  white-space: nowrap;
  z-index: 460;
}

.groups-1 {
  position: relative;
  width: calc(770 * var(--rpx));
  height: calc(680 * var(--rpx));
  margin: calc(120 * var(--rpx)) 0 0 0;
  background: rgba(0, 0, 0, 0);
  z-index: 401;
}

.image {
  position: absolute;
  width: calc(661 * var(--rpx));
  height: calc(662 * var(--rpx));
  right: calc(49 * var(--rpx));
  bottom: calc(7 * var(--rpx));
  background: #fefefe;
  z-index: 402;
}

.groups-2 {
  position: relative;
  width: calc(650 * var(--rpx));
  height: calc(350 * var(--rpx));
  margin: calc(4 * var(--rpx)) 0 0 calc(21 * var(--rpx));
  background: rgba(0, 0, 0, 0);
  z-index: 428;
  overflow: visible auto;
}

.image-3 {
  position: relative;
  width: calc(611 * var(--rpx));
  height: calc(296 * var(--rpx));
  margin: 0 0 0 0;
  font-size: 0px;
  background: url(./assets/images/de5fd986fd4a611bad040f70b0b51c489d0b53a4.png) no-repeat center;
  background-size: cover;
  z-index: 429;
  overflow: visible auto;
}

.data-solution {
  display: block;
  position: relative;
  height: calc(20 * var(--rpx));
  margin: 0 0 0 calc(219 * var(--rpx));
  color: #486087;
  font-family: Inter, var(--default-font-family);
  font-size: calc(17.5 * var(--rpx));
  font-weight: 600;
  line-height: calc(20 * var(--rpx));
  text-align: left;
  white-space: nowrap;
  z-index: 455;
}

.solutions {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  width: calc(31 * var(--rpx));
  height: calc(12 * var(--rpx));
  margin: calc(3 * var(--rpx)) 0 0 calc(292 * var(--rpx));
  color: #d5dce4;
  font-family: Inter, var(--default-font-family);
  font-size: calc(6 * var(--rpx));
  font-weight: 600;
  line-height: calc(7.261363506317139 * var(--rpx));
  text-align: left;
  z-index: 454;
}

.image-4 {
  position: relative;
  width: calc(27 * var(--rpx));
  height: calc(7 * var(--rpx));
  margin: calc(1 * var(--rpx)) 0 0 calc(234 * var(--rpx));
  background: url(./assets/images/f3af6a756b9b19c9e9c1030f92e62545855b1b13.png) no-repeat center;
  background-size: cover;
  z-index: 453;
}

.data-solution-5 {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: calc(400 * var(--rpx));
  height: calc(43 * var(--rpx));
  margin: calc(1 * var(--rpx)) 0 0 calc(108.75 * var(--rpx));
  color: #9fa6b1;
  font-family: Inter, var(--default-font-family);
  font-size: calc(8.300000190734863 * var(--rpx));
  font-weight: 600;
  line-height: calc(13.649609565734863 * var(--rpx));
  text-align: center;
  text-overflow: initial;
  z-index: 452;
  overflow: hidden;
}

.image-6 {
  position: relative;
  width: calc(21 * var(--rpx));
  height: calc(8 * var(--rpx));
  margin: 0 0 0 calc(290 * var(--rpx));
  z-index: 450;
}

.image-7 {
  position: relative;
  width: calc(24 * var(--rpx));
  height: calc(6 * var(--rpx));
  margin: calc(-3 * var(--rpx)) 0 0 calc(225 * var(--rpx));
  background: url(./assets/images/69e03fe788d8d7d220d759b81f7ed239dca6aa77.png) no-repeat center;
  background-size: cover;
  z-index: 451;
}

.image-8 {
  position: relative;
  width: calc(48 * var(--rpx));
  height: calc(8 * var(--rpx));
  margin: calc(3 * var(--rpx)) 0 0 calc(217 * var(--rpx));
  background: url(./assets/images/7fb6927b3fd72c0d8b3e8283c67a8d14ab5f7233.png) no-repeat center;
  background-size: cover;
  z-index: 449;
}

.flex-row-eb {
  position: relative;
  width: calc(603 * var(--rpx));
  height: calc(184 * var(--rpx));
  margin: calc(3 * var(--rpx)) 0 0 calc(5 * var(--rpx));
  z-index: 446;
}

.groups-9 {
  position: absolute;
  width: calc(143 * var(--rpx));
  height: calc(184 * var(--rpx));
  right: calc(460 * var(--rpx));
  bottom: 0;
  background: rgba(0, 0, 0, 0);
  z-index: 445;
}

.background-a {
  position: absolute;
  width: calc(141 * var(--rpx));
  height: calc(177 * var(--rpx));
  right: calc(458 * var(--rpx));
  bottom: calc(5 * var(--rpx));
  background: #fefefe;
  z-index: 446;
}

.image-b {
  position: relative;
  width: calc(26 * var(--rpx));
  height: calc(20 * var(--rpx));
  margin: calc(56 * var(--rpx)) 0 0 calc(57 * var(--rpx));
  background: url(./assets/images/bb8388ad79a91e687dd719c5de122c32a5d770cf.png) no-repeat center;
  background-size: cover;
  z-index: 448;
}

.research-solution {
  display: block;
  position: relative;
  height: calc(17 * var(--rpx));
  margin: calc(20 * var(--rpx)) 0 0 calc(15 * var(--rpx));
  color: #979da6;
  font-family: Inter, var(--default-font-family);
  font-size: calc(11.699999809265137 * var(--rpx));
  font-weight: 600;
  line-height: calc(14.159658432006836 * var(--rpx));
  text-align: left;
  white-space: nowrap;
  z-index: 447;
}

.groups-c {
  position: absolute;
  width: calc(141 * var(--rpx));
  height: calc(182 * var(--rpx));
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0);
  z-index: 431;
}

.background-d {
  position: relative;
  width: calc(136 * var(--rpx));
  height: calc(177 * var(--rpx));
  margin: calc(3 * var(--rpx)) 0 0 calc(1 * var(--rpx));
  background: #ffffff;
  border: calc(2 * var(--rpx)) solid #fafbfd;
  z-index: 432;
  overflow: visible auto;
}

.image-e {
  position: relative;
  width: calc(24 * var(--rpx));
  height: calc(27 * var(--rpx));
  margin: calc(52 * var(--rpx)) 0 0 calc(56 * var(--rpx));
  background: url(./assets/images/aaa7ce29852cc67162725fa11d55718dbcf6f1a4.png) no-repeat center;
  background-size: cover;
  z-index: 434;
}

.industry-solution {
  display: block;
  position: relative;
  height: calc(17 * var(--rpx));
  margin: calc(16 * var(--rpx)) 0 0 calc(14 * var(--rpx));
  color: #9ca1aa;
  font-family: Inter, var(--default-font-family);
  font-size: calc(11.699999809265137 * var(--rpx));
  font-weight: 600;
  line-height: calc(14.159658432006836 * var(--rpx));
  text-align: left;
  white-space: nowrap;
  z-index: 433;
}

.groups-f {
  position: absolute;
  width: calc(137 * var(--rpx));
  height: calc(176 * var(--rpx));
  right: calc(156 * var(--rpx));
  bottom: calc(3 * var(--rpx));
  background: rgba(0, 0, 0, 0);
  z-index: 436;
}

.background-10 {
  position: relative;
  width: calc(136 * var(--rpx));
  height: calc(174 * var(--rpx));
  margin: calc(2 * var(--rpx)) 0 0 calc(1 * var(--rpx));
  background: #ffffff;
  z-index: 437;
  overflow: visible auto;
}

.image-11 {
  position: relative;
  width: calc(27 * var(--rpx));
  height: calc(27 * var(--rpx));
  margin: calc(50 * var(--rpx)) 0 0 calc(54 * var(--rpx));
  background: url(./assets/images/ac35ef544fb707f2fe163b7b9fe354d1ae12b017.png) no-repeat center;
  background-size: cover;
  z-index: 439;
}

.knowledge-solution {
  display: block;
  position: relative;
  height: calc(16 * var(--rpx));
  margin: calc(14 * var(--rpx)) 0 0 calc(19 * var(--rpx));
  color: #999ea7;
  font-family: Inter, var(--default-font-family);
  font-size: calc(11.699999809265137 * var(--rpx));
  font-weight: 600;
  line-height: calc(14.159658432006836 * var(--rpx));
  text-align: left;
  white-space: nowrap;
  z-index: 438;
}

.groups-12 {
  position: absolute;
  width: calc(137 * var(--rpx));
  height: calc(177 * var(--rpx));
  right: calc(309 * var(--rpx));
  bottom: calc(1 * var(--rpx));
  background: rgba(0, 0, 0, 0);
  z-index: 440;
}

.background-13 {
  position: relative;
  width: calc(136 * var(--rpx));
  height: calc(178 * var(--rpx));
  margin: 0 0 0 calc(1 * var(--rpx));
  background: #fefefe;
  border: calc(1 * var(--rpx)) solid #fafbfd;
  z-index: 441;
  overflow: visible auto;
}

.image-14 {
  position: relative;
  width: calc(72 * var(--rpx));
  height: calc(73 * var(--rpx));
  margin: calc(8 * var(--rpx)) 0 0 calc(26 * var(--rpx));
  background: #ffffff;
  z-index: 443;
  overflow: visible auto;
}

.image-15 {
  position: relative;
  width: calc(24 * var(--rpx));
  height: calc(27 * var(--rpx));
  margin: calc(43 * var(--rpx)) 0 0 calc(30 * var(--rpx));
  background: url(./assets/images/dc50d0aad782378fd9f181786f87fee961ff203a.png) no-repeat center;
  background-size: cover;
  z-index: 444;
}

.data-platform-solution {
  display: block;
  position: relative;
  height: calc(16 * var(--rpx));
  margin: calc(12 * var(--rpx)) 0 0 calc(20 * var(--rpx));
  color: #989ea7;
  font-family: Inter, var(--default-font-family);
  font-size: calc(11.699999809265137 * var(--rpx));
  font-weight: 600;
  line-height: calc(14.159658432006836 * var(--rpx));
  text-align: left;
  white-space: nowrap;
  z-index: 442;
}

.text-43 {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: calc(16 * var(--rpx));
  height: calc(8 * var(--rpx));
  right: calc(293 * var(--rpx));
  bottom: calc(92 * var(--rpx));
  color: #e6f2fb;
  font-family: Inter, var(--default-font-family);
  font-size: calc(7.900000095367432 * var(--rpx));
  font-weight: 600;
  line-height: calc(8 * var(--rpx));
  text-align: center;
  white-space: nowrap;
  z-index: 435;
}

.text-t {
  display: block;
  position: relative;
  height: calc(6 * var(--rpx));
  margin: calc(-1 * var(--rpx)) 0 0 calc(373 * var(--rpx));
  color: #ecf4fc;
  font-family: Inter, var(--default-font-family);
  font-size: calc(6.5 * var(--rpx));
  font-weight: 600;
  line-height: calc(6 * var(--rpx));
  text-align: left;
  white-space: nowrap;
  z-index: 430;
}

.image-16 {
  position: absolute;
  width: calc(622 * var(--rpx));
  height: calc(203 * var(--rpx));
  right: calc(24 * var(--rpx));
  bottom: calc(129 * var(--rpx));
  font-size: 0px;
  background: url(./assets/images/d76aef3a86f6cdd92e92de942fe578bb49d1b3c4.png) no-repeat center;
  background-size: cover;
  z-index: 408;
}

.solution-advantages {
  display: block;
  position: relative;
  height: calc(21 * var(--rpx));
  margin: calc(50 * var(--rpx)) 0 0 calc(278 * var(--rpx));
  color: #4c6388;
  font-family: Inter, var(--default-font-family);
  font-size: calc(17.299999237060547 * var(--rpx));
  font-weight: 600;
  line-height: calc(20.93692970275879 * var(--rpx));
  text-align: left;
  white-space: nowrap;
  z-index: 427;
}

.advantages {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  width: calc(36 * var(--rpx));
  height: calc(12 * var(--rpx));
  margin: calc(5 * var(--rpx)) 0 0 calc(295 * var(--rpx));
  color: #d7dde3;
  font-family: Inter, var(--default-font-family);
  font-size: calc(5.800000190734863 * var(--rpx));
  font-weight: 600;
  line-height: calc(7.019318103790283 * var(--rpx));
  text-align: left;
  z-index: 426;
}

.groups-17 {
  position: absolute;
  width: calc(327 * var(--rpx));
  height: calc(215 * var(--rpx));
  right: calc(323 * var(--rpx));
  bottom: calc(22 * var(--rpx));
  background: rgba(0, 0, 0, 0);
  z-index: 409;
}

.groups-18 {
  position: relative;
  width: calc(319 * var(--rpx));
  height: calc(105 * var(--rpx));
  margin: 0 0 0 0;
  background: rgba(0, 0, 0, 0);
  z-index: 415;
  overflow: visible auto;
}

.background-19 {
  position: relative;
  width: calc(306 * var(--rpx));
  height: calc(102 * var(--rpx));
  margin: 0 0 0 calc(9 * var(--rpx));
  background: url(./assets/images/d8f88d272f60dbae830a415372f8a59859a4a250.png) no-repeat center;
  background-size: cover;
  z-index: 416;
}

.image-1a {
  position: absolute;
  width: calc(82 * var(--rpx));
  height: calc(83 * var(--rpx));
  right: calc(214 * var(--rpx));
  bottom: calc(11 * var(--rpx));
  background: url(./assets/images/4bd8e12ff2102b38e5fafc3186949569d45d9a91.png) no-repeat center;
  background-size: cover;
  z-index: 419;
}

.flex-column-cb {
  position: absolute;
  width: calc(187.333984375 * var(--rpx));
  height: calc(60 * var(--rpx));
  right: calc(16.666015625 * var(--rpx));
  bottom: calc(28 * var(--rpx));
  font-size: 0px;
  z-index: 418;
}

.customer-value-solution {
  display: block;
  position: relative;
  height: calc(16 * var(--rpx));
  margin: 0 0 0 0;
  color: #8f98a5;
  font-family: Inter, var(--default-font-family);
  font-size: calc(11.699999809265137 * var(--rpx));
  font-weight: 600;
  line-height: calc(14.159658432006836 * var(--rpx));
  text-align: left;
  white-space: nowrap;
  z-index: 418;
}

.vertical-expertise {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  width: calc(187 * var(--rpx));
  height: calc(40 * var(--rpx));
  margin: calc(4 * var(--rpx)) 0 0 calc(0.333984375 * var(--rpx));
  color: #a1a9b4;
  font-family: Inter, var(--default-font-family);
  font-size: calc(7.199999809265137 * var(--rpx));
  font-weight: 600;
  line-height: calc(10.7677001953125 * var(--rpx));
  text-align: left;
  text-overflow: initial;
  z-index: 417;
  overflow: hidden;
}

.groups-1b {
  position: relative;
  width: calc(315 * var(--rpx));
  height: calc(103 * var(--rpx));
  margin: calc(7 * var(--rpx)) 0 0 calc(12 * var(--rpx));
  background: rgba(0, 0, 0, 0);
  z-index: 410;
}

.background-1c {
  position: absolute;
  width: calc(296 * var(--rpx));
  height: calc(98 * var(--rpx));
  right: calc(29 * var(--rpx));
  bottom: calc(109 * var(--rpx));
  background: url(./assets/images/7f82fed8221a8e302de941fb3a2da9f3893bb6a1.png) no-repeat center;
  background-size: cover;
  z-index: 421;
  border-radius: calc(46 * var(--rpx)) calc(3 * var(--rpx)) calc(39 * var(--rpx)) calc(44 * var(--rpx));
}

.image-1d {
  position: absolute;
  width: calc(77 * var(--rpx));
  height: calc(77 * var(--rpx));
  right: calc(208 * var(--rpx));
  bottom: calc(10 * var(--rpx));
  background: url(./assets/images/7621cd4bc72686258eb50b8fd32ff9e1e0980e5c.png) no-repeat center;
  background-size: cover;
  z-index: 424;
  border-radius: calc(38.25 * var(--rpx));
}

.image-1e {
  position: relative;
  width: calc(26 * var(--rpx));
  height: calc(26 * var(--rpx));
  margin: calc(25 * var(--rpx)) 0 0 calc(25 * var(--rpx));
  background: url(./assets/images/304156e8b2ce8a6f8c6314be1d7707d87c3f9010.png) no-repeat center;
  background-size: cover;
  z-index: 425;
}

.mature-solution {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: absolute;
  height: calc(15 * var(--rpx));
  right: calc(61 * var(--rpx));
  bottom: calc(71 * var(--rpx));
  color: #8d95a2;
  font-family: Inter, var(--default-font-family);
  font-size: calc(11.699999809265137 * var(--rpx));
  font-weight: 600;
  line-height: calc(14.159658432006836 * var(--rpx));
  text-align: left;
  white-space: nowrap;
  z-index: 423;
}

.business-understanding {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: absolute;
  width: calc(188 * var(--rpx));
  height: calc(40 * var(--rpx));
  right: calc(10 * var(--rpx));
  bottom: calc(27 * var(--rpx));
  color: #9fa6b1;
  font-family: Inter, var(--default-font-family);
  font-size: calc(7.199999809265137 * var(--rpx));
  font-weight: 600;
  line-height: calc(10.5 * var(--rpx));
  text-align: left;
  text-overflow: initial;
  z-index: 422;
  overflow: hidden;
}

.background-1f {
  position: absolute;
  width: calc(296 * var(--rpx));
  height: calc(98 * var(--rpx));
  right: calc(314 * var(--rpx));
  bottom: calc(24 * var(--rpx));
  background: url(./assets/images/96717a32e5f25d467694880e09d39ec3a2a42527.png) no-repeat center;
  background-size: cover;
  z-index: 411;
  border-radius: calc(45 * var(--rpx)) calc(13 * var(--rpx)) calc(13 * var(--rpx)) calc(45 * var(--rpx));
}

.image-20 {
  position: absolute;
  width: calc(83 * var(--rpx));
  height: calc(78 * var(--rpx));
  right: calc(208 * var(--rpx));
  bottom: calc(11 * var(--rpx));
  background: url(./assets/images/4673b3088cdb25ca5941df8cdc78c4a646f3b8c4.png) no-repeat center;
  background-size: cover;
  z-index: 414;
  border-radius: calc(169 * var(--rpx));
}

.flex-column-a {
  position: absolute;
  width: calc(185 * var(--rpx));
  height: calc(60 * var(--rpx));
  right: calc(12 * var(--rpx));
  bottom: calc(27 * var(--rpx));
  font-size: 0px;
  z-index: 413;
}

.data-platform-system {
  display: block;
  position: relative;
  height: calc(16 * var(--rpx));
  margin: 0 0 0 0;
  color: #929ba7;
  font-family: Inter, var(--default-font-family);
  font-size: calc(11.699999809265137 * var(--rpx));
  font-weight: 600;
  line-height: calc(14.159658432006836 * var(--rpx));
  text-align: left;
  white-space: nowrap;
  z-index: 413;
}

.big-data-architecture {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  width: calc(185 * var(--rpx));
  height: calc(41 * var(--rpx));
  margin: calc(3 * var(--rpx)) 0 0 0;
  color: #9ea6b1;
  font-family: Inter, var(--default-font-family);
  font-size: calc(7.199999809265137 * var(--rpx));
  font-weight: 600;
  line-height: calc(10.90442180633545 * var(--rpx));
  text-align: left;
  text-overflow: initial;
  z-index: 412;
  overflow: hidden;
}

.groups-21 {
  position: absolute;
  width: calc(352 * var(--rpx));
  height: calc(100 * var(--rpx));
  right: calc(20 * var(--rpx));
  bottom: calc(116 * var(--rpx));
  background: rgba(0, 0, 0, 0);
  z-index: 420;
}

.groups-22 {
  position: absolute;
  width: calc(372 * var(--rpx));
  height: calc(104 * var(--rpx));
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0);
  z-index: 403;
}

.background-23 {
  position: absolute;
  width: calc(256 * var(--rpx));
  height: calc(98 * var(--rpx));
  right: calc(90 * var(--rpx));
  bottom: calc(4 * var(--rpx));
  background: url(./assets/images/5983c7627878b793246242d03910fbd271203193.png) no-repeat center;
  background-size: cover;
  z-index: 404;
  border-radius: calc(44 * var(--rpx)) 0 calc(9 * var(--rpx)) calc(42 * var(--rpx));
}

.image-24 {
  position: absolute;
  width: calc(86 * var(--rpx));
  height: calc(87 * var(--rpx));
  right: calc(168 * var(--rpx));
  bottom: calc(8 * var(--rpx));
  background: url(./assets/images/757b54a24037bc5610c39b7870c485bc7fbd8de4.png) no-repeat center;
  background-size: cover;
  z-index: 407;
}

.core-technology {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: absolute;
  height: calc(16 * var(--rpx));
  right: calc(22 * var(--rpx));
  bottom: calc(71 * var(--rpx));
  color: #8e97a3;
  font-family: Inter, var(--default-font-family);
  font-size: calc(11.699999809265137 * var(--rpx));
  font-weight: 600;
  line-height: calc(14.159658432006836 * var(--rpx));
  text-align: left;
  white-space: nowrap;
  z-index: 406;
}

.open-source-architecture {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: absolute;
  width: calc(187 * var(--rpx));
  height: calc(37 * var(--rpx));
  right: calc(61 * var(--rpx));
  bottom: calc(31 * var(--rpx));
  color: #a0a8b3;
  font-family: Inter, var(--default-font-family);
  font-size: calc(6.70734863 * var(--rpx));
  font-weight: 600;
  line-height: calc(10.809123039245605 * var(--rpx));
  text-align: left;
  text-overflow: initial;
  z-index: 405;
  overflow: hidden;
}

.background-25 {
  position: relative;
  width: calc(776 * var(--rpx));
  height: calc(395 * var(--rpx));
  margin: calc(23 * var(--rpx)) 0 0 0;
  font-size: 0px;
  background: url(./assets/images/5c7ca9729d0f5d2a147c137ec5cba8a2627e5b34.jpg) no-repeat center;
  background-size: cover;
  z-index: 377;
  overflow: visible auto;
}

.core-products {
  display: block;
  position: relative;
  height: calc(23 * var(--rpx));
  margin: calc(35 * var(--rpx)) 0 0 calc(352 * var(--rpx));
  color: #bcbdc3;
  font-family: Inter, var(--default-font-family);
  font-size: calc(17.299999237060547 * var(--rpx));
  font-weight: 600;
  line-height: calc(20.93692970275879 * var(--rpx));
  text-align: left;
  white-space: nowrap;
  z-index: 400;
}

.products {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  width: calc(28 * var(--rpx));
  height: calc(11 * var(--rpx));
  margin: calc(3 * var(--rpx)) 0 0 calc(374 * var(--rpx));
  color: #676c7d;
  font-family: Inter, var(--default-font-family);
  font-size: calc(5.699999809265137 * var(--rpx));
  font-weight: 600;
  line-height: calc(6.898294925689697 * var(--rpx));
  text-align: left;
  z-index: 399;
}

.data-platform-system-26 {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  width: calc(396 * var(--rpx));
  height: calc(27 * var(--rpx));
  margin: calc(11 * var(--rpx)) 0 0 calc(190.5 * var(--rpx));
  color: #70717f;
  font-family: Inter, var(--default-font-family);
  font-size: calc(8.5 * var(--rpx));
  font-weight: 600;
  line-height: calc(12.919921875 * var(--rpx));
  text-align: left;
  text-overflow: initial;
  z-index: 398;
  overflow: hidden;
}

.flex-row-bd {
  position: relative;
  width: calc(776 * var(--rpx));
  height: calc(209 * var(--rpx));
  margin: calc(22 * var(--rpx)) 0 0 0;
  z-index: 392;
}

.groups-27 {
  position: absolute;
  width: calc(240 * var(--rpx));
  height: calc(206 * var(--rpx));
  right: calc(397 * var(--rpx));
  bottom: calc(3 * var(--rpx));
  background: rgba(0, 0, 0, 0);
  z-index: 390;
}

.image-28 {
  position: relative;
  width: calc(211 * var(--rpx));
  height: calc(151 * var(--rpx));
  margin: calc(32 * var(--rpx)) 0 0 calc(26 * var(--rpx));
  background: url(./assets/images/fcae95bd3b259a2ead3762b540bcb2bf06b3479a.png) no-repeat center;
  background-size: cover;
  z-index: 391;
}

.groups-29 {
  position: absolute;
  width: calc(256 * var(--rpx));
  height: calc(207 * var(--rpx));
  right: calc(141 * var(--rpx));
  bottom: calc(2 * var(--rpx));
  font-size: 0px;
  background: rgba(0, 0, 0, 0);
  z-index: 384;
}

.rda-automation {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  width: calc(87 * var(--rpx));
  height: calc(12 * var(--rpx));
  margin: calc(61 * var(--rpx)) 0 0 calc(13 * var(--rpx));
  color: #686f81;
  font-family: Inter, var(--default-font-family);
  font-size: calc(5.699999809265137 * var(--rpx));
  font-weight: 600;
  line-height: calc(6.898294925689697 * var(--rpx));
  text-align: left;
  z-index: 387;
}

.ai-research-management {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  width: calc(219 * var(--rpx));
  height: calc(27 * var(--rpx));
  margin: calc(11 * var(--rpx)) 0 0 calc(14.333984375 * var(--rpx));
  color: #9a9da7;
  font-family: Inter, var(--default-font-family);
  font-size: calc(8.5 * var(--rpx));
  font-weight: 600;
  line-height: calc(11.462231636047363 * var(--rpx));
  text-align: left;
  text-overflow: initial;
  z-index: 386;
  overflow: hidden;
}

.ai-data-collection {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  width: calc(222 * var(--rpx));
  height: calc(58 * var(--rpx));
  margin: calc(3 * var(--rpx)) 0 0 calc(13.5 * var(--rpx));
  color: #676f82;
  font-family: Inter, var(--default-font-family);
  font-size: calc(8.5 * var(--rpx));
  font-weight: 600;
  line-height: calc(13.35546875 * var(--rpx));
  text-align: left;
  text-overflow: initial;
  z-index: 385;
  overflow: hidden;
}

.image-2a {
  position: absolute;
  width: calc(24 * var(--rpx));
  height: calc(33 * var(--rpx));
  right: calc(24 * var(--rpx));
  bottom: calc(154 * var(--rpx));
  background: url(./assets/images/293bf2361157a2d00195d1cf383dc89eeea1fbb9.png) no-repeat center;
  background-size: cover;
  z-index: 388;
}

.robotic-automation {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: absolute;
  height: calc(20 * var(--rpx));
  right: calc(118 * var(--rpx));
  bottom: calc(148 * var(--rpx));
  color: #b1b4bc;
  font-family: Inter, var(--default-font-family);
  font-size: calc(15.300000190734863 * var(--rpx));
  font-weight: 600;
  line-height: calc(18.516477584838867 * var(--rpx));
  text-align: left;
  white-space: nowrap;
  z-index: 389;
}

.background-2b {
  position: absolute;
  width: calc(494 * var(--rpx));
  height: calc(204 * var(--rpx));
  right: calc(141 * var(--rpx));
  bottom: calc(3 * var(--rpx));
  background: #3a3f53;
  border: calc(1 * var(--rpx)) solid #3e4559;
  z-index: 383;
}

.groups-2c {
  position: absolute;
  width: calc(119 * var(--rpx));
  height: calc(204 * var(--rpx));
  right: 0;
  bottom: 0;
  background: url(./assets/images/b35d44ab-b453-4b9d-9b49-5fbf4fc49ba9.png) no-repeat center;
  background-size: cover;
  z-index: 382;
}

.groups-2d {
  position: absolute;
  width: calc(118 * var(--rpx));
  height: calc(193 * var(--rpx));
  right: calc(658 * var(--rpx));
  bottom: calc(9 * var(--rpx));
  background: rgba(0, 0, 0, 0);
  z-index: 392;
}

.background-2e {
  position: relative;
  width: calc(114 * var(--rpx));
  height: calc(184 * var(--rpx));
  margin: calc(5 * var(--rpx)) 0 0 0;
  background: #3a4054;
  z-index: 393;
  overflow: visible auto;
}

.image-2f {
  position: relative;
  width: calc(26 * var(--rpx));
  height: calc(30 * var(--rpx));
  margin: calc(16 * var(--rpx)) 0 0 calc(72 * var(--rpx));
  background: url(./assets/images/5c9666b749e2367a4451606d6b7fc6be1f45a28b.png) no-repeat center;
  background-size: cover;
  z-index: 397;
}

.ffan {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: calc(15 * var(--rpx));
  height: calc(9 * var(--rpx));
  margin: calc(8 * var(--rpx)) 0 0 0;
  color: #6d7485;
  font-family: Inter, var(--default-font-family);
  font-size: calc(6.900000095367432 * var(--rpx));
  font-weight: 600;
  line-height: calc(8.350567817687988 * var(--rpx));
  text-align: center;
  white-space: nowrap;
  z-index: 396;
}

.management-process-intelligence {
  display: block;
  position: relative;
  height: calc(13 * var(--rpx));
  margin: calc(11 * var(--rpx)) 0 0 0;
  color: #9da0aa;
  font-family: Inter, var(--default-font-family);
  font-size: calc(7.199999809265137 * var(--rpx));
  font-weight: 600;
  line-height: calc(8.71363639831543 * var(--rpx));
  text-align: left;
  white-space: nowrap;
  z-index: 395;
}

.financial-institution-data-management {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  width: calc(98 * var(--rpx));
  height: calc(53 * var(--rpx));
  margin: calc(13 * var(--rpx)) 0 0 0;
  color: #6e7789;
  font-family: Inter, var(--default-font-family);
  font-size: calc(7.800000190734863 * var(--rpx));
  font-weight: 600;
  line-height: calc(11.341325759887695 * var(--rpx));
  text-align: left;
  text-overflow: initial;
  z-index: 394;
  overflow: hidden;
}

.flex-row-cef {
  position: relative;
  width: calc(102 * var(--rpx));
  height: calc(2 * var(--rpx));
  margin: calc(19 * var(--rpx)) 0 0 calc(337 * var(--rpx));
  z-index: 381;
}

.background-30 {
  position: absolute;
  width: calc(23 * var(--rpx));
  height: calc(2 * var(--rpx));
  right: calc(79 * var(--rpx));
  bottom: 0;
  background: url(./assets/images/da2726d5fd0ab612466e4cfbcefd7358daa38317.png) no-repeat center;
  background-size: cover;
  z-index: 381;
}

.background-31 {
  position: absolute;
  width: calc(22 * var(--rpx));
  height: calc(2 * var(--rpx));
  right: calc(53 * var(--rpx));
  bottom: 0;
  background: url(./assets/images/7793ff53c42d67307eee96313e0e5d4c3c3cd5f0.png) no-repeat center;
  background-size: cover;
  z-index: 380;
}

.background-32 {
  position: absolute;
  width: calc(22 * var(--rpx));
  height: calc(2 * var(--rpx));
  right: calc(27 * var(--rpx));
  bottom: 0;
  background: url(./assets/images/389fd38c5a0eb13b6e8fd05e8859ca85555de6b3.png) no-repeat center;
  background-size: cover;
  z-index: 379;
}

.background-33 {
  position: absolute;
  width: calc(23 * var(--rpx));
  height: calc(2 * var(--rpx));
  right: 0;
  bottom: 0;
  background: url(./assets/images/e8875cfab8049b3980a29bc348b6299938cb01d1.png) no-repeat center;
  background-size: cover;
  z-index: 378;
}

.background-34 {
  position: relative;
  width: calc(776 * var(--rpx));
  height: calc(31 * var(--rpx));
  margin: calc(3 * var(--rpx)) 0 0 0;
  background: #ffffff;
  z-index: 376;
}

.background-35 {
  position: relative;
  width: calc(776 * var(--rpx));
  height: calc(27 * var(--rpx));
  margin: calc(1 * var(--rpx)) 0 0 0;
  background: f4f6f9;
  z-index: 372;
}

.shangjian-technology {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: absolute;
  height: calc(13 * var(--rpx));
  right: calc(692 * var(--rpx));
  bottom: calc(11 * var(--rpx));
  color: #6a7d9c;
  font-family: Inter, var(--default-font-family);
  font-size: calc(10.600000381469727 * var(--rpx));
  font-weight: 600;
  line-height: calc(12.828409194946289 * var(--rpx));
  text-align: left;
  white-space: nowrap;
  z-index: 374;
}

.image-36 {
  position: absolute;
  width: calc(21 * var(--rpx));
  height: calc(22 * var(--rpx));
  right: calc(744 * var(--rpx));
  bottom: calc(2 * var(--rpx));
  background: url(./assets/images/logo.png) no-repeat center;
  background-size: cover;
  z-index: 375;
}

.volue-simplgs {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: absolute;
  height: calc(8 * var(--rpx));
  right: calc(692 * var(--rpx));
  bottom: calc(3 * var(--rpx));
  color: #8d9bb2;
  font-family: Inter, var(--default-font-family);
  font-size: calc(4.800000190734863 * var(--rpx));
  font-weight: 600;
  line-height: calc(5.809091091156006 * var(--rpx));
  text-align: left;
  white-space: nowrap;
  z-index: 373;
}

.background-37 {
  position: relative;
  width: calc(870 * var(--rpx));
  height: calc(245 * var(--rpx));
  margin: calc(10 * var(--rpx)) 0 0 0;
  background: #fefefe;
  z-index: 256;
  overflow: visible auto;
}

.background-38 {
  position: relative;
  width: calc(850 * var(--rpx));
  height: calc(54 * var(--rpx));
  margin: calc(5 * var(--rpx)) 0 0 0;
  background: #ffffff;
  z-index: 320;
  overflow: visible auto;
}

.flex-row-f {
  position: relative;
  width: calc(317 * var(--rpx));
  height: calc(16 * var(--rpx));
  margin: calc(20 * var(--rpx)) 0 0 calc(359 * var(--rpx));
  z-index: 327;
}

.fund-asset-management {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: absolute;
  height: calc(16 * var(--rpx));
  right: calc(258 * var(--rpx));
  bottom: 0;
  color: #8894a5;
  font-family: Inter, var(--default-font-family);
  font-size: calc(12.899999618530273 * var(--rpx));
  font-weight: 600;
  line-height: calc(15.611930847167969 * var(--rpx));
  text-align: left;
  white-space: nowrap;
  z-index: 327;
}

.pan-financial {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: absolute;
  height: calc(14 * var(--rpx));
  right: calc(61 * var(--rpx));
  bottom: calc(1 * var(--rpx));
  color: #e1e2e5;
  font-family: Inter, var(--default-font-family);
  font-size: calc(10 * var(--rpx));
  font-weight: 600;
  line-height: calc(12.102272033691406 * var(--rpx));
  text-align: left;
  white-space: nowrap;
  z-index: 323;
}

.securities-company {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: absolute;
  height: calc(13 * var(--rpx));
  right: calc(188 * var(--rpx));
  bottom: calc(1 * var(--rpx));
  color: #dbdde0;
  font-family: Inter, var(--default-font-family);
  font-size: calc(10 * var(--rpx));
  font-weight: 600;
  line-height: calc(12.102272033691406 * var(--rpx));
  text-align: left;
  white-space: nowrap;
  z-index: 325;
}

.vc-pe {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: absolute;
  height: calc(13 * var(--rpx));
  right: calc(128 * var(--rpx));
  bottom: calc(1 * var(--rpx));
  color: #dadcdf;
  font-family: Inter, var(--default-font-family);
  font-size: calc(8.800000190734863 * var(--rpx));
  font-weight: 600;
  line-height: calc(10.649999618530273 * var(--rpx));
  text-align: left;
  white-space: nowrap;
  z-index: 324;
}

.other {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: calc(21 * var(--rpx));
  height: calc(13 * var(--rpx));
  right: 0;
  bottom: calc(1 * var(--rpx));
  color: #dcdee1;
  font-family: Inter, var(--default-font-family);
  font-size: calc(10 * var(--rpx));
  font-weight: 600;
  line-height: calc(12.102272033691406 * var(--rpx));
  text-align: center;
  white-space: nowrap;
  z-index: 322;
}

.flex-row-f-39 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  width: calc(382 * var(--rpx));
  height: calc(11 * var(--rpx));
  margin: calc(-9 * var(--rpx)) 0 0 calc(338 * var(--rpx));
  z-index: 326;
}

.image-3a {
  flex-shrink: 0;
  position: relative;
  width: calc(101 * var(--rpx));
  height: calc(11 * var(--rpx));
  background: url(./assets/images/e17827f79c8ffb58a42c8644a6591714d071d1c1.png) no-repeat center;
  background-size: cover;
  z-index: 326;
}

.image-3b {
  flex-shrink: 0;
  position: relative;
  width: calc(5 * var(--rpx));
  height: calc(1 * var(--rpx));
  z-index: 321;
}

.background-3c {
  position: relative;
  width: calc(790 * var(--rpx));
  height: calc(230 * var(--rpx));
  margin: calc(5 * var(--rpx)) 0 0 0;
  background: #fefefe;
  z-index: 255;
  overflow: visible auto;
}

.background-3d {
  position: relative;
  width: calc(730 * var(--rpx));
  height: calc(120 * var(--rpx));
  margin: calc(100 * var(--rpx)) 0 0 0;
  background: #fefefe;
  z-index: 254;
  overflow: visible auto;
}

.flex-row-aa {
  position: relative;
  width: calc(578 * var(--rpx));
  height: calc(53 * var(--rpx));
  margin: calc(3 * var(--rpx)) 0 0 calc(99 * var(--rpx));
  z-index: 319;
}

.groups-3e {
  position: absolute;
  width: calc(98 * var(--rpx));
  height: calc(53 * var(--rpx));
  right: calc(397 * var(--rpx));
  bottom: 0;
  background: rgba(0, 0, 0, 0);
  z-index: 311;
}

.background-3f {
  position: relative;
  width: calc(91 * var(--rpx));
  height: calc(46 * var(--rpx));
  margin: calc(3 * var(--rpx)) 0 0 calc(4 * var(--rpx));
  background: #ffffff;
  z-index: 312;
  overflow: visible auto;
}

.image-40 {
  position: relative;
  width: calc(32 * var(--rpx));
  height: calc(14 * var(--rpx));
  margin: calc(14 * var(--rpx)) 0 0 calc(31 * var(--rpx));
  background: url(./assets/images/0861a3fdc9589ddb9748798e925ffec1cb9b5462.png) no-repeat center;
  background-size: cover;
  z-index: 314;
}

.asset-management {
  display: block;
  position: relative;
  height: calc(10 * var(--rpx));
  margin: calc(1 * var(--rpx)) 0 0 calc(31 * var(--rpx));
  color: #95928f;
  font-family: Inter, var(--default-font-family);
  font-size: calc(6.800000190734863 * var(--rpx));
  font-weight: 600;
  line-height: calc(8.229545593261719 * var(--rpx));
  text-align: left;
  white-space: nowrap;
  z-index: 313;
}

.groups-41 {
  position: absolute;
  width: calc(103 * var(--rpx));
  height: calc(46 * var(--rpx));
  right: calc(77 * var(--rpx));
  bottom: calc(7 * var(--rpx));
  background: rgba(0, 0, 0, 0);
  z-index: 298;
}

.background-42 {
  position: relative;
  width: calc(81 * var(--rpx));
  height: calc(19 * var(--rpx));
  margin: calc(20 * var(--rpx)) 0 0 calc(9 * var(--rpx));
  background: url(./assets/images/a0b6b15c9d7fbc395495a484838a2ef6a0434e4f.png) no-repeat center;
  background-size: cover;
  z-index: 297;
}

.image-43 {
  position: absolute;
  width: calc(17 * var(--rpx));
  height: calc(17 * var(--rpx));
  right: calc(57 * var(--rpx));
  bottom: calc(1 * var(--rpx));
  background: url(./assets/images/ae5927ab2944f09eac3eca15f017c58580ad0e1d.png) no-repeat center;
  background-size: cover;
  z-index: 302;
}

.cunh {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: calc(17 * var(--rpx));
  height: calc(6 * var(--rpx));
  right: 0;
  bottom: calc(1 * var(--rpx));
  color: #ebd1a1;
  font-family: Inter, var(--default-font-family);
  font-size: calc(2.4000000953674316 * var(--rpx));
  font-weight: 600;
  line-height: calc(2.904545545578003 * var(--rpx));
  text-align: center;
  z-index: 302;
}

.flex-column-dde {
  position: absolute;
  width: calc(40 * var(--rpx));
  height: calc(14 * var(--rpx));
  right: calc(15 * var(--rpx));
  bottom: 0;
  z-index: 300;
}

.image-44 {
  position: relative;
  width: calc(38 * var(--rpx));
  height: calc(8 * var(--rpx));
  margin: 0 0 0 calc(1 * var(--rpx));
  background: url(./assets/images/3065fbb64db082f1e5e3f1cf2044debe35374e6f.png) no-repeat center;
  background-size: cover;
  z-index: 300;
}

.egg-talk-buddha-power {
  display: block;
  position: relative;
  height: calc(5 * var(--rpx));
  margin: calc(1 * var(--rpx)) 0 0 0;
  color: #f3e4c9;
  font-family: Inter, var(--default-font-family);
  font-size: calc(3.299999952316284 * var(--rpx));
  font-weight: 600;
  line-height: calc(3.9937498569488525 * var(--rpx));
  text-align: left;
  white-space: nowrap;
  z-index: 299;
}

.groups-45 {
  position: absolute;
  width: calc(102 * var(--rpx));
  height: calc(46 * var(--rpx));
  right: calc(185 * var(--rpx));
  bottom: calc(5 * var(--rpx));
  background: rgba(0, 0, 0, 0);
  z-index: 303;
}

.background-46 {
  position: absolute;
  width: calc(98 * var(--rpx));
  height: calc(44 * var(--rpx));
  right: calc(188 * var(--rpx));
  bottom: calc(2 * var(--rpx));
  background: #ffffff;
  z-index: 304;
}

.image-47 {
  position: absolute;
  width: calc(17 * var(--rpx));
  height: calc(18 * var(--rpx));
  right: calc(62 * var(--rpx));
  bottom: calc(13 * var(--rpx));
  background: url(./assets/images/38517b0ffc3bb20e00a01f451e8ebe63c322b88c.png) no-repeat center;
  background-size: cover;
  z-index: 307;
}

.flex-column-a-48 {
  position: absolute;
  width: calc(40 * var(--rpx));
  height: calc(15 * var(--rpx));
  right: calc(19 * var(--rpx));
  bottom: calc(13 * var(--rpx));
  z-index: 306;
}

.image-49 {
  position: relative;
  width: calc(39 * var(--rpx));
  height: calc(9 * var(--rpx));
  margin: 0 0 0 0;
  background: url(./assets/images/42c0ba14528daf44b498558b3f5f7c76e8b4c1cf.png) no-repeat center;
  background-size: cover;
  z-index: 306;
}

.chinaamc {
  display: block;
  position: relative;
  height: calc(6 * var(--rpx));
  margin: 0 0 0 0;
  color: #808080;
  font-family: Inter, var(--default-font-family);
  font-size: calc(6.5 * var(--rpx));
  font-weight: 600;
  line-height: calc(6 * var(--rpx));
  text-align: left;
  white-space: nowrap;
  z-index: 305;
}

.background-4a {
  position: absolute;
  width: calc(54 * var(--rpx));
  height: calc(19 * var(--rpx));
  right: 0;
  bottom: calc(16 * var(--rpx));
  background: url(./assets/images/19b38f02a6c65679123dbf3a9b67928cbc1a2c5c.png) no-repeat center;
  background-size: cover;
  z-index: 292;
}

.image-4b {
  position: absolute;
  width: calc(17 * var(--rpx));
  height: calc(17 * var(--rpx));
  right: calc(36 * var(--rpx));
  bottom: calc(1 * var(--rpx));
  background: url(./assets/images/efc7414862aa91bd23d5c7f8a29c44513f1e23cb.png) no-repeat center;
  background-size: cover;
  z-index: 296;
}

.flex-column-f {
  position: absolute;
  width: calc(29 * var(--rpx));
  height: calc(13 * var(--rpx));
  right: calc(5 * var(--rpx));
  bottom: 0;
  z-index: 294;
}

.image-4c {
  position: relative;
  width: calc(29 * var(--rpx));
  height: calc(11 * var(--rpx));
  margin: 0 0 0 0;
  background: url(./assets/images/1e70b5c0c87c1b8ebf3f0b73517852918f9423ac.png) no-repeat center;
  background-size: cover;
  z-index: 293;
  overflow: visible auto;
}

.image-4d {
  position: relative;
  width: calc(27 * var(--rpx));
  height: calc(7 * var(--rpx));
  margin: 0 0 0 calc(2 * var(--rpx));
  background: url(./assets/images/13e828bb7f5f1ab08481a8e39ed945eab24ef11e.png) no-repeat center;
  background-size: cover;
  z-index: 295;
}

.intyeit-timd {
  display: block;
  position: relative;
  height: calc(5 * var(--rpx));
  margin: calc(-3 * var(--rpx)) 0 0 calc(1 * var(--rpx));
  color: #b0b0b0;
  font-family: Inter, var(--default-font-family);
  font-size: calc(3.9000000953674316 * var(--rpx));
  font-weight: 600;
  line-height: calc(4.719886302947998 * var(--rpx));
  text-align: left;
  white-space: nowrap;
  z-index: 294;
}

.background-4e {
  position: absolute;
  width: calc(66 * var(--rpx));
  height: calc(22 * var(--rpx));
  right: calc(308 * var(--rpx));
  bottom: calc(12 * var(--rpx));
  background: url(./assets/images/8a9ef578dbff0114e3cbc66263f067839eb63a92.png) no-repeat center;
  background-size: cover;
  z-index: 308;
}

.image-4f {
  position: absolute;
  width: calc(19 * var(--rpx));
  height: calc(19 * var(--rpx));
  right: calc(46 * var(--rpx));
  bottom: calc(2 * var(--rpx));
  background: url(./assets/images/a8b6e9a3267c0fcb5d20e00db3dfc8d33db3a5e1.png) no-repeat center;
  background-size: cover;
  z-index: 310;
}

.huabao-fund {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: absolute;
  height: calc(14 * var(--rpx));
  right: 0;
  bottom: calc(6 * var(--rpx));
  color: #797673;
  font-family: Inter, var(--default-font-family);
  font-size: calc(9.100000381469727 * var(--rpx));
  font-weight: 600;
  line-height: calc(11.013068199157715 * var(--rpx));
  text-align: left;
  white-space: nowrap;
  z-index: 309;
}

.changxin-fund {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: absolute;
  height: calc(12 * var(--rpx));
  right: calc(519 * var(--rpx));
  bottom: calc(20 * var(--rpx));
  color: #b7a375;
  font-family: Inter, var(--default-font-family);
  font-size: calc(10 * var(--rpx));
  font-weight: 600;
  line-height: calc(12 * var(--rpx));
  text-align: left;
  white-space: nowrap;
  z-index: 318;
}

.image-50 {
  position: absolute;
  width: calc(15 * var(--rpx));
  height: calc(15 * var(--rpx));
  right: calc(563 * var(--rpx));
  bottom: calc(16 * var(--rpx));
  background: url(./assets/images/7a5af19d9080e48fcdf8246654ad02678b2c83be.png) no-repeat center;
  background-size: cover;
  z-index: 319;
}

.background-51 {
  position: absolute;
  width: calc(51 * var(--rpx));
  height: calc(13 * var(--rpx));
  right: calc(519 * var(--rpx));
  bottom: calc(16 * var(--rpx));
  background: url(./assets/images/d8f4feb8ff5046a184b63d9ac7a02898500e3bf8.png) no-repeat center;
  background-size: cover;
  z-index: 315;
}

.image-52 {
  position: relative;
  width: calc(44 * var(--rpx));
  height: calc(5 * var(--rpx));
  margin: calc(6 * var(--rpx)) 0 0 calc(8 * var(--rpx));
  background: url(./assets/images/a3393a5d9813997c537f492f717de51d38d2c4e6.png) no-repeat center;
  background-size: cover;
  z-index: 316;
}

.thevy-tin-tost {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  width: calc(43 * var(--rpx));
  height: calc(3 * var(--rpx));
  margin: calc(-1 * var(--rpx)) 0 0 calc(9 * var(--rpx));
  color: #fdfdfd;
  font-family: Inter, var(--default-font-family);
  font-size: calc(1 * var(--rpx));
  font-weight: 600;
  line-height: calc(1.2102272510528564 * var(--rpx));
  text-align: left;
  z-index: 317;
}

.sarvekt {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: calc(19 * var(--rpx));
  height: calc(5 * var(--rpx));
  right: calc(35 * var(--rpx));
  bottom: calc(11 * var(--rpx));
  color: #a2a2a2;
  font-family: Inter, var(--default-font-family);
  font-size: calc(3.5 * var(--rpx));
  font-weight: 600;
  line-height: calc(4.235795497894287 * var(--rpx));
  text-align: center;
  white-space: nowrap;
  z-index: 291;
}

.flex-row-a {
  position: relative;
  width: calc(666 * var(--rpx));
  height: calc(80 * var(--rpx));
  margin: 0 0 0 calc(55 * var(--rpx));
  z-index: 290;
}

.image-53 {
  position: absolute;
  width: calc(12 * var(--rpx));
  height: calc(23 * var(--rpx));
  right: calc(654 * var(--rpx));
  bottom: calc(21 * var(--rpx));
  background: url(./assets/images/db078cbd2a930a1b3351f0cf7a840346a7867f5a.png) no-repeat center;
  background-size: cover;
  z-index: 290;
}

.groups-54 {
  position: relative;
  float: left;
  margin: calc(23 * var(--rpx)) 0 0 calc(50 * var(--rpx));
  width: calc(103 * var(--rpx));
  height: calc(41 * var(--rpx));
  background: rgba(0, 0, 0, 0);
  z-index: 280;
}

.flex-column- {
  position: absolute;
  width: calc(39 * var(--rpx));
  height: calc(17 * var(--rpx));
  right: calc(24 * var(--rpx));
  bottom: calc(9 * var(--rpx));
  font-size: 0px;
  z-index: 282;
}

.business-cooperation-item {
  display: block;
  position: relative;
  height: calc(11 * var(--rpx));
  margin: 0 0 0 0;
  color: #999696;
  font-family: Inter, var(--default-font-family);
  font-size: calc(9.100000381469727 * var(--rpx));
  font-weight: 600;
  line-height: calc(11 * var(--rpx));
  text-align: left;
  white-space: nowrap;
  z-index: 282;
}

.background-55 {
  position: relative;
  width: calc(34 * var(--rpx));
  height: calc(2 * var(--rpx));
  margin: calc(-1 * var(--rpx)) 0 0 calc(3 * var(--rpx));
  z-index: 279;
}

.business-cooperation-item-en {
  display: block;
  position: relative;
  height: calc(5 * var(--rpx));
  margin: 0 0 0 0;
  color: #bab8b8;
  font-family: Inter, var(--default-font-family);
  font-size: calc(3.9000000953674316 * var(--rpx));
  font-weight: 600;
  line-height: calc(4.719886302947998 * var(--rpx));
  text-align: left;
  white-space: nowrap;
  z-index: 281;
}

.image-56 {
  position: absolute;
  width: calc(20 * var(--rpx));
  height: calc(23 * var(--rpx));
  right: calc(73 * var(--rpx));
  bottom: calc(8 * var(--rpx));
  z-index: 283;
}

.groups-57 {
  position: absolute;
  width: calc(99 * var(--rpx));
  height: calc(39 * var(--rpx));
  right: calc(284 * var(--rpx));
  bottom: calc(5 * var(--rpx));
  background: rgba(0, 0, 0, 0);
  z-index: 275;
}

.background-58 {
  position: relative;
  width: calc(57 * var(--rpx));
  height: calc(20 * var(--rpx));
  margin: calc(15 * var(--rpx)) 0 0 calc(20 * var(--rpx));
  background: url(./assets/images/83695873cc5c1f01bb7ba36f46b39da5a8d4e41a.png) no-repeat center;
  background-size: cover;
  z-index: 274;
}

.image-59 {
  position: absolute;
  width: calc(38 * var(--rpx));
  height: calc(17 * var(--rpx));
  right: calc(2 * var(--rpx));
  bottom: calc(2 * var(--rpx));
  background: url(./assets/images/e4fdf814b9ef0f1592799c93583a51c40e4f2598.png) no-repeat center;
  background-size: cover;
  z-index: 276;
}

.taikand {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: absolute;
  height: calc(7 * var(--rpx));
  right: calc(13 * var(--rpx));
  bottom: 0;
  color: #646e90;
  font-family: Inter, var(--default-font-family);
  font-size: calc(5.400000095367432 * var(--rpx));
  font-weight: 600;
  line-height: calc(6.535227298736572 * var(--rpx));
  text-align: left;
  white-space: nowrap;
  z-index: 277;
}

.image-5a {
  position: absolute;
  width: calc(14 * var(--rpx));
  height: calc(13 * var(--rpx));
  right: calc(42 * var(--rpx));
  bottom: calc(4 * var(--rpx));
  background: url(./assets/images/eb72a3a310beac147012c4f0d2adb6347f6aa9d5.png) no-repeat center;
  background-size: cover;
  z-index: 278;
}

.groups-5b {
  position: absolute;
  width: calc(112 * var(--rpx));
  height: calc(40 * var(--rpx));
  right: calc(63 * var(--rpx));
  bottom: calc(4 * var(--rpx));
  background: rgba(0, 0, 0, 0);
  z-index: 265;
}

.image-5c {
  position: absolute;
  width: calc(19 * var(--rpx));
  height: calc(18 * var(--rpx));
  right: calc(74 * var(--rpx));
  bottom: calc(7 * var(--rpx));
  background: url(./assets/images/f50bf38a71fc05dda41f0778d3f303ad54822e66.png) no-repeat center;
  background-size: cover;
  z-index: 268;
}

.image-5d {
  position: absolute;
  width: calc(38 * var(--rpx));
  height: calc(9 * var(--rpx));
  right: calc(33 * var(--rpx));
  bottom: calc(14 * var(--rpx));
  background: url(./assets/images/5794b0699b3e66e57dc2dc20979b36afef6a9c06.png) no-repeat center;
  background-size: cover;
  z-index: 267;
}

.mazntalth-pan {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: absolute;
  height: calc(5 * var(--rpx));
  right: calc(32 * var(--rpx));
  bottom: calc(8 * var(--rpx));
  color: #cbcbcb;
  font-family: Inter, var(--default-font-family);
  font-size: calc(4.199999809265137 * var(--rpx));
  font-weight: 600;
  line-height: calc(5 * var(--rpx));
  text-align: left;
  white-space: nowrap;
  z-index: 266;
}

.background-5e {
  position: absolute;
  width: calc(106 * var(--rpx));
  height: calc(44 * var(--rpx));
  right: calc(66 * var(--rpx));
  bottom: 0;
  background: #ffffff;
  z-index: 264;
}

.image-5f {
  position: absolute;
  width: calc(13 * var(--rpx));
  height: calc(23 * var(--rpx));
  right: 0;
  bottom: calc(60 * var(--rpx));
  background: url(./assets/images/d01f8770b61b8ec04500b60f3b0c3e07bf0960ea.png) no-repeat center;
  background-size: cover;
  z-index: 263;
}

.background-60 {
  position: absolute;
  width: calc(104 * var(--rpx));
  height: calc(43 * var(--rpx));
  right: calc(490 * var(--rpx));
  bottom: 0;
  background: #fefefe;
  z-index: 284;
}

.groups-61 {
  position: absolute;
  width: calc(98 * var(--rpx));
  height: calc(37 * var(--rpx));
  right: calc(488 * var(--rpx));
  bottom: calc(6 * var(--rpx));
  background: rgba(0, 0, 0, 0);
  z-index: 285;
}

.image-62 {
  position: absolute;
  width: calc(16 * var(--rpx));
  height: calc(16 * var(--rpx));
  right: calc(68 * var(--rpx));
  bottom: calc(6 * var(--rpx));
  background: url(./assets/images/f4d30b50875acd643d60da06448f21d6bfc18578.png) no-repeat center;
  background-size: cover;
  z-index: 289;
}

.flex-column-ea {
  position: absolute;
  width: calc(43 * var(--rpx));
  height: calc(13 * var(--rpx));
  right: calc(22 * var(--rpx));
  bottom: calc(7 * var(--rpx));
  z-index: 287;
}

.image-63 {
  position: relative;
  width: calc(43 * var(--rpx));
  height: calc(9 * var(--rpx));
  margin: 0 0 0 0;
  background: url(./assets/images/2095efbab36cf2248bd701e43b60502598326802.png) no-repeat center;
  background-size: cover;
  z-index: 287;
  overflow: visible auto;
}

.image-64 {
  position: relative;
  width: calc(42 * var(--rpx));
  height: calc(8 * var(--rpx));
  margin: 0 0 0 calc(1 * var(--rpx));
  background: url(./assets/images/99103eb16ca83ac4647d544a0d833c26015bb76c.png) no-repeat center;
  background-size: cover;
  z-index: 288;
}

.avgn-hoer-tev {
  display: block;
  position: relative;
  height: calc(4 * var(--rpx));
  margin: 0 0 0 0;
  color: #b7b4b3;
  font-family: Inter, var(--default-font-family);
  font-size: calc(2.5999999046325684 * var(--rpx));
  font-weight: 600;
  line-height: calc(3.1465907096862793 * var(--rpx));
  text-align: left;
  white-space: nowrap;
  z-index: 286;
}

.groups-65 {
  position: absolute;
  width: calc(112 * var(--rpx));
  height: calc(37 * var(--rpx));
  right: calc(171 * var(--rpx));
  bottom: calc(2 * var(--rpx));
  font-size: 0px;
  background: rgba(0, 0, 0, 0);
  z-index: 270;
}

.yinhua-fund {
  display: block;
  position: relative;
  height: calc(12 * var(--rpx));
  margin: calc(9 * var(--rpx)) 0 0 calc(40 * var(--rpx));
  color: #a1a0a0;
  font-family: Inter, var(--default-font-family);
  font-size: calc(9.100000381469727 * var(--rpx));
  font-weight: 600;
  line-height: calc(11.013068199157715 * var(--rpx));
  text-align: left;
  white-space: nowrap;
  z-index: 272;
}

.background-66 {
  position: relative;
  width: calc(72 * var(--rpx));
  height: calc(25 * var(--rpx));
  margin: calc(-10 * var(--rpx)) 0 0 calc(23 * var(--rpx));
  background: url(./assets/images/c8c0621097d19e3a559a1b839e5ed1411eddb411.png) no-repeat center;
  background-size: cover;
  z-index: 269;
  overflow: visible auto;
}

.image-67 {
  position: relative;
  width: calc(15 * var(--rpx));
  height: calc(15 * var(--rpx));
  margin: calc(1 * var(--rpx)) 0 0 0;
  background: url(./assets/images/8efd7113e8a88f40b99d3826e3a1c88e0423bc56.png) no-repeat center;
  background-size: cover;
  z-index: 273;
}

.yinhua-fund-68 {
  display: block;
  position: relative;
  height: calc(7 * var(--rpx));
  margin: calc(-6 * var(--rpx)) 0 0 calc(18 * var(--rpx));
  color: #afaeae;
  font-family: Inter, var(--default-font-family);
  font-size: calc(5.900000095367432 * var(--rpx));
  font-weight: 600;
  line-height: calc(7 * var(--rpx));
  text-align: left;
  white-space: nowrap;
  z-index: 271;
}

.background-69 {
  position: relative;
  width: calc(776 * var(--rpx));
  height: calc(59 * var(--rpx));
  margin: calc(1 * var(--rpx)) 0 0 0;
  background: #fefefe;
  z-index: 257;
}

.background-6a {
  position: absolute;
  width: calc(23 * var(--rpx));
  height: calc(3 * var(--rpx));
  right: calc(429 * var(--rpx));
  bottom: calc(33 * var(--rpx));
  background: url(./assets/images/f6fdb0c26f1be4633bcd578d5d4a52d5f35a8e58.png) no-repeat center;
  background-size: cover;
  z-index: 262;
}

.background-6b {
  position: absolute;
  width: calc(22 * var(--rpx));
  height: calc(2 * var(--rpx));
  right: calc(403 * var(--rpx));
  bottom: calc(33 * var(--rpx));
  background: url(./assets/images/4e27f40e14e231db63a464e3c0a50d16cd1d2b4a.png) no-repeat center;
  background-size: cover;
  z-index: 261;
}

.background-6c {
  position: absolute;
  width: calc(22 * var(--rpx));
  height: calc(1 * var(--rpx));
  right: calc(377 * var(--rpx));
  bottom: calc(34 * var(--rpx));
  background: url(./assets/images/d548a6fd77b06ba428826dbedd0b9fb9348427d4.png) no-repeat center;
  background-size: cover;
  z-index: 260;
}

.background-6d {
  position: absolute;
  width: calc(21 * var(--rpx));
  height: calc(1 * var(--rpx));
  right: calc(325 * var(--rpx));
  bottom: calc(34 * var(--rpx));
  background: url(./assets/images/3fc3f8bd6fd0667d8079f23338efe64c88e7609d.png) no-repeat center;
  background-size: cover;
  z-index: 258;
}

.background-6e {
  position: absolute;
  width: calc(21 * var(--rpx));
  height: calc(1 * var(--rpx));
  right: calc(351 * var(--rpx));
  bottom: calc(34 * var(--rpx));
  background: url(./assets/images/69d6b6f294c1d0a9e003f199b363728984bdc542.png) no-repeat center;
  background-size: cover;
  z-index: 259;
}

.background-6f {
  position: relative;
  width: calc(776 * var(--rpx));
  height: calc(52 * var(--rpx));
  margin: 0 0 0 0;
  background: url(./assets/images/ceb36a959e570088009a0bde6b17fe6f6d8f7bbb.png) no-repeat center;
  background-size: cover;
  z-index: 253;
}

.image-70 {
  position: relative;
  width: calc(776 * var(--rpx));
  height: calc(390 * var(--rpx));
  margin: calc(2 * var(--rpx)) 0 0 0;
  background: url(./assets/images/38fe1696527debecaf138adcce441ea85f2776b7.png) no-repeat center;
  background-size: cover;
  z-index: 231;
  overflow: visible auto;
}

.groups-71 {
  position: relative;
  width: calc(750 * var(--rpx));
  height: calc(380* var(--rpx));
  margin: 0 0 0 0;
  background: rgba(0, 0, 0, 0);
  z-index: 230;
  overflow: visible auto;
}

.flex-row-af {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  width: calc(341 * var(--rpx));
  height: calc(47 * var(--rpx));
  margin: calc(62 * var(--rpx)) 0 0 calc(97 * var(--rpx));
  z-index: 252;
}

.year-2019 {
  flex-shrink: 0;
  position: relative;
  height: calc(40 * var(--rpx));
  color: #adb2b9;
  font-family: Inter, var(--default-font-family);
  font-size: calc(33 * var(--rpx));
  font-weight: 600;
  line-height: calc(40 * var(--rpx));
  text-align: left;
  white-space: nowrap;
  z-index: 252;
}

.year-2020 {
  flex-shrink: 0;
  position: relative;
  height: calc(47 * var(--rpx));
  color: #f1f2f4;
  font-family: Inter, var(--default-font-family);
  font-size: calc(37.20000076293945 * var(--rpx));
  font-weight: 600;
  line-height: calc(47 * var(--rpx));
  text-align: left;
  white-space: nowrap;
  z-index: 251;
}

.flex-row-cf {
  position: relative;
  width: calc(352 * var(--rpx));
  height: calc(125 * var(--rpx));
  margin: calc(19 * var(--rpx)) 0 0 calc(330 * var(--rpx));
  z-index: 250;
}

.number-2 {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: absolute;
  height: calc(19 * var(--rpx));
  right: calc(317 * var(--rpx));
  bottom: calc(106 * var(--rpx));
  color: #c9cfd5;
  font-family: Inter, var(--default-font-family);
  font-size: calc(20.100000381469727 * var(--rpx));
  font-weight: 600;
  line-height: calc(19 * var(--rpx));
  text-align: left;
  white-space: nowrap;
  z-index: 250;
}

.groups-72 {
  position: absolute;
  width: calc(275 * var(--rpx));
  height: calc(117 * var(--rpx));
  right: 0;
  bottom: calc(4 * var(--rpx));
  font-size: 0px;
  background: rgba(0, 0, 0, 0);
  z-index: 241;
}

.intelligent-investment-research-platform {
  display: block;
  position: relative;
  height: calc(13 * var(--rpx));
  margin: 0 0 0 calc(2 * var(--rpx));
  color: #abb4bc;
  font-family: Inter, var(--default-font-family);
  font-size: calc(8.5 * var(--rpx));
  font-weight: 600;
  line-height: calc(10.286931991577148 * var(--rpx));
  text-align: left;
  white-space: nowrap;
  z-index: 245;
}

.high-tech-enterprise {
  display: block;
  position: relative;
  height: calc(14 * var(--rpx));
  margin: calc(17 * var(--rpx)) 0 0 calc(2 * var(--rpx));
  color: #a6afb9;
  font-family: Inter, var(--default-font-family);
  font-size: calc(8.5 * var(--rpx));
  font-weight: 600;
  line-height: calc(10.286931991577148 * var(--rpx));
  text-align: left;
  white-space: nowrap;
  z-index: 244;
}

.idc-china-fintech {
  display: block;
  position: relative;
  height: calc(13 * var(--rpx));
  margin: calc(16 * var(--rpx)) 0 0 calc(2 * var(--rpx));
  color: #a3acb5;
  font-family: Inter, var(--default-font-family);
  font-size: calc(8.199999809265137 * var(--rpx));
  font-weight: 600;
  line-height: calc(9.923863410949707 * var(--rpx));
  text-align: left;
  white-space: nowrap;
  z-index: 243;
}

.national-high-tech-enterprise {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  width: calc(272 * var(--rpx));
  height: calc(27 * var(--rpx));
  margin: calc(17 * var(--rpx)) 0 0 calc(2.666015625 * var(--rpx));
  color: #9aa2ac;
  font-family: Inter, var(--default-font-family);
  font-size: calc(8.5 * var(--rpx));
  font-weight: 600;
  line-height: calc(12.576803207397461 * var(--rpx));
  text-align: left;
  text-overflow: initial;
  z-index: 242;
  overflow: hidden;
}

.image-73 {
  position: absolute;
  width: calc(8 * var(--rpx));
  height: calc(10 * var(--rpx));
  right: calc(292 * var(--rpx));
  bottom: calc(108 * var(--rpx));
  background: url(./assets/images/4af2f2731bff2c9446d5e669e33c344f6d1fe9c1.png) no-repeat center;
  background-size: cover;
  z-index: 249;
}

.month-march {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: absolute;
  height: calc(18 * var(--rpx));
  right: calc(317 * var(--rpx));
  bottom: calc(76 * var(--rpx));
  color: #c4cad0;
  font-family: Inter, var(--default-font-family);
  font-size: calc(13.100000381469727 * var(--rpx));
  font-weight: 600;
  line-height: calc(15.85397720336914 * var(--rpx));
  text-align: left;
  white-space: nowrap;
  z-index: 248;
}

.image-74 {
  position: absolute;
  width: calc(8 * var(--rpx));
  height: calc(8 * var(--rpx));
  right: calc(292 * var(--rpx));
  bottom: calc(80 * var(--rpx));
  background: url(./assets/images/bd7463839771ad71c9ab64b0bf2b1cf712f1e591.png) no-repeat center;
  background-size: cover;
  z-index: 247;
}

.month-august {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: absolute;
  height: calc(19 * var(--rpx));
  right: calc(317 * var(--rpx));
  bottom: calc(45 * var(--rpx));
  color: #bdc3c9;
  font-family: Inter, var(--default-font-family);
  font-size: calc(13.300000190734863 * var(--rpx));
  font-weight: 600;
  line-height: calc(16.096023559570312 * var(--rpx));
  text-align: left;
  white-space: nowrap;
  z-index: 246;
}

.image-75 {
  position: absolute;
  width: calc(8 * var(--rpx));
  height: calc(12 * var(--rpx));
  right: calc(292 * var(--rpx));
  bottom: calc(48 * var(--rpx));
  background: url(./assets/images/ca81af9f4f3a7b9472fe4f05e0e9edefbf3cb6b7.png) no-repeat center;
  background-size: cover;
  z-index: 240;
}

.month-october {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: absolute;
  height: calc(19 * var(--rpx));
  right: calc(317 * var(--rpx));
  bottom: calc(15 * var(--rpx));
  color: #b8bec5;
  font-family: Inter, var(--default-font-family);
  font-size: calc(13.699999809265137 * var(--rpx));
  font-weight: 600;
  line-height: calc(16.58011245727539 * var(--rpx));
  text-align: left;
  white-space: nowrap;
  z-index: 239;
}

.image-76 {
  position: absolute;
  width: calc(8 * var(--rpx));
  height: calc(12 * var(--rpx));
  right: calc(292 * var(--rpx));
  bottom: calc(18 * var(--rpx));
  background: url(./assets/images/7ce23e3e1ba9da9169c3b7bd8307a43b62b00bc8.png) no-repeat center;
  background-size: cover;
  z-index: 238;
}

.image-77 {
  position: absolute;
  width: calc(2 * var(--rpx));
  height: calc(18 * var(--rpx));
  right: calc(295 * var(--rpx));
  bottom: 0;
  background: url(./assets/images/08b8b5d42e814806108597854a14d8e5c3430a18.png) no-repeat center;
  background-size: cover;
  z-index: 237;
}

.flex-row-c {
  position: relative;
  width: calc(75 * var(--rpx));
  height: calc(3 * var(--rpx));
  margin: calc(24 * var(--rpx)) 0 0 calc(352 * var(--rpx));
  z-index: 236;
}

.background-78 {
  position: absolute;
  width: calc(22 * var(--rpx));
  height: calc(3 * var(--rpx));
  right: calc(53 * var(--rpx));
  bottom: 0;
  background: url(./assets/images/fcdd57ab96db88d9bd42fcc6a21d8c2cb42caffa.png) no-repeat center;
  background-size: cover;
  z-index: 236;
}

.background-79 {
  position: absolute;
  width: calc(22 * var(--rpx));
  height: calc(3 * var(--rpx));
  right: calc(27 * var(--rpx));
  bottom: 0;
  background: url(./assets/images/e5136c32b18fb833dc0f3168c93a7fe1079f9dbb.png) no-repeat center;
  background-size: cover;
  z-index: 235;
}

.background-7a {
  position: absolute;
  width: calc(23 * var(--rpx));
  height: calc(3 * var(--rpx));
  right: 0;
  bottom: 0;
  background: url(./assets/images/b56cb2b0ab130f38c054f214dd0e5b2061e0a3ff.png) no-repeat center;
  background-size: cover;
  z-index: 234;
}

.view-company-introduction {
  display: block;
  position: relative;
  height: calc(5 * var(--rpx));
  line-height: calc(12 * var(--rpx));
  margin: calc(39 * var(--rpx)) 0 0 calc(300 * var(--rpx));
  color: #fff;
  font-family: Inter, var(--default-font-family);
  font-size: calc(6.8190734863 * var(--rpx));
  font-weight: 388;
  text-align: left;
  white-space: nowrap;
  z-index: 232;
}

.image-7b {
  position: relative;
  width: calc(13 * var(--rpx));
  height: calc(15 * var(--rpx));
  margin: calc(-10 * var(--rpx)) 0 0 calc(280 * var(--rpx));
  background: url(./assets/images/74c2618459b6b95dfdb70b7a11a736701a97ee4b.png) no-repeat center;
  background-size: cover;
  z-index: 233;
}

.background-7c {
  position: relative;
  width: calc(776 * var(--rpx));
  height: calc(364 * var(--rpx));
  margin: calc(1 * var(--rpx)) 0 0 0;
  font-size: 0px;
  background: url(./assets/images/44126b90308128af364287e678e82429ee54d98a.png) no-repeat center;
  background-size: cover;
  z-index: 157;
  overflow: visible auto;
}

.qualifications {
  display: block;
  position: relative;
  height: calc(22 * var(--rpx));
  margin: calc(61 * var(--rpx)) 0 0 calc(370 * var(--rpx));
  color: #bbbcc2;
  font-family: Inter, var(--default-font-family);
  font-size: calc(17.5 * var(--rpx));
  font-weight: 600;
  line-height: calc(21.17897605895996 * var(--rpx));
  text-align: left;
  white-space: nowrap;
  z-index: 229;
}

.qualifications-7d {
  display: block;
  position: relative;
  height: calc(11 * var(--rpx));
  margin: calc(4 * var(--rpx)) 0 0 calc(367 * var(--rpx));
  color: #656a7b;
  font-family: Inter, var(--default-font-family);
  font-size: calc(6.099999904632568 * var(--rpx));
  font-weight: 600;
  line-height: calc(7.382386207580566 * var(--rpx));
  text-align: left;
  white-space: nowrap;
  z-index: 228;
}

.flex-row-a-7e {
  position: relative;
  width: calc(605 * var(--rpx));
  height: calc(83 * var(--rpx));
  margin: calc(12 * var(--rpx)) 0 0 calc(86 * var(--rpx));
  z-index: 223;
}

.groups-7f {
  position: absolute;
  width: calc(84 * var(--rpx));
  height: calc(83 * var(--rpx));
  right: calc(521 * var(--rpx));
  bottom: 0;
  background: rgba(0, 0, 0, 0);
  z-index: 223;
}

.background-80 {
  position: relative;
  width: calc(78 * var(--rpx));
  height: calc(76 * var(--rpx));
  margin: calc(4 * var(--rpx)) 0 0 calc(3 * var(--rpx));
  background: #3b4155;
  border: calc(1 * var(--rpx)) solid #292c40;
  z-index: 224;
  overflow: visible auto;
}

.image-81 {
  position: relative;
  width: calc(22 * var(--rpx));
  height: calc(30 * var(--rpx));
  margin: calc(14 * var(--rpx)) 0 0 calc(28 * var(--rpx));
  background: url(./assets/images/ce196e3225a46a905892cc05f35edcd6c240abe8.png) no-repeat center;
  background-size: cover;
  z-index: 227;
}

.image-82 {
  position: relative;
  width: calc(32 * var(--rpx));
  height: calc(8 * var(--rpx));
  margin: calc(2 * var(--rpx)) 0 0 calc(23 * var(--rpx));
  background: url(./assets/images/2e9cccd3a38d1cf2ba43d096867fb363c70f2068.png) no-repeat center;
  background-size: cover;
  z-index: 226;
}

.national-high-tech-enterprise-83 {
  display: block;
  position: relative;
  height: calc(10 * var(--rpx));
  margin: calc(5 * var(--rpx)) 0 0 calc(12 * var(--rpx));
  color: #747987;
  font-family: Inter, var(--default-font-family);
  font-size: calc(6.199999809265137 * var(--rpx));
  font-weight: 600;
  line-height: calc(7.503408908843994 * var(--rpx));
  text-align: left;
  white-space: nowrap;
  z-index: 225;
}

.groups-84 {
  position: absolute;
  width: calc(81 * var(--rpx));
  height: calc(83 * var(--rpx));
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0);
  z-index: 193;
}

.background-85 {
  position: relative;
  width: calc(80 * var(--rpx));
  height: calc(80 * var(--rpx));
  margin: calc(5 * var(--rpx)) 0 0 0;
  background: #3a4054;
  border: calc(3 * var(--rpx)) solid #414a61;
  z-index: 194;
  overflow: visible auto;
  border-radius: 0 0 0 calc(0.75 * var(--rpx));
}

.image-86 {
  position: relative;
  width: calc(44 * var(--rpx));
  height: calc(25 * var(--rpx));
  margin: calc(19 * var(--rpx)) 0 0 calc(16 * var(--rpx));
  background: url(./assets/images/93a652a7528f1802c4690e07f47359e668512f53.png) no-repeat center;
  background-size: cover;
  z-index: 196;
}

.beijing-high-tech-smes {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: calc(54 * var(--rpx));
  height: calc(17 * var(--rpx));
  margin: calc(12 * var(--rpx)) 0 0 calc(11.333984375 * var(--rpx));
  color: #727785;
  font-family: Inter, var(--default-font-family);
  font-size: calc(6.599999904632568 * var(--rpx));
  font-weight: 600;
  line-height: calc(7.936989784240723 * var(--rpx));
  text-align: center;
  text-overflow: initial;
  z-index: 195;
  overflow: hidden;
}

.groups-87 {
  position: absolute;
  width: calc(77 * var(--rpx));
  height: calc(77 * var(--rpx));
  right: calc(351 * var(--rpx));
  bottom: calc(3 * var(--rpx));
  background: rgba(0, 0, 0, 0);
  z-index: 211;
}

.background-88 {
  position: relative;
  width: calc(77 * var(--rpx));
  height: calc(76 * var(--rpx));
  margin: calc(1 * var(--rpx)) 0 0 0;
  background: #3b4155;
  border: calc(1 * var(--rpx)) solid #2d3044;
  z-index: 212;
  overflow: visible auto;
}

.image-89 {
  position: relative;
  width: calc(22 * var(--rpx));
  height: calc(30 * var(--rpx));
  margin: calc(14 * var(--rpx)) 0 0 calc(28 * var(--rpx));
  background: url(./assets/images/f0d5327163fd341dd18904735b257c2f69114588.png) no-repeat center;
  background-size: cover;
  z-index: 215;
}

.xinsha-li-middle-school {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  width: calc(38 * var(--rpx));
  height: calc(9 * var(--rpx));
  margin: calc(1 * var(--rpx)) 0 0 calc(20 * var(--rpx));
  color: #a1a3ac;
  font-family: Inter, var(--default-font-family);
  font-size: calc(4.5 * var(--rpx));
  font-weight: 600;
  line-height: calc(5.4460225105285645 * var(--rpx));
  text-align: left;
  z-index: 214;
}

.beijing-science-and-technology-smes {
  display: block;
  position: relative;
  height: calc(10 * var(--rpx));
  margin: calc(5 * var(--rpx)) 0 0 calc(5 * var(--rpx));
  color: #717684;
  font-family: Inter, var(--default-font-family);
  font-size: calc(6.199999809265137 * var(--rpx));
  font-weight: 600;
  line-height: calc(7.503408908843994 * var(--rpx));
  text-align: left;
  white-space: nowrap;
  z-index: 213;
}

.groups-8a {
  position: absolute;
  width: calc(84 * var(--rpx));
  height: calc(79 * var(--rpx));
  right: calc(434 * var(--rpx));
  bottom: 0;
  background: rgba(0, 0, 0, 0);
  z-index: 216;
}

.background-8b {
  position: relative;
  width: calc(77 * var(--rpx));
  height: calc(75 * var(--rpx));
  margin: calc(1 * var(--rpx)) 0 0 calc(3 * var(--rpx));
  background: #3b4155;
  border: calc(2 * var(--rpx)) solid #40465b;
  z-index: 217;
  overflow: visible auto;
  border-radius: calc(0.75 * var(--rpx)) 0 0 0;
}

.image-8c {
  position: relative;
  width: calc(49 * var(--rpx));
  height: calc(27 * var(--rpx));
  margin: calc(18 * var(--rpx)) 0 0 calc(14 * var(--rpx));
  background: url(./assets/images/1293fb3f096af4561bcf45d5fa86bd8eccb18d2a.png) no-repeat center;
  background-size: cover;
  z-index: 219;
  overflow: visible auto;
}

.flex-row-d {
  position: relative;
  width: calc(48 * var(--rpx));
  height: calc(22 * var(--rpx));
  margin: calc(-1 * var(--rpx)) 0 0 calc(1 * var(--rpx));
  z-index: 222;
}

.zhongmei-village {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: absolute;
  height: calc(12 * var(--rpx));
  right: 0;
  bottom: calc(10 * var(--rpx));
  color: #a7aab3;
  font-family: Inter, var(--default-font-family);
  font-size: calc(10.300000190734863 * var(--rpx));
  font-weight: 600;
  line-height: calc(12 * var(--rpx));
  text-align: left;
  white-space: nowrap;
  z-index: 221;
}

.image-8d {
  position: absolute;
  width: calc(15 * var(--rpx));
  height: calc(21 * var(--rpx));
  right: calc(33 * var(--rpx));
  bottom: 0;
  background: url(./assets/images/19a2ea9d33e2d93cda9f45a24d46c16a25ef21f7.png) no-repeat center;
  background-size: cover;
  z-index: 222;
}

.image-8e {
  position: relative;
  width: calc(50 * var(--rpx));
  height: calc(3 * var(--rpx));
  margin: calc(2 * var(--rpx)) 0 0 calc(-1 * var(--rpx));
  background: url(./assets/images/a2fda3502c078cc7168a4dae3cd6ecd74eac59f6.png) no-repeat center;
  background-size: cover;
  z-index: 220;
}

.zhongguancun-high-tech-gold-hall {
  display: block;
  position: relative;
  height: calc(11 * var(--rpx));
  margin: calc(12 * var(--rpx)) 0 0 calc(9 * var(--rpx));
  color: #767b88;
  font-family: Inter, var(--default-font-family);
  font-size: calc(6.199999809265137 * var(--rpx));
  font-weight: 600;
  line-height: calc(7.503408908843994 * var(--rpx));
  text-align: left;
  white-space: nowrap;
  z-index: 218;
}

.background-8f {
  position: absolute;
  width: calc(76 * var(--rpx));
  height: calc(77 * var(--rpx));
  right: calc(265 * var(--rpx));
  bottom: calc(2 * var(--rpx));
  background: #3b4054;
  border: calc(1 * var(--rpx)) solid #303347;
  z-index: 207;
}

.groups-90 {
  position: relative;
  width: calc(77 * var(--rpx));
  height: calc(76 * var(--rpx));
  margin: 0 0 0 calc(-1 * var(--rpx));
  background: rgba(0, 0, 0, 0);
  z-index: 208;
  overflow: visible auto;
}

.image-91 {
  position: relative;
  width: calc(48 * var(--rpx));
  height: calc(32 * var(--rpx));
  margin: calc(13 * var(--rpx)) 0 0 calc(15 * var(--rpx));
  background: url(./assets/images/dbcc85732469fe85ceb670e8091fc057506ec9f9.png) no-repeat center;
  background-size: cover;
  z-index: 210;
}

.cmmi-software-maturity-certification {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: calc(60 * var(--rpx));
  height: calc(17 * var(--rpx));
  margin: calc(9 * var(--rpx)) 0 0 calc(9.333984375 * var(--rpx));
  color: #737987;
  font-family: Inter, var(--default-font-family);
  font-size: calc(6 * var(--rpx));
  font-weight: 300;
  line-height: calc(7.604152679443359 * var(--rpx));
  text-align: center;
  text-overflow: initial;
  z-index: 209;
  overflow: hidden;
}

.groups-92 {
  position: absolute;
  width: calc(77 * var(--rpx));
  height: calc(76 * var(--rpx));
  right: calc(178 * var(--rpx));
  bottom: calc(3 * var(--rpx));
  background: rgba(0, 0, 0, 0);
  z-index: 202;
}

.background-93 {
  position: absolute;
  width: calc(77 * var(--rpx));
  height: calc(76 * var(--rpx));
  right: 0;
  bottom: 0;
  background: url(./assets/images/df1a7ab07b01e03327c2b1c254519fd384ab608e.png) no-repeat center;
  background-size: cover;
  z-index: 203;
}

.image-94 {
  position: relative;
  width: calc(36 * var(--rpx));
  height: calc(29 * var(--rpx));
  margin: calc(13 * var(--rpx)) 0 0 calc(21 * var(--rpx));
  background: url(./assets/images/b26477b767fd559e5bf2cbf5dcd7bbf953b416df.png) no-repeat center;
  background-size: cover;
  z-index: 206;
}

.iso-9001 {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: calc(14 * var(--rpx));
  height: calc(8 * var(--rpx));
  margin: calc(1 * var(--rpx)) 0 0 calc(32 * var(--rpx));
  color: #a7a9b1;
  font-family: Inter, var(--default-font-family);
  font-size: calc(5.5 * var(--rpx));
  font-weight: 300;
  line-height: calc(6.65625 * var(--rpx));
  text-align: center;
  white-space: nowrap;
  z-index: 205;
}

.quality-management-system-certification {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: calc(53 * var(--rpx));
  height: calc(17 * var(--rpx));
  margin: calc(3 * var(--rpx)) 0 0 calc(12.333984375 * var(--rpx));
  color: #6d7381;
  font-family: Inter, var(--default-font-family);
  font-size: calc(6.300000190734863 * var(--rpx));
  font-weight: 600;
  line-height: calc(7.512500286102295 * var(--rpx));
  text-align: center;
  text-overflow: initial;
  z-index: 204;
  overflow: hidden;
}

.groups-95 {
  position: absolute;
  width: calc(85 * var(--rpx));
  height: calc(79 * var(--rpx));
  right: calc(87 * var(--rpx));
  bottom: 0;
  background: rgba(0, 0, 0, 0);
  z-index: 197;
}

.background-96 {
  position: relative;
  width: calc(76 * var(--rpx));
  height: calc(76 * var(--rpx));
  margin: 0 0 0 calc(5 * var(--rpx));
  background: url(./assets/images/6c11c3a9907d58addb2af634a301242e7ea4526e.png) no-repeat center;
  background-size: cover;
  z-index: 198;
  overflow: visible auto;
}

.image-97 {
  position: relative;
  width: calc(37 * var(--rpx));
  height: calc(29 * var(--rpx));
  margin: calc(13 * var(--rpx)) 0 0 calc(18 * var(--rpx));
  background: url(./assets/images/9e3a2397ccefe7e18a843547bed3f78eb7717655.png) no-repeat center;
  background-size: cover;
  z-index: 201;
}

.span-text {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: calc(15 * var(--rpx));
  height: calc(7 * var(--rpx));
  margin: calc(2 * var(--rpx)) 0 0 calc(29 * var(--rpx));
  color: #a2a5ae;
  font-family: Inter, var(--default-font-family);
  font-size: calc(4.5 * var(--rpx));
  font-weight: 600;
  line-height: calc(5.4460225105285645 * var(--rpx));
  text-align: center;
  white-space: nowrap;
  z-index: 200;
}

.info-security-certification {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: calc(67 * var(--rpx));
  height: calc(17 * var(--rpx));
  margin: calc(3 * var(--rpx)) 0 0 calc(4 * var(--rpx));
  color: #696e7d;
  font-family: Inter, var(--default-font-family);
  font-size: calc(6.199999809265137 * var(--rpx));
  font-weight: 300;
  line-height: calc(7.731249809265137 * var(--rpx));
  text-align: center;
  text-overflow: initial;
  z-index: 199;
  overflow: hidden;
}

.groups-98 {
  position: relative;
  width: calc(624 * var(--rpx));
  height: calc(150 * var(--rpx));
  margin: calc(20 * var(--rpx)) 0 0 calc(72 * var(--rpx));
  background: rgba(0, 0, 0, 0);
  z-index: 158;
}

.groups-99 {
  position: absolute;
  width: calc(322 * var(--rpx));
  height: calc(150 * var(--rpx));
  right: calc(302 * var(--rpx));
  bottom: 0;
  background: rgba(0, 0, 0, 0);
  z-index: 177;
}

.groups-9a {
  position: relative;
  width: calc(305 * var(--rpx));
  height: calc(61 * var(--rpx));
  margin: calc(51 * var(--rpx)) 0 0 calc(13 * var(--rpx));
  background: rgba(0, 0, 0, 0);
  z-index: 178;
}

.groups-9b {
  position: absolute;
  width: calc(76 * var(--rpx));
  height: calc(61 * var(--rpx));
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0);
  z-index: 179;
}

.image-9c {
  position: relative;
  width: calc(44 * var(--rpx));
  height: calc(26 * var(--rpx));
  margin: calc(7 * var(--rpx)) 0 0 calc(14 * var(--rpx));
  background: url(./assets/images/fb9c42f7c960ce16acf20a92179101b3ee61faf2.png) no-repeat center;
  background-size: cover;
  z-index: 181;
}

.annual-capital-innovation-award {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: calc(70 * var(--rpx));
  height: calc(22 * var(--rpx));
  margin: calc(4 * var(--rpx)) 0 0 calc(3.666015625 * var(--rpx));
  color: #706451;
  font-family: Inter, var(--default-font-family);
  font-size: calc(6.800000190734863 * var(--rpx));
  font-weight: 600;
  line-height: calc(10.600000381469727 * var(--rpx));
  text-align: center;
  text-overflow: initial;
  z-index: 180;
  overflow: hidden;
}

.groups-9d {
  position: absolute;
  width: calc(73 * var(--rpx));
  height: calc(61 * var(--rpx));
  right: calc(232 * var(--rpx));
  bottom: 0;
  background: rgba(0, 0, 0, 0);
  z-index: 188;
}

.image-9e {
  position: relative;
  width: calc(42 * var(--rpx));
  height: calc(26 * var(--rpx));
  margin: calc(7 * var(--rpx)) 0 0 calc(16 * var(--rpx));
  background: url(./assets/images/4ff52507b2e7fda2869ef7e943fca84e171ef009.png) no-repeat center;
  background-size: cover;
  z-index: 190;
}

.future-star-enterprise {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: calc(68 * var(--rpx));
  height: calc(21 * var(--rpx));
  margin: calc(5 * var(--rpx)) 0 0 calc(4.333984375 * var(--rpx));
  color: #746852;
  font-family: Inter, var(--default-font-family);
  font-size: calc(6.199999809265137 * var(--rpx));
  font-weight: 600;
  line-height: calc(10.362500190734863 * var(--rpx));
  text-align: center;
  text-overflow: initial;
  z-index: 189;
  overflow: hidden;
}

.groups-9f {
  position: absolute;
  width: calc(71 * var(--rpx));
  height: calc(61 * var(--rpx));
  right: calc(80 * var(--rpx));
  bottom: 0;
  background: rgba(0, 0, 0, 0);
  z-index: 182;
}

.image-a0 {
  position: relative;
  width: calc(42 * var(--rpx));
  height: calc(26 * var(--rpx));
  margin: calc(7 * var(--rpx)) 0 0 calc(14 * var(--rpx));
  background: url(./assets/images/876a9d9c8deef742700af2514c82f5d39c1375ef.png) no-repeat center;
  background-size: cover;
  z-index: 184;
}

.world-innovators-annual-meeting {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: calc(63 * var(--rpx));
  height: calc(22 * var(--rpx));
  margin: calc(4 * var(--rpx)) 0 0 calc(3.666015625 * var(--rpx));
  color: #746852;
  font-family: Inter, var(--default-font-family);
  font-size: calc(6.599999904632568 * var(--rpx));
  font-weight: 600;
  line-height: calc(10.006790161132812 * var(--rpx));
  text-align: center;
  text-overflow: initial;
  z-index: 183;
  overflow: hidden;
}

.groups-a1 {
  position: absolute;
  width: calc(71 * var(--rpx));
  height: calc(61 * var(--rpx));
  right: calc(156 * var(--rpx));
  bottom: 0;
  background: rgba(0, 0, 0, 0);
  z-index: 185;
}

.image-a2 {
  position: relative;
  width: calc(42 * var(--rpx));
  height: calc(26 * var(--rpx));
  margin: calc(7 * var(--rpx)) 0 0 calc(14 * var(--rpx));
  background: url(./assets/images/5dc7680d3bb3d6c036581eb444eba76f893f83c6.png) no-repeat center;
  background-size: cover;
  z-index: 187;
}

.alternative-data {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: calc(66 * var(--rpx));
  height: calc(21 * var(--rpx));
  margin: calc(5 * var(--rpx)) 0 0 calc(2 * var(--rpx));
  color: #6c6150;
  font-family: Inter, var(--default-font-family);
  font-size: calc(8.399999618530273 * var(--rpx));
  font-weight: 600;
  line-height: calc(9.84999942779541 * var(--rpx));
  text-align: center;
  text-overflow: initial;
  z-index: 186;
  overflow: hidden;
}

.honors {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: absolute;
  height: calc(21 * var(--rpx));
  right: calc(289 * var(--rpx));
  bottom: calc(124 * var(--rpx));
  color: #bebfc5;
  font-family: Inter, var(--default-font-family);
  font-size: calc(17.299999237060547 * var(--rpx));
  font-weight: 600;
  line-height: calc(20.93692970275879 * var(--rpx));
  text-align: left;
  white-space: nowrap;
  z-index: 192;
}

.honors-a3 {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: calc(22 * var(--rpx));
  height: calc(10 * var(--rpx));
  right: calc(297 * var(--rpx));
  bottom: calc(109 * var(--rpx));
  color: #626778;
  font-family: Inter, var(--default-font-family);
  font-size: calc(5.5 * var(--rpx));
  font-weight: 600;
  line-height: calc(6.65625 * var(--rpx));
  text-align: center;
  z-index: 191;
}

.groups-a4 {
  position: absolute;
  width: calc(79 * var(--rpx));
  height: calc(95 * var(--rpx));
  right: 0;
  bottom: calc(4 * var(--rpx));
  background: rgba(0, 0, 0, 0);
  z-index: 159;
}

.groups-a5 {
  position: relative;
  width: calc(76 * var(--rpx));
  height: calc(62 * var(--rpx));
  margin: calc(2 * var(--rpx)) 0 0 0;
  background: rgba(0, 0, 0, 0);
  z-index: 160;
  overflow: visible auto;
}

.groups-a6 {
  position: relative;
  width: calc(60 * var(--rpx));
  height: calc(59 * var(--rpx));
  margin: 0 0 0 calc(6 * var(--rpx));
  background: rgba(0, 0, 0, 0);
  z-index: 161;
  overflow: visible auto;
}

.image-a7 {
  position: relative;
  width: calc(43 * var(--rpx));
  height: calc(28 * var(--rpx));
  margin: calc(4 * var(--rpx)) 0 0 calc(10 * var(--rpx));
  background: url(./assets/images/485fcf2dac2247fe16c5f9220b7f190693d1967e.png) no-repeat center;
  background-size: cover;
  z-index: 163;
}

.top-50-list {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: calc(38 * var(--rpx));
  height: calc(22 * var(--rpx));
  margin: calc(3 * var(--rpx)) 0 0 calc(12 * var(--rpx));
  color: #746852;
  font-family: Inter, var(--default-font-family);
  font-size: calc(6.800000190734863 * var(--rpx));
  font-weight: 600;
  line-height: calc(10.600000381469727 * var(--rpx));
  text-align: center;
  text-overflow: initial;
  z-index: 162;
  overflow: hidden;
}

.groups-a8 {
  position: absolute;
  width: calc(79 * var(--rpx));
  height: calc(63 * var(--rpx));
  right: calc(78 * var(--rpx));
  bottom: calc(36 * var(--rpx));
  background: rgba(0, 0, 0, 0);
  z-index: 164;
}

.image-a9 {
  position: relative;
  width: calc(43 * var(--rpx));
  height: calc(26 * var(--rpx));
  margin: calc(7 * var(--rpx)) 0 0 calc(18 * var(--rpx));
  background: url(./assets/images/c41254c3b65efa3684e372ac4f437c4b46212bf7.png) no-repeat center;
  background-size: cover;
  z-index: 166;
}

.global-fintech-competition-top-10 {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: calc(58 * var(--rpx));
  height: calc(22 * var(--rpx));
  margin: calc(4 * var(--rpx)) 0 0 calc(10.666015625 * var(--rpx));
  color: #756953;
  font-family: Inter, var(--default-font-family);
  font-size: calc(6.199999809265137 * var(--rpx));
  font-weight: 600;
  line-height: calc(9.649999618530273 * var(--rpx));
  text-align: center;
  text-overflow: initial;
  z-index: 165;
  overflow: hidden;
}

.groups-aa {
  position: absolute;
  width: calc(70 * var(--rpx));
  height: calc(62 * var(--rpx));
  right: calc(159 * var(--rpx));
  bottom: calc(37 * var(--rpx));
  background: rgba(0, 0, 0, 0);
  z-index: 167;
}

.image-ab {
  position: relative;
  width: calc(42 * var(--rpx));
  height: calc(26 * var(--rpx));
  margin: calc(7 * var(--rpx)) 0 0 calc(14 * var(--rpx));
  font-size: 0px;
  background: url(./assets/images/b749055432384062667cad34a72cce8e9154c2e7.png) no-repeat center;
  background-size: cover;
  z-index: 170;
  overflow: visible auto;
}

.future {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: calc(22 * var(--rpx));
  height: calc(8 * var(--rpx));
  margin: calc(6 * var(--rpx)) 0 0 calc(10 * var(--rpx));
  color: #756953;
  font-family: Inter, var(--default-font-family);
  font-size: calc(5.900000095367432 * var(--rpx));
  font-weight: 600;
  line-height: calc(7.140340805053711 * var(--rpx));
  text-align: center;
  white-space: nowrap;
  z-index: 172;
}

.image-ac {
  position: relative;
  width: calc(17 * var(--rpx));
  height: calc(6 * var(--rpx));
  margin: 0 0 0 calc(13 * var(--rpx));
  background: url(./assets/images/0188aff8e5cb7b747c75a84c4b3b170550a8e7c1.png) no-repeat center;
  background-size: cover;
  z-index: 171;
}

.deloitte-2020 {
  display: block;
  position: relative;
  height: calc(9 * var(--rpx));
  margin: calc(5 * var(--rpx)) 0 0 calc(20 * var(--rpx));
  color: #736752;
  font-family: Inter, var(--default-font-family);
  font-size: calc(6.199999809265137 * var(--rpx));
  font-weight: 600;
  line-height: calc(7.503408908843994 * var(--rpx));
  text-align: left;
  white-space: nowrap;
  z-index: 169;
}

.beijing-haidian-future-star {
  display: block;
  position: relative;
  height: calc(11 * var(--rpx));
  margin: calc(1 * var(--rpx)) 0 0 calc(7 * var(--rpx));
  color: #706451;
  font-family: Inter, var(--default-font-family);
  font-size: calc(6.599999904632568 * var(--rpx));
  font-weight: 600;
  line-height: calc(7.987499713897705 * var(--rpx));
  text-align: left;
  white-space: nowrap;
  z-index: 168;
}

.groups-ad {
  position: absolute;
  width: calc(70 * var(--rpx));
  height: calc(62 * var(--rpx));
  right: calc(232 * var(--rpx));
  bottom: calc(37 * var(--rpx));
  background: rgba(0, 0, 0, 0);
  z-index: 173;
}

.image-ae {
  position: relative;
  width: calc(42 * var(--rpx));
  height: calc(26 * var(--rpx));
  margin: calc(7 * var(--rpx)) 0 0 calc(11 * var(--rpx));
  background: url(./assets/images/ff81f25a31c73d2acfa9823ee97d591223be1fe4.png) no-repeat center;
  background-size: cover;
  z-index: 175;
}

.number-50 {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: calc(17 * var(--rpx));
  height: calc(10 * var(--rpx));
  right: calc(12 * var(--rpx));
  bottom: calc(11 * var(--rpx));
  color: #766953;
  font-family: Inter, var(--default-font-family);
  font-size: calc(6.400000095367432 * var(--rpx));
  font-weight: 600;
  line-height: calc(7.74545431137085 * var(--rpx));
  text-align: center;
  white-space: nowrap;
  z-index: 176;
}

.idc-china-fintech-top-50-list {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: calc(54 * var(--rpx));
  height: calc(22 * var(--rpx));
  margin: calc(4 * var(--rpx)) 0 0 calc(5 * var(--rpx));
  color: #6d6250;
  font-family: Inter, var(--default-font-family);
  font-size: calc(6.599999904632568 * var(--rpx));
  font-weight: 600;
  line-height: calc(10.931249618530273 * var(--rpx));
  text-align: center;
  text-overflow: initial;
  z-index: 174;
  overflow: hidden;
}

.background-af {
  position: relative;
  width: calc(776 * var(--rpx));
  height: calc(363 * var(--rpx));
  margin: 0 0 0 0;
  background: url(./assets/images/97b09497e22f53381b297014e363250fe19e14c6.png) no-repeat center;
  background-size: cover;
  z-index: 113;
}

.groups-b0 {
  position: absolute;
  width: calc(713 * var(--rpx));
  height: calc(307 * var(--rpx));
  right: calc(63 * var(--rpx));
  bottom: calc(45 * var(--rpx));
  background: rgba(0, 0, 0, 0);
  z-index: 114;
}

.groups-b1 {
  position: absolute;
  width: calc(701 * var(--rpx));
  height: calc(252 * var(--rpx));
  right: 0;
  bottom: calc(43 * var(--rpx));
  background: rgba(0, 0, 0, 0);
  z-index: 115;
}

.background-b2 {
  position: absolute;
  width: calc(206 * var(--rpx));
  height: calc(252 * var(--rpx));
  right: calc(495 * var(--rpx));
  bottom: 0;
  z-index: 142;
}

.groups-b3 {
  position: relative;
  width: calc(202 * var(--rpx));
  height: calc(202 * var(--rpx));
  margin: calc(1 * var(--rpx)) 0 0 calc(2 * var(--rpx));
  font-size: 0px;
  background: rgba(0, 0, 0, 0);
  z-index: 147;
  overflow: visible auto;
}

.social-responsibility {
  display: block;
  position: relative;
  height: calc(17 * var(--rpx));
  margin: calc(11 * var(--rpx)) 0 0 calc(12 * var(--rpx));
  color: #838c9b;
  font-family: Inter, var(--default-font-family);
  font-size: calc(12.899999618530273 * var(--rpx));
  font-weight: 600;
  line-height: calc(15.611930847167969 * var(--rpx));
  text-align: left;
  white-space: nowrap;
  z-index: 154;
}

.flex-row-ea {
  position: relative;
  width: calc(178 * var(--rpx));
  height: calc(13 * var(--rpx));
  margin: calc(-7 * var(--rpx)) 0 0 calc(8 * var(--rpx));
  z-index: 156;
}

.social-responsibility-b4 {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: absolute;
  width: calc(63 * var(--rpx));
  height: calc(13 * var(--rpx));
  right: 0;
  bottom: 0;
  color: #d5dae1;
  font-family: Inter, var(--default-font-family);
  font-size: calc(6.099999904632568 * var(--rpx));
  font-weight: 600;
  line-height: calc(7.382386207580566 * var(--rpx));
  text-align: left;
  z-index: 153;
}

.image-b5 {
  position: absolute;
  width: calc(13 * var(--rpx));
  height: calc(11 * var(--rpx));
  right: calc(64 * var(--rpx));
  bottom: calc(1 * var(--rpx));
  z-index: 156;
}

.image-b6 {
  position: absolute;
  width: calc(103 * var(--rpx));
  height: calc(10 * var(--rpx));
  right: calc(75 * var(--rpx));
  bottom: calc(1 * var(--rpx));
  z-index: 155;
}

.image-b7 {
  position: relative;
  width: calc(186 * var(--rpx));
  height: calc(107 * var(--rpx));
  margin: calc(15 * var(--rpx)) 0 0 calc(8 * var(--rpx));
  background: url(./assets/images/b913aee4bf107af804016bc75548b8615ddd199e.png) no-repeat center;
  background-size: cover;
  z-index: 151;
  overflow: visible auto;
}

.button-b8 {
  position: relative;
  width: calc(38 * var(--rpx));
  height: calc(15 * var(--rpx));
  margin: calc(91 * var(--rpx)) 0 0 calc(-1 * var(--rpx));
  background: url(./assets/images/e6573fa0-64f0-4ea9-b780-93300208e8e4.png) no-repeat center;
  background-size: cover;
  z-index: 152;
}

.big-data-in-china {
  display: block;
  position: relative;
  height: calc(15 * var(--rpx));
  margin: calc(5 * var(--rpx)) 0 0 calc(8 * var(--rpx));
  color: #8d939d;
  font-family: Inter, var(--default-font-family);
  font-size: calc(11.699999809265137 * var(--rpx));
  font-weight: 600;
  line-height: calc(14.159658432006836 * var(--rpx));
  text-align: left;
  white-space: nowrap;
  z-index: 150;
}

.flex-row-e {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  width: calc(186 * var(--rpx));
  height: calc(10 * var(--rpx));
  margin: calc(7 * var(--rpx)) 0 0 calc(8 * var(--rpx));
  z-index: 149;
}

.cgtn {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  width: calc(21 * var(--rpx));
  height: calc(10 * var(--rpx));
  color: #c5cbd5;
  font-family: Inter, var(--default-font-family);
  font-size: calc(6.400000095367432 * var(--rpx));
  font-weight: 600;
  line-height: calc(10 * var(--rpx));
  text-align: center;
  white-space: nowrap;
  z-index: 149;
}

.date {
  flex-shrink: 0;
  position: relative;
  height: calc(10 * var(--rpx));
  color: #d0d5dd;
  font-family: Inter, var(--default-font-family);
  font-size: calc(6.400000095367432 * var(--rpx));
  font-weight: 600;
  line-height: calc(10 * var(--rpx));
  text-align: left;
  white-space: nowrap;
  z-index: 148;
}

.background-b9 {
  position: relative;
  width: calc(186 * var(--rpx));
  height: calc(2 * var(--rpx));
  margin: calc(2 * var(--rpx)) 0 0 calc(10 * var(--rpx));
  background: url(./assets/images/83076eaea3336e791a6b525961b63c07028ee1e5.png) no-repeat center;
  background-size: cover;
  z-index: 146;
}

.image-ba {
  position: relative;
  width: calc(186 * var(--rpx));
  height: calc(25 * var(--rpx));
  margin: calc(10 * var(--rpx)) 0 0 calc(10 * var(--rpx));
  background: url(./assets/images/bbc80f242c0fba3a11a2797365924ce1b689e45e.png) no-repeat center;
  background-size: cover;
  z-index: 143;
  border-radius: 0 0 calc(3 * var(--rpx)) 0;
}

.image-bb {
  position: absolute;
  width: calc(53 * var(--rpx));
  height: calc(25 * var(--rpx));
  right: calc(133 * var(--rpx));
  bottom: 0;
  background: url(./assets/images/02ceb0e743dc0f975115484f513813130cb33030.png) no-repeat center;
  background-size: cover;
  z-index: 145;
}

.image-bc {
  position: absolute;
  width: calc(34 * var(--rpx));
  height: calc(5 * var(--rpx));
  right: calc(45 * var(--rpx));
  bottom: 0;
  background: url(./assets/images/2d0f449e88a8013e66e72020daf43dc670d97321.png) no-repeat center;
  background-size: cover;
  z-index: 144;
}

.background-bd {
  position: absolute;
  width: calc(419 * var(--rpx));
  height: calc(252 * var(--rpx));
  right: calc(73 * var(--rpx));
  bottom: calc(-1 * var(--rpx));
  background: #fefefe;
  z-index: 117;
}

.image-be {
  position: relative;
  width: calc(25 * var(--rpx));
  height: calc(5 * var(--rpx));
  margin: calc(121 * var(--rpx)) 0 0 calc(11 * var(--rpx));
  background: url(./assets/images/d650fdb1ebfa44798bed07919f576d31344d30ee.png) no-repeat center;
  background-size: cover;
  z-index: 130;
}

.investment-technology {
  display: block;
  position: relative;
  height: calc(13 * var(--rpx));
  margin: calc(-3 * var(--rpx)) 0 0 calc(72 * var(--rpx));
  color: #a0a5ae;
  font-family: Inter, var(--default-font-family);
  font-size: calc(9.600000381469727 * var(--rpx));
  font-weight: 600;
  line-height: calc(11.618182182312012 * var(--rpx));
  text-align: left;
  white-space: nowrap;
  z-index: 127;
}

.flex-row-ee {
  position: relative;
  width: calc(394 * var(--rpx));
  height: calc(45 * var(--rpx));
  margin: calc(-7 * var(--rpx)) 0 0 calc(13 * var(--rpx));
  z-index: 128;
}

.image-bf {
  position: absolute;
  width: calc(53 * var(--rpx));
  height: calc(39 * var(--rpx));
  right: calc(341 * var(--rpx));
  bottom: calc(6 * var(--rpx));
  background: url(./assets/images/e3a1b6301422b4593d57819177d1a5967e2eeb2d.png) no-repeat center;
  background-size: cover;
  z-index: 128;
}

.paie {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: calc(17 * var(--rpx));
  height: calc(8 * var(--rpx));
  right: calc(5 * var(--rpx));
  bottom: calc(3 * var(--rpx));
  color: #d5d7db;
  font-family: Inter, var(--default-font-family);
  font-size: calc(7.300000190734863 * var(--rpx));
  font-weight: 600;
  line-height: calc(8 * var(--rpx));
  text-align: center;
  white-space: nowrap;
  z-index: 129;
}

.investment-technology-league {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: absolute;
  height: calc(11 * var(--rpx));
  right: calc(228 * var(--rpx));
  bottom: calc(25 * var(--rpx));
  color: #c9cfd8;
  font-family: Inter, var(--default-font-family);
  font-size: calc(6.599999904632568 * var(--rpx));
  font-weight: 600;
  line-height: calc(7.987499713897705 * var(--rpx));
  text-align: left;
  white-space: nowrap;
  z-index: 126;
}

.date-c0 {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: absolute;
  height: calc(10 * var(--rpx));
  right: 0;
  bottom: calc(26 * var(--rpx));
  color: #cad0d9;
  font-family: Inter, var(--default-font-family);
  font-size: calc(6.400000095367432 * var(--rpx));
  font-weight: 600;
  line-height: calc(7.74545431137085 * var(--rpx));
  text-align: left;
  white-space: nowrap;
  z-index: 125;
}

.intelligent-investment-research {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: absolute;
  width: calc(334 * var(--rpx));
  height: calc(23 * var(--rpx));
  right: calc(1 * var(--rpx));
  bottom: 0;
  color: #ccd2da;
  font-family: Inter, var(--default-font-family);
  font-size: calc(7.199999809265137 * var(--rpx));
  font-weight: 600;
  line-height: calc(10.402119636535645 * var(--rpx));
  text-align: left;
  text-overflow: initial;
  z-index: 124;
  overflow: hidden;
}

.background-c1 {
  position: relative;
  width: calc(397 * var(--rpx));
  height: calc(2 * var(--rpx));
  margin: calc(9 * var(--rpx)) 0 0 calc(11 * var(--rpx));
  background: url(./assets/images/d2e38db70c58b92349d6a1ac3cf478cd2325b5a9.png) no-repeat center;
  background-size: cover;
  z-index: 123;
}

.flex-row- {
  position: absolute;
  width: calc(397 * var(--rpx));
  height: calc(52 * var(--rpx));
  right: calc(11 * var(--rpx));
  bottom: calc(8 * var(--rpx));
  z-index: 122;
}

.box-1e {
  position: absolute;
  width: calc(93 * var(--rpx));
  height: calc(52 * var(--rpx));
  right: calc(304 * var(--rpx));
  bottom: 0;
  z-index: 122;
}

.image-c2 {
  position: absolute;
  width: calc(55 * var(--rpx));
  height: calc(50 * var(--rpx));
  right: calc(38 * var(--rpx));
  bottom: calc(2 * var(--rpx));
  background: url(./assets/images/e4f0d3f530125b42353da1411e36255529b588a7.png) no-repeat center;
  background-size: cover;
  z-index: 122;
  border-radius: 0 0 calc(0.75 * var(--rpx)) 0;
}

.shangtong-technology {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: absolute;
  height: calc(11 * var(--rpx));
  right: 0;
  bottom: calc(25 * var(--rpx));
  color: #cbd0d9;
  font-family: Inter, var(--default-font-family);
  font-size: calc(7.199999809265137 * var(--rpx));
  font-weight: 600;
  line-height: calc(8.71363639831543 * var(--rpx));
  text-align: left;
  white-space: nowrap;
  z-index: 120;
}

.date-c3 {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: absolute;
  height: calc(11 * var(--rpx));
  right: 0;
  bottom: calc(24 * var(--rpx));
  color: #cbd1d9;
  font-family: Inter, var(--default-font-family);
  font-size: calc(6.800000190734863 * var(--rpx));
  font-weight: 600;
  line-height: calc(8.229545593261719 * var(--rpx));
  text-align: left;
  white-space: nowrap;
  z-index: 119;
}

.financial-technology-conference {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: absolute;
  width: calc(335 * var(--rpx));
  height: calc(22 * var(--rpx));
  right: calc(1 * var(--rpx));
  bottom: 0;
  color: #c9cfd8;
  font-family: Inter, var(--default-font-family);
  font-size: calc(7.300000190734863 * var(--rpx));
  font-weight: 600;
  line-height: calc(9.910693168640137 * var(--rpx));
  text-align: left;
  text-overflow: initial;
  z-index: 118;
  overflow: hidden;
}

.global-fintech-competition {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: absolute;
  height: calc(13 * var(--rpx));
  right: calc(99 * var(--rpx));
  bottom: calc(46 * var(--rpx));
  color: #9ca2aa;
  font-family: Inter, var(--default-font-family);
  font-size: calc(9.399999618530273 * var(--rpx));
  font-weight: 300;
  line-height: calc(11.37613582611084 * var(--rpx));
  text-align: left;
  white-space: nowrap;
  z-index: 121;
}

.groups-c4 {
  position: absolute;
  width: calc(491 * var(--rpx));
  height: calc(249 * var(--rpx));
  right: 0;
  bottom: calc(1 * var(--rpx));
  background: rgba(0, 0, 0, 0);
  z-index: 116;
}

.groups-c5 {
  position: relative;
  width: calc(492 * var(--rpx));
  height: calc(113 * var(--rpx));
  margin: calc(1 * var(--rpx)) 0 0 calc(-1 * var(--rpx));
  background: rgba(0, 0, 0, 0);
  z-index: 131;
  overflow: visible auto;
}

.flex-row-fb {
  position: relative;
  width: calc(120 * var(--rpx));
  height: calc(23 * var(--rpx));
  margin: calc(9 * var(--rpx)) 0 0 calc(11 * var(--rpx));
  z-index: 141;
}

.media-report {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: absolute;
  height: calc(17 * var(--rpx));
  right: calc(60 * var(--rpx));
  bottom: calc(6 * var(--rpx));
  color: #7f8998;
  font-family: Inter, var(--default-font-family);
  font-size: calc(12.899999618530273 * var(--rpx));
  font-weight: 600;
  line-height: calc(15.611930847167969 * var(--rpx));
  text-align: left;
  white-space: nowrap;
  z-index: 140;
}

.image-c6 {
  position: absolute;
  width: calc(66 * var(--rpx));
  height: calc(19 * var(--rpx));
  right: calc(54 * var(--rpx));
  bottom: 0;
  background: url(./assets/images/1e73fc5f83cfe8244ed510bda55f0951acbb1f27.png) no-repeat center;
  background-size: cover;
  z-index: 139;
}

.media-coverage {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: absolute;
  width: calc(48 * var(--rpx));
  height: calc(12 * var(--rpx));
  right: 0;
  bottom: calc(1 * var(--rpx));
  color: #d8dde3;
  font-family: Inter, var(--default-font-family);
  font-size: calc(5.800000190734863 * var(--rpx));
  font-weight: 600;
  line-height: calc(7.019318103790283 * var(--rpx));
  text-align: left;
  z-index: 138;
}

.image-c7 {
  position: absolute;
  width: calc(12 * var(--rpx));
  height: calc(12 * var(--rpx));
  right: calc(49 * var(--rpx));
  bottom: 0;
  background: url(./assets/images/578fa5d7a7622f51057d6d8f110d8a76351d47b4.png) no-repeat center;
  background-size: cover;
  z-index: 141;
}

.flex-row-ba {
  position: relative;
  width: calc(396 * var(--rpx));
  height: calc(56 * var(--rpx));
  margin: calc(14 * var(--rpx)) 0 0 calc(11 * var(--rpx));
  z-index: 137;
}

.image-c8 {
  position: absolute;
  width: calc(55 * var(--rpx));
  height: calc(56 * var(--rpx));
  right: calc(341 * var(--rpx));
  bottom: 0;
  background: url(./assets/images/ec9c3888afa64e737521438792ae6b8dddad4453.png) no-repeat center;
  background-size: cover;
  z-index: 137;
}

.itl-ccf-seminar {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: absolute;
  height: calc(12 * var(--rpx));
  right: calc(90 * var(--rpx));
  bottom: calc(42 * var(--rpx));
  color: #9ca2aa;
  font-family: Inter, var(--default-font-family);
  font-size: calc(9.100000381469727 * var(--rpx));
  font-weight: 600;
  line-height: calc(11.013068199157715 * var(--rpx));
  text-align: left;
  white-space: nowrap;
  z-index: 136;
}

.investment-technology-league-c9 {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: absolute;
  height: calc(12 * var(--rpx));
  right: calc(229 * var(--rpx));
  bottom: calc(27 * var(--rpx));
  color: #cbd1d9;
  font-family: Inter, var(--default-font-family);
  font-size: calc(6.699999809265137 * var(--rpx));
  font-weight: 600;
  line-height: calc(8.108522415161133 * var(--rpx));
  text-align: left;
  white-space: nowrap;
  z-index: 135;
}

.date-ca {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: absolute;
  height: calc(11 * var(--rpx));
  right: 0;
  bottom: calc(28 * var(--rpx));
  color: #cbd1da;
  font-family: Inter, var(--default-font-family);
  font-size: calc(6.400000095367432 * var(--rpx));
  font-weight: 600;
  line-height: calc(7.74545431137085 * var(--rpx));
  text-align: left;
  white-space: nowrap;
  z-index: 134;
}

.event-description {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: absolute;
  width: calc(328 * var(--rpx));
  height: calc(24 * var(--rpx));
  right: calc(7 * var(--rpx));
  bottom: calc(2 * var(--rpx));
  color: #cdd2da;
  font-family: Inter, var(--default-font-family);
  font-size: calc(7.199999809265137 * var(--rpx));
  font-weight: 600;
  line-height: calc(10.040641784667969 * var(--rpx));
  text-align: left;
  text-overflow: initial;
  z-index: 133;
  overflow: hidden;
}

.background-cb {
  position: relative;
  width: calc(397 * var(--rpx));
  height: calc(2 * var(--rpx));
  margin: calc(7 * var(--rpx)) 0 0 calc(9 * var(--rpx));
  background: url(./assets/images/0b1da6587f1f1f28b1a44b718bde43c6dd57387d.png) no-repeat center;
  background-size: cover;
  z-index: 132;
}

.background-cc {
  position: relative;
  width: calc(776 * var(--rpx));
  height: calc(700 * var(--rpx));
  margin: 0 0 0 0;
  background: url(./assets/images/53c48120ba1f9ebcf2a3071f5202014ef2a553ab.png) no-repeat center;
  background-size: cover;
  z-index: 22;
  overflow: visible auto;
}

.groups-cd {
  position: relative;
  width: calc(718 * var(--rpx));
  height: calc(381 * var(--rpx));
  margin: calc(11 * var(--rpx)) 0 0 0;
  background: rgba(0, 0, 0, 0);
  z-index: 63;
  overflow: visible auto;
}

.groups-ce {
  position: relative;
  width: calc(624 * var(--rpx));
  height: calc(349 * var(--rpx));
  margin: calc(16 * var(--rpx)) 0 0 calc(82 * var(--rpx));
  background: rgba(0, 0, 0, 0);
  z-index: 64;
  overflow: visible auto;
}

.flex-row-ae {
  position: relative;
  width: calc(624 * var(--rpx));
  height: calc(188 * var(--rpx));
  margin: 0 0 0 0;
  z-index: 94;
}

.image-cf {
  position: absolute;
  width: calc(605 * var(--rpx));
  height: calc(188 * var(--rpx));
  right: calc(19 * var(--rpx));
  bottom: 0;
  background: url(./assets/images/774ced17964cf4bcbf7d10981cf69c60391549f1.png) no-repeat center;
  background-size: cover;
  z-index: 93;
}

.flex-row-e-d0 {
  position: relative;
  width: calc(299 * var(--rpx));
  height: calc(55 * var(--rpx));
  margin: calc(6 * var(--rpx)) 0 0 calc(271 * var(--rpx));
  z-index: 110;
}

.join-us {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: absolute;
  height: calc(22 * var(--rpx));
  right: calc(228 * var(--rpx));
  bottom: calc(33 * var(--rpx));
  color: #496086;
  font-family: Inter, var(--default-font-family);
  font-size: calc(17.100000381469727 * var(--rpx));
  font-weight: 600;
  line-height: calc(20.694887161254883 * var(--rpx));
  text-align: left;
  white-space: nowrap;
  z-index: 97;
}

.button-d1 {
  position: absolute;
  width: calc(206 * var(--rpx));
  height: calc(51 * var(--rpx));
  right: 0;
  bottom: 0;
  cursor: pointer;
  background: rgba(0, 0, 0, 0);
  border: none;
  z-index: 110;
}

.background-d2 {
  position: relative;
  width: calc(200 * var(--rpx));
  height: calc(46 * var(--rpx));
  margin: calc(4 * var(--rpx)) 0 0 calc(4 * var(--rpx));
  background: #e5eefe;
  z-index: 111;
  border-radius: calc(10 * var(--rpx)) calc(7 * var(--rpx)) calc(4 * var(--rpx)) calc(4 * var(--rpx));
}

.company-culture {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: absolute;
  width: calc(178 * var(--rpx));
  height: calc(25 * var(--rpx));
  right: calc(9.666015625 * var(--rpx));
  bottom: calc(12 * var(--rpx));
  color: #7db7f1;
  font-family: Inter, var(--default-font-family);
  font-size: calc(7.800000190734863 * var(--rpx));
  font-weight: 300;
  line-height: calc(10.475781440734863 * var(--rpx));
  text-align: left;
  text-overflow: initial;
  z-index: 112;
  overflow: hidden;
}

.join-us-d3 {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: calc(23 * var(--rpx));
  height: calc(12 * var(--rpx));
  right: calc(252 * var(--rpx));
  bottom: calc(18 * var(--rpx));
  color: #d3d9e1;
  font-family: Inter, var(--default-font-family);
  font-size: calc(6 * var(--rpx));
  font-weight: 600;
  line-height: calc(7.261363506317139 * var(--rpx));
  text-align: center;
  z-index: 96;
}

.image-d4 {
  position: relative;
  width: calc(419 * var(--rpx));
  height: calc(132 * var(--rpx));
  margin: calc(-4 * var(--rpx)) 0 0 calc(8 * var(--rpx));
  background: url(./assets/images/ed3b3f7a50d29d8fb619d80021a78df478f00531.png) no-repeat center;
  background-size: cover;
  z-index: 99;
}

.image-d5 {
  position: absolute;
  width: calc(243 * var(--rpx));
  height: calc(132 * var(--rpx));
  right: 0;
  bottom: 0;
  background: url(./assets/images/e62477214b54b9b9553ad07d7d992af586bce9ac.png) no-repeat center;
  background-size: cover;
  z-index: 98;
  border-radius: 0 calc(3 * var(--rpx)) 0 0;
}

.image-d6 {
  position: absolute;
  width: calc(202 * var(--rpx));
  height: calc(42 * var(--rpx));
  right: calc(206 * var(--rpx));
  bottom: calc(62 * var(--rpx));
  cursor: pointer;
  background: transparent;
  background: no-repeat center;
  background-size: cover;
  border: none;
  z-index: 108;
  border-radius: calc(6 * var(--rpx)) calc(4 * var(--rpx)) 0 calc(4 * var(--rpx));
}

.company-values {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: absolute;
  width: calc(180 * var(--rpx));
  height: calc(24 * var(--rpx));
  right: calc(11 * var(--rpx));
  bottom: calc(9 * var(--rpx));
  color: #d7c379;
  font-family: Inter, var(--default-font-family);
  font-size: calc(7.800000190734863 * var(--rpx));
  font-weight: 600;
  line-height: calc(11.047444343566895 * var(--rpx));
  text-align: left;
  text-overflow: initial;
  z-index: 109;
  overflow: hidden;
}

.image-d7 {
  position: absolute;
  width: calc(195 * var(--rpx));
  height: calc(50 * var(--rpx));
  right: 0;
  bottom: calc(31 * var(--rpx));
  background: url(./assets/images/fc54984ee041315c413f8251cb2f58c91554dd63.png) no-repeat center;
  background-size: cover;
  z-index: 94;
}

.flexible-work {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: absolute;
  width: calc(183 * var(--rpx));
  height: calc(24 * var(--rpx));
  right: calc(0.666015625 * var(--rpx));
  bottom: calc(17 * var(--rpx));
  color: #ffbf90;
  font-family: Inter, var(--default-font-family);
  font-size: calc(7.800000190734863 * var(--rpx));
  font-weight: 600;
  line-height: calc(11.850000381469727 * var(--rpx));
  text-align: left;
  text-overflow: initial;
  z-index: 95;
  overflow: hidden;
}

.flex-row-f-d8 {
  position: relative;
  width: calc(608 * var(--rpx));
  height: calc(122 * var(--rpx));
  margin: calc(-4 * var(--rpx)) 0 0 calc(2 * var(--rpx));
  z-index: 104;
}

.background-d9 {
  position: absolute;
  width: calc(191 * var(--rpx));
  height: calc(122 * var(--rpx));
  right: calc(417 * var(--rpx));
  bottom: 0;
  background: url(./assets/images/75a60ae1cb6e5d377dd192dbf086f0866c360a16.png) no-repeat center;
  background-size: cover;
  z-index: 104;
}

.image-da {
  position: relative;
  width: calc(18 * var(--rpx));
  height: calc(20 * var(--rpx));
  margin: calc(18 * var(--rpx)) 0 0 calc(87 * var(--rpx));
  background: url(./assets/images/e006bd6355931cbb5f284fc078b0d27cc94a2e58.png) no-repeat center;
  background-size: cover;
  z-index: 107;
}

.fun-activities {
  display: block;
  position: relative;
  height: calc(14 * var(--rpx));
  margin: calc(7 * var(--rpx)) 0 0 calc(40 * var(--rpx));
  color: #989ea7;
  font-family: Inter, var(--default-font-family);
  font-size: calc(10.600000381469727 * var(--rpx));
  font-weight: 600;
  line-height: calc(12.828409194946289 * var(--rpx));
  text-align: left;
  white-space: nowrap;
  z-index: 106;
}

.team-background {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: calc(156 * var(--rpx));
  height: calc(50 * var(--rpx));
  margin: calc(6 * var(--rpx)) 0 0 calc(19.666015625 * var(--rpx));
  color: #c5cbd5;
  font-family: Inter, var(--default-font-family);
  font-size: calc(7.199999809265137 * var(--rpx));
  font-weight: 600;
  line-height: calc(10.543749809265137 * var(--rpx));
  text-align: center;
  text-overflow: initial;
  z-index: 105;
  overflow: hidden;
}

.background-db {
  position: absolute;
  width: calc(192 * var(--rpx));
  height: calc(122 * var(--rpx));
  right: 0;
  bottom: 0;
  background: url(./assets/images/73d148252b24d7dc6b5e56bb6402964439741953.png) no-repeat center;
  background-size: cover;
  z-index: 100;
}

.image-dc {
  position: relative;
  width: calc(20 * var(--rpx));
  height: calc(20 * var(--rpx));
  margin: calc(18 * var(--rpx)) 0 0 calc(86 * var(--rpx));
  background: url(./assets/images/104721e0fe1e9a2013c6fd0ea3b43272d20dcb18.png) no-repeat center;
  background-size: cover;
  z-index: 103;
}

.competitive-salary {
  display: block;
  position: relative;
  height: calc(14 * var(--rpx));
  margin: calc(7 * var(--rpx)) 0 0 calc(52 * var(--rpx));
  color: #9ba1aa;
  font-family: Inter, var(--default-font-family);
  font-size: calc(10.600000381469727 * var(--rpx));
  font-weight: 600;
  line-height: calc(12.828409194946289 * var(--rpx));
  text-align: left;
  white-space: nowrap;
  z-index: 102;
}

.compensation-description {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: calc(157 * var(--rpx));
  height: calc(39 * var(--rpx));
  margin: calc(6 * var(--rpx)) 0 0 calc(19 * var(--rpx));
  color: #c5ccd5;
  font-family: Inter, var(--default-font-family);
  font-size: calc(7.199999809265137 * var(--rpx));
  font-weight: 600;
  line-height: calc(10.76767635345459 * var(--rpx));
  text-align: center;
  text-overflow: initial;
  z-index: 101;
  overflow: hidden;
}

.background-dd {
  position: absolute;
  width: calc(192 * var(--rpx));
  height: calc(115 * var(--rpx));
  right: calc(208 * var(--rpx));
  bottom: 0;
  background: #ffffff;
  z-index: 89;
}

.image-de {
  position: relative;
  width: calc(18 * var(--rpx));
  height: calc(20 * var(--rpx));
  margin: calc(11 * var(--rpx)) 0 0 calc(87 * var(--rpx));
  background: url(./assets/images/210c97d125c2d96cc38e75e7afa2f5084e03f1cd.png) no-repeat center;
  background-size: cover;
  z-index: 92;
}

.great-work-environment {
  display: block;
  position: relative;
  height: calc(14 * var(--rpx));
  margin: calc(7 * var(--rpx)) 0 0 calc(57 * var(--rpx));
  color: #9ea4ac;
  font-family: Inter, var(--default-font-family);
  font-size: calc(10.800000190734863 * var(--rpx));
  font-weight: 600;
  line-height: calc(13.070454597473145 * var(--rpx));
  text-align: left;
  white-space: nowrap;
  z-index: 91;
}

.company-culture-df {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: calc(156 * var(--rpx));
  height: calc(50 * var(--rpx));
  margin: calc(6 * var(--rpx)) 0 0 calc(19 * var(--rpx));
  color: #c4cbd4;
  font-family: Inter, var(--default-font-family);
  font-size: calc(7.800000190734863 * var(--rpx));
  font-weight: 600;
  line-height: calc(10.649977684020996 * var(--rpx));
  text-align: center;
  text-overflow: initial;
  z-index: 90;
  overflow: hidden;
}

.flex-row-b {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  width: calc(545 * var(--rpx));
  height: calc(17 * var(--rpx));
  margin: calc(6 * var(--rpx)) 0 0 calc(33 * var(--rpx));
  z-index: 86;
}

.button-e0 {
  flex-shrink: 0;
  position: relative;
  width: calc(70 * var(--rpx));
  height: calc(17 * var(--rpx));
  background: rgba(0, 0, 0, 0);
  z-index: 86;
}

.background-e1 {
  position: relative;
  width: calc(66 * var(--rpx));
  height: calc(14 * var(--rpx));
  margin: calc(2 * var(--rpx)) 0 0 calc(3 * var(--rpx));
  cursor: pointer;
  background: #eff3f8;
  border: calc(1 * var(--rpx)) solid #9ec7f0;
  z-index: 87;
  border-radius: calc(6.25 * var(--rpx));
}

.job-position {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: absolute;
  height: calc(10 * var(--rpx));
  right: calc(9 * var(--rpx));
  bottom: calc(1 * var(--rpx));
  color: #97c3ef;
  font-family: Inter, var(--default-font-family);
  font-size: calc(6.199999809265137 * var(--rpx));
  font-weight: 600;
  line-height: calc(7.503408908843994 * var(--rpx));
  text-align: left;
  white-space: nowrap;
  z-index: 88;
}

.button-e2 {
  flex-shrink: 0;
  position: relative;
  width: calc(70 * var(--rpx));
  height: calc(16 * var(--rpx));
  cursor: pointer;
  background: rgba(0, 0, 0, 0);
  border: none;
  z-index: 83;
}

.background-e3 {
  position: relative;
  width: calc(66 * var(--rpx));
  height: calc(14 * var(--rpx));
  margin: calc(1 * var(--rpx)) 0 0 calc(3 * var(--rpx));
  background: #f1f5fa;
  border: calc(1 * var(--rpx)) solid #a1c9f2;
  z-index: 84;
  border-radius: calc(6.25 * var(--rpx));
}

.job-position-e4 {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: absolute;
  height: calc(10 * var(--rpx));
  right: calc(9 * var(--rpx));
  bottom: calc(1 * var(--rpx));
  color: #94c1ef;
  font-family: Inter, var(--default-font-family);
  font-size: calc(6.199999809265137 * var(--rpx));
  font-weight: 600;
  line-height: calc(7.503408908843994 * var(--rpx));
  text-align: left;
  white-space: nowrap;
  z-index: 85;
}

.button-e5 {
  flex-shrink: 0;
  position: relative;
  width: calc(70 * var(--rpx));
  height: calc(16 * var(--rpx));
  cursor: pointer;
  background: rgba(0, 0, 0, 0);
  border: none;
  z-index: 80;
}

.background-e6 {
  position: relative;
  width: calc(67 * var(--rpx));
  height: calc(14 * var(--rpx));
  margin: calc(1 * var(--rpx)) 0 0 calc(2 * var(--rpx));
  background: #f5f8fb;
  border: calc(1 * var(--rpx)) solid #a2caf4;
  z-index: 81;
  border-radius: calc(7 * var(--rpx));
}

.job-position-e7 {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: absolute;
  height: calc(10 * var(--rpx));
  right: calc(9 * var(--rpx));
  bottom: calc(1 * var(--rpx));
  color: #99c4f0;
  font-family: Inter, var(--default-font-family);
  font-size: calc(6 * var(--rpx));
  font-weight: 600;
  line-height: calc(7.261363506317139 * var(--rpx));
  text-align: left;
  white-space: nowrap;
  z-index: 82;
}

.button-e8 {
  flex-shrink: 0;
  position: relative;
  width: calc(90 * var(--rpx));
  height: calc(16 * var(--rpx));
  cursor: pointer;
  background: rgba(0, 0, 0, 0);
  border: none;
  z-index: 77;
}

.background-e9 {
  position: relative;
  width: calc(87 * var(--rpx));
  height: calc(14 * var(--rpx));
  margin: calc(1 * var(--rpx)) 0 0 calc(2 * var(--rpx));
  background: #eef3f8;
  border: calc(1 * var(--rpx)) solid #9dc6ef;
  z-index: 78;
  border-radius: calc(7 * var(--rpx));
}

.job-position-ea {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: absolute;
  height: calc(10 * var(--rpx));
  right: calc(9 * var(--rpx));
  bottom: calc(1 * var(--rpx));
  color: #98c3ef;
  font-family: Inter, var(--default-font-family);
  font-size: calc(6.199999809265137 * var(--rpx));
  font-weight: 600;
  line-height: calc(7.503408908843994 * var(--rpx));
  text-align: left;
  white-space: nowrap;
  z-index: 79;
}

.button-eb {
  flex-shrink: 0;
  position: relative;
  width: calc(89 * var(--rpx));
  height: calc(16 * var(--rpx));
  cursor: pointer;
  background: rgba(0, 0, 0, 0);
  border: none;
  z-index: 74;
}

.background-ec {
  position: relative;
  width: calc(86 * var(--rpx));
  height: calc(14 * var(--rpx));
  margin: calc(1 * var(--rpx)) 0 0 calc(2 * var(--rpx));
  background: #f4f7fb;
  border: calc(1 * var(--rpx)) solid #a2caf2;
  z-index: 75;
  border-radius: calc(6.5 * var(--rpx));
}

.job-position-ed {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: absolute;
  height: calc(10 * var(--rpx));
  right: calc(9 * var(--rpx));
  bottom: calc(1 * var(--rpx));
  color: #9ac4f0;
  font-family: Inter, var(--default-font-family);
  font-size: calc(6.199999809265137 * var(--rpx));
  font-weight: 600;
  line-height: calc(7.503408908843994 * var(--rpx));
  text-align: left;
  white-space: nowrap;
  z-index: 76;
}

.button-ee {
  flex-shrink: 0;
  position: relative;
  width: calc(91 * var(--rpx));
  height: calc(16 * var(--rpx));
  background: rgba(0, 0, 0, 0);
  z-index: 71;
}

.background-ef {
  position: relative;
  width: calc(87 * var(--rpx));
  height: calc(14 * var(--rpx));
  margin: calc(1 * var(--rpx)) 0 0 calc(3 * var(--rpx));
  cursor: pointer;
  background: #eff3f8;
  border: calc(1 * var(--rpx)) solid #9dc6ef;
  z-index: 72;
  border-radius: calc(6.5 * var(--rpx));
}

.job-position-f0 {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: absolute;
  height: calc(10 * var(--rpx));
  right: calc(9 * var(--rpx));
  bottom: calc(1 * var(--rpx));
  color: #99c4f0;
  font-family: Inter, var(--default-font-family);
  font-size: calc(6.199999809265137 * var(--rpx));
  font-weight: 600;
  line-height: calc(7.503408908843994 * var(--rpx));
  text-align: left;
  white-space: nowrap;
  z-index: 73;
}

.flex-row-fbd {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  width: calc(199 * var(--rpx));
  height: calc(16 * var(--rpx));
  margin: calc(4 * var(--rpx)) 0 0 calc(214 * var(--rpx));
  z-index: 68;
}

.button-f1 {
  flex-shrink: 0;
  position: relative;
  width: calc(90 * var(--rpx));
  height: calc(16 * var(--rpx));
  background: rgba(0, 0, 0, 0);
  z-index: 68;
}

.background-f2 {
  position: relative;
  width: calc(87 * var(--rpx));
  height: calc(14 * var(--rpx));
  margin: calc(1 * var(--rpx)) 0 0 calc(2 * var(--rpx));
  cursor: pointer;
  background: #fbfcfe;
  border: calc(2 * var(--rpx)) solid #a5cff7;
  z-index: 69;
  border-radius: calc(7 * var(--rpx));
}

.job-position-f3 {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: absolute;
  height: calc(10 * var(--rpx));
  right: calc(8 * var(--rpx));
  bottom: 0;
  color: #98c4f0;
  font-family: Inter, var(--default-font-family);
  font-size: calc(5.699999809265137 * var(--rpx));
  font-weight: 600;
  line-height: calc(6.898294925689697 * var(--rpx));
  text-align: left;
  white-space: nowrap;
  z-index: 70;
}

.button-f4 {
  flex-shrink: 0;
  position: relative;
  width: calc(96 * var(--rpx));
  height: calc(16 * var(--rpx));
  background: rgba(0, 0, 0, 0);
  z-index: 65;
}

.background-f5 {
  position: relative;
  width: calc(93 * var(--rpx));
  height: calc(14 * var(--rpx));
  margin: calc(1 * var(--rpx)) 0 0 calc(3 * var(--rpx));
  cursor: pointer;
  background: #fbfcfe;
  border: calc(2 * var(--rpx)) solid #a5cff7;
  z-index: 66;
  border-radius: calc(7.25 * var(--rpx));
}

.job-position-f6 {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: absolute;
  height: calc(10 * var(--rpx));
  right: calc(8 * var(--rpx));
  bottom: 0;
  color: #9cc5f1;
  font-family: Inter, var(--default-font-family);
  font-size: calc(6.599999904632568 * var(--rpx));
  font-weight: 600;
  line-height: calc(7.987499713897705 * var(--rpx));
  text-align: left;
  white-space: nowrap;
  z-index: 67;
}

.background-f7 {
  position: relative;
  width: calc(638 * var(--rpx));
  height: calc(280 * var(--rpx));
  margin: calc(25 * var(--rpx)) 0 0 calc(70 * var(--rpx));
  background: rgba(0, 0, 0, 0);
  z-index: 23;
  overflow: visible auto;
}

.background-f8 {
  position: relative;
  width: calc(633 * var(--rpx));
  height: calc(268 * var(--rpx));
  margin: calc(7 * var(--rpx)) 0 0 calc(1 * var(--rpx));
  font-size: 0px;
  background: #fefefe;
  z-index: 24;
  overflow: visible auto;
}

.contact-us {
  display: block;
  position: relative;
  height: calc(22 * var(--rpx));
  margin: calc(12 * var(--rpx)) 0 0 calc(281 * var(--rpx));
  color: #4d6389;
  font-family: Inter, var(--default-font-family);
  font-size: calc(17.5 * var(--rpx));
  font-weight: 600;
  line-height: calc(21.17897605895996 * var(--rpx));
  text-align: left;
  white-space: nowrap;
  z-index: 62;
}

.contact-us-f9 {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  width: calc(34 * var(--rpx));
  height: calc(11 * var(--rpx));
  margin: calc(4 * var(--rpx)) 0 0 calc(300 * var(--rpx));
  color: #d8dde3;
  font-family: Inter, var(--default-font-family);
  font-size: calc(6 * var(--rpx));
  font-weight: 600;
  line-height: calc(7.261363506317139 * var(--rpx));
  text-align: left;
  z-index: 61;
}

.flex-row--fa {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  width: calc(398 * var(--rpx));
  height: calc(19 * var(--rpx));
  margin: calc(15 * var(--rpx)) 0 0 calc(117 * var(--rpx));
  z-index: 60;
}

.image-fb {
  flex-shrink: 0;
  position: relative;
  width: calc(19 * var(--rpx));
  height: calc(19 * var(--rpx));
  background: url(./assets/images/e99711579dc474397bd03d1f5049f09dfd9ddada.png) no-repeat center;
  background-size: cover;
  z-index: 60;
}

.image-fc {
  flex-shrink: 0;
  position: relative;
  width: calc(19 * var(--rpx));
  height: calc(19 * var(--rpx));
  background: url(./assets/images/ee03f166df52caa8b535bcbc6e607da6a86be4e7.png) no-repeat center;
  background-size: cover;
  z-index: 59;
}

.image-fd {
  flex-shrink: 0;
  position: relative;
  width: calc(16 * var(--rpx));
  height: calc(19 * var(--rpx));
  background: url(./assets/images/3fdce52743669d6a4e78b31b1c5095df75e3fe1d.png) no-repeat center;
  background-size: cover;
  z-index: 58;
}

.flex-row--fe {
  position: relative;
  width: calc(466 * var(--rpx));
  height: calc(14 * var(--rpx));
  margin: calc(14 * var(--rpx)) 0 0 calc(70 * var(--rpx));
  z-index: 57;
}

.address {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: absolute;
  height: calc(13 * var(--rpx));
  right: calc(165 * var(--rpx));
  bottom: calc(1 * var(--rpx));
  color: #a4a9b1;
  font-family: Inter, var(--default-font-family);
  font-size: calc(8.5 * var(--rpx));
  font-weight: 600;
  line-height: calc(10.286931991577148 * var(--rpx));
  text-align: left;
  white-space: nowrap;
  z-index: 56;
}

.email {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: absolute;
  height: calc(13 * var(--rpx));
  right: calc(352 * var(--rpx));
  bottom: 0;
  color: #a6abb3;
  font-family: Inter, var(--default-font-family);
  font-size: calc(7.599999904632568 * var(--rpx));
  font-weight: 600;
  line-height: calc(9.19772720336914 * var(--rpx));
  text-align: left;
  white-space: nowrap;
  z-index: 57;
}

.phone-number {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: absolute;
  height: calc(12 * var(--rpx));
  right: 0;
  bottom: calc(1 * var(--rpx));
  color: #abb0b7;
  font-family: Inter, var(--default-font-family);
  font-size: calc(7.199999809265137 * var(--rpx));
  font-weight: 600;
  line-height: calc(8.71363639831543 * var(--rpx));
  text-align: left;
  white-space: nowrap;
  z-index: 55;
}

.address-ff {
  display: block;
  position: relative;
  height: calc(12 * var(--rpx));
  margin: 0 0 0 calc(273 * var(--rpx));
  color: #aaafb6;
  font-family: Inter, var(--default-font-family);
  font-size: calc(8.800000190734863 * var(--rpx));
  font-weight: 600;
  line-height: calc(10.649999618530273 * var(--rpx));
  text-align: left;
  white-space: nowrap;
  z-index: 54;
}

.background-100 {
  position: relative;
  width: calc(575 * var(--rpx));
  height: calc(3 * var(--rpx));
  margin: calc(8 * var(--rpx)) 0 0 calc(29 * var(--rpx));
  background: url(./assets/images/1de68d078148d10855ceffd3737fb0b3715d37ae.png) no-repeat center;
  background-size: cover;
  z-index: 53;
}

.span {
  display: block;
  position: relative;
  height: calc(13 * var(--rpx));
  margin: calc(9 * var(--rpx)) 0 0 calc(189 * var(--rpx));
  color: #cad0d8;
  font-family: Inter, var(--default-font-family);
  font-size: calc(7.900000095367432 * var(--rpx));
  font-weight: 600;
  line-height: calc(9.560795783996582 * var(--rpx));
  text-align: left;
  white-space: nowrap;
  z-index: 52;
}

.flex-row-f-101 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  width: calc(573 * var(--rpx));
  height: calc(26 * var(--rpx));
  margin: calc(7 * var(--rpx)) 0 0 calc(30 * var(--rpx));
  z-index: 48;
}

.text {
  flex-shrink: 0;
  position: relative;
  width: calc(183 * var(--rpx));
  height: calc(26 * var(--rpx));
  background: rgba(0, 0, 0, 0);
  z-index: 48;
}

.background-102 {
  position: relative;
  width: calc(179 * var(--rpx));
  height: calc(22 * var(--rpx));
  margin: calc(3 * var(--rpx)) 0 0 calc(2 * var(--rpx));
  background: url(./assets/images/eda3937f093329a3a240534e4d762e0cda7289d1.png) no-repeat center;
  background-size: cover;
  z-index: 49;
  overflow: visible auto;
}

.image-103 {
  position: relative;
  width: calc(4 * var(--rpx));
  height: calc(4 * var(--rpx));
  margin: calc(3 * var(--rpx)) 0 0 calc(172 * var(--rpx));
  background: url(./assets/images/d8e7b90804a7939d9a5e27f2bc145d56995a64ad.png) no-repeat center;
  background-size: cover;
  z-index: 50;
}

.name-fill {
  display: block;
  position: relative;
  height: calc(10 * var(--rpx));
  margin: calc(-2 * var(--rpx)) 0 0 calc(8 * var(--rpx));
  color: #bfc8d3;
  font-family: Inter, var(--default-font-family);
  font-size: calc(6.800000190734863 * var(--rpx));
  font-weight: 600;
  line-height: calc(8.229545593261719 * var(--rpx));
  text-align: left;
  white-space: nowrap;
  z-index: 51;
}

.text-104 {
  flex-shrink: 0;
  position: relative;
  width: calc(185 * var(--rpx));
  height: calc(26 * var(--rpx));
  background: rgba(0, 0, 0, 0);
  z-index: 44;
}

.background-105 {
  position: relative;
  width: calc(180 * var(--rpx));
  height: calc(22 * var(--rpx));
  margin: calc(3 * var(--rpx)) 0 0 calc(3 * var(--rpx));
  background: url(./assets/images/828e38c5f2dc1c01eb932d72f463190463e41ed1.png) no-repeat center;
  background-size: cover;
  z-index: 45;
  overflow: visible auto;
}

.image-106 {
  position: relative;
  width: calc(3 * var(--rpx));
  height: calc(4 * var(--rpx));
  margin: calc(3 * var(--rpx)) 0 0 calc(173 * var(--rpx));
  background: url(./assets/images/fb01ab7f734a0e6ef370c5ee06ec7f41062e13af.png) no-repeat center;
  background-size: cover;
  z-index: 46;
}

.company-name-required {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  width: calc(44 * var(--rpx));
  height: calc(10 * var(--rpx));
  margin: calc(-2 * var(--rpx)) 0 0 calc(9 * var(--rpx));
  color: #bcc5d1;
  font-family: Inter, var(--default-font-family);
  font-size: calc(5.099999904632568 * var(--rpx));
  font-weight: 600;
  line-height: calc(6.172158718109131 * var(--rpx));
  text-align: left;
  z-index: 47;
}

.text-107 {
  flex-shrink: 0;
  position: relative;
  width: calc(182 * var(--rpx));
  height: calc(26 * var(--rpx));
  background: rgba(0, 0, 0, 0);
  z-index: 40;
}

.background-108 {
  position: relative;
  width: calc(179 * var(--rpx));
  height: calc(22 * var(--rpx));
  margin: calc(3 * var(--rpx)) 0 0 calc(2 * var(--rpx));
  background: url(./assets/images/6749605573e80519319e2ad0c18e37ab87794475.png) no-repeat center;
  background-size: cover;
  z-index: 41;
  overflow: visible auto;
}

.image-109 {
  position: relative;
  width: calc(4 * var(--rpx));
  height: calc(4 * var(--rpx));
  margin: calc(3 * var(--rpx)) 0 0 calc(172 * var(--rpx));
  background: url(./assets/images/30cac5cdae4d9b2d09dab30878c912da14c26ef0.png) no-repeat center;
  background-size: cover;
  z-index: 42;
}

.position-required {
  display: block;
  position: relative;
  height: calc(10 * var(--rpx));
  margin: calc(-2 * var(--rpx)) 0 0 calc(8 * var(--rpx));
  color: #bfc7d3;
  font-family: Inter, var(--default-font-family);
  font-size: calc(6.800000190734863 * var(--rpx));
  font-weight: 600;
  line-height: calc(8.229545593261719 * var(--rpx));
  text-align: left;
  white-space: nowrap;
  z-index: 43;
}

.flex-row-f-10a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  width: calc(573 * var(--rpx));
  height: calc(26 * var(--rpx));
  margin: calc(5 * var(--rpx)) 0 0 calc(30 * var(--rpx));
  z-index: 36;
}

.text-10b {
  flex-shrink: 0;
  position: relative;
  width: calc(183 * var(--rpx));
  height: calc(26 * var(--rpx));
  background: rgba(0, 0, 0, 0);
  z-index: 36;
}

.background-10c {
  position: relative;
  width: calc(179 * var(--rpx));
  height: calc(23 * var(--rpx));
  margin: calc(2 * var(--rpx)) 0 0 calc(2 * var(--rpx));
  background: url(./assets/images/700a63b994763e1cbefd1f1ebc6922f322e2c863.png) no-repeat center;
  background-size: cover;
  z-index: 37;
  overflow: visible auto;
}

.image-10d {
  position: relative;
  width: calc(4 * var(--rpx));
  height: calc(3 * var(--rpx));
  margin: calc(4 * var(--rpx)) 0 0 calc(172 * var(--rpx));
  background: url(./assets/images/a6223bad2d8dcf10651140dcc5f63895993fdfb3.png) no-repeat center;
  background-size: cover;
  z-index: 38;
}

.department-contact-required {
  display: block;
  position: relative;
  height: calc(10 * var(--rpx));
  margin: calc(-1 * var(--rpx)) 0 0 calc(8 * var(--rpx));
  color: #bec7d2;
  font-family: Inter, var(--default-font-family);
  font-size: calc(6.800000190734863 * var(--rpx));
  font-weight: 600;
  line-height: calc(8.229545593261719 * var(--rpx));
  text-align: left;
  white-space: nowrap;
  z-index: 39;
}

.text-10e {
  flex-shrink: 0;
  position: relative;
  width: calc(183 * var(--rpx));
  height: calc(25 * var(--rpx));
  background: rgba(0, 0, 0, 0);
  z-index: 32;
}

.background-10f {
  position: relative;
  width: calc(180 * var(--rpx));
  height: calc(23 * var(--rpx));
  margin: calc(2 * var(--rpx)) 0 0 calc(2 * var(--rpx));
  background: url(./assets/images/1d9031c99b059f5e0605fd1f61c2937df123e1b4.png) no-repeat center;
  background-size: cover;
  z-index: 33;
  overflow: visible auto;
}

.image-110 {
  position: relative;
  width: calc(3 * var(--rpx));
  height: calc(3 * var(--rpx));
  margin: calc(4 * var(--rpx)) 0 0 calc(173 * var(--rpx));
  background: url(./assets/images/b53654754462bf8e64de714125ac748c5219c33d.png) no-repeat center;
  background-size: cover;
  z-index: 34;
}

.contact-phone-required {
  display: block;
  position: relative;
  height: calc(10 * var(--rpx));
  margin: calc(-1 * var(--rpx)) 0 0 calc(8 * var(--rpx));
  color: #bcc5d1;
  font-family: Inter, var(--default-font-family);
  font-size: calc(5.900000095367432 * var(--rpx));
  font-weight: 600;
  line-height: calc(7.140340805053711 * var(--rpx));
  text-align: left;
  white-space: nowrap;
  z-index: 35;
}

.text-111 {
  flex-shrink: 0;
  position: relative;
  width: calc(182 * var(--rpx));
  height: calc(26 * var(--rpx));
  background: rgba(0, 0, 0, 0);
  z-index: 28;
}

.background-112 {
  position: relative;
  width: calc(179 * var(--rpx));
  height: calc(23 * var(--rpx));
  margin: calc(2 * var(--rpx)) 0 0 calc(2 * var(--rpx));
  background: url(./assets/images/251e3a31d1edca531b4e8ca037f3c86f5990f9b6.png) no-repeat center;
  background-size: cover;
  z-index: 29;
  overflow: visible auto;
}

.image-113 {
  position: relative;
  width: calc(4 * var(--rpx));
  height: calc(3 * var(--rpx));
  margin: calc(4 * var(--rpx)) 0 0 calc(172 * var(--rpx));
  background: url(./assets/images/e7d3c69efb26500ac3d783c42eb5cb4fb730797a.png) no-repeat center;
  background-size: cover;
  z-index: 30;
}

.service-request-required {
  display: block;
  position: relative;
  height: calc(10 * var(--rpx));
  margin: calc(-1 * var(--rpx)) 0 0 calc(8 * var(--rpx));
  color: #bec7d3;
  font-family: Inter, var(--default-font-family);
  font-size: calc(5.699999809265137 * var(--rpx));
  font-weight: 600;
  line-height: calc(6.898294925689697 * var(--rpx));
  text-align: left;
  white-space: nowrap;
  z-index: 31;
}

.button-114 {
  position: relative;
  width: calc(183 * var(--rpx));
  height: calc(25 * var(--rpx));
  margin: calc(5 * var(--rpx)) 0 0 calc(225 * var(--rpx));
  background: rgba(0, 0, 0, 0);
  z-index: 25;
  overflow: visible auto;
}

.button-background {
  position: relative;
  width: calc(179 * var(--rpx));
  height: calc(22 * var(--rpx));
  margin: calc(2 * var(--rpx)) 0 0 calc(2 * var(--rpx));
  cursor: pointer;
  background: #a8c9f5;
  border: calc(1 * var(--rpx)) solid #b0cef5;
  z-index: 26;
}

.submit {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: calc(20 * var(--rpx));
  height: calc(12 * var(--rpx));
  right: calc(78 * var(--rpx));
  bottom: calc(5 * var(--rpx));
  color: #d5e4f9;
  font-family: Inter, var(--default-font-family);
  font-size: calc(9.100000381469727 * var(--rpx));
  font-weight: 600;
  line-height: calc(11.013068199157715 * var(--rpx));
  text-align: center;
  white-space: nowrap;
  z-index: 27;
}

.background-115 {
  position: relative;
  width: calc(775 * var(--rpx));
  height: calc(90 * var(--rpx));
  margin: calc(1 * var(--rpx)) 0 0 0;
  background: #081b37;
  z-index: 2;
}

.groups-116 {
  position: absolute;
  width: calc(189 * var(--rpx));
  height: calc(49 * var(--rpx));
  right: calc(504 * var(--rpx));
  bottom: calc(25 * var(--rpx));
  font-size: 0px;
  background: rgba(0, 0, 0, 0);
  z-index: 15;
}

.instant-technology {
  display: block;
  position: relative;
  height: calc(11 * var(--rpx));
  margin: 0 0 0 calc(20 * var(--rpx));
  color: #8d95a2;
  font-family: Inter, var(--default-font-family);
  font-size: calc(7.800000190734863 * var(--rpx));
  font-weight: 600;
  line-height: calc(9.439772605895996 * var(--rpx));
  text-align: left;
  white-space: nowrap;
  z-index: 20;
}

.harmonic-function {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  width: calc(149 * var(--rpx));
  height: calc(21 * var(--rpx));
  margin: calc(17 * var(--rpx)) 0 0 calc(1.333984375 * var(--rpx));
  color: #394a62;
  font-family: Inter, var(--default-font-family);
  font-size: calc(6.299999904632568 * var(--rpx));
  font-weight: 600;
  line-height: calc(8.956787109375 * var(--rpx));
  text-align: left;
  text-overflow: initial;
  z-index: 16;
  overflow: hidden;
}

.harmonic-function a {
  color: #7c8695;
  font-family: Inter, var(--default-font-family);
  font-size: calc(6.299999904632568 * var(--rpx));
  font-weight: 600;
  text-decoration: none;

}

.harmonic-function a:hover {
  color: #7c8695;
  font-family: Inter, var(--default-font-family);
  font-size: calc(6.299999904632568 * var(--rpx));
  font-weight: 600;
  text-decoration: none;

}

.flex-row-dcf {
  position: absolute;
  width: calc(187 * var(--rpx));
  height: calc(16 * var(--rpx));
  right: 0;
  bottom: calc(31 * var(--rpx));
  z-index: 21;
}

.image-117 {
  position: absolute;
  width: calc(20 * var(--rpx));
  height: calc(20 * var(--rpx));
  right: calc(180 * var(--rpx));
  bottom: 0;
  background: url(./assets/images/logo.png) no-repeat center;
  background-size: cover;
  z-index: 21;
}

.background-118 {
  position: absolute;
  width: calc(2 * var(--rpx));
  height: calc(16 * var(--rpx));
  right: calc(124 * var(--rpx));
  bottom: 0;
  background: url(./assets/images/21666fc3d694aaeccf18d2c27b09f2e81b865352.png) no-repeat center;
  background-size: cover;
  z-index: 18;
}

.industry-infrastructure-provider {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: absolute;
  height: calc(12 * var(--rpx));
  right: 0;
  bottom: calc(3 * var(--rpx));
  color: #7c8695;
  font-family: Inter, var(--default-font-family);
  font-size: calc(7.199999809265137 * var(--rpx));
  font-weight: 600;
  line-height: calc(8.71363639831543 * var(--rpx));
  text-align: left;
  white-space: nowrap;
  z-index: 17;
}

.harmonic-function-119 {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: absolute;
  height: calc(7 * var(--rpx));
  right: calc(132 * var(--rpx));
  bottom: calc(31 * var(--rpx));
  color: #6b7686;
  font-family: Inter, var(--default-font-family);
  font-size: calc(5 * var(--rpx));
  font-weight: 600;
  line-height: calc(6.051136016845703 * var(--rpx));
  text-align: left;
  white-space: nowrap;
  z-index: 19;
}

.groups-11a {
  position: absolute;
  width: calc(299 * var(--rpx));
  height: calc(58 * var(--rpx));
  right: calc(82 * var(--rpx));
  bottom: calc(25 * var(--rpx));
  font-size: 0px;
  background: rgba(0, 0, 0, 0);
  z-index: 3;
}

.contact-us-11b {
  display: block;
  position: relative;
  height: calc(11 * var(--rpx));
  margin: 0 0 0 calc(2 * var(--rpx));
  color: #7f8897;
  font-family: Inter, var(--default-font-family);
  font-size: calc(7.199999809265137 * var(--rpx));
  font-weight: 600;
  line-height: calc(8.71363639831543 * var(--rpx));
  text-align: left;
  white-space: nowrap;
  z-index: 14;
}

.flex-row-cb {
  position: relative;
  width: calc(286 * var(--rpx));
  height: calc(44 * var(--rpx));
  margin: calc(-10 * var(--rpx)) 0 0 calc(2 * var(--rpx));
  z-index: 13;
}

.image-11c {
  position: absolute;
  width: calc(45 * var(--rpx));
  height: calc(44 * var(--rpx));
  right: 0;
  bottom: 0;
  background: url(./assets/images/463219fd89b0e89ed6e71c093bcaa8d3d2e8bc66.png) no-repeat center;
  background-size: cover;
  z-index: 7;
}

.business-cooperation {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: absolute;
  height: calc(10 * var(--rpx));
  right: calc(257 * var(--rpx));
  bottom: calc(17 * var(--rpx));
  color: #44556c;
  font-family: Inter, var(--default-font-family);
  font-size: calc(6.800000190734863 * var(--rpx));
  font-weight: 600;
  line-height: calc(7.140340805053711 * var(--rpx));
  text-align: left;
  white-space: nowrap;
  z-index: 13;
}

.contact-email {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: absolute;
  height: calc(10 * var(--rpx));
  right: calc(182 * var(--rpx));
  bottom: calc(16 * var(--rpx));
  color: #394962;
  font-family: Inter, var(--default-font-family);
  font-size: calc(5.699999809265137 * var(--rpx));
  font-weight: 600;
  line-height: calc(6.898294925689697 * var(--rpx));
  text-align: left;
  white-space: nowrap;
  z-index: 11;
}

.media-cooperation {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: absolute;
  height: calc(9 * var(--rpx));
  right: calc(257 * var(--rpx));
  bottom: calc(7 * var(--rpx));
  color: #48586f;
  font-family: Inter, var(--default-font-family);
  font-size: calc(6.800000190734863 * var(--rpx));
  font-weight: 600;
  line-height: calc(7.503408908843994 * var(--rpx));
  text-align: left;
  white-space: nowrap;
  z-index: 12;
}

.pr-email {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: absolute;
  height: calc(10 * var(--rpx));
  right: calc(182 * var(--rpx));
  bottom: calc(6 * var(--rpx));
  color: #3e4f67;
  font-family: Inter, var(--default-font-family);
  font-size: calc(5.699999809265137 * var(--rpx));
  font-weight: 600;
  line-height: calc(6.898294925689697 * var(--rpx));
  text-align: left;
  white-space: nowrap;
  z-index: 9;
}

.flex-row-bbf {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  width: calc(105 * var(--rpx));
  height: calc(10 * var(--rpx));
  margin: calc(-7 * var(--rpx)) 0 0 calc(2 * var(--rpx));
  z-index: 10;
}

.talent-recruitment {
  flex-shrink: 0;
  position: relative;
  height: calc(10 * var(--rpx));
  color: #43536b;
  font-family: Inter, var(--default-font-family);
  font-size: calc(6.800000190734863 * var(--rpx));
  font-weight: 600;
  line-height: calc(10 * var(--rpx));
  text-align: left;
  white-space: nowrap;
  z-index: 10;
}

.hr-email {
  flex-shrink: 0;
  position: relative;
  height: calc(9 * var(--rpx));
  color: #3f4f67;
  font-family: Inter, var(--default-font-family);
  font-size: calc(5.699999809265137 * var(--rpx));
  font-weight: 600;
  line-height: calc(9 * var(--rpx));
  text-align: left;
  white-space: nowrap;
  z-index: 8;
}

.flex-row-fe {
  position: relative;
  width: calc(298 * var(--rpx));
  height: calc(10 * var(--rpx));
  margin: 0 0 0 calc(-5 * var(--rpx));
  z-index: 6;
}

.wechat-public-account {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: absolute;
  height: calc(10 * var(--rpx));
  right: 0;
  bottom: 0;
  color: #45556c;
  font-family: Inter, var(--default-font-family);
  font-size: calc(5.900000095367432 * var(--rpx));
  font-weight: 600;
  line-height: calc(7.140340805053711 * var(--rpx));
  text-align: left;
  white-space: nowrap;
  z-index: 4;
}

.regroup {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  width: calc(79 * var(--rpx));
  height: calc(15 * var(--rpx));
  right: calc(219 * var(--rpx));
  bottom: 0;
  z-index: 6;
}

.phone-number-11d {
  flex-shrink: 0;
  position: relative;
  right: calc(-7 * var(--rpx));
  height: calc(9 * var(--rpx));
  color: #4a5a71;
  font-family: Inter, var(--default-font-family);
  font-size: calc(6.800000190734863 * var(--rpx));
  font-weight: 600;
  line-height: calc(9 * var(--rpx));
  text-align: left;
  white-space: nowrap;
  z-index: 6;
}

.phone-number-11e {
  flex-shrink: 0;
  position: relative;
  right: calc(-12 * var(--rpx));
  height: calc(9 * var(--rpx));
  color: #405068;
  font-family: Inter, var(--default-font-family);
  font-size: calc(5.699999809265137 * var(--rpx));
  font-weight: 600;
  line-height: calc(9 * var(--rpx));
  text-align: left;
  white-space: nowrap;
  z-index: 5;
}

.address-head {
  flex-shrink: 0;
  position: relative;
  bottom:calc(-8 * var(--rpx));
  right: calc(60 * var(--rpx));
  height: calc(12 * var(--rpx));
  color: #4a5a71;
  font-family: Inter, var(--default-font-family);
  font-size: calc(6.800000190734863 * var(--rpx));
  font-weight: 600;
  line-height: calc(12 * var(--rpx));
  text-align: left;
  white-space: nowrap;
  z-index: 6;
}

.address-detail {
  flex-shrink: 0;
  position: relative;
  bottom:calc(-8.5 * var(--rpx));
  right: calc(56 * var(--rpx));
  height: calc(12 * var(--rpx));
  color: #405068;
  font-family: Inter, var(--default-font-family);
  font-size: calc(5.699999809265137 * var(--rpx));
  font-weight: 600;
  line-height: calc(12 * var(--rpx));
  text-align: left;
  white-space: nowrap;
  z-index: 5;
}

.background-11f {
  position: absolute;
  width: calc(776 * var(--rpx));
  height: calc(302 * var(--rpx));
  right: 0;
  bottom: calc(2247 * var(--rpx));

  z-index: 330;
}

.background-120 {
  position: absolute;
  width: calc(776 * var(--rpx));
  height: calc(174 * var(--rpx));
  right: 0;
  bottom: calc(127 * var(--rpx));
  font-size: 0px;
  background: #fdfdfd;
  z-index: 328;
}

.project-cases-en {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  width: calc(42 * var(--rpx));
  height: calc(11 * var(--rpx));
  margin: calc(-1 * var(--rpx)) 0 0 calc(367 * var(--rpx));
  color: #d8dde5;
  font-family: Inter, var(--default-font-family);
  font-size: calc(5.800000190734863 * var(--rpx));
  font-weight: 600;
  line-height: calc(7.019318103790283 * var(--rpx));
  text-align: left;
  z-index: 371;
}

.project-cases {
  display: block;
  position: relative;
  height: calc(21 * var(--rpx));
  margin: calc(7 * var(--rpx)) 0 0 calc(353 * var(--rpx));
  color: #4c6389;
  font-family: Inter, var(--default-font-family);
  font-size: calc(16.899999618530273 * var(--rpx));
  font-weight: 600;
  line-height: calc(20.45284080505371 * var(--rpx));
  text-align: left;
  white-space: nowrap;
  z-index: 333;
}

.flex-row-c-121 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  width: calc(650 * var(--rpx));
  height: calc(24 * var(--rpx));
  margin: calc(131 * var(--rpx)) 0 0 calc(63 * var(--rpx));
  z-index: 357;
}

.image-122 {
  flex-shrink: 0;
  position: relative;
  width: calc(13 * var(--rpx));
  height: calc(24 * var(--rpx));
  background: url(./assets/images/21c55fe70f5040b9b0de048fe198f3c31792d038.png) no-repeat center;
  background-size: cover;
  z-index: 357;
}

.image-123 {
  flex-shrink: 0;
  position: relative;
  width: calc(13 * var(--rpx));
  height: calc(24 * var(--rpx));
  background: url(./assets/images/c82b6666884fdcaaaac03dfc4975f5909362f9f3.png) no-repeat center;
  background-size: cover;
  z-index: 337;
}

.groups-124 {
  position: absolute;
  width: calc(650 * var(--rpx));
  height: calc(213 * var(--rpx));
  right: calc(63 * var(--rpx));
  bottom: calc(42 * var(--rpx));
  background: rgba(0, 0, 0, 0);
  z-index: 336;
}

.groups-125 {
  position: absolute;
  width: calc(188 * var(--rpx));
  height: calc(213 * var(--rpx));
  right: calc(34 * var(--rpx));
  bottom: 0;
  background: rgba(0, 0, 0, 0);
  z-index: 338;
}

.image-126 {
  position: relative;
  width: calc(181 * var(--rpx));
  height: calc(85 * var(--rpx));
  margin: calc(1 * var(--rpx)) 0 0 calc(4 * var(--rpx));
  background: url(./assets/images/7612840bb19e8e3508d67eaa1b3ef622e734d022.png) no-repeat center;
  background-size: cover;
  z-index: 344;
}

.chinaam {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: absolute;
  width: calc(121 * var(--rpx));
  height: calc(19 * var(--rpx));
  right: calc(18 * var(--rpx));
  bottom: calc(33 * var(--rpx));
  color: #98adc7;
  font-family: Inter, var(--default-font-family);
  font-size: calc(7.400000095367432 * var(--rpx));
  font-weight: 300;
  line-height: calc(8.564066886901855 * var(--rpx));
  text-align: left;
  text-overflow: initial;
  z-index: 345;
  overflow: hidden;
}

.image-127 {
  position: absolute;
  width: calc(17 * var(--rpx));
  height: calc(18 * var(--rpx));
  right: calc(142 * var(--rpx));
  bottom: calc(33 * var(--rpx));
  background: url(./assets/images/104e21dba0113132e063ce04372b905bcf2e4156.png) no-repeat center;
  background-size: cover;
  z-index: 346;
}

.groups-128 {
  position: absolute;
  width: calc(187 * var(--rpx));
  height: calc(210 * var(--rpx));
  right: calc(232 * var(--rpx));
  bottom: calc(3 * var(--rpx));
  background: rgba(0, 0, 0, 0);
  z-index: 347;
}

.image-129 {
  position: relative;
  width: calc(180 * var(--rpx));
  height: calc(85 * var(--rpx));
  margin: calc(1 * var(--rpx)) 0 0 calc(4 * var(--rpx));
  background: url(./assets/images/f11da0032ddfaf47856e046dbce2e039aa6f223f.png) no-repeat center;
  background-size: cover;
  z-index: 353;
}

.zhao-long-technology {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: absolute;
  height: calc(17 * var(--rpx));
  right: calc(25 * var(--rpx));
  bottom: calc(35 * var(--rpx));
  color: #a9afb0;
  font-family: Inter, var(--default-font-family);
  font-size: calc(12.899999618530273 * var(--rpx));
  font-weight: 400;
  line-height: calc(15.611930847167969 * var(--rpx));
  text-align: left;
  white-space: nowrap;
  z-index: 354;
}

.changxin-fund-12a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: absolute;
  height: calc(16 * var(--rpx));
  right: calc(100 * var(--rpx));
  bottom: calc(35 * var(--rpx));
  color: #a8afb8;
  font-family: Inter, var(--default-font-family);
  font-size: calc(9.600000381469727 * var(--rpx));
  font-weight: 600;
  line-height: calc(11.618182182312012 * var(--rpx));
  text-align: left;
  white-space: nowrap;
  z-index: 355;
}

.image-12b {
  position: absolute;
  width: calc(15 * var(--rpx));
  height: calc(15 * var(--rpx));
  right: calc(142 * var(--rpx));
  bottom: calc(35 * var(--rpx));
  background: url(./assets/images/9178d61e425f4a01bbd7c359c1bb3b19c45fc29c.png) no-repeat center;
  background-size: cover;
  z-index: 356;
}

.groups-12c {
  position: absolute;
  width: calc(188 * var(--rpx));
  height: calc(212 * var(--rpx));
  right: calc(429 * var(--rpx));
  bottom: 0;
  background: rgba(0, 0, 0, 0);
  z-index: 358;
}

.image-12d {
  position: relative;
  width: calc(182 * var(--rpx));
  height: calc(85 * var(--rpx));
  margin: 0 0 0 calc(4 * var(--rpx));
  background: url(./assets/images/1e768ceff7460e70384744626da3cf9d7eae4532.png) no-repeat center;
  background-size: cover;
  z-index: 364;
}

.yinhua-fund-hua-yin-hua-fund {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: absolute;
  width: calc(60 * var(--rpx));
  height: calc(18 * var(--rpx));
  right: calc(101 * var(--rpx));
  bottom: calc(34 * var(--rpx));
  color: #a8b8cb;
  font-family: Inter, var(--default-font-family);
  font-size: calc(7 * var(--rpx));
  font-weight: 400;
  line-height: calc(7.5625 * var(--rpx));
  text-align: left;
  text-overflow: initial;
  z-index: 368;
  overflow: hidden;
}

.cancer-simplified-technology {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: absolute;
  height: calc(11 * var(--rpx));
  right: calc(26 * var(--rpx));
  bottom: calc(41 * var(--rpx));
  color: #9dacbd;
  font-family: Inter, var(--default-font-family);
  font-size: calc(6.800000190734863 * var(--rpx));
  font-weight: 600;
  line-height: calc(8.229545593261719 * var(--rpx));
  text-align: left;
  white-space: nowrap;
  z-index: 366;
}

.image-12e {
  position: absolute;
  width: calc(15 * var(--rpx));
  height: calc(15 * var(--rpx));
  right: calc(65 * var(--rpx));
  bottom: calc(35 * var(--rpx));
  background: url(./assets/images/4fcf99df809d41f007a9c9f30f08a30425b5a48e.png) no-repeat center;
  background-size: cover;
  z-index: 367;
}

.viatae-srgiien {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: absolute;
  height: calc(6 * var(--rpx));
  right: calc(28 * var(--rpx));
  bottom: calc(35 * var(--rpx));
  color: #8494a6;
  font-family: Inter, var(--default-font-family);
  font-size: calc(4.5 * var(--rpx));
  font-weight: 300;
  line-height: calc(5.4460225105285645 * var(--rpx));
  text-align: left;
  white-space: nowrap;
  z-index: 365;
}

.background-12f {
  position: absolute;
  width: calc(181 * var(--rpx));
  height: calc(127 * var(--rpx));
  right: calc(234 * var(--rpx));
  bottom: calc(-1 * var(--rpx));
  font-size: 0px;
  background: #ffffff;
  z-index: 348;
}

.changxin-fund-and-shangjian-technology {
  display: block;
  position: relative;
  height: calc(16 * var(--rpx));
  margin: calc(12 * var(--rpx)) 0 0 calc(31 * var(--rpx));
  color: #9299a2;
  font-family: Inter, var(--default-font-family);
  font-size: calc(12.600000381469727 * var(--rpx));
  font-weight: 600;
  line-height: calc(15.24886417388916 * var(--rpx));
  text-align: left;
  white-space: nowrap;
  z-index: 352;
}

.multi-scenario-plugin-module {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: calc(141 * var(--rpx));
  height: calc(25 * var(--rpx));
  margin: calc(10 * var(--rpx)) 0 0 calc(20.333984375 * var(--rpx));
  color: #a5aab2;
  font-family: Inter, var(--default-font-family);
  font-size: calc(8.5 * var(--rpx));
  font-weight: 300;
  line-height: calc(11.397143363952637 * var(--rpx));
  text-align: center;
  text-overflow: initial;
  z-index: 351;
  overflow: hidden;
}

.learn-more {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  width: calc(37 * var(--rpx));
  height: calc(11 * var(--rpx));
  margin: calc(42 * var(--rpx)) 0 0 calc(71 * var(--rpx));
  z-index: 350;
}

.image-130 {
  flex-shrink: 0;
  position: relative;
  height: calc(11 * var(--rpx));
  color: #95c4f2;
  font-family: Inter, var(--default-font-family);
  font-size: calc(7.199999809265137 * var(--rpx));
  font-weight: 600;
  line-height: calc(11 * var(--rpx));
  text-align: left;
  white-space: nowrap;
  z-index: 350;
}

.background-131 {
  flex-shrink: 0;
  position: relative;
  width: calc(3 * var(--rpx));
  height: calc(4 * var(--rpx));
  background: url(./assets/images/850c6d0932cd1f8629600385667c5a3242e682ba.png) no-repeat center;
  background-size: cover;
  z-index: 349;
}

.img-4b {
  position: absolute;
  width: calc(184 * var(--rpx));
  height: calc(128 * var(--rpx));
  right: calc(492 * var(--rpx));
  bottom: calc(40 * var(--rpx));
  font-size: 0px;
  background: url(./assets/images/28b2ff5ec6fb2ad9643793676514ad347df132c4.png) no-repeat center;
  background-size: cover;
  z-index: 359;
}

.yinhua-fund-and-shangjian-technology {
  display: block;
  position: relative;
  height: calc(16 * var(--rpx));
  margin: calc(12 * var(--rpx)) 0 0 calc(31 * var(--rpx));
  color: #9198a1;
  font-family: Inter, var(--default-font-family);
  font-size: calc(12.600000381469727 * var(--rpx));
  font-weight: 600;
  line-height: calc(15.24886417388916 * var(--rpx));
  text-align: left;
  white-space: nowrap;
  z-index: 363;
}

.data-middleware-and-multi-ecosystem {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: calc(142 * var(--rpx));
  height: calc(25 * var(--rpx));
  margin: calc(10 * var(--rpx)) 0 0 calc(20.333984375 * var(--rpx));
  color: #a6abb3;
  font-family: Inter, var(--default-font-family);
  font-size: calc(8.5 * var(--rpx));
  font-weight: 600;
  line-height: calc(11.397143363952637 * var(--rpx));
  text-align: center;
  text-overflow: initial;
  z-index: 362;
  overflow: hidden;
}

.box-2f {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  width: calc(37 * var(--rpx));
  height: calc(12 * var(--rpx));
  margin: calc(42 * var(--rpx)) 0 0 calc(72 * var(--rpx));
  z-index: 361;
}

.learn-more-132 {
  flex-shrink: 0;
  position: relative;
  height: calc(12 * var(--rpx));
  color: #95c4f2;
  font-family: Inter, var(--default-font-family);
  font-size: calc(7.199999809265137 * var(--rpx));
  font-weight: 600;
  line-height: calc(12 * var(--rpx));
  text-align: left;
  white-space: nowrap;
  z-index: 361;
}

.image-133 {
  flex-shrink: 0;
  position: relative;
  width: calc(4 * var(--rpx));
  height: calc(4 * var(--rpx));
  background: url(./assets/images/5b54e77ad34640f3ab4e6bc836739b7ca2865788.png) no-repeat center;
  background-size: cover;
  z-index: 360;
}

.background-134 {
  position: absolute;
  width: calc(181 * var(--rpx));
  height: calc(128 * var(--rpx));
  right: calc(100 * var(--rpx));
  bottom: calc(40 * var(--rpx));
  font-size: 0px;
  background: url(./assets/images/f4041f5845c8048ef3ad2ee7e9fd8c95d027d684.png) no-repeat center;
  background-size: cover;
  z-index: 339;
}

.huaxia-fund-shangjian-tech {
  display: block;
  position: relative;
  height: calc(17 * var(--rpx));
  margin: calc(12 * var(--rpx)) 0 0 calc(31 * var(--rpx));
  color: #949aa3;
  font-family: Inter, var(--default-font-family);
  font-size: calc(12.600000381469727 * var(--rpx));
  font-weight: 600;
  line-height: calc(15.24886417388916 * var(--rpx));
  text-align: left;
  white-space: nowrap;
  z-index: 343;
}

.research-data-center {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: calc(141 * var(--rpx));
  height: calc(26 * var(--rpx));
  margin: calc(8 * var(--rpx)) 0 0 calc(20.666015625 * var(--rpx));
  color: #a9aeb6;
  font-family: Inter, var(--default-font-family);
  font-size: calc(8.5 * var(--rpx));
  font-weight: 600;
  line-height: calc(11.397143363952637 * var(--rpx));
  text-align: center;
  text-overflow: initial;
  z-index: 342;
  overflow: hidden;
}

.flex-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  width: calc(38 * var(--rpx));
  height: calc(13 * var(--rpx));
  margin: calc(41 * var(--rpx)) 0 0 calc(71 * var(--rpx));
  z-index: 341;
}

.learn-more-135 {
  flex-shrink: 0;
  position: relative;
  height: calc(13 * var(--rpx));
  color: #93c3f2;
  font-family: Inter, var(--default-font-family);
  font-size: calc(7.199999809265137 * var(--rpx));
  font-weight: 600;
  line-height: calc(13 * var(--rpx));
  text-align: left;
  white-space: nowrap;
  z-index: 341;
}

.image-136 {
  flex-shrink: 0;
  position: relative;
  width: calc(4 * var(--rpx));
  height: calc(4 * var(--rpx));
  background: url(./assets/images/504369affb8564dae205ead841f6657966015f3a.png) no-repeat center;
  background-size: cover;
  z-index: 340;
}

.image-137 {
  position: absolute;
  width: calc(776 * var(--rpx));
  height: calc(130 * var(--rpx));
  right: 0;
  bottom: calc(-1 * var(--rpx));
  background: url(./assets/images/11b2a4b5f41e5c4e3a575f966098f8ca4a199a9e.png) no-repeat center;
  background-size: cover;
  z-index: 329;
}

.background-138 {
  position: absolute;
  width: calc(23 * var(--rpx));
  height: calc(2 * var(--rpx));
  right: calc(363 * var(--rpx));
  bottom: calc(9 * var(--rpx));
  background: url(./assets/images/81eaba9ad0d1970eba0e70649a4a5ac6a615e6c1.png) no-repeat center;
  background-size: cover;
  z-index: 334;
}

.background-139 {
  position: absolute;
  width: calc(22 * var(--rpx));
  height: calc(2 * var(--rpx));
  right: calc(390 * var(--rpx));
  bottom: calc(9 * var(--rpx));
  background: url(./assets/images/52b2da81c4c110d000abdc8401b2242f6394d2d0.png) no-repeat center;
  background-size: cover;
  z-index: 335;
}

.groups-13a {
  position: absolute;
  width: calc(776 * var(--rpx));
  height: calc(341 * var(--rpx));
  right: 0;
  bottom: calc(250 * var(--rpx));
  background: rgba(0, 0, 0, 0);
  z-index: 999;
}

.background-13b {
  position: relative;
  width: calc(776 * var(--rpx));
  height: calc(79 * var(--rpx));
  margin: calc(262 * var(--rpx)) 0 0 0;
  background: #f4f6f9;
  z-index: 332;
  overflow: visible auto;
}

.image-13c {
  position: relative;
  width: calc(28 * var(--rpx));
  height: calc(20 * var(--rpx));
  margin: calc(5 * var(--rpx)) 0 0 calc(748 * var(--rpx));
  background: url(./assets/images/cd2dd3b1b52333c75ac47af381af811bd857a740.png) no-repeat center;
  background-size: cover;
  z-index: 370;
}

.cooperation-clients {
  display: block;
  position: relative;
  height: calc(21 * var(--rpx));
  margin: calc(7 * var(--rpx)) 0 0 calc(353 * var(--rpx));
  color: #4c6389;
  font-family: Inter, var(--default-font-family);
  font-size: calc(16.899999618530273 * var(--rpx));
  font-weight: 600;
  line-height: calc(20.45284080505371 * var(--rpx));
  text-align: left;
  white-space: nowrap;
  z-index: 333;
}

.clients {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: calc(22 * var(--rpx));
  height: calc(12 * var(--rpx));
  margin: calc(4 * var(--rpx)) 0 0 calc(377 * var(--rpx));
  color: #d1d7df;
  font-family: Inter, var(--default-font-family);
  font-size: calc(6 * var(--rpx));
  font-weight: 600;
  line-height: calc(7.261363506317139 * var(--rpx));
  text-align: center;
  z-index: 369;
}

.image-13d {
  position: absolute;
  height: calc(2200 * var(--rpx));
  top: 0;
  right: 0;
  left: 0;
  background-size: cover;
  z-index: 1;
}

.image-13e {
  position: absolute;
  width: calc(776 * var(--rpx));
  height: calc(364 * var(--rpx));
  right: 0;
  bottom: calc(2000 * var(--rpx));
  z-index: 1;
}