@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: #006AB6;
  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-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-left: -0.5rem;
  margin-right: -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-left: -1rem;
  margin-right: -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-left: -1.5rem;
  margin-right: -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-left: -2rem;
  margin-right: -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-left: -2.5rem;
  margin-right: -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-left: -3rem;
  margin-right: -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-left: -3.5rem;
  margin-right: -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-left: -4rem;
  margin-right: -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;
}

.col-9 {
  flex: 0 0 11.1111111111%;
  max-width: 11.1111111111%;
}

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

.space-9 {
  margin-left: -4.5rem;
  margin-right: -4.5rem;
}
.space-9 > [class^=col-] {
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
}

.m-9 {
  margin: 9rem;
}

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

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

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

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

.p-9 {
  padding: 9rem;
}

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

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

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

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

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

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

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

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

.space-10 {
  margin-left: -5rem;
  margin-right: -5rem;
}
.space-10 > [class^=col-] {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.m-10 {
  margin: 10rem;
}

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

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

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

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

.p-10 {
  padding: 10rem;
}

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

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

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

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

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

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

@media only screen and (min-width: 62em) {
  .col-lg-1 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .gutter-lg-1 {
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }
  .gutter-lg-1 > [class^=col-] {
    padding: 0.5rem;
  }
  .m-lg-1 {
    margin: 1rem;
  }
  .mt-lg-1 {
    margin-top: 1rem;
  }
  .mr-lg-1 {
    margin-right: 1rem;
  }
  .mb-lg-1 {
    margin-bottom: 1rem;
  }
  .ml-lg-1 {
    margin-left: 1rem;
  }
  .p-lg-1 {
    padding: 1rem;
  }
  .pt-lg-1 {
    padding-top: 1rem;
  }
  .pr-lg-1 {
    padding-right: 1rem;
  }
  .pb-lg-1 {
    padding-bottom: 1rem;
  }
  .pl-lg-1 {
    padding-left: 1rem;
  }
  .px-lg-1 {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .py-lg-1 {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
  .col-lg-2 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .gutter-lg-2 {
    margin-left: -1rem;
    margin-right: -1rem;
  }
  .gutter-lg-2 > [class^=col-] {
    padding: 1rem;
  }
  .m-lg-2 {
    margin: 2rem;
  }
  .mt-lg-2 {
    margin-top: 2rem;
  }
  .mr-lg-2 {
    margin-right: 2rem;
  }
  .mb-lg-2 {
    margin-bottom: 2rem;
  }
  .ml-lg-2 {
    margin-left: 2rem;
  }
  .p-lg-2 {
    padding: 2rem;
  }
  .pt-lg-2 {
    padding-top: 2rem;
  }
  .pr-lg-2 {
    padding-right: 2rem;
  }
  .pb-lg-2 {
    padding-bottom: 2rem;
  }
  .pl-lg-2 {
    padding-left: 2rem;
  }
  .px-lg-2 {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .py-lg-2 {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  .col-lg-3 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .gutter-lg-3 {
    margin-left: -1.5rem;
    margin-right: -1.5rem;
  }
  .gutter-lg-3 > [class^=col-] {
    padding: 1.5rem;
  }
  .m-lg-3 {
    margin: 3rem;
  }
  .mt-lg-3 {
    margin-top: 3rem;
  }
  .mr-lg-3 {
    margin-right: 3rem;
  }
  .mb-lg-3 {
    margin-bottom: 3rem;
  }
  .ml-lg-3 {
    margin-left: 3rem;
  }
  .p-lg-3 {
    padding: 3rem;
  }
  .pt-lg-3 {
    padding-top: 3rem;
  }
  .pr-lg-3 {
    padding-right: 3rem;
  }
  .pb-lg-3 {
    padding-bottom: 3rem;
  }
  .pl-lg-3 {
    padding-left: 3rem;
  }
  .px-lg-3 {
    padding-left: 3rem;
    padding-right: 3rem;
  }
  .py-lg-3 {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  .col-lg-4 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .gutter-lg-4 {
    margin-left: -2rem;
    margin-right: -2rem;
  }
  .gutter-lg-4 > [class^=col-] {
    padding: 2rem;
  }
  .m-lg-4 {
    margin: 4rem;
  }
  .mt-lg-4 {
    margin-top: 4rem;
  }
  .mr-lg-4 {
    margin-right: 4rem;
  }
  .mb-lg-4 {
    margin-bottom: 4rem;
  }
  .ml-lg-4 {
    margin-left: 4rem;
  }
  .p-lg-4 {
    padding: 4rem;
  }
  .pt-lg-4 {
    padding-top: 4rem;
  }
  .pr-lg-4 {
    padding-right: 4rem;
  }
  .pb-lg-4 {
    padding-bottom: 4rem;
  }
  .pl-lg-4 {
    padding-left: 4rem;
  }
  .px-lg-4 {
    padding-left: 4rem;
    padding-right: 4rem;
  }
  .py-lg-4 {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  .col-lg-5 {
    flex: 0 0 20%;
    max-width: 20%;
  }
  .gutter-lg-5 {
    margin-left: -2.5rem;
    margin-right: -2.5rem;
  }
  .gutter-lg-5 > [class^=col-] {
    padding: 2.5rem;
  }
  .m-lg-5 {
    margin: 5rem;
  }
  .mt-lg-5 {
    margin-top: 5rem;
  }
  .mr-lg-5 {
    margin-right: 5rem;
  }
  .mb-lg-5 {
    margin-bottom: 5rem;
  }
  .ml-lg-5 {
    margin-left: 5rem;
  }
  .p-lg-5 {
    padding: 5rem;
  }
  .pt-lg-5 {
    padding-top: 5rem;
  }
  .pr-lg-5 {
    padding-right: 5rem;
  }
  .pb-lg-5 {
    padding-bottom: 5rem;
  }
  .pl-lg-5 {
    padding-left: 5rem;
  }
  .px-lg-5 {
    padding-left: 5rem;
    padding-right: 5rem;
  }
  .py-lg-5 {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
  .col-lg-6 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .gutter-lg-6 {
    margin-left: -3rem;
    margin-right: -3rem;
  }
  .gutter-lg-6 > [class^=col-] {
    padding: 3rem;
  }
  .m-lg-6 {
    margin: 6rem;
  }
  .mt-lg-6 {
    margin-top: 6rem;
  }
  .mr-lg-6 {
    margin-right: 6rem;
  }
  .mb-lg-6 {
    margin-bottom: 6rem;
  }
  .ml-lg-6 {
    margin-left: 6rem;
  }
  .p-lg-6 {
    padding: 6rem;
  }
  .pt-lg-6 {
    padding-top: 6rem;
  }
  .pr-lg-6 {
    padding-right: 6rem;
  }
  .pb-lg-6 {
    padding-bottom: 6rem;
  }
  .pl-lg-6 {
    padding-left: 6rem;
  }
  .px-lg-6 {
    padding-left: 6rem;
    padding-right: 6rem;
  }
  .py-lg-6 {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
  .col-lg-7 {
    flex: 0 0 14.2857142857%;
    max-width: 14.2857142857%;
  }
  .gutter-lg-7 {
    margin-left: -3.5rem;
    margin-right: -3.5rem;
  }
  .gutter-lg-7 > [class^=col-] {
    padding: 3.5rem;
  }
  .m-lg-7 {
    margin: 7rem;
  }
  .mt-lg-7 {
    margin-top: 7rem;
  }
  .mr-lg-7 {
    margin-right: 7rem;
  }
  .mb-lg-7 {
    margin-bottom: 7rem;
  }
  .ml-lg-7 {
    margin-left: 7rem;
  }
  .p-lg-7 {
    padding: 7rem;
  }
  .pt-lg-7 {
    padding-top: 7rem;
  }
  .pr-lg-7 {
    padding-right: 7rem;
  }
  .pb-lg-7 {
    padding-bottom: 7rem;
  }
  .pl-lg-7 {
    padding-left: 7rem;
  }
  .px-lg-7 {
    padding-left: 7rem;
    padding-right: 7rem;
  }
  .py-lg-7 {
    padding-top: 7rem;
    padding-bottom: 7rem;
  }
  .col-lg-8 {
    flex: 0 0 12.5%;
    max-width: 12.5%;
  }
  .gutter-lg-8 {
    margin-left: -4rem;
    margin-right: -4rem;
  }
  .gutter-lg-8 > [class^=col-] {
    padding: 4rem;
  }
  .m-lg-8 {
    margin: 8rem;
  }
  .mt-lg-8 {
    margin-top: 8rem;
  }
  .mr-lg-8 {
    margin-right: 8rem;
  }
  .mb-lg-8 {
    margin-bottom: 8rem;
  }
  .ml-lg-8 {
    margin-left: 8rem;
  }
  .p-lg-8 {
    padding: 8rem;
  }
  .pt-lg-8 {
    padding-top: 8rem;
  }
  .pr-lg-8 {
    padding-right: 8rem;
  }
  .pb-lg-8 {
    padding-bottom: 8rem;
  }
  .pl-lg-8 {
    padding-left: 8rem;
  }
  .px-lg-8 {
    padding-left: 8rem;
    padding-right: 8rem;
  }
  .py-lg-8 {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
  .col-lg-9 {
    flex: 0 0 11.1111111111%;
    max-width: 11.1111111111%;
  }
  .gutter-lg-9 {
    margin-left: -4.5rem;
    margin-right: -4.5rem;
  }
  .gutter-lg-9 > [class^=col-] {
    padding: 4.5rem;
  }
  .m-lg-9 {
    margin: 9rem;
  }
  .mt-lg-9 {
    margin-top: 9rem;
  }
  .mr-lg-9 {
    margin-right: 9rem;
  }
  .mb-lg-9 {
    margin-bottom: 9rem;
  }
  .ml-lg-9 {
    margin-left: 9rem;
  }
  .p-lg-9 {
    padding: 9rem;
  }
  .pt-lg-9 {
    padding-top: 9rem;
  }
  .pr-lg-9 {
    padding-right: 9rem;
  }
  .pb-lg-9 {
    padding-bottom: 9rem;
  }
  .pl-lg-9 {
    padding-left: 9rem;
  }
  .px-lg-9 {
    padding-left: 9rem;
    padding-right: 9rem;
  }
  .py-lg-9 {
    padding-top: 9rem;
    padding-bottom: 9rem;
  }
  .col-lg-10 {
    flex: 0 0 10%;
    max-width: 10%;
  }
  .gutter-lg-10 {
    margin-left: -5rem;
    margin-right: -5rem;
  }
  .gutter-lg-10 > [class^=col-] {
    padding: 5rem;
  }
  .m-lg-10 {
    margin: 10rem;
  }
  .mt-lg-10 {
    margin-top: 10rem;
  }
  .mr-lg-10 {
    margin-right: 10rem;
  }
  .mb-lg-10 {
    margin-bottom: 10rem;
  }
  .ml-lg-10 {
    margin-left: 10rem;
  }
  .p-lg-10 {
    padding: 10rem;
  }
  .pt-lg-10 {
    padding-top: 10rem;
  }
  .pr-lg-10 {
    padding-right: 10rem;
  }
  .pb-lg-10 {
    padding-bottom: 10rem;
  }
  .pl-lg-10 {
    padding-left: 10rem;
  }
  .px-lg-10 {
    padding-left: 10rem;
    padding-right: 10rem;
  }
  .py-lg-10 {
    padding-top: 10rem;
    padding-bottom: 10rem;
  }
}
@media only screen and (max-width: 62em) {
  .col-md-1 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .gutter-md-1 {
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }
  .gutter-md-1 > [class^=col-] {
    padding: 0.5rem;
  }
  .m-md-1 {
    margin: 1rem;
  }
  .mt-md-1 {
    margin-top: 1rem;
  }
  .mr-md-1 {
    margin-right: 1rem;
  }
  .mb-md-1 {
    margin-bottom: 1rem;
  }
  .ml-md-1 {
    margin-left: 1rem;
  }
  .p-md-1 {
    padding: 1rem;
  }
  .pt-md-1 {
    padding-top: 1rem;
  }
  .pr-md-1 {
    padding-right: 1rem;
  }
  .pb-md-1 {
    padding-bottom: 1rem;
  }
  .pl-md-1 {
    padding-left: 1rem;
  }
  .px-md-1 {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .py-md-1 {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
  .col-md-2 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .gutter-md-2 {
    margin-left: -1rem;
    margin-right: -1rem;
  }
  .gutter-md-2 > [class^=col-] {
    padding: 1rem;
  }
  .m-md-2 {
    margin: 2rem;
  }
  .mt-md-2 {
    margin-top: 2rem;
  }
  .mr-md-2 {
    margin-right: 2rem;
  }
  .mb-md-2 {
    margin-bottom: 2rem;
  }
  .ml-md-2 {
    margin-left: 2rem;
  }
  .p-md-2 {
    padding: 2rem;
  }
  .pt-md-2 {
    padding-top: 2rem;
  }
  .pr-md-2 {
    padding-right: 2rem;
  }
  .pb-md-2 {
    padding-bottom: 2rem;
  }
  .pl-md-2 {
    padding-left: 2rem;
  }
  .px-md-2 {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .py-md-2 {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  .col-md-3 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .gutter-md-3 {
    margin-left: -1.5rem;
    margin-right: -1.5rem;
  }
  .gutter-md-3 > [class^=col-] {
    padding: 1.5rem;
  }
  .m-md-3 {
    margin: 3rem;
  }
  .mt-md-3 {
    margin-top: 3rem;
  }
  .mr-md-3 {
    margin-right: 3rem;
  }
  .mb-md-3 {
    margin-bottom: 3rem;
  }
  .ml-md-3 {
    margin-left: 3rem;
  }
  .p-md-3 {
    padding: 3rem;
  }
  .pt-md-3 {
    padding-top: 3rem;
  }
  .pr-md-3 {
    padding-right: 3rem;
  }
  .pb-md-3 {
    padding-bottom: 3rem;
  }
  .pl-md-3 {
    padding-left: 3rem;
  }
  .px-md-3 {
    padding-left: 3rem;
    padding-right: 3rem;
  }
  .py-md-3 {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  .col-md-4 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .gutter-md-4 {
    margin-left: -2rem;
    margin-right: -2rem;
  }
  .gutter-md-4 > [class^=col-] {
    padding: 2rem;
  }
  .m-md-4 {
    margin: 4rem;
  }
  .mt-md-4 {
    margin-top: 4rem;
  }
  .mr-md-4 {
    margin-right: 4rem;
  }
  .mb-md-4 {
    margin-bottom: 4rem;
  }
  .ml-md-4 {
    margin-left: 4rem;
  }
  .p-md-4 {
    padding: 4rem;
  }
  .pt-md-4 {
    padding-top: 4rem;
  }
  .pr-md-4 {
    padding-right: 4rem;
  }
  .pb-md-4 {
    padding-bottom: 4rem;
  }
  .pl-md-4 {
    padding-left: 4rem;
  }
  .px-md-4 {
    padding-left: 4rem;
    padding-right: 4rem;
  }
  .py-md-4 {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  .col-md-5 {
    flex: 0 0 20%;
    max-width: 20%;
  }
  .gutter-md-5 {
    margin-left: -2.5rem;
    margin-right: -2.5rem;
  }
  .gutter-md-5 > [class^=col-] {
    padding: 2.5rem;
  }
  .m-md-5 {
    margin: 5rem;
  }
  .mt-md-5 {
    margin-top: 5rem;
  }
  .mr-md-5 {
    margin-right: 5rem;
  }
  .mb-md-5 {
    margin-bottom: 5rem;
  }
  .ml-md-5 {
    margin-left: 5rem;
  }
  .p-md-5 {
    padding: 5rem;
  }
  .pt-md-5 {
    padding-top: 5rem;
  }
  .pr-md-5 {
    padding-right: 5rem;
  }
  .pb-md-5 {
    padding-bottom: 5rem;
  }
  .pl-md-5 {
    padding-left: 5rem;
  }
  .px-md-5 {
    padding-left: 5rem;
    padding-right: 5rem;
  }
  .py-md-5 {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
  .col-md-6 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .gutter-md-6 {
    margin-left: -3rem;
    margin-right: -3rem;
  }
  .gutter-md-6 > [class^=col-] {
    padding: 3rem;
  }
  .m-md-6 {
    margin: 6rem;
  }
  .mt-md-6 {
    margin-top: 6rem;
  }
  .mr-md-6 {
    margin-right: 6rem;
  }
  .mb-md-6 {
    margin-bottom: 6rem;
  }
  .ml-md-6 {
    margin-left: 6rem;
  }
  .p-md-6 {
    padding: 6rem;
  }
  .pt-md-6 {
    padding-top: 6rem;
  }
  .pr-md-6 {
    padding-right: 6rem;
  }
  .pb-md-6 {
    padding-bottom: 6rem;
  }
  .pl-md-6 {
    padding-left: 6rem;
  }
  .px-md-6 {
    padding-left: 6rem;
    padding-right: 6rem;
  }
  .py-md-6 {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
  .col-md-7 {
    flex: 0 0 14.2857142857%;
    max-width: 14.2857142857%;
  }
  .gutter-md-7 {
    margin-left: -3.5rem;
    margin-right: -3.5rem;
  }
  .gutter-md-7 > [class^=col-] {
    padding: 3.5rem;
  }
  .m-md-7 {
    margin: 7rem;
  }
  .mt-md-7 {
    margin-top: 7rem;
  }
  .mr-md-7 {
    margin-right: 7rem;
  }
  .mb-md-7 {
    margin-bottom: 7rem;
  }
  .ml-md-7 {
    margin-left: 7rem;
  }
  .p-md-7 {
    padding: 7rem;
  }
  .pt-md-7 {
    padding-top: 7rem;
  }
  .pr-md-7 {
    padding-right: 7rem;
  }
  .pb-md-7 {
    padding-bottom: 7rem;
  }
  .pl-md-7 {
    padding-left: 7rem;
  }
  .px-md-7 {
    padding-left: 7rem;
    padding-right: 7rem;
  }
  .py-md-7 {
    padding-top: 7rem;
    padding-bottom: 7rem;
  }
  .col-md-8 {
    flex: 0 0 12.5%;
    max-width: 12.5%;
  }
  .gutter-md-8 {
    margin-left: -4rem;
    margin-right: -4rem;
  }
  .gutter-md-8 > [class^=col-] {
    padding: 4rem;
  }
  .m-md-8 {
    margin: 8rem;
  }
  .mt-md-8 {
    margin-top: 8rem;
  }
  .mr-md-8 {
    margin-right: 8rem;
  }
  .mb-md-8 {
    margin-bottom: 8rem;
  }
  .ml-md-8 {
    margin-left: 8rem;
  }
  .p-md-8 {
    padding: 8rem;
  }
  .pt-md-8 {
    padding-top: 8rem;
  }
  .pr-md-8 {
    padding-right: 8rem;
  }
  .pb-md-8 {
    padding-bottom: 8rem;
  }
  .pl-md-8 {
    padding-left: 8rem;
  }
  .px-md-8 {
    padding-left: 8rem;
    padding-right: 8rem;
  }
  .py-md-8 {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
  .col-md-9 {
    flex: 0 0 11.1111111111%;
    max-width: 11.1111111111%;
  }
  .gutter-md-9 {
    margin-left: -4.5rem;
    margin-right: -4.5rem;
  }
  .gutter-md-9 > [class^=col-] {
    padding: 4.5rem;
  }
  .m-md-9 {
    margin: 9rem;
  }
  .mt-md-9 {
    margin-top: 9rem;
  }
  .mr-md-9 {
    margin-right: 9rem;
  }
  .mb-md-9 {
    margin-bottom: 9rem;
  }
  .ml-md-9 {
    margin-left: 9rem;
  }
  .p-md-9 {
    padding: 9rem;
  }
  .pt-md-9 {
    padding-top: 9rem;
  }
  .pr-md-9 {
    padding-right: 9rem;
  }
  .pb-md-9 {
    padding-bottom: 9rem;
  }
  .pl-md-9 {
    padding-left: 9rem;
  }
  .px-md-9 {
    padding-left: 9rem;
    padding-right: 9rem;
  }
  .py-md-9 {
    padding-top: 9rem;
    padding-bottom: 9rem;
  }
  .col-md-10 {
    flex: 0 0 10%;
    max-width: 10%;
  }
  .gutter-md-10 {
    margin-left: -5rem;
    margin-right: -5rem;
  }
  .gutter-md-10 > [class^=col-] {
    padding: 5rem;
  }
  .m-md-10 {
    margin: 10rem;
  }
  .mt-md-10 {
    margin-top: 10rem;
  }
  .mr-md-10 {
    margin-right: 10rem;
  }
  .mb-md-10 {
    margin-bottom: 10rem;
  }
  .ml-md-10 {
    margin-left: 10rem;
  }
  .p-md-10 {
    padding: 10rem;
  }
  .pt-md-10 {
    padding-top: 10rem;
  }
  .pr-md-10 {
    padding-right: 10rem;
  }
  .pb-md-10 {
    padding-bottom: 10rem;
  }
  .pl-md-10 {
    padding-left: 10rem;
  }
  .px-md-10 {
    padding-left: 10rem;
    padding-right: 10rem;
  }
  .py-md-10 {
    padding-top: 10rem;
    padding-bottom: 10rem;
  }
}
@media only screen and (max-width: 48em) {
  .col-sm-1 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .gutter-sm-1 {
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }
  .gutter-sm-1 > [class^=col-] {
    padding: 0.5rem;
  }
  .m-sm-1 {
    margin: 1rem;
  }
  .mt-sm-1 {
    margin-top: 1rem;
  }
  .mr-sm-1 {
    margin-right: 1rem;
  }
  .mb-sm-1 {
    margin-bottom: 1rem;
  }
  .ml-sm-1 {
    margin-left: 1rem;
  }
  .p-sm-1 {
    padding: 1rem;
  }
  .pt-sm-1 {
    padding-top: 1rem;
  }
  .pr-sm-1 {
    padding-right: 1rem;
  }
  .pb-sm-1 {
    padding-bottom: 1rem;
  }
  .pl-sm-1 {
    padding-left: 1rem;
  }
  .px-sm-1 {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .py-sm-1 {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
  .col-sm-2 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .gutter-sm-2 {
    margin-left: -1rem;
    margin-right: -1rem;
  }
  .gutter-sm-2 > [class^=col-] {
    padding: 1rem;
  }
  .m-sm-2 {
    margin: 2rem;
  }
  .mt-sm-2 {
    margin-top: 2rem;
  }
  .mr-sm-2 {
    margin-right: 2rem;
  }
  .mb-sm-2 {
    margin-bottom: 2rem;
  }
  .ml-sm-2 {
    margin-left: 2rem;
  }
  .p-sm-2 {
    padding: 2rem;
  }
  .pt-sm-2 {
    padding-top: 2rem;
  }
  .pr-sm-2 {
    padding-right: 2rem;
  }
  .pb-sm-2 {
    padding-bottom: 2rem;
  }
  .pl-sm-2 {
    padding-left: 2rem;
  }
  .px-sm-2 {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .py-sm-2 {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  .col-sm-3 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .gutter-sm-3 {
    margin-left: -1.5rem;
    margin-right: -1.5rem;
  }
  .gutter-sm-3 > [class^=col-] {
    padding: 1.5rem;
  }
  .m-sm-3 {
    margin: 3rem;
  }
  .mt-sm-3 {
    margin-top: 3rem;
  }
  .mr-sm-3 {
    margin-right: 3rem;
  }
  .mb-sm-3 {
    margin-bottom: 3rem;
  }
  .ml-sm-3 {
    margin-left: 3rem;
  }
  .p-sm-3 {
    padding: 3rem;
  }
  .pt-sm-3 {
    padding-top: 3rem;
  }
  .pr-sm-3 {
    padding-right: 3rem;
  }
  .pb-sm-3 {
    padding-bottom: 3rem;
  }
  .pl-sm-3 {
    padding-left: 3rem;
  }
  .px-sm-3 {
    padding-left: 3rem;
    padding-right: 3rem;
  }
  .py-sm-3 {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  .col-sm-4 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .gutter-sm-4 {
    margin-left: -2rem;
    margin-right: -2rem;
  }
  .gutter-sm-4 > [class^=col-] {
    padding: 2rem;
  }
  .m-sm-4 {
    margin: 4rem;
  }
  .mt-sm-4 {
    margin-top: 4rem;
  }
  .mr-sm-4 {
    margin-right: 4rem;
  }
  .mb-sm-4 {
    margin-bottom: 4rem;
  }
  .ml-sm-4 {
    margin-left: 4rem;
  }
  .p-sm-4 {
    padding: 4rem;
  }
  .pt-sm-4 {
    padding-top: 4rem;
  }
  .pr-sm-4 {
    padding-right: 4rem;
  }
  .pb-sm-4 {
    padding-bottom: 4rem;
  }
  .pl-sm-4 {
    padding-left: 4rem;
  }
  .px-sm-4 {
    padding-left: 4rem;
    padding-right: 4rem;
  }
  .py-sm-4 {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  .col-sm-5 {
    flex: 0 0 20%;
    max-width: 20%;
  }
  .gutter-sm-5 {
    margin-left: -2.5rem;
    margin-right: -2.5rem;
  }
  .gutter-sm-5 > [class^=col-] {
    padding: 2.5rem;
  }
  .m-sm-5 {
    margin: 5rem;
  }
  .mt-sm-5 {
    margin-top: 5rem;
  }
  .mr-sm-5 {
    margin-right: 5rem;
  }
  .mb-sm-5 {
    margin-bottom: 5rem;
  }
  .ml-sm-5 {
    margin-left: 5rem;
  }
  .p-sm-5 {
    padding: 5rem;
  }
  .pt-sm-5 {
    padding-top: 5rem;
  }
  .pr-sm-5 {
    padding-right: 5rem;
  }
  .pb-sm-5 {
    padding-bottom: 5rem;
  }
  .pl-sm-5 {
    padding-left: 5rem;
  }
  .px-sm-5 {
    padding-left: 5rem;
    padding-right: 5rem;
  }
  .py-sm-5 {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
  .col-sm-6 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .gutter-sm-6 {
    margin-left: -3rem;
    margin-right: -3rem;
  }
  .gutter-sm-6 > [class^=col-] {
    padding: 3rem;
  }
  .m-sm-6 {
    margin: 6rem;
  }
  .mt-sm-6 {
    margin-top: 6rem;
  }
  .mr-sm-6 {
    margin-right: 6rem;
  }
  .mb-sm-6 {
    margin-bottom: 6rem;
  }
  .ml-sm-6 {
    margin-left: 6rem;
  }
  .p-sm-6 {
    padding: 6rem;
  }
  .pt-sm-6 {
    padding-top: 6rem;
  }
  .pr-sm-6 {
    padding-right: 6rem;
  }
  .pb-sm-6 {
    padding-bottom: 6rem;
  }
  .pl-sm-6 {
    padding-left: 6rem;
  }
  .px-sm-6 {
    padding-left: 6rem;
    padding-right: 6rem;
  }
  .py-sm-6 {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
  .col-sm-7 {
    flex: 0 0 14.2857142857%;
    max-width: 14.2857142857%;
  }
  .gutter-sm-7 {
    margin-left: -3.5rem;
    margin-right: -3.5rem;
  }
  .gutter-sm-7 > [class^=col-] {
    padding: 3.5rem;
  }
  .m-sm-7 {
    margin: 7rem;
  }
  .mt-sm-7 {
    margin-top: 7rem;
  }
  .mr-sm-7 {
    margin-right: 7rem;
  }
  .mb-sm-7 {
    margin-bottom: 7rem;
  }
  .ml-sm-7 {
    margin-left: 7rem;
  }
  .p-sm-7 {
    padding: 7rem;
  }
  .pt-sm-7 {
    padding-top: 7rem;
  }
  .pr-sm-7 {
    padding-right: 7rem;
  }
  .pb-sm-7 {
    padding-bottom: 7rem;
  }
  .pl-sm-7 {
    padding-left: 7rem;
  }
  .px-sm-7 {
    padding-left: 7rem;
    padding-right: 7rem;
  }
  .py-sm-7 {
    padding-top: 7rem;
    padding-bottom: 7rem;
  }
  .col-sm-8 {
    flex: 0 0 12.5%;
    max-width: 12.5%;
  }
  .gutter-sm-8 {
    margin-left: -4rem;
    margin-right: -4rem;
  }
  .gutter-sm-8 > [class^=col-] {
    padding: 4rem;
  }
  .m-sm-8 {
    margin: 8rem;
  }
  .mt-sm-8 {
    margin-top: 8rem;
  }
  .mr-sm-8 {
    margin-right: 8rem;
  }
  .mb-sm-8 {
    margin-bottom: 8rem;
  }
  .ml-sm-8 {
    margin-left: 8rem;
  }
  .p-sm-8 {
    padding: 8rem;
  }
  .pt-sm-8 {
    padding-top: 8rem;
  }
  .pr-sm-8 {
    padding-right: 8rem;
  }
  .pb-sm-8 {
    padding-bottom: 8rem;
  }
  .pl-sm-8 {
    padding-left: 8rem;
  }
  .px-sm-8 {
    padding-left: 8rem;
    padding-right: 8rem;
  }
  .py-sm-8 {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
  .col-sm-9 {
    flex: 0 0 11.1111111111%;
    max-width: 11.1111111111%;
  }
  .gutter-sm-9 {
    margin-left: -4.5rem;
    margin-right: -4.5rem;
  }
  .gutter-sm-9 > [class^=col-] {
    padding: 4.5rem;
  }
  .m-sm-9 {
    margin: 9rem;
  }
  .mt-sm-9 {
    margin-top: 9rem;
  }
  .mr-sm-9 {
    margin-right: 9rem;
  }
  .mb-sm-9 {
    margin-bottom: 9rem;
  }
  .ml-sm-9 {
    margin-left: 9rem;
  }
  .p-sm-9 {
    padding: 9rem;
  }
  .pt-sm-9 {
    padding-top: 9rem;
  }
  .pr-sm-9 {
    padding-right: 9rem;
  }
  .pb-sm-9 {
    padding-bottom: 9rem;
  }
  .pl-sm-9 {
    padding-left: 9rem;
  }
  .px-sm-9 {
    padding-left: 9rem;
    padding-right: 9rem;
  }
  .py-sm-9 {
    padding-top: 9rem;
    padding-bottom: 9rem;
  }
  .col-sm-10 {
    flex: 0 0 10%;
    max-width: 10%;
  }
  .gutter-sm-10 {
    margin-left: -5rem;
    margin-right: -5rem;
  }
  .gutter-sm-10 > [class^=col-] {
    padding: 5rem;
  }
  .m-sm-10 {
    margin: 10rem;
  }
  .mt-sm-10 {
    margin-top: 10rem;
  }
  .mr-sm-10 {
    margin-right: 10rem;
  }
  .mb-sm-10 {
    margin-bottom: 10rem;
  }
  .ml-sm-10 {
    margin-left: 10rem;
  }
  .p-sm-10 {
    padding: 10rem;
  }
  .pt-sm-10 {
    padding-top: 10rem;
  }
  .pr-sm-10 {
    padding-right: 10rem;
  }
  .pb-sm-10 {
    padding-bottom: 10rem;
  }
  .pl-sm-10 {
    padding-left: 10rem;
  }
  .px-sm-10 {
    padding-left: 10rem;
    padding-right: 10rem;
  }
  .py-sm-10 {
    padding-top: 10rem;
    padding-bottom: 10rem;
  }
}
.m-0 {
  margin: 0;
}

.mt-0 {
  margin-top: 0;
}

.mr-0 {
  margin-right: 0;
}

.mb-0 {
  margin-bottom: 0;
}

.ml-0 {
  margin-left: 0;
}

.p-0 {
  padding: 0;
}

.pt-0 {
  padding-top: 0;
}

.pr-0 {
  padding-right: 0;
}

.pb-0 {
  padding-bottom: 0;
}

.pl-0 {
  padding-left: 0;
}

.px-0 {
  padding-left: 0;
  padding-right: 0;
}

.py-0 {
  padding-top: 0;
  padding-bottom: 0;
}

@media only screen and (min-width: 62em) {
  .m-lg-0 {
    margin: 0;
  }
  .mt-lg-0 {
    margin-top: 0;
  }
  .mr-lg-0 {
    margin-right: 0;
  }
  .mb-lg-0 {
    margin-bottom: 0;
  }
  .ml-lg-0 {
    margin-left: 0;
  }
  .p-lg-0 {
    padding: 0;
  }
  .pt-lg-0 {
    padding-top: 0;
  }
  .pr-lg-0 {
    padding-right: 0;
  }
  .pb-lg-0 {
    padding-bottom: 0;
  }
  .pl-lg-0 {
    padding-left: 0;
  }
  .px-lg-0 {
    padding-left: 0;
    padding-right: 0;
  }
  .py-lg-0 {
    padding-top: 0;
    padding-bottom: 0;
  }
}
@media only screen and (max-width: 62em) {
  .m-md-0 {
    margin: 0;
  }
  .mt-md-0 {
    margin-top: 0;
  }
  .mr-md-0 {
    margin-right: 0;
  }
  .mb-md-0 {
    margin-bottom: 0;
  }
  .ml-md-0 {
    margin-left: 0;
  }
  .p-md-0 {
    padding: 0;
  }
  .pt-md-0 {
    padding-top: 0;
  }
  .pr-md-0 {
    padding-right: 0;
  }
  .pb-md-0 {
    padding-bottom: 0;
  }
  .pl-md-0 {
    padding-left: 0;
  }
  .px-md-0 {
    padding-left: 0;
    padding-right: 0;
  }
  .py-md-0 {
    padding-top: 0;
    padding-bottom: 0;
  }
}
@media only screen and (max-width: 48em) {
  .m-sm-0 {
    margin: 0;
  }
  .mt-sm-0 {
    margin-top: 0;
  }
  .mr-sm-0 {
    margin-right: 0;
  }
  .mb-sm-0 {
    margin-bottom: 0;
  }
  .ml-sm-0 {
    margin-left: 0;
  }
  .p-sm-0 {
    padding: 0;
  }
  .pt-sm-0 {
    padding-top: 0;
  }
  .pr-sm-0 {
    padding-right: 0;
  }
  .pb-sm-0 {
    padding-bottom: 0;
  }
  .pl-sm-0 {
    padding-left: 0;
  }
  .px-sm-0 {
    padding-left: 0;
    padding-right: 0;
  }
  .py-sm-0 {
    padding-top: 0;
    padding-bottom: 0;
  }
}
.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: #006AB6;
}
.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: #006AB6;
  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: "\e8c8";
  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: #6BB832;
}
.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: #006AB6;
}
.text-card:hover .date {
  color: #006AB6;
}
.text-card--secondary:hover .title {
  color: #6BB832;
}
.text-card--secondary:hover .date {
  color: #6BB832;
}
.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: #006AB6;
  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: #006AB6;
  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-image-card {
  position: relative;
  padding-bottom: 4.5rem;
}
.news-image-card .cover {
  aspect-ratio: 1.8;
  overflow: hidden;
}
.news-image-card .cover img {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.news-image-card:hover .cover img {
  transform: scale(1.03);
}
.news-image-card:hover .info {
  box-shadow: 0 0 3rem rgba(48, 139, 219, 0.4);
}
.news-image-card .info {
  position: absolute;
  left: 3.8rem;
  right: 3rem;
  height: 9rem;
  background-color: #fff;
  bottom: 0;
  padding-left: 6rem;
  box-shadow: 0 0 3rem rgba(171, 195, 252, 0.3);
}
@media only screen and (max-width: 75em) {
  .news-image-card .info {
    height: 6rem;
    right: 0rem;
    padding-left: 4rem;
  }
}
.news-image-card .info .title {
  font-size: 2.4rem;
  line-height: 9rem;
  color: #006AB6;
  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: 75em) {
  .news-image-card .info .title {
    font-size: 2rem;
    line-height: 6rem;
  }
}
.news-image-card .date-box {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 3;
  width: 7.7rem;
  height: 7.7rem;
  background: linear-gradient(135deg, #308BDB, #6BB832);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
}
@media only screen and (max-width: 75em) {
  .news-image-card .date-box {
    width: 7rem;
    height: 6rem;
    align-items: center;
  }
}
.news-image-card .date-box .day {
  font-size: 2rem;
  color: #fff;
  padding-right: 1rem;
}
@media only screen and (max-width: 75em) {
  .news-image-card .date-box .day {
    font-size: 1.8rem;
    padding-right: 0rem;
  }
}
.news-image-card .date-box .year {
  font-size: 1.2rem;
  color: #fff;
  padding-right: 1rem;
}
@media only screen and (max-width: 75em) {
  .news-image-card .date-box .year {
    padding-right: 0rem;
  }
}

.news-text-card {
  position: relative;
  padding: 2.5rem 0;
  border-bottom: 1px solid #e7e7e7;
  transition: border-color 0.3s ease;
}
@media only screen and (max-width: 75em) {
  .news-text-card {
    padding: 2rem 0;
  }
}
.news-text-card .top {
  display: flex;
}
.news-text-card .top .date-box {
  flex: none;
  display: flex;
  align-items: center;
  margin-right: 2rem;
}
.news-text-card .top .date-box .day {
  font-size: 2.4rem;
  color: #ccc;
  line-height: 1;
}
.news-text-card .top .date-box .year {
  font-size: 1.6rem;
  color: #ccc;
  line-height: 1;
  margin-left: 1rem;
}
.news-text-card .top .title {
  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;
}
.news-text-card .bottom {
  display: none;
  margin-top: 0.5rem;
}
.news-text-card .bottom .desc {
  font-size: 1.6rem;
  color: #333;
  line-height: 2.6rem;
  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-text-card .link {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
}
.news-text-card.active {
  border-bottom-color: rgba(0, 106, 182, 0.3);
}
.news-text-card.active .top .title {
  transition: color 0.3s, font-weight 0.3s;
}
.news-text-card.active .bottom {
  animation: fadeIn 0.3s ease;
}
.news-text-card.active .top {
  display: block;
}
.news-text-card.active .top .date-box .day {
  color: #006AB6;
}
.news-text-card.active .top .date-box .year {
  color: #006AB6;
}
.news-text-card.active .top .title {
  margin-top: 1rem;
  font-weight: 600;
  color: #006AB6;
}
.news-text-card.active .bottom {
  display: block;
}
.news-text-card.active .bottom .desc {
  color: #006AB6;
}

.class-card {
  position: relative;
  border-left: 2px solid #308BDB;
  background-color: rgba(255, 255, 255, 0.6);
  padding-top: 2rem;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, box-shadow;
}
.class-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: -2px;
  width: 6px;
  height: 100%;
  background: linear-gradient(to bottom, #308BDB, #6BB832);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 2;
}
.class-card .link {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
}
.class-card .date-box {
  display: flex;
  position: absolute;
  left: -2px;
  top: -1.2rem;
}
.class-card .date-box .text {
  background: linear-gradient(135deg, #308BDB, #6BB832);
  clip-path: polygon(0 0, 93% 0, 100% 100%, 0 100%);
  color: #fff;
  font-size: 1.6rem;
  padding: 0.4rem 2rem 0.4rem 1rem;
}
.class-card .date-box .text::before {
  content: "";
  font-family: "iconfont";
  content: "\e61e";
}
.class-card .info {
  padding-left: 2rem;
  padding-top: 1.5rem;
  padding-right: 2rem;
}
.class-card .info .title {
  font-size: 1.8rem;
  line-height: 2.8rem;
  height: 8.4rem;
  color: #333;
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
}
.class-card .info .title .cate {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #AAAAAA;
  white-space: nowrap;
}
.class-card .info .title .cate a {
  color: #DD2400;
  text-decoration: none;
}
.class-card .info .title .cate a:hover {
  color: #006AB6;
  text-decoration: underline;
}
.class-card .info .tips {
  padding-top: 1rem;
  padding-bottom: 2rem;
  min-height: 7rem;
}
.class-card .info .tips .text:not(:last-child) {
  margin-bottom: 0.5rem;
}
.class-card .info .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: 2rem;
}
.class-card .info .tips .text::before {
  content: "";
  font-family: "iconfont";
  display: flex;
  justify-content: center;
  align-items: center;
  height: 2.2rem;
  line-height: 3rem;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  color: #308BDB;
}
.class-card .info .tips .text--user::before {
  content: "\e622";
}
.class-card .info .tips .text--date::before {
  content: "\e600";
}
.class-card .info .tips .text--address::before {
  content: "\e601";
}
.class-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 1rem 0 0 #006AB6;
  background-color: white;
}
.class-card:hover::after {
  opacity: 1;
}
.class-card:hover .title {
  color: #006AB6;
  font-weight: 600;
}
.class-card:hover .date-box .text {
  background-size: 200% 200%;
  animation: gradientFlow 3s ease infinite;
}
.class-card:hover .tips .text {
  color: #006AB6;
}
.class-card:hover .tips .text::before {
  color: #006AB6;
}

.out-link-card .cover {
  aspect-ratio: 3;
  box-shadow: 0px 0px 27px 0px #ABC3FC;
  overflow: hidden;
  transition: box-shadow 0.4s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.out-link-card .cover img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background-color: #fff;
}
.out-link-card .line {
  height: 10rem;
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.out-link-card .line::before {
  flex: none;
  display: block;
  content: "";
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 50%;
  background-color: #308BDB;
  outline: 6px solid #E0EBF4;
  outline-offset: -4px;
}
.out-link-card .line::after {
  flex: 1;
  display: block;
  content: "";
  width: 1px;
  border-right: 1px solid #ccc;
}
.out-link-card:hover .cover {
  transform: translateY(-3px);
  box-shadow: 0px 4px 35px 0px rgba(171, 195, 252, 0.5);
}
.out-link-card:hover .line::after {
  border-right-color: #308BDB;
}
.out-link-card:hover .line::before {
  background-color: #308BDB;
  animation: pulseGlow 2s ease-in-out infinite;
}

.article-text-card {
  padding: 2.6rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  column-gap: 3.5rem;
  background: #FFFFFF;
  box-shadow: 0px 0px 3rem 0px #96B9BF;
  border-radius: 1rem 1rem 1rem 1rem;
}
@media only screen and (max-width: 48em) {
  .article-text-card {
    column-gap: 2.5rem;
  }
}
@media only screen and (max-width: 48em) {
  .article-text-card {
    flex-wrap: wrap;
  }
}
.article-text-card .date {
  flex: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 48em) {
  .article-text-card .date {
    order: 2;
  }
}
.article-text-card .date::after {
  content: "";
  display: block;
  width: 4.1rem;
  height: 1.9rem;
  background: url(../images/news-icon.png) no-repeat center center/contain;
}
.article-text-card .date .day {
  font-size: 2.4rem;
  color: #006AB6;
  line-height: 1;
  margin-bottom: 1rem;
}
.article-text-card .date .year {
  font-size: 1.6rem;
  color: #006AB6;
  line-height: 1;
  margin-bottom: 3rem;
}
@media only screen and (max-width: 48em) {
  .article-text-card .date .year {
    margin-bottom: 2rem;
  }
}
.article-text-card .date + .info {
  border-left: 1px solid #006AB6;
  padding-left: 4rem;
}
@media only screen and (max-width: 48em) {
  .article-text-card .date + .info {
    padding-left: 3rem;
  }
}
.article-text-card .cover {
  flex: none;
  width: 23rem;
  aspect-ratio: 1.8;
  border-radius: 1rem;
}
@media only screen and (max-width: 48em) {
  .article-text-card .cover {
    width: 100%;
    order: 1;
    margin-bottom: 2rem;
  }
}
.article-text-card .info {
  flex: 1;
}
@media only screen and (max-width: 48em) {
  .article-text-card .info {
    order: 3;
  }
}
.article-text-card .info .title {
  font-size: 2rem;
  color: #111;
  line-height: 3.2rem;
  margin-bottom: 1rem;
  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 .info .desc {
  font-size: 1.6rem;
  color: #666;
  line-height: 2.6rem;
}
.article-text-card:hover {
  border-radius: 1rem 1rem 0 0;
}
.article-text-card:hover::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  height: 1rem;
  bottom: -1rem;
  border-radius: 0 0 1rem 1rem;
  background: linear-gradient(-90deg, #308BDB, #6BB832);
}
.article-text-card:hover .info .title {
  color: #006AB6;
}
.article-text-card:hover .info .desc {
  color: #006AB6;
}

.lecture-text-card {
  padding: 3rem 4rem;
  background: #FFFFFF;
  border-radius: 1.6rem;
  position: relative;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  margin-bottom: 3rem;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 10px 30px -10px rgba(21, 99, 176, 0.05);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media only screen and (max-width: 48em) {
  .lecture-text-card {
    padding: 2.5rem 2rem;
  }
}
.lecture-text-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px -15px rgba(21, 99, 176, 0.15);
  border-color: rgba(21, 99, 176, 0.1);
}
.lecture-text-card:hover .text-card__heading {
  color: #006AB6;
}
.lecture-text-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(to bottom, #006AB6, #4facfe);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.lecture-text-card:hover::before {
  opacity: 1;
}
.lecture-text-card .text-card__content {
  display: block;
}
.lecture-text-card .text-card__main {
  flex: 1;
  min-width: 0;
  width: 100%;
}
.lecture-text-card .text-card__heading {
  font-size: 2.2rem;
  color: #2c3e50;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.4;
  transition: color 0.3s;
  letter-spacing: 0.5px;
  text-decoration: none;
  display: block;
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}
@media only screen and (max-width: 48em) {
  .lecture-text-card .text-card__heading {
    font-size: 1.8rem;
  }
}
.lecture-text-card .text-card__meta {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
  gap: 2.5rem;
}
@media only screen and (max-width: 48em) {
  .lecture-text-card .text-card__meta {
    flex-direction: column;
    gap: 0.8rem;
  }
}
.lecture-text-card .text-card__meta .meta-item {
  display: flex;
  align-items: center;
  font-size: 1.4rem;
  color: #6c757d;
  font-weight: 500;
}
.lecture-text-card .text-card__meta .meta-item .iconfont {
  color: #006AB6;
  margin-right: 0.8rem;
  font-size: 1.6rem;
  opacity: 0.8;
}
.lecture-text-card .text-card__desc {
  font-size: 1.5rem;
  color: #666;
  line-height: 1.8;
  position: relative;
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}
.lecture-text-card .text-card__desc:empty {
  display: none;
}
.lecture-text-card .text-card__main:has(.text-card__desc:empty) .text-card__meta {
  margin-bottom: 0;
}

.empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 8rem 0;
}
.empty-state .iconfont {
  font-size: 8rem;
  color: #ccc;
  margin-bottom: 2rem;
}
.empty-state .text {
  font-size: 1.8rem;
  color: #999;
}

@media (hover: none) {
  .class-card:hover,
  .news-image-card:hover,
  .out-link-card:hover {
    transform: none;
  }
}
.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-left: 2.6rem;
  padding-right: 4rem;
  height: 7rem;
  border-radius: 0 10rem 10rem 0;
  background: linear-gradient(-45deg, #308BDB, #6BB832);
  position: relative;
}
@media only screen and (max-width: 48em) {
  .custom-breadcrumb {
    display: block;
    height: auto;
    padding: 2rem;
  }
}
.custom-breadcrumb .title {
  font-size: 2.8rem;
  color: #fff;
  font-weight: 900;
  position: relative;
  text-transform: uppercase;
}
@media only screen and (max-width: 48em) {
  .custom-breadcrumb .title {
    font-size: 1.8rem;
  }
}
.custom-breadcrumb .breadcrumb-navs {
  display: flex;
  align-items: center;
}
.custom-breadcrumb .breadcrumb-navs .pos {
  font-size: 1.4rem;
  color: #fff;
  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: "\e60e";
  font-size: 1.4rem;
  color: #fff;
  margin-right: 4px;
}
.custom-breadcrumb .breadcrumb-navs nav {
  display: flex;
  align-items: center;
}
.custom-breadcrumb .breadcrumb-navs nav a {
  font-size: 1.4rem;
  color: #fff;
  transition: 0.3s;
}
.custom-breadcrumb .breadcrumb-navs nav a::before {
  font-family: "iconfont";
  content: "\e63d";
  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 {
  font-weight: 600;
}

.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: #006AB6;
  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: rgba(17, 17, 17, 0.8);
  font-weight: 400;
  background-color: #e3f0ff;
}
@media only screen and (max-width: 75em) {
  .search-input__input {
    width: 30rem;
    height: 5rem;
    font-size: 1.8rem;
  }
}
.search-input__input::placeholder {
  color: currentColor;
  opacity: 1;
}
.search-input__button {
  transition: all 0.3s ease-in-out;
}
.search-input__button:hover {
  background-color: #006AB6;
  color: #ffffff;
}
.search-input__button:active {
  filter: brightness(0.8);
}
.search-input__button {
  position: relative;
  display: block;
  width: 4rem;
  height: 3rem;
  background-color: #e3f0ff;
}
@media only screen and (max-width: 75em) {
  .search-input__button {
    width: 5rem;
    height: 5rem;
  }
}
.search-input__button::after {
  content: "";
  font-family: "iconfont";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: "\e8d6";
  position: absolute;
  font-size: 2rem;
  color: #2f2f2f;
}
.search-input__button:hover::after {
  color: #fff;
}

.custom-selector {
  width: 100%;
  height: 4rem;
  position: relative;
}
.custom-selector__input {
  background: rgba(20, 20, 20, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 1000px;
  position: relative;
  color: #006AB6;
}
.custom-selector__input::after {
  position: absolute;
  top: 1.8rem;
  right: 2rem;
  bottom: auto;
  left: auto;
  z-index: 0;
  content: "";
  display: block;
  width: 0;
  height: 0;
  width: 0;
  height: 0;
  border-top: 8px solid rgba(255, 255, 255, 0.6);
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
}
.custom-selector__placeholder {
  width: 100%;
  height: 4rem;
  padding: 0 2rem;
  line-height: 4rem;
  font-size: 1.6rem;
  color: #ffffff;
  overflow: 0.6;
  cursor: pointer;
  position: relative;
  z-index: 3;
}
.custom-selector__options {
  position: absolute;
  top: auto;
  right: 0;
  bottom: 50px;
  left: 0;
  z-index: 999;
  display: none;
  padding: 1rem;
  border-radius: 1rem;
  background: rgba(20, 20, 20, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.6);
}
.custom-selector__options a {
  display: block;
  padding: 1rem;
  font-size: 1.6rem;
  border: 4px;
  color: #ffffff;
  line-height: 2;
  transition: 0.1s ease-in-out;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.6);
}
.custom-selector__options a:last-child {
  border-bottom: none;
}
.custom-selector__options a:hover {
  background-color: #006AB6;
  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: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background-color: #006AB6;
  color: #ffffff;
  cursor: pointer;
  opacity: 0;
  transform: translate3d(60px, 0, 0);
  transition: opacity 0.4s cubic-bezier(0.53, -0.31, 0.56, 2.18), transform 0.4s cubic-bezier(0.53, -0.31, 0.56, 2.18), box-shadow 0.3s ease, background-color 0.3s ease;
  box-shadow: 0 2px 12px rgba(0, 106, 182, 0.3);
}
.back-top-menu::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 2px dashed rgba(0, 106, 182, 0.3);
  transform: translate(-50%, -50%);
  transition: border-color 0.3s ease;
  pointer-events: none;
}
.back-top-menu__symbol {
  font-size: 2rem;
  font-weight: 700;
  font-family: "Georgia", "Times New Roman", serif;
  line-height: 1;
  transition: transform 0.3s ease;
  position: relative;
  z-index: 1;
}
.back-top-menu.show {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}
.back-top-menu.show::before {
  animation: back-top-spin 30s linear infinite;
}
.back-top-menu:hover {
  background-color: rgb(0, 82.2373626374, 141.2);
  box-shadow: 0 4px 24px rgba(0, 106, 182, 0.5);
}
.back-top-menu:hover .back-top-menu__symbol {
  transform: translateY(-3px);
}
.back-top-menu:hover::before {
  border-color: rgba(0, 106, 182, 0.6);
  animation-duration: 3s;
}
@media only screen and (max-width: 48em) {
  .back-top-menu {
    width: 40px;
    height: 40px;
    bottom: 8rem;
    right: 1.5rem;
  }
  .back-top-menu::before {
    width: 54px;
    height: 54px;
  }
  .back-top-menu__symbol {
    font-size: 1.8rem;
  }
}

@keyframes back-top-spin {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
div.pb_sys_common.pb_sys_normal.pb_sys_style1 {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 6rem 0;
}
@media only screen and (max-width: 75em) {
  div.pb_sys_common.pb_sys_normal.pb_sys_style1 {
    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: #006AB6;
}
@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: #006AB6;
  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: #006AB6;
}
@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: #006AB6;
}
@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: #006AB6;
}
@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: #006AB6;
  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: 24px;
  font-weight: 600;
  line-height: 1.5em;
  text-align: center;
  color: #006AB6;
  margin-bottom: 3rem;
}
@media only screen and (max-width: 75em) {
  .article-details__heading {
    font-size: 22px;
  }
}
@media only screen and (max-width: 62em) {
  .article-details__heading {
    font-size: 20px;
  }
}
@media only screen and (max-width: 48em) {
  .article-details__heading {
    font-size: 18px;
    font-family: "MontserratRegular";
  }
}
.article-details__describe {
  padding: 1rem 0;
  text-align: center;
  background-color: rgba(212, 223, 236, 0.6);
  margin-bottom: 2rem;
}
.article-details__tag {
  font-size: 1.4rem;
  color: #666666;
}
.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 > * {
  max-width: 100%;
}
.article-details__content .edui-upload-video {
  max-width: 100%;
}
.article-details__content span img {
  display: inline-block;
  margin: 0;
  margin-right: 6px;
}

.article-prev-next {
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  background-color: rgba(212, 223, 236, 0.6);
}
@media only screen and (max-width: 75em) {
  .article-prev-next {
    display: block;
  }
}
.article-prev-next a {
  display: block;
  font-size: 1.6rem;
  color: #111111;
}
.article-prev-next a span {
  font-weight: 600;
  color: #024593;
}
.article-prev-next a:hover {
  color: #024593;
  text-decoration: underline;
}

.header__search {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 10, 10, 0.65);
  backdrop-filter: blur(20px);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}
.header__search.active {
  opacity: 1;
  pointer-events: auto;
}
.header__search.active .header__search-content {
  transform: translateY(0);
}
.header__search-content {
  width: 100%;
  max-width: 680px;
  padding: 0 20px;
  transform: translateY(20px);
  transition: all 0.35s ease;
}
.header__search-inner {
  position: relative;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 16px;
  padding: 30px 28px 24px;
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2), inset 0 0 0 1px rgba(255, 255, 255, 0.4);
}
.header__search-title {
  margin: 0 0 18px;
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  color: #222;
}
.header__search-input {
  position: relative;
  display: flex;
  align-items: center;
  background: #f5f6f7;
  border-radius: 999px;
  padding: 6px 6px 6px 18px;
  transition: all 0.25s ease;
}
.header__search-input:focus-within {
  background: #fff;
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.05), 0 8px 24px rgba(0, 0, 0, 0.1);
}
.header__search-input-field {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-size: 16px;
  color: #333;
}
.header__search-input-field::placeholder {
  color: #aaa;
}
.header__search-btn {
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #4f8cff, #6aa8ff);
  color: #fff;
  transition: all 0.25s ease;
}
.header__search-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(79, 140, 255, 0.4);
}
.header__search-close {
  position: absolute;
  top: 24px;
  right: 28px;
  font-size: 22px;
  color: #fff;
  cursor: pointer;
  opacity: 0.8;
  transition: all 0.2s ease;
}
.header__search-close:hover {
  opacity: 1;
  transform: rotate(90deg);
}

#pageLoading {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  z-index: 99999999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0a0e27 0%, #1a1a3e 50%, #0f172a 100%);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
@media (max-width: 600px) {
  #pageLoading {
    width: 100%;
    height: 100%;
    height: 100dvh;
  }
}
#pageLoading.loaded {
  opacity: 0;
  transform: translateY(-30px);
  pointer-events: none;
}
#pageLoading .page-loading__container {
  position: relative;
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#pageLoading .page-loading__infinity {
  position: relative;
  z-index: 2;
  font-size: 64px;
  font-weight: 300;
  color: transparent;
  background: linear-gradient(135deg, #60a5fa, #a78bfa, #60a5fa);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  animation: infinityRotate 6s linear infinite, gradientShift 3s ease-in-out infinite, pulseGlow 2s ease-in-out infinite;
  filter: drop-shadow(0 0 20px rgba(96, 165, 250, 0.4));
}
#pageLoading .page-loading__orbit {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}
#pageLoading .page-loading__symbol {
  position: absolute;
  font-size: 18px;
  font-weight: 300;
  color: rgba(167, 139, 250, 0.6);
  animation: breathe 3s ease-in-out infinite;
}
#pageLoading .page-loading__symbol--1 {
  top: 50%;
  left: 0;
  transform: translate(-50%, -50%);
  animation: orbit1 10s linear infinite, breathe 3s ease-in-out infinite;
  animation-delay: 0s;
  color: rgba(96, 165, 250, 0.7);
}
#pageLoading .page-loading__symbol--2 {
  top: 10%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: orbit2 12s linear infinite, breathe 3s ease-in-out infinite;
  animation-delay: -2s;
  color: rgba(167, 139, 250, 0.6);
  font-size: 20px;
}
#pageLoading .page-loading__symbol--3 {
  top: 50%;
  right: 0;
  transform: translate(50%, -50%);
  animation: orbit3 8s linear infinite, breathe 3s ease-in-out infinite;
  animation-delay: -4s;
  color: rgba(139, 92, 246, 0.65);
}
#pageLoading .page-loading__symbol--4 {
  bottom: 10%;
  left: 50%;
  transform: translate(-50%, 50%);
  animation: orbit4 14s linear infinite, breathe 3s ease-in-out infinite;
  animation-delay: -6s;
  color: rgba(96, 165, 250, 0.55);
  font-size: 16px;
}
#pageLoading .page-loading__symbol--5 {
  top: 25%;
  left: 15%;
  transform: translate(-50%, -50%);
  animation: orbit5 11s linear infinite, breathe 3s ease-in-out infinite;
  animation-delay: -1s;
  color: rgba(139, 92, 246, 0.5);
}
#pageLoading .page-loading__symbol--6 {
  bottom: 25%;
  right: 15%;
  transform: translate(50%, 50%);
  animation: orbit6 9s linear infinite, breathe 3s ease-in-out infinite;
  animation-delay: -3s;
  color: rgba(96, 165, 250, 0.6);
}
#pageLoading .page-loading__glow {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
  width: 180px;
  height: 40px;
  background: radial-gradient(ellipse, rgba(96, 165, 250, 0.25) 0%, transparent 70%);
  animation: glowPulse 2s ease-in-out infinite;
}

@keyframes infinityRotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes gradientShift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}
@keyframes pulseGlow {
  0%, 100% {
    filter: drop-shadow(0 0 20px rgba(96, 165, 250, 0.4));
  }
  50% {
    filter: drop-shadow(0 0 35px rgba(167, 139, 250, 0.7));
  }
}
@keyframes breathe {
  0%, 100% {
    opacity: 0.4;
    transform: scale(0.9);
  }
  50% {
    opacity: 1;
    transform: scale(1.1);
  }
}
@keyframes orbit1 {
  0% {
    transform: rotate(0deg) translateX(70px) rotate(0deg);
  }
  100% {
    transform: rotate(360deg) translateX(70px) rotate(-360deg);
  }
}
@keyframes orbit2 {
  0% {
    transform: rotate(0deg) translateX(85px) rotate(0deg);
  }
  100% {
    transform: rotate(-360deg) translateX(85px) rotate(360deg);
  }
}
@keyframes orbit3 {
  0% {
    transform: rotate(0deg) translateX(60px) rotate(0deg);
  }
  100% {
    transform: rotate(360deg) translateX(60px) rotate(-360deg);
  }
}
@keyframes orbit4 {
  0% {
    transform: rotate(0deg) translateX(90px) rotate(0deg);
  }
  100% {
    transform: rotate(-360deg) translateX(90px) rotate(360deg);
  }
}
@keyframes orbit5 {
  0% {
    transform: rotate(0deg) translateX(50px) rotate(0deg);
  }
  100% {
    transform: rotate(360deg) translateX(50px) rotate(-360deg);
  }
}
@keyframes orbit6 {
  0% {
    transform: rotate(0deg) translateX(65px) rotate(0deg);
  }
  100% {
    transform: rotate(-360deg) translateX(65px) rotate(360deg);
  }
}
@keyframes glowPulse {
  0%, 100% {
    opacity: 0.5;
    transform: translateX(-50%) scale(1);
  }
  50% {
    opacity: 1;
    transform: translateX(-50%) scale(1.1);
  }
}
.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: #006AB6;
    border-top: none;
  }
  .header::after {
    display: none;
  }
}
.header.scroll {
  background: #006AB6;
}
.header.scroll::after {
  display: none;
}
.header::after {
  display: block;
  content: "";
  width: 100%;
  height: 20rem;
  background: linear-gradient(#002954, transparent);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
}
@media only screen and (max-width: 75em) {
  .header::after {
    display: none;
  }
}
.header__content {
  height: 12rem;
  padding: 0 5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 3;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
@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-width: 80%;
  max-height: 80%;
}
.header__content-right {
  display: flex;
  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: #006AB6;
    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-bottom {
  padding-right: 3rem;
}
@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;
  }
}
@media only screen and (max-width: 48em) {
  .header__menus {
    width: 100%;
    padding: 2rem 0;
  }
}
.header__menus > *:not(:last-child) {
  margin-right: 3rem;
}
.header__menus .text {
  font-size: 1.6rem;
  color: #fff;
  opacity: 0.8;
}
.header__menus .text:hover {
  opacity: 1;
}
.header__menus .i-18n {
  padding: 2px 4px;
  border-radius: 8px;
  border: 2px solid #fff;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1;
  color: #fff;
  opacity: 0.8;
  transition: 0.3s ease-in-out;
}
.header__menus .i-18n:hover {
  background-color: #fff;
  color: #111;
  opacity: 1;
}
@media only screen and (max-width: 75em) {
  .header__menus .search-input {
    margin-top: 1.5rem;
  }
}
.header__menus .iconfont {
  display: block;
  color: #fff;
  font-weight: 400;
  font-size: 2.4rem;
  cursor: pointer;
  opacity: 0.8;
}
.header__menus .iconfont: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 {
  width: 50vw;
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 75em) {
  .web-nav__1-list {
    width: auto;
    display: block;
    padding: 0rem 2rem;
  }
}
.web-nav__1-item {
  list-style: none;
  position: relative;
}
@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: #6BB832;
}
@media only screen and (max-width: 75em) {
  .web-nav__1-link.active {
    color: #fff;
  }
}
.web-nav__1-item:hover .web-nav__2-list {
  display: block;
  animation: dropdownFadeIn 0.3s ease;
}
.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;
  padding: 8px;
  min-width: 18rem;
  transform: translateX(-50%);
  box-shadow: 0 0.8rem 2.4rem rgba(0, 0, 0, 0.15);
  border-radius: 8px;
}
.web-nav__2-list::after {
  display: block;
  content: "";
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid #fff;
  position: absolute;
  left: 50%;
  top: 0px;
  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);
    box-shadow: none;
    border-radius: 0;
  }
}
.web-nav__2-item {
  list-style: none;
  position: relative;
}
.web-nav__2-item:not(:last-child) {
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
@media only screen and (max-width: 75em) {
  .web-nav__2-item:not(:last-child) {
    border-bottom: none;
  }
}
@media only screen and (max-width: 75em) {
  .web-nav__2-item:first-child {
    border-radius: 0;
    overflow: visible;
  }
}
@media only screen and (max-width: 75em) {
  .web-nav__2-item:last-child {
    border-radius: 0;
    overflow: visible;
  }
}
.web-nav__2-link {
  display: block;
  padding: 1.2rem 2rem;
  background-color: #fff;
  font-size: 1.8rem;
  text-align: left;
  line-height: 1.4;
  color: #2f2f2f;
  white-space: nowrap;
  transition: all 0.25s ease;
  position: relative;
}
@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;
    padding: 0;
  }
}
.web-nav__2-link:hover, .web-nav__2-link.active {
  color: #ffffff;
  background: #006AB6;
  padding-left: 2.5rem;
  font-weight: 500;
}
@media only screen and (max-width: 75em) {
  .web-nav__2-link:hover, .web-nav__2-link.active {
    color: #ffffff;
    background: transparent;
    padding-left: 0;
    font-weight: 400;
  }
}
.web-nav__2-link--arrow::after {
  content: "";
  font-family: "iconfont";
  content: "\e63d";
}
@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(0, 106, 182, 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: #006AB6;
}
@media only screen and (max-width: 75em) {
  .web-nav__3-link:hover {
    color: #ffffff;
    font-weight: 400;
    background: transparent;
  }
}

@keyframes dropdownFadeIn {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}
.footer {
  background: url(../images/footer-bg.png) no-repeat center center/cover;
}
.footer__content {
  padding: 3rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (max-width: 48em) {
  .footer__content {
    display: block;
  }
}
.footer__content-left {
  flex: none;
}
.footer__content-left .footer-logo {
  padding-right: 4rem;
  border-right: 1px solid rgba(255, 255, 255, 0.3);
}
.footer__content-left .footer-logo img {
  display: block;
  max-width: 50rem;
}
@media only screen and (max-width: 48em) {
  .footer__content-left .footer-logo img {
    width: 100%;
  }
}
.footer__content-medium {
  flex: 1;
  padding-left: 4rem;
}
.footer__content-medium .footer-info {
  padding-top: 2rem;
}
.footer__content-medium .footer-info p {
  max-width: 60rem;
  font-size: 1.4rem;
  color: #fff;
  line-height: 2;
  opacity: 0.8;
}
.footer__content-medium .copyright {
  padding-top: 2rem;
}
.footer__content-medium .copyright p {
  max-width: 60rem;
  font-size: 1.4rem;
  color: #fff;
  line-height: 2;
  opacity: 0.8;
}
.footer__content-right {
  flex: none;
}
@media only screen and (max-width: 48em) {
  .footer__content-right {
    display: flex;
    justify-content: center;
    padding-top: 2rem;
  }
}
.footer__content-right .qr-code img {
  display: block;
  width: 10rem;
  height: 10rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.footer__content-right .qr-code:hover img {
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(48, 139, 219, 0.2);
}
.footer__content-right .qr-code p {
  font-size: 1.6rem;
  color: #fff;
  margin-top: 1rem;
  text-align: center;
}

.inner-page {
  position: relative;
}
.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;
  z-index: 99;
}
.inner-page__medium {
  flex: 1;
  background: url(../images/bg-1.png) no-repeat center bottom/contain;
}
.inner-page__right {
  width: 32rem;
  flex: none;
}
@media only screen and (max-width: 48em) {
  .inner-page__right {
    width: auto;
  }
}

.side-bar {
  flex: none;
  width: 34rem;
  position: relative;
  background: linear-gradient(#308BDB, #6BB832);
}
@media only screen and (max-width: 75em) {
  .side-bar {
    width: 28rem;
    padding-left: 0rem;
  }
}
.side-bar__title {
  display: flex;
  align-items: center;
  padding-top: 4rem;
  padding-left: 3rem;
  font-size: 2.6rem;
  font-weight: 600;
  color: #fff;
  position: relative;
}
.side-bar__title::before {
  content: "";
  display: block;
  width: 4px;
  height: 27px;
  background: url(../images/header-line.png) no-repeat center center/cover;
  margin-right: 2rem;
}

.side-nav {
  padding: 2.4rem;
  border-radius: 3rem;
  background-color: #E0EBF4;
  transform: translate(3rem, 4rem);
}
.side-nav__1-item {
  border-radius: 3rem;
  list-style: none;
  position: relative;
  background-color: #fff;
  margin-bottom: 2rem;
  box-shadow: 0px 0px 20px 0px #ABC3FC;
}
.side-nav__1-item.active > .side-nav__2-list {
  display: block;
  position: relative;
}
.side-nav__1-item.active > .side-nav__1-link {
  border-radius: 3rem;
  font-weight: 600;
  border-bottom: none;
  background-color: #006AB6;
  color: #fff;
}
.side-nav__1-link {
  display: block;
  line-height: 1.4;
  padding: 1.3rem 1.4rem;
  text-align: left;
  font-size: 1.55rem;
  color: #333;
  position: relative;
}
.side-nav__1-link:hover {
  color: #006AB6;
}
.side-nav__2-list {
  padding-top: 1rem;
  padding-bottom: 1rem;
  padding-left: 2rem;
  padding-right: 2rem;
  display: none;
}
.side-nav__2-item {
  list-style: none;
  position: relative;
}
.side-nav__2-head {
  min-width: 0;
}
.side-nav__2-link {
  display: block;
  flex: 1;
  min-width: 0;
  font-size: 1.5rem;
  line-height: 1.8;
  padding-top: 0.4rem;
  padding-bottom: 0.4rem;
  color: #333;
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.side-nav__2-item.active > .side-nav__2-link {
  color: #006AB6;
  font-weight: 600;
  border-bottom: 1px solid rgba(48, 139, 219, 0.3);
}
.side-nav__2-item.active > .side-nav__2-head > .side-nav__2-link {
  color: #006AB6;
  font-weight: 600;
}
.side-nav__2-item.active > .side-nav__2-head {
  border-bottom: 1px solid rgba(48, 139, 219, 0.3);
}
.side-nav__2-toggle {
  width: 2.8rem;
  height: 2.8rem;
  margin-top: 0.2rem;
  border: none;
  border-radius: 50%;
  background-color: transparent;
  color: #7b96bc;
  flex: none;
  cursor: pointer;
  transition: transform 0.2s ease, color 0.2s ease, background-color 0.2s ease;
}
.side-nav__2-toggle .iconfont {
  display: block;
  font-size: 1.4rem;
  line-height: 1;
}
.side-nav__2-toggle:hover {
  color: #006AB6;
  background-color: rgba(48, 139, 219, 0.08);
}
.side-nav__2-item.active > .side-nav__2-head > .side-nav__2-toggle {
  color: #006AB6;
  transform: rotate(180deg);
}
.side-nav__3-list {
  margin-top: 0.8rem;
  padding-top: 0.2rem;
  padding-bottom: 0.2rem;
  padding-left: 0;
  display: none;
}
.side-nav__2-item.active > .side-nav__3-list {
  display: block;
}
.side-nav__3-item {
  list-style: none;
  position: relative;
  margin-bottom: 0.2rem;
}
.side-nav__3-item:last-child {
  margin-bottom: 0;
}
.side-nav__3-link {
  display: block;
  padding: 0.5rem 0 0.5rem 1.8rem;
  font-size: 1.5rem;
  line-height: 1.45;
  color: #2f2f2f;
  border-radius: 0.8rem;
  background-color: transparent;
  text-align: left;
  position: relative;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.2s ease, background-color 0.2s ease;
}
.side-nav__3-link::before {
  content: "";
  position: absolute;
  left: 0.6rem;
  top: 50%;
  width: 3px;
  height: 1.4rem;
  border-radius: 999px;
  background-color: transparent;
  transform: translateY(-50%);
  transition: background-color 0.2s ease;
}
.side-nav__3-link:hover {
  color: #006AB6;
  background-color: rgba(48, 139, 219, 0.08);
}
.side-nav__3-item.active > .side-nav__3-link {
  color: #006AB6;
  font-weight: 600;
  background-color: rgba(48, 139, 219, 0.06);
}
.side-nav__3-item.active > .side-nav__3-link::before {
  background-color: #006AB6;
}

.section-banner {
  position: relative;
}
.section-banner .swiper-slide {
  position: relative;
}
.section-banner .swiper-slide img {
  width: 100%;
  object-fit: cover;
  height: auto;
  aspect-ratio: 2.3;
}
.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: #f2f2f2;
  width: 1.3rem;
  height: 1.3rem;
  margin: 0 8px;
}
@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 {
  width: 3rem;
  height: 1.3rem;
  border-radius: 0;
  background: url(../images/banner-icon.png) no-repeat center center/contain;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.section-heading .section-title {
  position: relative;
  line-height: 1;
}
.section-heading .section-title::after {
  content: "";
  display: block;
  width: 9.4rem;
  height: 6.5rem;
  background: url(../images/icon-1.png) no-repeat center center/contain;
  position: absolute;
  left: 0;
  bottom: -0.9rem;
  animation: drawLine 0.8s ease-out;
  transform-origin: left;
}
@media only screen and (max-width: 75em) {
  .section-heading .section-title::after {
    width: 6rem;
    height: 3rem;
    bottom: 1rem;
  }
}
.section-heading .section-title .chinese {
  font-size: 3.6rem;
  color: #333;
  line-height: 1;
  font-family: "syst";
}
@media only screen and (max-width: 48em) {
  .section-heading .section-title .chinese {
    font-size: 2.4rem;
  }
}
.section-heading .section-title .chinese span {
  color: #006AB6;
}
.section-heading .more {
  font-size: 1.6rem;
  color: #666;
  line-height: 1;
  padding: 4px;
  padding-left: 10px;
  display: flex;
  align-items: center;
  transition: 0.3s ease-in-out;
}
.section-heading .more::after {
  content: "";
  font-family: "iconfont";
  content: "\e61f";
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background-color: #006AB6;
  font-size: 1.4rem;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 4px;
}
.section-heading .more:hover {
  background-color: #006AB6;
  color: #fff;
  border-radius: 100px;
}

.section-class {
  background-color: #e6eff6;
}
.section-class .class-2 {
  background-color: #dbe4eb;
}
@media only screen and (max-width: 75em) {
  .section-class .class-2 {
    background-color: transparent;
  }
}
.section-class .class-list .item:not(:last-child) {
  margin-bottom: 4rem;
}

.section-team {
  position: relative;
  overflow: hidden;
}
.section-team::before {
  content: "π";
  position: absolute;
  right: 10%;
  top: 15%;
  font-size: 18rem;
  font-family: serif;
  color: rgba(48, 139, 219, 0.05);
  z-index: 1;
  pointer-events: none;
  animation: floatSymbol 8s ease-in-out infinite;
}
.section-team::after {
  content: "";
  display: block;
  width: 53rem;
  height: 91rem;
  background: url(../images/bg-2.png) no-repeat center center/contain;
  position: absolute;
  right: 0;
  top: -40rem;
}
.section-team .container {
  position: relative;
  z-index: 3;
}
.section-team .container::before {
  content: "Σ";
  position: absolute;
  left: -5%;
  bottom: -20%;
  font-size: 12rem;
  font-family: serif;
  color: rgba(48, 139, 219, 0.04);
  z-index: -1;
  pointer-events: none;
  animation: floatSymbol 10s ease-in-out infinite;
  animation-delay: -3s;
}
.section-team .swiper-wrapper {
  padding-bottom: 3rem;
}
.section-team .swiper-button-prev-new {
  width: 4.3rem;
  height: 4.3rem;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.8);
  position: absolute;
  left: 3rem;
  top: 50%;
  z-index: 9;
  transform: translateY(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.section-team .swiper-button-prev-new img {
  display: block;
  width: 1.7rem;
}
.section-team .swiper-button-next-new {
  width: 4.3rem;
  height: 4.3rem;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.8);
  position: absolute;
  right: 3rem;
  top: 50%;
  z-index: 9;
  transform: translateY(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.section-team .swiper-button-next-new img {
  display: block;
  width: 1.7rem;
}
.section-team .news-image-card-wrapper {
  position: relative;
}
.section-team .news-image-card-wrapper::after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  top: 3.5rem;
  bottom: 11rem;
  width: 3rem;
  background-color: #95C4ED;
}
@media only screen and (max-width: 75em) {
  .section-team .news-image-card-wrapper::after {
    display: none;
  }
}
.section-team .news-image-card-wrapper::before {
  content: "";
  display: block;
  position: absolute;
  right: -3rem;
  top: 6.5rem;
  bottom: 14rem;
  width: 3rem;
  background-color: #D9E4ED;
}
@media only screen and (max-width: 75em) {
  .section-team .news-image-card-wrapper::before {
    display: none;
  }
}

.section-class {
  position: relative;
  overflow: hidden;
}
.section-class::before {
  content: "∫";
  position: absolute;
  left: 5%;
  top: 10%;
  font-size: 16rem;
  font-family: serif;
  color: rgba(48, 139, 219, 0.04);
  z-index: 1;
  pointer-events: none;
  animation: floatSymbol 9s ease-in-out infinite;
}
.section-class::after {
  content: "";
  display: block;
  width: 48rem;
  height: 56rem;
  background: url(../images/bg-3.png) no-repeat center center/contain;
  position: absolute;
  left: 0;
  bottom: 0;
}
.section-class .container {
  position: relative;
  z-index: 3;
}

.section-out-links {
  position: relative;
  background: url(../images/bg-1.png) no-repeat center center/contain;
}

.section-out-links {
  padding-bottom: 4rem;
}
.section-out-links::before {
  content: "∞";
  position: absolute;
  right: 8%;
  top: 20%;
  font-size: 14rem;
  font-family: serif;
  color: rgba(48, 139, 219, 0.04);
  z-index: 0;
  pointer-events: none;
  animation: floatSymbol 11s ease-in-out infinite;
  animation-delay: -5s;
}
.section-out-links .swiper-slide:nth-child(even) {
  margin-top: 2rem;
}
.section-out-links .swiper-slide:nth-child(even) .out-link-card .line {
  height: 8rem;
}
.section-out-links .link-swiper {
  position: relative;
}
.section-out-links .link-swiper .swiper-button-prev-new {
  width: 4.3rem;
  height: 4.3rem;
  border: 1px dashed #308BDB;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.8);
  position: absolute;
  left: -6rem;
  top: 50%;
  z-index: 9;
  transform: translateY(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.section-out-links .link-swiper .swiper-button-prev-new img {
  display: block;
  width: 1.7rem;
}
@media only screen and (max-width: 75em) {
  .section-out-links .link-swiper .swiper-button-prev-new {
    width: 3rem;
    height: 3rem;
    left: 1rem;
  }
  .section-out-links .link-swiper .swiper-button-prev-new img {
    display: block;
    width: 1.4rem;
  }
}
.section-out-links .link-swiper .swiper-button-next-new {
  width: 4.3rem;
  height: 4.3rem;
  border: 1px dashed #308BDB;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.8);
  position: absolute;
  right: -6rem;
  top: 50%;
  z-index: 9;
  transform: translateY(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.section-out-links .link-swiper .swiper-button-next-new img {
  display: block;
  width: 1.7rem;
}
@media only screen and (max-width: 75em) {
  .section-out-links .link-swiper .swiper-button-next-new {
    width: 3rem;
    height: 3rem;
    right: 1rem;
  }
  .section-out-links .link-swiper .swiper-button-next-new img {
    display: block;
    width: 1.4rem;
  }
}
.section-out-links::after {
  content: "";
  display: block;
  height: 2.4rem;
  background: url(../images/time-line.png) no-repeat center center/100% 100%;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2rem;
  transform-origin: left;
  animation: drawLine 1.5s ease-out;
}

.section-divider {
  display: block;
  height: 2px;
  background: linear-gradient(90deg, transparent, #308BDB, #6BB832, transparent);
  transform-origin: center;
  margin: 0 auto;
  max-width: 60rem;
}
.section-divider.wow {
  visibility: hidden;
}
@media only screen and (max-width: 48em) {
  .section-divider {
    max-width: 30rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .section-team::before,
  .section-team .container::before,
  .section-class::before,
  .section-out-links::before,
  .section-divider,
  .section-title::after,
  .section-out-links::after {
    animation: none;
  }
}
@media (max-width: 600px) {
  .section-team::before,
  .section-class::before,
  .section-out-links::before {
    display: none;
  }
  .section-divider {
    max-width: 20rem;
  }
}
.static-banner {
  width: 100%;
  position: relative;
  aspect-ratio: 3;
}
.static-banner img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-list .item:not(:last-child) {
  margin-bottom: 3rem;
}

.pic-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(0, 106, 182, 0.1);
}
@media only screen and (max-width: 48em) {
  .pic-toolbar {
    flex-direction: column;
    align-items: stretch;
    gap: 1.5rem;
  }
}
.pic-toolbar__left {
  flex: 1;
  min-width: 0;
}
.pic-toolbar__right {
  display: flex;
  align-items: center;
  gap: 2rem;
}
@media only screen and (max-width: 48em) {
  .pic-toolbar__right {
    justify-content: space-between;
  }
}

.pic-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.pic-filter__btn {
  padding: 0.8rem 2rem;
  border: 1px solid #dcdfe6;
  border-radius: 100px;
  background: #fff;
  font-size: 1.4rem;
  color: #5a5a5a;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}
@media only screen and (max-width: 48em) {
  .pic-filter__btn {
    padding: 0.6rem 1.5rem;
    font-size: 1.3rem;
  }
}
.pic-filter__btn:hover {
  color: #006AB6;
  border-color: #006AB6;
}
.pic-filter__btn.active {
  background: linear-gradient(135deg, #308BDB, #6BB832);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 15px rgba(0, 106, 182, 0.3);
}

.pic-sort {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.pic-sort__label {
  font-size: 1.4rem;
  color: #5a5a5a;
  white-space: nowrap;
}
.pic-sort__select {
  padding: 0.6rem 2.5rem 0.6rem 1rem;
  border: 1px solid #dcdfe6;
  border-radius: 6px;
  font-size: 1.4rem;
  color: #2f2f2f;
  background: #fff;
  cursor: pointer;
  outline: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2 4l4 4 4-4' stroke='%23999' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.8rem center;
  transition: border-color 0.3s;
}
.pic-sort__select:hover, .pic-sort__select:focus {
  border-color: #006AB6;
}

.pic-layout {
  display: flex;
  gap: 0.5rem;
}
.pic-layout__btn {
  width: 3.5rem;
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #dcdfe6;
  border-radius: 6px;
  background: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
}
.pic-layout__btn .iconfont {
  font-size: 2rem;
  color: #5a5a5a;
  transition: color 0.3s;
}
.pic-layout__btn:hover {
  border-color: #006AB6;
}
.pic-layout__btn:hover .iconfont {
  color: #006AB6;
}
.pic-layout__btn.active {
  background: #006AB6;
  border-color: #006AB6;
}
.pic-layout__btn.active .iconfont {
  color: #fff;
}

.pic-gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  transition: all 0.4s ease;
}
@media only screen and (max-width: 75em) {
  .pic-gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}
@media only screen and (max-width: 48em) {
  .pic-gallery__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.pic-gallery__grid.layout-waterfall {
  display: block;
  columns: 3;
  column-gap: 3rem;
}
@media only screen and (max-width: 75em) {
  .pic-gallery__grid.layout-waterfall {
    columns: 2;
    column-gap: 2rem;
  }
}
@media only screen and (max-width: 48em) {
  .pic-gallery__grid.layout-waterfall {
    columns: 1;
    column-gap: 0;
  }
}
.pic-gallery__grid.layout-waterfall .pic-card {
  break-inside: avoid;
  margin-bottom: 3rem;
  display: inline-block;
  width: 100%;
}
@media only screen and (max-width: 75em) {
  .pic-gallery__grid.layout-waterfall .pic-card {
    margin-bottom: 2rem;
  }
}
.pic-gallery__grid.layout-waterfall .pic-card .pic-card__cover {
  aspect-ratio: auto;
}
.pic-gallery__loader {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 4rem 0 2rem;
}
.pic-gallery__load-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1.2rem 4rem;
  border: 2px solid #006AB6;
  border-radius: 100px;
  background: #fff;
  font-size: 1.6rem;
  color: #006AB6;
  cursor: pointer;
  transition: all 0.3s ease;
}
.pic-gallery__load-btn .iconfont {
  font-size: 1.4rem;
  transition: transform 0.3s;
}
.pic-gallery__load-btn:hover {
  background: #006AB6;
  color: #fff;
}
.pic-gallery__load-btn:hover .iconfont {
  transform: rotate(90deg);
  color: #fff;
}
.pic-gallery__loading {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.4rem;
  color: #5a5a5a;
}
.pic-gallery__spinner {
  width: 2rem;
  height: 2rem;
  border: 2px solid rgba(0, 106, 182, 0.2);
  border-top-color: #006AB6;
  border-radius: 50%;
  animation: picSpin 0.8s linear infinite;
}
.pic-gallery__no-more {
  font-size: 1.4rem;
  color: #999;
  padding-top: 1rem;
}

.pic-card {
  position: relative;
  background: #fff;
  border-radius: 1.2rem;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.pic-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 106, 182, 0.12);
}
.pic-card:hover .pic-card__cover img {
  transform: scale(1.06);
}
.pic-card:hover .pic-card__cover .pic-card__overlay {
  opacity: 1;
}
.pic-card:hover .pic-card__title {
  color: #006AB6;
}
.pic-card__cover {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.pic-card__cover img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.pic-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.5) 100%);
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 2rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.pic-card__overlay .iconfont {
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  font-size: 2rem;
  color: #006AB6;
  cursor: pointer;
  transition: all 0.3s ease;
}
.pic-card__overlay .iconfont:hover {
  background: #006AB6;
  color: #fff;
  transform: scale(1.1);
}
.pic-card__info {
  padding: 2rem 2.2rem;
}
.pic-card__title {
  font-size: 1.8rem;
  color: #2f2f2f;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 0.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;
  transition: color 0.3s;
}
@media only screen and (max-width: 48em) {
  .pic-card__title {
    font-size: 1.6rem;
  }
}
.pic-card__desc {
  font-size: 1.4rem;
  color: #5a5a5a;
  line-height: 1.7;
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  margin-bottom: 1rem;
}
.pic-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.pic-card__date {
  font-size: 1.3rem;
  color: #999;
}
.pic-card__category {
  font-size: 1.2rem;
  color: #006AB6;
  background: rgba(0, 106, 182, 0.08);
  padding: 0.3rem 1rem;
  border-radius: 100px;
}

.pic-lightbox {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
}
.pic-lightbox.active {
  display: flex;
}
.pic-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  animation: lightboxFadeIn 0.3s ease;
}
.pic-lightbox__container {
  position: relative;
  width: 90vw;
  max-width: 120rem;
  height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1;
  animation: lightboxSlideIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.pic-lightbox__close {
  position: absolute;
  top: -5rem;
  right: 0;
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s;
}
.pic-lightbox__close .iconfont {
  font-size: 2.2rem;
  color: #fff;
}
.pic-lightbox__close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(90deg);
}
@media only screen and (max-width: 48em) {
  .pic-lightbox__close {
    top: -4rem;
    width: 3.5rem;
    height: 3.5rem;
  }
}
.pic-lightbox__prev, .pic-lightbox__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 5rem;
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s;
  z-index: 2;
}
.pic-lightbox__prev .iconfont, .pic-lightbox__next .iconfont {
  font-size: 2.4rem;
  color: #fff;
}
.pic-lightbox__prev:hover, .pic-lightbox__next:hover {
  background: rgba(255, 255, 255, 0.25);
}
@media only screen and (max-width: 48em) {
  .pic-lightbox__prev, .pic-lightbox__next {
    width: 3.5rem;
    height: 3.5rem;
  }
  .pic-lightbox__prev .iconfont, .pic-lightbox__next .iconfont {
    font-size: 1.8rem;
  }
}
.pic-lightbox__prev {
  left: -7rem;
}
@media only screen and (max-width: 75em) {
  .pic-lightbox__prev {
    left: 1rem;
  }
}
.pic-lightbox__next {
  right: -7rem;
}
@media only screen and (max-width: 75em) {
  .pic-lightbox__next {
    right: 1rem;
  }
}
.pic-lightbox__img-wrapper {
  flex: 1;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.pic-lightbox__img-wrapper img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 0.5rem;
  transition: opacity 0.3s;
}
.pic-lightbox__caption {
  width: 100%;
  text-align: center;
  padding: 2rem 0 0;
  color: #fff;
}
.pic-lightbox__title {
  font-size: 2rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.5rem;
}
@media only screen and (max-width: 48em) {
  .pic-lightbox__title {
    font-size: 1.6rem;
  }
}
.pic-lightbox__desc {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.5rem;
}
.pic-lightbox__counter {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.5);
}

@keyframes picSpin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes lightboxFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes lightboxSlideIn {
  from {
    opacity: 0;
    transform: scale(0.92);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.pic-card {
  opacity: 0;
  transform: translateY(30px);
  animation: picCardIn 0.6s ease forwards;
}
.pic-card:nth-child(1) {
  animation-delay: 0.08s;
}
.pic-card:nth-child(2) {
  animation-delay: 0.16s;
}
.pic-card:nth-child(3) {
  animation-delay: 0.24s;
}
.pic-card:nth-child(4) {
  animation-delay: 0.32s;
}
.pic-card:nth-child(5) {
  animation-delay: 0.4s;
}
.pic-card:nth-child(6) {
  animation-delay: 0.48s;
}
.pic-card:nth-child(7) {
  animation-delay: 0.56s;
}
.pic-card:nth-child(8) {
  animation-delay: 0.64s;
}
.pic-card:nth-child(9) {
  animation-delay: 0.72s;
}
.pic-card:nth-child(10) {
  animation-delay: 0.8s;
}
.pic-card:nth-child(11) {
  animation-delay: 0.88s;
}
.pic-card:nth-child(12) {
  animation-delay: 0.96s;
}

@keyframes picCardIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.pic-card.hidden {
  display: none;
}

.lecture-layout {
  display: flex;
  gap: 3rem;
  align-items: flex-start;
}

.lecture-sidebar {
  width: 50rem;
  flex-shrink: 0;
  position: sticky;
  top: 10rem;
}
.lecture-sidebar__inner {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  padding: 3rem 2.5rem;
  box-shadow: 0 4px 20px rgba(0, 106, 182, 0.08);
  position: relative;
  overflow: hidden;
}
.lecture-sidebar__inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(to bottom, #006AB6, rgb(29, 160.6263736264, 255));
}
.lecture-sidebar__title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #2c3e50;
  line-height: 1.5;
  margin: 0 0 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.lecture-sidebar__meta {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.meta-item {
  display: flex;
  align-items: flex-start;
  gap: 1.4rem;
}
.meta-item__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 5.6rem;
  height: 5.6rem;
  background: rgba(0, 106, 182, 0.06);
  color: #006AB6;
  border-radius: 10px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}
.meta-item__icon .iconfont {
  font-size: 2.4rem;
}
.meta-item__body {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  min-width: 0;
}
.meta-item__label {
  font-size: 1.3rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #6c757d;
}
.meta-item__value {
  font-size: 1.7rem;
  font-weight: 500;
  color: #2c3e50;
  line-height: 1.5;
}
.meta-item__value time {
  font-family: "SF Mono", Consolas, Monaco, monospace;
  letter-spacing: -0.3px;
}
.meta-item:hover .meta-item__icon {
  background: #006AB6;
  color: #fff;
  transform: scale(1.05);
}

.lecture-main {
  flex: 1;
  min-width: 0;
}

@media only screen and (max-width: 75em) {
  .lecture-layout {
    flex-direction: column;
    gap: 2rem;
  }
  .lecture-sidebar {
    width: 100%;
    position: static;
  }
  .lecture-sidebar__inner {
    padding: 2.5rem 2rem;
  }
  .lecture-sidebar__title {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
  }
  .lecture-sidebar__meta {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .meta-item {
    flex: 1;
    min-width: 20rem;
  }
}
@media only screen and (max-width: 48em) {
  .lecture-sidebar__meta {
    flex-direction: column;
    gap: 1.5rem;
  }
  .meta-item {
    min-width: 0;
  }
  .lecture-sidebar__inner {
    padding: 2rem 1.5rem;
  }
  .lecture-sidebar__title {
    font-size: 1.6rem;
  }
}
