* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  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 .header-box {
  height: 110px;
  background-color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
@media (min-width: 0px) and (max-width: 575px) {
  header .header-box {
    height: 60px;
    padding: 0 15px;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  header .header-box {
    height: 60px;
    padding: 0 15px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  header .header-box {
    height: 60px;
    padding: 0 15px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  header .header-box {
    height: 80px;
    padding: 0 15px;
  }
}
@media (min-width: 1200px) and (max-width: 1499px) {
  header .header-box {
    height: 80px;
    padding: 0 15px;
  }
}
@media (min-width: 1500px) and (max-width: 1799px) {
  header .header-box {
    height: 96px;
    padding: 0 30px;
  }
}
header .header-box .logo {
  font-family: Source Han Sans;
  font-size: 24px;
  font-weight: bold;
  color: #244196;
  padding: 20px 104px 0 70px;
  display: flex;
  align-items: center;
}
@media (min-width: 0px) and (max-width: 575px) {
  header .header-box .logo {
    padding: 0;
    font-size: 18px;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  header .header-box .logo {
    padding: 0;
    font-size: 18px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  header .header-box .logo {
    padding: 0;
    font-size: 18px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  header .header-box .logo {
    padding: 0;
    font-size: 18px;
  }
}
@media (min-width: 1200px) and (max-width: 1499px) {
  header .header-box .logo {
    padding: 0 20px 0 0;
    font-size: 18px;
  }
}
@media (min-width: 1500px) and (max-width: 1799px) {
  header .header-box .logo {
    padding: 0 24px 0 0;
    font-size: 22px;
  }
}
header .header-box .logo img {
  width: 50px;
  height: 50px;
  margin-right: 35px;
}
@media (min-width: 0px) and (max-width: 575px) {
  header .header-box .logo img {
    margin-right: 10px;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  header .header-box .logo img {
    margin-right: 10px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  header .header-box .logo img {
    margin-right: 10px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  header .header-box .logo img {
    margin-right: 10px;
  }
}
@media (min-width: 1200px) and (max-width: 1499px) {
  header .header-box .logo img {
    margin-right: 10px;
  }
}
@media (min-width: 1500px) and (max-width: 1799px) {
  header .header-box .logo img {
    margin-right: 20px;
  }
}
header .header-box .menu {
  height: 100%;
  display: flex;
}
@media (min-width: 0px) and (max-width: 575px) {
  header .header-box .menu {
    display: none;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  header .header-box .menu {
    display: none;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  header .header-box .menu {
    display: none;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  header .header-box .menu {
    display: none;
  }
}
header .header-box .menu .item {
  width: 170px;
  height: 100%;
  padding-top: 30px;
  font-family: Source Han Sans;
  font-size: 20px;
  font-weight: normal;
  color: #3D3D3D;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s linear;
  position: relative;
  overflow: hidden;
}
@media (min-width: 1200px) and (max-width: 1499px) {
  header .header-box .menu .item {
    width: 120px;
    padding-top: 15px;
    font-size: 16px;
  }
}
@media (min-width: 1500px) and (max-width: 1799px) {
  header .header-box .menu .item {
    width: 140px;
    padding-top: 15px;
    font-size: 18px;
  }
}
header .header-box .menu .item::after {
  content: "";
  display: inline-block;
  position: absolute;
  left: 50%;
  bottom: -4px;
  transform: translateX(-50%);
  width: 50px;
  height: 4px;
  background-color: #244196;
  transition: all 0.3s linear;
}
header .header-box .menu .item:hover {
  background-color: #EAEBEE;
}
header .header-box .menu .item:hover::after {
  bottom: 0;
}
header .header-box .menu .act {
  background-color: #EAEBEE;
}
header .header-box .menu .act::after {
  bottom: 0;
}
header .header-box .r-box {
  display: flex;
  padding: 24px 30px 0 0;
}
@media (min-width: 0px) and (max-width: 575px) {
  header .header-box .r-box {
    display: none;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  header .header-box .r-box {
    display: none;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  header .header-box .r-box {
    display: none;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  header .header-box .r-box {
    display: none;
  }
}
@media (min-width: 1200px) and (max-width: 1499px) {
  header .header-box .r-box {
    padding: 14px 15px 0 0;
  }
}
@media (min-width: 1500px) and (max-width: 1799px) {
  header .header-box .r-box {
    padding: 14px 20px 0 0;
  }
}
header .header-box .r-box .search {
  width: 280px;
  height: 40px;
  border-radius: 20px;
  background: #EAEBEE;
  display: flex;
  align-items: center;
  font-family: Source Han Sans;
  font-size: 16px;
  font-weight: normal;
  color: #9AA3C2;
  padding: 0 18px;
}
header .header-box .r-box .search img {
  width: 20px;
  margin-right: 14px;
}
@media (min-width: 1200px) and (max-width: 1499px) {
  header .header-box .r-box .search {
    width: 56px;
  }
  header .header-box .r-box .search span {
    display: none;
  }
}
@media (min-width: 1500px) and (max-width: 1799px) {
  header .header-box .r-box .search {
    width: 180px;
  }
}
header .header-box .r-box .language {
  display: flex;
  margin-left: 10px;
}
header .header-box .r-box .language span {
  width: 60px;
  height: 40px;
  font-family: Source Han Sans;
  font-size: 16px;
  font-weight: normal;
  display: flex;
  align-items: center;
  justify-content: center;
}
header .header-box .r-box .language span:first-child {
  border-radius: 20px 0 0 20px;
  background: #EAEBEE;
  letter-spacing: 0.3em;
  color: #244196;
  padding-left: 12px;
}
header .header-box .r-box .language span:last-child {
  border-radius: 0 20px 20px 0;
  background: #244196;
  color: #EAEBEE;
  padding-right: 12px;
}
header .header-box .open-nav-box {
  cursor: pointer;
  display: none;
  position: absolute;
  right: 15px;
  z-index: 9999;
}
@media (min-width: 0px) and (max-width: 575px) {
  header .header-box .open-nav-box {
    display: block;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  header .header-box .open-nav-box {
    display: block;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  header .header-box .open-nav-box {
    display: block;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  header .header-box .open-nav-box {
    display: block;
  }
}
header .header-box .open-nav-box .line {
  transition: all 0.5s linear;
  width: 38px;
  height: 4px;
  background-color: #333;
  border-radius: 2px;
  margin-top: 8px;
}
header .header-box .open-nav-box .line:first-child {
  margin-top: 0;
}
header .header-box .animate1 .second-line {
  transform: rotateY(360deg);
  opacity: 0;
}
header .header-box .animate1 .first-line {
  transform-origin: center center;
  transform: translateY(12px) rotate(405deg);
}
header .header-box .animate1 .third-line {
  transform-origin: center center;
  transform: translateY(-12px) rotate(-405deg);
}
header .header-box .small-menu {
  position: absolute;
  left: 0;
  top: 100%;
  z-index: 999;
  width: 100%;
  background-color: #eee;
  padding: 10px 15px 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s linear;
}
header .header-box .small-menu .item {
  display: flex;
  align-items: center;
  height: 50px;
  padding: 0 10px;
  border-bottom: 1px solid #fefefe;
}
header .header-box .small-menu .item img {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}
header .header-box .small-menu .item span {
  font-family: Source Han Sans;
  font-size: 16px;
  font-weight: normal;
  color: #9AA3C2;
}
header .header-box .small-menu .item .search {
  width: 280px;
  height: 36px;
  display: flex;
  align-items: center;
  border-radius: 20px;
  background: #EAEBEE;
  padding: 0 15px;
}
header .header-box .small-menu .language {
  display: flex;
  align-items: center;
  padding: 0 10px;
  height: 50px;
}
header .header-box .small-menu .language a {
  width: 60px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}
header .header-box .small-menu .language a:first-child {
  border-radius: 20px 0 0 20px;
  background: #EAEBEE;
  padding-left: 8px;
  color: #244196;
}
header .header-box .small-menu .language a:last-child {
  border-radius: 0 20px 20px 0;
  background: #224196;
  color: #fff;
  padding-right: 8px;
}
header .header-box .show {
  opacity: 1;
  visibility: visible;
}

footer {
  background-color: #244196;
  padding: 0 120px 12px;
}
@media (min-width: 0px) and (max-width: 575px) {
  footer {
    padding: 0 15px;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  footer {
    padding: 0 15px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  footer {
    padding: 0 15px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  footer {
    padding: 0 30px 8px;
  }
}
@media (min-width: 1200px) and (max-width: 1499px) {
  footer {
    padding: 0 50px 8px;
  }
}
@media (min-width: 1500px) and (max-width: 1799px) {
  footer {
    padding: 0 60px 8px;
  }
}
footer .top {
  display: flex;
  justify-content: space-between;
  padding: 100px 0 80px;
}
@media (min-width: 0px) and (max-width: 575px) {
  footer .top {
    padding: 40px 0 15px;
    display: none;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  footer .top {
    padding: 40px 0 15px;
    display: block;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  footer .top {
    padding: 40px 0 15px;
    display: block;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  footer .top {
    padding: 60px 0 40px;
    display: block;
  }
}
@media (min-width: 1200px) and (max-width: 1499px) {
  footer .top {
    padding: 80px 0 60px;
    display: block;
  }
}
@media (min-width: 1500px) and (max-width: 1799px) {
  footer .top {
    padding: 90px 0 70px;
  }
}
footer .top .left {
  display: flex;
  font-family: Source Han Sans;
  font-size: 16px;
  font-weight: normal;
  color: #FFFFFF;
  letter-spacing: 0.3em;
}
@media (min-width: 0px) and (max-width: 575px) {
  footer .top .left {
    display: block;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 0.1em;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  footer .top .left {
    display: block;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 0.1em;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  footer .top .left {
    display: block;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 0.1em;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  footer .top .left {
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 0.1em;
  }
}
@media (min-width: 1200px) and (max-width: 1499px) {
  footer .top .left {
    font-size: 15px;
    font-weight: 300;
    letter-spacing: 0.1em;
  }
}
@media (min-width: 1500px) and (max-width: 1799px) {
  footer .top .left {
    font-size: 15px;
    font-weight: 300;
    letter-spacing: 0.1em;
  }
}
footer .top .left .tit {
  font-family: Source Han Sans;
  font-size: 24px;
  font-weight: normal;
  letter-spacing: 0.3em;
  color: #FFFFFF;
  text-align: center;
  margin-bottom: 50px;
}
@media (min-width: 0px) and (max-width: 575px) {
  footer .top .left .tit {
    font-size: 20px;
    text-align: left;
    margin-bottom: 10px;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  footer .top .left .tit {
    font-size: 20px;
    text-align: left;
    margin-bottom: 10px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  footer .top .left .tit {
    font-size: 20px;
    text-align: left;
    margin-bottom: 10px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  footer .top .left .tit {
    font-size: 20px;
    margin-bottom: 10px;
  }
}
@media (min-width: 1200px) and (max-width: 1499px) {
  footer .top .left .tit {
    font-size: 22px;
    margin-bottom: 10px;
  }
}
@media (min-width: 1500px) and (max-width: 1799px) {
  footer .top .left .tit {
    font-size: 22px;
    margin-bottom: 10px;
  }
}
footer .top .left .item {
  width: 260px;
  margin-right: 40px;
}
@media (min-width: 0px) and (max-width: 575px) {
  footer .top .left .item {
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  footer .top .left .item {
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  footer .top .left .item {
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }
}
footer .top .left .item > a {
  margin-bottom: 20px;
}
@media (min-width: 0px) and (max-width: 575px) {
  footer .top .left .item > a {
    margin-bottom: 10px;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  footer .top .left .item > a {
    margin-bottom: 10px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  footer .top .left .item > a {
    margin-bottom: 10px;
  }
}
footer .top .left .item > div {
  margin-bottom: 20px;
}
@media (min-width: 0px) and (max-width: 575px) {
  footer .top .left .item > div {
    margin-bottom: 10px;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  footer .top .left .item > div {
    margin-bottom: 10px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  footer .top .left .item > div {
    margin-bottom: 10px;
  }
}
footer .top .left .item .center {
  text-align: center;
}
@media (min-width: 0px) and (max-width: 575px) {
  footer .top .left .item .center {
    text-align: left;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  footer .top .left .item .center {
    text-align: left;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  footer .top .left .item .center {
    text-align: left;
  }
}
footer .top .left .item .flex {
  display: flex;
}
footer .top .left .item .flex:nth-of-type(3) img {
  height: 24px;
}
footer .top .left .item .flex img {
  width: 20px;
  height: 20px;
  margin-right: 16px;
  flex-shrink: 0;
}
footer .top .right {
  font-family: Source Han Sans;
  font-size: 24px;
  font-weight: normal;
  letter-spacing: 0.3em;
  color: #FFFFFF;
}
@media (min-width: 0px) and (max-width: 575px) {
  footer .top .right {
    font-size: 20px;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  footer .top .right {
    font-size: 20px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  footer .top .right {
    font-size: 20px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  footer .top .right {
    font-size: 20px;
  }
}
@media (min-width: 1200px) and (max-width: 1499px) {
  footer .top .right {
    font-size: 20px;
  }
}
@media (min-width: 1500px) and (max-width: 1799px) {
  footer .top .right {
    font-size: 22px;
  }
}
footer .top .right .qr {
  width: 100px;
  height: 100px;
  margin: 50px auto 0;
}
@media (min-width: 0px) and (max-width: 575px) {
  footer .top .right .qr {
    margin: 20px 0 0;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  footer .top .right .qr {
    margin: 20px 0 0;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  footer .top .right .qr {
    margin: 20px 0 0;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  footer .top .right .qr {
    margin: 20px 0 0;
  }
}
@media (min-width: 1200px) and (max-width: 1499px) {
  footer .top .right .qr {
    margin: 20px 0 0;
  }
}
@media (min-width: 1500px) and (max-width: 1799px) {
  footer .top .right .qr {
    margin: 30px auto 0;
  }
}
footer .copy {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Source Han Sans;
  font-size: 16px;
  font-weight: normal;
  letter-spacing: 0.3em;
  color: #FFFFFF;
  border-top: 1px solid #fff;
}
@media (min-width: 0px) and (max-width: 575px) {
  footer .copy {
    height: auto;
    padding: 15px 0;
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 0.5px;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  footer .copy {
    height: auto;
    padding: 15px 0;
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 0.5px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  footer .copy {
    height: auto;
    padding: 15px 0;
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 0.5px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  footer .copy {
    height: auto;
    padding: 20px 0;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 0.5px;
  }
}
@media (min-width: 1200px) and (max-width: 1499px) {
  footer .copy {
    height: auto;
    padding: 20px 0;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 0.5px;
  }
}
@media (min-width: 1500px) and (max-width: 1799px) {
  footer .copy {
    height: auto;
    padding: 30px 0;
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 0.5px;
  }
}

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