@charset "UTF-8";
/*Abstracts*/
@-webkit-keyframes moveUpDown {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  25% {
    -webkit-transform: translateY(-5px);
            transform: translateY(-5px);
  }
  50% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  75% {
    -webkit-transform: translateY(5px);
            transform: translateY(5px);
  }
  100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}
@keyframes moveUpDown {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  25% {
    -webkit-transform: translateY(-5px);
            transform: translateY(-5px);
  }
  50% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  75% {
    -webkit-transform: translateY(5px);
            transform: translateY(5px);
  }
  100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}
/*blue*/
/*green*/
/*red*/
/*orange*/
/*yellow*/
/*purple*/
/*grey*/
/* Striped, border */
/*Base*/
html {
  font-size: 62.5%;
}
@media all and (max-width: 992px) {
  html {
    font-size: 56.25%;
  }
}

body {
  overflow-x: hidden;
  color: #4b4b4b;
  background-color: #fff;
  width: 100%;
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
}
a:hover, a:active {
  text-decoration: underline;
  color: unset;
}

ul {
  list-style: none;
  -webkit-padding-start: 0;
          padding-inline-start: 0;
}

#scroll-top {
  bottom: 5%;
  right: 5%;
  z-index: 10;
  cursor: pointer;
  width: 48px;
}
@media all and (max-width: 576px) {
  #scroll-top {
    width: 42px;
  }
}

::-moz-selection {
  background-color: #109cac;
  color: #fff;
}

::selection {
  background-color: #109cac;
  color: #fff;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

.section-title-zh {
  font-size: 2.4rem;
  color: #606060;
}
@media all and (max-width: 576px) {
  .section-title-zh {
    font-size: 2rem;
  }
}
.section-title-en {
  font-size: 4rem;
  color: #109cac;
  font-family: "Noto Sans", sans-serif;
  line-height: 1;
}
@media all and (max-width: 576px) {
  .section-title-en {
    font-size: 2.5rem;
  }
}
.section-title-w-bar {
  font-size: 2rem;
  padding-left: 12px;
  position: relative;
}
.section-title-w-bar::before {
  content: "";
  width: 4px;
  height: 70%;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: #3b9ab8;
}

.banner-title-zh {
  font-size: 2.4rem;
  font-weight: bold;
}
@media all and (max-width: 576px) {
  .banner-title-zh {
    font-size: 16px;
    font-weight: 400;
  }
}
.banner-title-en {
  font-size: 3.3rem;
  font-weight: bold;
}
@media all and (max-width: 992px) {
  .banner-title-en {
    font-size: 3rem;
  }
}
@media all and (max-width: 576px) {
  .banner-title-en {
    font-size: 17px;
  }
}

.date-sm {
  font-size: 1.6rem;
}
@media all and (max-width: 576px) {
  .date-sm {
    font-size: 1.3rem;
  }
}
.date-lg {
  font-size: 3rem;
  line-height: 0.9;
}
@media all and (max-width: 992px) {
  .date-lg {
    -webkit-transform: translateY(1px);
            transform: translateY(1px);
  }
}
@media all and (max-width: 576px) {
  .date-lg {
    font-size: 2.6rem;
  }
}

/* Utilities =============================== */
/* Container */
.container-xl {
  max-width: 1600px;
}
@media all and (max-width: 1200px) {
  .container-xl {
    max-width: 1200px;
  }
}

/* ==Center */
.flex-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.pos-center {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.grid-center {
  width: 100%;
  height: 100%;
  display: grid;
  place-content: center;
}

/*Text*/
.text {
  /*Link*/
  /*End of Link*/
}
.text-link-primary {
  color: #109cac;
}
.text-link-primary:hover {
  color: #0c727d;
}
.text-link-blue {
  color: #3c99d6;
}
.text-link-blue:hover {
  color: #277fb8;
}
.text-link-grey {
  color: #8d8d8d;
}
.text-link-grey:hover {
  color: #747474;
}
.text-body {
  color: #4b4b4b !important;
}
.text-primary {
  color: #109cac !important;
}
.text-primary-dark {
  color: #2c8e95;
}
.text-grey-light {
  color: #aaaaaa;
}
.text-ellipsis {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.text-yellow {
  color: #fff385;
}
.text-green {
  color: #479e72;
}

/*Font Size*/
.fz-16 {
  font-size: 16px !important;
}
@media all and (max-width: 576px) {
  .fz-16 {
    font-size: 15px !important;
  }
}

/*Font Family*/
.ff-arial {
  font-family: Arial, Helvetica, sans-serif;
}

/*Line Clame*/
.line-clamp {
  -webkit-box-orient: vertical;
  overflow: hidden;
  display: -webkit-box;
}
.line-clamp-2 {
  -webkit-line-clamp: 2;
}

/* ==Bg */
.bg-orange {
  background: #f9efe0 !important;
}
.bg-blue {
  background: #e4f6fb !important;
}
.bg-primary {
  background: #109cac !important;
}
.bg-striped {
  background: #f6f6f6 !important;
}
.bg-green {
  background-color: #ddf1e5;
}
.bg-green-blue {
  background-color: #daf0f6;
}
.bg-pink {
  background-color: #f8f1ff;
}
.bg-purple {
  background-color: #b38bc1;
}
.bg-white {
  background-color: #ffffff;
}
.bg-grey {
  background-color: #e6e6e6;
}
.bg-yellow {
  background-color: #fffbe8;
}
.bg-transparent {
  background-color: transparent;
}
.bg-red {
  background-color: #f96a6a;
}

/* Title */
.title-page {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 16px;
  margin-bottom: 20px;
  color: #109cac;
  font-size: 22px;
  font-weight: bold;
}
.title-page::before {
  content: "";
  display: block;
  width: 4px;
  height: 22px;
  margin-right: 14px;
  margin-top: 2px;
  border-radius: 999rem;
  background: #109cac;
}

/* 標題 title */
.title {
  margin: 1.333rem;
}

/* 微距離 */
.mini-margin-x > * + * {
  margin-left: 8px;
}

.mini-margin-y > * + * {
  margin-top: 8px;
}

.border-primary {
  border: 1px solid #109cac;
}
.border-green {
  border: 1px solid #109cac;
}
.border-pink {
  border: 1px solid #db75a8;
}
.border-orange {
  border: 1px solid #fc7c5d;
}
.border-blue {
  border: 1px solid #3879ab;
}
.border-purple {
  border: 1px solid #b38bc1;
}
.border-sheet {
  border: 1px solid #d0d3d6;
}
.border-grey {
  border: 1px solid #b1b1b1;
}
.border-blue-green {
  border: 1px solid #92c1c7;
}
.border-transparent {
  border: 1px solid transparent;
}

/*Components*/
.breadcrumb-item + .breadcrumb-item::before {
  content: "";
}

.input-group-text {
  border: none;
}
.input-group > .form-control {
  border: none;
  font-size: 1.6rem;
}

.form-check-input {
  width: 2.4rem;
  height: 2.4rem;
}
.form-check-input:checked {
  background-color: #fff;
  border-color: rgba(0, 0, 0, 0.25);
}
.form-check-input:checked[type=radio] {
  background-image: url("../../assets/img/radio.svg");
  background-size: 12px 12px;
  background-position: center;
}

textarea.form-control {
  border: none;
  border-bottom: 1px solid #ced4da;
}

@media all and (max-width: 576px) {
  .icon-tick {
    width: 25px;
  }
}

.link {
  background-color: transparent;
  outline: none;
}
.link-viewmore {
  font-size: 1.6rem;
  border: 1px solid #109cac;
  color: #109cac;
  position: relative;
  z-index: 1;
  -webkit-transition: all linear 0.3s;
  transition: all linear 0.3s;
}
.link-viewmore:hover {
  color: #fff;
  text-decoration: none;
  -webkit-transition: all linear 0.3s;
  transition: all linear 0.3s;
}
.link-viewmore:hover::before {
  left: 0;
  width: 100%;
  -webkit-transition: all linear 0.3s;
  transition: all linear 0.3s;
}
.link-viewmore::before {
  content: "";
  width: 0%;
  height: 100%;
  position: absolute;
  background: #109cac;
  top: 0;
  right: 0;
  -webkit-transition: all linear 0.3s;
  transition: all linear 0.3s;
  z-index: -1;
}
.link-case {
  display: inline-block;
  padding: 1.5rem 5rem;
  position: relative;
  z-index: 0;
  background-image: linear-gradient(135deg, #4cc1a9 20%, #1689ae 80%);
  overflow: hidden;
  -webkit-transition: all linear 0.3s;
  transition: all linear 0.3s;
  -webkit-box-shadow: 0 2px 10px rgba(5, 80, 93, 0.6), 0px 1px 0px 1px rgba(255, 255, 255, 0.8) inset;
          box-shadow: 0 2px 10px rgba(5, 80, 93, 0.6), 0px 1px 0px 1px rgba(255, 255, 255, 0.8) inset;
}
@media all and (max-width: 576px) {
  .link-case {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}
.link-case::before, .link-case::after {
  height: 150%;
  -webkit-transform: skew(-45deg, 10deg);
          transform: skew(-45deg, 10deg);
  position: absolute;
  top: -25%;
}
.link-case::before {
  content: "";
  width: 40px;
  background-image: -webkit-gradient(linear, right top, left top, color-stop(30%, rgba(255, 255, 255, 0.2)), color-stop(70%, transparent));
  background-image: linear-gradient(-90deg, rgba(255, 255, 255, 0.2) 30%, transparent 70%);
  right: 130%;
}
.link-case::after {
  content: "";
  width: 150px;
  background-image: -webkit-gradient(linear, right top, left top, from(rgba(255, 255, 255, 0.8)), color-stop(60%, transparent), color-stop(60%, rgba(255, 255, 255, 0.4)), color-stop(80%, transparent));
  background-image: linear-gradient(-90deg, rgba(255, 255, 255, 0.8) 0%, transparent 60%, rgba(255, 255, 255, 0.4) 60%, transparent 80%);
  right: 130%;
  z-index: -1;
}
.link-case:hover {
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
}
@media all and (max-width: 576px) {
  .link-case:hover {
    -webkit-transform: scale(0.8) translateY(-4px);
            transform: scale(0.8) translateY(-4px);
  }
}
.link-case:hover::before {
  right: -60%;
  opacity: 0;
  -webkit-transition: all linear 0.6s;
  transition: all linear 0.6s;
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}
.link-case:hover::after {
  right: -80%;
  -webkit-transition: all linear 0.5s;
  transition: all linear 0.5s;
}

.overlay {
  width: 100vw;
  height: 100vh;
  z-index: 99;
  top: 0;
  left: 0;
  right: 0;
}
.overlay-item {
  width: 100vw;
  height: 100vh;
}
.overlay-item:nth-of-type(1) {
  background-image: radial-gradient(#00aa89 0%, #2d849f 80%);
  z-index: 1;
}
.overlay-item:nth-of-type(2) {
  background: #4995ac;
  z-index: 0;
}
.overlay-item:nth-of-type(3) {
  background: #8dbac8;
  z-index: -1;
}

.post-title {
  font-size: 1.75rem;
}
@media all and (max-width: 992px) {
  .post-title {
    font-size: 16px;
  }
}

.post-slick-prev, .post-slick-next {
  background-color: rgba(0, 0, 0, 0.1);
  width: 45px;
  height: 45px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  z-index: 1;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: all linear 0.3s;
  transition: all linear 0.3s;
}
@media all and (max-width: 576px) {
  .post-slick-prev, .post-slick-next {
    top: 30%;
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
}
.post-slick-prev:hover, .post-slick-next:hover {
  background-color: #aaaaaa;
}
.post-slick-prev:hover i, .post-slick-next:hover i {
  color: #fff;
}
.post-slick-prev {
  left: -45px;
}
@media screen and (max-width: 1600px) {
  .post-slick-prev {
    left: -22px;
  }
}
.post-slick-next {
  right: -45px;
}
@media screen and (max-width: 1600px) {
  .post-slick-next {
    right: -20px;
  }
}
.post-slick-slide a:hover {
  text-decoration: none;
}
.post-slick-slide a:hover .post-slick-slide-image {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.post-slick-slide-image {
  -webkit-transition: all linear 0.3s;
  transition: all linear 0.3s;
}

.order-table thead tr th {
  padding: 10px 20px;
  background-color: #ffe9be;
  color: #bb721f;
  font-weight: bold;
  font-size: 1.8rem;
}
@media all and (max-width: 992px) {
  .order-table thead tr th {
    display: none;
  }
}
@media all and (max-width: 992px) {
  .order-table tbody tr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: auto;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 1rem 2rem;
    margin-bottom: 0.3em;
  }
}
.order-table tbody tr:last-child td {
  border-bottom: none;
}
@media all and (max-width: 992px) {
  .order-table tbody tr:last-child td:last-child {
    border-bottom: none;
  }
}
.order-table tbody tr td {
  padding: 30px 20px;
  background-color: #fff;
  font-size: 1.6rem;
  border-bottom: 1px solid #dfdfdf;
}
@media all and (max-width: 992px) {
  .order-table tbody tr td {
    padding: 1rem 0;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    text-align: left;
    border-bottom: none;
  }
}
@media all and (max-width: 992px) {
  .order-table tbody tr td:last-child {
    border-bottom: 1px solid #dfdfdf;
    padding-bottom: 2rem;
  }
}
.order-table tbody tr td .total-price {
  max-width: 370px;
}
@media all and (max-width: 992px) {
  .order-table tbody tr td .total-price {
    max-width: 100%;
  }
}

/*Layout*/
.footer {
  background-color: #f9f9f9;
}
.footer .container {
  max-width: 1100px;
}
@media all and (max-width: 576px) {
  .footer-logo {
    max-width: 170px;
  }
}
.footer-link {
  font-size: 1.8rem;
}
.footer-link:hover {
  color: #109cac;
  text-decoration: none;
}
.footer-info {
  font-size: 1.6rem;
}
.footer-divider {
  width: 1px;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  background-color: #dee2e6;
}
.footer-copyright {
  background-color: #575757;
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.2rem;
}

.header {
  -webkit-transition: background-color linear 0.2s;
  transition: background-color linear 0.2s;
  z-index: 98;
}
@media all and (max-width: 992px) {
  .header {
    background-color: #fff !important;
  }
}
.header .nav {
  font-size: 1.8rem;
}
.header .nav-item {
  -webkit-transition: all linear 0.3s;
  transition: all linear 0.3s;
}
.header .nav-item:hover {
  text-decoration: none;
  color: #109cac;
}
.header .nav-divider {
  width: 1px;
  background-color: #cccccc;
  -ms-flex-item-align: stretch;
      align-self: stretch;
}

.page {
  min-height: 100vh;
}
.page-nav-support {
  height: 79px;
  width: 100vw;
  background: #fff;
}
@media all and (max-width: 992px) {
  .page-nav-support {
    height: 76px;
  }
}
@media all and (max-width: 576px) {
  .page-nav-support {
    height: 57px;
  }
}

.sidebar {
  width: 100vw;
  height: 100vh;
  z-index: 99;
  background-color: rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all linear 0.3s;
  transition: all linear 0.3s;
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
  top: 0;
  left: 0;
  right: 0;
}
.sidebar-close {
  -webkit-transition: all linear 0.3s;
  transition: all linear 0.3s;
}
.sidebar-close:hover {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.sidebar.show {
  opacity: 1;
  visibility: visible;
  -webkit-transition: all linear 0.3s;
  transition: all linear 0.3s;
}
.sidebar.show .sidebar-menu {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
  -webkit-transition: all linear 0.3s;
  transition: all linear 0.3s;
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
.sidebar-menu {
  width: 630px;
  opacity: 0;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: all linear 0.3s;
  transition: all linear 0.3s;
  will-change: transform;
}
@media all and (max-width: 768px) {
  .sidebar-menu {
    width: 100vw;
  }
}
.sidebar-menu .sidebar-link {
  font-size: 17px;
}
.sidebar-menu .sidebar-link-icon {
  -webkit-transition: all linear 0.3s;
  transition: all linear 0.3s;
  will-change: transform;
}
.sidebar-menu .sidebar-link-icon.rotate {
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
}
.sidebar .sidebar-hidden-menu .sidebar-sub-link {
  -ms-flex-preferred-size: 150px;
      flex-basis: 150px;
  font-size: 15px;
}
@media all and (max-width: 768px) {
  .sidebar .sidebar-hidden-menu .sidebar-sub-link {
    -ms-flex-preferred-size: auto;
        flex-basis: auto;
  }
}
.sidebar .sidebar-hidden-menu .sidebar-sub-link:hover {
  color: #dc6f0f;
}
.sidebar-bg {
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: -1;
  width: 500px;
}
@media all and (max-width: 768px) {
  .sidebar-bg {
    width: 80vw;
  }
}

/*Pages*/
.about-banner-title {
  top: 50%;
  left: 30%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media all and (max-width: 992px) {
  .about-banner-title {
    left: 20%;
  }
}
@media all and (max-width: 576px) {
  .about-banner-title {
    left: 28%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
  }
}
.about-company {
  display: grid;
  grid-template-columns: 3.5fr 1.5fr 5fr;
  background-color: #f9fcff;
  height: 630px;
}
@media screen and (max-width: 1440px) {
  .about-company {
    grid-template-columns: 1.5fr 0.5fr 7fr;
  }
}
@media screen and (max-width: 1280px) {
  .about-company {
    grid-template-columns: 0 0.5fr 1.5fr;
  }
}
@media all and (max-width: 992px) {
  .about-company {
    display: block;
    height: auto;
    padding: 30px 0;
  }
}
.about-company-left {
  grid-column: 1/3;
  grid-row: 1/3;
  -webkit-clip-path: polygon(0 0, 100% 0, 75% 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 0, 75% 100%, 0% 100%);
  background-image: url("../../assets/img/about.png");
  background-size: cover;
  background-position: right;
}
.about-company-right {
  grid-column: 2/4;
  grid-row: 1/3;
  background-color: #f9fcff;
  -webkit-clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
          clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
}
.about-company-right .about-content {
  max-width: 550px;
  -webkit-transform: translateX(50px);
          transform: translateX(50px);
}
@media screen and (max-width: 1680px) {
  .about-company-right .about-content {
    -webkit-transform: translateX(140px);
            transform: translateX(140px);
  }
}
@media screen and (max-width: 1280px) {
  .about-company-right .about-content {
    -webkit-transform: translateX(170px);
            transform: translateX(170px);
  }
}
.about-company-center {
  grid-column: 2/3;
  grid-row: 1/3;
}
@media all and (max-width: 1200px) {
  .about-company-center {
    -webkit-transform: translateX(50px);
            transform: translateX(50px);
  }
}
.about-company-center .pad {
  -webkit-animation: moveUpDown 3s linear infinite;
          animation: moveUpDown 3s linear infinite;
}
.about-company-mobile-pad {
  width: 400px;
  -webkit-animation: moveUpDown 3s linear infinite;
          animation: moveUpDown 3s linear infinite;
}
@media all and (max-width: 768px) {
  .about-company-mobile-pad {
    width: 300px;
  }
}
@media all and (max-width: 576px) {
  .about-company-mobile-pad {
    width: 175px;
  }
}
@media all and (max-width: 380px) {
  .about-company-mobile-pad {
    width: 150px;
  }
}
.about-realm {
  padding: 5rem 0 0 0;
}
.about-realm-wrap {
  padding: 4rem 0 8rem 0;
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0.8)), to(rgba(255, 255, 255, 0.6))), url("../../assets/img/map.png");
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.6)), url("../../assets/img/map.png");
  background-size: cover;
  background-position: top;
}
@media screen and (max-width: 1280px) {
  .about-realm-wrap {
    padding: 0;
  }
}
.about-realm-wrap .circle {
  width: 700px;
  height: 700px;
}
@media screen and (max-width: 1280px) {
  .about-realm-wrap .circle {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
}
@media all and (max-width: 768px) {
  .about-realm-wrap .circle {
    -webkit-transform: scale(0.6);
            transform: scale(0.6);
  }
}
.about-realm-wrap .circle .content {
  height: 50%;
  top: 0;
  left: 50%;
  -webkit-transform-origin: bottom;
          transform-origin: bottom;
  z-index: 4;
}
.about-realm-wrap .circle .content:hover .content-icon {
  background-color: #109cac;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.about-realm-wrap .circle .content:hover .content-icon i {
  color: #fff;
}
.about-realm-wrap .circle .content:hover .content-icon-title {
  background-size: 100% 1px;
  -webkit-transition: all linear 0.3s;
  transition: all linear 0.3s;
}
.about-realm-wrap .circle .content-icon {
  width: 65px;
  height: 65px;
  border: 1px solid #0893a2;
  background-color: #fff;
  -webkit-transition: all linear 0.3s;
  transition: all linear 0.3s;
}
.about-realm-wrap .circle .content-icon i {
  color: #109cac;
  -webkit-transition: all linear 0.3s;
  transition: all linear 0.3s;
}
.about-realm-wrap .circle .content-icon-title {
  background-image: -webkit-gradient(linear, left top, right top, from(orange), to(orange));
  background-image: linear-gradient(90deg, orange, orange);
  background-size: 0% 2px;
  background-repeat: no-repeat;
  background-position: left bottom;
  -webkit-transition: all linear 0.3s;
  transition: all linear 0.3s;
}
.about-realm-wrap .circle .content-icon-title-right {
  background-position: right bottom;
}
.about-realm-wrap .circle .content:nth-of-type(1) {
  -webkit-transform: translateX(-50%) rotate(70deg);
          transform: translateX(-50%) rotate(70deg);
}
.about-realm-wrap .circle .content:nth-of-type(1) .content-icon {
  -webkit-transform: translateY(-20px) rotate(-70deg);
          transform: translateY(-20px) rotate(-70deg);
}
.about-realm-wrap .circle .content:nth-of-type(2) {
  -webkit-transform: translateX(-50%) rotate(110deg);
          transform: translateX(-50%) rotate(110deg);
}
.about-realm-wrap .circle .content:nth-of-type(2) .content-icon {
  -webkit-transform: translateY(-20px) rotate(-110deg);
          transform: translateY(-20px) rotate(-110deg);
}
.about-realm-wrap .circle .content:nth-of-type(3) {
  -webkit-transform: translateX(-50%) rotate(250deg);
          transform: translateX(-50%) rotate(250deg);
}
.about-realm-wrap .circle .content:nth-of-type(3) .content-icon {
  -webkit-transform: translateY(-20px) rotate(-250deg);
          transform: translateY(-20px) rotate(-250deg);
}
.about-realm-wrap .circle .content:nth-of-type(4) {
  -webkit-transform: translateX(-50%) rotate(290deg);
          transform: translateX(-50%) rotate(290deg);
}
.about-realm-wrap .circle .content:nth-of-type(4) .content-icon {
  -webkit-transform: translateY(-20px) rotate(-290deg);
          transform: translateY(-20px) rotate(-290deg);
}
.about-realm-mobile-wrap {
  background-image: url("../../assets/img/map-mobile.png");
  background-size: cover;
  background-position: top;
  padding-bottom: 2rem;
}
.about-realm-mobile-wrap .about-realm-mobile-circle {
  height: 300px;
  width: 300px;
  margin: 5rem 0 2rem 0;
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}
@media all and (max-width: 576px) {
  .about-realm-mobile-wrap .about-realm-mobile-circle {
    -webkit-transform: scale(1);
            transform: scale(1);
    margin: 0;
  }
}
.about-realm-mobile .realm-card {
  margin-bottom: 5rem;
}
@media all and (max-width: 576px) {
  .about-realm-mobile .realm-card:last-of-type {
    margin-bottom: 0;
  }
}
.about-realm-mobile .realm-card-wrap {
  background-color: #ecf9f9;
  padding: 60px 0 30px 0;
  border-radius: 10px;
  border: 1px solid #b3dfdf;
}
.about-realm-mobile .realm-card-wrap .realm-card-icon {
  width: 80px;
  height: 80px;
  background-color: #f8f8f8;
  top: -30px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  border: 1px solid #109cac;
}

.achievements-banner-title {
  top: 50%;
  left: 30%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media all and (max-width: 992px) {
  .achievements-banner-title {
    left: 20%;
  }
}
.achievements-card a:hover {
  text-decoration: none;
}
.achievements-card a:hover .achievements-card-image {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.achievements-card-image {
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: all linear 0.3s;
  transition: all linear 0.3s;
}

.contact-banner-title {
  top: 50%;
  left: 30%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media all and (max-width: 576px) {
  .contact-banner-title {
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}
@media all and (max-width: 992px) {
  .contact-right {
    padding: 5rem 0;
  }
}
@media all and (max-width: 992px) and (max-width: 576px) {
  .contact-right {
    padding: 3rem 0;
  }
}
.contact-right .contact-info {
  font-size: 1.8rem;
}

.landing {
  /*Hero*/
  /*End of Hero*/
  /*Solution*/
  /*End of Solution*/
  /*About*/
  /*End of About*/
  /*News*/
  /*End of News*/
  /*Achievements*/
  /*End of Achievements*/
  /*Partners*/
  /*End of Partners*/
}
.landing .hero {
  height: 100vh;
}
@media all and (max-width: 992px) {
  .landing .hero {
    height: auto;
    margin-top: 76px;
  }
}
@media all and (max-width: 768px) {
  .landing .hero {
    margin-top: 57px;
  }
}
.landing .solution {
  height: calc(100vh - 80px);
  /*Desktop*/
  /*End of Desktop*/
  /*Mobile*/
  /*End of Mobile*/
}
@media all and (max-width: 992px) {
  .landing .solution {
    height: auto;
  }
}
.landing .solution-left {
  width: 30%;
  background-image: -webkit-gradient(linear, left bottom, left top, from(#006a80), color-stop(#3acdd3), to(#178caf));
  background-image: linear-gradient(0deg, #006a80, #3acdd3, #178caf);
  padding: 24px 0px 24px 64px;
}
@media all and (max-width: 1200px) {
  .landing .solution-left {
    padding: 32px 0px 32px 32px;
  }
}
.landing .solution-left .solution-robot {
  position: absolute;
  left: 0;
  bottom: -50px;
  width: 100%;
}
.landing .solution-left .solution-robot .rwd {
  position: relative;
  width: 100% !important;
  bottom: 0;
  overflow: hidden;
}
.landing .solution-left .solution-robot .rwd .canvas {
  width: 100% !important;
  height: auto !important;
  position: absolute;
  bottom: 100px;
  left: 150px;
  -webkit-transform: scale(1.5);
          transform: scale(1.5);
}
.landing .solution-left .solution-robot .rwd #dom_overlay_container {
  position: absolute;
  left: 0;
  top: 0;
}
.landing .solution-left .solution-title-num {
  font-size: 20rem;
  line-height: 1;
  -webkit-text-stroke: 2px #fff;
  -webkit-text-fill-color: transparent;
  font-family: Arial, Helvetica, sans-serif;
}
@media all and (max-width: 1600px) {
  .landing .solution-left .solution-title-num {
    font-size: 20rem;
  }
}
@media all and (max-width: 1200px) {
  .landing .solution-left .solution-title-num {
    font-size: 15rem;
  }
}
.landing .solution-left .solution-title-zh {
  font-size: 3.6rem;
}
@media all and (max-width: 1200px) {
  .landing .solution-left .solution-title-zh {
    font-size: 3rem;
  }
}
.landing .solution-left .solution-title-zh::before {
  position: absolute;
  content: "";
  width: 20vw;
  height: 2px;
  background-color: #fff;
  bottom: 0;
  left: 0;
}
.landing .solution-right {
  width: 70%;
}
.landing .solution-right .solution-card {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-transition: all linear 0.3s;
  transition: all linear 0.3s;
  background-size: cover;
  background-position: center;
  padding: 90px 0px 90px 30px;
  /*Hover*/
  /*End of Hover*/
}
.landing .solution-right .solution-card:nth-of-type(1) {
  background-position: 70% 50%;
  background-image: url("../../assets/img/solution-b.jpg");
}
.landing .solution-right .solution-card:nth-of-type(2) {
  background-position: 40% 50%;
  background-image: url("../../assets/img/solution-a.jpg");
}
.landing .solution-right .solution-card:nth-of-type(3) {
  background-position: 30% 50%;
  background-image: url("../../assets/img/solution-c.jpg");
}
.landing .solution-right .solution-card:nth-of-type(4) {
  background-position: 80% 50%;
  background-image: url("../../assets/img/solution-d.jpg");
}
.landing .solution-right .solution-card:nth-of-type(5) {
  background-position: 90% 50%;
  background-image: url("../../assets/img/solution-e.jpg");
}
.landing .solution-right .solution-card:hover {
  -webkit-box-flex: 3;
      -ms-flex: 3;
          flex: 3;
}
.landing .solution-right .solution-card:hover .solution-card-title {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: all linear 0.3s;
  transition: all linear 0.3s;
}
.landing .solution-right .solution-card:hover .solution-overlay {
  opacity: 1;
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
.landing .solution-right .solution-card:hover .solution-overlay-title-zh {
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
  opacity: 1;
  -webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
}
.landing .solution-right .solution-card:hover .solution-overlay-title-en {
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
  opacity: 1;
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}
.landing .solution-right .solution-card:hover .solution-overlay-link {
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
  opacity: 1;
  -webkit-transition-delay: 1.2s;
          transition-delay: 1.2s;
}
.landing .solution-right .solution-card-title {
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
  opacity: 1;
  height: 100px;
  -webkit-transition: all linear 0.3s;
  transition: all linear 0.3s;
}
.landing .solution-right .solution-card-title-zh {
  font-size: 2rem;
  color: #109cac;
}
.landing .solution-right .solution-card-title-en {
  font-size: 1.4rem;
}
.landing .solution-right .solution-overlay {
  opacity: 0;
  -webkit-transition: all linear 0.3s;
  transition: all linear 0.3s;
  background-color: rgba(3, 58, 70, 0.8);
  top: 0;
  left: 0;
}
.landing .solution-right .solution-overlay-title-zh {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  opacity: 0;
  font-size: 2.8rem;
  color: #78f1ff;
  -webkit-transition: all linear 0.3s;
  transition: all linear 0.3s;
}
.landing .solution-right .solution-overlay-title-en {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  opacity: 0;
  font-size: 1.6rem;
  margin-bottom: 80px;
  -webkit-transition: all linear 0.3s;
  transition: all linear 0.3s;
}
.landing .solution-right .solution-overlay-link {
  display: inline-block;
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  opacity: 0;
  font-size: 1.6rem;
  border: 1px solid #fff;
  border-radius: 100vmax;
  padding: 10px 50px;
  z-index: 1;
  -webkit-transition: all linear 0.3s;
  transition: all linear 0.3s;
}
.landing .solution-right .solution-overlay-link::before, .landing .solution-right .solution-overlay-link::after {
  content: "";
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 100vmax;
  -webkit-transition: all linear 0.3s;
  transition: all linear 0.3s;
  z-index: -1;
}
.landing .solution-right .solution-overlay-link::before {
  width: 0%;
  opacity: 0;
  background: #2ecec4;
}
.landing .solution-right .solution-overlay-link::after {
  width: 100%;
  -webkit-box-shadow: 0px 0px 3px 4px rgba(0, 255, 255, 0.6), 0px 0px 6px 6px rgba(0, 255, 255, 0.5), 0px 0px 20px 15px rgba(0, 255, 255, 0.4);
          box-shadow: 0px 0px 3px 4px rgba(0, 255, 255, 0.6), 0px 0px 6px 6px rgba(0, 255, 255, 0.5), 0px 0px 20px 15px rgba(0, 255, 255, 0.4);
  opacity: 0;
}
.landing .solution-right .solution-overlay-link:hover {
  text-decoration: none;
}
.landing .solution-right .solution-overlay-link:hover::before {
  width: 100%;
  opacity: 1;
  -webkit-transition: all linear 0.3s;
  transition: all linear 0.3s;
}
.landing .solution-right .solution-overlay-link:hover::after {
  opacity: 1;
  -webkit-transition: all linear 0.3s;
  transition: all linear 0.3s;
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
.landing .solution-right .solution-overlay-link:hover .solution-overlay-link-icon {
  left: 149px;
  -webkit-transition: all linear 0.3s;
  transition: all linear 0.3s;
}
.landing .solution-right .solution-overlay-link-icon {
  width: 43px;
  height: 43px;
  background: #3acdd3;
  border-radius: 50%;
  top: 0px;
  left: -1px;
  -webkit-transition: all linear 0.3s;
  transition: all linear 0.3s;
}
.landing .solution-mobile {
  background-image: url("../../assets/img/solution-mobile-bg.png");
  background-size: cover;
  background-position: top;
}
.landing .solution-mobile-left {
  width: 40%;
}
.landing .solution-mobile-left .solution-mobile-number {
  font-size: 25rem;
  -webkit-text-stroke: 2px #fff;
  -webkit-text-fill-color: transparent;
}
@media all and (max-width: 768px) {
  .landing .solution-mobile-left .solution-mobile-number {
    font-size: 20rem;
  }
}
@media all and (max-width: 576px) {
  .landing .solution-mobile-left .solution-mobile-number {
    font-size: 11rem;
  }
}
@media screen and (max-width: 380px) {
  .landing .solution-mobile-left .solution-mobile-number {
    font-size: 10rem;
  }
}
.landing .solution-mobile-left .solution-mobile-title {
  width: 350px;
}
@media all and (max-width: 768px) {
  .landing .solution-mobile-left .solution-mobile-title {
    width: 280px;
  }
}
@media all and (max-width: 576px) {
  .landing .solution-mobile-left .solution-mobile-title {
    width: 250px;
  }
}
.landing .solution-mobile-left .solution-mobile-title-zh {
  font-size: 4.5rem;
}
@media all and (max-width: 768px) {
  .landing .solution-mobile-left .solution-mobile-title-zh {
    font-size: 3.5rem;
  }
}
@media all and (max-width: 576px) {
  .landing .solution-mobile-left .solution-mobile-title-zh {
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 380px) {
  .landing .solution-mobile-left .solution-mobile-title-zh {
    font-size: 2rem;
  }
}
.landing .solution-mobile-left .solution-mobile-title-en {
  letter-spacing: 1px;
  position: relative;
  font-size: 2.2rem;
  text-align: end;
}
@media all and (max-width: 768px) {
  .landing .solution-mobile-left .solution-mobile-title-en {
    font-size: 1.8rem;
  }
}
@media all and (max-width: 576px) {
  .landing .solution-mobile-left .solution-mobile-title-en {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 380px) {
  .landing .solution-mobile-left .solution-mobile-title-en {
    font-size: 1.2rem;
    text-align: center;
  }
}
.landing .solution-mobile-left .solution-mobile-title-en::before {
  content: "";
  width: 70px;
  height: 2px;
  background-color: #fff;
  position: absolute;
  bottom: 7px;
  left: 35px;
}
@media all and (max-width: 768px) {
  .landing .solution-mobile-left .solution-mobile-title-en::before {
    width: 35px;
    left: 35px;
  }
}
@media all and (max-width: 576px) {
  .landing .solution-mobile-left .solution-mobile-title-en::before {
    width: 20px;
    left: 50px;
  }
}
@media screen and (max-width: 380px) {
  .landing .solution-mobile-left .solution-mobile-title-en::before {
    display: none;
  }
}
.landing .solution-mobile-right {
  width: 60%;
}
.landing .solution-mobile-right .solution-mobile-robot {
  width: 120%;
}
@media all and (max-width: 576px) {
  .landing .solution-mobile-right .solution-mobile-robot {
    width: 135%;
  }
}
.landing .solution-mobile-list {
  background-color: #fff;
}
.landing .solution-mobile-list:nth-of-type(odd) .solution-mobile-card {
  background-position: center;
}
@media all and (max-width: 576px) {
  .landing .solution-mobile-list:nth-of-type(odd) .solution-mobile-card {
    background-position: right;
  }
}
.landing .solution-mobile-list:nth-of-type(even) .solution-mobile-card {
  background-position: center;
}
@media all and (max-width: 576px) {
  .landing .solution-mobile-list:nth-of-type(even) .solution-mobile-card {
    background-position: left;
  }
}
.landing .solution-mobile-list:nth-of-type(1) .solution-mobile-card {
  background-image: -webkit-gradient(linear, left top, right top, color-stop(45%, #fff), color-stop(80%, rgba(255, 255, 255, 0))), url("../../assets/img/mobile-solution-1.png");
  background-image: linear-gradient(90deg, #fff 45%, rgba(255, 255, 255, 0) 80%), url("../../assets/img/mobile-solution-1.png");
}
.landing .solution-mobile-list:nth-of-type(2) .solution-mobile-card {
  background-image: -webkit-gradient(linear, left top, right top, color-stop(30%, rgba(255, 255, 255, 0)), color-stop(50%, #fff)), url("../../assets/img/mobile-solution-2.png");
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0) 30%, #fff 50%), url("../../assets/img/mobile-solution-2.png");
}
.landing .solution-mobile-list:nth-of-type(3) .solution-mobile-card {
  background-image: -webkit-gradient(linear, left top, right top, color-stop(45%, #fff), color-stop(80%, rgba(255, 255, 255, 0))), url("../../assets/img/mobile-solution-3.png");
  background-image: linear-gradient(90deg, #fff 45%, rgba(255, 255, 255, 0) 80%), url("../../assets/img/mobile-solution-3.png");
}
.landing .solution-mobile-list:nth-of-type(4) .solution-mobile-card {
  background-image: -webkit-gradient(linear, left top, right top, color-stop(30%, rgba(255, 255, 255, 0)), color-stop(50%, #fff)), url("../../assets/img/mobile-solution-4.png");
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0) 30%, #fff 50%), url("../../assets/img/mobile-solution-4.png");
}
.landing .solution-mobile-list:nth-of-type(5) .solution-mobile-card {
  background-image: -webkit-gradient(linear, left top, right top, color-stop(45%, #fff), color-stop(80%, rgba(255, 255, 255, 0))), url("../../assets/img/mobile-solution-5.png");
  background-image: linear-gradient(90deg, #fff 45%, rgba(255, 255, 255, 0) 80%), url("../../assets/img/mobile-solution-5.png");
}
@media all and (max-width: 576px) {
  .landing .solution-mobile-list:nth-of-type(5) .solution-mobile-card-content-title-en {
    max-width: 150px;
  }
}
.landing .solution-mobile-list .solution-mobile-card {
  background-size: cover;
}
@media all and (max-width: 576px) {
  .landing .solution-mobile-list .solution-mobile-card {
    min-height: 155px;
  }
}
.landing .solution-mobile-list .solution-mobile-card-content {
  padding: 4rem 3rem 8rem 3rem;
}
@media all and (max-width: 576px) {
  .landing .solution-mobile-list .solution-mobile-card-content {
    padding: 2rem 3rem 4rem 1.5rem;
  }
}
@media all and (max-width: 380px) {
  .landing .solution-mobile-list .solution-mobile-card-content {
    padding: 1rem 1rem 3rem 1rem;
  }
}
.landing .solution-mobile-list .solution-mobile-card-content-number {
  font-size: 6.5rem;
  -webkit-text-stroke: 2px #109cac;
  -webkit-text-fill-color: transparent;
}
@media all and (max-width: 576px) {
  .landing .solution-mobile-list .solution-mobile-card-content-number {
    -webkit-text-stroke: 1px #109cac;
    font-size: 3rem;
  }
}
.landing .solution-mobile-list .solution-mobile-card-content-title {
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
}
@media all and (max-width: 576px) {
  .landing .solution-mobile-list .solution-mobile-card-content-title {
    -webkit-transform: translateY(7px);
            transform: translateY(7px);
  }
}
.landing .solution-mobile-list .solution-mobile-card-content-title-zh {
  font-size: 3rem;
}
@media all and (max-width: 576px) {
  .landing .solution-mobile-list .solution-mobile-card-content-title-zh {
    font-size: 1.6rem;
  }
}
.landing .solution-mobile-list .solution-mobile-card-content-title-en {
  max-width: 200px;
  font-size: 14px !important;
}
@media all and (max-width: 576px) {
  .landing .solution-mobile-list .solution-mobile-card-content-title-en {
    max-width: 122px;
    font-size: 12px !important;
    line-height: 1.2;
  }
}
.landing .solution-mobile-list .solution-mobile-card-content-title-link {
  padding: 0.8rem 2.5rem 0.8rem 4.5rem;
  border: 1px solid #999;
}
@media all and (max-width: 576px) {
  .landing .solution-mobile-list .solution-mobile-card-content-title-link {
    padding: 0.3rem 1.5rem 0.3rem 3.3rem;
    font-size: 12px;
  }
}
.landing .solution-mobile-list .solution-mobile-card-content-title-link-deco {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  top: -2px;
  left: -5px;
}
@media all and (max-width: 576px) {
  .landing .solution-mobile-list .solution-mobile-card-content-title-link-deco {
    width: 24px;
    height: 24px;
    top: 0px;
    left: 0px;
  }
}
.landing .about {
  height: 680px;
  display: grid;
  grid-template-columns: 3.5fr 1.5fr 5fr;
  /*Mobile*/
  /*End of Mobile*/
}
@media screen and (max-width: 1440px) {
  .landing .about {
    grid-template-columns: 1.5fr 0.5fr 7fr;
  }
}
@media screen and (max-width: 1280px) {
  .landing .about {
    grid-template-columns: 0 0.5fr 1.5fr;
  }
}
@media all and (max-width: 992px) {
  .landing .about {
    display: block;
    height: auto;
    padding: 8rem 0;
  }
}
@media all and (max-width: 576px) {
  .landing .about {
    padding: 30px 0;
  }
}
.landing .about-left {
  grid-column: 1/3;
  grid-row: 1/3;
  -webkit-clip-path: polygon(0 0, 100% 0, 75% 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 0, 75% 100%, 0% 100%);
  background-image: url("../../assets/img/about.png");
  background-size: cover;
  background-position: right;
}
.landing .about-right {
  grid-column: 2/4;
  grid-row: 1/3;
  -webkit-clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
          clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0.6)), to(rgba(255, 255, 255, 0.6))), url("../../assets/img/map.png");
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.6)), url("../../assets/img/map.png");
  background-size: cover;
}
.landing .about-right .about-content {
  max-width: 550px;
  -webkit-transform: translateX(50px);
          transform: translateX(50px);
}
@media screen and (max-width: 1680px) {
  .landing .about-right .about-content {
    -webkit-transform: translateX(140px);
            transform: translateX(140px);
  }
}
@media screen and (max-width: 1280px) {
  .landing .about-right .about-content {
    -webkit-transform: translateX(170px);
            transform: translateX(170px);
  }
}
.landing .about-center {
  grid-column: 2/3;
  grid-row: 1/3;
}
@media all and (max-width: 1200px) {
  .landing .about-center {
    -webkit-transform: translateX(50px);
            transform: translateX(50px);
  }
}
.landing .about-pad {
  -webkit-animation: moveUpDown 3s linear infinite;
          animation: moveUpDown 3s linear infinite;
}
.landing .about-mobile-pad {
  width: 400px;
  -webkit-animation: moveUpDown 3s linear infinite;
          animation: moveUpDown 3s linear infinite;
}
@media all and (max-width: 768px) {
  .landing .about-mobile-pad {
    width: 300px;
  }
}
@media all and (max-width: 576px) {
  .landing .about-mobile-pad {
    width: 180px;
  }
}
@media all and (max-width: 380px) {
  .landing .about-mobile-pad {
    width: 150px;
  }
}
.landing .news {
  background-image: url("../../assets/img/news-bg.png");
  background-size: cover;
  padding: 120px 0;
  /*Slick*/
}
@media all and (max-width: 768px) {
  .landing .news {
    padding: 30px 0;
  }
}
@media all and (max-width: 576px) {
  .landing .news {
    background-image: url("../../assets/img/news-bg-mobile.png");
  }
}
.landing .news-slick-prev, .landing .news-slick-next {
  background-color: transparent;
  width: 45px;
  height: 45px;
  border: 1px solid #bcbcbc;
  z-index: 1;
  -webkit-transition: all linear 0.3s;
  transition: all linear 0.3s;
}
@media all and (max-width: 576px) {
  .landing .news-slick-prev, .landing .news-slick-next {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
    background-color: rgba(0, 0, 0, 0.2);
  }
}
.landing .news-slick-prev:hover, .landing .news-slick-next:hover {
  background-color: #aaaaaa;
}
.landing .news-slick-prev:hover i, .landing .news-slick-next:hover i {
  color: #fff;
}
.landing .news-slick-slide a:hover {
  text-decoration: none;
}
.landing .news-slick-slide a:hover .news-slick-slide-image {
  -webkit-transition: all linear 0.3s;
  transition: all linear 0.3s;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.landing .news-slick-slide-image {
  -webkit-transition: all linear 0.3s;
  transition: all linear 0.3s;
}
.landing .news-slick .slick-dots {
  bottom: -45px;
}
.landing .achievements {
  padding: 120px 0;
}
@media all and (max-width: 768px) {
  .landing .achievements {
    padding: 30px 0;
  }
}
.landing .achievements-swiper-button-next {
  right: -25px;
  top: 30%;
}
.landing .achievements-swiper-button-prev {
  left: -25px;
  top: 30%;
}
.landing .achievements-left {
  width: 78%;
  /*Swiper*/
  /*Swiper*/
}
@media all and (max-width: 1200px) {
  .landing .achievements-left {
    width: 100%;
  }
}
.landing .achievements-left .achievements-swiper {
  height: 450px;
  /*Slide*/
  /*Slide*/
  /*Pagination*/
  /*Pagination*/
  /*Prev & Next Button*/
}
@media all and (max-width: 1200px) {
  .landing .achievements-left .achievements-swiper {
    height: auto;
  }
}
@media all and (max-width: 768px) {
  .landing .achievements-left .achievements-swiper {
    padding-bottom: 50px;
  }
}
.landing .achievements-left .achievements-swiper .swiper-slide {
  background-color: #f8f8f8;
}
.landing .achievements-left .achievements-swiper .swiper-slide a:hover {
  text-decoration: none;
}
.landing .achievements-left .achievements-swiper .swiper-slide a:hover .swiper-slide-image img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.landing .achievements-left .achievements-swiper .swiper-slide-image {
  width: 50%;
  background-size: cover;
  -webkit-transition: all linear 0.3s;
  transition: all linear 0.3s;
}
@media all and (max-width: 768px) {
  .landing .achievements-left .achievements-swiper .swiper-slide-image {
    width: 100%;
  }
}
.landing .achievements-left .achievements-swiper .swiper-slide-image img {
  -webkit-transition: all linear 0.3s;
  transition: all linear 0.3s;
}
.landing .achievements-left .achievements-swiper .swiper-slide-content {
  width: 50%;
}
@media all and (max-width: 768px) {
  .landing .achievements-left .achievements-swiper .swiper-slide-content {
    width: 100%;
  }
}
.landing .achievements-left .achievements-swiper .swiper-horizontal > .swiper-pagination-bullets,
.landing .achievements-left .achievements-swiper .swiper-pagination-bullets.swiper-pagination-horizontal {
  left: 40%;
  top: 90%;
}
@media all and (max-width: 768px) {
  .landing .achievements-left .achievements-swiper .swiper-horizontal > .swiper-pagination-bullets,
  .landing .achievements-left .achievements-swiper .swiper-pagination-bullets.swiper-pagination-horizontal {
    left: 0%;
    top: 96%;
  }
}
.landing .achievements-right {
  /*Thumb*/
}
.landing .achievements-right .achievements-swiper-thumb .swiper-slide {
  cursor: -webkit-grab;
  cursor: grab;
}
.landing .achievements-right .achievements-swiper-thumb .swiper-slide:hover .swiper-slide-title {
  -webkit-transition: all linear 0.3s;
  transition: all linear 0.3s;
  color: #109cac;
}
.landing .achievements-right .achievements-swiper-thumb .swiper-slide .swiper-slide-title {
  -webkit-transition: all linear 0.3s;
  transition: all linear 0.3s;
}
.landing .partners {
  background-color: #edf4f6;
  padding: 80px 0;
}
@media all and (max-width: 992px) {
  .landing .partners {
    padding: 5rem;
  }
}
@media all and (max-width: 576px) {
  .landing .partners {
    padding: 80px 3rem;
  }
}
.landing .partners-bg {
  top: 0px;
  left: -120px;
  z-index: 0;
}
@media all and (max-width: 992px) {
  .landing .partners-bg {
    right: 0;
    left: unset;
  }
}
.landing .partners-container {
  padding-left: 500px;
  z-index: 1;
}
@media all and (max-width: 992px) {
  .landing .partners-container {
    padding-left: 0.75rem;
  }
}
.landing .partners-container .partners-description {
  width: 380px;
}
@media screen and (max-width: 1400px) {
  .landing .partners-container .partners-description {
    width: 100%;
  }
}
.landing .partners-card {
  width: 555px;
  height: 300px;
}
@media screen and (max-width: 1400px) {
  .landing .partners-card {
    width: 100%;
    height: 450px;
  }
}
.landing .partners-card-item {
  width: 33.3333%;
  height: 50%;
  background: #fff;
  -webkit-transition: all linear 0.3s;
  transition: all linear 0.3s;
}
@media all and (max-width: 576px) {
  .landing .partners-card-item {
    width: 50%;
    height: 50%;
  }
}
.landing .partners-card-item:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 2px 4px 30px rgba(18, 77, 75, 0.3);
          box-shadow: 2px 4px 30px rgba(18, 77, 75, 0.3);
}

.news-banner-title {
  top: 50%;
  left: 25%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media all and (max-width: 992px) {
  .news-banner-title {
    left: 30%;
  }
}
@media all and (max-width: 576px) {
  .news-banner-title {
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}
.news-card a:hover {
  text-decoration: none;
}
.news-card a:hover .news-card-image {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.news-card-image {
  -webkit-transition: all linear 0.3s;
  transition: all linear 0.3s;
}

.solutions-banner-title {
  top: 50%;
  left: 18%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media all and (max-width: 992px) {
  .solutions-banner-title {
    left: 30%;
  }
}
.solutions-sidebar {
  width: 540px;
  min-height: 1800px;
}
@media screen and (max-width: 1280px) {
  .solutions-sidebar {
    width: 450px;
  }
}
.solutions-sidebar-top {
  background-image: url(../../assets/img/solution-sidebar-bg.png);
  background-size: cover;
  min-height: 1250px;
}
.solutions-sidebar-top .solutions-title {
  -webkit-transform: translateY(35px);
          transform: translateY(35px);
  padding-left: 64px;
}
.solutions-sidebar-top .solutions-title-num {
  font-size: 20rem;
  line-height: 1;
  -webkit-text-stroke: 2px #fff;
  -webkit-text-fill-color: transparent;
  font-family: Arial, Helvetica, sans-serif;
}
.solutions-sidebar-top .solutions-title-zh {
  font-size: 3.6rem;
}
.solutions-sidebar-top .solutions-title-zh::before {
  position: absolute;
  content: "";
  width: 500px;
  height: 2px;
  background-color: #fff;
  bottom: 0;
  left: 0;
}
@media screen and (max-width: 1280px) {
  .solutions-sidebar-top .solutions-title-zh {
    font-size: 3rem;
  }
}
.solutions-sidebar-top .links {
  -webkit-transform: translateY(60px);
          transform: translateY(60px);
  padding-left: 64px;
  position: relative;
  -webkit-transition: all linear 0.3s;
  transition: all linear 0.3s;
}
.solutions-sidebar-top .links::before {
  content: "";
  width: 10px;
  height: 10px;
  background-color: #ffa81d;
  position: absolute;
  border-radius: 50%;
  top: var(--top);
  opacity: var(--opacity);
  left: 65px;
  z-index: 1;
  -webkit-transition: all linear 0.3s;
  transition: all linear 0.3s;
}
.solutions-sidebar-top .links li:hover a {
  text-decoration: none;
}
.solutions-sidebar-top .links li:hover a .links-title-zh {
  color: #9af5df;
}
.solutions-sidebar-top .links li:hover a .fa-arrow-right {
  opacity: 1;
  -webkit-transform: translateX(0px);
          transform: translateX(0px);
}
.solutions-sidebar-top .links li.active .links-dot {
  color: #ffa81d;
}
.solutions-sidebar-top .links li.active .links-title-zh {
  color: #9af5df;
}
.solutions-sidebar-top .links-dot {
  -webkit-transform: translateY(5px);
          transform: translateY(5px);
  color: #d6d6d6;
  -webkit-transition: all linear 0.3s;
  transition: all linear 0.3s;
}
.solutions-sidebar-top .links-dot > i {
  -webkit-transform: scale(0.85);
          transform: scale(0.85);
}
.solutions-sidebar-top .links-title {
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}
.solutions-sidebar-top .links-title-zh {
  -webkit-transition: all linear 0.3s;
  transition: all linear 0.3s;
  font-size: 2rem;
  color: #fff;
}
.solutions-sidebar-top .links-title-en {
  font-size: 1.3rem;
  color: #dedede;
}
.solutions-sidebar-top .links-title .fa-arrow-right {
  color: #fff;
  -webkit-transform: translateX(-10px);
          transform: translateX(-10px);
  opacity: 0;
  -webkit-transition: all linear 0.3s;
  transition: all linear 0.3s;
}
.solutions-content {
  min-width: 0;
}
@media all and (max-width: 576px) {
  .solutions-content {
    background-image: url("../../assets/img/solutions-bg-mobile.png");
    background-size: 260px;
    background-repeat: no-repeat;
  }
}
.solutions-content .solutions-tab {
  background-color: transparent;
  color: #606060;
}
.solutions-content .solutions-tab.active {
  background-color: #109cac;
  color: #fff;
}
.solutions-slick .slide {
  min-width: 180px;
}
.solutions-slick .slide-item {
  background-size: cover;
  background-position: right;
  min-height: 55px;
  padding-left: 2rem;
}
.solutions-slick .slide-text {
  font-size: 14px;
  line-height: 1.2;
}
.solutions-select.form-select {
  background-color: #efefef;
  color: #606060;
  background-image: url("../../assets/img/icon-select-arrow.png");
  background-size: 26px 28px;
  background-position: right 1.5rem center;
}
.solutions-list li {
  padding-left: 12px;
  position: relative;
}
.solutions-list li::before {
  content: "-";
  position: absolute;
  top: -1px;
  left: -4px;
}

.maquee {
  font-size: 0;
  width: 333px;
  white-space: nowrap;
  overflow: hidden;
  -webkit-transform: translateY(-100px);
          transform: translateY(-100px);
}
@media screen and (max-width: 576px) {
  .maquee {
    -webkit-transform: translateY(-180px);
            transform: translateY(-180px);
    width: 237px;
  }
}
@media screen and (max-width: 420px) {
  .maquee {
    -webkit-transform: translateY(-220px);
            transform: translateY(-220px);
  }
}
.maquee .marquee-overlay {
  width: 50px;
  height: 100%;
  position: absolute;
  top: 0;
  background-image: radial-gradient(transparent 2px, #f8feff 2px);
  background-size: 6px 6px;
  -webkit-backdrop-filter: hue-rotate(180deg) blur(1px);
          backdrop-filter: hue-rotate(180deg) blur(1px);
  z-index: 1;
}
.maquee .marquee-text {
  font-size: 40px;
  color: #ff9537;
}
@media screen and (max-width: 576px) {
  .maquee .marquee-text {
    font-size: 30px;
  }
}
.maquee .marquee-text-en {
  font-size: 30px;
  color: #7b7b7b;
}
@media screen and (max-width: 576px) {
  .maquee .marquee-text-en {
    font-size: 20px;
  }
}

.water {
  /*Section four*/
  /*End of Section four*/
  /*Section five*/
  /*End of Section five*/
}
.water .section-four {
  background-color: #fff7ea;
  margin-top: -200px;
}
@media all and (max-width: 992px) {
  .water .section-four {
    margin-top: -150px;
  }
}
@media all and (max-width: 576px) {
  .water .section-four {
    margin-top: -30px;
  }
}
.water .section-four .group {
  border-radius: 20px;
  margin-bottom: -250px;
}
@media all and (max-width: 576px) {
  .water .section-four .group {
    border-radius: 0;
  }
}
.water .section-four .group .top {
  background-image: -webkit-gradient(linear, left top, left bottom, from(#cbfaff), color-stop(80%, #fff));
  background-image: linear-gradient(180deg, #cbfaff, #fff 80%);
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}
@media all and (max-width: 576px) {
  .water .section-four .group .top {
    border-radius: 0;
  }
}
.water .section-four .group .top .title {
  font-size: 4.5rem;
  color: #2b84b2;
}
@media all and (max-width: 576px) {
  .water .section-four .group .top .title {
    font-size: 3rem;
  }
}
@media all and (max-width: 576px) {
  .water .section-four .group .top .title img {
    width: 50px;
  }
}
.water .section-four .group-list {
  padding-bottom: 30rem;
}
.water .section-five {
  background-color: #fff8e6;
  padding: 100px 0;
}
@media all and (max-width: 576px) {
  .water .section-five {
    padding: 40px 0;
  }
}

/*Vendors*/
.slick-dots li {
  margin: 0 2px;
}
@media all and (max-width: 576px) {
  .slick-dots li {
    width: 16px;
  }
}
.slick-dots li.slick-active button::before {
  color: #2d849f;
}
.slick-dots li button::before {
  font-size: 15px;
}
@media all and (max-width: 576px) {
  .slick-dots li button::before {
    font-size: 13px;
  }
}

/*Pagination*/
.swiper-pagination-bullet {
  width: 13px;
  height: 13px;
}
.swiper-pagination-bullet-active {
  background-color: #2d849f;
}
@media all and (max-width: 576px) {
  .swiper-pagination-bullet {
    width: 11px;
    height: 11px;
  }
}

/*Controller*/
.swiper-button-next {
  width: 50px;
  height: 50px;
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.6);
  right: 8%;
  -webkit-transition: all linear 0.3s;
  transition: all linear 0.3s;
}
@media all and (max-width: 992px) {
  .swiper-button-next {
    right: 3%;
  }
}
@media all and (max-width: 576px) {
  .swiper-button-next {
    right: 7%;
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
}
.swiper-button-next:hover {
  background-color: rgba(0, 0, 0, 0.4);
}
.swiper-button-next::after {
  color: #fff;
  font-size: 2.8rem;
}
.swiper-button-prev {
  width: 50px;
  height: 50px;
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.6);
  left: 8%;
  -webkit-transition: all linear 0.3s;
  transition: all linear 0.3s;
}
@media all and (max-width: 992px) {
  .swiper-button-prev {
    left: 3%;
  }
}
@media all and (max-width: 576px) {
  .swiper-button-prev {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
}
.swiper-button-prev:hover {
  background-color: rgba(0, 0, 0, 0.4);
}
.swiper-button-prev::after {
  color: #fff;
  font-size: 2.8rem;
}

.hero .swiper-horizontal > .swiper-pagination-bullets,
.swiper-pa5gination-bullets.swiper-pagination-horizontal {
  left: 0%;
  bottom: 3%;
}

.news .swiper-horizontal > .swiper-pagination-bullets,
.swiper-pa5gination-bullets.swiper-pagination-horizontal {
  left: 0%;
  bottom: 0;
}/*# sourceMappingURL=main.css.map */