@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;
}

a {
  text-decoration: none;
}

html {
  font-size: 62.5%;
}
@media only screen and (max-width: 75em) {
  html {
    font-size: 56.25%;
  }
}
@media only screen and (max-width: 56.25em) {
  html {
    font-size: 50%;
  }
}
@media only screen and (min-width: 112.5em) {
  html {
    font-size: 75%;
  }
}

body {
  box-sizing: border-box;
  padding-top: 9rem;
}
@media only screen and (max-width: 37.5em) {
  body {
    padding-top: 10.3rem;
  }
}

::selection {
  background-color: #2555CF;
  color: #ffffff;
}

@font-face {
  font-family: fontHeavy;
  src: url("../font-family/SourceHanSerifCN-Bold-2.otf");
}
@font-face {
  font-family: fontNormal;
  src: url("../font-family/SourceHanSerifCN-Medium-6.otf");
}
body {
  font-family: fontNormal;
  font-weight: 400;
  /*font-size: 16px;*/
  line-height: 1.7;
  color: #777;
}

.only-mobile {
  display: none;
}
@media only screen and (max-width: 56.25em) {
  .only-mobile {
    display: block;
  }
}

.only-pc {
  display: block;
}
@media only screen and (max-width: 56.25em) {
  .only-pc {
    display: none;
  }
}

.heading {
  display: flex;
  justify-content: center;
  padding-bottom: 7rem;
}
@media only screen and (max-width: 37.5em) {
  .heading {
    padding-bottom: 4rem;
  }
}
.heading span {
  padding: 1.2rem;
  text-transform: uppercase;
  font-size: 4rem;
  color: #2555CF;
  position: relative;
  line-height: 1;
}
@media only screen and (max-width: 37.5em) {
  .heading span {
    font-size: 2.4rem;
  }
}
.heading span.white {
  color: #fff;
}
.heading span::before {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  display: block;
  width: 2rem;
  height: 2rem;
  border-left: 4px solid currentColor;
  border-top: 4px solid currentColor;
}
@media only screen and (max-width: 37.5em) {
  .heading span::before {
    width: 1rem;
    height: 1rem;
    border-left: 2px solid currentColor;
    border-top: 2px solid currentColor;
  }
}
.heading span::after {
  position: absolute;
  right: 0;
  bottom: 0;
  content: "";
  display: block;
  width: 2rem;
  height: 2rem;
  border-right: 4px solid currentColor;
  border-bottom: 4px solid currentColor;
}
@media only screen and (max-width: 37.5em) {
  .heading span::after {
    width: 1rem;
    height: 1rem;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
  }
}

.u-center-text {
  text-align: center !important;
}

.u-margin-bottom-small {
  margin-bottom: 1.5rem !important;
}

.u-margin-bottom-medium {
  margin-bottom: 4rem !important;
}
@media only screen and (max-width: 56.25em) {
  .u-margin-bottom-medium {
    margin-bottom: 3rem !important;
  }
}

.u-margin-bottom-big {
  margin-bottom: 7rem !important;
}
@media only screen and (max-width: 56.25em) {
  .u-margin-bottom-big {
    margin-bottom: 5rem !important;
  }
}

.u-margin-top-small {
  margin-top: 1.5rem !important;
}

.u-margin-top-medium {
  margin-top: 4rem !important;
}

.u-margin-top-big {
  margin-top: 7rem !important;
}

.u-margin-top-huge {
  margin-top: 10rem !important;
}

.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: #2555CF;
}
.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: #2555CF;
  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: #FFEE63;
}
.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;
}

.mission-card {
  background-color: #fff;
}
.mission-card:hover .mission-card__top .title {
  color: #FFEE63;
}
.mission-card:hover .mission-card__bottom .tips .text {
  color: #FFEE63;
}
.mission-card:hover .mission-card__bottom .tips .text::before {
  background-color: #FFEE63;
}
.mission-card__top {
  padding: 2rem 2.5rem;
  background: url(../images/grid.png) no-repeat center center/cover;
}
.mission-card__top .title {
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  font-size: 1.6rem;
  color: #111;
  line-height: 2.5rem;
  height: 7.5rem;
}
.mission-card__bottom {
  padding: 2rem 2.5rem;
}
.mission-card__bottom .tips .text {
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  font-size: 1.4rem;
  color: #666;
  position: relative;
  padding-left: 3rem;
}
.mission-card__bottom .tips .text:not(:last-child) {
  margin-bottom: 0.5rem;
}
.mission-card__bottom .tips .text::before {
  content: "";
  font-family: "iconfont";
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  background-color: #2555CF;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  color: #fff;
}
.mission-card__bottom .tips .text--user::before {
  content: "\e622";
}
.mission-card__bottom .tips .text--date::before {
  content: "\e600";
}
.mission-card__bottom .tips .text--address::before {
  content: "\e601";
}

.text-card {
  padding: 0.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.text-card:hover .title {
  color: #2555CF;
}
.text-card:hover .date {
  color: #2555CF;
}
.text-card--secondary:hover .title {
  color: #FFEE63;
}
.text-card--secondary:hover .date {
  color: #FFEE63;
}
.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;
}
.text-card > .date-box {
  flex: none;
}
.text-card > .date-box .main {
  display: block;
  text-align: center;
  font-size: 3rem;
  color: #2555CF;
  line-height: 1;
  padding-bottom: 0.6rem;
}
.text-card > .date-box .sub {
  display: block;
  text-align: center;
  font-size: 1.3rem;
  color: #2555CF;
  line-height: 1;
}
.text-card > .link {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  z-index: 99;
}

.center-card__text {
  width: 50%;
  position: absolute;
  left: 3rem;
  top: 35%;
  font-size: 1.6rem;
  color: #ffffff;
}

.image-card-1 .cover {
  width: 21rem;
  height: 12rem;
}
.image-card-1__date {
  padding: 3px 6px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #B80404;
  font-size: 12px;
  color: #fff;
  position: absolute;
  left: 0;
  z-index: 99;
  top: 1rem;
}

.image-card-2 .cover {
  width: 100%;
  height: 15rem;
}
.image-card-2 .info {
  position: absolute;
  left: 1.5rem;
  right: 1.5rem;
  bottom: 0;
  transform: translateY(50%);
  background-color: #2555CF;
}
.image-card-2 .info .title {
  padding: 1rem 1.5rem;
  color: #fff;
  margin-bottom: 0;
}
.image-card-2:hover .info .title {
  color: #fff;
}

.image-card-3 .cover {
  width: 100%;
  height: 35rem;
}
.image-card-3__date {
  padding: 5px 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #B80404;
  font-size: 1.6rem;
  color: #fff;
  position: absolute;
  left: 0;
  z-index: 99;
  top: 2rem;
}
.image-card-3 .info {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #2555CF;
}
.image-card-3 .info .title {
  padding: 1rem 1.5rem;
  color: #fff;
  margin-bottom: 0;
}
.image-card-3:hover .info .title {
  color: #fff;
}

.image-card-4 {
  padding: 2rem;
  position: relative;
}
.image-card-4::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 7.5rem;
  background: #ffffff;
  border-bottom: 2px solid #003D87;
  box-shadow: 0px 0px 8px 1px rgba(0, 0, 0, 0.05);
  z-index: -1;
}
.image-card-4 .cover {
  width: 12rem;
  height: 16rem;
}
.image-card-4 .info {
  align-self: center;
}
.image-card-4 .info .title {
  margin-bottom: 2rem;
}
.image-card-4 .info .title strong {
  font-size: 2.4rem;
}
.image-card-4 .info .title span {
  font-size: 1.6rem;
}
.image-card-4 .info .desc {
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  font-size: 1.6rem;
  line-height: 3rem;
  height: 9rem;
}

.image-card-5 {
  border-radius: 1rem;
  overflow: hidden;
}
.image-card-5--fixed {
  border-radius: 0;
  position: relative;
}
.image-card-5--fixed img {
  transition: 0.3s ease-in-out;
}
.image-card-5 .info {
  padding: 1rem;
  background-color: #ffffff;
}
.image-card-5 .info .title {
  margin-bottom: 0;
}
.image-card-5--fixed .info {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(transparent, #000000);
}
.image-card-5--fixed .info .title {
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  color: #ffffff;
}
.image-card-5:hover .info {
  background-color: #2555CF;
}
.image-card-5:hover .info .title {
  color: #ffffff;
}
.image-card-5--fixed:hover .info {
  background-color: transparent;
}

.image-card-6 .date-box {
  color: #2555CF;
  padding-bottom: 1rem;
}
.image-card-6 .date-box .main {
  font-size: 3rem;
  font-weight: 600;
  padding-right: 0.5rem;
}
.image-card-6 .date-box .sub {
  font-size: 1.6rem;
}
.image-card-6 .cover {
  height: 15rem;
  border-radius: 1rem;
  overflow: hidden;
}
.image-card-6 .info {
  padding-top: 1.2rem;
}
.image-card-6 .info .title {
  margin-bottom: 0;
}
.image-card-6 .info .more {
  font-size: 1.2rem;
  color: #2555CF;
  display: flex;
  align-items: center;
}
.image-card-6 .info .more::after {
  content: "";
  font-family: "iconfont";
  content: "\e61f";
  font-size: 2rem;
  margin-left: 5px;
}
.image-card-6:hover .cover {
  outline: 2px solid #2555CF;
}
.image-card-6:hover .info .title {
  color: #2555CF;
}

.text-card-1 {
  padding: 1rem;
  background-color: #fff;
  box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.08);
  border-left: 2px solid #2555CF;
}
.text-card-1 .title {
  padding-left: 2rem;
  border-left: 1px solid #e7e7e7;
}
.text-card-1 .date-box {
  padding: 0 1rem;
  padding-right: 2rem;
}

.text-card-2 {
  margin: 0.5rem;
  flex-direction: row-reverse;
}
.text-card-2 .date {
  background-color: #E8E8E8;
  padding: 1px 1rem;
  border-radius: 100px;
  margin-right: 2rem;
  margin-left: 0;
}

.text-card-2--theme {
  margin: 0.5rem;
  flex-direction: row-reverse;
}
.text-card-2--theme .date {
  background-color: rgba(37, 85, 207, 0.2);
  padding: 1px 1rem;
  border-radius: 100px;
  margin-right: 2rem;
  margin-left: 0;
  color: #2555CF;
}
.text-card-2--theme:hover .date {
  background-color: #2555cf;
  color: #ffffff;
}

.text-card-3 {
  padding: 2rem;
  background-color: #fff;
  border-left: 2px solid #2555CF;
}
.text-card-3 .date-box {
  background-color: #E8E8E8;
  margin-right: 2rem;
}
.text-card-3 .date-box .main {
  padding: 8px 0;
}
.text-card-3 .date-box .sub {
  padding: 3px 5px;
  background-color: #2555CF;
  color: #fff;
}

.text-card-4 {
  padding: 1.6rem 0;
  border-top: 3px solid #fff;
  border-bottom: 3px solid #fff;
}
.text-card-4::after {
  content: "";
  font-family: "iconfont";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  content: "\e624";
  font-size: 1.6rem;
  color: #333;
  right: 2rem;
}
.text-card-4:hover {
  background-color: #2555CF;
  border-bottom: 3px solid #BE0404;
}
.text-card-4:hover::after {
  color: #ffffff;
}
.text-card-4:hover .date-box .main {
  color: #ffffff;
}
.text-card-4:hover .date-box .sub {
  color: #ffffff;
}
.text-card-4:hover .title {
  color: #ffffff;
}
.text-card-4 .title {
  padding-right: 4rem;
}
.text-card-4 .date-box {
  margin-right: 2rem;
  border-right: 1px solid #f2f2f2;
}
.text-card-4 .date-box .main {
  padding: 8px 0;
  font-size: 2.2rem;
  padding: 0 2rem;
}
.text-card-4 .date-box .sub {
  padding: 3px 5px;
  font-size: 1.4rem;
}

.text-card-5 {
  padding: 1.7rem;
  background: #ffffff;
  box-shadow: 0px 0px 13px 3px rgba(136, 136, 136, 0.06);
  border-radius: 1.5rem;
}
.text-card-5 .title {
  padding-left: 2rem;
  color: #141414;
}
.text-card-5 .date-box {
  width: 6.7rem;
  height: 6.7rem;
  border-radius: 50%;
  background-color: #ffffff;
  border: 1px dashed #820081;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.text-card-5 .date-box .main {
  font-size: 1.6rem;
  font-weight: 600;
}
.text-card-5 .date-box .sub {
  font-size: 1.4rem;
}
.text-card-5:hover {
  background: linear-gradient(90deg, #A300A2 0%, #820081 100%);
  box-shadow: 0px 0px 13px 3px rgba(136, 136, 136, 0.06);
}
.text-card-5:hover::after {
  content: "";
  display: block;
  width: 10rem;
  height: 10rem;
  background: url(../images/notice-icon.png) no-repeat center center/cover;
  position: absolute;
  right: -2rem;
  bottom: -2rem;
}
.text-card-5:hover .title {
  color: #ffffff;
}
.text-card-5:hover .date-box {
  background-color: #FFD1EB;
  border: 1px dashed #FFD1EB;
}

.text-card-6 {
  display: block;
}
.text-card-6 .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;
  margin-bottom: 1rem;
}
.text-card-6__desc {
  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;
  margin-bottom: 1rem;
}
.text-card-6__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.text-card-6__bottom .date {
  font-size: 1.6rem;
  color: #2555CF;
}
.text-card-6__bottom .more {
  font-size: 1.2rem;
  color: #2555CF;
  display: flex;
  align-items: center;
}
.text-card-6__bottom .more::after {
  content: "";
  font-family: "iconfont";
  content: "\e61f";
  font-size: 2rem;
  margin-left: 5px;
}

.text-card-7 {
  padding: 1rem;
  background-color: #ffffff;
  position: relative;
}
.text-card-7 .date-box .main {
  font-size: 2.2rem;
}
.text-card-7 .date-box .sub {
  padding: 4px;
  font-size: 1.2rem;
  color: #ffffff;
  background-color: #2555CF;
}
.text-card-7 .info {
  padding-left: 2rem;
  flex: 1;
}
.text-card-7 .info .title {
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  margin-bottom: 5px;
}
.text-card-7 .info .desc {
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  color: #888;
}
.text-card-7:hover .info .desc {
  color: #2555CF;
}

.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: 150rem;
  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;
  height: 5.8rem;
  border-bottom: 2px solid #2555CF;
}
@media only screen and (max-width: 56.25em) {
  .custom-breadcrumb {
    display: none;
  }
}
.custom-breadcrumb .title {
  font-size: 2.4rem;
  color: #2555CF;
  font-weight: 900;
  position: relative;
}
.custom-breadcrumb .breadcrumb-navs {
  display: flex;
  align-items: center;
}
.custom-breadcrumb .breadcrumb-navs .pos {
  font-size: 1.4rem;
  color: #2f2f2f;
  margin-right: 1rem;
  display: flex;
  align-items: center;
}
.custom-breadcrumb .breadcrumb-navs .pos::before {
  content: "";
  font-family: "iconfont";
  content: "\e60e";
  font-size: 1.4rem;
  color: #2555CF;
  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: "\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 {
  color: #2555CF;
}
.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: #2555CF;
  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: 56.25em) {
  .custom-search__open {
    display: block;
  }
}
.custom-search__content {
  display: block;
}
@media only screen and (max-width: 56.25em) {
  .custom-search__content {
    display: none;
    position: absolute;
    top: 5rem;
    right: -1rem;
    padding: 2rem;
    background-color: rgba(20, 20, 20, 0.6);
  }
}

.search-input {
  display: flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 100px;
  overflow: hidden;
}
.search-input__input {
  width: 20rem;
  padding: 0 1rem;
  height: 3rem;
  opacity: 1;
  border: none;
  outline: none;
  font-size: 1.4rem;
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.2);
}
.search-input__input::placeholder {
  color: currentColor;
  opacity: 1;
}
.search-input__button {
  transition: all 0.3s ease-in-out;
  position: relative;
  display: block;
  width: 3rem;
  height: 3rem;
  background-color: rgba(255, 255, 255, 0.2);
}
.search-input__button:hover {
  background-color: #2555CF;
  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: "\e8d6";
  position: absolute;
  font-size: 2rem;
  color: #ffffff;
  opacity: 0.6;
}

.custom-selector {
  width: 100%;
  height: 4rem;
  position: relative;
}
.custom-selector__input {
  background: rgba(20, 20, 20, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 1000px;
  position: relative;
  color: #2555CF;
}
.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: #2555CF;
  color: #ffffff;
}

.back-top-menu {
  position: fixed;
  top: auto;
  right: 2rem;
  bottom: 8rem;
  left: auto;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border: 3px solid #2555CF;
  border-radius: 50%;
  background-color: #2555CF;
  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: #2555CF;
  border: 3px solid #2555CF;
}

div.pb_sys_common.pb_sys_normal.pb_sys_style1 {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 0;
}
div.pb_sys_common.pb_sys_normal.pb_sys_style1 span.p_pages {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 5px;
}
div.pb_sys_common.pb_sys_normal.pb_sys_style1 span.p_pages .p_fun_d {
  display: block;
  height: 30px;
  padding: 0 10px;
  line-height: 30px;
  border-radius: 4px;
  font-size: 12px;
  background-color: #f4f4f5;
  color: #606266;
  transition: 0.3s;
  cursor: pointer;
}
div.pb_sys_common.pb_sys_normal.pb_sys_style1 span.p_pages .p_fun_d:hover {
  color: #2555CF;
}
@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: #2555CF;
  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: #2555CF;
}
@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: #2555CF;
}
@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: #2555CF;
}
@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: #2555CF;
  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);
}

.container {
  width: 100%;
  max-width: 150rem;
  padding: 0 8rem;
  margin: 0 auto;
}
@media only screen and (max-width: 56.25em) {
  .container {
    padding: 0 3rem;
  }
}

.row {
  max-width: 150rem;
  margin: 0 auto;
}
.row::after {
  content: "";
  display: table;
  clear: both;
}
.row [class^=col-] {
  float: left;
}
.row [class^=col-]:not(:last-child) {
  margin-right: 5rem;
}
@media only screen and (max-width: 56.25em) {
  .row [class^=col-]:not(:last-child) {
    margin-right: 0;
    margin-bottom: 6rem;
  }
}
@media only screen and (max-width: 56.25em) {
  .row [class^=col-] {
    width: 100% !important;
  }
}
.row [class^=col-].mr0 {
  margin-right: 0 !important;
}
.row .col-1-of-2 {
  width: calc((100% - 5rem) / 2);
}
.row .col-1-of-3 {
  width: calc((100% - 2 * 5rem) / 3);
}
.row .col-2-of-3 {
  width: calc(2 * ((100% - 2 * 5rem) / 3) + 5rem);
}
.row .col-1-of-4 {
  width: calc((100% - 3 * 5rem) / 4);
}
.row .col-2-of-4 {
  width: calc(2 * ((100% - 3 * 5rem) / 4) + 5rem);
}
.row .col-3-of-4 {
  width: calc(3 * ((100% - 3 * 5rem) / 4) + 2 * 5rem);
}
.row .col-1-of-5 {
  width: calc((100% - 4 * 5rem) / 5);
}
.row .col-2-of-5 {
  width: calc(2 * ((100% - 5 * 5rem) / 5) + 5rem);
}
.row .col-3-of-5 {
  width: calc(3 * ((100% - 5 * 5rem) / 5) + 2 * 5rem);
}
.row .col-4-of-5 {
  width: calc(4 * ((100% - 4 * 5rem) / 5) + 3 * 5rem);
}

.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 {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 9999;
}
.header__main {
  height: 9rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 0 5px #666;
}
@media only screen and (max-width: 37.5em) {
  .header__main {
    height: 6rem;
  }
}
.header__main--left {
  height: 100%;
  padding: 0 4rem;
  flex: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #2f57c7;
}
@media only screen and (max-width: 37.5em) {
  .header__main--left {
    padding: 0 1rem;
  }
}
.header__main--right {
  height: 100%;
  flex: 1;
  padding-right: 6rem;
  background: #2555CF url(../images/header-bg.png) no-repeat left top/cover;
  display: flex;
  justify-content: center;
  align-items: center;
}
.header__hide-wrapper {
  position: fixed;
  left: 0;
  right: 0;
  padding-right: 0;
  top: 9rem;
  background-color: #2f57c7;
}
@media only screen and (max-width: 75em) {
  .header__hide-wrapper {
    right: 0;
  }
}
@media only screen and (max-width: 37.5em) {
  .header__hide-wrapper {
    top: 6rem;
  }
}
.header__main-logo img {
  display: block;
  width: 25vw;
}
@media only screen and (max-width: 37.5em) {
  .header__main-logo img {
    width: 40vw;
  }
}
.header__main-nav {
  height: 100%;
  display: flex;
}
@media only screen and (max-width: 75em) {
  .header__main-nav {
    display: none;
  }
}
.header__main-nav > * {
  margin: 0 1rem;
}
.header__main-nav .menu-text {
  height: 100%;
  padding: 5px;
  font-size: 1.7rem;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 4px solid transparent;
}
.header__main-nav .menu-text:hover, .header__main-nav .menu-text.active {
  color: #FFEE63;
  border-bottom: 4px solid #FFEE63;
}
.header__main-menus {
  display: flex;
  align-items: center;
  justify-content: space-around;
  position: absolute;
  top: -4.5rem;
  transform: translateY(-50%);
  right: 2rem;
}
@media only screen and (max-width: 75em) {
  .header__main-menus {
    right: 14rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .header__main-menus {
    position: relative;
    top: auto;
    right: auto;
    transform: translateY(0);
  }
}
.header__main-menus > * {
  margin: 0 1rem;
}
.header__main-menus .menu-text {
  padding: 5px;
  font-size: 1.8rem;
  color: #ffffff;
  cursor: pointer;
}
.header__main-menus .menu-text:hover {
  color: #FFEE63;
}
.header__main-menus .menu-text span {
  font-size: 1em;
}
.header__main-hamburger {
  position: absolute;
  right: 0;
  top: 0;
  width: 8rem;
  height: 9rem;
  background-color: rgba(36, 91, 177, 0.4);
  font-size: 3rem;
  color: #ffffff;
  cursor: pointer;
  display: none;
}
@media only screen and (max-width: 37.5em) {
  .header__main-hamburger {
    width: 6rem;
    height: 6rem;
  }
}
@media only screen and (max-width: 75em) {
  .header__main-hamburger {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

.full-nav {
  display: none;
}
.full-nav.active {
  display: flex;
  justify-content: center;
  height: 70vh;
}
@media only screen and (max-width: 75em) {
  .full-nav.active {
    display: block;
    height: 91vh;
    overflow-y: auto;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}
@media only screen and (max-width: 37.5em) {
  .full-nav.active {
    height: 94rem;
  }
}
.full-nav__item {
  padding: 2rem;
  border-bottom: 4px solid transparent;
  height: 100%;
  overflow-y: auto;
  /*定义滚动条高宽及背景 高宽分别对应横竖滚动条的尺寸*/
  /*定义滚动条轨道 内阴影+圆角*/
  /*定义滑块 内阴影+圆角*/
}
@media only screen and (max-width: 37.5em) {
  .full-nav__item {
    height: auto;
  }
}
.full-nav__item::-webkit-scrollbar {
  width: 2px;
  height: 2px;
  background-color: #2555CF;
}
.full-nav__item::-webkit-scrollbar-track {
  border-radius: 10px;
  background-color: #2555CF;
}
.full-nav__item::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: #FFEE63;
}
@media only screen and (max-width: 37.5em) {
  .full-nav__item {
    padding: 2rem;
  }
}
@media only screen and (max-width: 56.25em) {
  .full-nav__item {
    width: 33.33%;
  }
}
@media only screen and (max-width: 37.5em) {
  .full-nav__item {
    width: 100%;
  }
}
.full-nav__item.active {
  background-color: #1a3fb0;
  border-bottom: 4px solid #FFEE63;
}
.full-nav__main-link {
  font-size: 2rem;
  color: #fff;
  margin-bottom: 1rem;
  display: none;
}
@media only screen and (max-width: 75em) {
  .full-nav__main-link {
    display: block;
  }
}

.nav-tree__link {
  font-size: 1.4rem;
  color: #fff;
  padding: 1rem 0;
  line-height: 2;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 600;
}
.nav-tree__link:hover, .nav-tree__link.active {
  color: #fce537;
}
.nav-tree--2 {
  padding-left: 2rem;
}
.nav-tree--2 .nav-tree__link {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.2rem;
}
.nav-tree--2 .nav-tree__link:hover, .nav-tree--2 .nav-tree__link.active {
  color: #FFEE63;
}
.nav-tree--3 {
  padding-left: 2rem;
}
.nav-tree--3 .nav-tree__link {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.2rem;
}
.nav-tree--3 .nav-tree__link:hover, .nav-tree--3 .nav-tree__link.active {
  color: #FFEE63;
}

.web-footer__top {
  padding: 2rem 1rem 5rem 1rem;
  background-color: #333333;
}
.web-footer__top .container {
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 75em) {
  .web-footer__top .container {
    display: block;
  }
}
.web-footer__top .container .item {
  max-width: 30%;
}
@media only screen and (max-width: 56.25em) {
  .web-footer__top .container .item {
    max-width: 100%;
  }
}
.web-footer__top .container .logo {
  max-width: 100%;
}
.web-footer__top .container h2 {
  font-size: 2.2rem;
  font-family: SourceHanSerifSC;
  color: #C6C6C6;
  text-transform: uppercase;
  position: relative;
  margin-top: 2rem;
}
.web-footer__top .container h2::after {
  content: "";
  display: block;
  width: 17px;
  height: 4px;
  background-color: #2555CF;
  margin-top: 1rem;
}
.web-footer__top .container .text-list {
  padding-top: 2rem;
  display: flex;
  flex-wrap: wrap;
}
.web-footer__top .container .text-list p {
  font-size: 1.6rem;
  color: #999999;
  width: 100%;
  max-width: 400px;
}
.web-footer__top .container .text-list a {
  font-size: 1.6rem;
  color: #999999;
  width: 100%;
  max-width: 400px;
  width: 50%;
}
.web-footer__top .container .text-list a:hover {
  color: #ffffff;
}
.web-footer__top .container .third {
  display: flex;
  padding-top: 2.5rem;
}
.web-footer__top .container .third a span {
  display: flex;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  border: 1px solid rgba(217, 217, 217, 0.5);
  justify-content: center;
  align-items: center;
  font-size: 2.4rem;
  color: #D9D9D9;
}
.web-footer__top .container .third a span:hover {
  border: 1px solid #d9d9d9;
}
.web-footer__top .container .third a:not(:last-child) {
  margin-right: 1rem;
}
.web-footer__bottom {
  padding: 1rem;
  background-color: #242424;
  display: flex;
  justify-content: center;
}
.web-footer__bottom p {
  font-size: 1.4rem;
  color: #ffffff;
  text-align: center;
}

.inner-page {
  position: relative;
  padding-bottom: 2rem;
}
@media only screen and (max-width: 56.25em) {
  .inner-page {
    padding-top: 0;
  }
}
.inner-page__wrapper {
  display: flex;
}
.inner-page__left {
  flex: none;
  margin-right: 3rem;
  transform: translateY(-7.8rem);
}
@media only screen and (max-width: 56.25em) {
  .inner-page__left {
    display: none;
  }
}
.inner-page__medium {
  flex: 1;
  background-color: #ffffff;
}
.inner-page__medium--bottom {
  padding: 2rem 0;
}
@media only screen and (max-width: 56.25em) {
  .inner-page__medium--bottom {
    padding: 0;
  }
}
.inner-page__right {
  flex: none;
}

.flex-row {
  display: flex;
}
@media only screen and (max-width: 56.25em) {
  .flex-row {
    display: block;
  }
}
.flex-row--auto {
  flex: 1;
  padding-right: 2rem;
}
@media only screen and (max-width: 56.25em) {
  .flex-row--auto {
    padding-right: 0;
  }
}
.flex-row--static {
  flex: none;
}

.side-bar {
  flex: none;
  width: 300px;
  position: relative;
  overflow: hidden;
  background-color: #004dc4;
}
@media only screen and (max-width: 75em) {
  .side-bar {
    width: 24rem;
  }
}
.side-bar__heading {
  line-height: 7.8rem;
  font-size: 2.6rem;
  font-weight: bold;
  color: #ffffff;
  position: relative;
  padding-left: 2rem;
  background-color: #0f3a88;
}
.side-bar__footer-img {
  display: block;
  width: 100%;
  margin-top: 30px;
  padding: 2rem;
}

.side-nav__1-item {
  list-style: none;
  position: relative;
  overflow: hidden;
}
.side-nav__1-item.active > .side-nav__2-list {
  display: block;
}
.side-nav__1-item.active > .side-nav__1-link {
  color: #FFD800;
  font-weight: 600;
  background: #2454b5;
}
.side-nav__1-link {
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 2rem;
  font-size: 1.6rem;
  line-height: 2.6;
  color: #ffffff;
  background: transparent;
}
.side-nav__1-link:hover {
  color: #FFD800;
  font-weight: 600;
  background: #2454b5;
}
.side-nav__1-open {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.side-nav__2-list {
  background-color: transparent;
  display: none;
  overflow: hidden;
}
.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: #FFD800;
  font-weight: 600;
  background: #2454b5;
}
.side-nav__2-link {
  display: block;
  padding-left: 3rem;
  font-size: 1.5rem;
  color: #ffffff;
  white-space: nowrap;
  line-height: 2.6;
  background-color: #255dca;
}
.side-nav__2-link:hover {
  color: #FFD800;
  font-weight: 600;
  background: #2454b5;
}
.side-nav__3-link {
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 4rem;
  font-size: 1.4rem;
  line-height: 2.6;
  color: #ffffff;
  background: #255dca;
}
.side-nav__3-link:hover {
  color: #FFD800;
  font-weight: 600;
  background: #2454b5;
}
.side-nav__4-link {
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 5rem;
  font-size: 1.3rem;
  line-height: 2.6;
  color: #ffffff;
  background: #255dca;
}
.side-nav__4-link:hover {
  color: #FFD800;
  font-weight: 600;
  background: #2454b5;
}

.section-banner {
  padding-right: 8rem;
  position: relative;
}
@media only screen and (max-width: 37.5em) {
  .section-banner {
    padding-right: 0;
  }
}
.section-banner img {
  display: block;
  width: 100%;
}
.section-banner .swiper-pagination {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  width: 8rem;
  left: auto;
  right: 0;
  top: 0;
  bottom: 8rem;
  background-color: rgb(45, 134, 215);
}
@media only screen and (max-width: 37.5em) {
  .section-banner .swiper-pagination {
    display: none;
  }
}
.section-banner .swiper-pagination .swiper-pagination-bullet {
  display: flex;
  align-items: center;
  width: 1.6rem;
  height: 1.6rem;
  margin: 1rem 0;
  opacity: 1;
  border: 2px solid #fff;
  background-color: #fff;
}
.section-banner .swiper-pagination .swiper-pagination-bullet::before {
  content: "";
  display: block;
  width: 5rem;
  height: 1px;
  border-bottom: 1px solid #fff;
  margin-right: 6px;
  transition: all 0.3s ease-in-out;
  position: absolute;
  left: -3rem;
  opacity: 0;
}
.section-banner .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: transparent;
}
.section-banner .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  opacity: 1;
}

.section-home {
  padding: 8rem 0;
}
@media only screen and (max-width: 37.5em) {
  .section-home {
    padding: 4rem 0;
  }
}
.section-home--1 {
  background-color: #fff;
}
.section-home--2 {
  background: url(../images/bg-1.png) no-repeat center center/cover;
}
.section-home--3 {
  background: url(../images/bg-2.png) no-repeat center center/cover;
  background-attachment: fixed;
}
.section-home--4 {
  padding-bottom: 11rem;
  background: #fff url(../images/bg-3.png) no-repeat left center/contain;
}

.study-list {
  display: flex;
  flex-wrap: wrap;
  margin: calc(-5rem / 2);
}
.study-list > .item {
  list-style: none;
  padding: calc(5rem / 2);
  width: calc((1 / 5) * 100%);
}
@media only screen and (max-width: 75em) {
  .study-list > .item {
    width: calc((1 / 3) * 100%);
  }
}
@media only screen and (max-width: 56.25em) {
  .study-list > .item {
    width: calc((1 / 2) * 100%);
  }
}
.study-list .study-card {
  padding: 2rem 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #FFFFFF;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.study-list .study-card:hover {
  box-shadow: 0px 0px 20px 1px rgba(0, 0, 0, 0.1);
}
.study-list .study-card img {
  max-width: 100%;
}
.study-list .study-card p {
  padding-top: 2rem;
  font-size: 1.8rem;
  color: #333;
}
.study-list .study-card__link {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
}

.life-list {
  display: flex;
  flex-wrap: wrap;
  margin: calc(-5rem / 2);
}
.life-list > .item {
  list-style: none;
  padding: calc(5rem / 2);
  width: calc((1 / 3) * 100%);
}
@media only screen and (max-width: 75em) {
  .life-list > .item {
    width: calc((1 / 2) * 100%);
  }
}
@media only screen and (max-width: 56.25em) {
  .life-list > .item {
    width: calc((1 / 1) * 100%);
  }
}
.life-list .life-card {
  position: relative;
}
.life-list .life-card__info {
  padding-top: 2rem;
}
.life-list .life-card__date {
  font-size: 1.6rem;
  color: #2555CF;
  margin-bottom: 1rem;
}
.life-list .life-card__title {
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  font-size: 2.2rem;
  color: #333;
  line-height: 1.6;
  margin-bottom: 1.4rem;
}
.life-list .life-card__summary {
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  font-size: 1.4rem;
  color: #666666;
}
.life-list .life-card__bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #CCCCCC;
}
.life-list .life-card__author {
  font-size: 1.4rem;
  color: #666666;
  padding-left: 2rem;
  position: relative;
  text-transform: uppercase;
}
.life-list .life-card__author strong {
  color: #2555CF;
}
.life-list .life-card__author::before {
  content: "";
  font-family: "iconfont";
  content: "\e677";
  font-size: 1.8rem;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.life-list .life-card__more {
  font-size: 1.4rem;
  color: #999999;
  text-transform: uppercase;
}
.life-list .life-card__link {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
}

.teacher-list {
  display: flex;
  flex-wrap: wrap;
  margin: calc(-5rem / 2);
}
.teacher-list > .item {
  list-style: none;
  padding: calc(5rem / 2);
  width: calc((1 / 2) * 100%);
}
@media only screen and (max-width: 75em) {
  .teacher-list > .item {
    width: calc((1 / 2) * 100%);
  }
}
@media only screen and (max-width: 56.25em) {
  .teacher-list > .item {
    width: calc((1 / 1) * 100%);
  }
}
.teacher-list .teacher-card {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.teacher-list .teacher-card__cover {
  flex: none;
  width: 18rem;
  height: 18rem;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #ffffff;
}
@media only screen and (max-width: 37.5em) {
  .teacher-list .teacher-card__cover {
    width: 12rem;
    height: 12rem;
  }
}
.teacher-list .teacher-card__cover img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.teacher-list .teacher-card__info {
  padding-left: 2rem;
}
.teacher-list .teacher-card__title {
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  font-size: 2.4rem;
  color: #ffffff;
  margin-bottom: 1.5rem;
}
@media only screen and (max-width: 37.5em) {
  .teacher-list .teacher-card__title {
    font-size: 1.6rem;
  }
}
.teacher-list .teacher-card__summary {
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  font-size: 1.4rem;
  color: #ffffff;
  line-height: 2;
}
.teacher-list .teacher-card__link {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
}

.about-us {
  display: flex;
  position: relative;
  justify-content: flex-end;
}
@media only screen and (max-width: 75em) {
  .about-us {
    display: block;
  }
}
.about-us__swiper {
  width: 75%;
}
@media only screen and (max-width: 75em) {
  .about-us__swiper {
    width: 100%;
  }
}
.about-us__swiper img {
  display: block;
  width: 100%;
}
.about-us__swiper .swiper-pagination {
  position: absolute;
  width: auto;
  left: 0;
  top: 0;
  bottom: auto;
}
.about-us__swiper .swiper-pagination .swiper-pagination-bullet {
  display: flex;
  align-items: center;
  width: auto;
  height: auto;
  background-color: transparent;
  font-size: 2rem;
  opacity: 1;
}
.about-us__swiper .swiper-pagination .swiper-pagination-bullet::before {
  content: "";
  display: block;
  width: 3rem;
  height: 1px;
  border-bottom: 1px solid currentColor;
  margin-right: 6px;
  transition: all 0.3s ease-in-out;
}
.about-us__swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  color: #2555CF;
}
.about-us__swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  width: 5rem;
}
.about-us__info {
  position: absolute;
  left: 0;
  bottom: -3.5rem;
  z-index: 999;
  width: 40%;
  padding: 4rem 5rem;
  background: linear-gradient(90deg, #2555CF, #329DED);
  font-size: 1.8rem;
  color: #ffffff;
}
@media only screen and (max-width: 75em) {
  .about-us__info {
    width: 100%;
    position: relative;
    bottom: auto;
  }
}
@media only screen and (max-width: 37.5em) {
  .about-us__info {
    padding: 1rem;
    font-size: 1.2rem;
  }
}

.static-banner img {
  display: block;
  width: 100%;
}

.inner-news-list {
  padding-top: 2rem;
}
.inner-news-list .item {
  list-style: none;
  position: relative;
  padding: 1rem;
  transition: 0.3s ease-in-out;
}
.inner-news-list .item:not(:last-child) {
  border-bottom: 1px solid #f2f2f2;
}
.inner-news-list .item:hover {
  padding: 1rem 1rem 1rem 2rem;
  box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.16);
  z-index: 9;
}

.inner-picture-list {
  padding-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  margin: calc(-3rem / 2);
}
.inner-picture-list > .item {
  list-style: none;
  padding: calc(3rem / 2);
  width: calc((1 / 3) * 100%);
}
@media only screen and (max-width: 75em) {
  .inner-picture-list > .item {
    width: calc((1 / 3) * 100%);
  }
}
@media only screen and (max-width: 56.25em) {
  .inner-picture-list > .item {
    width: calc((1 / 2) * 100%);
  }
}

.inner-teacher-list {
  padding-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  margin: calc(-2.3rem / 2);
}
.inner-teacher-list > .item {
  list-style: none;
  padding: calc(2.3rem / 2);
  width: calc((1 / 2) * 100%);
}
@media only screen and (max-width: 75em) {
  .inner-teacher-list > .item {
    width: calc((1 / 2) * 100%);
  }
}
@media only screen and (max-width: 56.25em) {
  .inner-teacher-list > .item {
    width: calc((1 / 1) * 100%);
  }
}

.article-details {
  background-color: #ffffff;
  padding-left: 10rem;
  position: relative;
}
.article-details::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 7rem;
  width: 1px;
  border-left: 1px solid #f2f2f2;
}
@media only screen and (max-width: 56.25em) {
  .article-details::before {
    display: none;
  }
}
.article-details__share {
  display: flex;
  flex-direction: column;
  position: absolute;
  left: 0;
  top: 0;
  padding-right: 2rem;
}
@media only screen and (max-width: 56.25em) {
  .article-details__share {
    position: relative;
    left: auto;
    top: auto;
    padding-right: 0;
    padding-top: 2rem;
    flex-direction: row;
    justify-content: center;
  }
}
.article-details__share a {
  margin-bottom: 1rem;
}
@media only screen and (max-width: 56.25em) {
  .article-details__share a {
    margin-bottom: 0;
    margin: 0 1rem;
  }
}
.article-details__share a .iconfont {
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 100px;
  background-color: #E4EDF3;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2em;
  color: #A9A9A9;
}
.article-details__share a .iconfont:hover {
  background-color: #2555CF;
  color: #ffffff;
}
.article-details__heading {
  padding: 2rem 0;
  font-size: 2.4rem;
  font-weight: 600;
  color: #050505;
  text-align: center;
}
@media only screen and (max-width: 56.25em) {
  .article-details__heading {
    font-size: 1.8rem;
  }
}
.article-details__describe {
  display: flex;
  justify-content: center;
  padding: 1rem;
  margin-bottom: 2rem;
  background-color: #E4EDF3;
}
@media only screen and (max-width: 56.25em) {
  .article-details__describe {
    display: none;
  }
}
.article-details__tag {
  font-size: 1.4rem;
  color: #000000;
  margin: 0 1rem;
}
.article-details__content p {
  font-size: 1.6rem;
  line-height: 1.8;
  color: #2f2f2f;
}
.article-details__content img {
  display: inline-block;
  max-width: 100%;
  margin: 2rem 0;
}

.article-details-pagination {
  padding: 4rem 0;
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 75em) {
  .article-details-pagination {
    display: block;
  }
}
.article-details-pagination__button {
  display: block;
  padding: 0.5rem 2rem;
  font-size: 1.6rem;
  background-color: rgba(37, 85, 207, 0.1);
  color: #2555CF;
}

.teacher-details {
  padding-top: 5rem;
}
@media only screen and (max-width: 56.25em) {
  .teacher-details {
    padding-top: 0;
  }
}
.teacher-details .base-info {
  display: flex;
  padding: 2.5rem;
  margin-bottom: 3rem;
  position: relative;
}
@media only screen and (max-width: 37.5em) {
  .teacher-details .base-info {
    padding: 0;
    padding-bottom: 2rem;
  }
}
.teacher-details .base-info::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 9rem;
  background: #ffffff;
  border-bottom: 3px solid #BE0404;
  box-shadow: 0px 0px 8px 1px rgba(0, 0, 0, 0.05);
  z-index: -1;
}
@media only screen and (max-width: 56.25em) {
  .teacher-details .base-info {
    display: block;
  }
}
.teacher-details .base-info .cover {
  width: 24rem;
  height: 32rem;
  flex: none;
  position: relative;
}
@media only screen and (max-width: 56.25em) {
  .teacher-details .base-info .cover {
    width: 100%;
    height: auto;
  }
}
.teacher-details .base-info .cover img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media only screen and (max-width: 56.25em) {
  .teacher-details .base-info .cover img {
    width: 100%;
    height: auto;
    margin-bottom: 1rem;
  }
}
.teacher-details .base-info .info {
  padding-left: 3rem;
}
@media only screen and (max-width: 56.25em) {
  .teacher-details .base-info .info {
    padding-left: 0;
  }
}
.teacher-details .base-info .info .top {
  display: flex;
  align-items: flex-end;
  padding-bottom: 2rem;
}
@media only screen and (max-width: 56.25em) {
  .teacher-details .base-info .info .top {
    padding-bottom: 0rem;
  }
}
.teacher-details .base-info .info .top .name {
  font-size: 3rem;
  font-weight: 600;
  font-family: "MicrosoftYaHei-Bold";
  padding-right: 2rem;
  color: #2555CF;
}
@media only screen and (max-width: 56.25em) {
  .teacher-details .base-info .info .top .name {
    font-size: 2.3rem;
  }
}
.teacher-details .base-info .info .top .tag {
  font-size: 2rem;
  line-height: 1.6;
  color: #2555CF;
  position: relative;
  top: -0.5rem;
}
@media only screen and (max-width: 56.25em) {
  .teacher-details .base-info .info .top .tag {
    font-size: 1.4rem;
  }
}
.teacher-details .base-info .info .labels {
  padding-top: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(90, 90, 90, 0.3);
  display: flex;
  flex-wrap: wrap;
}
.teacher-details .base-info .info .labels .text {
  width: 50%;
  padding-right: 2rem;
  font-size: 1.6rem;
  box-sizing: border-box;
  padding-bottom: 1rem;
  color: #2f2f2f;
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 56.25em) {
  .teacher-details .base-info .info .labels .text {
    width: 100%;
    padding-right: 0;
  }
}
.teacher-details .base-info .info .labels .text--phone::before {
  content: "";
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  background: url(../images/icon-phone.png) no-repeat center center/cover;
  margin-right: 0.8rem;
}
.teacher-details .base-info .info .labels .text--address::before {
  content: "";
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  background: url(../images/icon-address.png) no-repeat center center/cover;
  margin-right: 0.8rem;
}
.teacher-details .base-info .info .labels .text--email::before {
  content: "";
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  background: url(../images/icon-email.png) no-repeat center center/cover;
  margin-right: 0.8rem;
}
.teacher-details .base-info .info .desc {
  padding-top: 3rem;
  font-size: 1.6rem;
  color: #2f2f2f;
  line-height: 1.6;
}
.teacher-details .details-info {
  border: 1px solid #E5E5E5;
  box-shadow: 0px 0px 8px 1px rgba(0, 0, 0, 0.05);
}
.teacher-details .details-info h3 {
  display: flex;
  align-items: center;
  height: 5rem;
  background: #2555CF;
  padding-left: 3rem;
  font-size: 2rem;
  font-weight: bold;
  color: #fff;
  position: relative;
}
.teacher-details .details-info h3::before {
  content: "";
  display: block;
  width: 4px;
  height: 23px;
  background: #BE0404;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  left: 1rem;
}
.teacher-details .details-info h3:not(:first-child) {
  margin-top: 3rem;
}
.teacher-details .details-info p {
  padding: 1rem 2rem;
  font-size: 1.6rem;
  color: #2f2f2f;
}
