﻿@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: 70em) {
  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;
}
@media only screen and (max-width: 70em) {
  body {
    padding-top: 8rem;
  }
}
@media only screen and (max-width: 37.5em) {
  body {
    padding-top: 6rem;
  }
}

::selection {
  background-color: #1563B0;
  color: #ffffff;
}

body {
  font-family: fontNormal;
  font-weight: 400;
  /*font-size: 16px;*/
  line-height: 1.7;
  color: #777;
}

h1,
h2,
h3,
h4 {
  font-family: fontHeavy;
}

.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-box {
  display: flex;
  justify-content: space-between;
  padding-bottom: 3rem;
  position: relative;
}

.heading {
  position: relative;
}
.heading::before {
  content: "";
  display: block;
  width: 23.4rem;
  height: 6.7rem;
  background: url(../images/heading-bg.png) no-repeat center center/cover;
  position: absolute;
  left: 0;
  bottom: 1.8rem;
  z-index: 0;
}
.heading .iconfont {
  font-size: 3.2rem;
  color: #1563B0;
}
.heading__text {
  font-size: 3.2rem;
  color: #2f2f2f;
  font-weight: 600;
  margin-left: 0.5rem;
  line-height: 1;
}

.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);
}

.test-blank {
  height: 200px;
  background-color: red;
}

.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: #1563B0;
}
.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;
  cursor: pointer;
}
.more-button:hover {
  color: #1563B0;
  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;
}

.research-card {
  position: relative;
  transition: all 0.3s ease-in-out;
  border: 1px solid #F2F6FC;
  background-color: #fff;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.12), 0 0 6px rgba(0, 0, 0, 0.04);
}
.research-card:hover {
  transform: translateY(-1rem);
}
@media only screen and (min-width: 56.25em) {
  .research-card:hover .research-card__title {
    color: #1563B0;
    font-weight: 600;
  }
}
.research-card__info {
  padding: 5rem 2rem 2rem 2rem;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.research-card__date {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  background-color: #DD2400;
  color: #fff;
  font-family: Times New Roman;
  position: absolute;
  left: 2rem;
  top: 0;
  transform: translateY(-50%);
}
.research-card__date .day {
  font-size: 3rem;
  line-height: 1;
  margin-bottom: 4px;
}
.research-card__date .year {
  font-size: 1.4rem;
  line-height: 1;
}
.research-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: 1.6rem;
  color: #2f2f2f;
  line-height: 2.5rem;
  height: 5rem;
}
.research-card__details {
  font-size: 1.2rem;
  color: #333;
  font-weight: 600;
  margin-top: 2rem;
  position: relative;
}
.research-card__details::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-left: 10px solid #DD2400;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  position: absolute;
  left: 3rem;
  top: 50%;
  transform: translateY(-50%);
}
.research-card__link {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
}

.class-card {
  padding: 2.5rem 3rem;
  position: relative;
  background-color: #F9F9F9;
  border: 1px solid #F2F6FC;
  transition: all 0.3s ease-in-out;
}
@media only screen and (min-width: 56.25em) {
  .class-card:hover {
    box-shadow: 0px 16px 28px 4px rgba(33, 33, 33, 0.35);
    transform: translateY(-2rem);
  }
  .class-card:hover::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 3px;
    background-color: #1563B0;
  }
}
@media only screen and (min-width: 56.25em) {
  .class-card:hover .class-card__title {
    color: #1563B0;
    font-weight: 600;
  }
}
.class-card__date {
  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: 2rem;
  color: #1563B0;
  font-family: Times New Roman;
  font-weight: 400;
}
.class-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: 1.6rem;
  color: #2f2f2f;
  line-height: 2.8rem;
  height: 5.6rem;
  margin-top: 1rem;
}
.class-card__info {
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid #F2F6FC;
}
.class-card__info-item {
  display: flex;
}
.class-card__info-item p {
  display: flex;
}
.class-card__info-item p .s1 {
  width: 5.6rem;
  font-style: normal;
}
.class-card__info-item p .s2 {
  flex: 1;
  font-style: normal;
}
.class-card__info-item:first-child {
  margin-bottom: 1rem;
}
.class-card__info-item:first-child p .s2 {
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
}
.class-card__info-item:last-child p {
  height: 4.4rem;
}
.class-card__info-item:last-child p .s2 {
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}
.class-card__info-item span {
  flex: none;
  width: 22px;
  height: 27px;
  margin-right: 0.6rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8rem;
  color: #1563B0;
}
.class-card__info-item p {
  font-size: 1.4rem;
  line-height: 2.2rem;
  color: #5A5A5A;
}
.class-card__link {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
}

.notice-card {
  display: flex;
  padding: 1rem 2rem;
  position: relative;
  background-color: #F9F9F9;
  border: 1px solid #F2F6FC;
  transition: all 0.3s ease-in-out;
}
@media only screen and (min-width: 56.25em) {
  .notice-card:hover {
    box-shadow: 0px 16px 28px 4px rgba(33, 33, 33, 0.35);
    transform: translateY(-2rem);
  }
  .notice-card:hover::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 3px;
    background-color: #1563B0;
  }
}
@media only screen and (min-width: 56.25em) {
  .notice-card:hover .notice-card__title {
    color: #1563B0;
  }
}
@media only screen and (min-width: 56.25em) {
  .notice-card:hover .notice-card__tags span {
    background-color: #1563B0;
    color: #ffffff;
  }
}
.notice-card__date {
  color: #1563B0;
  font-family: Times New Roman;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.notice-card__day {
  font-size: 4rem;
  font-weight: 600;
  line-height: 1;
}
.notice-card__month {
  font-size: 1.8rem;
  font-weight: 600;
}
.notice-card__info {
  padding-left: 2rem;
  margin-left: 2rem;
  border-left: 1px solid #F2F6FC;
  display: flex;
  align-items: center;
}
.notice-card__tags {
  display: none;
  margin-bottom: 1rem;
}
.notice-card__tags span {
  padding: 0 2rem;
  height: 2.4rem;
  line-height: 2.7rem;
  border: 1px solid #1563B0;
  font-size: 1.4rem;
  color: #1563B0;
  border-radius: 1.2rem;
  transition: all 0.3s ease-in-out;
}
.notice-card__tags span:not(:last-child) {
  margin-right: 1rem;
}
.notice-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: 1.6rem;
  color: #2f2f2f;
}
.notice-card__link {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
}

.news-image-card {
  position: relative;
}
@media only screen and (min-width: 56.25em) {
  .news-image-card:hover .news-image-card__cover img {
    transform: scale(1.05);
  }
}
.news-image-card__cover {
  height: 43rem;
  overflow: hidden;
}
@media only screen and (max-width: 56.25em) {
  .news-image-card__cover {
    height: 35rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .news-image-card__cover {
    height: 20rem;
  }
}
.news-image-card__cover img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease-in-out;
}
.news-image-card__info {
  padding: 1.5rem 2rem;
  background-color: rgba(255, 255, 255, 0.4);
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}
.news-image-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;
  font-size: 1.6rem;
  color: #2f2f2f;
  transition: all 0.3s ease-in-out;
}
.news-image-card__date {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.5rem 2rem;
  background: #1563B0;
  font-size: 1.6rem;
  color: #ffffff;
  font-family: Times New Roman;
  position: absolute;
  left: 0;
  top: 1.8rem;
}
.news-image-card__link {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
}

.news-card {
  padding: 1rem 0;
  position: relative;
}
@media only screen and (min-width: 56.25em) {
  .news-card:hover .news-card__title {
    color: #DD2400;
  }
}
@media only screen and (min-width: 56.25em) {
  .news-card:hover .news-card__date {
    color: #DD2400;
  }
}
.news-card--new .news-card__title::before {
  content: "new";
  text-transform: uppercase;
  display: inline-block;
  padding: 1px 6px;
  border-radius: 100px;
  background-color: #DD2400;
  font-size: 1.2rem;
  color: #ffffff;
  margin-right: 1rem;
}
.news-card--hot .news-card__title {
  color: #DD2400;
}
.news-card--hot .news-card__date {
  color: #DD2400;
}
.news-card--hot .news-card__title::before {
  content: "Hot";
  text-transform: uppercase;
  display: inline-block;
  padding: 1px 6px;
  border-radius: 100px;
  background-color: #DD2400;
  font-size: 1.2rem;
  color: #ffffff;
  margin-right: 1rem;
}
.news-card__heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.news-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;
  font-size: 1.6rem;
  font-weight: 400;
  color: #2f2f2f;
  transition: all 0.3s ease-in-out;
}
.news-card__summary {
  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;
  font-weight: 400;
  color: #5A5A5A;
  margin-top: 1rem;
}
.news-card__date {
  padding-left: 2rem;
  font-size: 1.4rem;
  font-weight: 400;
  color: #5A5A5A;
  opacity: 0.8;
  font-family: Times New Roman;
  transition: all 0.3s ease-in-out;
}
.news-card__link {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
}

.inner-news-card {
  display: flex;
  justify-content: space-between;
  position: relative;
}
@media only screen and (max-width: 56.25em) {
  .inner-news-card {
    display: block;
  }
}
@media only screen and (min-width: 56.25em) {
  .inner-news-card:hover .inner-news-card__left p {
    color: #1563B0;
  }
}
@media only screen and (min-width: 56.25em) {
  .inner-news-card:hover .inner-news-card__left span {
    color: #1563B0;
    border: 1px solid #1563B0;
  }
}
@media only screen and (min-width: 56.25em) {
  .inner-news-card:hover .inner-news-card__right h2,
.inner-news-card:hover .inner-news-card__right p {
    color: #1563B0;
  }
}
.inner-news-card__left {
  flex: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding-right: 7rem;
  position: relative;
}
@media only screen and (max-width: 56.25em) {
  .inner-news-card__left {
    padding-right: 0;
    flex-direction: row;
  }
}
.inner-news-card__left::after {
  content: "";
  width: 5rem;
  height: 2px;
  background-color: #F2F6FC;
  position: absolute;
  right: 0;
  top: 2.5rem;
}
@media only screen and (max-width: 56.25em) {
  .inner-news-card__left::after {
    display: none;
  }
}
.inner-news-card__left p {
  font-size: 3rem;
  color: #2f2f2f;
}
.inner-news-card__left span {
  font-size: 1.8rem;
  font-weight: 600;
  color: #2f2f2f;
  width: 3.6rem;
  height: 3.6rem;
  border-radius: 50%;
  border: 1px solid transparent;
  text-align: center;
}
.inner-news-card__medium {
  flex: none;
  padding-left: 2.4rem;
}
@media only screen and (max-width: 56.25em) {
  .inner-news-card__medium {
    padding-left: 0;
    margin-bottom: 1rem;
  }
}
.inner-news-card__medium .cover {
  width: 18rem;
  height: 10rem;
}
@media only screen and (max-width: 56.25em) {
  .inner-news-card__medium .cover {
    width: auto;
    height: 20rem;
  }
}
.inner-news-card__medium .cover img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.inner-news-card__right {
  flex: 1;
  padding-left: 2.4rem;
  height: 10rem;
}
@media only screen and (max-width: 56.25em) {
  .inner-news-card__right {
    padding-left: 0;
  }
}
.inner-news-card__right h2 {
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  font-size: 1.6rem;
  color: #2f2f2f;
  margin-bottom: 2.5rem;
}
@media only screen and (max-width: 56.25em) {
  .inner-news-card__right h2 {
    margin-bottom: 1rem;
  }
}
.inner-news-card__right 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: #5A5A5A;
}
.inner-news-card__link {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
}

.teacher-card {
  position: relative;
  display: flex;
}
.teacher-card__cover {
  flex: none;
  width: 15rem;
  height: 20rem;
}
.teacher-card__info {
  flex: 1;
  padding-left: 3.5rem;
}
.teacher-card__title {
  font-size: 2.4rem;
  color: #1563B0;
  margin-bottom: 1.2rem;
}
.teacher-card__tag {
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  font-size: 1.6rem;
  color: #1563B0;
  margin-bottom: 0.8rem;
}
.teacher-card__more-box {
  display: flex;
  align-items: center;
}
.teacher-card__more-box::before {
  content: "";
  height: 1px;
  flex: 1;
  border-bottom: 1px solid #1563B0;
}
.teacher-card__more {
  display: block;
  padding: 0 2rem;
  border-radius: 100px;
  line-height: 3rem;
  background: #1563B0;
  font-size: 1.4rem;
  color: #ffffff;
}
.teacher-card__link {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
}

.inner-video-card {
  position: relative;
}
.inner-video-card:hover .inner-video-card__info .text-bg {
  background: linear-gradient(transparent, #DD2400);
}
.inner-video-card__info {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  background-color: rgba(0, 0, 0, 0.3);
}
.inner-video-card__info .text-bg {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 4rem 2.5rem 2rem 2.5rem;
  background: linear-gradient(transparent, #1563B0);
}
.inner-video-card__info .text-bg h2 {
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  font-size: 1.6rem;
  color: #ffffff;
  line-height: 1;
}
.inner-video-card__link {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
}

.sq-card {
  position: relative;
}
.sq-card__cover {
  height: 19rem;
}
.sq-card__cover img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sq-card__info {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.5rem;
  background-color: rgba(0, 0, 0, 0.3);
}
.sq-card__info .title {
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  font-size: 1.4rem;
  color: #fff;
  line-height: 1;
}
.sq-card:hover .sq-card__date {
  background-color: #DD2400;
}
.sq-card__date {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.3rem 1.5rem;
  background: #1563B0;
  font-size: 1.4rem;
  color: #ffffff;
  font-family: Times New Roman;
  position: absolute;
  left: 0;
  top: 1.8rem;
  transition: 0.3s ease-in-out;
}
.sq-card__link {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
}

.jz-card {
  position: relative;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #DCDFE6;
}
.jz-card:hover .jz-card__date::after {
  border-right: 1px solid #DD2400;
}
.jz-card:hover .jz-card__date .time {
  color: #DD2400;
}
.jz-card:hover .jz-card__date .day {
  color: #DD2400;
}
.jz-card__date {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 8rem;
  padding: 1.5rem 0;
  font-family: Times New Roman;
  position: relative;
}
.jz-card__date::after {
  content: "";
  display: block;
  height: 4rem;
  width: 1px;
  border-right: 1px solid #1563B0;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.jz-card__date .time {
  font-size: 3rem;
  line-height: 1;
  color: #1563B0;
}
.jz-card__date .day {
  font-size: 1.4rem;
  line-height: 1;
  margin-bottom: 4px;
  color: #5A5A5A;
}
.jz-card:hover .jz-card__info .title {
  color: #DD2400;
}
.jz-card:hover .jz-card__info .tags {
  color: #DD2400;
}
.jz-card__info {
  flex: 1;
  padding-left: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.jz-card__info .title {
  font-size: 1.6rem;
  color: #2f2f2f;
  margin-bottom: 0.3rem;
}
.jz-card__info .tags {
  display: flex;
  color: #777;
}
.jz-card__info .tags .address {
  font-size: 1.2rem;
  color: currentColor;
}
.jz-card__info .tags .address::before {
  content: "";
  font-family: "iconfont";
  content: "\e601";
}
.jz-card__info .tags .teacher {
  font-size: 1.2rem;
  color: currentColor;
  margin-left: 1rem;
}
.jz-card__info .tags .teacher::before {
  content: "";
  font-family: "iconfont";
  content: "\e622";
}
.jz-card__link {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
}

.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: 82vw;
  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;
  padding: 0 3rem;
  background-color: rgba(20, 20, 20, 0.5);
}
@media only screen and (max-width: 56.25em) {
  .custom-breadcrumb {
    position: absolute;
    right: 0;
    top: -62px;
    width: 100%;
    text-align: right;
  }
}
.custom-breadcrumb .title {
  font-size: 2.4rem;
  color: #ffffff;
  font-weight: 900;
}
.custom-breadcrumb .breadcrumb-navs {
  display: flex;
  align-items: center;
}
.custom-breadcrumb .breadcrumb-navs .pos {
  font-size: 1.4rem;
  color: #ffffff;
  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: #ffffff;
  margin-right: 4px;
}
.custom-breadcrumb .breadcrumb-navs nav {
  display: flex;
  align-items: center;
}
.custom-breadcrumb .breadcrumb-navs nav a {
  font-size: 1.4rem;
  color: #ffffff;
  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: #1563B0;
}
.custom-breadcrumb .breadcrumb-navs nav a:hover::before {
  color: #ffffff;
}

.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: #1563B0;
  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-input {
  display: flex;
  align-items: center;
}
.search-input__input {
  width: 20rem;
  padding: 0 2rem;
  height: 4rem;
  background: #F1F1F1;
  opacity: 1;
  border: none;
  outline: none;
  border-radius: 2rem 0 0 2rem;
}
.search-input__button {
  transition: all 0.3s ease-in-out;
  position: relative;
  display: block;
  width: 5rem;
  height: 4rem;
  background-color: #1563B0;
  border-radius: 0 2rem 2rem 0;
}
.search-input__button:hover {
  background-color: #1563B0;
  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;
}

.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: #1563B0;
}
.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: 0.5rem;
  font-size: 1.4rem;
  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: #1563B0;
  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 #1563B0;
  border-radius: 50%;
  background-color: #1563B0;
  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: #1563B0;
  border: 3px solid #1563B0;
}

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: #1563B0;
}
@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: #1563B0;
  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: #1563B0;
}
@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: #1563B0;
}
@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: #1563B0;
}
@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: #1563B0;
  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 {
  max-width: 82vw;
  margin: 0 auto;
}
@media only screen and (max-width: 56.25em) {
  .container {
    padding: 0 3rem;
    max-width: 100vw;
  }
}

.row {
  max-width: 82vw;
  margin: 0 auto;
}
.row::after {
  content: "";
  display: table;
  clear: both;
}
.row [class^=col-] {
  float: left;
}
.row [class^=col-]:not(:last-child) {
  margin-right: 6rem;
}
@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 .col-1-of-2 {
  width: calc((100% - 6rem) / 2);
}
.row .col-1-of-3 {
  width: calc((100% - 2 * 6rem) / 3);
}
.row .col-2-of-3 {
  width: calc(2 * ((100% - 2 * 6rem) / 3) + 6rem);
}
.row .col-1-of-4 {
  width: calc((100% - 3 * 6rem) / 4);
}
.row .col-2-of-4 {
  width: calc(2 * ((100% - 3 * 6rem) / 4) + 6rem);
}
.row .col-3-of-4 {
  width: calc(3 * ((100% - 3 * 6rem) / 4) + 2 * 6rem);
}
.row .col-1-of-5 {
  width: calc((100% - 4 * 6rem) / 5);
}
.row .col-2-of-5 {
  width: calc(2 * ((100% - 5 * 6rem) / 5) + 6rem);
}
.row .col-3-of-5 {
  width: calc(3 * ((100% - 5 * 6rem) / 5) + 2 * 6rem);
}
.row .col-4-of-5 {
  width: calc(4 * ((100% - 4 * 6rem) / 5) + 3 * 6rem);
}

.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%;
  }
}

@media only screen and (max-width: 70em) {
  .header {
    position: fixed;
    top: 0;
    right: 0;
    bottom: auto;
    left: 0;
    z-index: 99999;
  }
}
.header__top {
  height: 12rem;
  background: #192f59;
}
@media only screen and (max-width: 70em) {
  .header__top {
    height: 8rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .header__top {
    height: 6rem;
  }
}
.header__top .container {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
@media only screen and (max-width: 70em) {
  .header__top .container {
    padding: 0 0 0 10px;
  }
}
.header__logo img {
  display: block;
  width: 40rem;
  height: auto;
}
@media only screen and (max-width: 112.5em) {
  .header__logo img {
    width: 25rem;
  }
}
@media only screen and (max-width: 70em) {
  .header__logo img {
    width: 30rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .header__logo img {
    width: 20rem;
  }
}
.header__nav-open {
  width: 6rem;
  height: 6rem;
  font-size: 4rem;
  color: #ffffff;
  line-height: 6rem;
  text-align: center;
  display: none;
}
@media only screen and (max-width: 70em) {
  .header__nav-open {
    display: block;
  }
}
.header__bottom {
  background-color: #ffffff;
}
.header__bottom .container {
  position: relative;
}
@media only screen and (max-width: 70em) {
  .header__bottom {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 99999;
    background-color: #192f59;
    overflow-y: auto;
    transition: 0.3s ease-in-out;
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
}
.header__bottom.active {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.header__nav-close {
  font-size: 4rem;
  color: #ffffff;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 9999;
  display: none;
  text-align: right;
}
@media only screen and (max-width: 70em) {
  .header__nav-close {
    display: block;
  }
}

.web-menus {
  position: absolute;
  right: 0;
  top: -8.4rem;
}
@media only screen and (max-width: 70em) {
  .web-menus {
    position: relative;
    top: auto;
    right: auto;
    padding-top: 6rem;
  }
  .web-menus .popover {
    width: 100%;
  }
  .web-menus .popover__title {
    display: none;
  }
  .web-menus .popover__content {
    display: block !important;
    position: relative;
    bottom: auto;
    right: auto;
    transform: translate3d(0, 0, 0);
  }
  .web-menus .popover__content .search-input__input {
    width: 30rem;
  }
}
.web-menus > *:not(:last-child) {
  margin-right: 2.5rem;
}
.web-menus__item {
  font-size: 1.3rem;
  color: #ffffff;
  line-height: 4.6rem;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
@media only screen and (max-width: 70em) {
  .web-menus__item {
    font-size: 2rem;
    line-height: 7rem;
  }
}
.web-menus__item:hover {
  color: #DD2400;
}
.web-menus .divider {
  width: 1px;
  height: 1.5rem;
  border-left: 1px solid #ffffff;
}
@media only screen and (max-width: 70em) {
  .web-menus .divider {
    display: none;
  }
}

.web-nav__1-list {
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 70em) {
  .web-nav__1-list {
    display: block;
  }
}
.web-nav__1-item {
  list-style: none;
  position: relative;
}
@media only screen and (max-width: 70em) {
  .web-nav__1-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
}
.web-nav__1-link {
  display: block;
  padding: 0 1.8rem;
  font-size: 1.6rem;
  line-height: 5rem;
  color: #192f59;
  background: transparent;
}
@media only screen and (max-width: 70em) {
  .web-nav__1-link {
    color: #fff;
    line-height: 6rem;
    font-size: 1.8rem;
    font-weight: 600;
  }
}
.web-nav__1-link.active {
  color: #cc0000;
  background: #ffffff;
  border-bottom: 4px solid #cc0000;
}
@media only screen and (max-width: 70em) {
  .web-nav__1-link.active {
    background-color: transparent;
    color: #ffffff;
    border-bottom: none;
  }
}
.web-nav__1-open {
  display: none;
}
.web-nav__2-list {
  position: absolute;
  top: auto;
  right: 0;
  bottom: auto;
  left: 0;
  z-index: 9999;
  background-color: #ffffff;
  display: none;
  top: 5rem;
  border-top: 4px solid #DD2400;
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
}
@media only screen and (max-width: 70em) {
  .web-nav__2-list {
    display: block;
    position: static;
    background-color: transparent;
    box-shadow: none;
    border-top: none;
    padding-left: 4rem;
    display: flex;
    flex-wrap: wrap;
  }
}
.web-nav__2-item {
  list-style: none;
  position: relative;
}
@media only screen and (max-width: 70em) {
  .web-nav__2-item {
    width: 100%;
  }
}
.web-nav__2-link {
  display: block;
  text-align: center;
  font-size: 1.3rem;
  line-height: 1.6;
  color: #2f2f2f;
  padding: 0.5rem 4px;
  border-bottom: 1px solid #f9f9f9;
}
@media only screen and (max-width: 70em) {
  .web-nav__2-link {
    color: #ffffff;
    line-height: 5rem;
    border-bottom: none;
    text-align: left;
  }
}
.web-nav__2-link:hover {
  color: #ffffff;
  font-weight: 600;
  background: #1563B0;
}
@media only screen and (max-width: 70em) {
  .web-nav__2-link:hover {
    color: #ffffff;
    background: transparent;
    font-weight: 400;
  }
}
.web-nav__2-link--arrow::after {
  content: "";
  font-family: "iconfont";
  content: "\e63d";
}
@media only screen and (max-width: 70em) {
  .web-nav__2-link--arrow::after {
    display: none;
  }
}
.web-nav__2-open {
  display: none;
}
.web-nav__3-list {
  position: absolute;
  top: 0;
  right: auto;
  bottom: auto;
  left: 100%;
  z-index: 9999;
  background-color: #ffffff;
  display: none;
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
}
@media only screen and (max-width: 70em) {
  .web-nav__3-list {
    position: static;
    display: block;
    background-color: transparent;
    box-shadow: none;
    padding-left: 2rem;
  }
}
.web-nav__3-item {
  list-style: none;
  position: relative;
}
.web-nav__3-link {
  display: block;
  padding: 0.5rem 1rem;
  line-height: 1.6;
  font-size: 1.3rem;
  color: #2f2f2f;
  white-space: nowrap;
}
@media only screen and (max-width: 70em) {
  .web-nav__3-link {
    color: #ffffff;
    line-height: 5rem;
  }
}
.web-nav__3-link:hover {
  color: #ffffff;
  font-weight: 600;
  background: #1563B0;
}
.web-nav__3-link--arrow::after {
  content: "";
  font-family: "iconfont";
  content: "\e63d";
}
@media only screen and (max-width: 70em) {
  .web-nav__3-link--arrow::after {
    display: none;
  }
}
.web-nav__4-open {
  display: none;
}
.web-nav__4-list {
  position: absolute;
  top: 0;
  right: auto;
  bottom: auto;
  left: 100%;
  z-index: 9999;
  background-color: #ffffff;
  display: none;
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
}
@media only screen and (max-width: 70em) {
  .web-nav__4-list {
    position: static;
    display: block;
    background-color: transparent;
    box-shadow: none;
    padding-left: 2rem;
  }
}
.web-nav__4-link {
  display: block;
  padding: 0.5rem 1rem;
  line-height: 1.6;
  font-size: 1.3rem;
  color: #2f2f2f;
  white-space: nowrap;
}
@media only screen and (max-width: 70em) {
  .web-nav__4-link {
    color: #ffffff;
    line-height: 5rem;
  }
}
.web-nav__4-link:hover {
  color: #ffffff;
  font-weight: 600;
  background: #1563B0;
}
.web-nav__4-link--arrow::after {
  content: "";
  font-family: "iconfont";
  content: "\e63d";
}
@media only screen and (max-width: 70em) {
  .web-nav__4-link--arrow::after {
    display: none;
  }
}

.footer__main {
  padding: 6rem 0;
  background: url(../images/footer-bg.png) no-repeat center center/cover;
}
.footer__heading {
  display: flex;
  font-size: 2.4rem;
  font-weight: 600;
  color: #ffffff;
}
.footer__heading .iconfont {
  font-size: 2.8rem;
  margin-right: 1rem;
}
.footer__heading p {
  position: relative;
}
.footer__heading p::after {
  content: "";
  display: block;
  height: 1.5rem;
  background: #FFFFFF;
  opacity: 0.3;
  border-radius: 1000px;
  position: absolute;
  left: -5px;
  right: -5px;
  top: 2.6rem;
}
.footer__fast-links {
  display: flex;
  flex-wrap: wrap;
  margin-top: 5rem;
  border-right: 1px solid rgba(242, 246, 252, 0.4);
}
@media only screen and (max-width: 56.25em) {
  .footer__fast-links {
    border-right: none;
  }
}
.footer__fast-links a {
  width: 33.33%;
  font-size: 1.6rem;
  color: #ffffff;
  margin-bottom: 1rem;
}
.footer__fast-links a::before {
  content: "路";
  margin-right: 0.5rem;
}
.footer__qr {
  margin-top: 3rem;
}
.footer__qr img {
  display: block;
  width: 13rem;
  height: 13rem;
}
@media only screen and (max-width: 56.25em) {
  .footer__qr img {
    margin: 0 auto;
  }
}
.footer__selector {
  display: flex;
  flex-wrap: wrap;
  margin: calc(-3rem / 2);
  padding-right: 2rem;
  margin-top: 3rem;
  border-right: 1px solid rgba(242, 246, 252, 0.4);
}
.footer__selector > .item {
  list-style: none;
  padding: calc(3rem / 2);
  width: calc((1 / 2) * 100%);
}
@media only screen and (max-width: 70em) {
  .footer__selector > .item {
    width: calc((1 / 1) * 100%);
  }
}
@media only screen and (max-width: 56.25em) {
  .footer__selector > .item {
    width: calc((1 / 1) * 100%);
  }
}
@media only screen and (max-width: 56.25em) {
  .footer__selector {
    border-right: none;
    padding-right: 0;
  }
}
.footer__copyright {
  padding: 2.5rem;
  background-color: #00204E;
}
.footer__copyright p {
  max-width: 70rem;
  font-size: 1.4rem;
  line-height: 2;
  color: #ffffff;
  text-align: center;
  margin: 0 auto;
}

.inner-page {
  top: -5.8rem;
  position: relative;
  padding-bottom: 2rem;
}
@media only screen and (max-width: 56.25em) {
  .inner-page {
    top: 2rem;
  }
}
.inner-page__wrapper {
  display: flex;
}
.inner-page__left {
  flex: none;
}
@media only screen and (max-width: 56.25em) {
  .inner-page__left {
    display: none;
  }
}
.inner-page__medium {
  flex: 1;
  overflow: hidden;
}
.inner-page__medium--bottom {
  padding-left: 4rem;
}
.inner-page__medium--bottom.pl-0 {
  padding-left: 0;
}
@media only screen and (max-width: 56.25em) {
  .inner-page__medium--bottom {
    padding-left: 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;
  top: -3.2rem;
}
@media only screen and (max-width: 70em) {
  .side-bar {
    width: 24rem;
  }
}
.side-bar__heading {
  line-height: 9rem;
  padding-left: 4rem;
  background: #1563B0;
  font-size: 26px;
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 2rem;
  position: relative;
}
.side-bar__heading::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
  bottom: -1.4rem;
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-top: 1.6rem solid #1563B0;
  border-left: 1.4rem solid transparent;
  border-right: 1.4rem solid transparent;
}
.side-bar__footer-img {
  display: block;
  width: 100%;
  margin-top: 30px;
}

.side-nav__1-item {
  list-style: none;
  position: relative;
}
.side-nav__1-item.active > .side-nav__2-list {
  display: block;
}
.side-nav__1-item.active > .side-nav__1-link {
  color: #ffffff;
  font-weight: 600;
  background: #1D6FC0 url(../images/side-nav-bg.png) no-repeat 100% 0/contain;
}
.side-nav__1-item.active > .side-nav__1-link::before {
  background-color: #ffffff;
}
.side-nav__1-item.active > .side-nav__1-link::after {
  content: "\e6b5";
}
.side-nav__2-item.active > .side-nav__3-list {
  display: block;
}
.side-nav__1-link {
  position: relative;
  display: block;
  padding: 0 2rem;
  padding-left: 4rem;
  font-size: 1.8rem;
  line-height: 6.8rem;
  color: #2f2f2f;
  background: #E2EAF3;
  border-bottom: 1px solid #ffffff;
}
.side-nav__1-link::before {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  left: 2rem;
  content: "";
  display: inline-block;
  width: 3px;
  height: 1.8rem;
  background-color: #1563B0;
}
.side-nav__1-link::after {
  content: "";
  font-family: "iconfont";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  right: 2rem;
  content: "\e829";
}
.side-nav__1-open {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.side-nav__2-list {
  background-color: #ffffff;
  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: #1563B0;
  font-weight: 600;
  background: rgb(167, 196, 227);
}
.side-nav__2-item.active > .side-nav__2-link::after {
  opacity: 1;
}
.side-nav__2-link {
  display: block;
  padding: 0.5rem 2rem;
  padding-left: 5rem;
  font-size: 1.6rem;
  line-height: 5.4rem;
  color: #2f2f2f;
  white-space: nowrap;
  background-color: rgb(196, 220, 238);
  border-bottom: 1px solid #ffffff;
}
.side-nav__2-link::after {
  content: "";
  font-family: "iconfont";
  position: absolute;
  right: 0;
  top: 0.5rem;
  right: 2rem;
  content: "\e63d";
  opacity: 0;
}
.side-nav__3-link {
  display: block;
  padding: 1rem 2rem 1rem 6rem;
  font-size: 1.6rem;
  line-height: 3rem;
  color: #ffffff;
  white-space: nowrap;
  background-color: rgba(21, 99, 176, 0.6);
}
.side-nav__3-link:hover {
  color: #ffffff;
  font-weight: 600;
  background: #1563B0;
}

.section-banner {
  position: relative;
  overflow: hidden;
}
.section-banner .swiper-slide img {
  display: block;
  width: 100%;
}
.section-banner .swiper-pagination {
  bottom: 2.5rem;
}
.section-banner .swiper-pagination-bullet {
  width: 1.2rem;
  height: 1.2rem;
  border: 2px solid #ffffff;
  opacity: 1;
  background-color: #ffffff;
  margin: 0 0.6rem !important;
}
.section-banner .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #1563B0;
}
.section-banner__button {
  display: none;
}
.section-banner__button .iconfont {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 6rem;
  color: #ffffff;
  opacity: 0.8;
  cursor: pointer;
}
.section-banner__button .iconfont:hover {
  opacity: 1;
}
.section-banner__button--prev {
  left: 0;
  text-align: right;
}
.section-banner__button--prev .iconfont {
  left: 65%;
}
.section-banner__button--next {
  right: 0;
  text-align: left;
}
.section-banner__button--next .iconfont {
  left: 35%;
}

.section-news {
  padding: 5rem 0 0 0;
}
.section-news__top {
  margin-bottom: 1rem;
  border-bottom: 1px solid #DCDFE6;
}
.section-news__item {
  list-style: none;
  border-bottom: 1px solid #DCDFE6;
}
.section-news__left {
  position: relative;
}
.section-news img {
  display: block;
  width: 100%;
}
.section-news .thum-swiper {
  position: relative;
  padding: 7px 3rem;
  background-color: #000000;
}
.section-news .thum-swiper__button {
  width: 3rem;
  height: 3rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  bottom: 0;
  z-index: 1000;
  transition: all 0.3s ease-in-out;
}
@media only screen and (max-width: 56.25em) {
  .section-news .thum-swiper__button {
    display: none;
  }
}
.section-news .thum-swiper__button .iconfont {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2rem;
  color: #ffffff;
  opacity: 0.8;
  cursor: pointer;
}
.section-news .thum-swiper__button .iconfont:hover {
  opacity: 1;
}
.section-news .thum-swiper__button--prev {
  left: 0;
}
.section-news .thum-swiper__button--next {
  right: 0;
}
.section-news .mySwiper {
  padding: 2px;
  overflow: hidden;
}
.section-news .mySwiper .swiper-slide-thumb-active {
  outline: 2px solid #1563B0;
}

.section-research {
  padding: 5rem 0;
}
.section-research__list {
  display: flex;
  flex-wrap: wrap;
  margin: calc(-3rem / 2);
}
.section-research__list > .item {
  list-style: none;
  padding: calc(3rem / 2);
  width: calc((1 / 4) * 100%);
}
@media only screen and (max-width: 70em) {
  .section-research__list > .item {
    width: calc((1 / 2) * 100%);
  }
}
@media only screen and (max-width: 56.25em) {
  .section-research__list > .item {
    width: calc((1 / 1) * 100%);
  }
}

.section-class {
  padding: 5rem 0;
}

.section-notice {
  padding: 5rem 0;
}
@media only screen and (max-width: 56.25em) {
  .section-notice__list-wrapper {
    padding-top: 8rem;
  }
}

.section-websit {
  padding-top: 5rem;
  padding-bottom: 8rem;
}

.home-swiper {
  position: relative;
}
.home-swiper .swiper {
  overflow: visible;
  overflow-x: hidden;
  position: static;
  padding: 4rem 0;
}
.home-swiper .swiper .swiper-slide a {
  display: block;
}
.home-swiper .swiper .swiper-slide img {
  display: block;
  width: 100%;
}
.home-swiper .swiper .swiper-pagination {
  bottom: -5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.home-swiper .swiper .swiper-pagination .swiper-pagination-bullet {
  width: 2.7rem;
  height: 2.2rem;
  opacity: 1;
  background: url(../images/fish.png) no-repeat center center/cover;
  margin: 0 1rem !important;
  transition: all 0.3s ease-in-out;
}
.home-swiper .swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 3.4rem;
  height: 2.9rem;
  background: url(../images/fish-light.png) no-repeat center center/cover;
}
.home-swiper__button {
  width: 5rem;
  height: 5rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  bottom: 0;
  z-index: 999;
}
@media only screen and (max-width: 56.25em) {
  .home-swiper__button {
    display: none;
  }
}
.home-swiper__button .iconfont {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2rem;
  color: #1563B0;
  opacity: 0.8;
  cursor: pointer;
}
.home-swiper__button .iconfont:hover {
  opacity: 1;
}
.home-swiper__button--prev {
  left: -6rem;
  text-align: right;
}
.home-swiper__button--next {
  right: -6rem;
  text-align: left;
}

.website-tab__title {
  display: flex;
  position: absolute;
  left: 26rem;
  top: 1.2rem;
  z-index: 99999;
}
@media only screen and (max-width: 70em) {
  .website-tab__title {
    left: 0;
    top: auto;
    bottom: -4rem;
  }
}
.website-tab__title p {
  padding: 0 2rem;
  font-size: 1.4rem;
  line-height: 3.2rem;
  color: #1563B0;
  background-color: #EBEBEB;
  cursor: pointer;
}
.website-tab__title p.active {
  background-color: #1563B0;
  color: #ffffff;
  box-shadow: 0px 5px 21px 0px rgba(0, 0, 0, 0.34);
}
.website-tab__title p:not(:last-child) {
  margin-right: 1.2rem;
}
.website-tab__list > li {
  list-style: none;
  display: none;
}
.website-tab__list > li.active {
  display: block;
}

.side-menus {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9999;
  background-color: #F7F7F7;
  box-shadow: 0px 0px 14px 2px rgba(0, 0, 0, 0.21);
  padding-top: 3rem;
}
@media only screen and (max-width: 56.25em) {
  .side-menus {
    display: none;
  }
}
.side-menus::after {
  content: "";
  display: block;
  width: 9rem;
  height: 6rem;
  background: url(../images/side-icon.png) no-repeat center center/cover;
  position: absolute;
  right: 0;
  top: 0;
  transform: translateY(-50%);
}
.side-menus__link {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 7rem;
  height: 7rem;
  background-color: #F7F7F7;
}
.side-menus__link .iconfont {
  font-size: 3rem;
  line-height: 1.3;
  color: #1D6FC0;
}
.side-menus__link .text {
  font-size: 1.2rem;
  line-height: 1.2;
  color: #182131;
}
.side-menus__link:hover, .side-menus__link.active {
  background-color: #1D6FC0;
}
.side-menus__link:hover .iconfont, .side-menus__link.active .iconfont {
  color: #ffffff;
}
.side-menus__link:hover .text, .side-menus__link.active .text {
  color: #ffffff;
}

.section-sq__list {
  display: flex;
  flex-wrap: wrap;
  margin: calc(-1rem / 2);
}
.section-sq__list > .item {
  list-style: none;
  padding: calc(1rem / 2);
  width: calc((1 / 2) * 100%);
}
@media only screen and (max-width: 70em) {
  .section-sq__list > .item {
    width: calc((1 / 2) * 100%);
  }
}
@media only screen and (max-width: 56.25em) {
  .section-sq__list > .item {
    width: calc((1 / 1) * 100%);
  }
}

.section-jz__list .item {
  list-style: none;
}
.notice-list {
  display: flex;
  flex-wrap: wrap;
  margin: calc(-3rem / 2);
}
.notice-list > .item {
  list-style: none;
  padding: calc(3rem / 2);
  width: calc((1 / 3) * 100%);
}
@media only screen and (max-width: 70em) {
  .notice-list > .item {
    width: calc((1 / 2) * 100%);
  }
}
@media only screen and (max-width: 56.25em) {
  .notice-list > .item {
    width: calc((1 / 1) * 100%);
  }
}

.inner-news-list .item {
  list-style: none;
  padding: 4rem 0;
  border-bottom: 1px solid #F2F6FC;
}

.static-banner img {
  display: block;
  width: 100%;
}

.article-details {
  padding: 2rem 0;
  background-color: #ffffff;
}
@media only screen and (max-width: 56.25em) {
  .article-details {
    padding: 2rem 0;
  }
}
.article-details__heading {
  padding: 0 0 2rem 0;
  font-size: 2.4rem;
  font-weight: 600;
  color: #1563B0;
  text-align: center;
}
@media only screen and (max-width: 56.25em) {
  .article-details__heading {
    font-size: 2.2rem;
  }
}
.article-details__describe {
  display: flex;
  justify-content: center;
  padding: 16px;
  border-top: 1px solid rgba(20, 20, 20, 0.35);
  border-bottom: 1px solid rgba(20, 20, 20, 0.35);
  margin-bottom: 20px;
}
@media only screen and (max-width: 56.25em) {
  .article-details__describe {
    padding: 10px 0;
    margin-bottom: 14px;
  }
}
.article-details__tag {
  font-size: 12px;
  color: #5A5A5A;
  margin: 0 1rem;
}
@media only screen and (max-width: 56.25em) {
  .article-details__tag {
    font-size: 10px;
    color: #5A5A5A;
    margin: 0 5px;
  }
}
.article-details__content p {
  font-size: 1.6rem;
  line-height: 1.8;
  margin-bottom: 10px;
}
.article-details__content img {
  display: inline-block;
  max-width: 100%;
  margin: 20px 0;
}

.article-details-pagination {
  padding: 20px 40px;
  border-top: 1px solid #e7e7e7;
}
@media only screen and (max-width: 56.25em) {
  .article-details-pagination {
    display: block;
    padding: 10px 0;
  }
}
.article-details-pagination__button {
  display: block;
  padding: 10px 0;
  font-size: 16px;
  color: #1563B0;
}

.inner-publish {
  width: 32rem;
  margin-top: 4rem;
}
@media only screen and (max-width: 56.25em) {
  .inner-publish {
    display: none;
  }
}
.inner-publish__heading {
  line-height: 5.5rem;
  padding-left: 2rem;
  background-color: #1563B0;
  font-size: 2rem;
  color: #ffffff;
}
.inner-publish__list {
  padding: 2rem;
  background-color: #EDEDED;
}
.inner-publish__list .item {
  list-style: none;
}
.inner-publish__list .item:not(:last-child) {
  margin-bottom: 2rem;
}
.inner-publish__list .item a {
  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: #2f2f2f;
  margin-bottom: 1rem;
}
.inner-publish__list .item span {
  display: flex;
  align-items: center;
  font-size: 1.4rem;
  color: #5A5A5A;
}
.inner-publish__list .item span::after {
  content: "";
  flex: 1;
  height: 1px;
  border-bottom: 1px solid #F2F6FC;
  margin-left: 1rem;
}

.article-pagination {
  margin-top: 3rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media only screen and (max-width: 56.25em) {
  .article-pagination {
    width: 100%;
    display: flex;
    justify-content: space-between;
  }
}
@media only screen and (max-width: 37.5em) {
  .article-pagination {
    width: 100%;
    display: block;
  }
}
.article-pagination__button {
  display: block;
  width: 48%;
  padding: 2rem 3rem;
  background-color: #EDEDED;
  border-top: 3px solid #1563B0;
  font-size: 1.6rem;
  color: #2f2f2f;
  margin-bottom: 2rem;
}
@media only screen and (max-width: 37.5em) {
  .article-pagination__button {
    width: 100%;
  }
}
.article-pagination__button strong {
  display: block;
  font-size: 1.6rem;
  color: #1563B0;
  margin-bottom: 1rem;
}
.inner-teacher-list {
  padding: 4rem 0;
  display: flex;
  flex-wrap: wrap;
  margin: calc(-6rem / 2);
}
.inner-teacher-list > .item {
  list-style: none;
  padding: calc(6rem / 2);
  width: calc((1 / 2) * 100%);
}
@media only screen and (max-width: 70em) {
  .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%);
  }
}

.search-query {
  padding: 0 2rem;
  background-color: #E2EAF3;
  margin-top: 2rem;
}
.search-query__item {
  display: flex;
  padding: 1rem 0;
}
.search-query__item:not(:last-child) {
  border-bottom: 1px solid rgba(242, 246, 252, 0.4);
}
@media only screen and (max-width: 56.25em) {
  .search-query__item {
    display: block;
  }
}
.search-query__item h4 {
  width: 12rem;
  flex: none;
  font-size: 1.4rem;
  line-height: 2.4rem;
  color: #1563B0;
  margin: 0.4rem 0;
}
.search-query__item nav {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
}
.search-query__item nav span {
  padding: 0 2rem;
  border-radius: 100px;
  font-size: 1.4rem;
  line-height: 2.4rem;
  color: #5A5A5A;
  margin: 0.4rem;
  cursor: pointer;
}
.search-query__item nav span.active {
  color: #1563B0;
  outline: 1px solid #1563B0;
}

.inner-video-list {
  padding-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  margin: calc(-3rem / 2);
}
.inner-video-list > .item {
  list-style: none;
  padding: calc(3rem / 2);
  width: calc((1 / 3) * 100%);
}
@media only screen and (max-width: 70em) {
  .inner-video-list > .item {
    width: calc((1 / 2) * 100%);
  }
}
@media only screen and (max-width: 56.25em) {
  .inner-video-list > .item {
    width: calc((1 / 1) * 100%);
  }
}