* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  scrollbar-color: #ffbe02 #fcfcfc;
  scrollbar-width: thin;
}

body {
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  box-sizing: border-box;
  display: block;
}

img {
  display: block;
}

.pointer {
  cursor: pointer;
}

input {
  display: block;
  box-sizing: border-box;
  outline: none;
}

header {
  background-color: #fff;
  height: 74px;
  position: sticky;
  top: 0;
  z-index: 1111;
}
@media (min-width: 0px) and (max-width: 575px) {
  header {
    height: 60px;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  header {
    height: 65px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  header {
    height: 70px;
  }
}
header .header {
  margin: 0 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}
@media (min-width: 0px) and (max-width: 575px) {
  header .header {
    margin: 0 15px;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  header .header {
    margin: 0 15px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  header .header {
    margin: 0 15px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  header .header {
    margin: 0 15px;
  }
}
@media (min-width: 1200px) and (max-width: 1599px) {
  header .header {
    margin: 0 20px;
  }
}
header .header .logo {
  height: 100%;
}
header .header .logo img {
  height: 100%;
  width: auto;
}
header .header .menu {
  display: flex;
  height: 100%;
  transition: all 0.3s linear;
}
@media (min-width: 0px) and (max-width: 575px) {
  header .header .menu {
    display: block;
    position: fixed;
    left: 0;
    top: 60px;
    width: 100vw;
    height: auto;
    background-color: #fff;
    z-index: 99;
    margin-top: 1px;
    opacity: 0;
    visibility: hidden;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  header .header .menu {
    display: block;
    position: fixed;
    left: 0;
    top: 65px;
    width: 100vw;
    height: auto;
    background-color: #fff;
    z-index: 99;
    margin-top: 1px;
    opacity: 0;
    visibility: hidden;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  header .header .menu {
    display: block;
    position: fixed;
    left: 0;
    top: 70px;
    width: 100vw;
    height: auto;
    background-color: #fff;
    z-index: 99;
    margin-top: 1px;
    opacity: 0;
    visibility: hidden;
  }
}
header .header .menu .item {
  height: 100%;
  display: flex;
  align-items: center;
  margin: 0 30px;
  transition: all 0.1s linear;
  font-size: 18px;
  font-weight: 500;
  color: #333333;
}
@media (min-width: 0px) and (max-width: 575px) {
  header .header .menu .item {
    height: 50px;
    border-bottom: 1px dashed #f1f1f1;
    margin: 0 15px;
    font-size: 16px;
    padding: 0 10px;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  header .header .menu .item {
    height: 50px;
    border-bottom: 1px dashed #f1f1f1;
    margin: 0 15px;
    font-size: 16px;
    padding: 0 10px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  header .header .menu .item {
    height: 50px;
    border-bottom: 1px dashed #f1f1f1;
    margin: 0 15px;
    font-size: 16px;
    padding: 0 10px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  header .header .menu .item {
    font-size: 16px;
    margin: 0 15px;
  }
}
@media (min-width: 1200px) and (max-width: 1599px) {
  header .header .menu .item {
    font-size: 17px;
    margin: 0 20px;
  }
}
header .header .menu .item:hover {
  border-bottom: 4px solid #FFBE02;
  color: #000;
  font-weight: 600;
}
header .header .menu .search {
  display: none;
}
@media (min-width: 0px) and (max-width: 575px) {
  header .header .menu .search {
    display: flex;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  header .header .menu .search {
    display: flex;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  header .header .menu .search {
    display: flex;
  }
}
header .header .menu .search img {
  width: 16px;
  height: auto;
  margin-right: 6px;
}
header .header .menu .language {
  display: none;
}
@media (min-width: 0px) and (max-width: 575px) {
  header .header .menu .language {
    display: flex;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  header .header .menu .language {
    display: flex;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  header .header .menu .language {
    display: flex;
  }
}
header .header .menu .language img {
  width: 16px;
  height: auto;
  margin-right: 6px;
}
header .header .show {
  opacity: 1;
  visibility: visible;
}
header .header .open-nav-box {
  cursor: pointer;
  display: none;
  position: absolute;
  right: 15px;
  z-index: 9999;
}
@media (min-width: 0px) and (max-width: 575px) {
  header .header .open-nav-box {
    display: block;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  header .header .open-nav-box {
    display: block;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  header .header .open-nav-box {
    display: block;
  }
}
header .header .open-nav-box .line {
  transition: all 0.5s linear;
  width: 38px;
  height: 4px;
  background-color: #333;
  border-radius: 2px;
  margin-top: 8px;
}
header .header .open-nav-box .line:first-child {
  margin-top: 0;
}
header .header .animate1 .second-line {
  transform: rotateY(360deg);
  opacity: 0;
}
header .header .animate1 .first-line {
  transform-origin: center center;
  transform: translateY(12px) rotate(405deg);
}
header .header .animate1 .third-line {
  transform-origin: center center;
  transform: translateY(-12px) rotate(-405deg);
}
header .header .right-box {
  height: 100%;
  display: flex;
  align-items: center;
}
@media (min-width: 0px) and (max-width: 575px) {
  header .header .right-box {
    display: none;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  header .header .right-box {
    display: none;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  header .header .right-box {
    display: none;
  }
}
header .header .right-box .search {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 200px;
  height: 40px;
  background: #ffffff;
  border: 1px solid #cccccc;
  border-radius: 20px;
  padding: 0 20px;
  font-size: 14px;
  color: #828d8b;
}
@media (min-width: 992px) and (max-width: 1199px) {
  header .header .right-box .search {
    width: 110px;
    height: 32px;
    font-size: 12px;
    padding: 0 15px;
  }
}
@media (min-width: 1200px) and (max-width: 1599px) {
  header .header .right-box .search {
    width: 160px;
  }
}
header .header .right-box .search img {
  width: 18px;
  height: 18px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  header .header .right-box .search img {
    width: 14px;
    height: 14px;
  }
}
header .header .right-box .language {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 400;
  color: #232323;
  margin-left: 20px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  header .header .right-box .language {
    font-size: 12px;
    margin-left: 15px;
  }
}
header .header .right-box .language img {
  width: 18px;
  height: 18px;
  margin-right: 6px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  header .header .right-box .language img {
    width: 14px;
    height: 14px;
    margin-right: 4px;
  }
}

footer {
  position: relative;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 0) 200px, #e8e8e8 200px);
}
@media (min-width: 0px) and (max-width: 575px) {
  footer {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 0) 100px, #e8e8e8 100px, #e8e8e8);
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  footer {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 0) 120px, #e8e8e8 120px, #e8e8e8);
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  footer {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 0) 140px, #e8e8e8 140px, #e8e8e8);
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  footer {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 0) 160px, #e8e8e8 160px, #e8e8e8);
  }
}
@media (min-width: 1200px) and (max-width: 1599px) {
  footer {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 0) 180px, #e8e8e8 180px, #e8e8e8);
  }
}
footer .waves {
  position: absolute;
  z-index: -1;
  width: 100%;
  margin-bottom: -7px;
  height: 200px;
}
@media (min-width: 0px) and (max-width: 575px) {
  footer .waves {
    height: 100px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 0) 100px, #e8e8e8 100px, #e8e8e8);
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  footer .waves {
    height: 120px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  footer .waves {
    height: 140px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  footer .waves {
    height: 160px;
  }
}
@media (min-width: 1200px) and (max-width: 1599px) {
  footer .waves {
    height: 180px;
  }
}
footer .footer {
  width: 1480px;
  margin: 0 auto;
  font-size: 14px;
  font-weight: 400;
  color: #a7a7a7;
  line-height: 34px;
  padding: 0 30px;
}
@media (min-width: 0px) and (max-width: 575px) {
  footer .footer {
    width: 100%;
    padding: 0 15px;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  footer .footer {
    width: 100%;
    padding: 0 15px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  footer .footer {
    width: 100%;
    padding: 0 15px;
  }
}
footer .footer .footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 160px 0 60px;
}
@media (min-width: 0px) and (max-width: 575px) {
  footer .footer .footer-content {
    display: block;
    padding: 100px 0 30px;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  footer .footer .footer-content {
    display: block;
    padding: 100px 0 30px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  footer .footer .footer-content {
    display: block;
    padding: 100px 0 30px;
  }
}
footer .footer .footer-content .l-box .img-1 {
  height: 80px;
  width: auto;
}
@media (min-width: 0px) and (max-width: 575px) {
  footer .footer .footer-content .l-box .img-1 {
    height: 60px;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  footer .footer .footer-content .l-box .img-1 {
    height: 70px;
  }
}
footer .footer .footer-content .l-box .img-2 {
  height: 40px;
  width: auto;
  margin-top: 40px;
}
@media (min-width: 0px) and (max-width: 575px) {
  footer .footer .footer-content .l-box .img-2 {
    height: 30px;
    margin-top: 20px;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  footer .footer .footer-content .l-box .img-2 {
    height: 32px;
    margin-top: 20px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  footer .footer .footer-content .l-box .img-2 {
    height: 32px;
    margin-top: 30px;
  }
}
@media (min-width: 0px) and (max-width: 575px) {
  footer .footer .footer-content .c-box {
    margin-top: 20px;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  footer .footer .footer-content .c-box {
    margin-top: 20px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  footer .footer .footer-content .c-box {
    margin-top: 30px;
  }
}
footer .footer .footer-content .c-box .tit {
  font-size: 18px;
  font-weight: 700;
  color: #3e3e3e;
  padding-left: 10px;
  margin-bottom: 10px;
}
footer .footer .footer-content .c-box .item {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #919191;
  line-height: 34px;
}
@media (min-width: 0px) and (max-width: 575px) {
  footer .footer .footer-content .c-box .item {
    font-size: 12px;
  }
}
footer .footer .footer-content .c-box .item .icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 0px) and (max-width: 575px) {
  footer .footer .footer-content .c-box .item .icon {
    width: 20px;
    height: 20px;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  footer .footer .footer-content .c-box .item .icon {
    width: 25px;
    height: 25px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  footer .footer .footer-content .c-box .item .icon {
    width: 30px;
    height: 30px;
  }
}
footer .footer .footer-content .c-box .item .icon img {
  width: 20px;
  height: auto;
}
@media (min-width: 0px) and (max-width: 575px) {
  footer .footer .footer-content .c-box .item .icon img {
    width: 14px;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  footer .footer .footer-content .c-box .item .icon img {
    width: 16px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  footer .footer .footer-content .c-box .item .icon img {
    width: 18px;
  }
}
footer .footer .footer-content .c-box .item:last-child .icon img {
  width: 18px;
}
@media (min-width: 0px) and (max-width: 575px) {
  footer .footer .footer-content .c-box .item:last-child .icon img {
    width: 13px;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  footer .footer .footer-content .c-box .item:last-child .icon img {
    width: 15px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  footer .footer .footer-content .c-box .item:last-child .icon img {
    width: 17px;
  }
}
footer .footer .footer-content .r-box {
  text-align: center;
  font-size: 14px;
  color: #9f9f9f;
  line-height: 34px;
}
@media (min-width: 0px) and (max-width: 575px) {
  footer .footer .footer-content .r-box {
    margin-top: 20px;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  footer .footer .footer-content .r-box {
    margin-top: 20px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  footer .footer .footer-content .r-box {
    margin-top: 30px;
  }
}
footer .footer .footer-content .r-box .qr {
  width: 150px;
  height: 150px;
}
@media (min-width: 0px) and (max-width: 575px) {
  footer .footer .footer-content .r-box .qr {
    margin: 20px auto 0;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  footer .footer .footer-content .r-box .qr {
    margin: 20px auto 0;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  footer .footer .footer-content .r-box .qr {
    margin: 30px auto 0;
  }
}
footer .copyright {
  font-size: 14px;
  font-weight: 400;
  text-align: center;
  color: #ABABAB;
  height: 90px;
  width: 100%;
  padding: 0 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 1px solid rgba(206, 206, 206, 0.3764705882);
  line-height: 1.6;
}

.parallax > use {
  animation: move-forever 25s cubic-bezier(0.55, 0.5, 0.45, 0.5) infinite;
}

.parallax > use:nth-child(1) {
  animation-delay: -2s;
  animation-duration: 7s;
}

.parallax > use:nth-child(2) {
  animation-delay: -3s;
  animation-duration: 10s;
}

.parallax > use:nth-child(3) {
  animation-delay: -4s;
  animation-duration: 13s;
}

.parallax > use:nth-child(4) {
  animation-delay: -5s;
  animation-duration: 20s;
}

.modal-box {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.3764705882);
}
.modal-box .modal {
  width: calc(100% - 30px);
  max-width: 560px;
  padding: 40px 30px;
  background-color: #fff;
  border-radius: 20px;
  position: relative;
}
@media (min-width: 0px) and (max-width: 575px) {
  .modal-box .modal {
    padding: 20px 15px;
  }
}
.modal-box .modal .title {
  text-align: center;
  width: fit-content;
  margin: 0 auto;
}
.modal-box .modal .title .cn {
  font-size: 40px;
  font-weight: 800;
  color: #333333;
  line-height: 51px;
  position: relative;
  width: fit-content;
  margin: 0 auto;
}
@media (min-width: 0px) and (max-width: 575px) {
  .modal-box .modal .title .cn {
    font-size: 24px;
    line-height: 1.6;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .modal-box .modal .title .cn {
    font-size: 26px;
    line-height: 1.6;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .modal-box .modal .title .cn {
    font-size: 28px;
    line-height: 1.6;
  }
}
.modal-box .modal .title .cn img {
  width: 30px;
  height: auto;
  position: absolute;
  left: -10px;
  opacity: 0.8;
}
.modal-box .modal .title .en {
  font-size: 20px;
  font-weight: 300;
  color: #bcbcbc;
  line-height: 48px;
}
@media (min-width: 0px) and (max-width: 575px) {
  .modal-box .modal .title .en {
    font-size: 16px;
    line-height: 1.6;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .modal-box .modal .title .en {
    font-size: 26px;
    line-height: 1.6;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .modal-box .modal .title .en {
    font-size: 28px;
    line-height: 1.6;
  }
}
.modal-box .modal form, .modal-box .modal label, .modal-box .modal input, .modal-box .modal textarea, .modal-box .modal button {
  width: 100%;
  resize: none;
}
.modal-box .modal form {
  margin-top: 40px;
}
@media (min-width: 0px) and (max-width: 575px) {
  .modal-box .modal form {
    margin-top: 20px;
  }
}
.modal-box .modal input {
  height: 66px;
  background: #f9f9f9;
  border: 1px solid #f1f1f1;
  border-radius: 10px;
  margin-bottom: 10px;
  padding: 0 20px;
  font-size: 16px;
}
@media (min-width: 0px) and (max-width: 575px) {
  .modal-box .modal input {
    height: 50px;
  }
}
.modal-box .modal input::placeholder {
  font-family: Source Han Sans CN, Source Han Sans CN-Normal;
  color: #333333;
}
.modal-box .modal textarea {
  height: 100px;
  padding: 20px;
  border: 1px solid #f1f1f1;
  border-radius: 10px;
  outline: none;
  background: #f9f9f9;
  font-size: 16px;
}
@media (min-width: 0px) and (max-width: 575px) {
  .modal-box .modal textarea {
    padding: 10px 20px;
  }
}
.modal-box .modal textarea::placeholder {
  font-family: Source Han Sans CN, Source Han Sans CN-Normal;
  color: #333333;
}
.modal-box .modal button {
  height: 70px;
  background: #15774d;
  border-radius: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-family: Microsoft YaHei, Microsoft YaHei-Bold;
  font-weight: 700;
  color: #ffffff;
  margin-top: 20px;
  outline: none;
  border: none;
}
@media (min-width: 0px) and (max-width: 575px) {
  .modal-box .modal button {
    height: 50px;
  }
}
.modal-box .modal .close {
  font-size: 60px;
  color: #fff;
  align-self: flex-start;
  position: absolute;
  right: -60px;
  top: -20px;
  line-height: 1;
  rotate: 45deg;
  font-weight: 300;
  cursor: pointer;
}
@media (min-width: 0px) and (max-width: 575px) {
  .modal-box .modal .close {
    right: 10px;
    top: 0;
    font-size: 50px;
    color: #000;
  }
}

.fixed-box {
  position: fixed;
  right: 20px;
  top: 70%;
  z-index: 9998;
  height: 60px;
  width: 60px;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0 0 5px #666;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-size: 14px;
}
@media (min-width: 0px) and (max-width: 575px) {
  .fixed-box {
    height: 40px;
    width: 40px;
    font-size: 12px;
  }
}
.fixed-box img {
  width: 24px;
  height: 24px;
}
@media (min-width: 0px) and (max-width: 575px) {
  .fixed-box img {
    width: 18px;
    height: 18px;
  }
}

@keyframes move-forever {
  0% {
    transform: translate3d(-90px, 0, 0);
  }
  100% {
    transform: translate3d(85px, 0, 0);
  }
}

/*# sourceMappingURL=common.css.map */
