@charset "UTF-8";
/*
0 - 600px:      Phone
600 - 900px:    Tablet portrait
900 - 1200px:   Tablet landscape
[1200 - 1800] is where our normal styles apply
1800px + :      Big desktop

$breakpoint arguement choices:
- phone
- tab-port
- tab-land
- big-desktop

ORDER: Base + typography > general layout + grid > page layout > components

1em = 16px
*/
@keyframes moveInLeft {
  0% {
    opacity: 0;
    transform: translateX(-10rem);
  }
  80% {
    transform: translateX(1rem);
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}
@keyframes moveInRight {
  0% {
    opacity: 0;
    transform: translateX(10rem);
  }
  80% {
    transform: translateX(-1rem);
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}
@keyframes moveInBottom {
  0% {
    opacity: 0;
    transform: translateY(3rem);
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}
*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
  list-style: none;
}

a {
  text-decoration: none;
}

html {
  font-size: 62.5%;
}
@media only screen and (max-width: 75em) {
  html {
    font-size: 56.25%;
  }
}
@media only screen and (max-width: 62em) {
  html {
    font-size: 50%;
  }
}
@media only screen and (max-width: 112.5em) {
  html {
    font-size: 55%;
  }
}
@media only screen and (min-width: 112.5em) {
  html {
    font-size: 62.5%;
  }
}

body {
  box-sizing: border-box;
}
@media only screen and (max-width: 75em) {
  body {
    padding-top: 10rem;
  }
}
@media only screen and (max-width: 62em) {
  body {
    padding-top: 8rem;
  }
}
@media only screen and (max-width: 48em) {
  body {
    padding-top: 6rem;
  }
}

.inner-body {
  box-sizing: border-box;
  padding-top: 10rem;
}
@media only screen and (max-width: 75em) {
  .inner-body {
    padding-top: 10rem;
  }
}
@media only screen and (max-width: 62em) {
  .inner-body {
    padding-top: 8rem;
  }
}
@media only screen and (max-width: 48em) {
  .inner-body {
    padding-top: 6rem;
  }
}

::selection {
  background-color: #471900;
  color: #ffffff;
}

@font-face {
  font-family: yh-bold;
  src: url("../font-family/MSYH_Bold.ttf");
}
@font-face {
  font-family: yh;
  src: url("../font-family/MSYH_Regular.ttf");
}
@font-face {
  font-family: tm;
  src: url("../font-family/Times_Roman.ttf");
}
@font-face {
  font-family: tm-bold;
  src: url("../font-family/Times_Bold.ttf");
}
body {
  font-weight: 400;
  /*font-size: 16px;*/
  line-height: 1.7;
  color: #777;
}

h1,
h2,
h3,
h4 {
  font-weight: 400;
}

img {
  display: block;
  max-width: 100%;
}

.container {
  width: 100%;
  max-width: 140rem;
  margin: 0 auto;
  padding: 0 5rem;
}

.hidden {
  display: none;
}

.block {
  display: block;
}

.inline-block {
  display: inline-block;
}

.flex {
  display: flex;
}

.wrap {
  flex-wrap: wrap;
}

.justify-between {
  justify-content: space-between;
}

.justify-center {
  justify-content: center;
}

.justify-end {
  justify-content: end;
}

.items-center {
  align-items: center;
}

.tc {
  text-align: center;
}

.tr {
  text-align: right;
}

@media only screen and (max-width: 48em) {
  .sm\:hidden {
    display: none;
  }

  .container {
    padding: 0 1rem;
  }
}
@media only screen and (max-width: 62em) {
  .md\:hidden {
    display: none;
  }

  .container {
    padding: 0 2rem;
  }
}
@media only screen and (min-width: 62em) {
  .lg\:hidden {
    display: none;
  }

  .container {
    padding: 0 3rem;
  }
}
.col-1 {
  flex: 0 0 100%;
  max-width: 100%;
}

.gutter-1 {
  margin-left: -0.5rem;
  margin-right: -0.5rem;
}
.gutter-1 > [class^=col-] {
  padding: 0.5rem;
}

.m-1 {
  margin: 1rem;
}

.mt-1 {
  margin-top: 1rem;
}

.mr-1 {
  margin-right: 1rem;
}

.mb-1 {
  margin-bottom: 1rem;
}

.ml-1 {
  margin-left: 1rem;
}

.p-1 {
  padding: 1rem;
}

.pt-1 {
  padding-top: 1rem;
}

.pr-1 {
  padding-right: 1rem;
}

.pb-1 {
  padding-bottom: 1rem;
}

.pl-1 {
  padding-left: 1rem;
}

.px-1 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.py-1 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.col-2 {
  flex: 0 0 50%;
  max-width: 50%;
}

.gutter-2 {
  margin-left: -1rem;
  margin-right: -1rem;
}
.gutter-2 > [class^=col-] {
  padding: 1rem;
}

.m-2 {
  margin: 2rem;
}

.mt-2 {
  margin-top: 2rem;
}

.mr-2 {
  margin-right: 2rem;
}

.mb-2 {
  margin-bottom: 2rem;
}

.ml-2 {
  margin-left: 2rem;
}

.p-2 {
  padding: 2rem;
}

.pt-2 {
  padding-top: 2rem;
}

.pr-2 {
  padding-right: 2rem;
}

.pb-2 {
  padding-bottom: 2rem;
}

.pl-2 {
  padding-left: 2rem;
}

.px-2 {
  padding-left: 2rem;
  padding-right: 2rem;
}

.py-2 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.col-3 {
  flex: 0 0 33.3333333333%;
  max-width: 33.3333333333%;
}

.gutter-3 {
  margin-left: -1.5rem;
  margin-right: -1.5rem;
}
.gutter-3 > [class^=col-] {
  padding: 1.5rem;
}

.m-3 {
  margin: 3rem;
}

.mt-3 {
  margin-top: 3rem;
}

.mr-3 {
  margin-right: 3rem;
}

.mb-3 {
  margin-bottom: 3rem;
}

.ml-3 {
  margin-left: 3rem;
}

.p-3 {
  padding: 3rem;
}

.pt-3 {
  padding-top: 3rem;
}

.pr-3 {
  padding-right: 3rem;
}

.pb-3 {
  padding-bottom: 3rem;
}

.pl-3 {
  padding-left: 3rem;
}

.px-3 {
  padding-left: 3rem;
  padding-right: 3rem;
}

.py-3 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.col-4 {
  flex: 0 0 25%;
  max-width: 25%;
}

.gutter-4 {
  margin-left: -2rem;
  margin-right: -2rem;
}
.gutter-4 > [class^=col-] {
  padding: 2rem;
}

.m-4 {
  margin: 4rem;
}

.mt-4 {
  margin-top: 4rem;
}

.mr-4 {
  margin-right: 4rem;
}

.mb-4 {
  margin-bottom: 4rem;
}

.ml-4 {
  margin-left: 4rem;
}

.p-4 {
  padding: 4rem;
}

.pt-4 {
  padding-top: 4rem;
}

.pr-4 {
  padding-right: 4rem;
}

.pb-4 {
  padding-bottom: 4rem;
}

.pl-4 {
  padding-left: 4rem;
}

.px-4 {
  padding-left: 4rem;
  padding-right: 4rem;
}

.py-4 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.col-5 {
  flex: 0 0 20%;
  max-width: 20%;
}

.gutter-5 {
  margin-left: -2.5rem;
  margin-right: -2.5rem;
}
.gutter-5 > [class^=col-] {
  padding: 2.5rem;
}

.m-5 {
  margin: 5rem;
}

.mt-5 {
  margin-top: 5rem;
}

.mr-5 {
  margin-right: 5rem;
}

.mb-5 {
  margin-bottom: 5rem;
}

.ml-5 {
  margin-left: 5rem;
}

.p-5 {
  padding: 5rem;
}

.pt-5 {
  padding-top: 5rem;
}

.pr-5 {
  padding-right: 5rem;
}

.pb-5 {
  padding-bottom: 5rem;
}

.pl-5 {
  padding-left: 5rem;
}

.px-5 {
  padding-left: 5rem;
  padding-right: 5rem;
}

.py-5 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.col-6 {
  flex: 0 0 16.6666666667%;
  max-width: 16.6666666667%;
}

.gutter-6 {
  margin-left: -3rem;
  margin-right: -3rem;
}
.gutter-6 > [class^=col-] {
  padding: 3rem;
}

.m-6 {
  margin: 6rem;
}

.mt-6 {
  margin-top: 6rem;
}

.mr-6 {
  margin-right: 6rem;
}

.mb-6 {
  margin-bottom: 6rem;
}

.ml-6 {
  margin-left: 6rem;
}

.p-6 {
  padding: 6rem;
}

.pt-6 {
  padding-top: 6rem;
}

.pr-6 {
  padding-right: 6rem;
}

.pb-6 {
  padding-bottom: 6rem;
}

.pl-6 {
  padding-left: 6rem;
}

.px-6 {
  padding-left: 6rem;
  padding-right: 6rem;
}

.py-6 {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.col-7 {
  flex: 0 0 14.2857142857%;
  max-width: 14.2857142857%;
}

.gutter-7 {
  margin-left: -3.5rem;
  margin-right: -3.5rem;
}
.gutter-7 > [class^=col-] {
  padding: 3.5rem;
}

.m-7 {
  margin: 7rem;
}

.mt-7 {
  margin-top: 7rem;
}

.mr-7 {
  margin-right: 7rem;
}

.mb-7 {
  margin-bottom: 7rem;
}

.ml-7 {
  margin-left: 7rem;
}

.p-7 {
  padding: 7rem;
}

.pt-7 {
  padding-top: 7rem;
}

.pr-7 {
  padding-right: 7rem;
}

.pb-7 {
  padding-bottom: 7rem;
}

.pl-7 {
  padding-left: 7rem;
}

.px-7 {
  padding-left: 7rem;
  padding-right: 7rem;
}

.py-7 {
  padding-top: 7rem;
  padding-bottom: 7rem;
}

.col-8 {
  flex: 0 0 12.5%;
  max-width: 12.5%;
}

.gutter-8 {
  margin-left: -4rem;
  margin-right: -4rem;
}
.gutter-8 > [class^=col-] {
  padding: 4rem;
}

.m-8 {
  margin: 8rem;
}

.mt-8 {
  margin-top: 8rem;
}

.mr-8 {
  margin-right: 8rem;
}

.mb-8 {
  margin-bottom: 8rem;
}

.ml-8 {
  margin-left: 8rem;
}

.p-8 {
  padding: 8rem;
}

.pt-8 {
  padding-top: 8rem;
}

.pr-8 {
  padding-right: 8rem;
}

.pb-8 {
  padding-bottom: 8rem;
}

.pl-8 {
  padding-left: 8rem;
}

.px-8 {
  padding-left: 8rem;
  padding-right: 8rem;
}

.py-8 {
  padding-top: 8rem;
  padding-bottom: 8rem;
}

@media only screen and (min-width: 62em) {
  .col-lg-1 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .gutter-lg-1 {
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }
  .gutter-lg-1 > [class^=col-] {
    padding: 0.5rem;
  }

  .m-lg-1 {
    margin: 1rem;
  }

  .mt-lg-1 {
    margin-top: 1rem;
  }

  .mr-lg-1 {
    margin-right: 1rem;
  }

  .mb-lg-1 {
    margin-bottom: 1rem;
  }

  .ml-lg-1 {
    margin-left: 1rem;
  }

  .p-lg-1 {
    padding: 1rem;
  }

  .pt-lg-1 {
    padding-top: 1rem;
  }

  .pr-lg-1 {
    padding-right: 1rem;
  }

  .pb-lg-1 {
    padding-bottom: 1rem;
  }

  .pl-lg-1 {
    padding-left: 1rem;
  }

  .px-lg-1 {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .py-lg-1 {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .col-lg-2 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .gutter-lg-2 {
    margin-left: -1rem;
    margin-right: -1rem;
  }
  .gutter-lg-2 > [class^=col-] {
    padding: 1rem;
  }

  .m-lg-2 {
    margin: 2rem;
  }

  .mt-lg-2 {
    margin-top: 2rem;
  }

  .mr-lg-2 {
    margin-right: 2rem;
  }

  .mb-lg-2 {
    margin-bottom: 2rem;
  }

  .ml-lg-2 {
    margin-left: 2rem;
  }

  .p-lg-2 {
    padding: 2rem;
  }

  .pt-lg-2 {
    padding-top: 2rem;
  }

  .pr-lg-2 {
    padding-right: 2rem;
  }

  .pb-lg-2 {
    padding-bottom: 2rem;
  }

  .pl-lg-2 {
    padding-left: 2rem;
  }

  .px-lg-2 {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .py-lg-2 {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .col-lg-3 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .gutter-lg-3 {
    margin-left: -1.5rem;
    margin-right: -1.5rem;
  }
  .gutter-lg-3 > [class^=col-] {
    padding: 1.5rem;
  }

  .m-lg-3 {
    margin: 3rem;
  }

  .mt-lg-3 {
    margin-top: 3rem;
  }

  .mr-lg-3 {
    margin-right: 3rem;
  }

  .mb-lg-3 {
    margin-bottom: 3rem;
  }

  .ml-lg-3 {
    margin-left: 3rem;
  }

  .p-lg-3 {
    padding: 3rem;
  }

  .pt-lg-3 {
    padding-top: 3rem;
  }

  .pr-lg-3 {
    padding-right: 3rem;
  }

  .pb-lg-3 {
    padding-bottom: 3rem;
  }

  .pl-lg-3 {
    padding-left: 3rem;
  }

  .px-lg-3 {
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .py-lg-3 {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .col-lg-4 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .gutter-lg-4 {
    margin-left: -2rem;
    margin-right: -2rem;
  }
  .gutter-lg-4 > [class^=col-] {
    padding: 2rem;
  }

  .m-lg-4 {
    margin: 4rem;
  }

  .mt-lg-4 {
    margin-top: 4rem;
  }

  .mr-lg-4 {
    margin-right: 4rem;
  }

  .mb-lg-4 {
    margin-bottom: 4rem;
  }

  .ml-lg-4 {
    margin-left: 4rem;
  }

  .p-lg-4 {
    padding: 4rem;
  }

  .pt-lg-4 {
    padding-top: 4rem;
  }

  .pr-lg-4 {
    padding-right: 4rem;
  }

  .pb-lg-4 {
    padding-bottom: 4rem;
  }

  .pl-lg-4 {
    padding-left: 4rem;
  }

  .px-lg-4 {
    padding-left: 4rem;
    padding-right: 4rem;
  }

  .py-lg-4 {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .col-lg-5 {
    flex: 0 0 20%;
    max-width: 20%;
  }

  .gutter-lg-5 {
    margin-left: -2.5rem;
    margin-right: -2.5rem;
  }
  .gutter-lg-5 > [class^=col-] {
    padding: 2.5rem;
  }

  .m-lg-5 {
    margin: 5rem;
  }

  .mt-lg-5 {
    margin-top: 5rem;
  }

  .mr-lg-5 {
    margin-right: 5rem;
  }

  .mb-lg-5 {
    margin-bottom: 5rem;
  }

  .ml-lg-5 {
    margin-left: 5rem;
  }

  .p-lg-5 {
    padding: 5rem;
  }

  .pt-lg-5 {
    padding-top: 5rem;
  }

  .pr-lg-5 {
    padding-right: 5rem;
  }

  .pb-lg-5 {
    padding-bottom: 5rem;
  }

  .pl-lg-5 {
    padding-left: 5rem;
  }

  .px-lg-5 {
    padding-left: 5rem;
    padding-right: 5rem;
  }

  .py-lg-5 {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .col-lg-6 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .gutter-lg-6 {
    margin-left: -3rem;
    margin-right: -3rem;
  }
  .gutter-lg-6 > [class^=col-] {
    padding: 3rem;
  }

  .m-lg-6 {
    margin: 6rem;
  }

  .mt-lg-6 {
    margin-top: 6rem;
  }

  .mr-lg-6 {
    margin-right: 6rem;
  }

  .mb-lg-6 {
    margin-bottom: 6rem;
  }

  .ml-lg-6 {
    margin-left: 6rem;
  }

  .p-lg-6 {
    padding: 6rem;
  }

  .pt-lg-6 {
    padding-top: 6rem;
  }

  .pr-lg-6 {
    padding-right: 6rem;
  }

  .pb-lg-6 {
    padding-bottom: 6rem;
  }

  .pl-lg-6 {
    padding-left: 6rem;
  }

  .px-lg-6 {
    padding-left: 6rem;
    padding-right: 6rem;
  }

  .py-lg-6 {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .col-lg-7 {
    flex: 0 0 14.2857142857%;
    max-width: 14.2857142857%;
  }

  .gutter-lg-7 {
    margin-left: -3.5rem;
    margin-right: -3.5rem;
  }
  .gutter-lg-7 > [class^=col-] {
    padding: 3.5rem;
  }

  .m-lg-7 {
    margin: 7rem;
  }

  .mt-lg-7 {
    margin-top: 7rem;
  }

  .mr-lg-7 {
    margin-right: 7rem;
  }

  .mb-lg-7 {
    margin-bottom: 7rem;
  }

  .ml-lg-7 {
    margin-left: 7rem;
  }

  .p-lg-7 {
    padding: 7rem;
  }

  .pt-lg-7 {
    padding-top: 7rem;
  }

  .pr-lg-7 {
    padding-right: 7rem;
  }

  .pb-lg-7 {
    padding-bottom: 7rem;
  }

  .pl-lg-7 {
    padding-left: 7rem;
  }

  .px-lg-7 {
    padding-left: 7rem;
    padding-right: 7rem;
  }

  .py-lg-7 {
    padding-top: 7rem;
    padding-bottom: 7rem;
  }

  .col-lg-8 {
    flex: 0 0 12.5%;
    max-width: 12.5%;
  }

  .gutter-lg-8 {
    margin-left: -4rem;
    margin-right: -4rem;
  }
  .gutter-lg-8 > [class^=col-] {
    padding: 4rem;
  }

  .m-lg-8 {
    margin: 8rem;
  }

  .mt-lg-8 {
    margin-top: 8rem;
  }

  .mr-lg-8 {
    margin-right: 8rem;
  }

  .mb-lg-8 {
    margin-bottom: 8rem;
  }

  .ml-lg-8 {
    margin-left: 8rem;
  }

  .p-lg-8 {
    padding: 8rem;
  }

  .pt-lg-8 {
    padding-top: 8rem;
  }

  .pr-lg-8 {
    padding-right: 8rem;
  }

  .pb-lg-8 {
    padding-bottom: 8rem;
  }

  .pl-lg-8 {
    padding-left: 8rem;
  }

  .px-lg-8 {
    padding-left: 8rem;
    padding-right: 8rem;
  }

  .py-lg-8 {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
}
@media only screen and (max-width: 62em) {
  .col-md-1 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .gutter-md-1 {
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }
  .gutter-md-1 > [class^=col-] {
    padding: 0.5rem;
  }

  .m-md-1 {
    margin: 1rem;
  }

  .mt-md-1 {
    margin-top: 1rem;
  }

  .mr-md-1 {
    margin-right: 1rem;
  }

  .mb-md-1 {
    margin-bottom: 1rem;
  }

  .ml-md-1 {
    margin-left: 1rem;
  }

  .p-md-1 {
    padding: 1rem;
  }

  .pt-md-1 {
    padding-top: 1rem;
  }

  .pr-md-1 {
    padding-right: 1rem;
  }

  .pb-md-1 {
    padding-bottom: 1rem;
  }

  .pl-md-1 {
    padding-left: 1rem;
  }

  .px-md-1 {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .py-md-1 {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .col-md-2 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .gutter-md-2 {
    margin-left: -1rem;
    margin-right: -1rem;
  }
  .gutter-md-2 > [class^=col-] {
    padding: 1rem;
  }

  .m-md-2 {
    margin: 2rem;
  }

  .mt-md-2 {
    margin-top: 2rem;
  }

  .mr-md-2 {
    margin-right: 2rem;
  }

  .mb-md-2 {
    margin-bottom: 2rem;
  }

  .ml-md-2 {
    margin-left: 2rem;
  }

  .p-md-2 {
    padding: 2rem;
  }

  .pt-md-2 {
    padding-top: 2rem;
  }

  .pr-md-2 {
    padding-right: 2rem;
  }

  .pb-md-2 {
    padding-bottom: 2rem;
  }

  .pl-md-2 {
    padding-left: 2rem;
  }

  .px-md-2 {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .py-md-2 {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .col-md-3 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .gutter-md-3 {
    margin-left: -1.5rem;
    margin-right: -1.5rem;
  }
  .gutter-md-3 > [class^=col-] {
    padding: 1.5rem;
  }

  .m-md-3 {
    margin: 3rem;
  }

  .mt-md-3 {
    margin-top: 3rem;
  }

  .mr-md-3 {
    margin-right: 3rem;
  }

  .mb-md-3 {
    margin-bottom: 3rem;
  }

  .ml-md-3 {
    margin-left: 3rem;
  }

  .p-md-3 {
    padding: 3rem;
  }

  .pt-md-3 {
    padding-top: 3rem;
  }

  .pr-md-3 {
    padding-right: 3rem;
  }

  .pb-md-3 {
    padding-bottom: 3rem;
  }

  .pl-md-3 {
    padding-left: 3rem;
  }

  .px-md-3 {
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .py-md-3 {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .col-md-4 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .gutter-md-4 {
    margin-left: -2rem;
    margin-right: -2rem;
  }
  .gutter-md-4 > [class^=col-] {
    padding: 2rem;
  }

  .m-md-4 {
    margin: 4rem;
  }

  .mt-md-4 {
    margin-top: 4rem;
  }

  .mr-md-4 {
    margin-right: 4rem;
  }

  .mb-md-4 {
    margin-bottom: 4rem;
  }

  .ml-md-4 {
    margin-left: 4rem;
  }

  .p-md-4 {
    padding: 4rem;
  }

  .pt-md-4 {
    padding-top: 4rem;
  }

  .pr-md-4 {
    padding-right: 4rem;
  }

  .pb-md-4 {
    padding-bottom: 4rem;
  }

  .pl-md-4 {
    padding-left: 4rem;
  }

  .px-md-4 {
    padding-left: 4rem;
    padding-right: 4rem;
  }

  .py-md-4 {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .col-md-5 {
    flex: 0 0 20%;
    max-width: 20%;
  }

  .gutter-md-5 {
    margin-left: -2.5rem;
    margin-right: -2.5rem;
  }
  .gutter-md-5 > [class^=col-] {
    padding: 2.5rem;
  }

  .m-md-5 {
    margin: 5rem;
  }

  .mt-md-5 {
    margin-top: 5rem;
  }

  .mr-md-5 {
    margin-right: 5rem;
  }

  .mb-md-5 {
    margin-bottom: 5rem;
  }

  .ml-md-5 {
    margin-left: 5rem;
  }

  .p-md-5 {
    padding: 5rem;
  }

  .pt-md-5 {
    padding-top: 5rem;
  }

  .pr-md-5 {
    padding-right: 5rem;
  }

  .pb-md-5 {
    padding-bottom: 5rem;
  }

  .pl-md-5 {
    padding-left: 5rem;
  }

  .px-md-5 {
    padding-left: 5rem;
    padding-right: 5rem;
  }

  .py-md-5 {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .col-md-6 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .gutter-md-6 {
    margin-left: -3rem;
    margin-right: -3rem;
  }
  .gutter-md-6 > [class^=col-] {
    padding: 3rem;
  }

  .m-md-6 {
    margin: 6rem;
  }

  .mt-md-6 {
    margin-top: 6rem;
  }

  .mr-md-6 {
    margin-right: 6rem;
  }

  .mb-md-6 {
    margin-bottom: 6rem;
  }

  .ml-md-6 {
    margin-left: 6rem;
  }

  .p-md-6 {
    padding: 6rem;
  }

  .pt-md-6 {
    padding-top: 6rem;
  }

  .pr-md-6 {
    padding-right: 6rem;
  }

  .pb-md-6 {
    padding-bottom: 6rem;
  }

  .pl-md-6 {
    padding-left: 6rem;
  }

  .px-md-6 {
    padding-left: 6rem;
    padding-right: 6rem;
  }

  .py-md-6 {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .col-md-7 {
    flex: 0 0 14.2857142857%;
    max-width: 14.2857142857%;
  }

  .gutter-md-7 {
    margin-left: -3.5rem;
    margin-right: -3.5rem;
  }
  .gutter-md-7 > [class^=col-] {
    padding: 3.5rem;
  }

  .m-md-7 {
    margin: 7rem;
  }

  .mt-md-7 {
    margin-top: 7rem;
  }

  .mr-md-7 {
    margin-right: 7rem;
  }

  .mb-md-7 {
    margin-bottom: 7rem;
  }

  .ml-md-7 {
    margin-left: 7rem;
  }

  .p-md-7 {
    padding: 7rem;
  }

  .pt-md-7 {
    padding-top: 7rem;
  }

  .pr-md-7 {
    padding-right: 7rem;
  }

  .pb-md-7 {
    padding-bottom: 7rem;
  }

  .pl-md-7 {
    padding-left: 7rem;
  }

  .px-md-7 {
    padding-left: 7rem;
    padding-right: 7rem;
  }

  .py-md-7 {
    padding-top: 7rem;
    padding-bottom: 7rem;
  }

  .col-md-8 {
    flex: 0 0 12.5%;
    max-width: 12.5%;
  }

  .gutter-md-8 {
    margin-left: -4rem;
    margin-right: -4rem;
  }
  .gutter-md-8 > [class^=col-] {
    padding: 4rem;
  }

  .m-md-8 {
    margin: 8rem;
  }

  .mt-md-8 {
    margin-top: 8rem;
  }

  .mr-md-8 {
    margin-right: 8rem;
  }

  .mb-md-8 {
    margin-bottom: 8rem;
  }

  .ml-md-8 {
    margin-left: 8rem;
  }

  .p-md-8 {
    padding: 8rem;
  }

  .pt-md-8 {
    padding-top: 8rem;
  }

  .pr-md-8 {
    padding-right: 8rem;
  }

  .pb-md-8 {
    padding-bottom: 8rem;
  }

  .pl-md-8 {
    padding-left: 8rem;
  }

  .px-md-8 {
    padding-left: 8rem;
    padding-right: 8rem;
  }

  .py-md-8 {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
}
@media only screen and (max-width: 48em) {
  .col-sm-1 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .gutter-sm-1 {
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }
  .gutter-sm-1 > [class^=col-] {
    padding: 0.5rem;
  }

  .m-sm-1 {
    margin: 1rem;
  }

  .mt-sm-1 {
    margin-top: 1rem;
  }

  .mr-sm-1 {
    margin-right: 1rem;
  }

  .mb-sm-1 {
    margin-bottom: 1rem;
  }

  .ml-sm-1 {
    margin-left: 1rem;
  }

  .p-sm-1 {
    padding: 1rem;
  }

  .pt-sm-1 {
    padding-top: 1rem;
  }

  .pr-sm-1 {
    padding-right: 1rem;
  }

  .pb-sm-1 {
    padding-bottom: 1rem;
  }

  .pl-sm-1 {
    padding-left: 1rem;
  }

  .px-sm-1 {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .py-sm-1 {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .col-sm-2 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .gutter-sm-2 {
    margin-left: -1rem;
    margin-right: -1rem;
  }
  .gutter-sm-2 > [class^=col-] {
    padding: 1rem;
  }

  .m-sm-2 {
    margin: 2rem;
  }

  .mt-sm-2 {
    margin-top: 2rem;
  }

  .mr-sm-2 {
    margin-right: 2rem;
  }

  .mb-sm-2 {
    margin-bottom: 2rem;
  }

  .ml-sm-2 {
    margin-left: 2rem;
  }

  .p-sm-2 {
    padding: 2rem;
  }

  .pt-sm-2 {
    padding-top: 2rem;
  }

  .pr-sm-2 {
    padding-right: 2rem;
  }

  .pb-sm-2 {
    padding-bottom: 2rem;
  }

  .pl-sm-2 {
    padding-left: 2rem;
  }

  .px-sm-2 {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .py-sm-2 {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .col-sm-3 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .gutter-sm-3 {
    margin-left: -1.5rem;
    margin-right: -1.5rem;
  }
  .gutter-sm-3 > [class^=col-] {
    padding: 1.5rem;
  }

  .m-sm-3 {
    margin: 3rem;
  }

  .mt-sm-3 {
    margin-top: 3rem;
  }

  .mr-sm-3 {
    margin-right: 3rem;
  }

  .mb-sm-3 {
    margin-bottom: 3rem;
  }

  .ml-sm-3 {
    margin-left: 3rem;
  }

  .p-sm-3 {
    padding: 3rem;
  }

  .pt-sm-3 {
    padding-top: 3rem;
  }

  .pr-sm-3 {
    padding-right: 3rem;
  }

  .pb-sm-3 {
    padding-bottom: 3rem;
  }

  .pl-sm-3 {
    padding-left: 3rem;
  }

  .px-sm-3 {
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .py-sm-3 {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .col-sm-4 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .gutter-sm-4 {
    margin-left: -2rem;
    margin-right: -2rem;
  }
  .gutter-sm-4 > [class^=col-] {
    padding: 2rem;
  }

  .m-sm-4 {
    margin: 4rem;
  }

  .mt-sm-4 {
    margin-top: 4rem;
  }

  .mr-sm-4 {
    margin-right: 4rem;
  }

  .mb-sm-4 {
    margin-bottom: 4rem;
  }

  .ml-sm-4 {
    margin-left: 4rem;
  }

  .p-sm-4 {
    padding: 4rem;
  }

  .pt-sm-4 {
    padding-top: 4rem;
  }

  .pr-sm-4 {
    padding-right: 4rem;
  }

  .pb-sm-4 {
    padding-bottom: 4rem;
  }

  .pl-sm-4 {
    padding-left: 4rem;
  }

  .px-sm-4 {
    padding-left: 4rem;
    padding-right: 4rem;
  }

  .py-sm-4 {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .col-sm-5 {
    flex: 0 0 20%;
    max-width: 20%;
  }

  .gutter-sm-5 {
    margin-left: -2.5rem;
    margin-right: -2.5rem;
  }
  .gutter-sm-5 > [class^=col-] {
    padding: 2.5rem;
  }

  .m-sm-5 {
    margin: 5rem;
  }

  .mt-sm-5 {
    margin-top: 5rem;
  }

  .mr-sm-5 {
    margin-right: 5rem;
  }

  .mb-sm-5 {
    margin-bottom: 5rem;
  }

  .ml-sm-5 {
    margin-left: 5rem;
  }

  .p-sm-5 {
    padding: 5rem;
  }

  .pt-sm-5 {
    padding-top: 5rem;
  }

  .pr-sm-5 {
    padding-right: 5rem;
  }

  .pb-sm-5 {
    padding-bottom: 5rem;
  }

  .pl-sm-5 {
    padding-left: 5rem;
  }

  .px-sm-5 {
    padding-left: 5rem;
    padding-right: 5rem;
  }

  .py-sm-5 {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .col-sm-6 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .gutter-sm-6 {
    margin-left: -3rem;
    margin-right: -3rem;
  }
  .gutter-sm-6 > [class^=col-] {
    padding: 3rem;
  }

  .m-sm-6 {
    margin: 6rem;
  }

  .mt-sm-6 {
    margin-top: 6rem;
  }

  .mr-sm-6 {
    margin-right: 6rem;
  }

  .mb-sm-6 {
    margin-bottom: 6rem;
  }

  .ml-sm-6 {
    margin-left: 6rem;
  }

  .p-sm-6 {
    padding: 6rem;
  }

  .pt-sm-6 {
    padding-top: 6rem;
  }

  .pr-sm-6 {
    padding-right: 6rem;
  }

  .pb-sm-6 {
    padding-bottom: 6rem;
  }

  .pl-sm-6 {
    padding-left: 6rem;
  }

  .px-sm-6 {
    padding-left: 6rem;
    padding-right: 6rem;
  }

  .py-sm-6 {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .col-sm-7 {
    flex: 0 0 14.2857142857%;
    max-width: 14.2857142857%;
  }

  .gutter-sm-7 {
    margin-left: -3.5rem;
    margin-right: -3.5rem;
  }
  .gutter-sm-7 > [class^=col-] {
    padding: 3.5rem;
  }

  .m-sm-7 {
    margin: 7rem;
  }

  .mt-sm-7 {
    margin-top: 7rem;
  }

  .mr-sm-7 {
    margin-right: 7rem;
  }

  .mb-sm-7 {
    margin-bottom: 7rem;
  }

  .ml-sm-7 {
    margin-left: 7rem;
  }

  .p-sm-7 {
    padding: 7rem;
  }

  .pt-sm-7 {
    padding-top: 7rem;
  }

  .pr-sm-7 {
    padding-right: 7rem;
  }

  .pb-sm-7 {
    padding-bottom: 7rem;
  }

  .pl-sm-7 {
    padding-left: 7rem;
  }

  .px-sm-7 {
    padding-left: 7rem;
    padding-right: 7rem;
  }

  .py-sm-7 {
    padding-top: 7rem;
    padding-bottom: 7rem;
  }

  .col-sm-8 {
    flex: 0 0 12.5%;
    max-width: 12.5%;
  }

  .gutter-sm-8 {
    margin-left: -4rem;
    margin-right: -4rem;
  }
  .gutter-sm-8 > [class^=col-] {
    padding: 4rem;
  }

  .m-sm-8 {
    margin: 8rem;
  }

  .mt-sm-8 {
    margin-top: 8rem;
  }

  .mr-sm-8 {
    margin-right: 8rem;
  }

  .mb-sm-8 {
    margin-bottom: 8rem;
  }

  .ml-sm-8 {
    margin-left: 8rem;
  }

  .p-sm-8 {
    padding: 8rem;
  }

  .pt-sm-8 {
    padding-top: 8rem;
  }

  .pr-sm-8 {
    padding-right: 8rem;
  }

  .pb-sm-8 {
    padding-bottom: 8rem;
  }

  .pl-sm-8 {
    padding-left: 8rem;
  }

  .px-sm-8 {
    padding-left: 8rem;
    padding-right: 8rem;
  }

  .py-sm-8 {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
}
.percent {
  width: 12rem;
  height: 12rem;
  border-radius: 50%;
  background-color: #ffffff;
  position: relative;
}
.percent__text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 4rem;
  font-weight: 800;
  color: #471900;
}
.percent__text::after {
  content: "%";
  font-size: 1.4rem;
}

.ratio-image {
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  box-sizing: border-box;
  position: relative;
}
.ratio-image--1-of-2, .ratio-image--2-of-4 {
  padding-bottom: 50%;
}
.ratio-image--1-of-3 {
  padding-bottom: 33.33%;
}
.ratio-image--2-of-3 {
  padding-bottom: 66.66%;
}
.ratio-image--1-of-4 {
  padding-bottom: 25%;
}
.ratio-image--3-of-4 {
  padding-bottom: 75%;
}
.ratio-image--1-of-5 {
  padding-bottom: 20%;
}
.ratio-image--2-of-5 {
  padding-bottom: 40%;
}
.ratio-image--3-of-5 {
  padding-bottom: 60%;
}
.ratio-image--4-of-5 {
  padding-bottom: 80%;
}
.ratio-image__box {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
}
.ratio-image__source {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.more-button {
  font-size: 1.6rem;
  color: #666666;
  display: flex;
  align-items: center;
  transition: all 0.3s ease-in-out;
}
.more-button:hover {
  color: #471900;
  font-weight: 600;
}
.more-button::before {
  content: "";
  display: block;
  width: 2.2rem;
  height: 2.2rem;
  background: url(../images/more-icon.png) no-repeat center center/cover;
  margin-right: 4px;
}
.more-button::after {
  content: "";
  font-family: "iconfont";
  content: "";
  margin-left: 4px;
  font-size: 1.8rem;
}

.card {
  position: relative;
}
.card--horizontal {
  display: flex;
}
.card:hover .cover img {
  transform: scale(1.05);
}
.card:hover .info .title,
.card:hover .info .desc {
  color: #C44E2A;
}
.card .cover {
  flex: none;
  overflow: hidden;
}
.card .cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s ease-in-out;
}
.card .info h2 {
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  font-size: 1.6rem;
  color: #111;
  margin-bottom: 1.5rem;
}
.card .info p {
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  font-size: 1.4rem;
  color: #888888;
}
.card--horizontal .info {
  padding-left: 2rem;
}
.card .link {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  z-index: 99;
}

.text-card {
  padding: 0.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.text-card:hover .title {
  color: #471900;
}
.text-card:hover .date {
  color: #471900;
}
.text-card--secondary:hover .title {
  color: #C44E2A;
}
.text-card--secondary:hover .date {
  color: #C44E2A;
}
.text-card > .title {
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  flex: 1;
  font-size: 1.6rem;
  color: #111;
}
.text-card > .date {
  margin-left: 2rem;
  font-size: 1.4rem;
  color: #888888;
  flex: none;
  font-family: tm;
}
.text-card > .date-box {
  flex: none;
}
.text-card > .date-box .main {
  display: block;
  text-align: center;
  font-size: 3rem;
  color: #471900;
  line-height: 1;
  padding-bottom: 0.6rem;
  font-family: tm;
}
.text-card > .date-box .sub {
  display: block;
  text-align: center;
  font-size: 1.3rem;
  color: #471900;
  line-height: 1;
  font-family: tm;
}
.text-card > .link {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  z-index: 99;
}

@media only screen and (max-width: 48em) {
  .feature-card {
    /*display: flex;*/
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
  }

}
.feature-card .title {
  line-height: 1;
  color: #fff;
}
.feature-card .title .num {
  font-size: 4.5rem;
  font-weight: 600;
}
.feature-card .title .unit {
  font-size: 2.2rem;
  font-weight: 400;
}
.feature-card .desc {
  font-size: 1.6rem;
  color: #fff;
}

@media only screen and (max-width: 48em) {
  .fashion-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
  }
}
.fashion-card .title {
  line-height: 1;
  color: #206BEC;
  font-weight: 600;
}
.fashion-card .title .num {
  font-size: 4.5rem;
  font-weight: 600;
  color: #206BEC;
}
.fashion-card .title .unit {
  font-size: 2.2rem;
  font-weight: 400;
  color: #206BEC;
}
.fashion-card .desc {
  font-size: 1.6rem;
  color: #111;
}

.tree-card {
  max-width: 20rem;
  position: relative;
}
@media only screen and (max-width: 48em) {
  .tree-card {
    max-width: 100%;
  }
}
.tree-card .title {
  font-size: 1.8rem;
  color: #111;
}
.tree-card .desc {
  font-size: 1.4rem;
  color: #666;
}
.tree-card .date {
  font-size: 1.8rem;
  color: #3C59EC;
  font-weight: 600;
}
.tree-card::after {
  display: block;
  content: "";
  width: 8px;
  height: 8px;
  background-color: #3C59EC;
  border-radius: 50%;
  outline-offset: 5px;
  outline: 1px solid #3C59EC;
  position: absolute;
  left: 2.5rem;
  bottom: 0;
  transform: translateY(50%);
}
@media only screen and (max-width: 48em) {
  .tree-card::after {
    display: none;
  }
}
.tree-card--1 {
  padding-bottom: 2rem;
}
@media only screen and (max-width: 48em) {
  .tree-card--1 {
    padding-bottom: 0;
    text-align: right;
  }
}
.tree-card--2 {
  padding-top: 2rem;
}
@media only screen and (max-width: 48em) {
  .tree-card--2 {
    padding-top: 0;
  }
}
.tree-card--2::after {
  top: 0;
  transform: translateY(-50%);
}

.culture-image-card {
  position: relative;
}
.culture-image-card .info .title {
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  font-size: 1.6rem;
  text-align: center;
  line-height: 4;
}
.culture-image-card:hover .info .title {
  color: #206bec;
}
.culture-image-card .link {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
}

.env-card {
  position: relative;
}
.env-card .info {
  position: absolute;
  left: 3rem;
  right: 3rem;
  padding-bottom: 0;
  background-color: #fff;
  bottom: 0;
  transform: translateY(50%);
}
.env-card .info .title {
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  font-size: 1.6rem;
  text-align: center;
  line-height: 3;
  margin-bottom: 0;
  padding-bottom: 0;
}
.env-card:hover .info .title {
  color: #206bec;
}
.env-card .link {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
}

.team-card {
  position: relative;
  overflow: hidden;
}
.team-card .info {
  position: absolute;
  left: 0;
  width: 70%;
  bottom: 0;
  padding: 2rem;
  background-color: rgba(0, 0, 0, 0.6);
}
.team-card .info .title {
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  font-size: 2.4rem;
  color: #fff;
  font-weight: 600;
}
.team-card .info .desc {
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  color: #fff;
}
.team-card:hover .info .title,
.team-card:hover .info .desc {
  color: #fff;
}
.team-card .link {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
}

.culture-card {
  display: flex;
  flex-wrap: wrap;
  background-color: #fff;
  box-shadow: 0px 0px 26px 1px rgba(0, 0, 0, 0.16);
}
@media only screen and (max-width: 62em) {
  .culture-card {
    display: block;
  }
}
.culture-card__cover {
  flex: 2;
  height: 40rem;
}
@media only screen and (max-width: 62em) {
  .culture-card__cover {
    height: auto;
  }
}
.culture-card__cover img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.culture-card__info {
  flex: 3;
  padding-top: 4rem;
  padding-left: 5rem;
  padding-right: 5rem;
}
@media only screen and (max-width: 62em) {
  .culture-card__info {
    padding: 2rem;
  }
}
.culture-card__info .title {
  font-size: 2.8rem;
  color: #3C59EC;
  font-weight: 600;
  line-height: 1;
  border-bottom: 1px solid rgba(216, 216, 216, 0.5);
}
.culture-card__info .text {
  font-size: 1.6rem;
  color: #111;
  display: flex;
  align-items: center;
}
.culture-card__info .sub {
  font-size: 1.8rem;
  color: #111;
  font-weight: 600;
}
.culture-card__info .text-list {
  display: flex;
  flex-wrap: wrap;
}
.culture-card__info .text-list .text {
  margin-right: 1rem;
}
.culture-card__info .text-list .text::before {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #3C59EC;
  margin-right: 5px;
}

@media only screen and (max-width: 62em) {
  .contact-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
.contact-card .title {
  font-size: 2.2rem;
  color: #111;
  font-weight: 600;
}
@media only screen and (max-width: 62em) {
  .contact-card .tips .code-img {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
.contact-card .tips .code-img img {
  margin-top: 1rem;
  width: 14rem;
  height: 14rem;
  border-radius: 4px;
  border: 1px solid #f2f2f2;
}
.contact-card .tips .text-2 {
  font-size: 1.8rem;
  line-height: 1.6;
}
.contact-card .tips .text {
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  font-size: 1.8rem;
  color: #206BEC;
  position: relative;
  padding-left: 2rem;
  line-height: 1.6;
}
.contact-card .tips .text::before {
  content: "";
  font-family: "iconfont";
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.6rem;
  color: #206BEC;
}
.contact-card .tips .text--address::before {
  content: "";
}
.contact-card .tips .text--phone::before {
  content: "";
}
.contact-card .tips .text--code::before {
  content: "";
}

.help-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 26rem;
}
.help-card .cover {
  width: 100%;
  border-radius: 50%;
  overflow: hidden;
}
.help-card .cover img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
}
.help-card .title {
  font-size: 2rem;
  color: #111;
  font-weight: 600;
  text-align: center;
  padding-top: 3rem;
}

.ch-card {
  display: flex;
  align-items: center;
  margin: 0 auto;
}
.ch-card p {
  font-size: 2rem;
  color: #111;
  padding-left: 2rem;
}
@media only screen and (max-width: 62em) {
  .ch-card img {
    width: 8rem;
  }
}
@media only screen and (max-width: 48em) {
  .ch-card img {
    width: 6rem;
  }
}

.inner-banner {
  height: 45rem;
  display: flex;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.inner-banner--full {
  width: 100%;
  height: 100%;
}
.inner-banner img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 3s;
}
.inner-banner__info {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 9;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.inner-banner h2 {
  font-size: 7rem;
  font-family: SourceHanSansCN;
  font-weight: bold;
  color: #ffffff;
  text-shadow: 0px 9px 7px rgba(78, 77, 77, 0.44);
}
@media only screen and (max-width: 75em) {
  .inner-banner h2 {
    font-size: 4rem;
  }
}
@media only screen and (max-width: 62em) {
  .inner-banner h2 {
    font-size: 3rem;
  }
}
@media only screen and (max-width: 48em) {
  .inner-banner h2 {
    font-size: 3rem;
  }
}
.inner-banner h3 {
  font-size: 2.4rem;
  font-family: Barlow ExtraBold;
  font-weight: 400;
  color: #ffffff;
  text-shadow: 0px 9px 18px rgba(78, 77, 77, 0.76);
}
@media only screen and (max-width: 62em) {
  .inner-banner h3 {
    font-size: 1.6rem;
  }
}

.zoom-img {
  transform: scale(1.1);
}

.zoom-img.animation {
  animation: zoomFadeIn 3s forwards;
}

@keyframes zoomFadeIn {
  from {
    transform: scale(1.1);
  }
  to {
    transform: scale(1);
  }
}
/* Style for the slide content */
.slide-content {
  text-align: center;
  position: absolute;
  width: 100%;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 0.5s;
}

/* Animation for slide content */
.slide-content.animation {
  animation: slideFadeIn 1s forwards;
}

@keyframes slideFadeIn {
  from {
    opacity: 0;
    transform: translateX(-50%) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) scale(1);
  }
}
.custom-breadcrumb {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 5.8rem;
  background: url(../images/line-3.png) no-repeat bottom center/100%;
}
@media only screen and (max-width: 62em) {
  .custom-breadcrumb {
    display: none;
  }
}
.custom-breadcrumb .title {
  font-size: 2rem;
  color: #471900;
  font-weight: 900;
  position: relative;
}
.custom-breadcrumb .breadcrumb-navs {
  display: flex;
  align-items: center;
}
.custom-breadcrumb .breadcrumb-navs .pos {
  font-size: 1.4rem;
  color: #2f2f2f;
  margin-right: 1rem;
  display: flex;
  align-items: center;
}
.custom-breadcrumb .breadcrumb-navs .pos::before {
  content: "";
  font-family: "iconfont";
  content: "";
  font-size: 1.4rem;
  color: #471900;
  margin-right: 4px;
}
.custom-breadcrumb .breadcrumb-navs nav {
  display: flex;
  align-items: center;
}
.custom-breadcrumb .breadcrumb-navs nav a {
  font-size: 1.4rem;
  color: #2f2f2f;
  transition: 0.3s;
}
.custom-breadcrumb .breadcrumb-navs nav a::before {
  font-family: "iconfont";
  content: "";
  margin-right: 0.8rem;
  margin-left: 0.5rem;
}
.custom-breadcrumb .breadcrumb-navs nav a:first-child::before {
  display: none;
}
.custom-breadcrumb .breadcrumb-navs nav a:hover {
  color: #471900;
}
.custom-breadcrumb .breadcrumb-navs nav a:hover::before {
  color: #2f2f2f;
}

.form-item {
  height: 100%;
}
.form-item--error input, .form-item--error textarea {
  outline: 2px solid #f56c6c !important;
}
.form-item--error small {
  transform: translate3d(0, 0, 0) !important;
  opacity: 1 !important;
}
.form-item--success input, .form-item--success textarea {
  outline: 2px solid #67c23a !important;
}
.form-item--success small {
  transform: translate3d(0, 0, 0) !important;
  opacity: 1 !important;
}
.form-item input {
  width: 100%;
  padding: 0 2rem;
  height: 100%;
  background: #F1F1F1;
  border-radius: 0px 0px 0px 0px;
  opacity: 1;
  border: none;
  outline: none;
  border-radius: 2px;
}
.form-item textarea {
  width: 100%;
  height: 100%;
  padding: 1rem 2rem;
  background: #F1F1F1;
  border-radius: 0px 0px 0px 0px;
  opacity: 1;
  border: none;
  outline: none;
  border-radius: 2px;
}
.form-item a,
.form-item button {
  display: flex;
  justify-content: center;
  align-items: center;
  outline: none;
  border: none;
  width: 100%;
  height: 100%;
  background-color: #471900;
  font-size: 1.6rem;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.form-item a:active,
.form-item button:active {
  filter: brightness(0.8);
}
.form-item small {
  color: #f56c6c;
  transition: all 0.3s ease-in-out;
  transform: translate3d(0, -10px, 0);
  opacity: 0;
}

.custom-search__open {
  display: none;
}
.custom-search__open .iconfont {
  font-size: 2.5rem;
  color: #ffffff;
}
@media only screen and (max-width: 62em) {
  .custom-search__open {
    display: block;
  }
}
.custom-search__content {
  display: block;
}
@media only screen and (max-width: 62em) {
  .custom-search__content {
    display: none;
    position: absolute;
    top: 5rem;
    right: -1rem;
    padding: 2rem;
    background-color: rgba(20, 20, 20, 0.6);
  }
}

.search-input {
  display: flex;
  align-items: center;
  border: 2px solid #471900;
  border-radius: 6px;
  overflow: hidden;
}
.search-input__input {
  width: 20rem;
  padding: 0 1rem;
  height: 3.6rem;
  opacity: 1;
  border: none;
  outline: none;
  font-size: 1.4rem;
  color: #471900;
  background-color: rgba(255, 255, 255, 0.2);
}
@media only screen and (max-width: 75em) {
  .search-input__input {
    width: 100%;
    height: 6rem;
    color: #ffffff;
  }
}
.search-input__input::placeholder {
  color: currentColor;
  opacity: 1;
}
.search-input__button {
  transition: all 0.3s ease-in-out;
  position: relative;
  display: block;
  width: 3.6rem;
  height: 3.6rem;
  background-color: rgba(255, 255, 255, 0.2);
}
.search-input__button:hover {
  background-color: #471900;
  color: #ffffff;
}
.search-input__button:active {
  filter: brightness(0.8);
}
@media only screen and (max-width: 75em) {
  .search-input__button {
    width: 6rem;
    height: 6rem;
  }
}
.search-input__button::after {
  content: "";
  font-family: "iconfont";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: "";
  position: absolute;
  font-size: 2rem;
  color: #471900;
}
@media only screen and (max-width: 75em) {
  .search-input__button::after {
    color: #ffffff;
  }
}
.search-input__button:hover::after {
  color: #ffffff;
}

.custom-selector {
  width: 100%;
  height: 4rem;
  position: relative;
}
.custom-selector__input {
  background: rgba(20, 20, 20, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 1000px;
  position: relative;
  color: #471900;
}
.custom-selector__input::after {
  position: absolute;
  top: 1.8rem;
  right: 2rem;
  bottom: auto;
  left: auto;
  z-index: 0;
  content: "";
  display: block;
  width: 0;
  height: 0;
  width: 0;
  height: 0;
  border-top: 8px solid rgba(255, 255, 255, 0.6);
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
}
.custom-selector__placeholder {
  width: 100%;
  height: 4rem;
  padding: 0 2rem;
  line-height: 4rem;
  font-size: 1.6rem;
  color: #ffffff;
  overflow: 0.6;
  cursor: pointer;
  position: relative;
  z-index: 3;
}
.custom-selector__options {
  position: absolute;
  top: auto;
  right: 0;
  bottom: 50px;
  left: 0;
  z-index: 999;
  display: none;
  padding: 1rem;
  border-radius: 1rem;
  background: rgba(20, 20, 20, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.6);
}
.custom-selector__options a {
  display: block;
  padding: 1rem;
  font-size: 1.6rem;
  border: 4px;
  color: #ffffff;
  line-height: 2;
  transition: 0.1s ease-in-out;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.6);
}
.custom-selector__options a:last-child {
  border-bottom: none;
}
.custom-selector__options a:hover {
  background-color: #471900;
  color: #ffffff;
}

.back-top-menu {
  position: fixed;
  top: auto;
  right: 2rem;
  bottom: 8rem;
  left: auto;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border: 3px solid #471900;
  border-radius: 50%;
  background-color: #471900;
  color: #ffffff;
  transition: 0.3s cubic-bezier(0.53, -0.31, 0.56, 2.18);
  transform: translate3d(50px, 0, 0);
  opacity: 0;
  cursor: pointer;
}
.back-top-menu .iconfont {
  font-size: 20px;
}
.back-top-menu.show {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}
.back-top-menu:hover {
  background-color: #471900;
  border: 3px solid #471900;
}

div.pb_sys_common.pb_sys_normal.pb_sys_style1 {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 0;
}
div.pb_sys_common.pb_sys_normal.pb_sys_style1 span.p_pages {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 5px;
}
div.pb_sys_common.pb_sys_normal.pb_sys_style1 span.p_pages .p_fun_d {
  display: block;
  height: 30px;
  padding: 0 10px;
  line-height: 30px;
  border-radius: 4px;
  font-size: 12px;
  background-color: #f4f4f5;
  color: #606266;
  transition: 0.3s;
  cursor: pointer;
}
div.pb_sys_common.pb_sys_normal.pb_sys_style1 span.p_pages .p_fun_d:hover {
  color: #471900;
}
@media only screen and (max-width: 62em) {
  div.pb_sys_common.pb_sys_normal.pb_sys_style1 span.p_pages .p_fun_d {
    height: 40px;
    padding: 0 20px;
    line-height: 40px;
    font-size: 14px;
  }
}
div.pb_sys_common.pb_sys_normal.pb_sys_style1 span.p_pages span.p_no_d {
  display: block;
  height: 30px;
  padding: 0 10px;
  line-height: 30px;
  border-radius: 4px;
  font-size: 12px;
  color: #2f2f2f;
  transition: 0.3s;
  background-color: #471900;
  color: #ffffff;
}
@media only screen and (max-width: 62em) {
  div.pb_sys_common.pb_sys_normal.pb_sys_style1 span.p_pages span.p_no_d {
    display: none;
  }
}
@media only screen and (max-width: 62em) {
  div.pb_sys_common.pb_sys_normal.pb_sys_style1 span.p_pages span.p_no {
    display: none;
  }
}
div.pb_sys_common.pb_sys_normal.pb_sys_style1 span.p_pages span.p_no a {
  display: block;
  height: 30px;
  padding: 0 10px;
  line-height: 30px;
  border-radius: 4px;
  font-size: 12px;
  background-color: #f4f4f5;
  color: #606266;
  transition: 0.3s;
  cursor: pointer;
}
div.pb_sys_common.pb_sys_normal.pb_sys_style1 span.p_pages span.p_no a:hover {
  color: #471900;
}
@media only screen and (max-width: 62em) {
  div.pb_sys_common.pb_sys_normal.pb_sys_style1 span.p_pages span.p_no a {
    height: 40px;
    padding: 0 20px;
    line-height: 40px;
    font-size: 14px;
  }
}
div.pb_sys_common.pb_sys_normal.pb_sys_style1 span.p_pages span.p_dot {
  display: block;
  height: 30px;
  padding: 0 10px;
  line-height: 30px;
  border-radius: 4px;
  font-size: 12px;
  background-color: #f4f4f5;
  color: #606266;
  transition: 0.3s;
  cursor: pointer;
}
div.pb_sys_common.pb_sys_normal.pb_sys_style1 span.p_pages span.p_dot:hover {
  color: #471900;
}
@media only screen and (max-width: 62em) {
  div.pb_sys_common.pb_sys_normal.pb_sys_style1 span.p_pages span.p_dot {
    height: 40px;
    padding: 0 20px;
    line-height: 40px;
    font-size: 14px;
  }
}
@media only screen and (max-width: 62em) {
  div.pb_sys_common.pb_sys_normal.pb_sys_style1 span.p_pages span.p_dot {
    display: none;
  }
}
div.pb_sys_common.pb_sys_normal.pb_sys_style1 span.p_pages .p_fun a {
  display: block;
  height: 30px;
  padding: 0 10px;
  line-height: 30px;
  border-radius: 4px;
  font-size: 12px;
  background-color: #f4f4f5;
  color: #606266;
  transition: 0.3s;
  cursor: pointer;
}
div.pb_sys_common.pb_sys_normal.pb_sys_style1 span.p_pages .p_fun a:hover {
  color: #471900;
}
@media only screen and (max-width: 62em) {
  div.pb_sys_common.pb_sys_normal.pb_sys_style1 span.p_pages .p_fun a {
    height: 40px;
    padding: 0 20px;
    line-height: 40px;
    font-size: 14px;
  }
}
div.pb_sys_common.pb_sys_normal.pb_sys_style1 span.p_t {
  font-size: 12px;
  color: #5a5a5a;
  line-height: 26px;
  padding: 0 10px;
}
@media only screen and (max-width: 62em) {
  div.pb_sys_common.pb_sys_normal.pb_sys_style1 span.p_t {
    display: none;
  }
}
@media only screen and (max-width: 62em) {
  div.pb_sys_common.pb_sys_normal.pb_sys_style1 span.p_goto {
    display: none;
  }
}
div.pb_sys_common.pb_sys_normal.pb_sys_style1 span.p_goto input#u6_goto.p_goto_input {
  width: 40px;
  height: 30px;
  box-sizing: border-box;
  border-radius: 4px;
  border: 1px solid #dcdfe6;
  text-align: center;
  font-size: 12px;
  color: #5a5a5a;
}
div.pb_sys_common.pb_sys_normal.pb_sys_style1 span.p_goto a {
  display: block;
  height: 30px;
  padding: 0 10px;
  line-height: 30px;
  border-radius: 4px;
  font-size: 12px;
  color: #2f2f2f;
  transition: 0.3s;
  background-color: #471900;
  color: #ffffff;
}

.popover {
  position: relative;
  display: inline-block;
}
.popover__title {
  display: inline-block;
}
.popover__content {
  position: absolute;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 4px;
  right: 0;
  bottom: 0;
  z-index: 999;
  transform: translate3d(0, 110%, 0);
}

.article-details {
  background-color: #ffffff;
}
.article-details__heading {
  padding: 2rem 0;
  font-size: 2.4rem;
  font-weight: 600;
  color: #111111;
  text-align: center;
}
@media only screen and (max-width: 62em) {
  .article-details__heading {
    font-size: 1.8rem;
  }
}
.article-details__describe {
  display: flex;
  justify-content: center;
  padding: 1rem;
  margin-bottom: 2rem;
  background-color: #f2f2f2;
}
@media only screen and (max-width: 62em) {
  .article-details__describe {
    display: none;
  }
}
.article-details__tag {
  font-size: 1.4rem;
  color: #471900;
  margin: 0 1rem;
}
.article-details__content p {
  font-size: 1.6rem;
  line-height: 1.8;
  color: #2f2f2f;
}
.article-details__content img {
  display: inline-block;
  max-width: 100%;
  margin: 2rem 0;
}

.article-prev-next {
  padding: 2rem 0;
  display: flex;
  justify-content: space-between;
}
.article-prev-next a {
  display: block;
  padding: 0.5rem 3rem;
  background-color: #FFF6DE;
  font-size: 1.6rem;
  color: #471900;
}
.article-prev-next a.prev {
  content: "<<";
}
.article-prev-next a.next {
  content: ">>";
}

.gallery {
  display: grid;
  grid-template-rows: repeat(2, 20rem);
  grid-template-columns: repeat(6, 1fr);
  grid-gap: 1px;
}
@media only screen and (max-width: 62em) {
  .gallery {
    grid-template-rows: repeat(4, 30rem);
    grid-template-columns: repeat(3, 1fr);
  }
}
@media only screen and (max-width: 48em) {
  .gallery {
    grid-template-rows: repeat(4, 20rem);
    grid-template-columns: repeat(3, 1fr);
  }
}
.gallery__item {
  position: relative;
}
.gallery__item .info {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 50%;
  background: linear-gradient(transparent, #000);
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
}
.gallery__item .info p {
  font-size: 2rem;
  color: #fff;
  line-height: 4;
  font-weight: 600;
}
.gallery__item--1 {
  grid-row: 1/span 2;
  grid-column: 1/span 1;
}
.gallery__item--4 {
  grid-row: 1/span 2;
  grid-column: 4/span 1;
}
@media only screen and (max-width: 62em) {
  .gallery__item--4 {
    grid-row: 3/span 2;
    grid-column: 3/span 1;
  }
}
.gallery__item--5 {
  grid-row: 1/span 1;
  grid-column: 5/span 2;
}
@media only screen and (max-width: 62em) {
  .gallery__item--5 {
    grid-row: 3/span 1;
    grid-column: 1/span 2;
  }
}
.gallery__item--6 {
  grid-row: 2/span 1;
  grid-column: 2/span 2;
}
.gallery img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.header {
  padding: 3rem 5rem 20rem 5rem;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  z-index: 9999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  /*background: linear-gradient(#000, transparent);*/
}
@media only screen and (max-width: 75em) {
  .header {
    height: 10rem;
    padding: 1rem 2rem;
  }
}
@media only screen and (max-width: 62em) {
  .header {
    height: 8rem;
    padding: 0 2rem;
  }
}
@media only screen and (max-width: 48em) {
  .header {
    height: 6rem;
    padding: 0 2rem;
  }
}
.header__mobile-open {
  display: none;
}
.header__mobile-open span {
  font-size: 3rem;
  color: #fff;
}
@media only screen and (max-width: 75em) {
  .header__mobile-open {
    display: block;
  }
}
.header__mobile-close {
  position: absolute;
  right: 2rem;
  top: 1rem;
  display: none;
}
.header__mobile-close span {
  font-size: 3rem;
  color: #fff;
}
@media only screen and (max-width: 75em) {
  .header__mobile-close {
    display: block;
  }
}
.header__logo img {
  display: block;
}
.header__logo img.white {
  display: block;
}
.header__logo img.light {
  display: none;
}
@media only screen and (max-width: 75em) {
  .header__logo img {
    width: auto;
    height: 4rem;
  }
}
.header__main {
  display: flex;
  align-items: center;
  transition: 0.3s ease-in-out;
}
@media only screen and (max-width: 75em) {
  .header__main {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 999;
    background-color: #206bec;
    justify-content: center;
    transform: translate3d(-100%, 0, 0);
  }
  .header__main.active {
    transform: translate3d(0, 0, 0);
  }
}
.header__nav {
  display: flex;
}
@media only screen and (max-width: 75em) {
  .header__nav {
    display: block;
  }
}
.header__nav a {
  display: block;
  text-align: center;
  padding: 1rem 0;
  font-size: 2rem;
  color: #fff;
  position: relative;
}
.header__nav a:not(:last-child) {
  margin-right: 3vw;
}
@media only screen and (max-width: 75em) {
  .header__nav a:not(:last-child) {
    margin-right: 0;
    margin: 3rem 0;
  }
}
.header__nav a::after, .header__nav a::before {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  border-bottom: 2px solid #fff;
  position: absolute;
  bottom: 0;
  transition: 0.3s ease-in-out;
}
.header__nav a::after {
  left: 50%;
}
.header__nav a::before {
  right: 50%;
}
.header__nav a:hover::after, .header__nav a:hover::before, .header__nav a.active::after, .header__nav a.active::before {
  width: 50%;
}
.header__share {
  display: flex;
  padding-left: 3vw;
}
@media only screen and (max-width: 75em) {
  .header__share {
    position: absolute;
    bottom: 3rem;
    padding-left: 0;
  }
}
.header__share a, .header__share p {
  width: 3.8rem;
  height: 3.8rem;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 1.8rem;
  cursor: pointer;
}
@media only screen and (max-width: 75em) {
  .header__share a, .header__share p {
    width: 5rem;
    height: 5rem;
  }
}
.header__share a:hover, .header__share p:hover {
  outline: 2px solid #fff;
}
.header.light {
  height: 10rem;
  padding: 0 5rem;
  background: #fff;
  box-shadow: 0 0 3px #ccc;
}
@media only screen and (max-width: 75em) {
  .header.light {
    height: 10rem;
    padding: 1rem 2rem;
  }
}
@media only screen and (max-width: 62em) {
  .header.light {
    height: 8rem;
    padding: 0 2rem;
  }
}
@media only screen and (max-width: 48em) {
  .header.light {
    height: 6rem;
    padding: 0 2rem;
  }
}
.header.light .header__mobile-open span {
  color: #111;
}
.header.light .header__logo img.white {
  display: none;
}
.header.light .header__logo img.light {
  display: block;
}
.header.light .header__nav a, .header.light .header__nav p {
  color: #111;
}
.header.light .header__nav a::after, .header.light .header__nav a::before, .header.light .header__nav p::after, .header.light .header__nav p::before {
  border-bottom: 2px solid #111;
}
@media only screen and (max-width: 75em) {
  .header.light .header__nav a::after, .header.light .header__nav a::before, .header.light .header__nav p::after, .header.light .header__nav p::before {
    border-bottom: 2px solid #fff;
  }
}
@media only screen and (max-width: 75em) {
  .header.light .header__nav a, .header.light .header__nav p {
    color: #fff;
  }
}
.header.light .header__share a, .header.light .header__share p {
  background-color: #f2f2f2;
  color: #206bec;
}
.header.light .header__share a:hover, .header.light .header__share p:hover {
  background-color: rgba(32, 107, 236, 0.3);
}

.third-popover {
  position: relative;
}
.third-popover:not(:last-child) {
  margin-right: 1.5rem;
}
@media only screen and (max-width: 75em) {
  .third-popover:not(:last-child) {
    margin-right: 3rem;
  }
}
.third-popover__content {
  width: 12rem;
  padding-top: 1rem;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 100%);
}
@media only screen and (max-width: 75em) {
  .third-popover__content {
    bottom: auto;
    top: 0;
    transform: translate(-50%, -100%);
    padding-top: 0;
    padding-bottom: 2rem;
  }
}
.third-popover__content img {
  display: block;
  width: 100%;
  height: 100%;
}

.footer {
  background: #1E2329;
  text-align: center;
}
.footer p {
  font-size: 1.4rem;
  color: #fff;
}

.inner-page {
  position: relative;
}
.inner-page__wrapper {
  display: flex;
}
.inner-page__left {
  flex: none;
}
@media only screen and (max-width: 62em) {
  .inner-page__left {
    display: none;
  }
}
.inner-page__medium {
  flex: 1;
  overflow: hidden;
}
.inner-page__medium--top {
  padding-left: 4rem;
}
.inner-page__medium--top.pl-0 {
  padding-left: 0;
}
.inner-page__medium--bottom {
  padding-left: 4rem;
}
.inner-page__medium--bottom.pl-0 {
  padding-left: 0;
}
@media only screen and (max-width: 62em) {
  .inner-page__medium--bottom {
    padding-left: 0;
  }
}
.inner-page__right {
  flex: none;
}

.flex-row {
  display: flex;
}
@media only screen and (max-width: 62em) {
  .flex-row {
    display: block;
  }
}
.flex-row--auto {
  flex: 1;
  padding-right: 2rem;
}
@media only screen and (max-width: 62em) {
  .flex-row--auto {
    padding-right: 0;
  }
}
.flex-row--static {
  flex: none;
}

.section--2 {
  padding: 2rem;
  background: url(../images/bg-2.png) no-repeat center center/cover;
  margin-top: 88px;
}
.section--3 {
  padding: 2rem;
  background: url(../images/bg-3.png) no-repeat center center/cover;
  margin-top: 176px;
}
.section--4 {
  padding: 2rem;
  background: url(../images/bg-4.png) no-repeat center center/cover;
  margin-top: 264px;
}
.section--5 {
  padding: 2rem;
  background: url(../images/bg-5.png) no-repeat center center/cover;
}

.hide {
  opacity: 0;
}

.heading-box .heading {
  padding: 2rem 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}
@media only screen and (max-width: 62em) {
  .heading-box .heading {
    padding: 1rem 0;
    padding-bottom: 3rem;
  }
}
@media only screen and (max-width: 48em) {
  .heading-box .heading {
    padding: 1rem 0;
    padding-bottom: 1rem;
  }
}
.heading-box .heading img {
  display: block;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  opacity: 0.8;
}
@media only screen and (max-width: 48em) {
  .heading-box .heading img {
    width: auto;
    height: 4rem;
  }
}
.heading-box .heading--main {
  font-size: 3.6rem;
  font-weight: 600;
  color: #333;
  position: relative;
}
@media only screen and (max-width: 48em) {
  .heading-box .heading--main {
    font-size: 3rem;
  }
}
.heading-box .heading--main::after {
  display: block;
  content: "";
  width: 26px;
  height: 6px;
  background: #206bec;
  margin: 5px auto;
}
@media only screen and (max-width: 48em) {
  .heading-box .heading--main::after {
    width: 40px;
    height: 3px;
  }
}
.heading-box .heading--sub {
  font-size: 2rem;
  color: #5c5c5c;
}
@media only screen and (max-width: 48em) {
  .heading-box .heading--sub {
    font-size: 1.6rem;
  }
}

.heading-box-1 .heading {
  padding: 2rem 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 48em) {
  .heading-box-1 .heading {
    padding: 1rem 0;
    padding-bottom: 3rem;
  }
}
.heading-box-1 .heading--main {
  font-size: 3.6rem;
  font-weight: 600;
  color: #333;
  position: relative;
}
@media only screen and (max-width: 48em) {
  .heading-box-1 .heading--main {
    font-size: 3rem;
  }
}
.heading-box-1 .heading--sub {
  font-size: 2rem;
  color: #5c5c5c;
}
@media only screen and (max-width: 48em) {
  .heading-box-1 .heading--sub {
    font-size: 1.6rem;
  }
}
.heading-box-1 .heading--sub::after {
  display: block;
  content: "";
  width: 26px;
  height: 6px;
  background: #206bec;
  margin: 1rem auto;
}
@media only screen and (max-width: 48em) {
  .heading-box-1 .heading--sub::after {
    width: 13px;
    height: 3px;
  }
}
.heading-box-1 .heading--desc {
  font-size: 1.6rem;
  text-align: center;
  color: #111;
  margin-top: 1rem;
}

.home-banner-box {
  position: relative;
}
.home-banner-box .home-banner {
  position: relative;
}
.home-banner-box .home-banner img {
  display: block;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
}
.home-banner-box .home-button {
  position: absolute;
  right: 6rem;
  bottom: 4rem;
  z-index: 99;
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 75em) {
  .home-banner-box .home-button {
    right: 50%;
    transform: translateX(50%);
  }
}
.home-banner-box .home-button .button {
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 50%;
  border: 2px solid #fff;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.home-banner-box .home-button .button:not(:last-child) {
  margin-right: 2.2rem;
}
.home-banner-box .home-button .button span {
  font-size: 2.6rem;
}
.home-banner-box .home-button .button:hover {
  border: 2px solid #206bec;
  color: #206bec;
}

.intro-content .desc {
  line-height: 2;
  font-size: 1.6rem;
  color: #111;
}
.intro-content .summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.intro-content .summary__card .main {
  font-size: 4.2rem;
  color: #206bec;
  font-weight: 600;
  font-family: Barlow;
  display: flex;
  line-height: 1;
  align-items: flex-end;
  letter-spacing: -2px;
}
@media only screen and (max-width: 48em) {
  .intro-content .summary__card .main {
    font-size: 2rem;
    letter-spacing: 0;
  }
}
.intro-content .summary__card .main .unit {
  font-size: 2.4rem;
  padding-bottom: 5px;
  padding-left: 3px;
}
@media only screen and (max-width: 48em) {
  .intro-content .summary__card .main .unit {
    font-size: 1.2rem;
  }
}
.intro-content .summary__card .sub {
  font-size: 1.6rem;
  color: #111;
  padding-left: 4px;
  padding-top: 1rem;
}
@media only screen and (max-width: 48em) {
  .intro-content .summary__card .sub {
    font-size: 1.2rem;
  }
}
.intro-content .summary .line {
  display: block;
  width: 1px;
  height: 6rem;
  border-right: 1px solid #d1d1d1;
}

.intro-img {
  padding: 0 2.5rem;
  background-color: #206bec;
}
.intro-img img {
  display: block;
  width: 100%;
  transform: translateY(-2.5rem);
}

.section-intro {
  max-width: 140rem;
  margin: 0 auto;
}

.culture {
  max-width: 140rem;
  margin: 0 auto;
  display: flex;
}
@media only screen and (max-width: 75em) {
  .culture {
    display: block;
  }
}
.culture__left {
  width: 70%;
}
.culture__right {
  width: 30%;
}
@media only screen and (max-width: 75em) {
  .culture__right {
    margin-top: 1rem;
  }
}

.culture-main img {
  display: block;
  width: 100%;
}

.culture-sub {
  margin-left: -5rem;
}
.culture-sub img {
  display: block;
  width: 100%;
}
.culture-sub .list {
  padding-left: 7.5rem;
  padding-top: 3rem;
}
@media only screen and (max-width: 48em) {
  .culture-sub .list {
    padding-left: 5rem;
    padding-top: 1rem;
  }
}
.culture-sub .list li {
  font-size: 1.6rem;
  color: #5c5c5c;
  display: flex;
  align-items: center;
  margin: 0.5rem 0;
}
.culture-sub .list li::before {
  content: "";
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #206bec;
  margin-right: 1rem;
}

.culture-heading {
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 75em) {
  .culture-heading {
    display: block;
  }
}

.company-price {
  display: flex;
  align-items: center;
  padding-right: 4rem;
  border-right: 1px solid #e7e7e7;
}
.company-price .icon {
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  background-color: #206bec;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 48em) {
  .company-price .icon {
    width: 5rem;
    height: 5rem;
  }
}
.company-price .icon img {
  display: block;
  width: 4rem;
  transform: translateY(12%);
}
@media only screen and (max-width: 48em) {
  .company-price .icon img {
    width: 3rem;
  }
}
.company-price .info {
  padding-left: 1.5rem;
}
.company-price .info .text1 {
  font-size: 1.6rem;
  color: #5c5c5c;
  line-height: 1;
  padding-bottom: 1rem;
}
@media only screen and (max-width: 48em) {
  .company-price .info .text1 {
    font-size: 1.4rem;
  }
}
.company-price .info .text2 {
  font-size: 3rem;
  color: #206bec;
  font-weight: 600;
  line-height: 1;
}
@media only screen and (max-width: 48em) {
  .company-price .info .text2 {
    font-size: 2.4rem;
  }
}

.company-feature {
  display: flex;
  align-items: center;
  padding-right: 6rem;
}
@media only screen and (max-width: 75em) {
  .company-feature {
    padding-top: 2rem;
    padding-right: 0;
    justify-content: space-between;
  }
}
.company-feature__card {
  margin-right: 5rem;
}
@media only screen and (max-width: 48em) {
  .company-feature__card {
    margin-right: 0;
  }
}
.company-feature__card p {
  font-size: 1.6rem;
  color: #111;
  font-weight: 400;
}
@media only screen and (max-width: 48em) {
  .company-feature__card p {
    font-size: 1.4rem;
  }
}
.company-feature__card p span {
  color: #206bec;
  font-weight: 600;
}

.service-list {
  max-width: 140rem;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.service-list .item {
  width: 14rem;
  height: 14rem;
  background-color: #fff;
  border-radius: 50%;
  overflow: hidden;
  margin: 1rem 2rem;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: 0.3s ease-in-out;
}
@media only screen and (max-width: 75em) {
  .service-list .item {
    width: 12rem;
    height: 12rem;
    margin: 1rem;
  }
}
@media only screen and (max-width: 48em) {
  .service-list .item {
    width: 8rem;
    height: 8rem;
  }
}
.service-list .item img {
  display: block;
  width: 100%;
  height: 100%;
}
.service-list .item:hover {
  transform: scale(1.1);
  box-shadow: 0 0 10px #ccc;
}
.service-list .item p {
  font-size: 1.6rem;
  color: #111;
}

.drawer-list {
  max-width: 140rem;
  margin: 0 auto;
  display: flex;
  overflow: hidden;
}
@media only screen and (max-width: 48em) {
  .drawer-list {
    display: block;
    padding: 0 3rem;
  }
}
.drawer-list li {
  flex: 1;
  padding: 0 1rem;
}
@media only screen and (max-width: 48em) {
  .drawer-list li {
    padding: 0.5rem 0;
  }
}

.business-card {
  position: relative;
}
.business-card__cover {
  height: 40rem;
  position: relative;
}
@media only screen and (max-width: 48em) {
  .business-card__cover {
    height: auto;
  }
}
.business-card__cover::after {
  display: block;
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.3);
}
.business-card__cover img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.business-card .normal-info {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  padding-bottom: 3rem;
}
.business-card .normal-info h2 {
  font-size: 3rem;
  color: #fff;
  font-weight: 600;
}
.business-card .normal-info p {
  font-size: 1.6rem;
  color: #fff;
  line-height: 2;
}
.business-card .normal-info .btn {
  width: 3.3rem;
  height: 3.3rem;
  border-radius: 50%;
  border: 1px solid #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8rem;
  color: #fff;
  font-weight: 600;
  margin: 2rem auto 0;
}
.business-card .active-info {
  position: absolute;
  left: 0;
  width: 70%;
  bottom: 0;
  display: none;
  padding: 3rem;
  background-color: #fff;
}
@media only screen and (max-width: 75em) {
  .business-card .active-info {
    width: 100%;
  }
}
@media only screen and (max-width: 48em) {
  .business-card .active-info {
    padding: 1rem;
  }
}
.business-card .active-info img {
  height: 4.8rem;
}
.business-card .active-info p {
  font-size: 1.6rem;
  color: #111;
  line-height: 2;
  margin-top: 1rem;
}
@media only screen and (max-width: 48em) {
  .business-card .active-info p {
    font-size: 1.2rem;
  }
}
.business-card .active-info .btn {
  width: 3.3rem;
  height: 3.3rem;
  border-radius: 50%;
  background-color: rgba(197, 216, 238, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8rem;
  color: #206bec;
  font-weight: 600;
  position: absolute;
  right: 3rem;
  top: 4rem;
}
@media only screen and (max-width: 48em) {
  .business-card .active-info .btn {
    top: 1rem;
  }
}
.business-card.active {
  width: 70rem;
}
@media only screen and (max-width: 75em) {
  .business-card.active {
    width: 50rem;
  }
}
@media only screen and (max-width: 48em) {
  .business-card.active {
    width: auto;
  }
}
.business-card.active .normal-info {
  display: none;
}
.business-card.active .active-info {
  display: block;
}
@media only screen and (max-width: 48em) {
  .business-card.active .active-info img {
    height: 2rem;
  }
}

.inner-heading {
  background: #ffffff;
  box-shadow: 0px 9px 24px 0px rgba(0, 0, 0, 0.04);
}
.inner-heading__main {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (max-width: 62em) {
  .inner-heading__main {
    display: block;
  }
}
.inner-heading__content {
  line-height: 1;
  align-items: flex-end;
}
.inner-heading__content .main {
  font-size: 3.6rem;
  color: #111;
}
.inner-heading__content .main strong {
  color: #206bec;
}
.inner-heading__content .sub {
  font-size: 1.8rem;
  color: #999999;
}
.inner-heading__nav a {
  font-size: 1.6rem;
  color: #ccc;
  padding: 4px 2rem;
  border-radius: 100px;
  border: 1px solid #ccc;
}
.inner-heading__nav a:not(:last-child) {
  margin-right: 1rem;
}
.inner-heading__nav a:hover, .inner-heading__nav a.active {
  background-color: #0D4CCD;
  background-color: #0D4CCD;
  border: 1px solid;
  color: #fff;
}

.introduce article p {
  font-size: 1.6rem;
  color: #111;
  line-height: 2;
}

.feature {
  height: 33rem;
  padding: 5rem 10rem;
  background: url(../images/img-7.png) no-repeat bottom center/cover;
}
@media only screen and (max-width: 48em) {
  .feature {
    height: auto;
    padding: 3rem 5rem;
  }
}
.feature__list {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media only screen and (max-width: 48em) {
  .feature__list {
    display: block;
  }
}
.feature__list .line {
  display: block;
  width: 1px;
  height: 4rem;
  border-left: 1px solid #f9f9f9;
}
@media only screen and (max-width: 48em) {
  .feature__list .line {
    display: none;
  }
}
.time-tree {
  padding-top: 17rem;
  padding-bottom: 10rem;
}
@media only screen and (max-width: 48em) {
  .time-tree {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}
.time-tree__line {
  display: block;
  width: 100%;
  height: 1px;
  border-bottom: 1px dashed #206bec;
}
@media only screen and (max-width: 48em) {
  .time-tree__line {
    display: none;
  }
}
.time-tree__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
}
@media only screen and (max-width: 48em) {
  .time-tree__list::after {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    border-left: 1px dashed #206bec;
  }
}
@media only screen and (max-width: 48em) {
  .time-tree__list .item {
    width: 50%;
    margin-bottom: 2rem;
  }
}
.time-tree__list .item:nth-child(even) .tree-card {
  transform: translateY(0);
  padding-left: 1rem;
}
.time-tree__list .item:nth-child(odd) .tree-card {
  transform: translateY(-100%);
}
@media only screen and (max-width: 48em) {
  .time-tree__list .item:nth-child(odd) .tree-card {
    transform: translateY(0);
    padding-right: 1rem;
  }
}

.main-company-section article p {
  font-size: 1.8rem;
  color: #111;
  line-height: 2;
}

.env-culture {
  background: url(../images/bg-6.png) no-repeat center center/cover;
}
.fl{
  float: left;
}

.contact-us__list {
  /*display: flex;*/
  justify-content: space-between;
}
@media only screen and (max-width: 62em) {
  .contact-us__list {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
.contact-us__list .line {
  width: 1px;
  background: linear-gradient(#fff, #77a6f8, #fff);
}
@media only screen and (max-width: 62em) {
  .contact-us__list .line {
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, #fff, #77a6f8, #fff);
    margin-bottom: 2rem;
  }
}

.wanmeida article p {
  font-size: 1.6rem;
  color: #111;
  line-height: 2;
}

.lingyu__wrapper {
  max-width: 80rem;
  margin: 0 auto;
}
.lingyu__list {
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 62em) {
  .lingyu__list {
    flex-wrap: wrap;
  }
}
@media only screen and (max-width: 62em) {
  .lingyu__list .item {
    width: 33.33%;
  }
}
@media only screen and (max-width: 48em) {
  .lingyu__list .item {
    width: 46%;
    padding: 0 2%;
    border-bottom: 1px solid #D1D1D1;
  }
}
.lingyu__list .line {
  width: 1px;
  background: #D1D1D1;
}
@media only screen and (max-width: 48em) {
  .lingyu__list .line {
    display: none;
  }
}
.lingyu .title {
  text-align: center;
  font-size: 3.2rem;
  font-weight: 600;
  color: #111;
}

.jianbangbang {
  background: url(../images/bg-7.png) no-repeat center center/cover;
}
.jianbangbang .desc {
  text-align: center;
  font-size: 1.6rem;
  color: #111;
}

.chenghui__left img {
  display: block;
  width: 100%;
}
.chenghui__right {
  background-color: #E9EBF2;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.chenghui .top-line {
  border-bottom: 1px solid #ccc;
}
@media only screen and (max-width: 48em) {
  .chenghui .top-line {
    border-bottom: none;
  }
}

 .is-pc{
        display: block!important;
    }

    .is-mobile{
        display: none!important;
    }

@media only screen and (max-width: 48em) {
    .home-banner-box .home-banner img {
        display: block;
        width: 100vw;
        height: auto;
        object-fit: cover;
    }

    .inner-banner h2 {
        font-size: 20px;
    }

    .inner-banner h3 {
        font-size: 15px;
    }

    .home-banner-box .home-button {
       display: none;
    }
    .fp-scrollable .fp-section:not(.fp-auto-height):not([data-percentage]), .fp-scrollable .fp-slide:not(.fp-auto-height):not([data-percentage]), .fp-scrollable.fp-responsive .fp-is-overflow.fp-section:not(.fp-auto-height):not([data-percentage]) {
     min-height: auto; 
        /* min-height: calc(var(--vh, 1vh) * 100); */
    }

    .heading-box .heading--sub {
        font-size: 16px;
        text-align: center;
    }

 
    .culture{
        padding-top: 2rem;
    }
    .culture__left {
        width: 100%;

      }
    .culture-heading{
        padding-bottom: 1rem;
      }
    .culture__right{
        width: 100%;
      }
    .culture-sub{
        margin-left:0;
      }
    .culture-sub .list {
        padding-left: 0;
      }
    .drawer-list{
        padding: 0;
      }
    .business-card .active-info {
        position: unset;
    }

    .heading-box .heading img {
        width: auto;
        height: 4rem;
    }
    .intro-content .summary__card .sub{
        font-size: 14px;
    }
    .heading-box .heading--main {
        font-size: 22px;
    }

    .hide{
        opacity: 1;
    }

    .service-list .item {
        width: 8rem;
        height: 8rem;
    }

    .is-pc{
        display: none!important;
    }

    .is-mobile{
        display: block!important;
    }

    .slide-content {
        bottom: -60px;
    }
    .header__logo img{
        height: 2rem;
    }

    .company-price .info .text2 {
    font-size: 18px;
}

    .company-price .info .text1 {
        font-size: 16px;
    }

    .business-card .active-info p{
        font-size: 15px;
        text-align: justify;
    }

    .intro-content{
         text-align: justify;
         font-size: 15px;
    }

    .business-card .normal-info h2{
        font-size: 20px;
    }

    .inner-banner{
        height: auto;
    }

    .inner-heading__content .main{
        font-size: 20px;
    }

    #featureList li{
        width: 50%;
        float: left;
        text-align: center;
    }

    .feature-card .title .num {
        font-size: 25px;
        font-weight: 600;
    }

    .feature-card .desc{
        font-size: 17px;
    }
    .feature {
        height: 40vh;
        padding: 15px;
    }
    .clear{
        clear: both;
    }

    .culture-card__info .title{
        font-size: 18px;
        padding-bottom: 10px;
    }

    .culture-card__info .text{
        font-size: 15px;
    }

    .culture-card__info .xms{
        font-size: 14px;
    }

    .culture-card__info .text-list{
        display: block;
    }

    .culture-card__cover img{
        height: 20vh;
    }

    .culture-card__info{
        padding: 15px;
    }

    .company-culture .mb-6{
        margin-bottom: 25px;
    }

    .team-culture .py-4{
        padding-top: 10px;
        padding-bottom: 25px;
    }
    .chenghui__right{
        display: block;
    }
    .chenghui__right .flex{
        display: block;
        
    }

    .chenghui__right .db{
        width: 50%;
        float: left;
         height: 75px;
        line-height: 75px;
        padding: 10px 15px;
    }
    .ch-card p{
        font-size: 16px;
        padding-left: 10px;

    }

    .ch-card img {
        width: 30px;
    }

    .fashion-card .title .num{
        font-size: 20px;
    }

    .fashion-card .title .unit{
        font-size: 15px;
    }

    .gallery__item .info p{
        font-size: 15px;
    }

    .lingyu .py-4{
        padding-top: 0;
        padding-bottom: 10px;
    }

    .heading-box-1 .heading--main{
        font-size: 20px;
    }

    .heading-box-1 .heading--sub::after{
        width: 35px;
    }

    .help-card .title{
        font-size: 14px;
    }


    .contact-us .py-4{
        padding-top: 15px;
    padding-bottom: 15px;
    }


    .heading-box .heading--main{
        font-size: 20px;
    }
    .contact-us{
        background: #eee;
    }

    .contact-card .title{
        font-size: 18px;
        text-align: center;
    }

    .contact-card{
        background: #fff;
        border:1px solid #fff;
        border-radius: 5px;
        padding: 20px 25px;
        width: 100%;
        display: block;
    }

    .contact-card .title{
        color: #206bec;
    }

     .contact-card .xbt{
        width: 100%;
      }
      .text--phone{
        margin-top: 10px;
      }
    .contact-card .tips .text-2{
        color: #777;
    }

    .wanmeida .py-4{
        padding-top: 5px;
        padding-bottom: 5px;
    }
    .wanmeida .pt-2{
         padding-top: 5px;
    }
    .wanmeida .heading-box-1 .heading {
        padding: 10px 0;
        padding-bottom: 10px;
    }


    .jl{
        text-align: justify;
    }

    .inner-heading__nav a {
        font-size: 15px;
        padding: 4px 11px;
    }

}

/* banner */
.home-banner {
    /* padding-bottom: 50%; */
    background-repeat: no-repeat;
    background-position: center !important;
    background-size: cover !important;
    position: relative;
}

.mouse-box {
    position: absolute;
    left: 50%; 
    /*right: 4%;*/
    width: 100px;
    margin: 0 auto;
    bottom: 7%;
    font-size: 12px;
    text-align: center;
    color: #fff;
    z-index: 999;
}

.mouse-box i {
    position: relative;
    display: block;
    width: 20px;
    height: 36px;
    border: 2px solid #fff;
    border-radius: 12px;
    margin: 0px auto;
    overflow: hidden;
}

.mouse-box .txt {
    line-height: 1.5;
    padding-top: 15px;
}

.mouse-box i:before {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 5px;
    width: 2px;
    height: 7px;
    border-radius: 3px;
    display: block;
    background-color: #fff;
    -webkit-animation: mouse-dot 1.5s cubic-bezier(0.23, 1, 0.32, 1) infinite;
    animation: mouse-dot 1.5s cubic-bezier(0.23, 1, 0.32, 1) infinite;
    transition: all 0.4s;
}



.l_nav_tit{
    display: none;
    width: 60px;
    left: -70px;
    top: 2px;
    font-weight: bold;
    font-size: 15px;
    position: absolute;
    color: #206bec;
}
/*
#fp-nav .active .l_nav_tit{
    display: block;

    }*/
    .col_b{
        color: #fff;
    }