@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  touch-action: pan-y;
  word-wrap: break-word !important;
  overflow-wrap: break-word !important;
  box-sizing: border-box !important;
}

html, body {
  font-size: 12px;
  font-family: '微软雅黑',Helvetica,Arial,sans-serif;
  font-weight: 400;
  color: #424242;
  background: #FFFFFF;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, p, ul, li, dl, dt, dd {
  margin-bottom: 0;
}

img {
  max-width: 100%;
}

.pd-l30 {
  padding-left: 30px !important;
}

.mg-t30 {
  margin-top: 30px !important;
}

.mg-b10 {
  margin-bottom: 10px !important;
}

.mg-b30 {
  margin-bottom: 30px !important;
}

.no-margin {
  margin: 0 !important;
}

.full {
  width: 100%;
  height: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

a:hover {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s;
}

a:active {
  color: inherit;
  transition: all 0.3s;
  background: inherit;
}

@-webkit-keyframes mmFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes mmFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@-webkit-keyframes mmFadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, -30px, 0);
    -webkit-transform: translate3d(0, -30px, 0) !important;
  }
  to {
    opacity: 1;
    transform: none;
    -webkit-transform: none;
  }
}

@keyframes mmFadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, -30px, 0);
    -webkit-transform: translate3d(0, -30px, 0) !important;
  }
  to {
    opacity: 1;
    transform: none;
    -webkit-transform: none;
  }
}

li {
  list-style: none;
}

.container {
  max-width: 1370px;
}

/** Common *******************************************************************************************/
header {
  width: 100%;
  background-color: #fff;
}

header > .container {
  display: flex;
  flex-wrap: wrap;
}

header .header-logo {
  display: inline-block;
  margin: 15px 0;
  margin-right: 100px;
}

header .header-logo a {
  display: inline-block;
}

header .header-nav {
  display: inline-block;
  width: calc(100% - 350px);
}

header .header-nav .nav-level1 .level1-item {
  display: inline-block;
  position: relative;
  margin-right: 120px;
}

header .header-nav .nav-level1 .level1-item:last-child {
  margin-right: 0 !important;
}

header .header-nav .nav-level1 .level1-item .level1-link {
  display: block;
  font-size: 26px;
  color: #3367a9 !important;
  transition: all 0.3s;
  padding: 25px 0;
  opacity: .5;
}

header .header-nav .nav-level1 .level1-item .nav-level2 {
  display: none;
  position: absolute;
  width: 192px;
  top: 100%;
  left: 0;
  z-index: 10;
  background: #3367a9;
  border-radius: 4px;
  padding: 15px 0;
  transition: all 0.3s;
}

header .header-nav .nav-level1 .level1-item .nav-level2::before {
  content: '';
  position: absolute;
  top: -22px;
  left: 25px;
  width: 0;
  height: 0;
  z-index: 1;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-bottom: 22px solid #3367a9;
}

header .header-nav .nav-level1 .level1-item .nav-level2 .level2-item {
  display: block;
  color: #fff;
  font-size: 20px;
  padding: 15px 20px;
}

header .header-nav .nav-level1 .level1-item:hover .level1-link {
  opacity: 1;
}

header .header-nav .nav-level1 .level1-item:hover .nav-level2 {
  display: block;
  animation: mmFadeIn .3s;
}

.about-body .about-link,
.service-body .service-link,
.local-body .local-link,
.receipt-body .receipt-link,
.index-body .index-link {
  opacity: 1 !important;
}

footer {
  background-color: #3969ac;
}

footer .container .line::after, footer .info-list .line::before, .info-list footer .line::before, footer .info-list .line::after, .info-list footer .line::after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 31px;
  width: 1px;
  background-color: rgba(221, 221, 221, 0.5);
  z-index: 1;
}

footer .container {
  padding: 40px 15px;
}

footer .container .line::after {
  right: -1px;
}

footer .container a {
  font-size: 28px;
  color: #fff;
}

.footer-address {
  width: 100%;
  background: #104990;
  color: #ffffff;
  text-align: center;
  padding: 30px 0;
  margin-bottom: 0;
}

.footer-address P {
  font-size: 20px;
}

.footer-address a {
  font-size: 14px;
}

.banner {
  position: relative;
  overflow: hidden;
}

.banner .banner-content {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.3);
}

.banner .banner-content .banner-title {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  padding: 0 15px;
  z-index: 1;
  text-align: center;
  transform: translate(-50%, -50%);
}

.banner .banner-content .banner-title h1 {
  font-size: 129px;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: 5px;
  text-shadow: -5px -2px 10px rgba(255, 255, 255, 0.5);
}

.banner .banner-content .banner-title p {
  font-size: 42px;
  color: #fff;
}

.receipt-body .banner .banner-title {
  text-align: left;
}

.receipt-body .banner .banner-title h1 {
  font-size: 72px;
  line-height: 96px;
  margin-bottom: 20px;
}

.receipt-body .banner .banner-title p {
  font-size: 26px;
}

.local-body .banner {
  overflow: inherit;
  margin-bottom: 100px;
}

.local-body .banner .banner-title {
  top: 400px;
}

.local-body .banner .banner-title h1 {
  font-size: 140px;
  line-height: 186px;
  letter-spacing: 24px;
}

.local-body .banner .banner-title p {
  letter-spacing: 2px;
}

.local-body .banner .banner-botton {
  position: absolute;
  bottom: 0;
  left: 15px;
  width: 100%;
  z-index: 1;
  align-items: center;
}

.local-body .banner .banner-botton ul {
  padding: 40px;
}

.local-body .banner .banner-botton ul li {
  margin-bottom: 40px;
}

.local-body .banner .banner-botton ul h3 {
  font-size: 48px;
  color: #fff;
  letter-spacing: 10px;
  margin-bottom: 5px;
}

.local-body .banner .banner-botton ul p {
  font-size: 20px;
  color: #fff;
  letter-spacing: 4px;
}

.local-body .banner .banner-botton .banner-botton-img {
  position: relative;
  left: 0;
  padding-left: 0;
}

.local-body .img-scale {
  transition: all .3s;
}

.local-body .img-scale:hover {
  transform: scale(1.1);
}

.about-body .banner {
  overflow: inherit;
  margin-bottom: 500px;
}

.about-body .banner .banner-title {
  transform: translate(-50%, -60%);
}

.about-body .banner .banner-title h1 {
  font-size: 120px;
  letter-spacing: 42px;
  margin-bottom: 0;
}

.about-body .banner .banner-title .banner-content-list {
  display: flex;
  align-items: center;
  margin: 200px auto;
}

.about-body .banner .banner-title .banner-content-list li {
  width: 100%;
  position: relative;
}

.about-body .banner .banner-title .banner-content-list li.line::before {
  content: '';
  position: absolute;
  top: 50%;
  right: -2px;
  width: 2px;
  height: 60%;
  transform: translateY(-50%);
  background-color: #fff;
}

.about-body .banner .banner-title .banner-content-list li p {
  font-size: 18px;
  margin-top: 20px;
}

.about-body .banner .banner-content-img {
  position: relative;
  top: -485px;
  height: 1px;
  width: 100%;
  text-align: center;
}

.about-body .banner .banner-content-img img {
  padding: 0 245px;
}

.local-list {
  background-color: #3367a9;
}

.local-list img {
  margin-bottom: 75px;
}

.local-list h4 {
  color: #fff;
  font-size: 32px;
  margin-bottom: 30px;
}

.local-list p {
  color: #fff;
  font-size: 16px;
}

.local-list .container {
  padding: 100px 15px;
  border-bottom: 2px solid rgba(221, 221, 221, 0.5);
}

.local-list .col-4 {
  padding: 0 50px;
}

/*******************************************************************************************************/
/** Index body *****************************************************************************************/
.info-list {
  margin: -15px auto 20px;
  position: relative;
  z-index: 10;
}

.info-list .row {
  margin-left: 0;
  margin-right: 0;
  box-shadow: 0px 1px 30px 0px #d7d7d7;
  border-radius: 5px;
  background-color: #fff;
}

.info-list .row .list-box {
  padding: 40px 15px;
}

.info-list footer .container .line::after, footer .container .info-list .line::after, .info-list .line::before, .info-list .line::after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 60px;
  width: 1px;
  background-color: rgba(221, 221, 221, 0.5);
  z-index: 1;
}

.info-list .list-box p {
  font-size: 34px;
  margin-bottom: 20px;
  color: #6d7589;
}

.info-list .list-box span {
  font-size: 16px;
  line-height: 33px;
  color: #8a95b2;
}

.info-list .line::before {
  left: -1px;
  background-color: #e5e5e5;
}

.info-list .line::after {
  right: -1px;
  background-color: #e5e5e5;
}

.index-bg {
  position: relative;
  top: 60px;
  z-index: 1;
}

.customer-show {
  padding-top: 30px;
  padding-bottom: 40px;
  text-align: center;
}

.customer-show .row {
  margin-bottom: 70px;
  align-items: center;
}

.customer-show h2 {
  margin-bottom: 80px;
  font-size: 40px;
  letter-spacing: 3px;
}

/*******************************************************************************************************/
/** receipt *****************************************************************************************/
.gallery {
  margin: 100px auto;
}

.gallery .gallery-left .gallery-item, .gallery .gallery-right .gallery-item {
  position: relative;
  margin-bottom: 38px;
}

.gallery .gallery-left .gallery-item:last-child, .gallery .gallery-right .gallery-item:last-child {
  margin-bottom: 0;
}

.gallery .gallery-left .gallery-item .gallery-content, .gallery .gallery-right .gallery-item .gallery-content {
  text-align: left;
  position: absolute;
  top: 45px;
  left: 45px;
  width: 350px;
  z-index: 1;
  color: #100f0f;
  font-size: 14px;
}

.gallery .gallery-left .gallery-item .gallery-content h2, .gallery .gallery-right .gallery-item .gallery-content h2 {
  font-size: 40px;
}

.gallery .gallery-left .gallery-item .gallery-content p, .gallery .gallery-right .gallery-item .gallery-content p {
  text-transform: uppercase;
}

.gallery .gallery-left .gallery-item .gallery-content span, .gallery .gallery-right .gallery-item .gallery-content span {
  display: block;
  position: relative;
  padding-top: 10px;
}

.gallery .gallery-left .gallery-item .gallery-content span::before, .gallery .gallery-right .gallery-item .gallery-content span::before {
  content: '';
  position: absolute;
  top: 5px;
  left: 0;
  width: 80%;
  height: 1px;
  z-index: 1;
  background-color: #100f0f;
}

.gallery .container {
  max-width: 1400px;
}

.gallery .gallery-left .gallery-item:nth-child(1) .gallery-content {
  color: #324163;
}

.gallery .gallery-left .gallery-item:nth-child(1) .gallery-content span::before {
  background-color: #324163;
}

.gallery .gallery-left .gallery-item:nth-child(2) .gallery-content {
  color: #2faff1;
}

.gallery .gallery-left .gallery-item:nth-child(2) .gallery-content span::before {
  background-color: #2faff1;
}

.gallery .gallery-left .gallery-item:nth-child(3) .gallery-content {
  color: #fff;
}

.gallery .gallery-left .gallery-item:nth-child(3) .gallery-content span::before {
  background-color: #fff;
}

.gallery .gallery-right .gallery-item {
  text-align: right;
  height: 100%;
}

.recept-box {
  background-color: #3367a9;
  margin-bottom: 100px;
}

.recept-box .row {
  align-items: center;
}

.recept-box .graphic-content {
  padding-left: calc(50% - 715px);
}

.recept-box .graphic-content h2 {
  font-size: 60px;
  color: #fff;
  margin-bottom: 15px;
  padding-left: 15px;
}

.recept-box .graphic-content p {
  font-size: 24px;
  color: #fff;
  padding-left: 15px;
}

.graphic {
  padding: 140px 0;
  margin-bottom: 300px;
  position: relative;
  background-color: #3367a9;
}

.graphic .graphic-content {
  padding-left: calc(50% - 715px);
  letter-spacing: 2px;
}

.graphic .graphic-content h2 {
  font-size: 60px;
  color: #fff;
  margin-bottom: 15px;
  padding-left: 15px;
}

.graphic .graphic-content p {
  font-size: 24px;
  color: #fff;
  padding-left: 15px;
}

.graphic .graphic-img {
  position: relative;
  top: -140px;
  height: 1px;
  padding-right: 0;
}

.graphic .row {
  margin: 0 auto;
}

.local-body .gallery .gallery-right p {
  color: #fff;
}

.local-body .gallery .gallery-content {
  position: absolute;
  z-index: 1;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100%;
  padding: 70px 60px !important;
  text-align: center !important;
  color: #282828;
}

.local-body .gallery .gallery-content h2 {
  color: #fff;
  font-size: 54px;
}

/*******************************************************************************************************/
.about-graphic {
  color: #3367a9;
  font-size: 28px;
  transition: transform 0.3s;
}

.about-graphic:hover {
  transform: scale(1.1);
}

.about-graphic .container {
  padding: 40px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
  border-radius: 20px;
}

.about-graphic .container .about-graphic-text {
  width: calc(100% - 325px);
  line-height: 52px;
}

.about-team {
  margin: 60px auto;
  transition: transform 0.3s;
}

.about-team:hover {
  transform: scale(1.1);
}

.about-team .container {
  background-color: #3367a9;
  border-radius: 20px;
  margin-top: 60px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 0 20px rgba(51, 103, 169, 0.15);
}

.about-team .container .about-team-title::before, .about-team .container .about-team-title::after, .about-team .about-us .container .about-us-title::before, .about-us .about-team .container .about-us-title::before, .about-team .about-us .container .about-us-title::after, .about-us .about-team .container .about-us-title::after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 1px;
  width: 60%;
  background-color: #fff;
  z-index: 1;
}

.about-team .container .about-team-title {
  color: #fff;
  display: inline-block;
  font-size: 50px;
  font-weight: 700;
  position: relative;
  margin-bottom: 40px;
}

.about-team .container .about-team-title::before {
  left: -80%;
}

.about-team .container .about-team-title::after {
  right: -80%;
}

.about-team .container .about-team-content {
  font-size: 28px;
  color: #fff;
  text-align: left;
  line-height: 1.8;
  padding: 10px 90px;
  letter-spacing: 4px;
  margin-bottom: 30px;
}

.about-us {
  font-size: 18px;
  color: #3367a9;
  margin-bottom: 60px;
  transition: transform 0.3s;
}

.about-us:hover {
  transform: scale(1.1);
}

.about-us .container {
  padding: 40px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
  border-radius: 20px;
  text-align: center;
}

.about-us .about-team .container .about-team-title::before, .about-team .about-us .container .about-team-title::before, .about-us .about-team .container .about-team-title::after, .about-team .about-us .container .about-team-title::after, .about-us .container .about-us-title::before, .about-us .container .about-us-title::after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 1px;
  width: 60%;
  background-color: #3367a9;
  z-index: 1;
}

.about-us .container .about-us-title {
  color: #3367a9;
  display: inline-block;
  font-size: 50px;
  font-weight: 700;
  position: relative;
  margin-bottom: 20px;
}

.about-us .container .about-us-title::before {
  left: -80%;
}

.about-us .container .about-us-title::after {
  right: -80%;
}

.about-us .container .about-us-content {
  text-align: left;
  padding-left: 80px;
}

.about-us .container .about-us-content .col-4 {
  padding-left: 100px;
}

.about-us .container .about-us-content h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 5px;
}

.about-us .container .about-us-content p {
  line-height: 30px;
  margin-bottom: 5px;
}

.about-us .container .about-us-content .float-right {
  width: calc(100% - 80px);
}

html.en header .header-nav .nav-level1 .level1-item {
  margin-right: 80px;
}

html.en header .header-nav .nav-level1 .level1-item .level1-link {
  margin-top: 5px;
}

html.en header .header-nav .nav-level1 .level1-item .nav-level2 .level2-item {
  font-size: 18px;
  padding: 10px 15px;
}

html.en footer .container a {
  font-size: 24px;
}

html.en .index-body .banner .banner-content .banner-title h1 {
  font-size: 120px;
  letter-spacing: 0;
}

html.en .index-body .banner .banner-content .banner-title p {
  font-size: 36px;
  color: #fff;
  padding: 0 50px;
}

html.en .index-body .info-list .list-box p {
  font-size: 24px;
}

html.en .index-body .info-list .list-box span {
  font-size: 14px;
}

html.en .index-body .customer-show h2 {
  letter-spacing: 0;
}

html.en .receipt-body .banner .banner-content .banner-title {
  left: 15px;
  transform: translateY(-50%);
}

html.en .receipt-body .banner .banner-content .banner-title h1 {
  line-height: initial;
  letter-spacing: 0;
}

html.en .receipt-body .gallery .gallery-left .gallery-item .gallery-content h2,
html.en .receipt-body .gallery .gallery-right .gallery-item .gallery-content h2 {
  font-size: 30px;
}

html.en .receipt-body .graphic .graphic-content {
  letter-spacing: 0;
}

html.en .receipt-body .graphic .graphic-content h2 {
  font-size: 44px;
}

html.en .receipt-body .graphic .graphic-content p {
  font-size: 18px;
}

html.en .local-body .banner .banner-title {
  padding: 0 50px;
}

html.en .local-body .banner .banner-title h1 {
  font-size: 100px;
  line-height: initial;
  letter-spacing: 0;
  margin-bottom: 50px;
}

html.en .local-body .banner .banner-title p {
  letter-spacing: 0;
  font-size: 32px;
}

html.en .local-body .banner .banner-botton ul h3 {
  font-size: 32px;
  letter-spacing: 0;
}

html.en .local-body .banner .banner-botton ul p {
  font-size: 18px;
  letter-spacing: 0;
}

html.en .local-body .local-list .col-4 {
  padding: 0 15px;
}

html.en .local-body .local-list h4 {
  font-size: 24px;
}

html.en .about-body .banner .banner-title h1 {
  font-size: 80px;
  letter-spacing: 0;
}

html.en .about-body .about-graphic {
  font-size: 20px;
}

html.en .about-body .about-graphic .container .about-graphic-text {
  line-height: 36px;
}

html.en .about-body .about-team .container .about-team-title {
  text-transform: uppercase;
}

html.en .about-body .about-team .container .about-team-content {
  letter-spacing: 0;
}

html.en .about-body .about-us .container {
  font-size: 16px;
}

html.en .about-body .about-us .container .about-us-title {
  text-transform: uppercase;
}

html.en .about-body .about-us .container .about-us-content .float-right {
  width: calc(100% - 120px);
}

.api-body {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  color: #1a1f36;
  letter-spacing: .67px;
}

.api-body ::-webkit-scrollbar {
  width: 10px;
  height: 10px;
  background-color: #F5F5F5;
}

.api-body ::-webkit-scrollbar-track {
  background: #eee;
}

.api-body ::-webkit-scrollbar-thumb {
  background-color: #999;
}

.api-body aside {
  width: 300px;
  height: 100%;
  background-color: #f7f8fc;
  border-right: 1px solid #e3e8ee;
  overflow-y: auto;
}

.api-body aside .aside-list {
  padding: 20px 0;
}

.api-body aside .aside-link,
.api-body aside .aside-title {
  padding: 5px;
  cursor: pointer;
  line-height: 32px;
  padding-left: 40px;
  transition: all .3s;
  font-weight: 700;
  font-size: 16px;
}

.api-body aside .aside-link:hover,
.api-body aside .aside-title:hover {
  color: #5469d4;
}

.api-body aside .aside-link {
  font-size: 14px;
  font-weight: 500;
  padding-left: 60px;
}

.api-body aside .aside-title.active {
  color: #E42832;
}

.api-body section {
  width: calc(100% - 300px);
  height: 100%;
}

.iframe-body {
  font: 14px/1.5 Microsoft Yahei,微软雅黑,Tahoma,Arial,Helvetica,STHeiti;
  padding: 20px;
}

.iframe-body a {
  color: cornflowerblue;
  text-decoration: underline;
}

.iframe-body ul {
  margin-bottom: 16px;
  padding-left: 2em;
}

.iframe-body ul li {
  list-style-type: disc;
  margin-bottom: 5px;
  line-height: 1.6;
}

.iframe-body p {
  margin-bottom: 5px;
}

.iframe-body h1 {
  margin: 30px auto 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e3e8ee;
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
}

.iframe-body h2 {
  font-size: 2rem;
  margin-bottom: 16px;
  font-weight: 700;
  line-height: 1.6;
  padding-bottom: 5px;
}

.iframe-body h3 {
  font-size: 1.5rem;
  margin-bottom: 16px;
  font-weight: 700;
  line-height: 30px;
}

.iframe-body h4 {
  font-size: 16px;
  font-weight: 700;
  line-height: 26px;
  margin-bottom: 10px;
}

.iframe-body section {
  max-width: 1000px;
  width: 100%;
  padding: 10px;
  margin: 0 auto;
}

.iframe-body pre {
  background-color: #fcfcfc;
  border: 1px solid #e1e1e8;
  margin: 15px 0;
  padding: 0 15px;
  border-left: 8px solid #90CAF9;
  white-space: pre-wrap;
  line-height: 22px;
}

.iframe-body pre code {
  display: block;
}

.iframe-body .span-url {
  color: #d14;
  border: 1px solid #e3e8ee;
  background: #f6f6f6;
  padding: 3px 8px;
  border-radius: 3px;
}

.iframe-body tr.info {
  background: #fcf8e3 !important;
}

.iframe-body .hljs-string {
  color: green;
}

.iframe-body .back-top {
  font-size: 40px;
  position: fixed;
  right: 10%;
  bottom: 10%;
  z-index: 10;
  width: 40px;
  height: 40px;
  color: #fff;
  background-color: #5469d4;
  text-align: center;
  transform: rotate(90deg);
  line-height: 34px;
  text-decoration: none;
}

.title-box {
  text-align: center;
  padding: 30px 0;
}

.title-box .title1 {
  font-size: 54px;
  font-weight: 600;
}

.title-box .title2 {
  width: 300px;
  border-bottom: 2px solid #0072d8;
  margin: 30px auto 20px;
}

.title-box .title3 {
  font-size: 26px;
  font-weight: 600;
  color: #0072d8;
}

.index-box {
  background: url("../images/index-box-bg1.jpg");
  background-size: 100% 100%;
  position: relative;
  height: 1000px;
}

.index-box .index-box-bg {
  background: url("../images/index-box-bg2.jpg");
  background-size: 100% 100%;
  position: absolute;
  top: 0;
  height: 70px;
  left: 0;
  width: 100%;
  z-index: 10;
}

.index-box .index-box-item {
  height: 100%;
  display: flex;
}

.index-box .index-box-item li {
  width: 25%;
  border-right: 1px solid #fff;
}

.index-box .index-box-item li:last-child {
  border-right: none;
}

.index-box .index-box-item li .flip {
  transform: translate3d(0, 0, 0);
  margin: 0px;
  color: #fff;
  height: 100%;
}

.index-box .index-box-item li .flip .flip-box {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.index-box .index-box-item li .flip .flip-box:hover .flip-item-back {
  z-index: 2;
  transform: rotateY(0deg);
}

.index-box .index-box-item li .flip .flip-box:hover .flip-item-front {
  z-index: 1;
  transform: rotateY(180deg);
}

.index-box .index-box-item li .flip .flip-box .flip-item-front {
  transform: rotateY(0deg);
  z-index: 2;
}

.index-box .index-box-item li .flip .flip-box .flip-item {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transition: all .5s ease-in-out;
  transform-style: preserve-3d;
  backface-visibility: hidden;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
}

.index-box .index-box-item li .flip .flip-box .flip-item div {
  font-size: 40px;
}

.index-box .index-box-item li .flip .flip-box .flip-item-back {
  transform: rotateY(180deg);
  z-index: 1;
  background-color: rgba(0, 114, 216, 0.5);
}

.index-box .index-box-item li .flip .flip-box .item-card {
  width: 90%;
  margin: 0 5%;
}

.index-box .index-box-item li .flip .flip-box .item-card .item-title {
  font-size: 40px;
  text-align: center;
  border-bottom: 2px solid #f1f1f1;
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.index-box .index-box-item li .flip .flip-box .item-card .box312b {
  text-align: center;
  font-size: 16px;
  margin-bottom: 40px;
}

.index-box .index-box-item li .flip .flip-box .item-card .box312c {
  font-size: 18px;
  min-height: 250px;
}

.choose-box {
  height: 570px;
}

.choose-box .choose-box-bg {
  position: absolute;
  top: 0;
  width: 100%;
  left: 0;
  height: 125px;
  z-index: 2;
}

.choose-box .choose-box-bg img {
  width: 100%;
  height: 100%;
  max-width: 100%;
}

.choose-box .choose-content {
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: #fff;
  z-index: 1;
}

.choose-box .choose-content .choose-new {
  height: 100%;
  padding: 0;
}

.choose-box .choose-content .choose-new ul {
  display: flex;
  justify-content: space-between;
  height: 100%;
  padding-bottom: 30px;
}

.choose-box .choose-content .choose-new ul li {
  background: #f7f9fc;
  width: 32%;
  margin-right: 2%;
  height: 100%;
}

.choose-box .choose-content .choose-new ul li .choose-new-box {
  position: relative;
  top: 140px;
  padding: 0 30px;
}

.choose-box .choose-content .choose-new ul li .choose-new-box .choose-new-img {
  margin-bottom: 25px;
  height: 200px;
}

.choose-box .choose-content .choose-new ul li .choose-new-box .choose-new-img img {
  width: 100%;
  height: 100%;
}

.choose-box .choose-content .choose-new ul li .choose-new-box .choose-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
}

.choose-box .choose-content .choose-new ul li .choose-new-box .choose-sub-title {
  color: #4d4e4e;
  font-size: 16px;
}

.advantages {
  background-color: #f7f9fc;
}

.advantages .advantages-bg {
  background: url("../images/index-b4.png");
  height: 125px;
  background-size: 100% 100%;
}

.advantages .advantages-content {
  margin-top: 30px;
  padding-bottom: 40px;
}

.advantages .advantages-content .advantages-box {
  padding: 30px;
  height: 250px;
  background-color: #fff;
  align-items: center;
}

.advantages .advantages-content .advantages-box .advantages-img {
  margin-right: 20px;
  width: 120px;
  height: 120px;
  flex-shrink: 0;
}

.advantages .advantages-content .advantages-box .adv-box .adv-title {
  font-size: 20px;
  font-weight: 600;
}

.advantages .advantages-content .advantages-box .adv-box .adv-content {
  margin-top: 10px;
  font-size: 16px;
  color: #545454;
}

.service-box {
  width: 100%;
  background: #f7f9fc;
}

.service-box .service-box-bg {
  background: url(../images/index-b4.png);
  height: 125px;
  background-size: 100% 100%;
}

.service-box .container {
  margin-top: 30px;
  padding-bottom: 40px;
  text-align: center;
}

.service-box .container img {
  max-width: 80%;
}

.global-box {
  width: 100%;
  background: #f7f9fc;
}

.global-box .global-box-bg {
  background: url(../images/index-b4.png);
  height: 125px;
  background-size: 100% 100%;
}

@media only screen and (max-width: 1520px) {
  .about-body .banner .banner-content-img {
    top: -350px;
  }
  .about-body .banner .banner-content-img img {
    padding: 0 180px;
  }
}

@media only screen and (max-width: 1400px) {
  .receipt-body .banner .banner-title h1 {
    font-size: 64px;
    line-height: 80px;
  }
  .receipt-body .graphic {
    padding: 100px 0;
    margin-bottom: 200px;
  }
  .receipt-body .graphic .graphic-img {
    top: -100px;
  }
  .receipt-body .graphic .graphic-content h2 {
    font-size: 48px;
    color: #fff;
  }
  .receipt-body .graphic .graphic-content p {
    font-size: 20px;
  }
  .index-body .banner .banner-content .banner-title h1 {
    font-size: 100px;
  }
  .index-body .banner .banner-content .banner-title p {
    font-size: 36px;
  }
  .index-body .info-list .list-box p {
    font-size: 32px;
  }
  .index-body .info-list .list-box span {
    font-size: 16px;
  }
  .index-body .customer-show h2 {
    font-size: 36px;
  }
  .local-body .banner {
    margin-bottom: 200px;
  }
  .local-body .banner .banner-title h1 {
    font-size: 100px;
  }
  .local-body .banner .banner-title p {
    font-size: 36px;
  }
  .local-body .banner .banner-botton ul {
    padding: 0 15px;
  }
  .local-body .banner .banner-botton ul li {
    margin-bottom: 20px;
  }
  .local-body .banner .banner-botton ul h3 {
    font-size: 42px;
  }
  .local-body .local-list .container {
    padding: 60px 15px;
  }
  .local-body .local-list .container img {
    margin-bottom: 40px;
  }
  .about-body .banner {
    margin-bottom: 440px;
  }
  .about-body .banner .banner-title {
    transform: translate(-50%, -65%);
  }
  .about-body .banner .banner-title h1 {
    font-size: 100px;
  }
  .about-body .banner .banner-title .banner-content-list {
    margin: 100px auto;
  }
  .about-body .banner .banner-content-img {
    top: -378px;
  }
  .about-body .banner .banner-content-img img {
    padding: 0 120px;
  }
  footer .container {
    padding: 30px 15px;
  }
  footer .container a {
    font-size: 24px;
  }
  html.en .index-body .banner .banner-content .banner-title h1 {
    font-size: 80px;
  }
}

@media only screen and (max-width: 1280px) {
  .receipt-body .banner .banner-title {
    padding-left: 30px;
  }
  .receipt-body .banner .banner-title h1 {
    font-size: 60px;
    line-height: 80px;
  }
  .receipt-body .gallery {
    margin-bottom: 60px;
  }
  .receipt-body .gallery .gallery-left .gallery-item {
    margin-bottom: 35px;
  }
  .receipt-body .gallery .gallery-item .gallery-content h2 {
    font-size: 36px;
  }
  .receipt-body .graphic {
    padding: 80px 15px;
    margin-bottom: 200px;
  }
  .receipt-body .graphic .graphic-img {
    top: -80px;
    right: -15px;
  }
  .receipt-body .graphic .graphic-content h2 {
    font-size: 48px;
  }
  .receipt-body .graphic .graphic-content p {
    font-size: 20px;
  }
  .local-body .banner {
    margin-bottom: 200px;
  }
  .local-body .banner .banner-title {
    top: 300px;
  }
  .local-body .banner .banner-title h1 {
    font-size: 90px;
    line-height: 160px;
  }
  .local-body .banner .banner-title p {
    font-size: 30px;
  }
  .local-body .banner .banner-botton ul h3 {
    font-size: 36px;
    letter-spacing: 5px;
  }
  .local-body .banner .banner-botton ul p {
    font-size: 18px;
    letter-spacing: 2px;
  }
  .local-body .local-list .container {
    padding: 60px 15px;
  }
  .local-body .local-list .container img {
    margin-bottom: 45px;
  }
  .about-body .banner .banner-title h1 {
    font-size: 80px;
  }
  .about-body .banner .banner-title .banner-content-list {
    margin: 100px auto;
  }
  .about-body .banner .banner-title .banner-content-list img {
    width: 78px;
  }
  .about-body .banner .banner-title .banner-content-list p {
    font-size: 16px;
  }
  .about-body .banner .banner-content-img {
    top: -338px;
  }
  .about-body .banner .banner-content-img img {
    padding: 0 80px;
  }
  .about-body .about-graphic {
    padding: 0 15px;
    font-size: 22px;
  }
  .about-body .about-team {
    padding: 0 15px;
  }
  .about-body .about-team .container .about-team-title {
    font-size: 42px;
  }
  .about-body .about-team .container .about-team-content span {
    font-size: 16px;
  }
  .about-body .about-us {
    font-size: 16px;
    padding: 0 15px;
  }
  .about-body .about-us .container {
    padding: 30px;
  }
  .about-body .about-us .container .about-us-title {
    font-size: 42px;
  }
  html.en header .header-logo {
    margin-right: 80px;
  }
  html.en header .header-nav .nav-level1 .level1-item {
    margin-right: 60px;
  }
}
