/* 清除默认样式 */
input,
button,
select,
textarea {
  outline: none;
  -webkit-appearance: none;
  border-radius: 0;
  border: 0;
}

textarea {
  resize: none;
}

input:-webkit-autofill {
  -webkit-box-shadow: inset 0 0 0 1000px #fff;
  box-shadow: inset 0 0 0 1000px #fff;
  background-color: transparent;
}

::-webkit-input-placeholder {
  /* WebKit, Blink, Edge */
  color: #a0a0a0;
}

:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #a0a0a0;
}

::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #a0a0a0;
}

:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #a0a0a0;
}

/* color */
.color-fff {
  color: #fff;
}
.color-baby-blue {
  color: #d3e7ff;
}
.color-gary-400 {
  color: #9ca3af;
}
.color-gary-500 {
  color: #6b7280;
}
.color-gary-900 {
  color: #111928;
}
.color-teal-mian {
  color: #2aae99;
}
.color-teal-sub {
  color: #4dcab6;
}

.font-weight-800 {
  font-weight: 800;
}
.font-weight-700 {
  font-weight: 700;
}
.font-weight-600 {
  font-weight: 600;
  cursor: pointer;
}
.font-weight-500 {
  font-weight: 500;
}
.font-weight-400 {
  font-weight: 400;
}
.line-height-150 {
  line-height: 150%;
}

.text-align-left {
  text-align: left;
}
.text-align-center {
  text-align: center;
}
.position-relative {
  position: relative;
  z-index: 3;
}
.overflow-hidden {
  overflow: hidden;
}

a:hover {
  text-decoration: none;
}
.cursor-pointer {
  cursor: pointer;
}
.transition-ease-03 {
  transition: transform 0.3s ease;
}
.transition-ease-03-bgcolor {
  transition: background-color 0.3s ease;
}
.transition-ease-03-color {
  transition: color 0.3s ease;
}
.transition-ease-03-bordercolor {
  transition: border-color 0.3s ease;
}
.dropdown-menu {
  min-width: 8rem;
}

/* 默认字号、行距、字距、字重、margin */
html,
body {
  /* line-height: 1.2; */
  font-family: "Noto Sans";
}

.content {
  margin: 169px auto 100px;
  width: 1350px;
}

.title {
  font-size: 48px;
  font-weight: bold;
}

.s-title {
  font-size: 40px;
  font-weight: bold;
}

.f-title {
  font-size: 36px;
  font-weight: bold;
}

.t-title {
  font-size: 20px;
  font-weight: bold;
}

.text {
  font-size: 20px;
  font-weight: 500;
  color: #333;
  margin-top: 20px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  margin-top: 25px;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  background-color: #2aae99;
  border-radius: 12px;
  cursor: pointer;
  /* width: 292px; */
  width: 240px;
}
.button-common {
  width: fit-content;
  padding: 0 10px;
}

.button-size-20 {
  font-size: 20px !important;
}

.button:hover {
  filter: grayscale(10%) !important;
}

.button span {
  vertical-align: middle;
}

.button img {
  width: 14px;
  height: 14px;
}

.button:hover {
  opacity: 0.85;
  color: #fff;
  text-decoration: none;
}

.line {
  width: 100%;
  height: 2px;
  margin-top: 20px;
  margin-bottom: 30px;
  background-color: #2aae99;
}

/* font-size */
.header-1 {
  font-size: 56px;
  /* line-height: 60px; */
  line-height: 70px;
}
.header-2 {
  font-size: 32px;
  line-height: 40px;
}
.header-3 {
  font-size: 24px;
  line-height: 32px;
}
.header-4 {
  font-size: 20px;
  line-height: auto;
}
.body-1 {
  font-size: 18px;
  line-height: 26px;
}
.body-2 {
  font-size: 16px;
  line-height: 24px;
}
.body-3 {
  font-size: 14px;
  line-height: 22px;
}
.button-1 {
  font-size: 20px;
  line-height: 20px;
}
/* letter-space */
.letter-space-normal {
  letter-spacing: 0;
}
.letter-space-medium {
  letter-spacing: 2px;
}
.padding-40-left-right {
  padding: 0 40px;
}

.box {
  padding: 150px 0;
}

.box-1 {
  padding: 64px 0;
}
/* Large devices (desktops, less than 1450px) */
@media (max-width: 1449.98px) {
  .content {
    width: 92%;
  }
  .box {
    padding: 120px 40px;
  }
}

/* Large devices (desktops, less than 1200px) */
@media (max-width: 1199.98px) {
  .content {
    margin-top: 140px;
    margin-bottom: 90px;
  }
  .content-cont {
    margin-top: 140px;
    margin-bottom: 90px;
  }

  .title {
    font-size: 44px;
  }
}

/* Medium devices (tablets, less than 992px) */
@media (max-width: 991.98px) {
  .box {
    padding: 80px 40px;
  }

  .title {
    font-size: 40px;
  }

  .s-title {
    font-size: 38px;
  }

  .header-1 {
    font-size: 52px;
    line-height: 56px;
  }
  .header-2 {
    font-size: 28px;
    line-height: 36px;
  }
  .header-3 {
    font-size: 20px;
    line-height: 28px;
  }
  .header-4 {
    font-size: 18px;
    line-height: 26px;
  }
  .body-1 {
    font-size: 16px;
    line-height: 24px;
  }
  .body-2 {
    font-size: 14px;
    line-height: 22px;
  }
  .body-3 {
    font-size: 12px;
    line-height: 20px;
  }
  .button-1 {
    font-size: 14px;
    line-height: 20px;
  }

  /* .button {
    width: 180px;
  } */
}

/* Small devices (landscape phones, less than 768px) */
@media (max-width: 767.98px) {
  .header-1 {
    font-size: 36px;
    /* line-height: 60px; */
    line-height: 48px;
  }
  .header-3 {
    font-size: 16px;
    /* line-height: 60px; */
    line-height: 28px;
  }

  .content {
    margin-top: 130px;
    margin-bottom: 80px;
  }

  .title {
    font-size: 36px;
  }

  .s-title {
    font-size: 34px;
  }

  .text {
    font-size: 18px;
  }

  .button {
    width: 180px;
    height: 36px;
    line-height: 36px;
    font-size: 16px;
  }
}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
  .title {
    font-size: 32px;
  }
}

/* Extra small devices (portrait phones, less than 376px) */
@media (max-width: 375.98px) {
  .content {
    margin-top: 110px;
    margin-bottom: 00px;
    /* text-align: center; */
  }
  .content .custom-search .input-col .body-3 {
    text-align: left !important;
  }

  .title {
    font-size: 26px;
  }

  .s-title {
    font-size: 24px;
  }

  .t-title {
    font-size: 18px;
  }

  .text {
    font-size: 15px;
    font-weight: 400;
    margin-top: 10px;
  }

  .button {
    height: 32px;
    line-height: 32px;
    margin-top: 20px;
    padding: 0 20px;
    font-size: 14px;
    font-weight: 400;
  }

  .line {
    margin-top: 30px;
  }
}

/* category */
.skip-box {
  margin: 0 auto 40px;
  cursor: pointer;
}

.skip-box .skip-bar {
  margin-bottom: 18px;
}

.skip-box .skip-link {
  padding-left: 15px;
  font-weight: bold;
  color: #2aae99;
}

.skip-box .iconfont {
  font-size: 18px;
  color: #2aae99;
  font-weight: bold;
}

.skip-box .skip-list {
  display: none;
}

.skip-box .skip-list ul {
  border-top: 1px solid #d1d1d1;
}

.skip-box .skip-list li {
  border-bottom: 1px solid #d1d1d1;
  text-align: left;
}

.skip-box .skip-list li .skip {
  display: block;
  padding: 16px 0;
  color: #777;
}

.skip-box .skip-list li .skip.active {
  color: #2aae99;
  font-weight: 500;
}

@media (max-width: 375.98px) {
  .skip-box {
    margin-bottom: 30px;
    font-size: 15px;
  }

  .skip-box .t-title {
    font-size: 15px;
  }
}

#preloader.lucency-color,
.preloaderBox.lucency-color {
  background-color: rgba(0, 0, 0, 0.2);
}

#preloader.lucency-color #LoadingMessage.back-color,
.preloaderBox.lucency-color #LoadingMessage.back-color {
  padding-bottom: 10px;
  background-color: #fff;
}

.bi {
  display: inline-block;
  width: 24px;
  height: 24px;
  cursor: pointer;
}

.bi:hover {
  background-color: rgba(0, 0, 0, 0.1);
}

.bi.disable {
  cursor: no-drop;
}

.bi.bi-x:before {
  content: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='22px' height='22px' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-x'> <line data-v-06d93d82='' x1='18' y1='6' x2='6' y2='18'></line> <line data-v-06d93d82='' x1='6' y1='6' x2='18' y2='18'></line> </svg>");
}

.bi.bi-tooltip {
  background: url(/img/svg/alert-circle.svg);
}

.bi.bi-toggle-off {
  width: 30px;
  height: 30px;
  background: url(/img/svg/toggle-off.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

.bi.bi-toggle-on {
  width: 30px;
  height: 30px;
  background: url(/img/svg/toggle-on.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

.bi.bi-toggle-off:hover,
.bi.bi-toggle-on {
  background-color: transparent;
}

td div .button {
  padding: 0 10px;
}

.main-bg-pricing {
  margin-top: 69px;
  padding: 69px 40px;
}
.main-bg-pricing .main-content-feature {
  margin-top: 0;
}


@media (max-width: 375.98px) {
  .main-bg-pricing {
    margin-top: 54px;
  }
}
