@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: 56.25%;
}
@media only screen and (max-width: 75em) {
  html {
    font-size: 50%;
  }
}
@media only screen and (max-width: 62em) {
  html {
    font-size: 50%;
  }
}
@media only screen and (min-width: 112.5em) {
  html {
    font-size: 62.5%;
  }
}

body {
  box-sizing: border-box;
  padding-top: 0;
}
@media only screen and (max-width: 62em) {
  body {
    padding-top: 8rem;
  }
}
@media only screen and (max-width: 48em) {
  body {
    padding-top: 6rem;
  }
}

::selection {
  background-color: #08509E;
  color: #ffffff;
}

@font-face {
  font-family: "syst";
  src: url("../fonts/syst.otf");
}
body {
  /*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: 168rem;
  margin: 0 auto;
  padding: 0 2rem;
}

.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-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;
  }
}
@media only screen and (max-width: 62em) {
  .md\:hidden {
    display: none;
  }
}
@media only screen and (min-width: 62em) {
  .lg\:hidden {
    display: none;
  }
}
.col-0 {
  flex: 0 0 auto;
  max-width: none;
}

.gutter-0,
.space-0 {
  margin-left: 0;
  margin-right: 0;
  margin-top: 0;
  margin-bottom: 0;
}
.gutter-0 > [class^=col-],
.space-0 > [class^=col-] {
  padding: 0;
}

.m-0,
.mt-0,
.mr-0,
.mb-0,
.ml-0,
.p-0,
.pt-0,
.pr-0,
.pb-0,
.pl-0,
.px-0,
.py-0 {
  margin: 0;
  padding: 0;
}

.col-1 {
  flex: 0 0 100%;
  max-width: 100%;
}

.gutter-1 {
  margin-left: -0.5rem;
  margin-right: -0.5rem;
}
.gutter-1 > [class^=col-] {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.space-1 {
  margin-top: -0.5rem;
  margin-bottom: -0.5rem;
}
.space-1 > [class^=col-] {
  padding-top: 0.5rem;
  padding-bottom: 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-left: 1rem;
  padding-right: 1rem;
}

.space-2 {
  margin-top: -1rem;
  margin-bottom: -1rem;
}
.space-2 > [class^=col-] {
  padding-top: 1rem;
  padding-bottom: 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-left: 1.5rem;
  padding-right: 1.5rem;
}

.space-3 {
  margin-top: -1.5rem;
  margin-bottom: -1.5rem;
}
.space-3 > [class^=col-] {
  padding-top: 1.5rem;
  padding-bottom: 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-left: 2rem;
  padding-right: 2rem;
}

.space-4 {
  margin-top: -2rem;
  margin-bottom: -2rem;
}
.space-4 > [class^=col-] {
  padding-top: 2rem;
  padding-bottom: 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-left: 2.5rem;
  padding-right: 2.5rem;
}

.space-5 {
  margin-top: -2.5rem;
  margin-bottom: -2.5rem;
}
.space-5 > [class^=col-] {
  padding-top: 2.5rem;
  padding-bottom: 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-left: 3rem;
  padding-right: 3rem;
}

.space-6 {
  margin-top: -3rem;
  margin-bottom: -3rem;
}
.space-6 > [class^=col-] {
  padding-top: 3rem;
  padding-bottom: 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-left: 3.5rem;
  padding-right: 3.5rem;
}

.space-7 {
  margin-top: -3.5rem;
  margin-bottom: -3.5rem;
}
.space-7 > [class^=col-] {
  padding-top: 3.5rem;
  padding-bottom: 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-left: 4rem;
  padding-right: 4rem;
}

.space-8 {
  margin-top: -4rem;
  margin-bottom: -4rem;
}
.space-8 > [class^=col-] {
  padding-top: 4rem;
  padding-bottom: 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-0 {
    flex: 0 0 auto;
    max-width: none;
  }

  .gutter-lg-0,
.space-lg-0 {
    margin-left: 0;
    margin-right: 0;
    margin-top: 0;
    margin-bottom: 0;
  }
  .gutter-lg-0 > [class^=col-],
.space-lg-0 > [class^=col-] {
    padding: 0;
  }

  .m-lg-0,
.mt-lg-0,
.mr-lg-0,
.mb-lg-0,
.ml-lg-0,
.p-lg-0,
.pt-lg-0,
.pr-lg-0,
.pb-lg-0,
.pl-lg-0,
.px-lg-0,
.py-lg-0 {
    margin: 0;
    padding: 0;
  }

  .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-left: 0.5rem;
    padding-right: 0.5rem;
  }

  .space-lg-1 {
    margin-top: -0.5rem;
    margin-bottom: -0.5rem;
  }
  .space-lg-1 > [class^=col-] {
    padding-top: 0.5rem;
    padding-bottom: 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-left: 1rem;
    padding-right: 1rem;
  }

  .space-lg-2 {
    margin-top: -1rem;
    margin-bottom: -1rem;
  }
  .space-lg-2 > [class^=col-] {
    padding-top: 1rem;
    padding-bottom: 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-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .space-lg-3 {
    margin-top: -1.5rem;
    margin-bottom: -1.5rem;
  }
  .space-lg-3 > [class^=col-] {
    padding-top: 1.5rem;
    padding-bottom: 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-left: 2rem;
    padding-right: 2rem;
  }

  .space-lg-4 {
    margin-top: -2rem;
    margin-bottom: -2rem;
  }
  .space-lg-4 > [class^=col-] {
    padding-top: 2rem;
    padding-bottom: 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-left: 2.5rem;
    padding-right: 2.5rem;
  }

  .space-lg-5 {
    margin-top: -2.5rem;
    margin-bottom: -2.5rem;
  }
  .space-lg-5 > [class^=col-] {
    padding-top: 2.5rem;
    padding-bottom: 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-left: 3rem;
    padding-right: 3rem;
  }

  .space-lg-6 {
    margin-top: -3rem;
    margin-bottom: -3rem;
  }
  .space-lg-6 > [class^=col-] {
    padding-top: 3rem;
    padding-bottom: 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-left: 3.5rem;
    padding-right: 3.5rem;
  }

  .space-lg-7 {
    margin-top: -3.5rem;
    margin-bottom: -3.5rem;
  }
  .space-lg-7 > [class^=col-] {
    padding-top: 3.5rem;
    padding-bottom: 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-left: 4rem;
    padding-right: 4rem;
  }

  .space-lg-8 {
    margin-top: -4rem;
    margin-bottom: -4rem;
  }
  .space-lg-8 > [class^=col-] {
    padding-top: 4rem;
    padding-bottom: 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-0 {
    flex: 0 0 auto;
    max-width: none;
  }

  .gutter-md-0,
.space-md-0 {
    margin-left: 0;
    margin-right: 0;
    margin-top: 0;
    margin-bottom: 0;
  }
  .gutter-md-0 > [class^=col-],
.space-md-0 > [class^=col-] {
    padding: 0;
  }

  .m-md-0,
.mt-md-0,
.mr-md-0,
.mb-md-0,
.ml-md-0,
.p-md-0,
.pt-md-0,
.pr-md-0,
.pb-md-0,
.pl-md-0,
.px-md-0,
.py-md-0 {
    margin: 0;
    padding: 0;
  }

  .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-left: 0.5rem;
    padding-right: 0.5rem;
  }

  .space-md-1 {
    margin-top: -0.5rem;
    margin-bottom: -0.5rem;
  }
  .space-md-1 > [class^=col-] {
    padding-top: 0.5rem;
    padding-bottom: 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-left: 1rem;
    padding-right: 1rem;
  }

  .space-md-2 {
    margin-top: -1rem;
    margin-bottom: -1rem;
  }
  .space-md-2 > [class^=col-] {
    padding-top: 1rem;
    padding-bottom: 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-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .space-md-3 {
    margin-top: -1.5rem;
    margin-bottom: -1.5rem;
  }
  .space-md-3 > [class^=col-] {
    padding-top: 1.5rem;
    padding-bottom: 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-left: 2rem;
    padding-right: 2rem;
  }

  .space-md-4 {
    margin-top: -2rem;
    margin-bottom: -2rem;
  }
  .space-md-4 > [class^=col-] {
    padding-top: 2rem;
    padding-bottom: 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-left: 2.5rem;
    padding-right: 2.5rem;
  }

  .space-md-5 {
    margin-top: -2.5rem;
    margin-bottom: -2.5rem;
  }
  .space-md-5 > [class^=col-] {
    padding-top: 2.5rem;
    padding-bottom: 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-left: 3rem;
    padding-right: 3rem;
  }

  .space-md-6 {
    margin-top: -3rem;
    margin-bottom: -3rem;
  }
  .space-md-6 > [class^=col-] {
    padding-top: 3rem;
    padding-bottom: 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-left: 3.5rem;
    padding-right: 3.5rem;
  }

  .space-md-7 {
    margin-top: -3.5rem;
    margin-bottom: -3.5rem;
  }
  .space-md-7 > [class^=col-] {
    padding-top: 3.5rem;
    padding-bottom: 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-left: 4rem;
    padding-right: 4rem;
  }

  .space-md-8 {
    margin-top: -4rem;
    margin-bottom: -4rem;
  }
  .space-md-8 > [class^=col-] {
    padding-top: 4rem;
    padding-bottom: 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-0 {
    flex: 0 0 auto;
    max-width: none;
  }

  .gutter-sm-0,
.space-sm-0 {
    margin-left: 0;
    margin-right: 0;
    margin-top: 0;
    margin-bottom: 0;
  }
  .gutter-sm-0 > [class^=col-],
.space-sm-0 > [class^=col-] {
    padding: 0;
  }

  .m-sm-0,
.mt-sm-0,
.mr-sm-0,
.mb-sm-0,
.ml-sm-0,
.p-sm-0,
.pt-sm-0,
.pr-sm-0,
.pb-sm-0,
.pl-sm-0,
.px-sm-0,
.py-sm-0 {
    margin: 0;
    padding: 0;
  }

  .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-left: 0.5rem;
    padding-right: 0.5rem;
  }

  .space-sm-1 {
    margin-top: -0.5rem;
    margin-bottom: -0.5rem;
  }
  .space-sm-1 > [class^=col-] {
    padding-top: 0.5rem;
    padding-bottom: 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-left: 1rem;
    padding-right: 1rem;
  }

  .space-sm-2 {
    margin-top: -1rem;
    margin-bottom: -1rem;
  }
  .space-sm-2 > [class^=col-] {
    padding-top: 1rem;
    padding-bottom: 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-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .space-sm-3 {
    margin-top: -1.5rem;
    margin-bottom: -1.5rem;
  }
  .space-sm-3 > [class^=col-] {
    padding-top: 1.5rem;
    padding-bottom: 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-left: 2rem;
    padding-right: 2rem;
  }

  .space-sm-4 {
    margin-top: -2rem;
    margin-bottom: -2rem;
  }
  .space-sm-4 > [class^=col-] {
    padding-top: 2rem;
    padding-bottom: 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-left: 2.5rem;
    padding-right: 2.5rem;
  }

  .space-sm-5 {
    margin-top: -2.5rem;
    margin-bottom: -2.5rem;
  }
  .space-sm-5 > [class^=col-] {
    padding-top: 2.5rem;
    padding-bottom: 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-left: 3rem;
    padding-right: 3rem;
  }

  .space-sm-6 {
    margin-top: -3rem;
    margin-bottom: -3rem;
  }
  .space-sm-6 > [class^=col-] {
    padding-top: 3rem;
    padding-bottom: 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-left: 3.5rem;
    padding-right: 3.5rem;
  }

  .space-sm-7 {
    margin-top: -3.5rem;
    margin-bottom: -3.5rem;
  }
  .space-sm-7 > [class^=col-] {
    padding-top: 3.5rem;
    padding-bottom: 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-left: 4rem;
    padding-right: 4rem;
  }

  .space-sm-8 {
    margin-top: -4rem;
    margin-bottom: -4rem;
  }
  .space-sm-8 > [class^=col-] {
    padding-top: 4rem;
    padding-bottom: 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: #08509E;
}
.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: #08509E;
  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: #EDC893;
}
.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: #08509E;
}
.text-card:hover .date {
  color: #08509E;
}
.text-card--secondary:hover .title {
  color: #EDC893;
}
.text-card--secondary:hover .date {
  color: #EDC893;
}
.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: #08509E;
  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: #08509E;
  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;
}

.news-card-big {
  width: 100%;
  height: 58rem;
  border-bottom: 3px solid rgba(8, 80, 158, 0.5);
  display: flex;
  flex-direction: column;
}
@media only screen and (max-width: 75em) {
  .news-card-big {
    height: auto;
  }
}
.news-card-big .cover {
  width: 100%;
  flex: 1;
}
.news-card-big .cover img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.news-card-big .info {
  padding: 2rem;
  background-color: #fff;
  position: relative;
  transition: 0.2s ease-in-out;
}
@media only screen and (max-width: 75em) {
  .news-card-big .info {
    padding: 2rem 1rem 1rem 1rem;
  }
}
.news-card-big .info .title {
  font-size: 1.6rem;
  line-height: 3.2rem;
  color: #111;
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
}
.news-card-big .info .date {
  position: absolute;
  left: 2rem;
  top: 0;
  transform: translateY(-50%);
  width: 11rem;
  height: 2.6rem;
  background: #003e89;
  border-radius: 100px;
  font-size: 1.4rem;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
.news-card-big:hover {
  border-bottom: 3px solid #08509e;
}
.news-card-big:hover .info {
  background-color: #0F63BE;
}
.news-card-big:hover .info::after {
  color: #fff;
  transform: translate3d(100px, 0, 0);
}
.news-card-big:hover .info .title {
  color: #fff;
}
.news-card-big:hover .info .date {
  color: #fff;
}

.news-card-small {
  height: 28rem;
  display: flex;
  flex-direction: column;
}
@media only screen and (max-width: 75em) {
  .news-card-small {
    height: auto;
  }
}
.news-card-small .cover {
  width: 100%;
  flex: 1;
}
.news-card-small .cover img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.news-card-small .info {
  padding: 2rem;
  background-color: #fff;
  position: relative;
  transition: 0.2s ease-in-out;
}
@media only screen and (max-width: 75em) {
  .news-card-small .info {
    padding: 2rem 1rem 1rem 1rem;
  }
}
.news-card-small .info .title {
  font-size: 1.6rem;
  line-height: 2.8rem;
  height: 5.6rem;
  color: #111;
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}
.news-card-small .info .date {
  position: absolute;
  left: 2rem;
  top: 0;
  transform: translateY(-50%);
  width: 11rem;
  height: 2.6rem;
  background: #003e89;
  border-radius: 100px;
  font-size: 1.4rem;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
.news-card-small:hover .info {
  background-color: #0F63BE;
}
.news-card-small:hover .info .title {
  color: #fff;
}
.news-card-small:hover .info .date {
  background-color: #EDC893;
  color: #08509E;
}

.mission-card {
  padding: 2.5rem;
  background: #ffffff;
  border: 1px solid #E6E6E6;
  border-top: 3px solid #08509E;
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width: 75em) {
  .mission-card {
    padding: 1rem;
  }
}
.mission-card:hover {
  background: radial-gradient(#08509E 0%, #0F63BE 100%);
  border-top: 3px solid #EDC893;
  box-shadow: 0px 0px 22px 5px rgba(0, 0, 0, 0.16);
}
.mission-card:hover .mission-card__top {
  border-bottom: 1px solid rgba(242, 242, 242, 0.1);
}
.mission-card:hover .mission-card__top .title {
  color: #ffffff;
}
.mission-card:hover .mission-card__bottom .tips .text {
  color: #ffffff;
}
.mission-card:hover .mission-card__bottom .tips .text::before {
  background-color: #EDC893;
  color: #08509E;
}
.mission-card__top {
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid #f2f2f2;
}
@media only screen and (max-width: 75em) {
  .mission-card__top {
    padding-bottom: 1rem;
    margin-bottom: 1rem;
  }
}
.mission-card__top .title {
  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: #333;
  font-weight: 400;
  line-height: 2.5rem;
  height: 5rem;
}
.mission-card__bottom .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.5rem;
  color: #666;
  position: relative;
  padding-left: 3rem;
}
.mission-card__bottom .tips .text:not(:last-child) {
  margin-bottom: 0.5rem;
}
.mission-card__bottom .tips .text::before {
  content: "";
  font-family: "iconfont";
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  background-color: #08509E;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  color: #fff;
}
.mission-card__bottom .tips .text--user::before {
  content: "";
}
.mission-card__bottom .tips .text--date::before {
  content: "";
}
.mission-card__bottom .tips .text--address::before {
  content: "";
}

.notice-text {
  padding: 2rem;
  background-color: rgba(255, 255, 255, 0.6);
  box-shadow: 0px 0px 22px 5px rgba(0, 0, 0, 0.16);
  align-items: flex-start;
  position: relative;
  display: flex;
}
@media only screen and (max-width: 48em) {
  .notice-text {
    flex-direction: column-reverse;
  }
}
.notice-text::after {
  content: "";
  font-family: "iconfont";
  content: "";
  display: block;
  position: absolute;
  right: 2rem;
  bottom: 1rem;
  font-size: 3rem;
  line-height: 1;
  color: #08509E;
  opacity: 0.8;
  transition: 0.3s ease-in-out;
}
.notice-text:hover {
  background-image: radial-gradient(#08509E, #0F63BE);
}
.notice-text:hover::after {
  color: #fff;
}
.notice-text:hover .date-box {
  border-top: 3px solid #EDC893;
}
.notice-text:hover .info .title {
  color: #fff;
}
.notice-text .date-box {
  flex: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  border-radius: 0 0 8px 8px;
  padding: 1rem;
  border-top: 3px solid #08509E;
}
@media only screen and (max-width: 48em) {
  .notice-text .date-box {
    border-radius: 0;
    padding: 0;
    border-top: none;
    background-color: transparent;
    flex-direction: row-reverse;
    padding-top: 1rem;
  }
}
.notice-text .date-box .day {
  font-size: 2.6rem;
  font-weight: 600;
  color: #08509E;
  line-height: 1;
  padding-bottom: 0.5rem;
}
@media only screen and (max-width: 48em) {
  .notice-text .date-box .day {
    font-size: 1.6rem;
    padding-bottom: 0;
    font-weight: 400;
  }
  .notice-text .date-box .day::before {
    content: "-";
  }
}
.notice-text .date-box .year {
  font-size: 1.4rem;
  color: #08509E;
  line-height: 1;
}
.notice-text .info {
  padding-left: 2rem;
  flex: 1;
}
@media only screen and (max-width: 48em) {
  .notice-text .info {
    padding-left: 0;
  }
}
.notice-text .info .title {
  font-size: 1.6rem;
  line-height: 3rem;
  height: 6rem;
  color: #333;
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

.article-text-card {
  padding: 2rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(102, 102, 102, 0.2);
}
@media only screen and (max-width: 48em) {
  .article-text-card {
    padding: 1rem;
  }
}
.article-text-card:hover {
  box-shadow: 0px 0px 18px 0px #ccc;
}
.article-text-card .date {
  padding: 1rem;
  flex: none;
  background-color: rgba(8, 80, 158, 0.6);
  text-align: center;
}
.article-text-card .date .day {
  font-size: 2.6rem;
  color: #fff;
  font-weight: 600;
  line-height: 1;
  padding-bottom: 5px;
}
.article-text-card .date .year {
  font-size: 1.4rem;
  color: #fff;
  line-height: 1;
}
.article-text-card .title {
  padding-left: 2rem;
  flex: 1;
  font-size: 1.8rem;
  color: #333;
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
}
.article-text-card .link {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
}

.image-card {
  position: relative;
  cursor: pointer;
}
.image-card__title {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
  font-size: 1.8rem;
  color: #fff;
  padding: 0 1.5rem;
  padding-left: 3.5rem;
  line-height: 2.6;
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
}
@media only screen and (max-width: 48em) {
  .image-card__title {
    font-size: 1.4rem;
  }
}
.image-card__title::before {
  display: block;
  content: "";
  width: 4px;
  height: 2rem;
  background: #EEC891;
  position: absolute;
  left: 2rem;
  top: 50%;
  transform: translateY(-54%);
}

.achievement-card {
  position: relative;
}
.achievement-card .info {
  background: linear-gradient(transparent, #111);
  position: absolute;
  left: 0;
  r: 0;
  bottom: 0;
  padding: 1.5rem 2rem;
}
.achievement-card .info .title {
  font-size: 1.8rem;
  color: #fff;
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
}

.news-image-card {
  width: 90%;
  padding: 2rem;
  background: url(../images/card-bg-1.png) no-repeat center center/cover;
}
@media only screen and (max-width: 48em) {
  .news-image-card {
    width: auto;
  }
}
.news-image-card .top {
  position: relative;
}
.news-image-card .top .cover {
  margin-right: -4rem;
}
@media only screen and (max-width: 48em) {
  .news-image-card .top .cover {
    margin-right: 0;
  }
}
.news-image-card .top .cover img {
  display: block;
  width: 100%;
  height: 100%;
}
.news-image-card .top .date {
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: #C7903E;
  width: 7.3rem;
  height: 7.3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
}
.news-image-card .top .date .day {
  line-height: 1;
  font-size: 2.4rem;
  margin-bottom: 0.5rem;
}
.news-image-card .top .date .year {
  line-height: 1;
  font-size: 1.4rem;
}
.news-image-card .info {
  padding: 1rem;
  padding-top: 2rem;
}
.news-image-card .info .title {
  font-size: 2.2rem;
  color: #fff;
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
}
.news-image-card .info .desc {
  font-size: 1.6rem;
  color: #fff;
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
}

.time-line-card {
  display: flex;
  align-items: center;
  height: 8.2rem;
}
.time-line-card .date {
  text-align: right;
  color: #C7903E;
  padding-right: 2.6rem;
  position: relative;
}
.time-line-card .date::after {
  content: "";
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background-color: #C7903E;
  border: 3px solid #fff;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(50%, -50%);
}
.time-line-card .date .year {
  font-size: 1.4rem;
  line-height: 1;
}
.time-line-card .date .day {
  font-size: 2.4rem;
  line-height: 1;
}
.time-line-card .info {
  height: 100%;
  flex: 1;
  padding-left: 2.6rem;
  display: flex;
  align-items: center;
}
.time-line-card .info .title {
  font-size: 1.8rem;
  color: #333;
  line-height: 2.8rem;
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
}
.time-line-card:hover .date::after {
  width: 2.4rem;
  height: 2.4rem;
  border: 3px solid #fff;
}
.time-line-card:hover .info {
  background: url(../images/card-bg-2.png) no-repeat center center/cover;
}
.time-line-card:hover .info .title {
  color: #fff;
}

.x-card .cover img {
  aspect-ratio: 5/3;
  object-fit: cover;
}
.x-card .info {
  height: 2.6rem;
  padding-left: 1rem;
  display: flex;
  align-items: center;
  border-left: 3px solid #C7903E;
}
.x-card .info .title {
  font-size: 1.8rem;
  color: #fff;
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
}
.x-card .info.blue {
  border-left: 3px solid #003e89;
}
.x-card:hover .info.blue .title {
  color: #003e89 !important;
}

.article-card {
  display: flex;
  align-items: center;
  padding: 3rem 2rem;
  box-shadow: 25px 18px 49px 18px rgba(0, 0, 0, 0.1);
}
@media only screen and (max-width: 48em) {
  .article-card {
    padding: 2rem;
    flex-wrap: wrap;
    align-items: start;
    box-shadow: none;
    background-color: rgba(255, 255, 255, 0.5);
  }
}
.article-card .date {
  flex: none;
  position: relative;
  margin-right: 5rem;
}
@media only screen and (max-width: 48em) {
  .article-card .date {
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    position: absolute;
    right: 0;
    bottom: 2rem;
  }
}
.article-card .date::after {
  content: "";
  display: block;
  width: 18px;
  height: 1px;
  background: #949191;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(3rem, -1rem);
}
@media only screen and (max-width: 48em) {
  .article-card .date::after {
    display: none;
  }
}
.article-card .date .day {
  font-size: 4.8rem;
  font-weight: 600;
  color: #2F50AE;
  line-height: 1;
  margin-bottom: 1rem;
}
@media only screen and (max-width: 48em) {
  .article-card .date .day {
    font-size: 2rem;
    margin-bottom: 0;
    font-weight: 400;
  }
  .article-card .date .day::before {
    content: "-";
  }
}
.article-card .date .year {
  font-size: 1.4rem;
  color: #2F50AE;
  line-height: 1;
}
@media only screen and (max-width: 48em) {
  .article-card .date .year {
    font-size: 2rem;
  }
}
.article-card .info {
  flex: 1;
}
@media only screen and (max-width: 48em) {
  .article-card .info {
    order: 2;
    height: 10rem;
  }
}
.article-card .info .title {
  font-size: 1.8rem;
  color: #111;
  line-height: 3rem;
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  margin-bottom: 0.8rem;
}
@media only screen and (max-width: 48em) {
  .article-card .info .title {
    text-overflow: -o-ellipsis-lastline;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
  }
}
.article-card .info .desc {
  font-size: 1.6rem;
  color: #888888;
  line-height: 2.6rem;
  height: 5.2rem;
}
@media only screen and (max-width: 48em) {
  .article-card .info .desc {
    display: none;
  }
}
.article-card .cover {
  flex: none;
  width: 18.5rem;
  height: 10.4rem;
  margin-right: 2rem;
}
.article-card .cover img {
  display: block;
  width: 100%;
  height: 100%;
}
.article-card:hover {
  background-color: #fff;
}
.article-card:hover .date::after {
  color: #2F50AE;
}
.article-card:hover .info .title {
  color: #2F50AE;
}
.article-card:hover .info .desc {
  color: #2F50AE;
}
.teacher-card {
  display: flex;
  padding: 2.6rem;
  overflow: hidden;
}
@media only screen and (max-width: 48em) {
  .teacher-card {
    background-color: rgba(255, 255, 255, 0.5);
  }
}
.teacher-card::before {
  content: "";
  display: block;
  box-shadow: 25px 18px 49px 18px rgba(0, 0, 0, 0.1);
  border: 1px solid #efefef;
  position: absolute;
  left: 9rem;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}
@media only screen and (max-width: 48em) {
  .teacher-card::before {
    display: none;
  }
}
.teacher-card::after {
  content: "查看更多";
  display: block;
  width: 12.5rem;
  height: 3.4rem;
  padding-left: 1rem;
  position: absolute;
  right: 0rem;
  bottom: 2rem;
  background-color: #0F4F99;
  font-size: 1.6rem;
  line-height: 3.4rem;
  text-align: center;
  color: #fff;
  clip-path: polygon(14% 0%, 100% 0%, 100% 100%, 0% 100%);
}
.teacher-card .cover {
  flex: none;
  width: 14rem;
  height: 19rem;
  border: 1px solid #DCDCDC;
  position: relative;
  z-index: 1;
}
.teacher-card .cover img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.teacher-card .info {
  flex: 1;
  padding-left: 3rem;
  height: 100%;
  position: relative;
  z-index: 1;
}
.teacher-card .info .base {
  display: flex;
  padding-bottom: 1rem;
}
.teacher-card .info .base .name {
  font-size: 2.2rem;
  color: #2F50AE;
}
.teacher-card .info .base .tag {
  padding-left: 1rem;
  font-size: 1.8rem;
  color: #2F50AE;
  position: relative;
  top: 0.5rem;
}
.teacher-card .info .tag {
  font-size: 1.6rem;
  color: #2F50AE;
  line-height: 3rem;
}
.teacher-card .info .desc {
  font-size: 1.6rem;
  color: #666;
  line-height: 3rem;
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
}
.teacher-card:hover::before {
  background-color: #fff;
}
.teacher-card:hover .info .desc {
  color: #0F4F99;
}

.inner-banner {
  height: 45rem;
  display: flex;
  align-items: center;
  text-align: center;
  position: relative;
}
.inner-banner img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.inner-banner__info {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 168rem;
  color: #ffffff;
}
.inner-banner h2 {
  font-size: 4.8rem;
}
@media only screen and (max-width: 62em) {
  .inner-banner h2 {
    font-size: 2.8rem;
  }
}
.inner-banner h3 {
  font-size: 3.8rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media only screen and (max-width: 62em) {
  .inner-banner h3 {
    font-size: 1.6rem;
  }
}

.custom-breadcrumb {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 4rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(166, 166, 166, 0.4);
}
@media only screen and (max-width: 75em) {
  .custom-breadcrumb {
    height: 7rem;
  }
}
@media only screen and (max-width: 48em) {
  .custom-breadcrumb {
    padding: 0;
    height: auto;
    padding-top: 1rem;
    padding-bottom: 1rem;
    display: block;
  }
}
.custom-breadcrumb .title {
  font-size: 3.6rem;
  color: #2F50AE;
  font-weight: 900;
  position: relative;
  text-transform: uppercase;
  font-family: "MontserratRegular";
}
@media only screen and (max-width: 48em) {
  .custom-breadcrumb .title {
    font-size: 1.8rem;
  }
}
.custom-breadcrumb .breadcrumb-navs {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 48em) {
  .custom-breadcrumb .breadcrumb-navs {
    display: none;
  }
}
.custom-breadcrumb .breadcrumb-navs .pos {
  font-size: 1.4rem;
  color: #053577;
  margin-right: 1rem;
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 48em) {
  .custom-breadcrumb .breadcrumb-navs .pos {
    display: none;
  }
}
.custom-breadcrumb .breadcrumb-navs .pos::before {
  content: "";
  font-family: "iconfont";
  content: "";
  font-size: 1.4rem;
  color: #053577;
  margin-right: 4px;
}
.custom-breadcrumb .breadcrumb-navs nav {
  display: flex;
  align-items: center;
}
.custom-breadcrumb .breadcrumb-navs nav a {
  font-size: 1.4rem;
  color: #888;
  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: #08509E;
}
.custom-breadcrumb .breadcrumb-navs nav a:hover::before {
  color: #08509E;
}

.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: #08509E;
  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;
}

.search-input {
  display: flex;
  align-items: center;
  border-radius: 100px;
  overflow: hidden;
}
.search-input__input {
  width: 16rem;
  padding: 0 1.5rem;
  height: 3rem;
  opacity: 1;
  border: none;
  outline: none;
  font-size: 1.4rem;
  color: #fff;
  font-weight: 400;
  background-color: rgba(255, 255, 255, 0.1);
}
@media only screen and (max-width: 75em) {
  .search-input__input {
    width: 24rem;
    height: 4rem;
  }
}
.search-input__input::placeholder {
  color: currentColor;
  opacity: 1;
}
.search-input__button {
  transition: all 0.3s ease-in-out;
  position: relative;
  display: block;
  width: 4rem;
  height: 3rem;
  background-color: rgba(255, 255, 255, 0.1);
}
.search-input__button:hover {
  background-color: #08509E;
  color: #ffffff;
}
.search-input__button:active {
  filter: brightness(0.8);
}
@media only screen and (max-width: 75em) {
  .search-input__button {
    width: 5rem;
    height: 4rem;
  }
}
.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: #fff;
}
.search-input__button:hover {
  background-color: #fff;
}
.search-input__button:hover::after {
  color: #111;
}

.custom-selector {
  width: 100%;
  height: 5rem;
  position: relative;
}
.custom-selector__input {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 1000px;
  position: relative;
  color: #08509E;
}
.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: 5rem;
  padding: 0 2rem;
  line-height: 5rem;
  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: #08509E;
  color: #ffffff;
}

.super-search {
  display: flex;
  align-items: center;
}
.super-search .mini-btn {
  width: 3rem;
  height: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  opacity: 0.8;
}
@media only screen and (max-width: 75em) {
  .super-search .mini-btn {
    display: none;
  }
}
.super-search .mini-btn:hover {
  opacity: 1;
}
.super-search .mini-btn .iconfont {
  font-size: 2.6rem;
  color: #ffffff;
}

.back-top-menu {
  position: fixed;
  top: auto;
  right: 2rem;
  bottom: 10rem;
  left: auto;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border: 3px solid #08509E;
  border-radius: 50%;
  background-color: #08509E;
  color: #ffffff;
  transition: 0.3s cubic-bezier(0.53, -0.31, 0.56, 2.18);
  transform: translate3d(50px, 0, 0);
  opacity: 0;
  cursor: pointer;
}
@media only screen and (max-width: 48em) {
  .back-top-menu {
    display: none;
  }
}
.back-top-menu .iconfont {
  font-size: 20px;
}
.back-top-menu.show {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}
.back-top-menu:hover {
  background-color: #08509E;
  border: 3px solid #08509E;
}

div.pb_sys_common.pb_sys_normal.pb_sys_style1 {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 4rem 0;
}
@media only screen and (max-width: 48em) {
  div.pb_sys_common.pb_sys_normal.pb_sys_style1 {
    padding: 2rem 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: #08509E;
}
@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: #08509E;
  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: #08509E;
}
@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: #08509E;
}
@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: #08509E;
}
@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: #08509E;
  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__heading {
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.5em;
  text-align: center;
  color: #2F50AE;
  margin-bottom: 3rem;
}
@media only screen and (max-width: 75em) {
  .article-details__heading {
    font-size: 2.2rem;
  }
}
@media only screen and (max-width: 62em) {
  .article-details__heading {
    font-size: 2rem;
  }
}
@media only screen and (max-width: 48em) {
  .article-details__heading {
    font-size: 2.4rem;
    font-family: "MontserratRegular";
  }
}
.article-details__describe {
  margin-bottom: 3rem;
}
.article-details__tag {
  text-align: center;
  padding: 1rem 0;
  background-color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
  color: #B4B4B4;
}
.article-details__content > * {
  margin-bottom: 15px;
}
.article-details__content p {
  font-size: 16px;
  line-height: 1.75em;
  color: #000;
  color: #2f2f2f;
  font-family: "微软雅黑", "黑体", "STHeiti", "Microsoft YaHei";
}
.article-details__content img {
  display: inline-block;
  max-width: 100%;
  height: auto !important;
  margin: 2rem 0;
}
.article-details__content span img {
  margin: 0;
}
.article-details__content > * {
  max-width: 100%;
}
.article-details__content .edui-upload-video {
  max-width: 100%;
}

.article-prev-next {
  padding: 1rem;
  background-color: rgba(255, 255, 255, 0.8);
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
}
@media only screen and (max-width: 75em) {
  .article-prev-next {
    display: block;
  }
}
.article-prev-next a {
  display: block;
  font-size: 1.6rem;
  color: #111111;
}
@media only screen and (max-width: 75em) {
  .article-prev-next a:not(:last-child) {
    margin-bottom: 1rem;
  }
}
.article-prev-next a span {
  font-weight: 600;
  color: #024593;
}
.article-prev-next a:hover {
  color: #024593;
  text-decoration: underline;
}

.gallery {
  display: grid;
  grid-template-rows: repeat(4, 5rem);
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 3rem;
}
@media only screen and (max-width: 62em) {
  .gallery {
    grid-template-rows: repeat(5, 5rem);
  }
}
.gallery__item--1 {
  grid-row: 1/span 1;
  grid-column: 1/span 1;
}
@media only screen and (max-width: 62em) {
  .gallery__item--1 {
    grid-row: 1/span 1;
    grid-column: 1/span 2;
  }
}
.gallery__item--2 {
  grid-row: 1/span 1;
  grid-column: 2/span 1;
}
@media only screen and (max-width: 62em) {
  .gallery__item--2 {
    grid-row: 2/span 1;
    grid-column: 1/span 2;
  }
}
.gallery__item--3 {
  grid-row: 2/span 2;
  grid-column: 1/span 2;
}
@media only screen and (max-width: 62em) {
  .gallery__item--3 {
    grid-row: 3/span 2;
  }
}
.gallery__item--4 {
  grid-row: 4/span 1;
  grid-column: 1/span 2;
}
@media only screen and (max-width: 62em) {
  .gallery__item--4 {
    grid-row: 5/span 1;
  }
}

.header {
  position: fixed;
  top: 0;
  right: 0;
  bottom: auto;
  left: 0;
  z-index: 99999;
}
@media only screen and (max-width: 75em) {
  .header {
    background: #08509E;
    border-top: none;
  }
  .header::after {
    display: none;
  }
}
.header.scroll {
  background: #08509E;
}
.header.scroll::after {
  display: none;
}
.header__content {
  height: 12rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 168rem;
  margin: 0 auto;
  padding: 0 2rem;
}
@media only screen and (max-width: 62em) {
  .header__content {
    height: 8rem;
    padding: 0 4rem;
  }
}
@media only screen and (max-width: 48em) {
  .header__content {
    height: 6rem;
    padding: 0 2rem;
  }
}
.header__content-left {
  height: 100%;
}
.header__content-left .logo {
  height: 100%;
  display: flex;
  align-items: center;
}
.header__content-left .logo img {
  display: block;
  max-height: 75%;
  width: auto;
}
@media only screen and (max-width: 48em) {
  .header__content-left .logo img {
    max-height: 80%;
  }
}
.header__content-right {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
}
@media only screen and (max-width: 75em) {
  .header__content-right {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 99999;
    background: #08509E;
    display: flex;
    flex-direction: column;
    transform: translate3d(-100%, 0, 0);
    opacity: 0;
    transition: 0.3s ease-in-out;
  }
  .header__content-right.active {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.header__content-top {
  position: absolute;
  right: 5rem;
  top: 1.5rem;
}
@media only screen and (max-width: 75em) {
  .header__content-top {
    flex: none;
    position: static;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  }
}
.header__content-bottom {
  margin-top: 4rem;
}
@media only screen and (max-width: 75em) {
  .header__content-bottom {
    width: 100%;
    flex: 1;
    padding-top: 0;
    overflow-y: auto;
  }
}
.header__menus {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
@media only screen and (max-width: 75em) {
  .header__menus {
    padding: 2rem 2rem;
  }
}
.header__menus > *:not(:last-child) {
  margin-right: 1.5rem;
}
.header__menus .text {
  font-size: 1.6rem;
  color: #fff;
  opacity: 0.8;
}
.header__menus .text:hover {
  opacity: 1;
}
.header__menus .i-18n {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.1);
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 3rem;
  color: #fff;
  opacity: 0.8;
  transition: 0.3s ease-in-out;
}
.header__menus .i-18n:hover {
  background-color: #fff;
  color: #111;
  opacity: 1;
}
.header__menus .icon {
  display: block;
  color: #fff;
  font-weight: 400;
  font-size: 2.4rem;
  cursor: pointer;
  opacity: 0.8;
}
.header__menus .icon:hover {
  opacity: 1;
}
.header__open-btn {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 6rem;
  height: 6rem;
  font-size: 4rem;
  color: #fff;
  line-height: 6rem;
  text-align: center;
  display: none;
  z-index: 9;
  cursor: pointer;
}
@media only screen and (max-width: 75em) {
  .header__open-btn {
    display: block;
  }
}
@media only screen and (max-width: 75em) {
  .header__open-btn {
    font-size: 3rem;
  }
}
.header__close-btn {
  font-size: 4rem;
  color: #ffffff;
  position: absolute;
  right: 0rem;
  top: 0rem;
  display: none;
  cursor: pointer;
}
@media only screen and (max-width: 75em) {
  .header__close-btn {
    display: block;
  }
}

.search-popover {
  position: relative;
}
@media only screen and (max-width: 75em) {
  .search-popover__icon {
    display: none;
  }
}
.search-popover__content {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 99;
  transform: translate(1rem, 100%);
}
@media only screen and (max-width: 75em) {
  .search-popover__content {
    position: relative;
    right: auto;
    bottom: auto;
    transform: translate(0, 0);
    z-index: 1;
  }
}

.web-nav__1-list {
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 75em) {
  .web-nav__1-list {
    display: block;
    padding: 0rem 2rem;
  }
}
.web-nav__1-item {
  list-style: none;
  position: relative;
}
.web-nav__1-item:not(:last-child) {
  margin-right: 4rem;
}
@media only screen and (max-width: 75em) {
  .web-nav__1-item:not(:last-child) {
    margin-right: 0;
  }
}
.web-nav__1-link {
  display: block;
  text-align: center;
  font-size: 2rem;
  color: #ffffff;
  line-height: 4rem;
}
@media only screen and (max-width: 75em) {
  .web-nav__1-link {
    min-width: 100%;
    width: auto;
    text-align: left;
    padding: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    height: auto;
    line-height: 6rem;
    font-size: 2.4rem;
  }
}
.web-nav__1-link.active {
  color: #EDC893;
  border-bottom: 2px solid currentColor;
}
@media only screen and (max-width: 75em) {
  .web-nav__1-link.active {
    color: #fff;
  }
}
.web-nav__1-open {
  display: none;
}
.web-nav__2-list {
  position: absolute;
  top: 4rem;
  right: auto;
  bottom: auto;
  left: 50%;
  z-index: 9999;
  display: none;
  width: 18rem;
  transform: translateX(-50%);
}
.web-nav__2-list::before {
  display: block;
  content: "";
  width: 100%;
  height: 1rem;
}
.web-nav__2-list::after {
  display: block;
  content: "";
  height: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid rgba(255, 255, 255, 0.7);
  position: absolute;
  left: 50%;
  top: 3px;
  transform: translateX(-50%);
}
@media only screen and (max-width: 75em) {
  .web-nav__2-list::after {
    display: none;
  }
}
@media only screen and (max-width: 75em) {
  .web-nav__2-list {
    position: static;
    background-color: transparent;
    display: block;
    padding-left: 3rem;
    transform: translateX(0);
    width: max-content;
  }
}
.web-nav__2-item {
  list-style: none;
  position: relative;
}
.web-nav__2-item:first-child {
  border-radius: 4px 4px 0 0;
  overflow: hidden;
}
.web-nav__2-item:last-child {
  border-radius: 0 0 4px 4px;
  overflow: hidden;
}
.web-nav__2-link {
  display: block;
  padding: 0.5rem 1rem;
  background-color: rgba(255, 255, 255, 0.7);
  font-size: 1.6rem;
  text-align: center;
  line-height: 3rem;
  color: #2f2f2f;
  white-space: nowrap;
}
@media only screen and (max-width: 75em) {
  .web-nav__2-link {
    color: #ffffff;
    line-height: 5rem;
    text-align: left;
    font-size: 2rem;
    background-color: transparent;
  }
}
.web-nav__2-link:hover, .web-nav__2-link.active {
  color: #ffffff;
  background: #08509E;
}
@media only screen and (max-width: 75em) {
  .web-nav__2-link:hover, .web-nav__2-link.active {
    color: #ffffff;
    background: transparent;
  }
}
.web-nav__2-link--arrow::after {
  content: "";
  font-family: "iconfont";
  content: "";
}
@media only screen and (max-width: 75em) {
  .web-nav__2-link--arrow::after {
    display: none;
  }
}
.web-nav__2-open {
  display: none;
}
.web-nav__3-list {
  position: absolute;
  top: 0;
  right: auto;
  bottom: auto;
  left: 100%;
  z-index: 9999;
  background-color: rgba(255, 255, 255, 0.7);
  display: none;
  border-left: 1px solid rgba(8, 80, 158, 0.1);
}
@media only screen and (max-width: 75em) {
  .web-nav__3-list {
    position: static;
    padding: 0;
    padding-left: 6rem;
    border-left: none;
    background-color: transparent;
    display: block;
  }
}
.web-nav__3-link {
  display: block;
  padding: 0.5rem 2rem;
  font-size: 1.4rem;
  line-height: 3rem;
  color: #2f2f2f;
  white-space: nowrap;
}
@media only screen and (min-width: 112.5em) {
  .web-nav__3-link {
    font-size: 1.6rem;
  }
}
@media only screen and (max-width: 75em) {
  .web-nav__3-link {
    color: #ffffff;
    line-height: 5rem;
    padding: 0;
  }
}
.web-nav__3-link:hover {
  color: #ffffff;
  font-weight: 600;
  background: #08509E;
}
@media only screen and (max-width: 75em) {
  .web-nav__3-link:hover {
    color: #ffffff;
    font-weight: 400;
    background: transparent;
  }
}

.footer {
  background: url(../images/footer-bg.png) no-repeat center bottom/100% 100%;
}
.footer__top-wrapper {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 62em) {
  .footer__top-wrapper {
    display: block;
  }
}
.footer__top-left {
  width: 30%;
}
@media only screen and (max-width: 48em) {
  .footer__top-left {
    width: 100%;
    padding-bottom: 2rem;
  }
}
.footer__top-medium {
  width: 40%;
  padding-left: 5rem;
}
@media only screen and (max-width: 48em) {
  .footer__top-medium {
    width: 100%;
    padding-left: 0;
    padding-bottom: 2rem;
  }
}
.footer__top-right {
  width: 30%;
  padding-left: 5rem;
}
@media only screen and (max-width: 48em) {
  .footer__top-right {
    width: 100%;
    padding-left: 0;
    padding-bottom: 2rem;
  }
}
.footer__bottom {
  background: #00284c;
}
@media only screen and (max-width: 62em) {
  .footer__bottom {
    display: flex;
    align-items: center;
    padding: 1rem;
  }
}
.footer__bottom .copyright {
  text-align: center;
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.6);
}
.footer__bottom .copyright p {
  display: inline;
  margin: 0 6px;
  text-align: center;
}
@media only screen and (max-width: 48em) {
  .footer__bottom .copyright p {
    display: block;
    margin: 0;
  }
}
@media only screen and (max-width: 62em) {
  .footer__bottom .copyright {
    flex: 1;
    text-align: left;
    margin-right: 1rem;
  }
}

.wx-link-wrapper {
  display: flex;
  align-items: center;
  column-gap: 20px;
}

.wx-wrapper {
  position: relative;
}
.wx-wrapper .wx-qr {
  width: 20rem;
  height: 20rem;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0 0 10px 10px #ccc;
  position: absolute;
  left: 50%;
  bottom: 6rem;
  transform: translateX(-50%);
  z-index: 99;
}
.wx-wrapper .wx-qr img {
  display: block;
  width: 100%;
  height: 100%;
}
.wx-wrapper .wx-button {
  flex: none;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 5rem;
  height: 5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
}
.wx-wrapper .wx-button span {
  font-size: 2.4rem;
  color: #fff;
}

.base-info p {
  font-size: 1.6rem;
  color: #fff;
  line-height: 3.4rem;
}

.inner-page {
  position: relative;
  background: url(../images/inner-page.png) no-repeat center center/cover;
}
.inner-page__wrapper {
  display: flex;
  position: relative;
}
@media only screen and (max-width: 48em) {
  .inner-page__wrapper {
    padding: 0;
    display: block;
  }
}
.inner-page__left {
  flex: none;
}
.inner-page__medium {
  flex: 1;
  overflow: hidden;
}
.inner-page__right {
  width: 32rem;
  flex: none;
}
@media only screen and (max-width: 48em) {
  .inner-page__right {
    width: auto;
  }
}

.side-bar {
  flex: none;
  width: 40rem;
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width: 75em) {
  .side-bar {
    width: 24rem;
    padding-left: 0rem;
  }
}
.side-bar__title {
  display: flex;
  align-items: center;
  line-height: 10rem;
  font-size: 3.6rem;
  font-weight: 600;
  color: #fff;
  padding-left: 5.3rem;
  background: url(../images/heading-bg.png) #0F4F99 no-repeat right center/contain;
}

.side-nav {
  background-color: #fff;
  box-sizing: border-box;
  padding-bottom: 8rem;
  border-left: 1.3rem solid #F2C584;
  border-bottom: 1.3rem solid #F2C584;
}
.side-nav__1-item {
  list-style: none;
  position: relative;
}
.side-nav__1-item.active > .side-nav__2-list {
  display: block;
}
.side-nav__1-item.active > .side-nav__1-link {
  background-color: #DCE7F2;
}
.side-nav__1-item.active > .side-nav__1-link::before {
  content: "";
  display: block;
  width: 1.3rem;
  left: -1.3rem;
  position: absolute;
  top: 0;
  bottom: 0;
  background-color: #0F4F99;
}
.side-nav__1-item.active > .side-nav__1-link::after {
  content: "";
  font-family: "iconfont";
  content: "";
  display: block;
  position: absolute;
  right: 3rem;
  top: 50%;
  transform: translateY(-50%);
  color: #0F4F99;
  font-size: 2rem;
}
.side-nav__1-link {
  display: block;
  padding-left: 4rem;
  line-height: 8.5rem;
  font-size: 2.4rem;
  color: #111;
  position: relative;
}
.side-nav__2-list {
  display: none;
  padding: 2rem;
  background-color: #F5F9FC;
}
.side-nav__2-item {
  list-style: none;
  position: relative;
}
.side-nav__2-item.active > .side-nav__3-list {
  display: block;
}
.side-nav__2-item.active > .side-nav__2-link {
  color: #2F50AE;
}
.side-nav__2-link {
  font-size: 1.8rem;
  line-height: 5rem;
  color: #111;
  white-space: nowrap;
  padding-left: 4rem;
}
.side-nav__3-list {
  padding: 1rem 0;
  background-color: #ffffff;
}
.side-nav__3-link {
  display: block;
  padding: 0.5rem 2rem;
  font-size: 1.8rem;
  line-height: 3rem;
  color: #2f2f2f;
  white-space: nowrap;
}
.side-nav__3-link:hover {
  color: #ffffff;
  font-weight: 600;
  background: #08509E;
}

.section-banner {
  position: relative;
  padding-top: 12rem;
  height: 67rem;
  background: url(../images/bg-1.png) no-repeat top center/cover;
}
@media only screen and (max-width: 48em) {
  .section-banner {
    height: auto;
    padding-top: 0;
  }
  .section-banner .container {
    padding: 0;
  }
}
.section-banner .swiper-slide {
  position: relative;
}
.section-banner .swiper-slide img {
  width: 100%;
  height: 65rem;
  object-fit: cover;
}
@media only screen and (max-width: 62em) {
  .section-banner .swiper-slide img {
    height: auto;
  }
}
.section-banner .swiper-pagination {
  bottom: 2rem;
}
@media only screen and (max-width: 48em) {
  .section-banner .swiper-pagination {
    bottom: 1rem;
    left: auto;
    width: auto;
    right: 1rem;
  }
}
.section-banner .swiper-pagination .swiper-pagination-bullet {
  opacity: 1;
  background-color: #fff;
  width: 1rem;
  height: 1rem;
  margin: 0 5px;
}
@media only screen and (max-width: 48em) {
  .section-banner .swiper-pagination .swiper-pagination-bullet {
    width: 1rem;
    height: 1rem;
    margin: 0 4px;
  }
}
.section-banner .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #08509E;
}

.section-heading {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.section-heading.left {
  display: block;
}
.section-heading__title {
  font-family: "syst";
  display: flex;
  align-items: center;
  letter-spacing: 2px;
}
.section-heading__title .t1 {
  font-size: 4rem;
  color: #08509E;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 48em) {
  .section-heading__title .t1 {
    font-size: 3rem;
  }
}
.section-heading__title .t1.white {
  color: #fff;
}
.section-heading__title .t1::after {
  content: "";
  display: block;
  width: 100%;
  height: 1.2rem;
  border-radius: 100px;
  background-color: #afc0e3;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.7rem;
  z-index: -1;
}
.section-heading__title .t2 {
  font-size: 4.6rem;
  color: #f6a955;
  margin-top: 6px;
  margin-left: 1rem;
}
@media only screen and (max-width: 48em) {
  .section-heading__title .t2 {
    font-size: 3.6rem;
  }
}
.section-heading__title .t2.yellow {
  color: #fcbc4d;
}
.section-heading__title .t2.blue {
  color: #1e48a1;
}
.section-heading__en {
  font-size: 1.6rem;
  color: #777;
  text-transform: uppercase;
  letter-spacing: 5px;
}
@media only screen and (max-width: 48em) {
  .section-heading__en {
    font-size: 1.3rem;
  }
}
.section-heading__en.white {
  color: #fff;
}
.section-heading__en.gray {
  color: #666;
}

.section-1 {
  padding-top: 18rem;
  padding-bottom: 4rem;
  background: url(../images/bg-2.png) no-repeat top center/cover;
}
@media only screen and (max-width: 48em) {
  .section-1 {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}
.section-1__content {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 48em) {
  .section-1__content {
    display: block;
  }
}
.section-1__content-left {
  flex: 1;
}
@media only screen and (max-width: 48em) {
  .section-1__content-left {
    padding-top: 3rem;
  }
}
.section-1__content-left .info p {
  font-size: 1.8rem;
  line-height: 2;
  color: #333;
}
.section-1__content-left .info .link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 21.5rem;
  height: 5.6rem;
  background: #E9B363;
  border-radius: 1000px;
  font-size: 2rem;
  color: #fff;
  margin-top: 6rem;
}
.section-1__content-left .info .link::after {
  content: "";
  display: block;
  width: 4rem;
  height: 1.6rem;
  background: url(../images/arrow.png) no-repeat center center/cover;
}
@media only screen and (max-width: 48em) {
  .section-1__content-left .info .link {
    margin: 0 auto;
    margin-top: 2rem;
  }
}
.section-1__content-right {
  padding-left: 8.5rem;
  flex: 1;
}
@media only screen and (max-width: 48em) {
  .section-1__content-right {
    padding-left: 0;
    padding-top: 3rem;
  }
}
.section-1__content-right .round-image-box {
  width: 64.3rem;
  height: 62.8rem;
  background: url(../images/round-bg.png) no-repeat center center/cover;
  position: relative;
}
@media only screen and (max-width: 48em) {
  .section-1__content-right .round-image-box {
    width: 32.1rem;
    height: 31.4rem;
    margin: 0 auto;
  }
}
.section-1__content-right .round-image-box .round-image {
  width: 56rem;
  height: 56rem;
  border-radius: 50%;
  overflow: hidden;
  position: absolute;
  right: 0;
  bottom: 2.6rem;
}
@media only screen and (max-width: 48em) {
  .section-1__content-right .round-image-box .round-image {
    width: 28rem;
    height: 28rem;
    bottom: 1.3rem;
  }
}

.section-2 {
  position: relative;
}
@media only screen and (max-width: 48em) {
  .section-2 .container {
    padding: 0;
  }
}
.section-2__bg {
  display: flex;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
}
@media only screen and (max-width: 48em) {
  .section-2__bg {
    display: none;
  }
}
.section-2__bg-left {
  height: 100%;
  flex: 1;
  background: url(../images/bg-3.png) no-repeat center center/cover;
}
.section-2__bg-right {
  height: 100%;
  flex: 1;
  background: url(../images/bg-4.png) no-repeat center center/cover;
}
.section-2 .container {
  position: relative;
  z-index: 2;
}

.section-2-1 {
  padding-top: 8rem;
  padding-right: 8rem;
  padding-bottom: 11rem;
}
@media only screen and (max-width: 48em) {
  .section-2-1 {
    padding: 3rem 2rem;
    background: url(../images/bg-3.png) no-repeat center center/cover;
  }
}
.section-2-1__header {
  display: flex;
  justify-content: space-between;
}
.section-2-1__content {
  padding-top: 8rem;
}
@media only screen and (max-width: 48em) {
  .section-2-1__content {
    padding-top: 3rem;
  }
}
.section-2-1__content .swiper-slide:nth-child(even) .x-card {
  display: flex;
  flex-direction: column-reverse;
}
.section-2-1__content .swiper-slide:nth-child(even) .x-card .info {
  margin-bottom: 2rem;
}
.section-2-1__content .swiper-slide:nth-child(odd) .x-card {
  display: flex;
  flex-direction: column;
}
.section-2-1__content .swiper-slide:nth-child(odd) .x-card .info {
  margin-top: 2rem;
}

.section-2-2 {
  padding-top: 8rem;
  padding-left: 8rem;
  padding-bottom: 11rem;
}
@media only screen and (max-width: 48em) {
  .section-2-2 {
    padding: 3rem 2rem;
    background: url(../images/bg-4.png) no-repeat center center/cover;
  }
}
.section-2-2__header {
  display: flex;
  justify-content: space-between;
}
.section-2-2__content {
  padding-top: 8rem;
}
@media only screen and (max-width: 48em) {
  .section-2-2__content {
    padding-top: 3rem;
  }
}
.section-2-2__content .swiper-slide:nth-child(even) .x-card {
  display: flex;
  flex-direction: column-reverse;
}
.section-2-2__content .swiper-slide:nth-child(even) .x-card .info {
  margin-bottom: 2rem;
}
.section-2-2__content .swiper-slide:nth-child(odd) .x-card {
  display: flex;
  flex-direction: column;
}
.section-2-2__content .swiper-slide:nth-child(odd) .x-card .info {
  margin-top: 2rem;
}

.section-3 {
  padding-top: 9rem;
  padding-bottom: 9rem;
  background: url(../images/bg-5.png) no-repeat center center/cover;
}
@media only screen and (max-width: 48em) {
  .section-3 {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}
.section-3__content {
  padding-top: 5rem;
}
@media only screen and (max-width: 48em) {
  .section-3__content {
    padding-top: 3rem;
  }
}
.section-3 .time-line-news {
  position: relative;
}
.section-3 .time-line-news::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 8rem;
  bottom: 0;
  width: 2px;
  background: linear-gradient(transparent 0%, #C7903E 10%, #C7903E 90%, transparent 100%);
  z-index: 0;
}
.section-3 .time-line-news .item {
  position: relative;
  z-index: 1;
}
.section-3 .time-line-news .item:not(:last-child) {
  margin-bottom: 0.7rem;
}

.section-4 {
  padding-top: 9rem;
  padding-bottom: 7rem;
}
@media only screen and (max-width: 48em) {
  .section-4 {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}
.section-4__content {
  padding-top: 5rem;
}
@media only screen and (max-width: 48em) {
  .section-4__content {
    padding-top: 3rem;
  }
}
.section-4 .swiper {
  padding-bottom: 7rem;
}
.section-4 .swiper-scrollbar .swiper-scrollbar-drag {
  background-color: #2F50AE;
}

.x-swiper-buttons {
  display: flex;
  align-items: center;
}
.x-swiper-buttons .x-button {
  width: 4.8rem;
  height: 4.8rem;
  border-radius: 50%;
  background-color: transparent;
  border: 1px solid #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.x-swiper-buttons .x-button span {
  font-size: 3rem;
  color: #fff;
}
.x-swiper-buttons .x-button.prev {
  margin-right: 2rem;
}
.x-swiper-buttons .x-button:hover {
  background-color: rgba(255, 255, 255, 0.3);
}

.x-swiper-buttons-2 {
  display: flex;
  align-items: center;
}
.x-swiper-buttons-2 .x-button {
  width: 4.8rem;
  height: 4.8rem;
  border-radius: 50%;
  background-color: transparent;
  border: 1px solid #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.x-swiper-buttons-2 .x-button span {
  font-size: 3rem;
  color: #fff;
}
.x-swiper-buttons-2 .x-button.prev {
  margin-right: 2rem;
}
.x-swiper-buttons-2 .x-button:hover {
  background-color: #F3B458;
}

.static-banner {
  width: 100%;
  height: 60rem;
  box-sizing: border-box;
  position: relative;
  background: url(../images/bg-1.png) no-repeat top center/cover;
  padding-top: 12rem;
}
.static-banner .container {
  width: 100%;
  height: 100%;
}
@media only screen and (max-width: 75em) {
  .static-banner {
    height: 50rem;
  }
}
@media only screen and (max-width: 62em) {
  .static-banner {
    height: 40rem;
    padding-top: 0;
  }
}
@media only screen and (max-width: 48em) {
  .static-banner {
    height: 20rem;
    padding-top: 0;
  }
}
.static-banner img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-list .item:not(:last-child) {
  margin-bottom: 4rem;
}
@media only screen and (max-width: 48em) {
  .article-list .item:not(:last-child) {
    margin-bottom: 2rem;
  }
}

.list-nav {
  display: flex;
  flex-wrap: wrap;
  padding-top: 2.6rem;
  padding-bottom: 1rem;
}
.list-nav a {
  font-size: 1.8rem;
  color: #333;
  padding: 0 2rem;
  border-radius: 1000px;
  line-height: 4.3rem;
  background-color: #fff;
}
.list-nav a:not(:last-child) {
  margin-right: 2.4rem;
}
.list-nav a:hover, .list-nav a.active {
  background-color: #0F4F99;
  color: #fff;
}

.teacher-details .base-info {
  display: flex;
  padding: 2rem;
  background-color: rgba(248, 248, 248, 0.5);
  box-shadow: 0 0 20px 18px rgba(0, 0, 0, 0.1);
  margin-bottom: 3rem;
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width: 62em) {
  .teacher-details .base-info {
    box-shadow: none;
  }
}
@media only screen and (max-width: 62em) {
  .teacher-details .base-info {
    display: block;
  }
}
.teacher-details .base-info .cover {
  width: 18rem;
  height: 25rem;
  flex: none;
  position: relative;
  border: 1px solid #DCDCDC;
}
@media only screen and (max-width: 62em) {
  .teacher-details .base-info .cover {
    width: 100%;
    height: auto;
    margin-bottom: 2rem;
  }
}
.teacher-details .base-info .cover img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.teacher-details .base-info .info {
  padding-left: 3rem;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 62em) {
  .teacher-details .base-info .info {
    padding-left: 0;
  }
}
.teacher-details .base-info .info .top {
  display: flex;
  align-items: flex-end;
  padding-bottom: 1rem;
  position: relative;
}
.teacher-details .base-info .info .top::after {
  content: "";
  display: block;
  width: 2.8rem;
  height: 3px;
  background: #0F4F99;
  position: absolute;
  left: 0;
  bottom: -1rem;
}
.teacher-details .base-info .info .top .name {
  font-size: 3rem;
  font-weight: 600;
  font-family: "MicrosoftYaHei-Bold";
  padding-right: 2rem;
  color: #08509E;
}
.teacher-details .base-info .info .top .tag {
  font-size: 1.6rem;
  line-height: 1.6;
  position: relative;
  top: -0.5rem;
  color: #08509E;
}
.teacher-details .base-info .info .labels {
  display: flex;
  flex-wrap: wrap;
  padding-top: 3rem;
}
@media only screen and (max-width: 48em) {
  .teacher-details .base-info .info .labels {
    display: block;
  }
}
.teacher-details .base-info .info .labels .text {
  font-size: 1.6rem;
  box-sizing: border-box;
  padding-bottom: 1rem;
  color: #2f2f2f;
}
.teacher-details .base-info .info .labels .text:not(:last-child) {
  margin-right: 4rem;
}
.teacher-details .base-info .info .desc {
  padding-top: 2rem;
  font-size: 1.6rem;
  color: #2f2f2f;
  line-height: 1.6;
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  -webkit-box-orient: vertical;
}
.teacher-details .details-info {
  box-shadow: 0 0 20px 18px rgba(0, 0, 0, 0.1);
}
@media only screen and (max-width: 62em) {
  .teacher-details .details-info {
    box-shadow: none;
    background-color: rgba(248, 248, 248, 0.5);
  }
}
.teacher-details .details-info h3 {
  display: flex;
  align-items: center;
  height: 5rem;
  background: #0F4F99;
  padding-left: 3rem;
  font-size: 2rem;
  font-weight: bold;
  color: #EEC891;
  position: relative;
  margin-bottom: 1rem;
}
.teacher-details .details-info p {
  padding: 1rem 3rem;
  font-size: 1.6rem;
  color: #2f2f2f;
}
