@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: 56.25em) {
  html {
    font-size: 50%;
  }
}
@media only screen and (min-width: 112.5em) {
  html {
    font-size: 62.5%;
  }
}

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

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

@font-face {
  font-family: "syst";
  src: url("../fonts/SourceHanSerifCN-Bold-2.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: 160rem;
  margin: 0 auto;
  padding: 0 2rem;
  box-sizing: border-box;
}

.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: 37.5em) {
  .sm\:hidden {
    display: none;
  }
}
@media only screen and (max-width: 56.25em) {
  .md\:hidden {
    display: none;
  }
}
span > img {
  display: inline;
}

.col-0 {
  flex: 0 0 auto;
  max-width: none;
}

.gutter-0,
.space-0 {
  margin-left: 0;
  margin-right: 0;
  margin-top: 0;
  margin-bottom: 0;
}
.gutter-0 > [class^=col-],
.space-0 > [class^=col-] {
  padding: 0;
}

.m-0,
.mt-0,
.mr-0,
.mb-0,
.ml-0,
.p-0,
.pt-0,
.pr-0,
.pb-0,
.pl-0,
.px-0,
.py-0 {
  margin: 0;
  padding: 0;
}

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

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

.space-1 {
  margin-top: -0.5rem;
  margin-bottom: -0.5rem;
}
.space-1 > [class^=col-] {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.m-1 {
  margin: 1rem;
}

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

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

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

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

.p-1 {
  padding: 1rem;
}

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

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

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

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

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

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

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

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

.space-2 {
  margin-top: -1rem;
  margin-bottom: -1rem;
}
.space-2 > [class^=col-] {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.m-2 {
  margin: 2rem;
}

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

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

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

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

.p-2 {
  padding: 2rem;
}

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

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

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

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

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

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

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

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

.space-3 {
  margin-top: -1.5rem;
  margin-bottom: -1.5rem;
}
.space-3 > [class^=col-] {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.m-3 {
  margin: 3rem;
}

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

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

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

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

.p-3 {
  padding: 3rem;
}

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

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

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

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

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

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

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

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

.space-4 {
  margin-top: -2rem;
  margin-bottom: -2rem;
}
.space-4 > [class^=col-] {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.m-4 {
  margin: 4rem;
}

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

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

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

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

.p-4 {
  padding: 4rem;
}

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

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

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

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

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

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

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

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

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

.m-5 {
  margin: 5rem;
}

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

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

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

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

.p-5 {
  padding: 5rem;
}

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

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

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

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

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

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

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

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

.space-6 {
  margin-top: -3rem;
  margin-bottom: -3rem;
}
.space-6 > [class^=col-] {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.m-6 {
  margin: 6rem;
}

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

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

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

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

.p-6 {
  padding: 6rem;
}

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

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

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

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

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

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

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

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

.space-7 {
  margin-top: -3.5rem;
  margin-bottom: -3.5rem;
}
.space-7 > [class^=col-] {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

.m-7 {
  margin: 7rem;
}

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

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

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

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

.p-7 {
  padding: 7rem;
}

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

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

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

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

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

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

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

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

.space-8 {
  margin-top: -4rem;
  margin-bottom: -4rem;
}
.space-8 > [class^=col-] {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.m-8 {
  margin: 8rem;
}

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

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

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

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

.p-8 {
  padding: 8rem;
}

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

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

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

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

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

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

.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-top: -4.5rem;
  margin-bottom: -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;
}

@media only screen and (max-width: 56.25em) {
  .col-md-0 {
    flex: 0 0 auto;
    max-width: none;
  }

  .gutter-md-0,
.space-md-0 {
    margin-left: 0;
    margin-right: 0;
    margin-top: 0;
    margin-bottom: 0;
  }
  .gutter-md-0 > [class^=col-],
.space-md-0 > [class^=col-] {
    padding: 0;
  }

  .m-md-0,
.mt-md-0,
.mr-md-0,
.mb-md-0,
.ml-md-0,
.p-md-0,
.pt-md-0,
.pr-md-0,
.pb-md-0,
.pl-md-0,
.px-md-0,
.py-md-0 {
    margin: 0;
    padding: 0;
  }

  .col-md-1 {
    flex: 0 0 100%;
    max-width: 100%;
  }

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

  .space-md-1 {
    margin-top: -0.5rem;
    margin-bottom: -0.5rem;
  }
  .space-md-1 > [class^=col-] {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .space-md-2 {
    margin-top: -1rem;
    margin-bottom: -1rem;
  }
  .space-md-2 > [class^=col-] {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .space-md-3 {
    margin-top: -1.5rem;
    margin-bottom: -1.5rem;
  }
  .space-md-3 > [class^=col-] {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .space-md-4 {
    margin-top: -2rem;
    margin-bottom: -2rem;
  }
  .space-md-4 > [class^=col-] {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .space-md-6 {
    margin-top: -3rem;
    margin-bottom: -3rem;
  }
  .space-md-6 > [class^=col-] {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .space-md-7 {
    margin-top: -3.5rem;
    margin-bottom: -3.5rem;
  }
  .space-md-7 > [class^=col-] {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .space-md-8 {
    margin-top: -4rem;
    margin-bottom: -4rem;
  }
  .space-md-8 > [class^=col-] {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

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

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

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

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

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

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

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

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

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

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

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

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

  .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-left: 4.5rem;
    padding-right: 4.5rem;
  }

  .space-md-9 {
    margin-top: -4.5rem;
    margin-bottom: -4.5rem;
  }
  .space-md-9 > [class^=col-] {
    padding-top: 4.5rem;
    padding-bottom: 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;
  }
}
@media only screen and (max-width: 37.5em) {
  .col-sm-0 {
    flex: 0 0 auto;
    max-width: none;
  }

  .gutter-sm-0,
.space-sm-0 {
    margin-left: 0;
    margin-right: 0;
    margin-top: 0;
    margin-bottom: 0;
  }
  .gutter-sm-0 > [class^=col-],
.space-sm-0 > [class^=col-] {
    padding: 0;
  }

  .m-sm-0,
.mt-sm-0,
.mr-sm-0,
.mb-sm-0,
.ml-sm-0,
.p-sm-0,
.pt-sm-0,
.pr-sm-0,
.pb-sm-0,
.pl-sm-0,
.px-sm-0,
.py-sm-0 {
    margin: 0;
    padding: 0;
  }

  .col-sm-1 {
    flex: 0 0 100%;
    max-width: 100%;
  }

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

  .space-sm-1 {
    margin-top: -0.5rem;
    margin-bottom: -0.5rem;
  }
  .space-sm-1 > [class^=col-] {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .space-sm-2 {
    margin-top: -1rem;
    margin-bottom: -1rem;
  }
  .space-sm-2 > [class^=col-] {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .space-sm-3 {
    margin-top: -1.5rem;
    margin-bottom: -1.5rem;
  }
  .space-sm-3 > [class^=col-] {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .space-sm-4 {
    margin-top: -2rem;
    margin-bottom: -2rem;
  }
  .space-sm-4 > [class^=col-] {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .space-sm-6 {
    margin-top: -3rem;
    margin-bottom: -3rem;
  }
  .space-sm-6 > [class^=col-] {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .space-sm-7 {
    margin-top: -3.5rem;
    margin-bottom: -3.5rem;
  }
  .space-sm-7 > [class^=col-] {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .space-sm-8 {
    margin-top: -4rem;
    margin-bottom: -4rem;
  }
  .space-sm-8 > [class^=col-] {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

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

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

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

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

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

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

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

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

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

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

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

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

  .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-left: 4.5rem;
    padding-right: 4.5rem;
  }

  .space-sm-9 {
    margin-top: -4.5rem;
    margin-bottom: -4.5rem;
  }
  .space-sm-9 > [class^=col-] {
    padding-top: 4.5rem;
    padding-bottom: 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;
  }
}
.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: #ae0c2a;
}
.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--4-of-5 {
  padding-bottom: 80%;
}
.ratio-image--1-2 {
  padding-bottom: 120%;
}
.ratio-image--1-3 {
  padding-bottom: 130%;
}
.ratio-image--1-4 {
  padding-bottom: 140%;
}
.ratio-image--1-5 {
  padding-bottom: 150%;
}
.ratio-image--2 {
  padding-bottom: 200%;
}
.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;
}

.card .cover {
  overflow: hidden;
}
.card .cover img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease-in-out;
}
.card:hover .cover img {
  transform: scale(1.1);
}

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

.news-image-card {
  padding-left: 2rem;
  position: relative;
}
.news-image-card::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 1.5rem;
  bottom: 0;
  width: 2rem;
  background: linear-gradient(#ae0c2a, #fff);
}
.news-image-card .cover {
  aspect-ratio: 1.5;
  position: relative;
}
.news-image-card .info {
  position: absolute;
  left: 2rem;
  right: 0;
  bottom: 0;
  background: linear-gradient(to right, #ae0c2a, rgba(229, 61, 61, 0.3));
  padding: 1.2rem 2.5rem;
}
@media only screen and (max-width: 75em) {
  .news-image-card .info {
    padding: 1rem 2rem;
  }
}
.news-image-card .info .title {
  font-size: 2.2rem;
  color: #fff;
  line-height: 3.6rem;
  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: 1.8rem;
    color: #fff;
    line-height: 2;
  }
}
.news-image-card .info .date {
  font-size: 1.6rem;
  color: #fff;
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
}
@media only screen and (max-width: 75em) {
  .news-image-card .info .date {
    font-size: 1.4rem;
  }
}

.news-text-card {
  padding-bottom: 1rem;
  border-bottom: 1px solid #e7e7e7;
}
.news-text-card .info .date {
  width: 12rem;
  height: 2.7rem;
  border-radius: 1000px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.6rem;
  color: #ae0c2a;
  line-height: 1;
  background-color: rgba(174, 12, 42, 0.15);
  margin-bottom: 1rem;
}
.news-text-card .info .title {
  font-size: 1.8rem;
  line-height: 2.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:hover .info .title {
  color: #A61011;
}

.card {
  position: relative;
}
.card .link {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
}

.article-card {
  display: flex;
  align-items: center;
  padding: 2.5rem 4.8rem;
  border-radius: 1rem;
  background-color: #faf5f4;
}
@media only screen and (max-width: 37.5em) {
  .article-card {
    padding: 0;
    flex-wrap: wrap;
  }
}
.article-card .date {
  width: 8rem;
  height: 8rem;
  border: 1px dashed #ae0c2a;
  flex: none;
  position: relative;
  margin-right: 2.7rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 37.5em) {
  .article-card .date {
    margin-left: 2rem;
    margin-right: 1rem;
    order: 2;
    background-color: #ae0c2a;
  }
}
.article-card .date .year {
  font-size: 3.6rem;
  font-weight: 600;
  color: #ae0c2a;
  line-height: 1;
  margin-bottom: 0.6rem;
}
@media only screen and (max-width: 37.5em) {
  .article-card .date .year {
    font-size: 2rem;
    margin-bottom: 4px;
    font-weight: 400;
    color: #fff;
  }
}
.article-card .date .day {
  font-size: 1.6rem;
  color: #ae0c2a;
  line-height: 1;
}
@media only screen and (max-width: 37.5em) {
  .article-card .date .day {
    font-size: 1.2rem;
    color: #fff;
  }
}
.article-card .info {
  flex: 1;
  position: relative;
}
@media only screen and (max-width: 37.5em) {
  .article-card .info {
    order: 3;
    width: 100%;
    padding-top: 2rem;
    padding-left: 2rem;
    padding-right: 2rem;
    padding-bottom: 2rem;
    height: auto;
  }
}
.article-card .info .title {
  font-size: 1.8rem;
  color: #111;
  line-height: 1;
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  margin-bottom: 1.5rem;
}
@media only screen and (max-width: 37.5em) {
  .article-card .info .title {
    margin-bottom: 1rem;
  }
}
.article-card .info .desc {
  font-size: 1.6rem;
  color: #888888;
  line-height: 2.6rem;
  height: 5.2rem;
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}
.article-card .info .more {
  display: block;
  content: url(../images/arrow-icon.png);
  margin-top: 1rem;
}
.article-card .cover {
  flex: none;
  width: 20.5rem;
  height: 11.4rem;
  margin-right: 2.9rem;
}
@media only screen and (max-width: 37.5em) {
  .article-card .cover {
    order: 1;
    width: 100%;
    height: auto;
    aspect-ratio: 1.8;
  }
}
.article-card .cover img {
  display: block;
  width: 100%;
  height: 100%;
}
.article-card:hover {
  background-color: #fff;
  box-shadow: 9px 0px 18px 0px rgba(174, 12, 42, 0.1);
}
.article-card:hover .date {
  background-color: #ae0c2a;
}
.article-card:hover .date .day {
  color: #fff;
}
.article-card:hover .date .year {
  color: #fff;
}
.article-card:hover .info .title {
  color: #ae0c2a;
}
.article-card:hover .info .desc {
  color: #ae0c2a;
}
.article-card:hover .info .more {
  color: #ae0c2a;
}

.file-card {
  padding: 3rem;
  background-color: #fff;
  box-shadow: 1rem 1rem 0 0 #F5EBEA, 0 0 2rem #ccc;
  position: relative;
  z-index: 10;
  transition: 0.3s ease-in-out;
}
.file-card .top-info {
  display: flex;
  align-items: center;
  padding-bottom: 2.4rem;
}
.file-card .top-info .date {
  flex: none;
}
.file-card .top-info .date .day {
  background-color: #F5EBEA;
  font-size: 3rem;
  font-weight: 600;
  color: #6B2049;
  line-height: 1.5;
  width: 6.4rem;
  text-align: center;
}
.file-card .top-info .date .year {
  background-color: #ae0c2a;
  font-size: 1.4rem;
  color: #fff;
  line-height: 1.5;
  width: 6.4rem;
  text-align: center;
}
.file-card .top-info .title {
  padding-left: 2rem;
  font-size: 1.8rem;
  color: #111;
  line-height: 3rem;
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}
.file-card .bottom-info {
  padding-top: 2rem;
  border-top: 1px solid #e7e7e7;
}
.file-card .bottom-info .desc {
  font-size: 1.6rem;
  color: #333;
  line-height: 3rem;
  height: 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;
}
.file-card:hover {
  box-shadow: 1rem 1rem 0 0 #ae0c2a, 0 0 2rem #ccc;
  transform: translateY(-2rem);
}
.file-card:hover .top-info .title {
  color: #ae0c2a;
}
.file-card:hover .bottom-info .desc {
  color: #ae0c2a;
}

.home-teacher-card .cover {
  aspect-ratio: 1.8;
  border: 2px solid #fff;
}
.home-teacher-card .info {
  padding-top: 1.5rem;
}
.home-teacher-card .info .title {
  font-size: 1.8rem;
  color: #111;
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  margin-bottom: 4px;
}
.home-teacher-card .info .desc {
  font-size: 1.5rem;
  line-height: 1.5;
  color: #666;
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}
.home-teacher-card:hover .cover {
  border: 2px solid #ae0c2a;
}
.home-teacher-card:hover .info .title {
  color: #ae0c2a;
}
.home-teacher-card:hover .info .desc {
  color: #ae0c2a;
}

.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: 160rem;
  color: #ffffff;
}
.inner-banner h2 {
  font-size: 4.8rem;
}
@media only screen and (max-width: 56.25em) {
  .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: 56.25em) {
  .inner-banner h3 {
    font-size: 1.6rem;
  }
}

.custom-breadcrumb {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1rem;
  border-bottom: 1px solid #8D1C11;
}
@media only screen and (max-width: 56.25em) {
  .custom-breadcrumb {
    display: none;
  }
}
.custom-breadcrumb .title {
  font-size: 3.2rem;
  color: #8D1C11;
  font-weight: 900;
  position: relative;
  display: flex;
  align-items: center;
  font-family: "syst";
}
.custom-breadcrumb .breadcrumb-navs {
  display: flex;
  align-items: center;
}
.custom-breadcrumb .breadcrumb-navs .pos {
  font-size: 1.4rem;
  color: #2f2f2f;
  margin-right: 1rem;
  display: flex;
  align-items: center;
}
.custom-breadcrumb .breadcrumb-navs .pos::before {
  content: "";
  font-family: "iconfont";
  content: "";
  font-size: 1.4rem;
  color: #ae0c2a;
  margin-right: 4px;
}
.custom-breadcrumb .breadcrumb-navs nav {
  display: flex;
  align-items: center;
}
.custom-breadcrumb .breadcrumb-navs nav a {
  font-size: 1.4rem;
  color: #2f2f2f;
  transition: 0.3s;
}
.custom-breadcrumb .breadcrumb-navs nav a::before {
  font-family: "iconfont";
  content: "";
  margin-right: 0.8rem;
  margin-left: 0.5rem;
}
.custom-breadcrumb .breadcrumb-navs nav a:first-child::before {
  display: none;
}
.custom-breadcrumb .breadcrumb-navs nav a:hover {
  color: #ae0c2a;
}
.custom-breadcrumb .breadcrumb-navs nav a:hover::before {
  color: #2f2f2f;
}

.form-item {
  height: 100%;
}
.form-item--error input, .form-item--error textarea {
  outline: 2px solid #F56C6C !important;
}
.form-item--error small {
  transform: translate3d(0, 0, 0) !important;
  opacity: 1 !important;
}
.form-item--success input, .form-item--success textarea {
  outline: 2px solid #67C23A !important;
}
.form-item--success small {
  transform: translate3d(0, 0, 0) !important;
  opacity: 1 !important;
}
.form-item input {
  width: 100%;
  padding: 0 2rem;
  height: 100%;
  background: #F1F1F1;
  border-radius: 0px 0px 0px 0px;
  opacity: 1;
  border: none;
  outline: none;
  border-radius: 2px;
}
.form-item textarea {
  width: 100%;
  height: 100%;
  padding: 1rem 2rem;
  background: #F1F1F1;
  border-radius: 0px 0px 0px 0px;
  opacity: 1;
  border: none;
  outline: none;
  border-radius: 2px;
}
.form-item a,
.form-item button {
  display: flex;
  justify-content: center;
  align-items: center;
  outline: none;
  border: none;
  width: 100%;
  height: 100%;
  background-color: #ae0c2a;
  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;
}

.search-fullscreen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s 0.3s, opacity 0.3s ease;
}
.search-fullscreen.active {
  visibility: visible;
  opacity: 1;
  transition: visibility 0s, opacity 0.3s ease;
}
.search-fullscreen__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(26, 10, 14, 0.6);
  backdrop-filter: blur(8px);
}
.search-fullscreen__container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 600px;
  display: flex;
  align-items: center;
  animation: fadeInScale 0.3s ease;
}
@media only screen and (max-width: 37.5em) {
  .search-fullscreen__container {
    width: 85%;
    flex-direction: row;
  }
}
.search-fullscreen__input-wrapper {
  flex: 1;
  display: flex;
  align-items: center;
  height: 5.5rem;
  background-color: rgba(255, 255, 255, 0.95);
  border-radius: 100px;
  padding: 0 2rem;
  box-shadow: 0 4px 20px rgba(20, 20, 20, 0.2);
}
@media only screen and (max-width: 37.5em) {
  .search-fullscreen__input-wrapper {
    height: 4.5rem;
    padding: 0 1.5rem;
  }
}
.search-fullscreen__icon {
  font-size: 2.2rem;
  color: #ae0c2a;
  margin-right: 1rem;
}
@media only screen and (max-width: 37.5em) {
  .search-fullscreen__icon {
    font-size: 1.8rem;
    margin-right: 0.8rem;
  }
}
.search-fullscreen__input {
  flex: 1;
  height: 100%;
  background: transparent;
  border: none;
  outline: none;
  font-size: 1.8rem;
  color: #333;
}
.search-fullscreen__input::placeholder {
  color: rgba(51, 51, 51, 0.5);
}
.search-fullscreen__input::-webkit-search-cancel-button {
  -webkit-appearance: none;
}
@media only screen and (max-width: 37.5em) {
  .search-fullscreen__input {
    font-size: 1.6rem;
  }
}
.search-fullscreen__clear {
  font-size: 1.6rem;
  color: rgba(51, 51, 51, 0.6);
  cursor: pointer;
  padding: 0.5rem;
  transition: color 0.2s;
}
.search-fullscreen__clear:hover {
  color: #333;
}
@media only screen and (max-width: 37.5em) {
  .search-fullscreen__clear {
    font-size: 1.4rem;
  }
}
.search-fullscreen__close {
  font-size: 1.6rem;
  color: #ffffff;
  cursor: pointer;
  padding: 0.5rem 1rem;
  margin-left: 1rem;
  white-space: nowrap;
  transition: opacity 0.2s;
}
.search-fullscreen__close:hover {
  opacity: 0.8;
}
@media only screen and (max-width: 37.5em) {
  .search-fullscreen__close {
    font-size: 1.4rem;
    padding: 0.5rem;
    margin-left: 0.8rem;
  }
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}
.search-input {
  display: flex;
  align-items: center;
  border-radius: 100px;
  overflow: hidden;
  border: 1px solid #e7e7e7;
}
.search-input__input {
  width: 25rem;
  padding: 0 2rem;
  height: 4rem;
  background: white;
  opacity: 1;
  border: none;
  outline: none;
  font-size: 1.6rem;
  color: #333;
}
.search-input__input::placeholder {
  color: currentColor;
  opacity: 1;
}
.search-input__button {
  transition: all 0.3s ease-in-out;
  position: relative;
  display: block;
  width: 4rem;
  height: 4rem;
  background-color: #ae0c2a;
}
.search-input__button:hover {
  background-color: #ae0c2a;
  color: #ffffff;
}
.search-input__button:active {
  filter: brightness(0.8);
}
.search-input__button::after {
  content: "";
  font-family: "iconfont";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: "";
  position: absolute;
  font-size: 2rem;
  color: #ffffff;
}

.custom-selector {
  width: 25rem;
  height: 4rem;
  position: relative;
  z-index: 9900000000;
}
@media only screen and (max-width: 37.5em) {
  .custom-selector {
    width: 100%;
  }
}
.custom-selector__input {
  background: rgba(20, 20, 20, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 1000px;
  position: relative;
  color: #ae0c2a;
}
.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: 9999999;
  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;
}
.custom-selector__options a:last-child {
  border-bottom: none;
}
.custom-selector__options a:hover {
  background-color: #ae0c2a;
  color: #ffffff;
}

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

div.pb_sys_common.pb_sys_normal.pb_sys_style1 {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 4rem;
}
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: #ae0c2a;
}
@media only screen and (max-width: 56.25em) {
  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: #ae0c2a;
  color: #ffffff;
}
@media only screen and (max-width: 56.25em) {
  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: 56.25em) {
  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: #ae0c2a;
}
@media only screen and (max-width: 56.25em) {
  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: #ae0c2a;
}
@media only screen and (max-width: 56.25em) {
  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: 56.25em) {
  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: #ae0c2a;
}
@media only screen and (max-width: 56.25em) {
  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: 56.25em) {
  div.pb_sys_common.pb_sys_normal.pb_sys_style1 span.p_t {
    display: none;
  }
}
@media only screen and (max-width: 56.25em) {
  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: #ae0c2a;
  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);
}

.preview-box {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
}
.preview-box__image {
  padding: 5rem;
}
.preview-box__image img {
  display: block;
  max-width: 100%;
  max-height: 100%;
}
.preview-box__close {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 80px;
  height: 80px;
  cursor: pointer;
  border-radius: 50%;
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.5);
}
.preview-box__close span {
  color: #fff;
  font-size: 16px;
  position: absolute;
  line-height: 1;
  bottom: 15px;
  left: 15px;
}

.row {
  max-width: 160rem;
  margin: 0 auto;
}
.row::after {
  content: "";
  display: table;
  clear: both;
}
.row [class^=col-] {
  float: left;
}
.row [class^=col-]:not(:first-child) {
  margin-left: 4rem;
}
@media only screen and (max-width: 56.25em) {
  .row [class^=col-]:not(:first-child) {
    margin-left: 0;
    margin-bottom: 6rem;
  }
}
@media only screen and (max-width: 56.25em) {
  .row [class^=col-] {
    width: 100% !important;
  }
  .row [class^=col-]:not(:last-child) {
    margin-bottom: 5rem;
  }
}
.row [class^=col-].mr0 {
  margin-left: 0 !important;
}
.row .col-1-of-2 {
  width: calc((100% - 4rem) / 2);
}
.row .col-1-of-3 {
  width: calc((100% - 2 * 4rem) / 3);
}
.row .col-2-of-3 {
  width: calc(2 * ((100% - 2 * 4rem) / 3) + 4rem);
}
.row .col-1-of-4 {
  width: calc((100% - 3 * 4rem) / 4);
}
.row .col-2-of-4 {
  width: calc(2 * ((100% - 3 * 4rem) / 4) + 4rem);
}
.row .col-3-of-4 {
  width: calc(3 * ((100% - 3 * 4rem) / 4) + 2 * 4rem);
}
.row .col-1-of-5 {
  width: calc((100% - 4 * 4rem) / 5);
}
.row .col-2-of-5 {
  width: calc(2 * ((100% - 5 * 4rem) / 5) + 4rem);
}
.row .col-3-of-5 {
  width: calc(3 * ((100% - 5 * 4rem) / 5) + 2 * 4rem);
}
.row .col-4-of-5 {
  width: calc(4 * ((100% - 4 * 4rem) / 5) + 3 * 4rem);
}

.gallery {
  display: grid;
  grid-template-rows: repeat(4, 5rem);
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 3rem;
}
@media only screen and (max-width: 56.25em) {
  .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: 56.25em) {
  .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: 56.25em) {
  .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: 56.25em) {
  .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: 56.25em) {
  .gallery__item--4 {
    grid-row: 5/span 1;
  }
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -2rem;
  margin-right: -2rem;
}
.card-row .card-col {
  box-sizing: border-box;
  padding: 2rem;
  width: 33.33%;
}
@media only screen and (max-width: 56.25em) {
  .card-row .card-col {
    width: 100%;
  }
}

.header {
  height: 16rem;
  background: url(../images/header-bg.png) #ae0c2a no-repeat center center/cover;
  position: relative;
}
@media only screen and (max-width: 75em) {
  .header {
    height: 8rem;
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    z-index: 989;
  }
}
@media only screen and (max-width: 37.5em) {
  .header {
    height: 6rem;
  }
}
.header .logo {
  position: absolute;
  top: 50%;
  display: block;
  left: max(4.2rem, calc((100% - 160rem) / 2 + 4.2rem));
  transform: translate(0, -50%);
}
@media only screen and (max-width: 75em) {
  .header .logo {
    left: 2rem;
    transform: translate(0, -50%);
    max-width: calc(100% - 8rem);
    max-height: 6rem;
  }
  .header .logo img {
    max-height: 6rem;
    width: auto;
  }
}
@media only screen and (max-width: 37.5em) {
  .header .logo {
    max-height: 4rem;
  }
  .header .logo img {
    max-height: 4rem;
  }
}

.nav-open {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  right: 0;
  width: 6rem;
  height: 6rem;
  font-size: 4rem;
  color: #ffffff;
  line-height: 6rem;
  text-align: center;
  display: none;
  cursor: pointer;
}
@media only screen and (max-width: 75em) {
  .nav-open {
    display: block;
  }
}

.nav-close {
  font-size: 4rem;
  color: #ffffff;
  position: absolute;
  right: 2rem;
  top: 0.5rem;
  display: none;
  z-index: 1;
}
@media only screen and (max-width: 75em) {
  .nav-close {
    display: block;
  }
}

.web-nav-wrapper {
  background: #ae0c2a;
  position: sticky;
  top: 0;
  z-index: 999;
}
@media only screen and (max-width: 75em) {
  .web-nav-wrapper {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 99999;
    background: rgba(20, 20, 20, 0.8);
    transform: translate3d(-100%, 0, 0);
    opacity: 0;
    transition: all 0.3s ease-in-out;
  }
}
.web-nav-wrapper.active {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

.web-nav {
  position: relative;
  display: flex;
}
.web-nav .search-box {
  padding-left: 3rem;
  height: 6.8rem;
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 75em) {
  .web-nav .search-box {
    height: 5rem;
    padding-left: 4rem;
  }
}
.web-nav .search-fullscreen__open {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  border: 1px solid #fff;
  cursor: pointer;
  transition: all 0.2s;
  color: #fff;
}
.web-nav .search-fullscreen__open .iconfont {
  font-size: 2rem;
  color: #fff;
}
.web-nav .search-fullscreen__open:hover {
  background-color: rgba(255, 255, 255, 0.2);
}
@media only screen and (max-width: 75em) {
  .web-nav .search-fullscreen__open {
    width: 4rem;
    height: 4rem;
    margin: 0;
    align-self: flex-start;
  }
}
@media only screen and (max-width: 75em) {
  .web-nav {
    position: fixed;
    top: 0;
    right: auto;
    bottom: 0;
    left: 0;
    z-index: 99999;
    width: 35rem;
    padding-top: 1rem;
    background-color: #ae0c2a;
    overflow-y: auto;
    flex-direction: column-reverse;
  }
}
.web-nav__1-list {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media only screen and (max-width: 75em) {
  .web-nav__1-list {
    display: block;
  }
}
.web-nav__1-item {
  position: relative;
  z-index: 999;
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 75em) {
  .web-nav__1-item {
    flex-direction: column;
    align-items: flex-start;
  }
}
.web-nav__1-link {
  display: block;
  height: 6.8rem;
  padding: 0 2.2rem;
  font-size: 2.2rem;
  line-height: 6.8rem;
  color: #fff;
  position: relative;
}
@media only screen and (max-width: 75em) {
  .web-nav__1-link {
    width: 100%;
    padding-right: 8rem;
    padding-left: 4rem;
    height: auto;
    line-height: 7rem;
    color: #fff;
  }
}
.web-nav__1-link.active {
  color: #FFF000;
}
.web-nav__1-toggle {
  display: none;
}
@media only screen and (max-width: 75em) {
  .web-nav__1-toggle {
    position: absolute;
    right: 0;
    top: 0;
    width: 7rem;
    height: 7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1;
  }
  .web-nav__1-toggle::after {
    content: "";
    font-family: "iconfont";
    content: "";
    font-size: 1.6rem;
    color: #ffffff;
    transition: transform 0.3s ease;
  }
  .web-nav__1-toggle.active::after {
    transform: rotate(180deg);
  }
}
.web-nav__2-list {
  position: absolute;
  top: 7rem;
  right: 0;
  bottom: auto;
  left: 0;
  z-index: 9999;
  padding: 1rem;
  border-radius: 4px;
  border: 1px solid #ae0c2a;
  background-color: #ffffff;
  display: none;
}
@media only screen and (max-width: 75em) {
  .web-nav__2-list {
    position: static;
    padding: 0;
    padding-left: 3rem;
    background-color: transparent;
    border-left: none;
    margin-top: 0;
    margin-bottom: 0;
  }
}
.web-nav__2-item {
  list-style: none;
  position: relative;
}
.web-nav__2-link {
  display: block;
  padding: 0.5rem 1rem;
  font-size: 1.6rem;
  text-align: center;
  line-height: 3rem;
  color: #2f2f2f;
  white-space: nowrap;
}
@media only screen and (max-width: 75em) {
  .web-nav__2-link {
    color: rgba(255, 255, 255, 0.75);
    line-height: 3.2rem;
    text-align: left;
    font-size: 2rem;
    padding: 0.2rem 2rem;
    transition: all 0.2s ease;
  }
}
.web-nav__2-link:hover {
  color: #ffffff;
  font-weight: 600;
  background: #ae0c2a;
}
@media only screen and (max-width: 75em) {
  .web-nav__2-link:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    font-weight: 500;
  }
}
.web-nav__2-link--arrow::after {
  content: "";
  font-family: "iconfont";
  content: "";
}
@media only screen and (max-width: 75em) {
  .web-nav__2-link--arrow::after {
    display: none;
  }
}
.web-nav__2-open {
  display: none;
}
@media only screen and (max-width: 75em) {
  .web-nav__2-open {
    position: absolute;
    right: 0;
    top: 0.5rem;
    display: block;
    width: 6rem;
    height: 4rem;
    font-size: 2rem;
    color: #ffffff;
    text-align: center;
    line-height: 4rem;
  }
}
.web-nav__3-list {
  position: absolute;
  top: 0;
  right: auto;
  bottom: auto;
  left: 100%;
  z-index: 9999;
  padding: 1rem 0;
  border-radius: 0 0 1rem 1rem;
  background-color: #ffffff;
  display: none;
  border-left: 1px solid rgba(174, 12, 42, 0.1);
}
@media only screen and (max-width: 75em) {
  .web-nav__3-list {
    position: static;
    padding-left: 6rem;
    border-left: none;
    background-color: transparent;
  }
}
.web-nav__3-link {
  display: block;
  padding: 0.5rem 2rem;
  font-size: 1.6rem;
  line-height: 3rem;
  color: #2f2f2f;
  white-space: nowrap;
}
@media only screen and (max-width: 75em) {
  .web-nav__3-link {
    color: #ffffff;
    line-height: 5rem;
  }
}
.web-nav__3-link:hover {
  color: #ffffff;
  font-weight: 600;
  background: #ae0c2a;
}

.search-popover {
  position: relative;
}
.search-popover__icon {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  border: 1px solid #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
}
.search-popover__icon ::before {
  font-size: 2rem;
}
@media only screen and (max-width: 75em) {
  .search-popover__icon {
    display: none;
  }
}
.search-popover__content {
  position: absolute;
  right: 0;
  top: 50%;
  z-index: 99;
  transform: translate(0, 100%);
}
@media only screen and (max-width: 75em) {
  .search-popover__content {
    position: relative;
    right: auto;
    bottom: auto;
    transform: translate(0, 0);
    z-index: 1;
  }
}

.footer {
  box-sizing: content-box;
  background: linear-gradient(to bottom, transparent 0%, transparent 40%, rgba(174, 12, 42, 0.4) 65%, rgba(174, 12, 42, 0.85) 85%, #ae0c2a 100%), url(../images/footer-bg.png) no-repeat top center/cover;
  padding-top: 15rem;
  padding-bottom: 0;
  position: relative;
  z-index: 9999999;
}
@media only screen and (max-width: 75em) {
  .footer {
    padding-top: 6rem;
    background: #ae0c2a;
  }
}
.footer .footer-flex {
  display: flex;
  column-gap: 4rem;
}
@media only screen and (max-width: 75em) {
  .footer .footer-flex {
    display: block;
    column-gap: 0;
  }
}
.footer .footer-flex__item {
  flex: 0 1 auto;
  min-width: 20rem;
}
@media only screen and (max-width: 75em) {
  .footer .footer-flex__item {
    margin-bottom: 2rem;
  }
}
.footer .footer-flex__item:first-child {
  flex: 1 1 auto;
}
.footer .footer-flex__item--none {
  flex: 0 0 auto;
}

.footer-logo {
  display: flex;
  align-items: center;
  height: 100%;
}
.footer-logo img {
  max-width: 100%;
  height: auto;
}
@media only screen and (max-width: 75em) {
  .footer-logo {
    justify-content: center;
    padding-right: 0;
  }
  .footer-logo img {
    max-width: 100%;
    height: auto;
  }
}

.footer-bottom {
  margin-top: 4rem;
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  text-align: center;
}

.footer-bottom p {
  display: block;
  font-size: 1.6rem;
  color: #ffffff;
}

.footer-introduce__title {
  font-size: 2rem;
  color: #fff;
  font-weight: 600;
  margin-bottom: 1rem;
}
@media only screen and (max-width: 75em) {
  .footer-introduce__title {
    display: flex;
    align-items: center;
  }
  .footer-introduce__title::after {
    content: "";
    display: block;
    flex: 1;
    height: 1px;
    border-bottom: 1px solid rgba(231, 231, 231, 0.3);
    margin-left: 1rem;
  }
}
.footer-introduce .out-links a {
  display: block;
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.6);
}
.footer-introduce .out-links a:hover {
  color: white;
  text-decoration: underline;
}
.footer-introduce .out-links p {
  display: block;
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.6);
}
.footer-introduce .qr-code img {
  display: block;
  width: 9rem;
  height: 9rem;
}

.inner-page {
  position: relative;
}
.inner-page__wrapper {
  display: flex;
  position: relative;
}
@media only screen and (max-width: 37.5em) {
  .inner-page__wrapper {
    padding: 0;
    display: block;
  }
}
.inner-page__left {
  flex: none;
  margin-top: -8rem;
  z-index: 1;
}
.inner-page__medium {
  flex: 1;
  overflow: hidden;
}
.inner-page__right {
  width: 32rem;
  flex: none;
}
@media only screen and (max-width: 37.5em) {
  .inner-page__right {
    width: auto;
  }
}

.side-bar {
  flex: none;
  width: 30rem;
  position: relative;
}
@media only screen and (max-width: 75em) {
  .side-bar {
    width: 24rem;
    padding-left: 0rem;
  }
}
.side-bar__title {
  line-height: 8rem;
  font-size: 2.6rem;
  font-weight: 600;
  color: #fff;
  text-align: center;
  background-color: #8D1C11;
}

.side-nav {
  padding: 0 2.5rem;
  min-height: 60rem;
  background: url(../images/side-nav-bg.png) #be4038 no-repeat bottom center/100%;
  position: relative;
  z-index: 1;
}
.side-nav::before {
  content: "";
  display: block;
  background-color: rgba(190, 64, 56, 0.1);
  position: absolute;
  z-index: 0;
  left: -1rem;
  right: -1rem;
  top: 0;
  bottom: -1rem;
}
.side-nav__1-item {
  list-style: none;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.side-nav__1-item.active > .side-nav__2-list {
  display: block;
}
.side-nav__1-item.active > .side-nav__1-link {
  font-weight: 600;
}
.side-nav__1-link {
  display: block;
  text-align: center;
  line-height: 6rem;
  font-size: 2.4rem;
  color: #fff;
  position: relative;
}
.side-nav__2-list {
  display: none;
}
.side-nav__2-item {
  list-style: none;
  position: relative;
}
.side-nav__2-item.active > .side-nav__3-list {
  display: block;
}
.side-nav__2-item.active > .side-nav__2-link {
  color: #8D1C11;
  background-color: #fff;
}
.side-nav__2-item.active > .side-nav__2-link::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-left: 10px solid #8D1C11;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
}
.side-nav__2-item.active > .side-nav__2-link::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-right: 10px solid #8D1C11;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
}
.side-nav__2-link {
  display: block;
  width: 100%;
  font-size: 1.8rem;
  line-height: 4rem;
  color: #fff;
  text-align: center;
  position: relative;
  margin-bottom: 5px;
}

.home-banner .swiper-pagination .swiper-pagination-bullet {
  opacity: 1;
  background-color: #fff;
}
.home-banner .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
  background-color: #A70002;
}
.home-banner img {
  width: 100%;
  height: 50rem;
  object-fit: cover;
}
@media only screen and (max-width: 75em) {
  .home-banner img {
    height: 40rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .home-banner img {
    height: 20rem;
  }
}

.heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 4rem;
}
@media only screen and (max-width: 75em) {
  .heading {
    padding-bottom: 2.5rem;
  }
}
.heading .title {
  display: flex;
  align-items: center;
  font-size: 3.6rem;
  color: #ae0c2a;
  font-weight: 600;
}
@media only screen and (max-width: 75em) {
  .heading .title {
    font-size: 2.4rem;
  }
}
.heading .title span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 4.6rem;
  height: 4.6rem;
  border-radius: 50%;
  background-color: #ae0c2a;
  font-size: 2.4rem;
  color: #fff;
  margin-right: 1rem;
}
@media only screen and (max-width: 75em) {
  .heading .title span {
    width: 3.4rem;
    height: 3.4rem;
    font-size: 1.6rem;
  }
}
.heading .tab-title {
  display: flex;
  align-items: flex-end;
}
.heading .tab-title p {
  font-size: 2.4rem;
  color: #ae0c2a;
  opacity: 0.6;
  line-height: 1;
  margin-right: 2rem;
  cursor: pointer;
}
@media only screen and (max-width: 75em) {
  .heading .tab-title p {
    font-size: 2rem;
    margin-right: 1rem;
  }
}
.heading .tab-title p.active {
  font-size: 3.6rem;
  opacity: 1;
  font-weight: 600;
}
@media only screen and (max-width: 75em) {
  .heading .tab-title p.active {
    font-size: 2.4rem;
  }
}
.heading .more {
  padding: 0 1rem;
  border-radius: 500px;
  font-size: 1.6rem;
  line-height: 2.8rem;
  text-align: center;
  color: #111;
  border: 1px solid #111;
  opacity: 0.4;
  font-family: "st";
}
@media only screen and (max-width: 75em) {
  .heading .more {
    font-size: 1.4rem;
    line-height: 2rem;
  }
}
.heading .more::after {
  content: "+";
}
.heading .more:hover {
  background-color: #ae0c2a;
  border: 1px solid #ae0c2a;
  opacity: 1;
  color: #fff;
}
.heading__left {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.news-list1 .item:not(:last-child) {
  margin-bottom: 1.5rem;
}

.news-list2 {
  padding-top: 5rem;
}
@media only screen and (max-width: 75em) {
  .news-list2 {
    padding-top: 3rem;
  }
}
.news-list2 .item:not(:last-child) {
  margin-bottom: 2.2rem;
}

.news-list3 {
  padding-top: 5rem;
}
@media only screen and (max-width: 75em) {
  .news-list3 {
    padding-top: 3rem;
  }
}
.news-list3 .item:not(:last-child) {
  margin-bottom: 2.3rem;
}

.news-list4 {
  padding-top: 5rem;
}
@media only screen and (max-width: 75em) {
  .news-list4 {
    padding-top: 3rem;
  }
}
.news-list4 .item:not(:last-child) {
  margin-bottom: 3rem;
}

.section-1 {
  overflow: hidden;
  background: url(../images/bg-2.png) no-repeat right bottom/contain;
}

.section-2 {
  overflow: hidden;
  background: url(../images/bg-1.png) no-repeat center center/cover;
}

.section-3 {
  overflow: hidden;
}
.section-3 .swiper-wrapper {
  padding-bottom: 3rem;
}
.section-3 .swiper-pagination {
  position: relative;
}
.section-3 .swiper-pagination .swiper-pagination-bullet {
  opacity: 1;
  background-color: #ccc;
  margin: 0 5px;
}
.section-3 .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
  background-color: #A70002;
}

.article-details {
  border-radius: 8px;
  background-color: #fff;
}
.article-details__heading {
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1.5em;
  text-align: center;
  color: #B21815;
  margin-bottom: 3rem;
}
@media only screen and (max-width: 75em) {
  .article-details__heading {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
}
@media only screen and (max-width: 56.25em) {
  .article-details__heading {
    font-size: 2rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .article-details__heading {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
  }
}
.article-details__describe {
  padding: 1rem;
  text-align: center;
  background-color: rgba(141, 28, 17, 0.1);
  margin-bottom: 3rem;
}
@media only screen and (max-width: 75em) {
  .article-details__describe {
    margin-bottom: 2rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .article-details__describe {
    margin-bottom: 1.5rem;
  }
}
.article-details__tag {
  font-size: 1.4rem;
  color: #8D1C11;
}
.article-details__tag:not(:last-child) {
  margin-right: 2rem;
}
.article-details__content > * {
  margin-bottom: 1.5rem;
}
.article-details__content p {
  font-size: 1.6rem;
  line-height: 2;
  color: #000;
  color: #2f2f2f;
  font-family: "微软雅黑", "黑体", "STHeiti", "Microsoft YaHei";
}
.article-details__content img {
  display: inline-block;
  max-width: 100%;
  height: auto !important;
}
.article-details__content > * {
  max-width: 100%;
}
.article-details__content .edui-upload-video {
  max-width: 100%;
}

.article-prev-next {
  padding: 1rem;
  background-color: rgba(141, 28, 17, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (max-width: 75em) {
  .article-prev-next {
    display: block;
  }
}
.article-prev-next a {
  display: block;
  font-size: 1.6rem;
  color: #8D1C11;
}
@media only screen and (max-width: 75em) {
  .article-prev-next a:not(:last-child) {
    margin-bottom: 1rem;
  }
}
.article-prev-next a span {
  font-weight: 600;
  color: #B21815;
}
.article-prev-next a:hover {
  color: #666;
  text-decoration: underline;
}

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

.article-text-list .item {
  border-bottom: 1px dashed #d9d9d9;
}
.article-text-list .item:last-child {
  border-bottom: none;
}
.article-text-list__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.6rem 1rem;
  position: relative;
  transition: background-color 0.25s, padding-left 0.25s;
  text-decoration: none;
}
@media only screen and (max-width: 37.5em) {
  .article-text-list__row {
    flex-wrap: wrap;
    padding: 1.2rem 0.5rem;
  }
}
.article-text-list__row::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #ccc;
  flex-shrink: 0;
  margin-right: 1.2rem;
  transition: background-color 0.25s, transform 0.25s;
}
.article-text-list__row:hover {
  padding-left: 1.6rem;
  background-color: rgba(174, 12, 42, 0.03);
}
@media only screen and (max-width: 37.5em) {
  .article-text-list__row:hover {
    padding-left: 1rem;
  }
}
.article-text-list__row:hover::before {
  background-color: #ae0c2a;
  transform: scale(1.4);
}
.article-text-list__row:hover .article-text-list__title {
  color: #ae0c2a;
}
.article-text-list__row:hover .article-text-list__date {
  color: #ae0c2a;
}
.article-text-list__title {
  flex: 1;
  font-size: 1.8rem;
  color: #333;
  line-height: 2.8rem;
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  margin-right: 2rem;
  transition: color 0.25s;
}
@media only screen and (max-width: 37.5em) {
  .article-text-list__title {
    font-size: 1.6rem;
    line-height: 2.4rem;
    margin-right: 0;
    min-width: 0;
  }
}
.article-text-list__date {
  flex: none;
  font-size: 1.5rem;
  color: #999;
  white-space: nowrap;
  transition: color 0.25s;
}
@media only screen and (max-width: 37.5em) {
  .article-text-list__date {
    font-size: 1.3rem;
    flex-basis: calc(100% - 1.8rem);
    margin-left: 1.8rem;
    margin-top: 0.4rem;
  }
}
