@font-face {
  font-family: "Poppins";
  src: url("font/Poppins-Regular.ttf");
}
/* #region Public Styles */
.flex {
  display: flex;
}
/* 新增的 */
.grids {
  display: grid;
}
.grids-cum_2 {
  grid-template-columns: repeat(2, 1fr);
}
.grids-cum_3 {
  grid-template-columns: repeat(3, 1fr);
}
.grids-cum_4 {
  grid-template-columns: repeat(4, 1fr);
}
.grids-cum_5 {
  grid-template-columns: repeat(5, 1fr);
}
.grids-cum_6 {
  grid-template-columns: repeat(6, 1fr);
}
.grids-cum_7 {
  grid-template-columns: repeat(7, 1fr);
}
.flex-c {
  display: flex;
  align-items: center;
}

.flex-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.flex-con {
  display: flex;
  align-items: center;
  justify-content: center;
}
.flex-cum {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.flex-bt {
  display: flex;
  justify-content: space-between;
}
.flex-wp {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.Ohd_1 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  text-overflow: ellipsis;
}

.Ohd_2 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}

.Ohd_3 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
}

.Ohd_4 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
  text-overflow: ellipsis;
}
.Ohd_5 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* #endregion Public Styles */

/* #region Page Styles */

html {
  font-size: calc(100vw / 24) !important;
}

@media screen and (min-width: 1920px) {
  html {
    font-size: 80px !important;
  }
}

:root {
  --mainColor: #97c525;
  --color-a: #e19b38;
  --bg: #f5f5f7;
  --font-exo: "Exo", system-ui, -apple-system, sans-serif;
  --main-font: "思源黑体 CN", "微软雅黑", "黑体", sans-serif;
}
body {
  font-family: var(--main-font);
}
.com-card {
  width: 17.5rem;
  height: 100%;
  margin: 0 auto;
}
.comHover:hover {
  box-shadow: 0 0 15px rgba(238, 158, 9, 0.6);
  transform: translateY(-5px);
}

.tranImg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  vertical-align: bottom;
  transition: all 0.5s;
}
.hoverImg:hover img {
  transform: scale(1.1);
}
.comIderBtn {
  cursor: pointer;
  width: 2.15rem;
  text-align: center;
  transition: all 0.3s;
  height: 0.5875rem;
  line-height: 0.5875rem;
  background-color: var(--color-a);
  border-radius: 0.0625rem;
  font-size: 0.2rem;
  color: #ffffff;
}
.com-ls36,
.com-ls36 p,
.com-ls36 span {
  font-size: 0.225rem;
  line-height: 0.45rem;
  color: #3f3f3f;
}
.com-tl3 {
  font-size: 0.6rem;
  line-height: 1.2;
  color: #2b2b2b;
}
.com-tl3.center {
  text-align: center;
}
.iderHeader {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  transition:
    transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
    background 0.3s;
  height: 1.175rem;
  z-index: 9999;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.iderHeader.fixed {
  box-shadow: 0px 0px 0.375rem 0px rgba(53, 117, 87, 0.1);
  background-color: #fff;
}
.iderHeader.active {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  animation: slideDown 0.5s ease-out;
}
@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
.iderHeader .logo {
  width: 2.35rem;
  height: auto;
  margin-right: 0.4125rem;
}
.iderHeader .logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.menu-level1 > li {
  position: relative;
  display: flex;
  align-items: center;
  margin-right: 0.375rem;
}
.menu-level1 > li a {
  font-size: 0.225rem;
  color: #ffffff;
}
.iderHeader.fixed .menu-level1 > li a {
  color: #000;
}
.menu-level1 > li:last-child {
  margin-right: 0;
}
.iderBanner {
  position: relative;
  width: 100%;
  height: auto;
}
.iderBanner .bg {
  width: 100%;
  height: auto;
  object-fit: cover;
  vertical-align: bottom;
}
.iderBanner .title {
  font-size: 0.75rem;
  font-weight: 600;
  color: #ffffff;
  text-align: center;
}
.iderBanner .ls {
  font-size: 0.25rem;
  line-height: 0.6rem;
  color: #ffffff;
  text-align: center;
}
.iderBanner .bto .comIderBtn {
  width: 2.8rem;
  height: 0.7rem;
  line-height: 0.7rem;
  border-radius: 0.0625rem;
}
.iderBanner .bto .mores {
  display: block;
  transition: all 0.3s;
  width: 2.8rem;
  height: 0.7rem;
  line-height: 0.7rem;
  border-radius: 0.0625rem;
  border: solid 0.0125rem #fff;
  font-size: 0.225rem;
  text-align: center;
  line-height: 0.7rem;
  color: #ffffff;
  cursor: pointer;
  margin-left: 0.225rem;
}
.iderBanner .con {
  position: absolute;
  left: 0;
  width: 100%;
  height: auto;
  overflow: hidden;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}
.iderRollingItem .item {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.iderRollingItem .tempWrap {
  width: 100% !important;
  overflow: hidden;
}
.iderRollingItem .item li {
  width: 5.9375rem !important;
  overflow: hidden;
  height: 3.6125rem;
  box-shadow: 0px 0px 0.3rem 0px rgba(4, 0, 0, 0.1);
  border-radius: 0.125rem;
  margin-right: 0.575rem;
}
.iderRollingItem .top {
  margin-bottom: 0.4375rem;
}
.iderRollingItem .item li .img {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.iderBanner .con .bto {
  margin: 0.125rem 0 0.625rem 0;
}

.iderOperationBox1 {
  width: 100%;
  height: auto;
  background-color: var(--bg);
  padding: 1.5625rem 0 1rem 0;
}
.iderOperationBox1 ul {
  width: 100%;
  gap: 1.875rem;
  grid-template-columns: repeat(auto-fit, minmax(15%, 1fr));
}
.iderOperationBox1 li {
  width: 100%;
}
.iderOperationBox1 li .counter,
.iderOperationBox1 li .txt {
  font-size: 0.75rem;
  font-weight: 700;
  color: #3f3f3f;
}
.iderOperationBox1 li .em {
  font-size: 0.425rem;
  font-weight: 600;
  color: var(--mainColor);
}
.iderOperationBox1 li .name {
  font-size: 0.225rem;
  color: #3f3f3f;
  text-align: center;
  margin-top: 0.1875rem;
}
.iderOperationBox2 {
  width: 100%;
  height: auto;
  background-color: var(--bg);
  padding: 0.875rem 0;
}
.com-title {
  width: 100%;
  height: auto;
}
.com-title .name {
  width: 100%;
  display: flex;
  align-items: center;
  font-size: 0.2rem;
  color: #3f3f3f;
}
.com-title .name::after {
  display: block;
  content: "";
  flex: 1;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 1px;
  margin-left: 0.0875rem;
}
.iderOperationBox2 ul {
  width: 100%;
  gap: 0.4375rem;
  margin-top: 1.125rem;
  grid-template-columns: repeat(auto-fit, minmax(4rem, 1fr));
}
.iderOperationBox2 ul li {
  width: 100%;
  max-width: 4.05rem;
  justify-content: space-between;
  height: 5.725rem;
  padding: 0.5rem 0.375rem 0.5625rem 0.375rem;
  background-color: #f5f5f7;
  box-shadow: 0px 0px 0.3rem 0px rgba(4, 0, 0, 0.05);
  border-radius: 0.1875rem;
  border: solid 1px #fff;
}
.iderOperationBox2 li .icon {
  width: auto;
  height: 1.375rem;
  display: block;
  object-fit: contain;
  transition: all 0.5s;
  margin: 0 auto;
}
.iderOperationBox2 li .com-ls36 {
  text-align: center;
}
.iderOperationBox2 li .name {
  font-size: 0.3rem;
  font-weight: 600;
  color: #121212;
  width: 100%;
  text-align: center;
  margin: 0.4375rem 0;
}
.iderOperationBox2 li .mores {
  font-size: 0.2rem;
  display: block;
  color: var(--color-a);
  transition: all 0.3s;
}
.iderOperationBox2 li:hover .mores {
  text-decoration: underline;
}
.com-ls30,
.com-ls30 p,
.com-ls30 span {
  font-size: 0.2rem;
  line-height: 0.375rem;
  color: #3f3f3f;
}
.iderOperationBox3 {
  width: 100%;
  height: auto;
  padding: 0.75rem 0;
  background-color: var(--bg);
}
.iderOperationBox3 .title_text {
  transform: translateY(0.75rem);
}
.iderOperationBox3 .title {
  font-size: 0.6rem;
  line-height: 0.9rem;
  color: #3f3f3f;
  font-weight: 500;
}
.iderOperationBox3 .ls {
  font-size: 0.3rem;
  color: #3f3f3f;
  margin-top: 0.125rem;
}
.iderOperationBox3Con {
  width: 100%;
  height: auto;
  margin-top: 1rem;
  flex-direction: column;
  position: relative;
}

.iderOperationBox3Con .item {
  width: 45.8%;
  position: relative;
  background: #fff;
  margin-bottom: 0.5rem;
  z-index: 2;
  border-radius: 0.1rem;
  box-shadow: 0 0.125rem 0.375rem rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}
.iderOperationBox3Con .item:nth-child(odd) {
  align-self: flex-start;
}
.iderOperationBox3Con .item:nth-child(even) {
  align-self: flex-end;
}
.iderOperationBox3Con .item:nth-child(n + 2) {
  margin-top: -4.6875rem;
}
.iderOperationBox3Con .item:nth-child(2) {
  margin-top: -1.775rem;
}
.iderOperationBox3Con .item:first-child {
  box-shadow: none;
  background-color: transparent;
}
.iderOperationBox3Con .item .img {
  width: 100%;
  height: 5.1875rem;
  overflow: hidden;
  border-radius: 0.125rem 0.125rem 0px 0px;
}
.iderOperationBox3Con .item .img img {
  border-radius: 0.125rem 0.125rem 0px 0px;
}
.iderOperationBox3Con .item .text {
  width: 100%;
  min-height: 3.8125rem;
  background-color: #fff;
  border-radius: 0 0 0.125rem 0.125rem;
  padding: 0.1875rem 0.3rem 0.375rem 0.3rem;
}
.iderOperationBox3Con .item .type {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-a);
}
.iderOperationBox3Con .item .name {
  font-size: 0.3rem;
  line-height: 0.6rem;
  font-weight: 600;
  color: #3f3f3f;
}
.iderOperationBox3Con .item .icon {
  width: 0.825rem;
  height: 0.825rem;
  overflow: hidden;
  border-radius: 50%;
  margin-right: 0.225rem;
}
.iderOperationBox3Con .item .con {
  width: 100%;
  padding: 0.3125rem 0;
  border-top: 1px solid rgba(231, 229, 229, 0.4);
  border-bottom: 1px solid rgba(231, 229, 229, 0.4);
}
.iderOperationBox3Con .item .icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s;
}
.iderOperationBox3Con .item .com-ls30 {
  flex: 1;
}
.iderOperationBox3Con .item .bto {
  width: 100%;
  margin-top: 0.25rem;
}
.iderOperationBox3Con .item .links {
  font-size: 0.2rem;
  color: #a0a0a0;
}
.iderOperationBox3Con .item .mores {
  display: block;
  font-size: 0.2rem;
  color: var(--color-a);
}
.iderOperationBox4 {
  width: 100%;
  height: auto;
  padding: 1.625rem 0 2.25rem 0;
  background: url(/public/static/images/home/zh-cn/ider_bg4.png) no-repeat;
  background-size: cover;
}
.iderOperationBox4 .lt {
  position: relative;
  width: 44.8%;
  margin: 0 1rem 0 0.625rem;
}
.iderOperationBox4 .lt .minImg {
  width: 2.95rem;
  position: absolute;
  left: 0;
  top: 0;
  height: 1.8rem;
  overflow: hidden;
  box-shadow: 0px 0px 0.3rem 0px rgba(4, 0, 0, 0.35);
  border-radius: 0.0625rem;
  border: solid 0.0625rem #ffffff;
}
.iderOperationBox4 .lt .maxImg {
  width: 7.65rem;
  height: auto;
  overflow: hidden;
  margin-top: 1.25rem;
}
.iderOperationBox4 .lt .maxImg img {
  width: 100%;
  height: auto;
  object-fit: cover;
  vertical-align: bottom;
}
.iderOperationBox4 .text {
  flex: 1;
}
.iderOperationBox4 .text .title {
  font-size: 0.25rem;
  color: #3a3a3a;
}

.iderOperationBox4 .text ul {
  width: 100%;
  margin-top: 0.875rem;
  gap: 0.875rem 0.3125rem;
  grid-template-columns: repeat(auto-fit, minmax(45%, 1fr));
}
.iderOperationBox4 .text li .img {
  width: 0.8rem;
  border-radius: 50%;
  height: 0.8rem;
  margin-right: 0.15rem;
  background-color: #ffffff;
  box-shadow: 0px 0px 0.3rem 0px rgba(4, 0, 0, 0.09);
}
.iderOperationBox4 .text li .img img {
  width: 0.425rem;
  height: auto;
  object-fit: contain;
  transition: all 0.3s;
}
.iderOperationBox4 .text .com-tl3 {
  margin: 0.25rem 0 0.0625rem 0;
}
.iderOperationBox4 .text li .name {
  font-size: 0.25rem;
  font-weight: 600;
  color: #000000;
}
.iderOperationBox4 .text li .textRt {
  flex: 1;
}
.iderOperationBox5 {
  width: 100%;
  height: auto;
  padding: 1.375rem 0 160px 0;
}
.iderOperationBox5 ul {
  width: 100%;
  height: auto;
  gap: 0.25rem 0.6375rem;
  margin-top: 0.75rem;
  grid-template-columns: repeat(auto-fit, minmax(5.375rem, 1fr));
}
.iderOperationBox5 ul li {
  width: 100%;
  max-width: 5.375rem;
  border-radius: 0.125rem;
  border: solid 0.0125rem #e5e5e5;
  transition: all 0.3s;
}
.iderOperationBox5 li .img {
  display: block;
  width: 100%;
  height: 3.5rem;
  overflow: hidden;
  border-radius: 0.125rem 0.125rem 0px 0px;
}
.iderOperationBox5 li .text {
  width: 100%;
  height: auto;
  min-height: 4.175rem;
  padding: 0.225rem 0.3125rem 0.4375rem 0.325rem;
}
.iderOperationBox5 li .type {
  font-size: 0.2rem;
  color: #3f3f3f;
}
.iderOperationBox5 li .name {
  font-size: 0.3rem;
  line-height: 0.45rem;
  min-height: 0.9rem;
  color: #3f3f3f;
  margin: 0.15rem 0 0.25rem 0;
}
.iderOperationBox5 li .bottom {
  width: 100%;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 0.375rem;
}
.iderOperationBox5 li .time {
  font-size: 0.2rem;
  color: #3f3f3f;
}
.iderOperationBox5 li .bto {
  width: 100%;
  margin-top: 0.5625rem;
}
.iderOperationBox5 li .mores {
  text-decoration: underline;
  font-size: 0.2rem;
  color: var(--color-a);
}
.iderOperationBox6 {
  width: 100%;
  height: auto;
  position: relative;
}
.iderOperationBox6 .bg {
  width: 100%;
  height: auto;
  object-fit: cover;
  vertical-align: bottom;
}
.iderOperationBox6 .text {
  width: 100%;
  height: auto;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.iderOperationBox6 .text .ls {
  font-size: 0.3rem;
  line-height: 0.6rem;
  text-align: center;
  color: #ffffff;
}
.iderOperationBox6 .text .title {
  font-size: 0.6rem;
  font-weight: 600;
  line-height: 0.6rem;
  text-align: center;
  color: #ffffff;
  margin: 0.25rem 0 0.35rem 0;
}
.iderOperationBox6 .text .comIderBtn {
  width: 4.7rem;
  height: 0.925rem;
  line-height: 0.925rem;
  border-radius: 0.05rem;
  font-size: 0.3rem;
}
.iderFooter {
  width: 100%;
  height: auto;
}
.footerTop {
  width: 100%;
  height: auto;
  padding: 0.9375rem 0 0.2375rem 0;
  border-bottom: 1px solid #e5e5e5;
}
.footerTop .name {
  font-size: 0.25rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 0.625rem;
}
.footerTop .lt {
  width: 23%;
  margin-right: 1.0625rem;
}
.footerTop .rt {
  flex: 1;
  justify-content: space-between;
}
.footerTop .rt li {
  display: flex;
  flex-direction: column;
}
.footerTop .lt .type {
  font-size: 0.2rem;
  line-height: 0.375rem;
  color: #3f3f3f;
}
.footerTop .lt .address .ad,
.footerTop .lt .emls,
.footerTop .lt .phones .type {
  font-size: 0.2rem;
  line-height: 0.375rem;
  color: #3f3f3f;
}
.footerTop .lt .emls {
  cursor: pointer;
}
.footerTop .lt .phones {
  margin: 0.125rem 0;
}
.footerTop .lt .phones .ph {
  display: block;
  font-size: 0.45rem;
  font-weight: 600;
  color: var(--mainColor);
}
.footerLink {
  margin-top: 0.5625rem;
}
.footerLink a {
  width: 0.4375rem;
  height: 0.4375rem;
  border-radius: 0.2125rem;
  margin-right: 0.125rem;
  background-color: var(--mainColor);
  transition: all 0.3s;
}
.footerLink a:hover {
  transform: translateY(-10px);
}
.footerLink a:nth-child(2) {
  background-color: var(--color-a);
}
.footerLink a:nth-child(2) img {
  height: 0.1875rem;
}
.footerLink a:nth-child(3) {
  background-color: #68cfd2;
}
.footerLink a:nth-child(4) {
  background-color: #51ace9;
}
.footerLink a img {
  width: auto;
  height: 0.2375rem;
  object-fit: contain;
}
.footerTop .rt li a {
  font-size: 0.2rem;
  display: block;
  line-height: 0.375rem;
  transition: all 0.3s;
  color: #3f3f3f;
}
.footerTop .rt li a:hover {
  color: var(--color-a);
  text-decoration: underline;
}
.footerTop .rt li:last-child {
  width: 5rem;
}
.footerTop .rt .iconList {
  gap: 0.125rem;
  grid-template-columns: repeat(auto-fit, minmax(124px, 1fr));
}
.footerTop .rt .iconList .icon {
  width: 100%;
  height: 0.9rem;
  border-radius: 0.025rem;
  padding: 0.175rem;
  border: solid 1px #eeeeee;
}
.footerTop .rt .iconList .icon:hover {
  border-color: var(--color-a);
}
.footerTop .rt .iconList .icon img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}
.footerBto .lt .qr {
  width: 1.9875rem;
  height: 1.9875rem;
  object-fit: cover;
  vertical-align: bottom;
  display: block;
  margin-right: 0.275rem;
}
.footerBto {
  width: 100%;
  height: auto;
  padding: 0.5rem 0 1rem 0;
  border-bottom: 1px solid #e5e5e5;
}
.footerBto .lt {
  width: 24%;
  margin-right: 8%;
}
.footerBto .lt .qr_text {
  flex: 1;
}
.footerBto .lt .qr_text .txt {
  font-size: 0.3rem;
  color: #3f3f3f;
}
.footerBto .lt .qr_text .ls {
  font-size: 0.2rem;
  color: #3f3f3f;
  margin-top: 0.1875rem;
}
.footerBto .rt {
  flex: 1;
}
.footerBto .rt ul {
  width: 100%;
  gap: 0 1rem;
  grid-template-columns: auto auto;
}
.footerBto .rt ul li {
  font-size: 0.2rem;
  line-height: 0.6rem;
  color: #3f3f3f;
}
.footerBottom {
  width: 100%;
  height: auto;
  padding: 0.25rem 0;
}
.footerBottom .ls {
  font-size: 0.225rem;
  line-height: 0.6rem;
  color: #3f3f3f;
}
.footerBottom .ls a {
  display: flex;
  align-items: center;
  font-size: 0.225rem;
  line-height: 0.6rem;
  color: #3f3f3f;
}
.footerBottom .ls a::after {
  display: block;
  content: "|";
  color: #000;
  font-size: 0.2rem;
  margin: 0 0.1rem;
}
.footerBottom .ls a:last-child::after {
  display: none;
}
.iderInnerBanner {
  width: 100%;
  height: auto;
  position: relative;
}
.iderInnerBanner .bg {
  width: 100%;
  height: auto;
  object-fit: cover;
  vertical-align: bottom;
}
.iderInnerBanner .text {
  position: absolute;
  top: 50%;
  width: 100%;
  z-index: 1;
  transform: translateY(-50%);
}
.iderInnerBanner .text .title {
  font-size: 0.75rem;
  width: 66%;
  margin: 0 auto;
  font-weight: 600;
  line-height: 1rem;
  color: #ffffff;
  text-align: center;
}
.iderInnerBanner .text .title span {
  font-size: 0.75rem;
  color: var(--color-a);
}
.iderInnerBanner .text .ls {
  font-size: 0.3rem;
  line-height: 0.45rem;
  text-align: center;
  width: 100%;
  margin: 0.375rem 0;
  color: #ffffff;
}
.iderInnerBanner .text .comIderBtn {
  width: 2.8rem;
  height: 0.7rem;
  font-size: 0.225rem;
  line-height: 0.7rem;
  border-radius: 0.0625rem;
}
.iderNavItem {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: auto;
  padding: 0.3125rem 0;
}
.iderNavItem a,
.iderNavItem span {
  display: flex;
  align-items: center;
  font-size: 0.2rem;
  color: #ffffff;
}
.iderNavItem a::after {
  display: block;
  content: ">";
  font-size: 0.2rem;
  color: #ffffff;
  margin: 0 0.05rem;
}
.iderNavItem a:last-child::after {
  display: none;
}
.iderYandexBox1 {
  width: 100%;
  height: auto;
  background-color: var(--bg);
  padding: 1.25rem 0 0.625rem 0;
}
.iderYandexBox1Con {
  position: relative;
  width: 100%;
  height: auto;
  margin-top: 0.3125rem;
}
.iderYandexBox1Con .img {
  width: 11.2rem;
  height: auto;
}
.iderYandexBox1Con .img img {
  width: 100%;
  height: auto;
  object-fit: cover;
  vertical-align: bottom;
}
.iderYandexBox1Con ul {
  width: 9.2875rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  height: auto;
}
.iderYandexBox1Con ul li {
  width: 100%;
  min-height: 2.6rem;
  background-color: #ffffff;
  border-radius: 0.025rem;
  transition: all 0.3s;
  padding: 0.625rem 0.5rem 0.125rem 0.625rem;
}
.iderYandexBox1Con li .name {
  font-size: 0.3rem;
  font-weight: 600;
  color: var(--color-a);
  margin-bottom: 0.2375rem;
}
.iderYandexBox1Con li .icon {
  display: block;
  width: 1.125rem;
  object-fit: contain;
  transition: all 0.3s;
  margin-right: 0.875rem;

  height: 1.125rem;
}
.iderYandexBox1Con ul li .com-ls36 {
  transition: all 0.3s;
}

.iderYandexBox1Con ul li:hover {
  background-color: var(--mainColor);
}
.iderYandexBox1Con ul li:hover .name,
.iderYandexBox1Con ul li:hover .com-ls36 {
  color: #fff;
}
.iderYandexBox2 {
  width: 100%;
  height: auto;
  padding: 0.5625rem 0 0.875rem 0;
  background-color: var(--bg);
}
.iderYandexBox2 .title {
  font-size: 0.3rem;
  margin-top: 0.175rem;

  color: #3f3f3f;
}
.iderYandexBox2 .com-tl3 {
  margin-top: 0.8125rem;
}
.iderYandexBox2Con {
  width: 100%;
  height: auto;
  margin-top: 1.25rem;
}
.iderYandexBox2Con .lt {
  width: 5.3375rem;
  margin-right: 1.1rem;
}
.iderYandexBox2Con .lt .nu {
  font-size: 0.375rem;
  color: #000000;
}
.iderYandexBox2Con .lt .name {
  font-size: 0.3rem;
  font-weight: 600;
  color: #121212;
  flex: 1;
  margin: 0 0.125rem 0 0.175rem;
}

.iderYandexBox2Con .lt .item .tl::after {
  display: block;
  content: "";
  width: 0.2125rem;
  height: 0.2rem;
  background: url(/public/static/images/home/zh-cn/im1-3.png) no-repeat;
  background-size: contain;
}
.iderYandexBox2Con .lt .item.active .tl::after {
  background: url(/public/static/images/home/zh-cn/im1-4.png) no-repeat;
  background-size: contain;
}
.iderYandexBox2Con .lt .item {
  width: 100%;
  cursor: pointer;
  height: auto;
  padding: 0.3625rem 0;
  border-top: 1px solid #e5e5e5;
}
.iderYandexBox2Con .lt .item.active .name,
.iderYandexBox2Con .lt .item.active .nu {
  color: var(--color-a);
}
.iderYandexBox2Con .lt .item:last-child {
  border-bottom: 1px solid #e5e5e5;
}
.iderYandexBox2Con .lt .text {
  width: 100%;
  height: auto;
  display: none;
  padding-left: 0.2375rem;
}
.iderYandexBox2Con .imgList {
  flex: 1;
  position: relative;
  height: 7.7875rem;
  margin-top: 0.875rem;
  border-radius: 0.125rem;
}
.iderYandexBox2Con .imgList .img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 0.125rem;
  opacity: 0;
  /* display: none; */
  visibility: hidden;
  transform: translateY(600px) scale(1.5);
  transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);

  z-index: 3;
}
.iderYandexBox2Con .imgList .img.active {
  opacity: 1;
  /* display: block; */
  visibility: visible;
  transform: translateY(0) scale(1);
  z-index: 2;
}

.iderYandexBox2Con .imgList::after {
  position: absolute;
  left: 0;
  top: -0.875rem;
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  box-shadow: 0px 0px 1.125rem 0px rgba(107, 107, 107, 0.44);
  border-radius: 0.125rem;
  opacity: 0.2;
  z-index: 1;
}
.iderYandexBox2Con .imgList::before {
  position: absolute;
  left: 0;
  top: -0.375rem;
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  box-shadow: 0px 0px 1.125rem 0px rgba(107, 107, 107, 0.44);
  border-radius: 0.125rem;
  opacity: 0.3;
  z-index: 2;
}
.iderYandexBox3 {
  width: 100%;
  height: auto;
  background: url(/public/static/images/home/zh-cn/ider_bg7.jpg) bottom no-repeat;
  background-size: cover;
  padding: 0.875rem 0 2rem 0;
}
.iderYandexBox3 ul {
  width: 100%;
  margin-top: 1.375rem;
  justify-content: center;
}
.iderYandexBox3 ul li {
  width: 100%;
  width: 6.25rem;
  height: 6.25rem;
  border-radius: 50%;
  background: url(/public/static/images/home/zh-cn/ider_bg8.png) bottom no-repeat;
  background-size: 6.4875rem;
}
.iderYandexBox3 ul li .con {
  width: 5.1rem;
  height: 5.1rem;
  border-radius: 50%;
  padding: 0.625rem 0.75rem 0.125rem 0.5rem;
}
.iderYandexBox3 ul li:nth-child(2),
.iderYandexBox3 ul li:last-child {
  margin-left: -0.9rem;
}
.iderYandexBox3 li .icon {
  width: 1.2rem;
  height: auto;
  transition: all 0.5s;
  object-fit: contain;
}
.iderYandexBox3 li:hover .icon {
  transform: translateY(-10px);
}
.iderYandexBox3 li .name {
  font-size: 0.375rem;
  font-weight: 600;
  margin: 0.4375rem 0 0.25rem 0;
  color: #121212;
}
.iderYandexBox3 li .com-ls36 {
  text-align: center;
}
.iderYandexBox4 {
  width: 100%;
  height: auto;
  background-color: var(--bg);
  padding: 1.25rem 0;
}
.iderYandexBox4Con {
  width: 100%;
  margin-top: 0.875rem;
}
.iderYandexBox4Con .item {
  width: 100%;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 0.5625rem;
  margin-bottom: 0.625rem;
}
.iderYandexBox4Con .item:nth-child(2n) {
  flex-direction: row-reverse;
}
.iderYandexBox4Con .item:nth-child(2n) .text {
  padding: 0 0 0 10%;
}
.iderYandexBox4Con .item .img {
  width: 10.8rem;
  height: auto;
  border-radius: 0.125rem;
  background-color: #fff;
  overflow: hidden;
  padding: 0.125rem;
}
.iderYandexBox4Con .item:last-child {
  border-bottom: none;
  margin-bottom: 0;
}
.iderYandexBox4Con .item img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 0.125rem;
  vertical-align: bottom;
  transition: all 0.5s;
}
.iderYandexBox4Con .item .text {
  flex: 1;
  padding-right: 10%;
}
.iderYandexBox4Con .item .text .name {
  font-size: 0.3rem;
  font-weight: 600;
  color: #121212;
}
.iderYandexBox4Con .item .text .com-ls36 {
  margin: 0.25rem 0 0.5625rem 0;
}
.iderYandexBox4Con .item .text .comIderBtn {
  width: 3.925rem;
  height: 0.925rem;
  line-height: 0.925rem;
  font-size: 0.3rem;
  cursor: pointer;
  border-radius: 0.05rem;
}
.iderYandexBox5 .iderYandexBox1Con {
  height: 9.3rem;
}
.iderYandexBox5 .iderYandexBox1Con .img {
  width: 8.0375rem;
  height: 100%;
  overflow: hidden;
  margin-right: 0.1125rem;
}
.iderYandexBox5 .iderYandexBox1Con .rt {
  height: 100%;
  display: flex;
  align-items: center;
  flex: 1;
  background-color: #fff;
}
.iderYandexBox5 .iderYandexBox1Con .rt ul {
  width: 100%;
  position: static;
  transform: translate(0);
}
.iderYandexBox5 .iderYandexBox1Con .rt li {
  border-radius: 0.025rem;
  background-color: rgba(238, 163, 52, 0.1);
}
.iderYandexBox5 .iderYandexBox1Con .rt li:hover {
  background-color: #fff;
}
.iderYandexBox5 .iderYandexBox1Con .rt li:hover .name {
  color: var(--color-a);
}
.iderYandexBox5 .iderYandexBox1Con .rt li:hover .com-ls36 {
  color: #000;
}
.iderYandexBox6 .img {
  width: 13.875rem;
}
.iderYandexBox7 .lt .item .text li {
  font-size: 0.225rem;
  line-height: 0.45rem;
  padding-left: 0.25rem;
  background: url/public/static/images/home/zh-cn/im1-11.png) left top no-repeat;
  background-size: 0.1625rem 0.2rem;
  color: #000000;
  margin-bottom: 0.3125rem;
  background-position-y: 0.125rem;
}
.iderYandexBox7 .lt .item .text ul {
  margin-top: 0.375rem;
}
.iderYandexBox7 .lt .item .text li strong {
  font-weight: 600;
  font-size: 0.225rem;
  color: #000000;
}
.iderYandexBox8 {
  position: relative;
  padding: 1.25rem 0 1.625rem 0;
}
.iderYandexBox8::before {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  content: "";
  width: 3.75rem;
  height: 12.1875rem;
  background: url(/public/static/images/home/zh-cn/ider_bg2.png) left top no-repeat;
  background-size: cover;
  z-index: 1;
}
.iderYandexBox8::after {
  position: absolute;
  right: 0;
  top: 0;
  display: block;
  content: "";
  width: 4.375rem;
  height: 12.1875rem;
  background: url(/public/static/images/home/zh-cn/ider_bg1.png) left top no-repeat;
  background-size: cover;
  z-index: 1;
}
.iderYandexBox8 .img {
  width: 7.75rem;
  height: auto;
}
.iderYandexBox8 .iderYandexBox1Con {
  margin-top: 1.25rem;
  justify-content: space-between;
}
.iderYandexBox8 .iderYandexBox1Con ul {
  position: static;
  transform: translate(0);
}
/* #endregion Page Styles */

/* #region  Response style */
@media screen and (max-width: 1366px) {
  html {
    font-size: calc(100vw / 19) !important;
  }
  .iderBanner .title,
  .iderOperationBox6 .text .title,
  .iderInnerBanner .text .title {
    font-size: 0.45rem;
  }
  .iderBanner .bg {
    height: 85vh;
  }
  .iderInnerBanner .text .title {
    line-height: 0.5rem;
  }
}
@media screen and (max-width: 1024px) {
  html {
    font-size: 70px !important;
  }
  .com-card {
    width: 100% !important;
    padding: 0 4%;
  }
  .iderBanner .title,
  .iderOperationBox3 .title,
  .com-tl3,
  .iderOperationBox6 .text .title,
  .iderInnerBanner .text .title,
  .iderInnerBanner .text .title span {
    font-size: 18px;
    line-height: 1.5;
  }
  .iderBanner .ls,
  .iderOperationBox3 .ls,
  .iderOperationBox3Con .item .name,
  .iderOperationBox5 li .name,
  .iderOperationBox6 .text .ls,
  .iderInnerBanner .text .ls,
  .iderYandexBox2 .title,
  .iderYandexBox3 li .name {
    font-size: 16px;
    line-height: 1.4;
  }
  .iderOperationBox4 .text li .name,
  .iderYandexBox2Con .lt .name,
  .iderYandexBox2Con .lt .nu,
  .iderYandexBox4Con .item .text .comIderBtn {
    font-size: 16px;
  }
  .iderOperationBox3Con .item .type,
  .iderOperationBox6 .text .comIderBtn {
    font-size: 15px;
  }
  .comIderBtn,
  .iderBanner .bto .mores {
    width: fit-content !important;
    padding: 0 25px;
    height: 38px !important;
    line-height: 38px !important;
  }
  .iderBanner .con .title,
  .iderBanner .con .ls,
  .iderBanner .con .bto {
    padding: 0 4%;
  }
  .iderBanner .con .bto {
    margin: 10px 0 15px 0;
  }
  .iderOperationBox2 li .name,
  .iderYandexBox4Con .item .text .name {
    font-size: 17px;
  }
  .iderOperationBox1,
  .iderOperationBox2,
  .iderOperationBox4,
  .iderOperationBox3,
  .iderOperationBox5,
  .footerTop,
  .iderYandexBox1,
  .iderYandexBox2,
  .iderYandexBox3,
  .iderYandexBox4 {
    padding: 20px 0;
  }
  .iderOperationBox3Con .item .img,
  .iderOperationBox5 li .img,
  .iderYandexBox5 .iderYandexBox1Con,
  .iderYandexBox5 .iderYandexBox1Con .rt,
  .iderYandexBox5 .iderYandexBox1Con .img {
    height: auto;
  }
  .iderOperationBox3Con,
  .iderYandexBox2Con,
  .iderYandexBox4Con {
    margin-top: 15px;
  }
  .iderOperationBox2 ul {
    margin-top: 15px;
    gap: 15px;
  }
  .iderOperationBox1 ul {
    gap: 20px;
  }
  .iderOperationBox1 li .counter,
  .iderOperationBox1 li .txt {
    font-size: 26px;
  }
  .iderOperationBox1 li .em {
    font-size: 16px;
  }
  .iderOperationBox2 ul li {
    max-width: 100%;
  }
  .iderOperationBox2 li .icon {
    height: 56px;
  }
  .iderOperationBox3Con .item {
    margin-top: 0 !important;
    width: 100% !important;
  }
  .iderOperationBox3Con .item:nth-child(even) {
    align-self: baseline;
  }
  .iderOperationBox3Con {
    display: grid;
    gap: 15px;
    grid-template-columns: repeat(auto-fit, minmax(45%, 1fr));
  }
  .iderOperationBox3Con .item:first-child {
    display: none !important;
  }
  .iderOperationBox5 ul {
    gap: 12px;
    grid-template-columns: repeat(auto-fit, minmax(45%, 1fr));
  }
  .iderOperationBox5 ul li {
    max-width: 100%;
  }
  .iderOperationBox3 .title_text {
    transform: translateY(0);
    margin-top: 15px;
  }
  .iderOperationBox3Con .item .name {
    margin: 8px 0;
  }
  .iderOperationBox3Con .item {
    margin-bottom: 0;
  }
  .iderOperationBox4 .com-card,
  .footerTop,
  .footerBto,
  .footerBottom,
  .iderYandexBox1Con,
  .iderYandexBox2Con,
  .iderYandexBox4Con .item {
    flex-wrap: wrap;
  }
  .iderOperationBox4 .lt,
  .footerBto .lt,
  .iderYandexBox1Con ul {
    width: 100%;
  }
  .footerTop .name {
    font-size: 16px;
    margin-bottom: 15px;
  }
  .footerLink {
    margin-top: 15px;
  }
  .footerBto .lt .qr_text .txt {
    font-size: 16px;
  }
  .footerBto .lt {
    margin: 0 0 15px 0;
  }
  .footerTop .lt,
  .iderYandexBox4Con .item .text {
    width: 100%;
    margin: 0 0 15px 0;
  }
  .footerBto {
    padding: 20px 0;
  }
  .iderOperationBox4 .text,
  .iderYandexBox2Con .imgList,
  .iderYandexBox4Con .item .text,
  .iderYandexBox5 .iderYandexBox1Con .rt {
    flex: none;
    width: 100%;
  }
  .iderInnerBanner .text .ls {
    margin: 10px 0;
  }
  .iderYandexBox1Con ul {
    position: static;
    transform: translate(0);
  }
  .iderYandexBox1Con li .name {
    font-size: 16px;
    margin-bottom: 5px;
  }
  .iderYandexBox1Con li .icon {
    width: 65px;
    height: 65px;
    margin-right: 15px;
  }
  .iderYandexBox2 .com-tl3,
  .iderYandexBox8 .iderYandexBox1Con {
    margin-top: 15px;
  }
  .iderYandexBox2Con .lt {
    width: 100%;
    margin: 0 0 15px 0;
  }
  .iderYandexBox3 ul li {
    width: auto;
    height: auto;
    background: none;
  }
  .iderYandexBox3 ul li:nth-child(2),
  .iderYandexBox3 ul li:last-child {
    margin: 0;
  }
  .iderYandexBox3 ul {
    display: grid;
    gap: 12px;
    margin-top: 15px;
    grid-template-columns: repeat(auto-fit, minmax(45%, 1fr));
  }
  .iderYandexBox3 ul li .con {
    width: 100%;
    height: auto;
    border-radius: 10px;
    padding: 5% 4%;
    background-color: #fff;
  }
  .iderYandexBox4Con .item .text {
    padding: 0 !important;
  }
  .iderYandexBox3 li .icon {
    width: 60px;
  }
  .iderYandexBox3 li .name {
    margin: 15px 0;
  }
  .iderYandexBox4Con .item .text .com-ls36 {
    margin: 10px 0 15px 0;
  }
}
@media screen and (max-width: 992px) {
  .iderHeader {
    display: none;
  }
  .iderRollingItem .item li {
    width: 250px !important;
    height: 150px;
    margin-right: 10px;
  }
  .iderYandexBox1Con .img {
    width: 100%;
  }
  .iderRollingItem .top {
    margin-bottom: 10px;
  }
  .iderYandexBox1Con ul li {
    min-height: auto;
    padding: 4% 3%;
  }
  .iderYandexBox2Con .lt .item {
    padding: 12px 0;
  }
  .iderYandexBox4Con .item {
    padding-bottom: 12px;
    margin-bottom: 12px;
  }
  .iderYandexBox8 .img {
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 768px) {
  .iderOperationBox1 ul {
    grid-template-columns: repeat(auto-fit, minmax(45%, 1fr));
  }
  .iderOperationBox3Con,
  .iderOperationBox4 .text ul,
  .iderOperationBox5 ul {
    gap: 12px;
    grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));
  }
  .iderOperationBox3Con .item .text,
  .iderOperationBox5 li .text {
    min-height: auto;
  }
  .iderOperationBox4 .lt .minImg {
    display: none;
  }
  .iderOperationBox4 .lt,
  .iderOperationBox4 .lt .maxImg,
  .iderYandexBox4Con .item .img,
  .iderYandexBox5 .iderYandexBox1Con .img {
    width: 100%;
    margin: 0;
  }
  .iderOperationBox5 li .name {
    min-height: auto;
  }
  .iderOperationBox6 .text .title {
    margin: 8px 0;
  }
  .com-ls36,
  .com-ls36 p,
  .com-ls36 span {
    font-size: 14px !important;
    line-height: 26px !important;
  }
  .footerTop .rt {
    flex: none;
    flex-wrap: wrap;
    width: 100%;
  }
  .footerTop .rt li {
    width: 33%;
  }
  .footerBto .rt ul li {
    line-height: 26px;
  }
  .iderYandexBox1Con li .icon {
    width: 45px;
    height: 45px;
  }
  .iderYandexBox2Con .lt .text {
    padding: 8px 0 0 32px;
  }
  .iderYandexBox2Con .lt .item .tl::after {
    width: 12px;
    height: 10px;
  }
  .iderYandexBox2Con .imgList::after {
    top: -30px;
  }
  .iderYandexBox2Con .imgList::before {
    top: -20px;
  }
}
@media screen and (max-width: 500px) {
  .iderOperationBox2 ul li {
    height: auto;
    padding: 6% 4%;
  }
  .footerBto .rt ul,
  .iderYandexBox3 ul {
    grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));
  }
  .iderOperationBox2 li .name {
    margin: 15px 0;
  }
  .iderOperationBox2 li .com-ls36 {
    margin-bottom: 20px;
  }
  .iderOperationBox6 .bg {
    height: 40vh;
  }
  .footerBottom .ls {
    width: 100%;
    font-size: 14px;
    line-height: 26px;
    justify-content: center;
    text-align: center;
  }
  .footerBottom .ls a {
    font-size: 14px;
    line-height: 26px;
  }
  .iderNavItem {
    position: static;
    background-color: var(--bg);
  }
  .iderNavItem a,
  .iderNavItem span,
  .iderNavItem a::after {
    color: #000 !important;
  }
  .iderYandexBox2Con .imgList {
    height: 288px;
  }
}
@media screen and (max-width: 430px) {
  .iderInnerBanner .bg {
    height: 40vh;
  }
}
@media screen and (max-width: 360px) {
  .iderBanner .con .bto {
    flex-wrap: wrap;
  }
  .iderBanner .bg {
    height: 98vh;
  }
  .iderBanner .bto .mores {
    margin: 5px 0 0 0;
  }
  .iderOperationBox1 ul {
    grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));
  }
}
/* #endregion  Response style */
