@charset "UTF-8";

@media (min-width: 1400px) {
  html,
  body {
    font-size: 16px;
  }
}

@media (min-width: 1800px) {
  html,
  body {
    font-size: 20px;
  }
}

@media (min-width: 2000px) {
  html,
  body {
    font-size: 21.5px;
  }
}

html,
body {
  margin: 0;
  padding: 0;
}

.no-scroll {
  overflow: hidden;
}

#headNav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 200;
}

.nav-retract {
  background: #fff;
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.5);
}

.nav-wrapper {
  position: relative;
  display: flex;
  flex-wrap: inherit;
  align-items: center;
  justify-content: space-between;
  margin: 1em auto;
  max-width: calc(75rem + 9em);
  padding: 2.15rem 0;
}

.nav-retract .nav-wrapper {
  padding: 0;
  margin: 0 auto;
}

/* 导航栏学校logo */
.nav-wrapper .school-logo {
  flex-grow: 1;
  height: 4rem;
}

.nav-wrapper .school-logo2 {
  height: 3rem;
  padding: 1rem;
}

.nav-wrapper .school-logo img {
  height: 100%;
  object-fit: cover;
}

.nav-wrapper .nav-tools-panel {
  display: none;
}

/* 导航栏主体内容 */
.nav-wrapper .nav-main-wrapper {
  display: flex;
  flex-basis: auto;
  flex-grow: 1;
  align-items: center;
  justify-content: flex-end;
}

.nav-main-wrapper .search-input-wrapper {
  display: none;
}

.nav-main-wrapper .nav-main {
  display: flex;
  border: none;
  background: none;
  max-height: 2.6rem;
  overflow: visible;
  margin: 0 -1rem;
  justify-content: space-between;
  padding-top: 1.5em;
}

.nav-retract .nav-main-wrapper .nav-main {
  height: 1.6rem;
  padding-top: 0.5em;
}

.nav-main .nav-main-item {
  position: relative;
  padding: 0;
  list-style: none;
  margin-right: 1.7em;
  font-size: 0.9rem;
  height: 3.5em;
  border-bottom: none;
  cursor: pointer;
  margin-top: 0.2em;
}

.nav-main-item .iconfont {
  display: none;
}

.nav-main .nav-main-item2::after {
  position: absolute;
  display: block;
  content: "";
  left: 50%;
  top: calc(52%);
  width: 0;
  height: 1.5em;
  border-left: 3px solid #9421a4;
  transform-origin: center bottom;
  transform: scaleY(0);

  transition: all ease 0.7s;
}

.nav-main .nav-main-item2:hover::after {
  transform: scaleY(1);
}

.nav-main-item .nav-main-item-title {
  position: relative;
  font-weight: bold;
  text-shadow: 3px 3px 5px rgba(0, 0, 0, 0.5);
}

.nav-retract .nav-main-item .nav-main-item-title {
  text-shadow: unset;
  font-weight: normal;
  font-family: system-ui;
  color: #333;
}

.nav-main-item .nav-main-item-title::before,
.nav-main-item .nav-main-item-title::after {
  position: absolute;
  display: block !important;
  content: "";
  bottom: -0.5em;
  width: 50%;
  height: 0;
  border-bottom: 3px solid #9421a4;
  transform: scaleX(0);
  transition: all ease 0.7s;
}

.nav-main-item .nav-main-item-title::before {
  left: 0;
}

.nav-main-item .nav-main-item-title::after {
  right: 0;
}

.nav-main-item .nav-main-item-title-on::before,
.nav-main-item .nav-main-item-title-on::after {
  transform: scaleX(1) !important;
}

.nav-main-item a {
  color: #fff;
}

.nav-retract .nav-main-item a {
  color: #000;
}

.nav-main-item .nav-main-item-menu {
  position: absolute;
  display: none;
  width: 30rem;
  left: 50%;
  padding: 1rem;
  background: #fff;
  border-top: 3px solid #a225b3;
  margin-left: -23rem;
  overflow: hidden;
  box-shadow: 0 0 1.25rem rgba(0, 0, 0, 0.15);
  top: 94%;
  opacity: 0;
  transform: translateY(26px);
}

.nav-main-item:hover .nav-main-item-menu {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.nav-main-item .nav-main-item-menu2 {
  width: 30rem;
}

.nav-main-item .nav-main-item-menu2 .menu-main .menu-main-item {
  flex: 0 0 50%;
  justify-content: center;
}

.nav-main-item .nav-main-item-menu-on {
  display: block !important;
}

.nav-main-item-menu .menu-img {
  width: 13rem;
  height: 7rem;
  float: left;
  display: block;
  position: relative;
  margin-right: 1.5em;
}

.menu-img img {
  width: 100%;
  height: 100%;
}

.nav-main-item-menu .menu-main {
  display: flex;
  flex-wrap: wrap;
  height: 7rem;
  width: 15rem;
  align-items: center;
}

.menu-main-two {
  justify-content: space-evenly;
}

.menu-main .menu-main-item {
  padding: 0;
  list-style: none;
  margin: 0;
  flex: 0 0 33.3%;
  padding-right: 0.5rem;
  box-sizing: border-box;
  display: flex;
  align-items: center;
}

.menu-main2 .menu-main-item {
  flex: 0 0 50%;
  justify-content: center;
}

.menu-main-three-col .menu-main-item {
  flex: 0 0 50%;
}

.menu-main2 .menu-main-item a {
  width: calc(0.9rem * 6);
}

.menu-main .menu-main-item a:hover {
  color: #9421a4;
}

.menu-main-item::before {
  content: "";
  width: 6px;
  height: 6px;
  background: #9421a4;
  border-radius: 6px;
  margin-right: 6px;
}

.menu-main-item a {
  color: #000;
  font-size: 0.8rem;
}

/* 导航栏顶部面板 */
.nav-wrapper .top-panel {
  position: absolute;
  right: 0;
  top: 1.2rem;
  opacity: 1;
  margin-right: 14px;
}

.nav-retract .nav-wrapper .top-panel {
  display: none;
  opacity: 0;
}

.top-panel .top-main {
  display: flex;
  border: none;
  background: none;
  max-height: 2.6rem;
  overflow: visible;
  margin: 0 -1rem;
  align-items: center;
  justify-content: center;
}

.top-main li {
  position: relative;
  padding: 0;
  list-style: none;
  margin: 0 0.9rem;
  border-bottom: none;
  cursor: pointer;
}

.top-main .top-main-item::before {
  position: absolute;
  left: -0.8rem;
  bottom: 0.1em;
  content: "";
  background: rgba(255, 255, 255, 0.4);
  width: 1px;
  height: 0.8rem;
}

.top-main li a {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.7rem;
}

.top-main .icon-icon-test1 {
  background: rgba(255, 255, 255, 0.4);
  padding: 6px;
  border-radius: 1em;
  font-size: 0.8rem;
  margin-right: 0.5rem;
}

.place-wrapper {
  height: 100vh;
  box-sizing: border-box;
}

/* =========================================底部信息栏==================================== */
.footer-wrapper {
  position: relative;
  z-index: 100;
  background: #fff;
  display: flex;
  padding: 3rem 16rem;
  justify-content: space-between;
  align-items: center;
}

.footer-wrapper .container {
  width: calc(1400px + 4em);
}

.footer-wrapper .footer-bg-wrapper {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-image: url("../img/index/footer-bg.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.footer-wrapper .footer-bg-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer-wrapper .school-info-wrapper {
  position: relative;
  color: #fff;
  font-size: 0.8rem;
}

.school-info-wrapper div {
  line-height: 2em;
  font-weight: 300;
}

.footer-wrapper .school-logo-wrapper {
  position: relative;
  height: 5.5rem;
}

.school-logo-wrapper img {
  height: 100%;
  width: 100%;
}

.footer-wrapper .school-media-wrapper {
  position: relative;
}

.school-media-wrapper .iconfont {
  color: #fff;
  font-size: 2rem;
  padding: 8px;
  background: #ffffff2f;
  border-radius: calc(2rem + 8px);
  margin-right: 0.5em;
  position: relative;
}

.school-record-wrapper {
  position: relative;
  color: #fff;
  z-index: 99;
  background: #5e1188;
  font-size: 0.8rem;
  line-height: 3.5em;
  text-align: center;
  font-weight: 300;
}

/* =========================================导航栏移动端样式==================================== */
@media (max-width: 992px) {
  html,
  body {
    font-size: 4vw;
  }

  .container {
    max-width: 90vw;
  }

  .nav-wrapper {
    flex-wrap: wrap;
    padding: 0;
    margin: 0 auto;
  }

  .nav-wrapper-mobile {
    background: #9421a4;
    justify-content: center;
  }

  .nav-wrapper .school-logo {
    height: 2rem;
    padding: 1rem 0 1rem 1rem;
  }

  .nav-wrapper .nav-tools-panel {
    position: relative;
    display: block;
    padding-right: 1rem;
  }

  #index {
    display: none;
  }

  .nav-tools-panel .nav-tool-item .iconfont {
    color: #fff;
    font-size: 2rem;
  }

  .nav-wrapper .top-panel {
    display: none;
  }

  .nav-wrapper .nav-main-wrapper {
    display: none;
    width: 100%;
    height: calc(100vh - 4rem);
    background: #f1f1f1;
    overflow: scroll;
  }

  .nav-main-wrapper .search-input-wrapper {
    display: flex;
    justify-content: center;
    padding-top: 2em;
  }

  .search-input-wrapper .search-input {
    padding: 0 1.25em;
    line-height: 2.5em;
    border-radius: 2.5em 0 0 2.5em;
    border: 1px solid #9421a4;
    border-right-width: 0;
    width: 50%;
  }

  .search-input-wrapper .search-btn {
    padding: 0 1em;
    border-radius: 0 2.5em 2.5em 0;
    border: 1px solid #9421a4;
    line-height: 2.5em;
    background: #9421a4;
  }

  .search-btn .iconfont {
    color: #fff;
    font-size: 1.8rem !important;
  }

  .nav-main-wrapper .nav-main {
    max-height: unset;
    flex-wrap: wrap;
    flex-direction: column;
    width: 100%;
    margin: 0;
    padding: 1.5rem 1rem;
    box-sizing: border-box;
  }

  .nav-main .nav-main-item {
    margin: 0;
    height: auto;
  }

  .nav-main-item .iconfont {
    display: block;
  }

  .nav-main .nav-main-item2::after {
    display: none;
  }

  .nav-main-item .nav-main-item-title {
    text-shadow: unset;
    font-weight: normal;
    border-bottom: 1px solid #e6e6e6;
    font-size: 1rem;
    position: relative;
  }

  .nav-main-item-title .iconfont {
    position: absolute;
    right: 0;
    font-size: 2rem !important;
    color: #929292;
  }

  .nav-main-item-title .icon-icon-test3 {
    display: inline-block;
  }

  .nav-main-item-title .icon-icon-test4 {
    display: none;
  }

  .nav-main-item-title-on .icon-icon-test3 {
    display: none;
  }

  .nav-main-item-title-on .icon-icon-test4 {
    display: inline-block;
  }

  .nav-main-item .nav-main-item-title::before,
  .nav-main-item .nav-main-item-title::after {
    display: none !important;
  }

  .nav-main-item .nav-main-item-menu {
    position: relative;
    left: unset;
    top: unset;
    margin: 0;
    width: auto;
    padding: 0;
    background: unset;
    box-shadow: unset;
    border-width: 0;
  }

  .nav-main-item-menu .menu-main {
    flex-direction: column;
    height: auto;
    width: auto;
    align-items: unset;
    margin-top: 1em;
    align-items: flex-start;
  }

  .nav-main-item-menu .menu-img {
    display: none;
  }

  .nav-main-item a {
    color: #000;
    line-height: 3em;
    display: block;
  }

  .nav-main-item .nav-main-item-menu2 .menu-main .menu-main-item {
    justify-content: unset;
  }

  .menu-main-item::before {
    display: none;
  }

  .menu-main-item a {
    color: #636363;
  }

  .footer-wrapper {
    padding: 1rem 0rem 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }

  .school-media-wrapper {
    display: none;
  }

  .footer-wrapper .school-info-wrapper {
    order: 1;
    font-size: 0.7rem;
    text-align: center;
  }

  .footer-wrapper .school-logo-wrapper {
    height: 7.5vh;
  }

  .school-logo-wrapper img {
    /*object-fit: cover;*/
  }

  .school-info-wrapper div {
    line-height: 1.7em;
  }

  .school-record-wrapper {
    font-size: 0.51rem;
    line-height: 5em;
  }

  .show-layer {
    position: unset !important;
  }
}

/*弹出框样式*/
.follow-media-top-icon a {
  cursor: pointer;
}

.show-layer {
  cursor: pointer;
  position: relative;
}

.show-layer:hover .layer {
  margin-top: 0.18rem;
  opacity: 1;
  visibility: visible;
}

.layer {
  -moz-border-radius: 0.1rem;
  -webkit-border-radius: 0.1rem;
  border-radius: 0.1rem;
  background: #fff;
  position: absolute;
  z-index: 98;
  left: -23%;
  top: 57px;
  bottom: auto;
  margin-left: -2rem;
  margin-top: 0;
  opacity: 0;
  visibility: hidden;
  padding: 20px 24px 14px 24px;
}

.layer .ewm {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.ewm img {
  width: 100px;
}

.ewm .name {
  font-size: 13px;
  text-align: center;
  color: #363131;
}

.layer:after {
  content: "";
  display: block;
  position: absolute;
  top: -5px;
  right: 44%;
  width: 24px;
  height: 24px;
  background: #fff;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}

.layer {
  ransition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
}

.footer-wrapper .layer {
  left: 195%;
  top: -2%;
  padding: 6px;
}

.footer-wrapper .layer:after {
  content: "";
  display: block;
  position: absolute;
  top: 13%;
  left: -6px;
  width: 12px;
  height: 12px;
  background: #fff;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}

/*弹出框样式*/
@media (max-width: 1450px) {
  .school-media-wrapper .iconfont {
    font-size: 1.4rem !important;
  }
}

@media (max-width: 1500px) and (min-width: 1201px) {
  /* 在 1201px 到 1500px 之间的样式 */
  .footer-wrapper {
    position: relative;
    z-index: 100;
    background: #fff;
    display: flex;
    padding: 3rem 10rem;
    justify-content: space-between;
    align-items: center;
  }
}
