:root {
  --theme-color: #ff0000;
  --io-theme-color: #01A1C9;
  --theme-bg-color: #D0D5F3;
  --theme-bg-color-thin: rgba(208, 213, 243, .5);
  --theme-linear-gradient: linear-gradient(180.00deg, rgb(236, 235, 235), rgb(247, 247, 247) 100%), rgb(247, 247, 247);
  --px: 1 / 1920 * 100vw;
  --theme-box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.15);
  --header-h: max(70px, 100* var(--px));
  --px-20-40: max(20px, 40* var(--px));
  --px-10-20: max(10px, 20* var(--px));
  --main-margin: max(20px, 120* var(--px));
  --font-size-16: max(12px, 16* var(--px));
  --font-size-18: max(14px, 18* var(--px));
  --font-size-20: max(16px, 20* var(--px));
  --font-size-22: max(18px, 22* var(--px));
  --font-size-24: max(20px, 24* var(--px));
}

body.loaded {
  overflow: initial;
}

.er-chan {
  width: 200px !important;
}

* {
  margin: 0;
  box-sizing: border-box;
}

ul,
ol,
li {
  list-style: none;
}

/* 添加视觉引导元素 */
.clip-btn::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s;
}

/* 添加点击反馈 */
#direction-control {
  position: relative;
  cursor: pointer;
  transition: transform 0.3s;
}

#direction-control:hover {
  transform: scale(1.05);
}

#direction-control::before {
  content: '';
  position: absolute;
  left: 0;
  width: 50%;
  height: 100%;
  /* 调试时可临时开启背景色 */
  /* background: rgba(255,0,0,0.3); */
}

#direction-control::after {
  content: '';
  position: absolute;
  right: 0;
  width: 50%;
  height: 100%;
  /* 调试时可临时开启背景色 */
  /* background: rgba(0,255,0,0.3); */
}

.clip-btn:hover::after {
  transform: translate(-50%, -50%) scale(1.2);
}

.left-btn::after {
  left: 30%;
}

.right-btn::after {
  left: 70%;
}


img {
  max-width: 100%;
}

.flex {
  display: flex;
}

.flex-jcsb {
  display: flex;
  justify-content: space-between;
}

.flex-between-center {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.flex-aic {
  display: flex;
  align-items: center;
}

.flex-jcc {
  display: flex;
  justify-content: center;
}

.flex-dir-col {
  display: flex;
  flex-direction: column;
}

.loading-full-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: radial-gradient(circle, #fcfcfc, #e0e0e0);
  z-index: 10000;
  overflow: hidden;
  display: none;
}

.full-screen {
  position: absolute;
  width: 100%;
  height: 100vh;
}

body:not(.fp-viewing-1, .fp-viewing-9) #menu {
  transform: translate3d(0, -50%, 0);
}

body.theme-w #menu li {
  /* border-color: #f00; */
}

body.theme-w #menu li a {
  /* color: #f00; */
}

.fp-tableCell {
  display: block;
}

.fp-section.fp-table,
.fp-slide.fp-table {
  display: block;
}

.line-wrap {
  display: flex;
  position: absolute;
  bottom: 28%;
  right: 0;
  z-index: 1;
}

.video-cont {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  display: none;
}

.video-cont .bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, .7);
}

.video-cont .video-wrap {
  width: 50%;
  aspect-ratio: 16 / 9;
  position: relative;
  z-index: 1;
}

.video-cont .video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.close-video {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, calc(100% + 30px));
  width: max(30px, 50* var(--px));
  aspect-ratio: 1;
  background-color: #fff;
  cursor: pointer;
}

.close-video img {
  width: 30%;
}

.dialog-wrap {
  padding: var(--px-20-40);
  background-color: #fff;
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate3d(-50%, -100%, 0);
  flex-direction: column;
  gap: 10px;
  border-radius: 10px;
  box-shadow: 0px 0px 10px 0px rgba(71, 52, 26, 0.1);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
}

.dialog-wrap svg {
  display: none;
}

.dialog-wrap.dialog-wrap-active {
  transform: translate3d(-50%, -50%, 0);
  opacity: 1;
  visibility: visible;
  transition: .3s;
}

.dialog-wrap.success .success-svg {
  display: block;
}

.dialog-wrap.error .error-svg {
  display: block;
}

.bg-lay {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.img-lay {
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
}

.img-lay-contain {
  object-fit: contain;
  width: 100%;
  height: 100%;
  display: block;
}

.main {
  margin: 0 var(--main-margin);
  height: 100%;
  position: relative;
  z-index: 5;
}

.section {
  position: relative;
}

.sec-cont {
  display: flex;
  height: 100%;
  gap: max(30px, 10%);
  position: relative;
  z-index: 2;
  padding: 84px 0 max(30px, 5%);
}

.sec-txt {
  display: flex;
  flex-direction: column;
  gap: var(--px-10-20);
  padding-top: max(30px, 3%);
}

.sec-txt .title {
  font-size: max(24px, 58 * var(--px));
  font-weight: bold;
  white-space: nowrap;
}

.sec-txt .title-thin {
  font-size: max(20px, 48 * var(--px));
  font-weight: bold;
}

.sec-txt .intro {
  font-size: max(16px, 38 * var(--px));
  line-height: 1.5;
  font-weight: bold;
}

.sec-txt .intro-thin {
  font-size: max(14px, 28 * var(--px));
  line-height: 1.5;
}

.sec-txt .intro span.nowrap {
  white-space: nowrap;
}

.sec-cont-lr .sec-txt {
  flex-shrink: 0;
  /* width: 30%; */
}

.sec-cont-tb {
  flex-direction: column;
}

.sec-cont-tb .sec-txt {
  text-align: center;
}

.sec-cont .page-container {
  flex: 1;
  text-align: center;
  position: relative;
}

.sec-cont-tb .page-container {
  width: 100%;
}

.sec-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

#menu {
  position: fixed;
  top: 50%;
  right: var(--px-20-40);
  transform: translate3d(calc(110% + var(--px-20-40)), -50%, 0);
  z-index: 9999;
  transition: .3s;
  padding-left: 0;
}

#menu li {
  margin: 10px 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, .3);
  transition: .3s;
}

#menu li.active {
  height: 30px;
  background-color: var(--io-theme-color);
  border-radius: 300px;
}

svg {
  max-width: 100%;

}

.card-wrap {
  display: flex;
  flex-wrap: wrap;
  --column: 3;
  --gap: 5px;
  gap: var(--gap);
}

.card-wrap>.item {
  width: calc((100% - (var(--column) - 1)* var(--gap)) / var(--column));
}

.slimScrollBar {
  opacity: 0 !important;
}

.backtop {
  position: fixed;
  top: 62%;
  right: var(--px-20-40);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, .3);
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  transition: .3s;
  cursor: pointer;
  z-index: 999;
  transform: translateX(42%);
}

.backtop img {
  width: 40%;
}

.backtop:hover {
  background-color: var(--io-theme-color);
}

.section {
  height: 100vh;
  overflow: hidden;
}

.form {
  padding-right: 30px;
  padding-bottom: calc(300 * var(--px));
  height: 100vh;
  margin-top: max(50px, 30%);
  overflow-y: auto;
}

.form::-webkit-scrollbar-button {
  display: none;
}

.form::-webkit-scrollbar {
  width: 2px;
  background-color: rgba(255, 255, 255, .5);
}

.form::-webkit-scrollbar-thumb {
  background-color: var(--io-theme-color);
}

.form .form-item {
  /* background: url(../../images/mx/form-item-bg.png) no-repeat; */
  background-size: cover;
  background-position: left top;
  padding: 30px 20px;
  color: #fff;
  font-size: 18px;
  border-radius: 30px;
  position: relative;
  background-color: #000;
  border: 1px solid rgba(255, 255, 255, .5);
  margin-bottom: 30px;
}

/* .form .form-item::after {
  content: '';
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  border-radius: 30px;
  position: absolute;
  top: -1px;
  left: -1px;
  background: linear-gradient(to right bottom, rgba(255, 255, 255, .5), transparent);
} */

.form .form-item .title {
  display: flex;
  font-weight: bold;
}

.form .form-item .title .serial {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(50.00% 50.00% at 50% 50%, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0) 100%), rgba(255, 255, 255, 0.2);
  font-size: 12px;
  margin-right: 13px;
  font-weight: normal;
  flex-shrink: 0;
  margin-top: -4px;
}

.form .form-item .txt {
  text-align: left;
}

.form .form-item .txt span {
  color: rgba(255, 255, 255, .5);
}

.select-checkbox-wrap {
  position: relative;
}

.select-checkbox {
  padding-left: 43px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
  cursor: pointer;
}

.checkbox-item {
  position: relative;
  padding-left: 30px;
  display: flex;
  align-items: center;
  user-select: none;
}

.checkbox-item::after {
  content: '';
  border: 2px solid rgba(255, 255, 255, .5);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.checkbox-item.active::after {
  background-color: var(--io-theme-color);
  border-color: #fff;
}

.select-checkbox .checkbox-item input.custom-input {
  outline: unset;
  border: 1px solid rgba(255, 255, 255, .5);
  min-width: 160px;
  height: 38px;
  padding: 0 20px;
  border-radius: 30px;
  background-color: transparent;
  margin-left: 20px;
  color: #fff;
}

.form .tips {
  position: absolute;
  bottom: 0;
  left: 0;
  font-size: 14px;
  color: var(--theme-color);
  transform: translateY(100%);
  display: none;
}

.inp-item-wrap {
  border-top: 1px solid rgba(208, 213, 243, .5);
  --column: 2;
  margin-top: 30px;
  padding-top: 30px;
  --gap: 20px;
}

.inp-item-wrap .label {
  font-size: max(14px, 16 * var(--px));
  margin-bottom: 10px;
  text-align: left;
}

.inp-item-wrap .item.necessary .label::after {
  content: '*';
  color: var(--theme-color);
}

.inp-item-wrap input,
.inp-item-wrap select,
.inp-item-wrap textarea {
  width: 100%;
  height: 48px;
  padding: 0 20px;
  box-sizing: border-box;
  outline: unset;
  resize: unset;
  border: 1px solid rgba(255, 255, 255, .5);
  background-color: transparent;
  border-radius: 30px;
  color: #fff;
}

.inp-item-wrap textarea {
  height: max(100px, 140* var(--px));
}

.inp-item-wrap.card-wrap>.item {
  position: relative;
}

.form-item .radio {
  display: flex;
  margin-top: 20px;
}

.form-item .radio label {
  width: max(30px, 40 * var(--px));
  height: max(30px, 40 * var(--px));
  background-color: #fff;
  margin-right: 10px;
  cursor: pointer;
}

.form-item .radio label:hover {
  box-shadow: 0px 0px 10px 0px rgba(71, 52, 26, 0.1);
}

.form-item .radio input[type=radio]:checked+label {
  background: var(--theme-color);
  color: #fff;
}

.form-item .privacy_radio .radio-wrap {
  display: flex;
  align-items: flex-start;
  font-size: var(--font-size-16);
}

.form-item .privacy_radio label {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  flex-shrink: 0;
  background-color: unset;
  border: 1px solid #666;
  margin-top: .3em;
}

.form-item .privacy_radio input[type=radio]:checked+label {
  background-color: var(--io-theme-color);
}

.form-item .privacy_radio a {
  color: var(--io-theme-color);
}

.form-item .privacy_radio p {
  text-align: left;
}

.form .button {
  width: 50%;
  padding: 15px;
  background-color: var(--io-theme-color);
  border-radius: 300px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  cursor: pointer;
  transition: .3s;
}

.form .button span {
  padding-left: 20%;
  font-weight: bold;
  color: #fff;
  font-size: 22px;
  letter-spacing: 2px;
}

.form .button .icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.form .button:hover {
  box-shadow: 0 0 8px 0px rgba(255, 255, 255, .5);
}

.down-btn {
  cursor: pointer;
}


path[moveline1] {
  stroke-dasharray: 20 80;
  animation: move1 3s linear infinite;
}

@keyframes move1 {
  0% {
    stroke-dashoffset: 0;
  }

  100% {
    stroke-dashoffset: -100;
  }
}

path[moveline2] {
  stroke-dasharray: 20 80;
  animation: move2 3s linear infinite;
}

@keyframes move2 {
  0% {
    stroke-dashoffset: -100;
  }

  100% {
    stroke-dashoffset: 0;
  }
}

.select-wrap {
  position: relative;
  box-sizing: border-box;
  user-select: none;
  /* border-bottom: 2px solid var(--theme-color); */
}

.select-checked {
  width: 100%;
  height: 48px;
  box-sizing: border-box;
  padding: 0 20px;
  overflow: hidden;
  display: flex;
  align-items: center;
  font-size: 14px;
  overflow: hidden;
  white-space: nowrap;
  border: 1px solid rgba(255, 255, 255, .5);
  cursor: pointer;
  border-radius: 30px;
}

.select-option {
  color: #000;
  width: calc(100% + 2px);
  box-sizing: border-box;
  position: absolute;
  bottom: calc(100% + 1px);
  left: -1px;
  border: 1px solid #000;
  border-top: 0;
  background-color: #fff;
  z-index: 1;
  display: none;
  padding: 10px 0;
  box-shadow: 0 1px 5px 0 rgba(0, 0, 0, .3);
}

.select-option-wrap {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}

.select-option .option-item {
  margin-bottom: 10px;
  position: relative;
  padding: 5px max(10px, 20* var(--px)) max(30px, 45* var(--px));
  width: 100%;
  box-sizing: border-box;
  cursor: pointer;
  font-size: 14px;
  text-align: left;
}

.select-option .option-item:hover {
  color: var(--theme-color);
}

.select-option .option-item::after {
  content: '';
  width: max(10px, 15* var(--px));
  height: max(10px, 15* var(--px));
  position: absolute;
  top: 0.6em;
  left: max(10px, 20* var(--px));
  /* transform: translateY(-50%); */
  border-radius: 50%;
  border: 1px solid #ccc;
}

.select-option .option-item.active {
  color: var(--theme-color);
}

.select-option .option-item.active::after {
  border-color: var(--theme-color);
  background-color: var(--theme-color);
}

.select-option .option-item.custom {
  display: flex;
  align-items: center;
}

.select-option .option-item.custom span {
  flex-shrink: 0;
}

.select-option .option-item.custom:hover input {
  border-color: var(--theme-color);
}

.select-option .option-item input.custom-input {
  border: 0;
  border-bottom: 1px solid #ccc;
  padding: 0;
  margin-left: 5px;
  flex: 1;
}

.form .item[data-field-type="profession"] .select-option {
  flex-wrap: wrap;
}

.form .item[data-field-type="profession"] .option-item {
  width: 50%;
  flex: 0 0 auto;
}

.form .item .option-item.custom {
  width: 100%;
}

.select-wrap::after {
  content: '';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background: url(../../images/bottom.png) no-repeat;
}

.site-header {
  height: 84px;
  position: fixed;
  z-index: 10900;
  color: #000;
}

.top-nav {
  width: 100%;
  height: 84px;
  background-color: #ffffff;
  position: fixed;
  font-size: 18px;
  z-index: 910;
}

.top-nav .wrapper {
  /*
  1380 at 1920
  900 at 960
  */
  width: calc(50vw + 420px);
  padding-left: 0;
  padding-right: 0;
  display: flex;
  height: 100%;
  align-items: stretch;
  margin-left: auto;
  margin-right: auto;
}

.top-nav .left {
  flex: 0 0 auto;
  width: 200px;
  padding-left: 15px;
  display: flex;
  align-items: center;
  text-decoration: none;
}

.top-nav .left img {
  display: block;
  width: 84px;
  height: auto;
}

.top-nav .left .splitter {
  width: 1px;
  height: 50px;
  margin-left: 16px;
  margin-right: 16px;
  background-color: #e1e1e1;
}

.top-nav .left .country {
  font-family: 'Arial', sans-serif;
  font-size: 14px;
  color: #000;
  font-weight: bold;
}

.form-content {
  /* padding-right: 70px; */
  padding-bottom: calc(300 * var(--px));
  height: 100vh;
  margin-top: max(30px, 5%);
  /* overflow-y: auto; */
}

.form-content::-webkit-scrollbar-button {
  display: none;
}

.form-content::-webkit-scrollbar {
  width: 2px;
  background-color: rgba(255, 255, 255, .5);
}

.form-content::-webkit-scrollbar-thumb {
  background-color: var(--io-theme-color);
}

.question {
  /* background: url(../../images/mx/form-item-bg.png) no-repeat; */
  background-size: cover;
  background-position: left top;
  padding-top: 10px;
  font-size: 18px;
  position: relative;
  border-top: 1px solid rgba(0, 0, 0, .1);
  margin-bottom: 10px;
}

.question-no {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(50.00% 50.00% at 50% 50%, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0) 100%), rgba(255, 255, 255, 0.2);
  font-size: 12px;
  margin-right: 13px;
  font-weight: normal;
  flex-shrink: 0;
  position: absolute;
  left: 20px;
  top: 5px;
  transform: translateY(25%);
}

.question-text-inner {
  text-align: left;
  /* width: 500px; */
  font-size: 14px;
  padding-right: 20px;
}

.option-list {
  /* margin-top: 20px; */
  display: flex;
  align-items: center;
  /* height: 40px; */
}

.question-option {
  line-height: calc(24rem / 16);
  padding-left: calc(25rem / 18);
  position: relative;
  cursor: pointer;
  /* margin-bottom: calc(12rem / 16); */
  text-align: left;
  margin-right: 10px;
  font-size: 12px;
}

.question-option::before {
  content: "";
  width: calc(20rem / 20);
  height: calc(20rem / 20);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  border-radius: 50%;
  background: #d9d9d9;
  border: 1px solid #32638f;
  font-size: 14px;
}

.question-option.active::before {
  background: var(--io-theme-color);
  border-color: transparent;
  background: url(../../images/page/icon2.svg) no-repeat center / contain;
}

.info-form {
  --column: 2;
  /* margin-top: 30px; */
  padding-top: 10px;
  /* --gap: 20px; */
  border-top: 1px solid rgba(0, 0, 0, .1);
  margin-bottom: 10px;
}

.info-form .info-field {
  width: calc((100% - (var(--column) - 1) * var(--gap)) / var(--column));
  position: relative;
}

.field-text {
  font-size: max(14px, 16 * var(--px));
  /* margin-bottom: 10px; */
  text-align: left;
}

.info-form .field-input {
  width: 100%;
  height: 30px;
  padding: 0 20px;
  box-sizing: border-box;
  outline: unset;
  resize: unset;
  border: 1px solid #dce4ec;
  background-color: #fff;
  border-radius: 30px;
  color: #000;
  font-size: 14px;
}

.form-content .button {
  width: 15%;
  padding: 5px;
  background-color: var(--io-theme-color);
  background-image: linear-gradient(90.00deg, rgba(0, 72, 120, 1), rgba(0, 72, 120, 0) 100%);
  border-radius: 300px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: .3s;
}

.form-content .button span {
  padding-left: 25%;
  font-weight: bold;
  color: #fff;
  font-size: var(--font-size-18);
  letter-spacing: 2px;
}

.form-content .button .icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.form-content .button:hover {
  box-shadow: 0 4px 8px 0px rgba(0, 0, 0, .5);
}

.agreement {
  width: 100%;
  margin: calc(5rem / 16) 0 calc(10rem / 16);
  font-size: calc(14rem / 16);
  position: relative;
  padding-left: calc(28rem / 16);
  cursor: pointer;
  text-align: left;
}

.agreement::before {
  content: "";
  width: calc(18rem / 16);
  height: calc(18rem / 16);
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  border-radius: 50%;
  background: center / calc(8rem / 16) auto #cecece no-repeat;
}

.agreement.agreed::before {
  background-color: var(--io-theme-color);
  background: url(../../images/page/icon2.svg) no-repeat center / contain;
}

.form-content input {
  outline: unset;
  border: 1px solid #dce4ec;
  background-color: #fff;
  width: calc(200 * var(--px));
  height: 25px;
  padding: 0 20px;
  border-radius: 30px;
  /* margin-left: 20px; */
  color: #000;
}

.form-content select {
  appearance: none;
  -webkit-appearance: none;
}

.info-form .field-input option {
  display: block;
  border: none;
  line-height: calc(34rem / 16);
  padding-top: calc(10rem / 16);
  padding-bottom: calc(10rem / 16);
  border-top: 1px solid rgba(0, 0, 0, .1);
  font-weight: bold;
  width: 100%;
  outline: none;
  padding-left: 0;
  height: calc(54rem / 16 + 1px);
  background-color: transparent;
  color: #000;
}

.agreement a {
  color: var(--io-theme-color);
}

.agreement a:hover {
  text-decoration: underline;
}

.info-form input {
  margin-left: 0;
}


.yisiTip,
.siteTip {
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, .5);
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 400;
  color: #000;
}

.yisiCon,
.siteCon {
  width: 90vw;
  height: 40vw;
  background-color: white;
  position: relative;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  box-shadow: 0px -10px 0px 0px #ff0000;
}

.yisiCancel,
.siteCancel {
  position: absolute;
  /* width: 30px;
    height: 30px; */
  /* background-color: pink; */
  width: 2.6vw;
  height: 2.6vw;
  right: 2%;
  top: 4%;
  background: url(../../images/close_red.svg) center/contain no-repeat;
  cursor: pointer;
}

.yinsiTxtCon {
  width: 80%;
  height: 70%;
  overflow: scroll;
  overflow-x: hidden;
  /* background-color: plum; */
}

.queding {
  cursor: pointer;
  display: inline-block;
  width: 8.3vw;
  height: auto;
  background: #e70012;
  border-radius: 20px;
  font-size: 0.72vw;
  color: #fff;
  line-height: 40px;
  /* cursor: pointer; */
  /* vertical-align: middle; */
  /* margin-left: 10px; */
  text-align: center;
}

/* .hideForm{
  display: none;
} */
.yinsiTxtCon p {
  /* font-size: 5vw; */
  font-size: 1vw;
  line-height: 1.5vw;
}

.warningBorder {
  /* border-bottom: 3px solid yellow !important; */
  border: 1px solid red !important;
  border-radius: 10px;
}

.selectColor {
  color: #898888;
}

.privacyBorder {
  border: 1px solid red !important;
}

.content p {
  line-height: 1.475em;
  margin-top: 0;
  margin-bottom: 0;
}

.content h3 {
  font-size: calc(1em + 1px);
  margin-top: 12px;
  margin-bottom: 6px;
  font-weight: bold;
}

.term-dialog .content {
  width: 100%;
  height: 300px;
  overflow-y: scroll;
  margin: 25px 0 30px;
  line-height: 25px;
}

.form-content i {
  color: #d61516;
  line-height: calc(24rem / 16);
  font-style: normal;
  padding-left: 5px;
}

.site-footer a {
  color: rgba(0, 0, 0, .7);
  text-decoration: none;
}

.site-footer a:hover {
  color: rgba(0, 0, 0, 1);
}

#section-footer {
  height: auto !important;
}

.agree-alert {
  color: #d61515;
  display: block;
}

.section1 {
  background-position: 100% 84px;
}

.section1 .sec-cont {
  gap: 0;
}

.section1 .sec-cont-lr .sec-txt {
  height: 100%;
  z-index: 1;
}

.download-btn {
  width: calc(600 * var(--px));
  position: absolute;
  bottom: max(20px, 10%);
  left: 0;
  z-index: 99;
  cursor: pointer;
}

.sec-cont-tb .page-container {
  padding: 0 max(30px, 8%);
}

.section3 .sec-txt {
  height: 100%;
}

.up-cont {
  gap: 20px;
  margin-top: max(10px, 30 * var(--px));
}

.up-txt {
  border-radius: 300px;
  font-size: max(34px, 68 * var(--px));
  color: var(--io-theme-color);
  line-height: 1;
  overflow: hidden;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2px;
  background-color: rgba(255, 0, 0, .3);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, .2);
}

.up-txt-wrap {
  padding: 10px max(20px, 5%);
  width: 100%;
  height: 100%;
  background-color: #fff;
  position: relative;
  z-index: 1;
  border-radius: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.up-txt-wrap span {
  font-size: .6em;
}

.up-txt::before {
  content: "";
  position: absolute;
  width: 112%;
  height: 62%;
  background: rgb(255, 255, 255);
  background: var(--io-theme-color);
  animation: rotate 5s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.up-ani {
  width: 22px;
  height: 33px;
  position: relative;
  overflow: hidden;
}

.up-ani i {
  width: 22px;
  height: 11px;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  background: url(../../images/page/arrow-top.svg) 50% / contain no-repeat;
  animation: scrollHintAngleMove 4.5s linear infinite;
  opacity: 0;
  z-index: 1;
}

.up-ani i:nth-of-type(2) {
  animation-delay: 1.5s
}

.up-ani i:nth-of-type(3) {
  animation-delay: 3s
}

@keyframes scrollHintAngleMove {
  0% {
    opacity: 0;
    transform: translateY(11px) scale(.8)
  }

  33% {
    opacity: 1;
    transform: translateY(5px) scale(1)
  }

  67% {
    opacity: 1;
    transform: translateY(-5px) scale(1)
  }

  to {
    opacity: 0;
    transform: translateY(-11px) scale(.8)
  }
}

.section4 .product-img {
  position: relative;
  z-index: 1;
  display: block;
}

.section4 .ani-svg {
  width: 43.8%;
  position: absolute;
  top: 50.4%;
  left: 50%;
  transform: translate(-43%, -52.5%);
}

.img-intro {
  border-top: 1px solid rgba(0, 0, 0, .2);
  text-align: center;
  font-size: max(22px, 32 * var(--px));
  color: var(--io-theme-color);
  font-weight: bold;
}

.img-intro span {
  padding: max(20px, 2%) 0;
  border-top: 1px solid var(--io-theme-color);
  display: inline-block;
  margin-top: -1px;
}

.custom-swiper .swiper-wrapper {
  gap: max(30px, 5%);
}

.sec-cont .mx-container {
  flex: 1;
  text-align: center;
}

.section-mx-6 .sec-txt .title-thin {
  text-align: left;
}

.section-mx-6 .main {
  margin-left: 0;
}

.section1 .page-container {
  padding: 5%;
}

.line-ani-wrap {
  position: absolute;
  top: 0;
  left: 7%;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.line-ani-wrap svg {
  width: 100%;
  height: 100%;
}

.color-w .sec-txt .title,
.color-w .sec-txt .title-thin,
.color-w .sec-txt .intro,
.color-w .sec-txt .intro-thin {
  color: #fff;
}

.video-btn {
  position: absolute;
  right: var(--main-margin);
  bottom: max(20px, 10%);
  border-radius: 20px;
  width: max(220px, 320 * var(--px));
  z-index: 10;
  overflow: hidden;
  cursor: pointer;
}

.video-hover:hover .icon-lay {
  transform: translate(-50%, -50%) scale(1.1);
  background-color: var(--io-theme-color);
}

.video-hover:hover .icon-lay img {
  filter: url(#white-overlay);
}

.icon-lay {
  width: max(40px, 60 * var(--px));
  aspect-ratio: 1;
  background-color: #fff;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: .3s;
  cursor: pointer;
}

.icon-lay img {
  margin-left: 5px;
}

.section2 {
  background-position: right;
}

.section2 .sec-area {
  font-size: var(--font-size-24);
  color: #5F85AD;
}

.section2 .sec-area p {
  gap: 5px;
  align-items: flex-start;
  margin-top: var(--px-10-20);
  line-height: 1.5;
}

.section2 .sec-txt {
  gap: var(--px-10-20);
}

.section2 .slogan {
  background: linear-gradient(to right, #00A1C9, #004878, #00A1C9);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.change-btn {
  width: calc(550 * var(--px));
  position: absolute;
  top: 48.5%;
  left: 0;
  cursor: pointer;
  z-index: 10;
}

.change-btn img {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.change-btn img.active {
  opacity: 1;
}

.section3 .page-container img {
  position: absolute;
  top: 50%;
  left: 0;
  opacity: 0;
  transform: translateY(-50%);
}

.section3 .page-container img.active {
  opacity: 1;
  position: initial;
  transform: unset;
}

.section4 .sec-cont {
  gap: 0;
}

.section4 .sec-cont .page-container {
  flex: unset;
  position: relative;
}

.section4 .sec-cont .sec-txt {
  text-align: left;
}

.section4 .info-wrap {
  position: absolute;
  top: 0;
  left: 50%;
  width: calc(100% - max(30px, 8%) * 2);
  height: 100%;
  transform: translateX(-50%);
  z-index: 1;
}

.section4 .info-wrap img {
  position: absolute;
  opacity: 1;
  z-index: 10;
}

.section4 .info-wrap img:nth-child(1) {
  top: -23%;
  left: 40%;
}

.section4 .info-wrap img:nth-child(2) {
  top: -23%;
  left: 67%;
}

.section4 .info-wrap img:nth-child(3) {
  bottom: -20%;
  left: 28%;
}

.section4 .info-wrap img:nth-child(4) {
  bottom: -20%;
  left: 52%;
}

.section6 .sec-cont {
  gap: max(30px, 5%);
}

.section-mx-6 .sec-txt {
  width: 40%;
}

.section6 .sec-cont .page-container {
  flex: unset;
}

.section6 .page-container .img-area {
  width: calc(660 / var(--px));
  aspect-ratio: 16 / 9;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, .5);
  padding: 10px;
  box-shadow: 0px 30px 60px 0px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, .3);
  cursor: pointer;
}

.section6 .page-container .img {
  border-radius: 10px;
}

.section6 .icon-lay {
  width: max(50px, 80 * var(--px));
}

.section7 .sec-cont {
  gap: 0;
}

.section7 .line-ani-wrap {
  width: 60%;
  right: 0;
  left: unset;
}

.section7 .sec-area {
  width: 80%;
  padding-top: max(30px, 10%);
  --w: max(120px, 180 / var(--px));
  --gap: max(10px, 30 / var(--px));
}

.section7 .sec-area .top {
  padding-left: calc(var(--w) + var(--gap));
}

.section7 .sec-area .top.active {
  padding-left: var(--w);
}

.section7 .sec-area .bottom {
  gap: var(--gap);
  margin-top: var(--gap);
}

.section7 .sec-area .bottom.active .item:first-child {
  transform: translateY(calc(-100% - var(--gap)));
}

.section7 .item-wrap {
  position: relative;
  width: var(--w);
  aspect-ratio: 280 / 151;
  cursor: pointer;
}

.section7 .item-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .5);
  border-radius: 7px;
}

.section7 .item .font {
  position: absolute;
  top: 0;
  left: 0;
  color: #fff;
  width: 100%;
  height: 100%;
  font-size: max(12px, 18 / var(--px));
  font-weight: bold;
}

.section7 .item .expand-wrap .pic {
  position: relative;
  z-index: 1;
}

.section7 .item .expand-wrap .txt {
  flex: 1;
  --y: max(10px, 30 / var(--px));
  background-color: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 20px;
  padding: var(--y);
  padding-top: calc(var(--y) * 2);
  margin-top: calc(var(--y) * -1);
  backdrop-filter: blur(30px);
  color: #fff;
}

.section7 .item .expand-wrap .txt .title {
  font-size: max(14px, 18 / var(--px));
  font-weight: bold;
}

.section7 .item .expand-wrap .txt .intro {
  font-size: max(12px, 16 / var(--px));
  margin-top: var(--px-10-20);
}

.section7 .item.active .item-wrap {
  display: none;
}

.section7 .item .expand-wrap {
  height: 100%;
  /* display: none; */
  /* width: calc(var(--w) * 2); */
}

.section7 .item.active .expand-wrap {
  display: block;
}

.section5 .page-container {
  padding: max(30px, 3%) 0;
}

.section5 .page-container picture {
  width: 100%;
  height: 100%;
}

.video-play {
  display: none;
  margin-top: var(--px-20-40);
}

.video-play .icon-lay {
  position: initial;
  transform: unset;
}

.page-container.mo {
  display: none;
}

.section7 .card-wrap {
  --gap: 5%;
}

@media (max-width: 1680px) {

  .question {
    padding-top: 5px;
    margin-bottom: 5px
  }

  .info-form .field-input {
    height: 28px;
  }

  .section6 .page-container .img-area {
    width: calc(460 / var(--px));
  }

  .section-mx-6 .sec-txt {
    width: 23%;
  }

  .change-btn {
    top: 62%;
  }

  .sec-txt .title {
    font-size: max(20px, 38 * var(--px));
  }

  .sec-txt .title-thin {
    font-size: max(18px, 28 * var(--px));
  }

  .sec-txt .intro {
    font-size: max(16px, 22 * var(--px));
  }

  .sec-txt .intro-thin {
    font-size: max(14px, 20 * var(--px));
    line-height: 1.5;
  }

  .section2 .sec-area {
    font-size: 16px;
  }

  .section2 .sec-box2 {
    width: 68%;
  }

  .section4 .sec-cont .page-container {
    padding: 0 24% 0 7%;
  }

  .section4 .sec-cont .page-container.pc {
    margin-top: -3%;
  }

  .section4 .info-wrap {
    width: calc(100% - 20%);
  }

  .section4 .info-wrap img:nth-child(1) {
    top: -28%;
    left: 25%
  }

  .section4 .info-wrap img:nth-child(2) {
    top: -33%;
    left: 51%;
  }

  .section4 .info-wrap img:nth-child(3) {
    bottom: -29%;
    left: 14%;
  }

  .section4 .info-wrap img:nth-child(4) {
    bottom: -31%;
    left: 40%;
  }

  .section4 .info-wrap img {
    transform: scale(.6);
  }

  .form-content {
    margin-top: var(--px-10-20);
  }

  .mx-container .sec-txt {
    padding-top: 0;
  }
}

@media (max-width: 780px) {
  .section6 .page-container .img-area {
    width: 90%;
    margin: 0 auto;
  }

  .section7 .page-container {
    margin-top: 25%;
  }

  .section7 .swiper {
    padding-bottom: 20%;
  }

  .swiper-pagination-bullet {
    background-color: rgba(255, 255, 255, .3);
    opacity: 1;
  }


  .swiper-pagination-bullet-active {
    width: 40px;
    background-color: #fff;
    border-radius: 300px;
  }

  .section7 .item {
    width: 70% !important;
    height: auto;
  }

  .section7 .item .expand-wrap .txt {
    --y: 30px;
  }

  .section7 .line-ani-wrap {
    width: 100%;
    top: -28%;
  }

  .section1 .download-btn {
    bottom: 0;
    width: 100%;
  }

  .section1 .download-btn img {
    display: block;
  }

  .video-btn {
    display: none;
  }

  .video-play {
    display: block;
  }

  .section1 {
    background-image: url(../../images/page/banner-bg-mo.jpg) !important;
    padding-top: 84px;
  }

  .section2 {
    background-image: url(../../images/page/sec-bg1-mo.jpg) !important;
  }

  .section3 {
    background-image: url(../../images/page/sec-bg2-mo.jpg) !important;
    background-size: contain;
    background-position: top;
  }

  .section4 {
    background-image: url(../../images/page/sec-bg3-mo.jpg) !important;
  }

  .section5 {
    background-image: url(../../images/page/sec-bg4-mo.jpg) !important;
  }

  .section6 {
    background-image: url(../../images/page/sec-bg6-mo.jpg) !important;
  }

  .section7 {
    background-image: url(../../images/page/sec-bg7_1-mo.jpg) !important;
  }

  .section8 {
    background-image: url(../../images/page/sec-bg8-mo.jpg) !important;
  }

  .section5 {
    height: auto;
  }

  .section1 .page-container {
    margin-top: -10%;
  }

  .section1 .sec-box {
    width: 70%;
  }

  .section1 .title-sup {
    width: 80%;
  }

  .section6 .page-container .img {
    width: 100%;
  }

  .section6 .sec-txt {
    gap: 30px;
  }

  .section4 .sec-cont .page-container {
    padding: 0 5%;
  }

  .change-btn {
    width: 325px;
    top: 20%;
  }

  .section3 .page-container {
    margin-top: 65%;
  }

  .page-container.mo {
    display: block;
  }

  .page-container.pc {
    display: none;
  }

  .sec-cont-tb .page-container {
    padding: 0;
  }

  .down-btn a {
    display: flex;
    justify-content: center;
  }

  .section-mx-6 .main {
    margin-left: 20px;
  }

  .section6 .sec-cont {
    padding-top: 5vh;
  }

  .acc {
    margin-top: 30px;
  }

  .top-nav {
    position: relative;
  }

  .intv {
    font-size: 20px !important;
    margin-bottom: 10px;
  }

  .sec-cont-lr .sec-txt {
    width: 100%;
    gap: max(10px, 10%);
  }

  .section1 .sec-cont-lr .sec-txt {
    width: 100%;
    height: auto;
    gap: 10px;
  }

  .bg2 {
    display: none;
  }

  .bg1 {
    display: block;
    position: relative;
    z-index: 3333;
    height: 38vh;
  }

  .bg1 .xiao-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 38vh;
  }

  .yu-img>div:nth-child(2) {
    height: 60%;
  }

  .yu-img>div:last-child {
    text-align: left;
    margin-left: 10px;
  }

  .sec-txt .title {
    white-space: wrap;
  }

  .ju-img>img {
    width: 100%;
    top: 60%;
    left: 3%;
  }

  .custom-modal {
    display: none;
    position: fixed;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
    width: 90%;
    height: 300px;
  }

  #modal-container {
    position: fixed;
    z-index: 9998;
    /* 低于遮罩层 */
    width: 0;
    height: 0;
  }


  .s-zhe.active~#modal-container .custom-modal[data-modal] {
    display: block;
    /* 激活状态显示 */
  }

  /* 默认隐藏状态 */
  .s-zhe {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
  }

  /* 显示时的活动状态 */
  .s-zhe.active {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .modal-content {
    background: white;
    /* padding: 20px; */
    border-radius: 8px;
    position: relative;
    z-index: 7777;
    top: 100px;
    animation: modalIn 0.3s ease-out;
  }

  .close-btn img {
    width: 35px;
    height: 35px;
  }

  .modal-content h3 {
    font-size: 24px;
    font-weight: bold;
    background: linear-gradient(90deg, #f00, black);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    padding: 20px 10px 20px 20px;
  }

  .modal-content p {
    font-size: 16px;
    line-height: 1.5;
    background-color: #E6EBF4;
    padding-bottom: 30px;
    padding: 20px;
    height: 225px;
  }

  @keyframes modalIn {
    from {
      transform: scale(0.9);
      opacity: 0;
    }

    to {
      transform: scale(1);
      opacity: 1;
    }
  }

  .close-btn {
    position: absolute;
    right: 45%;
    bottom: -25px;
    font-size: 24px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .close-btn:hover {
    color: #666;
  }

  .yu-img {
    background: linear-gradient(150deg, #f00 8%, #fff 50%, #fff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    border: 1px solid white;
    border-radius: 20px;
    width: 30%;
    z-index: 4444;
    padding: 10px 0px;
    pointer-events: auto;
    font-size: 12px;
  }

  .yu-img>div:first-child {
    text-align: left;
    margin-left: 10px;
  }

  .yu-da {
    display: flex;
    justify-content: space-around;
  }

  .yu-img>div:first-child img {
    width: 10px !important;
    height: 10px !important;
  }

  .yu-img>div:last-child img {
    width: 15px !important;
    height: 15px !important;
  }

  .sec-txt .intro {
    line-height: normal;
  }

  .ju-txt>div {
    width: 33%;
  }

  .ju-txt {
    position: absolute;
    top: 70%;
    left: 5%;
    margin-left: 0px;
    margin-top: 0 !important;
    font-size: 12px;
    display: flex;
    justify-content: space-around;
  }

  .inta {
    color: black !important;
  }

  .ju-zhong {
    /* margin-left: 30px; */
    margin-top: 40px;
    width: 200px;
    /* margin-right: 40px; */
  }

  .ju-txt>div:first-child {
    /* width: 160px; */
  }

  .option-list {
    height: auto;
    display: block;
  }

  .question-option {
    padding-left: calc(24rem / 18);
  }

  .form-content .button {
    width: 60%;
  }

  .page-container {
    width: 100%;
  }

  .form-content {
    width: 100%;
  }

  .question-list {
    width: 100%;
  }

  #menu {
    display: none;
  }

  .section {
    height: 100vh;
  }

  .section3,
  .section4,
  .section-mx-6 {
    height: auto;
  }

  .flash-btn-1 {
    display: none;
  }

  .video-cont .video-wrap {
    width: calc(100% - 20px);
  }

  .card-wrap {
    --column: 1;
  }

  .sec-cont {
    flex-direction: column;
    padding-bottom: max(30px, 6%);
    gap: 0;
    padding: 4vh 0;
  }

  .page-container {
    margin: 15% 0 30px;
  }

  .sec-cont-lr .sec-txt {
    height: auto;
  }

  .form-content {
    margin-top: 20px;
    height: auto;
    overflow-y: unset;
    padding-right: 0;
  }

  .form-content input {
    width: 130px;
  }

  .site-footer {
    padding-bottom: 50px;
  }

  .yisiCon,
  .siteCon {
    height: 125vw;
  }

  .yinsiTxtCon p {
    line-height: 6vw;
  }

  .queding {
    width: 50vw;
    font-size: 3vw;
  }

  .flash-btn {
    width: 30%;
    height: 30%;
  }

  .flash-btn-2 {
    top: 68.5vh;
    left: 21%;
  }

  .down-btn {
    margin-bottom: 30px;
  }
}

@media (max-width: 580px) {

  br.pc {
    display: none;
  }

  .main {
    margin: 0 20px;
  }

  .up-img {
    width: 50%;
  }
}

@media (min-width: 780px) {
  html {
    overflow: hidden !important;
  }

  html.rollable {
    overflow: auto !important;
  }

}

@media (min-resolution: 150dpi) {
  .v-did .tou {
    font-size: 16px !important;
    width: 60% !important;
  }

  .v-did .bor {
    width: 60% !important;
  }

  .v-did .biao {
    font-size: 14px !important;
  }

  .v-did .bor div:first-child {
    width: auto !important;
    font-size: 12px !important;
  }

  .v-did .biao div:last-child {
    padding-right: 10px;
  }

  .ju-txt {
    margin-top: 23%;
  }

  .question {
    padding: 2px;
    margin-bottom: 5px;
  }
}

@media (min-width: 1640px) {
  .ju-txt {
    position: absolute;
    top: 13% !important;
    margin-left: 30px;
  }

  .ju-txt>div {
    width: 310px;
  }

  .section-mx-6 .sec-cont {
    gap: max(30px, 10%);
  }

  .i-a img {
    width: 500px;
  }

  .option-list {
    height: 50px;
  }

  .form-content .button span {
    padding-left: 16%;
  }

}

@media (min-width: 768px) and (max-width: 1024px) {
  .section-mx-6 .sec-cont {
    gap: max(10px, 0%);
  }
}

@media (min-width: 1500px) and (max-width: 1600px) {
  .ju-txt {
    margin-top: 33%;
  }
}