@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;
  margin-bottom: 30px;
}

.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 !important;
text-decoration: none !important;

  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: 渐变层(在上面), 图片层(在下面) ... */
  background:
    /* 1. 这里是蓝色遮罩 (rgba 的最后一个数字 0.9 是透明度，越大约不透明) */
    linear-gradient(rgba(14, 79, 143, 0.9), rgba(14, 79, 143, 0.4)),

    /* 2. 这里是你的原图 */
    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;

}

.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;

  background: #1563B0;
  font-size: 26px;
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 2rem;
  position: relative;
  text-align: center;
}

.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 {
  background-color: #1563b0;
  color: whitesmoke;
}

.side-nav__1-item.active>.side-nav__1-link::before {
  content: "";
  /* 白色工具图标 */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1024 1024' width='80' height='80' fill='%23ffffff'%3E%3Cpath d='M960.24 688.95c-18.01-3.5-35.36 8.28-38.83 26.25-20.79 107.56-103.26 189.89-205.21 204.89-18.11 2.66-30.63 19.5-27.97 37.61 2.42 16.47 16.57 28.32 32.74 28.32 1.61 0 3.24-0.11 4.87-0.36 129.77-19.09 234.52-122.71 260.64-257.88 3.48-17.97-8.26-35.35-26.24-38.83z'/%3E%3Cpath d='M719.89 875.33c5.11 0 10.31-1.2 15.17-3.7 64.25-33.18 116-89.16 145.74-157.64 7.29-16.79-0.41-36.31-17.21-43.6-16.78-7.27-36.29 0.43-43.6 17.21-23.66 54.5-64.63 98.94-115.33 125.12-16.27 8.4-22.65 28.4-14.25 44.66 5.89 11.41 17.48 17.95 29.48 17.95zM312.62 540.45c-21.23-21.19-55.78-21.21-76.99 0.02L53.07 723.03c-10.29 10.29-15.97 23.96-15.97 38.52 0 14.54 5.66 28.22 15.96 38.51l104.58 104.58c10.61 10.62 24.55 15.91 38.5 15.91 13.94 0 27.88-5.3 38.51-15.91l182.57-182.57c21.23-21.23 21.23-55.77 0-77l-104.6-104.62zM196.13 849.39l-87.83-87.83 165.84-165.84 87.83 87.83-165.84 165.84zM643.92 418.3c10.29 10.29 23.97 15.97 38.53 15.97 14.54 0 28.22-5.68 38.5-15.96l182.57-182.56 0.02-0.01c21.2-21.23 21.2-55.78-0.02-76.99L798.93 54.16c-21.22-21.22-55.76-21.24-77 0L539.34 236.74c-21.2 21.23-21.2 55.78 0.02 76.99L643.92 418.3z m116.51-308.9l87.84 87.84-165.83 165.83-87.84-87.83L760.43 109.4zM596.09 714.69c-20.79-20.8-18.77-56.66 4.51-79.95l28.56-28.56c11.6-11.59 26.54-18.28 42.09-18.83 14.49-0.9 28.11 4.55 37.85 14.32 0.01 0.01 0.02 0.01 0.03 0.02l10.18 10.18c12.95 12.95 33.92 12.95 46.87 0 12.95-12.94 12.95-33.93 0-46.87L756 554.84c-0.01-0.01-0.01-0.02-0.02-0.03-0.02-0.02-0.04-0.03-0.06-0.05L623.06 421.89c-0.01-0.01-0.01-0.02-0.02-0.03-0.02-0.02-0.04-0.03-0.06-0.05l-85.92-85.92c-43.22-43.22-113.54-43.22-156.76 0l-49.99 49.99c-43.22 43.22-43.22 113.54 0 156.76l229.12 229.12a33.037 33.037 0 0 0 23.43 9.71c8.48 0 16.96-3.24 23.43-9.71 12.95-12.94 12.95-33.93 0-46.87l-10.2-10.2z m-13.8-155.39l-28.57 28.56c-15.36 15.36-25.55 33.65-31.65 52.8l-58.92-58.92c-20.79-20.8-18.77-56.66 4.51-79.95l28.56-28.56c11.6-11.59 26.54-18.28 42.09-18.83 14.33-0.82 28.09 4.55 37.85 14.32 0.01 0.01 0.02 0.01 0.03 0.02l58.83 58.83c-19.51 6.26-37.69 16.7-52.73 31.73z m-218.16-95.04c0-11.9 4.64-23.09 13.05-31.51l49.99-49.99c16.85-16.83 46.2-16.83 63.03 0l11.88 11.88c-19.51 6.25-37.69 16.69-52.72 31.73l-28.56 28.56c-15.36 15.36-25.56 33.64-31.66 52.79l-11.95-11.95c-8.43-8.41-13.06-19.61-13.06-31.51z'/%3E%3Cpath d='M723.12 632.91c-12.94-12.94-33.93-12.94-46.87 0l-49.11 49.11c-12.94 12.94-12.94 33.93 0 46.87 12.94 12.94 33.93 12.94 46.87 0l49.11-49.11c12.94-12.94 12.94-33.92 0-46.87z'/%3E%3C/svg%3E");
}

.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;
  text-align: center;
}

.side-nav__1-link::before {
  position: absolute;
  top: 52%;
  left: 0;
  transform: translateY(-50%);
  left: 6rem;
  content: "";
  display: inline-block;
  width: 30px;
  height: 30px;
  /* 原色深蓝图标 */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1024 1024' width='80' height='80' fill='%231563b0'%3E%3Cpath d='M960.24 688.95c-18.01-3.5-35.36 8.28-38.83 26.25-20.79 107.56-103.26 189.89-205.21 204.89-18.11 2.66-30.63 19.5-27.97 37.61 2.42 16.47 16.57 28.32 32.74 28.32 1.61 0 3.24-0.11 4.87-0.36 129.77-19.09 234.52-122.71 260.64-257.88 3.48-17.97-8.26-35.35-26.24-38.83z'/%3E%3Cpath d='M719.89 875.33c5.11 0 10.31-1.2 15.17-3.7 64.25-33.18 116-89.16 145.74-157.64 7.29-16.79-0.41-36.31-17.21-43.6-16.78-7.27-36.29 0.43-43.6 17.21-23.66 54.5-64.63 98.94-115.33 125.12-16.27 8.4-22.65 28.4-14.25 44.66 5.89 11.41 17.48 17.95 29.48 17.95zM312.62 540.45c-21.23-21.19-55.78-21.21-76.99 0.02L53.07 723.03c-10.29 10.29-15.97 23.96-15.97 38.52 0 14.54 5.66 28.22 15.96 38.51l104.58 104.58c10.61 10.62 24.55 15.91 38.5 15.91 13.94 0 27.88-5.3 38.51-15.91l182.57-182.57c21.23-21.23 21.23-55.77 0-77l-104.6-104.62zM196.13 849.39l-87.83-87.83 165.84-165.84 87.83 87.83-165.84 165.84zM643.92 418.3c10.29 10.29 23.97 15.97 38.53 15.97 14.54 0 28.22-5.68 38.5-15.96l182.57-182.56 0.02-0.01c21.2-21.23 21.2-55.78-0.02-76.99L798.93 54.16c-21.22-21.22-55.76-21.24-77 0L539.34 236.74c-21.2 21.23-21.2 55.78 0.02 76.99L643.92 418.3z m116.51-308.9l87.84 87.84-165.83 165.83-87.84-87.83L760.43 109.4zM596.09 714.69c-20.79-20.8-18.77-56.66 4.51-79.95l28.56-28.56c11.6-11.59 26.54-18.28 42.09-18.83 14.49-0.9 28.11 4.55 37.85 14.32 0.01 0.01 0.02 0.01 0.03 0.02l10.18 10.18c12.95 12.95 33.92 12.95 46.87 0 12.95-12.94 12.95-33.93 0-46.87L756 554.84c-0.01-0.01-0.01-0.02-0.02-0.03-0.02-0.02-0.04-0.03-0.06-0.05L623.06 421.89c-0.01-0.01-0.01-0.02-0.02-0.03-0.02-0.02-0.04-0.03-0.06-0.05l-85.92-85.92c-43.22-43.22-113.54-43.22-156.76 0l-49.99 49.99c-43.22 43.22-43.22 113.54 0 156.76l229.12 229.12a33.037 33.037 0 0 0 23.43 9.71c8.48 0 16.96-3.24 23.43-9.71 12.95-12.94 12.95-33.93 0-46.87l-10.2-10.2z m-13.8-155.39l-28.57 28.56c-15.36 15.36-25.55 33.65-31.65 52.8l-58.92-58.92c-20.79-20.8-18.77-56.66 4.51-79.95l28.56-28.56c11.6-11.59 26.54-18.28 42.09-18.83 14.33-0.82 28.09 4.55 37.85 14.32 0.01 0.01 0.02 0.01 0.03 0.02l58.83 58.83c-19.51 6.26-37.69 16.7-52.73 31.73z m-218.16-95.04c0-11.9 4.64-23.09 13.05-31.51l49.99-49.99c16.85-16.83 46.2-16.83 63.03 0l11.88 11.88c-19.51 6.25-37.69 16.69-52.72 31.73l-28.56 28.56c-15.36 15.36-25.56 33.64-31.66 52.79l-11.95-11.95c-8.43-8.41-13.06-19.61-13.06-31.51z'/%3E%3Cpath d='M723.12 632.91c-12.94-12.94-33.93-12.94-46.87 0l-49.11 49.11c-12.94 12.94-12.94 33.93 0 46.87 12.94 12.94 33.93 12.94 46.87 0l49.11-49.11c12.94-12.94 12.94-33.92 0-46.87z'/%3E%3C/svg%3E");


  /* --- 核心修改 --- */
  background-size: contain;
  /* 让图片按比例缩放以完全适应容器 */
  background-repeat: no-repeat;
  /* 防止图片在容器内重复平铺 */
  background-position: center;
  /* 让图片居中显示 */
}

/* .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;
  height: 680px;
  background: #f0f0f0;
  /* 给个背景色，万一图片没加载出来时显示 */
  /* 稍微给点上下间距 */
}

/* 2. 单个滑块设置 (关键点) */
.section-banner .swiper-slide {
  /* 设置宽度，让左右两边的 slide 能露出来 */
  /* 如果设为 60%，左右就会各露出 20% 左右的空间给前后图片 */
  width: 75%;
  height: 680px;
  position: relative;
  transition: all 0.3s ease;
  /* 添加过渡动画，让变亮变暗更丝滑 */
  transform: scale(0.9);
  /* (可选) 让旁边的图片稍微小一点，增加立体感 */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  /* 防止图片溢出圆角 */
  border-radius: 8px;
}

.section-banner .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: fill;
}

/* 4. 制作“变暗”的遮罩层 (核心逻辑) */
.section-banner .swiper-slide::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  transition: background 0.3s ease;
  pointer-events: none;
}

/* 5. 激活状态（中间那张图）的样式 */
.section-banner .swiper-slide-active {
  transform: scale(1);
  z-index: 10;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  /* 加个阴影，增加层次感 */
}

/* 6. 去掉激活状态图片的遮罩（变亮） */
.section-banner .swiper-slide-active::after {
  background: rgba(0, 0, 0, 0);
  /* 变成全透明 */
}

.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 {
  background-color: #fbfbfb;
  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%;
  height: 600px;
}

.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%);
  }
}

/* Antigravity: Center News Dynamics Heading with Decoration */
.section-news .heading-box {
  justify-content: flex-end;
}

.section-news .heading-box>a:nth-of-type(1) {
  display: none;
}

.section-news .heading-box .heading {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Reset original background image if it interferes, or use it as base. 
   Here we override the base .heading::before which was a background image. 
   We will repurpose ::before and ::after for the lines. */
.section-news .heading-box .heading::before {
  content: '';
  display: block;
  width: 6rem;
  height: 2px;
  background: linear-gradient(to left, #1563B0 4px, transparent 4px, transparent 6px, #1563B0 6px);
  /* Fake dot + line? No, let's use radial */
  /* Better implementation: Dot and Line */
  background:
    radial-gradient(circle closest-side, #1563B0 3px, transparent 3.5px) right center / 8px 100% no-repeat,
    linear-gradient(to right, transparent, #1563B0) left center / calc(100% - 10px) 1px no-repeat;
  position: static;
  /* Reset absolute from base class */
  margin-right: 1.5rem;
  opacity: 0.8;
}

.section-news .heading-box .heading::after {
  content: '';
  display: block;
  width: 6rem;
  height: 2px;
  /* Right side: Dot on left, Line on right */
  background:
    radial-gradient(circle closest-side, #1563B0 3px, transparent 3.5px) left center / 8px 100% no-repeat,
    linear-gradient(to left, transparent, #1563B0) right center / calc(100% - 10px) 1px no-repeat;
  margin-left: 1.5rem;
  opacity: 0.8;
}

/* Adjust icon size/color if needed */
.section-news .heading-box .heading .iconfont {
  font-size: 2.8rem;
  margin-right: 0.5rem;
  color: #1563B0;
}

/* Antigravity: Redesign News Carousel */
.news-image-card {
  height: 47rem;
  /* Taller fixed height or fit content? Fixed height ensures alignment */
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

.news-image-card__cover {
  height: 100% !important;
  /* Override existing height */
}

/* Gradient Overlay for Text Readability */
.news-image-card__cover::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 60%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
  pointer-events: none;
}

.news-image-card__info {
  background-color: transparent !important;
  bottom: 3rem !important;
  /* Move up slightly */
  left: 0;
  width: 70%;
  /* Limit width so it doesn't overlap pagination if long */
  z-index: 2;
  text-align: left;
  padding-left: 3rem;
}

.news-image-card__title {
  color: #fff !important;
  font-size: 2.2rem !important;
  line-height: 1.4 !important;
  font-weight: bold;
  height: auto !important;
  -webkit-line-clamp: 2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.news-image-card__title span {
  display: none;
  /* Hide date badge */
}

.section-news .research-card__date {
  display: none !important;
}

/* Pagination Container */
.news-pagination-container {
  position: absolute;
  bottom: 3rem;
  right: 3rem;
  z-index: 10;
  display: flex;
  align-items: center;
  color: #fff;
  font-family: 'Helvetica Neue', Arial, sans-serif;
}

.news-current-idx {
  font-size: 4rem;
  font-weight: bold;
  margin-right: 1.5rem;
  line-height: 1;
}

/* Swiper Dots Customization */
.news-swiper-pagination {
  position: static !important;
  /* Override swiper absolute */
  width: auto !important;
  display: flex !important;
  align-items: center;
}

.news-swiper-pagination .swiper-pagination-bullet {
  background: white;
  opacity: 0.5;
  width: 8px;
  height: 8px;
  margin: 0 5px !important;
}

.news-swiper-pagination .swiper-pagination-bullet-active {
  opacity: 1;
  background: #fff;
  /* Solid white active */
}

/* Antigravity: Layout Override for News Section */
.section-news .row {
  display: flex !important;
  justify-content: space-between;
}

.section-news .row>.col-1-of-2:first-child {
  width: 60% !important;
  flex: 0 0 60% !important;
  max-width: 60% !important;
}

.section-news .row>.col-1-of-2:last-child {
  width: calc(40% - 4rem) !important;
  /* 4rem gap approx */
  flex: 1 !important;
  padding-left: 2rem;
  /* Ensure some spacing if flexible */
}

/* Updated Pagination Styles */
.news-current-idx {
  display: none;
  /* Hide standalone number */
}

/* Bullet Styles: Number on Button */
.news-swiper-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  opacity: 1;
  /* Handle opacity manually */
  margin: 0 6px !important;

  /* Hide text content by default (the number) */
  font-size: 0;
  color: transparent;
  line-height: 0;

  transition: all 0.3s ease;
  display: flex !important;
  justify-content: center;
  align-items: center;
}

.news-swiper-pagination .swiper-pagination-bullet-active {
  width: auto;
  height: auto;
  border-radius: 0;
  background: transparent;

  /* Show text content (the number) */
  font-size: 4rem;
  font-weight: bold;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  color: #fff;
  line-height: 1;

  margin: 0 10px !important;
  transform: translateY(-50%);
  /* Fine tune alignment */
}

/* Antigravity: Notice Section Refactor */

/* 1. Center Heading and Layout */
.section-notice .heading-box {
  justify-content: flex-end;
}

/* Heading Content */
.section-notice .heading-box .heading {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;

}

/* Decorative Lines (Reusing style from News) */
.section-notice .heading-box .heading::before {
  content: '';
  display: block;
  width: 6rem;
  height: 2px;
  background: linear-gradient(to left, #1563B0 4px, transparent 4px, transparent 6px, #1563B0 6px);
  background: radial-gradient(circle closest-side, #1563B0 3px, transparent 3.5px) right center / 8px 100% no-repeat, linear-gradient(to right, transparent, #1563B0) left center / calc(100% - 10px) 1px no-repeat;
  position: static;
  margin-right: 1.5rem;
  opacity: 0.8;
}

.section-notice .heading-box .heading::after {
  content: '';
  display: block;
  width: 6rem;
  height: 2px;
  background:
    radial-gradient(circle closest-side, #1563B0 3px, transparent 3.5px) left center / 8px 100% no-repeat,
    linear-gradient(to left, transparent, #1563B0) right center / calc(100% - 10px) 1px no-repeat;
  margin-left: 1.5rem;
  opacity: 0.8;
}

/* Icon Style */
.section-notice .heading .iconfont {
  font-size: 2.8rem;
  margin-right: 1rem;
  color: #1563B0;
  display: inline-block;
}



/* 2. Notice Card Hover Effects */
.notice-card {
  transition: all 0.3s ease;
  padding: 1.5rem;
  /* Add padding just in case */
  border-radius: 8px;

  /* Ensure it behaves like a block for padding */
  text-decoration: none;
  /* Reset links */
  position: relative;
}

/* Date Styling Default */
.notice-card__date {
  transition: color 0.3s ease;
}

/* Link overlay */
.notice-card__link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
}

/* HOVER STATES */
.notice-card:hover {
  background-color: #1563B0 !important;
  /* Blue Background */
  box-shadow: 0 8px 20px rgba(21, 99, 176, 0.2);
}

/* Text Turns Red on Hover */
.notice-card:hover .notice-card__title {
  color: white !important;
  /* Bright Red */
}

/* Date Turns Red on Hover */
.notice-card:hover .notice-card__date,
.notice-card:hover .notice-card__day,
.notice-card:hover .notice-card__month {
  color: white !important;
}

/* Handle inner elements if they override color */
.notice-card:hover * {
  border-color: white !important;
  /* Just in case borders are used */
}

/* 1. 【核心】隐藏 Swiper 自带的蓝色箭头 */
/* 必须加 !important 确保干掉它，否则它会一直挡在那里 */
#researchPrev::after,
#researchNext::after {
  content: none !important;
  display: none;
}

/* 2. 基础样式（使用 ID 选择器 # 提高权重，防止被覆盖） */
#researchPrev,
#researchNext {
  width: 74px !important;
  /* 强制生效 */
  height: 74px !important;
  /* 强制生效 */

  /* 【关键】不要用简写的 background，拆开写更稳，不容易被覆盖 */
  background-size: 100% 100%;
  /* 让图片撑满 74px */
  background-repeat: no-repeat;
  background-position: center;

  /* Swiper 按钮默认透明度可能是 0.5，强制设为 1 才能看清图片 */
  opacity: 1 !important;

  /* 去掉默认的 margin，自己定位 */
  margin-top: 0;
}

/* 3. 正常状态图片 */
#researchPrev {
  /* 换成你的左箭头图片路径 */
  background-image: url('../images/left01.png');
  left: -40px;
  /* 贴在左边 */
}

#researchNext {
  /* 换成你的右箭头图片路径 */
  background-image: url('../images/right01.png');
  right: -37px;
  /* 照你截图里的写法，向右偏移 */
}

/* 4. 鼠标放上去（Hover）的状态 */
#researchPrev:hover {
  background-image: url('../images/left02.png');
}

#researchNext:hover {
  background-image: url('../images/right02.png');
}

#devicePrev::after,
#deviceNext::after {
  content: none !important;
  display: none;
}

#devicePrev,
#deviceNext {
  width: 74px !important;
  height: 74px !important;

  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;

  opacity: 1 !important;

  margin-top: 0;
}

#devicePrev {
  background-image: url('../images/left01.png');
  left: -40px;
}

#deviceNext {
  background-image: url('../images/right01.png');
  right: -37px;
}

#devicePrev:hover {
  background-image: url('../images/left02.png');
}

#deviceNext:hover {
  background-image: url('../images/right02.png');
}

#deviceSwiper .research-card {
  height: 315px !important;

}

#deviceSwiper .research-card .ratio-image {
  height: 250px !important;
}

#deviceSwiper .research-card__info {
  height: 40px !important;
}

.section-link {
  padding: 5rem 0 0 0;
}

.links {
  font-size: 20px;
  width: 100%;
  display: flex;
  justify-content: space-around;

}

.links li {
  list-style: none;
  height: 100%;

  line-height: 60px;
  padding: 20px;
}

.links li a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* 控制垂直方向居中 */
  align-items: center;
  /* 关键代码：控制水平方向居中 */
  text-align: center;
  /* 确保文字多行时也能居中 */
  text-decoration: none;
  /* 可选：去掉链接下划线 */
  color: inherit;

}

.links li a svg {
  width: 60px;
  height: 60px;
}
.links li a img {
 transition: transform 0.6s ease-in-out;
  background: transparent;
  width: 100px;

}