@charset "UTF-8";

/* 加载完成 body 没有loading类名 时候元素样式 */

body.-loading .m-header-tour {
  -webkit-transform: translate(0, -100%);
  transform: translate(0, -100%);
}
body.-loading .o-header__logo img {
  opacity: 0;
  -webkit-transform: translate(-30px, 0);
  transform: translate(-30px, 0);
}
body.-loading .o-header__nav-content {
  opacity: 0;
  -webkit-transform: translate(30px, 0);
  transform: translate(30px, 0);
}
body.-loading .m-header-tour__item {
  -webkit-transform: translate(0, -20px);
  transform: translate(0, -20px);
  opacity: 0;
}
/* 加载完成 body 没有loading类名 时候元素样式 */

body:not(.-loading) .m-header-tour {
  -webkit-transition: -webkit-transform 0.3s 0s;
  transition: -webkit-transform 0.3s 0s;
  transition: transform 0.3s 0s;
  transition:
    transform 0.3s 0s,
    -webkit-transform 0.3s 0s;
}
body:not(.-loading) .m-header-tour__item {
  -webkit-transition:
    opacity 0.3s,
    -webkit-transform 0.3s;
  transition:
    opacity 0.3s,
    -webkit-transform 0.3s;
  transition:
    opacity 0.3s,
    transform 0.3s;
  transition:
    opacity 0.3s,
    transform 0.3s,
    -webkit-transform 0.3s;
}
body:not(.-loading) .m-header-tour__item:nth-child(1) {
  -webkit-transition-delay: 0.5s;
  transition-delay: 0.5s;
}
body:not(.-loading) .m-header-tour__item:nth-child(2) {
  -webkit-transition-delay: 0.6s;
  transition-delay: 0.6s;
}
body:not(.-loading) .m-header-tour__item:nth-child(3) {
  -webkit-transition-delay: 0.7s;
  transition-delay: 0.7s;
}
body:not(.-loading) .m-header-tour__item:nth-child(4) {
  -webkit-transition-delay: 0.8s;
  transition-delay: 0.8s;
}
body:not(.-loading) .m-header-tour__item:nth-child(5) {
  -webkit-transition-delay: 0.9s;
  transition-delay: 0.9;
}
body:not(.-loading) .o-header__logo img {
  transition:
    opacity 0.3s 0.5s,
    transform 0.3s 0.5s;
}
body:not(.-loading) .o-header__nav-content {
  -webkit-transition:
    opacity 0.3s 0.5s,
    -webkit-transform 0.3s 0.5s;
  transition:
    opacity 0.3s 0.5s,
    -webkit-transform 0.3s 0.5s;
  transition:
    opacity 0.3s 0.5s,
    transform 0.3s 0.5s;
  transition:
    opacity 0.3s 0.5s,
    transform 0.3s 0.5s,
    -webkit-transform 0.3s 0.5s;
}

/* 全局变量 */
:root {
  --primary: #671c7f;
  --swiper-navigation-size: 44px;
}

/* 动画 */
@-webkit-keyframes logo_rotate {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn);
  }
}
@keyframes logo_rotate {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn);
  }
}

/* 加载动画 */
.o-loading {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100000;
  pointer-events: none;
  display: none;
}
.o-loading__mask {
  width: 100%;
  height: 100%;
  background: var(--primary);
  opacity: 0;
  -webkit-transition: opacity 0.6s linear;
  transition: opacity 0.6s linear;
}
.o-loading svg#loading-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  overflow: visible;
  opacity: 0;
  -webkit-transition: opacity 0.3s linear;
  transition: opacity 0.3s linear;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.o-loading .loading-logo-img {
  /* width: 160px;
  height: 160px; */
  width: auto;
  height: 160px;
  position: absolute;
  top: 50%;
  left: 50%;
  overflow: visible;
  opacity: 0;
  -webkit-transition: opacity 0.3s linear;
  transition: opacity 0.3s linear;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.o-loading svg#loading-logo #inner-circle {
  animation: logo_rotate 1.5s linear infinite reverse;
  -webkit-transform-origin: center;
  transform-origin: center;
}
.o-loading svg#loading-logo #outer-circle {
  -webkit-animation: logo_rotate 3s linear infinite;
  animation: logo_rotate 3s linear infinite;
  -webkit-transform-origin: center;
  transform-origin: center;
}
/* 给body加上 -loading 类名即可显示加载动画*/
/* .-loading .o-loading__mask {
  opacity: 1;
}
.-loading .loading-logo-img {
  opacity: 1;
}
.-loading svg#loading-logo {
  opacity: 1;
} */

/* 版心 */
#wrapper {
  background-color: #f2efea;
  transition: opacity 0.3s;
}

.flex {
  display: flex;
  flex-wrap: wrap;
}
.wp {
  width: 17.08rem;
  padding: 0;
  margin: 0 auto;
  max-width: 94%;
}
@media (max-width: 1199px) {
  .wp {
    padding: 0 20px 0 20px;
    width: 100%;
    max-width: 100%;
  }
}

/* .container  */
.container {
  position: relative;
  margin-right: auto;
  margin-left: auto;
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
  max-width: 100%;
}
.container.-size-sm {
  max-width: 83.33333%;
}
.container.-size-xs {
  max-width: 66.66667%;
}
@media (min-width: 768px) {
  .container {
    padding-right: 40px;
    padding-left: 40px;
    max-width: 1024px;
  }
  .container.-size-sm {
    max-width: 853.33333px;
  }
  .container.-size-xs {
    max-width: 682.66667px;
  }
}
@media (min-width: 1200px) {
  .container {
    padding-right: 40px;
    padding-left: 40px;
    max-width: 1280px;
  }
  .container.-size-sm {
    max-width: 1064px;
  }
  .container.-size-xs {
    max-width: 848px;
  }
}
@media (min-width: 1920px) {
  .container {
    padding-right: 40px;
    padding-left: 40px;
    max-width: 1440px;
  }
  .container.-size-sm {
    max-width: 1196.66667px;
  }
  .container.-size-xs {
    max-width: 953.33333px;
  }
}
/* 头部开始-------------------------------- */

/* .o-header__main  */
.o-header__main {
  /* height: 1rem; */
  /* padding-top: 0.15rem; */
  padding: 0.15rem 0 0.5rem;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  /* pointer-events: none; */
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
  /* background-color: lightblue; */
}
.o-header__main::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../images/public/headCeilingBg.png") no-repeat top;
  background-size: 100% 100%;
  z-index: -1;
  transition: transform 0.4s;
  transform: scaleY(0);
  transform-origin: top;
}
.o-header__main::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../images/public/headbg.png") no-repeat top;
  background-size: 100% 100%;
  z-index: -1;
  transition: transform 0.4s;
  transform: scaleY(1);
  transform-origin: top;
  opacity: 1;
}

.o-header.-show-bg .o-header__main {
  pointer-events: all;
  -webkit-transform: translateY(0);
  transform: translateY(0);
  padding: 0.25rem 0;
}

.o-header.-show-bg .o-header__main::before {
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
}
.o-header.-show-bg .o-header__main::after {
  transform: scaleY(0);
  height: 0;
  opacity: 0;
}

.o-header.-show-bg .o-header__logo {
  -webkit-transform: scale(0.9);
  transform: scale(0.9);
  -webkit-transition: none;
  transition: none;
}

.o-header.-show-bg .o-header__list {
  opacity: 1;
  pointer-events: auto;
}

.o-header.-at-top .o-header__main {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.o-header.-show-bg .m-header-tour {
  display: none;
}
.o-header.-show-bg .o-header__nav-content {
  margin-top: 0;
}
.o-header.-show-bg .o-header__hamburger {
  display: block !important;
}
.o-header__hamburger.-active {
  display: block !important;
}
/* 一级导航 */
.rightBox {
  /* max-width: calc(100% - 2.5rem - 0.3rem); */
}

/* m-header-tour  */
.m-header-tour {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  line-height: 1;
  position: relative;
  transition: transform 0.1s;
  box-sizing: border-box;
  z-index: 99;
}
.m-header-tour.-hide {
  opacity: 0;
}
.m-header-tour__item {
  padding: 0 0.06rem;
  cursor: pointer;
}
.m-header-tour__link {
  font-size: 0.14rem;
  color: #ffffff;
  display: inline-block;
  position: relative;
  border-right: 1px solid rgba(255, 255, 255, 0.8);
  transition: color 0.3s;
}
.-pc .m-header-tour__link:hover {
  color: rgba(255, 255, 255, 0.8);
}
.m-header-tour__link:nth-child(4) {
  border-right: none;
}
.m-header-tour__search {
  padding: 0 0 0 0.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.m-header-tour__search img {
  width: 0.18rem;
  height: 0.18rem;
  transition: opacity 0.3s;
}
.-pc .m-header-tour__search img:hover {
  opacity: 0.8;
}

/* 二级导航 */
.o-header__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-right: 0.3rem;
  height: 100%;
  color: #ffffff;
  box-sizing: border-box;
}
.o-header__nav-content {
  display: flex;
  align-items: center;
  height: 100%;
  margin-top: 0.15rem;
}
.o-header__logo {
  width: 2.7rem;
  /* width: 4rem; */
  transition: transform 0.4s 0.4s;
  transform-origin: left;
}
.o-header__logo img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  position: relative;
  top: 0.12rem;
}
.o-header__list {
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-width: 7rem;
  height: 100%;
  transition: opacity 0.4s ease;
  pointer-events: auto;
}
@media (max-width: 767px) {
  .o-header__list {
    display: none;
  }
}
.o-header__list > li {
  height: 100%;
}
.o-header__list > li:last-child .o-header__item {
  padding-right: 0;
}

.o-header__list > li:hover .a-nav-pop {
  opacity: 1;
  visibility: visible;
}
.o-header__list > li:hover .o-header__item::before {
  transform: translateX(-50%);
}
.o-header__list > li:hover .o-header__item::after {
  opacity: 1;
}
.o-header__list > li:hover .o-header__item_login::after {
  opacity: 0;
}

.o-header__item {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.24rem;
  letter-spacing: 0.01rem;
  font-family: "sys", "Microsoft Yahei", sans-serif;
  font-size: 0.19rem;
}
.o-header__item::before {
  width: calc(100% - 0.35rem);
  height: 0.035rem;
  content: "";
  position: absolute;
  bottom: -0.1rem;
  left: 50%;
  background-color: #661c7e;
  transition: transform 0.3s;
  transform: translateX(-50%) scaleX(0);
}
.o-header__item::after {
  width: 0.08rem;
  height: 0.08rem;
  content: "";
  position: absolute;
  bottom: -0.25rem;
  left: 50%;
  background: url(../images/public/triangle.png) no-repeat center / cover;
  opacity: 0;
  transition: opacity 0.3s;
}
.o-header__item.-active::before {
  transform: translateX(-50%) scaleX(1);
}
/* a-nav-pop  鼠标划过弹层 */
.a-nav-pop {
  /* width: 80%; */
  width: calc(8 * 0.8 / 9 * 100%);
  position: absolute;
  bottom: 0;
  right: 0;
  left: calc(10% + 12.5px);
  padding-top: 0.4rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s;
  transform: translate(0, 100%);
  cursor: auto;
}
.a-nav-pop__main {
  min-height: 160px;
  display: flex;
  align-items: flex-start;
  padding: 0.3rem 0 0.3rem 0.4rem;
  width: 100%;
  background-image: url(../images/public/navPopBg.png);
  background-position: left bottom;
  background-repeat: no-repeat;
  background-size: auto 100%;
  background-color: #ffffff;
  border-bottom: 0.03rem solid #661c7e;
  box-shadow: 0 0 0.05rem 0 #ccc;
}
.a-nav-pop__side {
  height: 100%;
  flex: 0 0 1.6rem;
  padding: 0.05rem 0 0 0;
  box-sizing: border-box;
}
.a-nav-pop__content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 0.1rem 0.1rem 0 0.5rem;
  box-sizing: border-box;
  min-height: 1rem;
  align-content: flex-start;
  flex: 1 1 auto;
  flex-wrap: wrap;
  border-left: 2px solid;
  border-image: linear-gradient(to bottom, #bcbcbd 85%, #f6f6f6) 1;
}
.a-nav-pop__item {
  margin-bottom: 0.17rem;
  width: calc((100% - 0.1rem) / 2);
  flex-grow: 0;
  flex-shrink: 0;
  font-size: 0.18rem;
}
.a-nav-pop__item:nth-child(2n) {
  margin-left: 0.1rem;
}
.a-nav-pop__title {
  font-size: 0.21rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.005rem;
  font-family: "sys", "Microsoft Yahei", sans-serif;
  color: #661c7e;
}
.a-nav-pop__text {
  color: #1a1a1a;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  font-family: "sys", "Microsoft Yahei", sans-serif;
  position: relative;
}
.a-nav-pop__text::before {
  width: 100%;
  height: 1px;
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  transform: scale(0);
  transform-origin: left center;
  background-color: #661c7e;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
}
@media (hover: hover) and (pointer: fine) {
  .a-nav-pop__text:hover {
    color: #661c7e;
    font-weight: bold;
  }
  .a-nav-pop__text:hover::before {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}

.o-header__hamburger {
  width: 0.4rem;
  height: 0.4rem;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  pointer-events: all;
  position: relative;
  margin-left: 0.2rem;
  background-color: #ffffff;
  border-radius: 50%;
  transition: transform 0.3s;
  cursor: pointer;
  transform: scale(1);
  display: none;
}
.-pc .o-header__hamburger:hover {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.o-header__hamburger.-active span {
  -webkit-transition-delay: 0s, 0s, 0s;
  transition-delay: 0s, 0s, 0s;
}
.o-header__hamburger.-active span::before {
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
}
.o-header__hamburger.-active span:nth-of-type(1) {
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.o-header__hamburger.-active span:nth-of-type(1)::before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.o-header__hamburger.-active span:nth-of-type(2) {
  opacity: 0;
}
.o-header__hamburger.-active span:nth-of-type(3) {
  width: 17px;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition-delay: 0.1s, 0.3s, 0.3s;
  transition-delay: 0.1s, 0.3s, 0.3s;
}
.o-header__hamburger.-active span:nth-of-type(3)::before {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.o-header__hamburger span {
  position: absolute;
  top: 50%;
  left: 50%;
  height: 2px;
  -webkit-transition:
    width 0.3s,
    opacity 0.3s,
    -webkit-transform 0.3s;
  transition:
    width 0.3s,
    opacity 0.3s,
    -webkit-transform 0.3s;
  transition:
    width 0.3s,
    transform 0.3s,
    opacity 0.3s;
  transition:
    width 0.3s,
    transform 0.3s,
    opacity 0.3s,
    -webkit-transform 0.3s;
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
}
.o-header__hamburger span::before {
  width: 100%;
  height: 100%;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-color: #7d212a;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition:
    transform 0.3s,
    -webkit-transform 0.3s;
  -webkit-transform: rotate(0);
  transform: rotate(0);
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}
.o-header__hamburger span:nth-of-type(1) {
  width: 17px;
  -webkit-transform: translate(-50%, -50%) translateY(-5px);
  transform: translate(-50%, -50%) translateY(-5px);
}
.o-header__hamburger span:nth-of-type(2) {
  width: 17px;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.o-header__hamburger span:nth-of-type(3) {
  width: 17px;
  -webkit-transform: translate(-50%, -50%) translate(0px, 5px);
  transform: translate(-50%, -50%) translate(0px, 5px);
}

.o-site-menu {
  width: 100%;
  height: 100vh;
  pointer-events: all;
  position: fixed;
  top: 0;
  left: 0;
  color: #1a1a1a;
}
.o-site-menu::before {
  width: 100%;
  height: 100%;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: #ffffff url("../images/deco/siteMenuBg.png") left bottom no-repeat;
  background-size: 100% auto;
  z-index: -1;
}
.o-site-menu.-open .o-site-menu__title span {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
@media (min-width: 768px) {
  .o-site-menu.-open .o-site-menu__list-item .a-accordion {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
  .o-site-menu.-open .o-site-menu__list-item:nth-child(0) .a-accordion {
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s;
  }
  .o-site-menu.-open .o-site-menu__list-item:nth-child(1) .a-accordion {
    -webkit-transition-delay: 0.2s;
    transition-delay: 0.2s;
  }
  .o-site-menu.-open .o-site-menu__list-item:nth-child(2) .a-accordion {
    -webkit-transition-delay: 0.3s;
    transition-delay: 0.3s;
  }
  .o-site-menu.-open .o-site-menu__list-item:nth-child(3) .a-accordion {
    -webkit-transition-delay: 0.4s;
    transition-delay: 0.4s;
  }
  .o-site-menu.-open .o-site-menu__list-item:nth-child(4) .a-accordion {
    -webkit-transition-delay: 0.5s;
    transition-delay: 0.5s;
  }
  .o-site-menu.-open .o-site-menu__list-item:nth-child(5) .a-accordion {
    -webkit-transition-delay: 0.6s;
    transition-delay: 0.6s;
  }
  .o-site-menu.-open .o-site-menu__list-item:nth-child(6) .a-accordion {
    -webkit-transition-delay: 0.7s;
    transition-delay: 0.7s;
  }
  .o-site-menu.-open .o-site-menu__list-item:nth-child(7) .a-accordion {
    -webkit-transition-delay: 0.8s;
    transition-delay: 0.8s;
  }
  .o-site-menu.-open .o-site-menu__list-item:nth-child(8) .a-accordion {
    -webkit-transition-delay: 0.9s;
    transition-delay: 0.9s;
  }
  .o-site-menu.-open .o-site-menu__list-item:nth-child(9) .a-accordion {
    -webkit-transition-delay: 1s;
    transition-delay: 1s;
  }
  .o-site-menu.-open .o-site-menu__list-item:nth-child(10) .a-accordion {
    -webkit-transition-delay: 1.1s;
    transition-delay: 1.1s;
  }
  .o-site-menu.-open .o-site-menu__list-item:nth-child(11) .a-accordion {
    -webkit-transition-delay: 1.2s;
    transition-delay: 1.2s;
  }
  .o-site-menu.-open .o-site-menu__list-item:nth-child(12) .a-accordion {
    -webkit-transition-delay: 1.3s;
    transition-delay: 1.3s;
  }
  .o-site-menu.-open .o-site-menu__list-item:nth-child(13) .a-accordion {
    -webkit-transition-delay: 1.4s;
    transition-delay: 1.4s;
  }
  .o-site-menu.-open .o-site-menu__list-item:nth-child(14) .a-accordion {
    -webkit-transition-delay: 1.5s;
    transition-delay: 1.5s;
  }
  .o-site-menu.-open .o-site-menu__list-item:nth-child(15) .a-accordion {
    -webkit-transition-delay: 1.6s;
    transition-delay: 1.6s;
  }
  .o-site-menu.-open .o-site-menu__list-item:nth-child(16) .a-accordion {
    -webkit-transition-delay: 1.7s;
    transition-delay: 1.7s;
  }
  .o-site-menu.-open .o-site-menu__list-item:nth-child(17) .a-accordion {
    -webkit-transition-delay: 1.8s;
    transition-delay: 1.8s;
  }
  .o-site-menu.-open .o-site-menu__list-item:nth-child(18) .a-accordion {
    -webkit-transition-delay: 1.9s;
    transition-delay: 1.9s;
  }
  .o-site-menu.-open .o-site-menu__list-item:nth-child(19) .a-accordion {
    -webkit-transition-delay: 2s;
    transition-delay: 2s;
  }
}
@media (max-width: 767px) {
  .o-site-menu.-open .o-site-menu__list {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition-delay: 0.2s;
    transition-delay: 0.2s;
  }
}
@media (max-width: 767px) {
  .o-site-menu.-open .m-link-guide {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition-delay: 0.4s;
    transition-delay: 0.4s;
  }
}
.o-site-menu__main {
  width: 100%;
  height: 100%;
  overflow: auto;
}
.o-site-menu__main .container {
  position: static;
  padding-top: 115px;
}
@media (max-width: 767px) {
  .o-site-menu__main .container {
    position: relative;
    padding-top: 90px;
    padding-bottom: 125px;
  }
}
@media (max-width: 767px) {
  .o-site-menu__main .container::after {
    font-size: 35px;
    line-height: 1.29;
  }
}
.o-site-menu__title {
  font-size: 36px;
  font-weight: bold;
  line-height: 1.3;
  letter-spacing: 0.5px;
  overflow: hidden;
  margin-bottom: 30px;
  font-family: "sys", "Microsoft Yahei", sans-serif;
  color: #6d217d;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.o-site-menu__title .search-icon {
  width: 25px;
  height: 25px;
  background-image: url("../images/public/icon_search_active.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
  display: none;
}
@media (max-width: 1299px) {
  .o-site-menu__title .search-icon {
    display: inline-block;
  }
}

@media (max-width: 1199px) {
  .o-site-menu__title {
    font-size: 28px;
    letter-spacing: 0.39px;
  }
}
@media (max-width: 767px) {
  .o-site-menu__title {
    font-size: 26px;
    letter-spacing: 0.36px;
  }
}
.o-site-menu__title span {
  display: block;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition:
    transform 0.3s,
    -webkit-transform 0.3s;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
}
.o-site-menu__list {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
@media (min-width: 768px) {
  .o-site-menu__list {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .o-site-menu__list > .o-site-menu__list-item:nth-child(3n + 1) {
    width: calc(33.33333% - 16px);
    max-width: calc(33.33333% - 16px);
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(33.33333% - 16px);
    flex: 0 0 calc(33.33333% - 16px);
  }
  .o-site-menu__list > .o-site-menu__list-item:nth-child(3n + 2) {
    width: calc(33.33333% - 16px);
    max-width: calc(33.33333% - 16px);
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(33.33333% - 16px);
    flex: 0 0 calc(33.33333% - 16px);
    margin-left: 24px;
  }
  .o-site-menu__list > .o-site-menu__list-item:nth-child(3n + 3) {
    width: calc(33.33333% - 16px);
    max-width: calc(33.33333% - 16px);
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(33.33333% - 16px);
    flex: 0 0 calc(33.33333% - 16px);
    margin-left: 24px;
  }
  .o-site-menu__list > .o-site-menu__list-item.-os-l-1 {
    padding-left: calc(8.33333% + 2px);
  }
  .o-site-menu__list > .o-site-menu__list-item.-os-r-1 {
    padding-right: calc(8.33333% + 2px);
  }
  .o-site-menu__list > .o-site-menu__list-item.-os-l-2 {
    padding-left: calc(16.66667% + 4px);
  }
  .o-site-menu__list > .o-site-menu__list-item.-os-r-2 {
    padding-right: calc(16.66667% + 4px);
  }
  .o-site-menu__list > .o-site-menu__list-item.-os-l-3 {
    padding-left: calc(25% + 6px);
  }
  .o-site-menu__list > .o-site-menu__list-item.-os-r-3 {
    padding-right: calc(25% + 6px);
  }
}
@media (max-width: 767px) {
  .o-site-menu__list {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    opacity: 0;
    -webkit-transition:
      opacity 0.3s ease,
      -webkit-transform 0.3s ease;
    transition:
      opacity 0.3s ease,
      -webkit-transform 0.3s ease;
    transition:
      opacity 0.3s ease,
      transform 0.3s ease;
    transition:
      opacity 0.3s ease,
      transform 0.3s ease,
      -webkit-transform 0.3s ease;
    -webkit-transform: translate(0, 30px);
    transform: translate(0, 30px);
  }
  .o-site-menu__list > .o-site-menu__list-item:nth-child(2n + 1) {
    width: calc(50% - 12px);
    max-width: calc(50% - 12px);
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(50% - 12px);
    flex: 0 0 calc(50% - 12px);
  }
  .o-site-menu__list > .o-site-menu__list-item:nth-child(2n + 2) {
    width: calc(50% - 12px);
    max-width: calc(50% - 12px);
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(50% - 12px);
    flex: 0 0 calc(50% - 12px);
    margin-left: 24px;
  }
  .o-site-menu__list > .o-site-menu__list-item.-os-l-1 {
    padding-left: calc(8.33333% + 2px);
  }
  .o-site-menu__list > .o-site-menu__list-item.-os-r-1 {
    padding-right: calc(8.33333% + 2px);
  }
  .o-site-menu__list > .o-site-menu__list-item.-os-l-2 {
    padding-left: calc(16.66667% + 4px);
  }
  .o-site-menu__list > .o-site-menu__list-item.-os-r-2 {
    padding-right: calc(16.66667% + 4px);
  }
  .o-site-menu__list > .o-site-menu__list-item.-os-l-3 {
    padding-left: calc(25% + 6px);
  }
  .o-site-menu__list > .o-site-menu__list-item.-os-r-3 {
    padding-right: calc(25% + 6px);
  }
  .o-site-menu__list > .o-site-menu__list-item.-os-l-4 {
    padding-left: calc(33.33333% + 8px);
  }
  .o-site-menu__list > .o-site-menu__list-item.-os-r-4 {
    padding-right: calc(33.33333% + 8px);
  }
  .o-site-menu__list > .o-site-menu__list-item.-os-l-5 {
    padding-left: calc(41.66667% + 10px);
  }
  .o-site-menu__list > .o-site-menu__list-item.-os-r-5 {
    padding-right: calc(41.66667% + 10px);
  }
}
.o-site-menu__list-child {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: 10px;
  max-height: 132px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .o-site-menu__list-child {
    display: block;
    max-height: none;
  }
}
.o-site-menu__list-item {
  margin-bottom: 120px;
  -webkit-transform: translateZ(1px);
  transform: translateZ(1px);
}
@media (max-width: 767px) {
  .o-site-menu__list-item {
    margin-bottom: 0;
  }
}
@media (min-width: 768px) {
  .o-site-menu__list-item .a-accordion {
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
    opacity: 0;
    -webkit-transition:
      opacity 0.4s,
      -webkit-transform 0.4s;
    transition:
      opacity 0.4s,
      -webkit-transform 0.4s;
    transition:
      transform 0.4s,
      opacity 0.4s;
    transition:
      transform 0.4s,
      opacity 0.4s,
      -webkit-transform 0.4s;
  }
}
.o-site-menu__list-item .a-plus {
  position: absolute;
  top: calc(50% - 5px);
  right: 5px;
  display: block;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.o-site-menu__list-item .a-plus::before,
.o-site-menu__list-item .a-plus::after {
  background-color: #1a1a1a;
}
.o-site-menu__list-head {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.5px;
  position: relative;
  padding-bottom: 10px;
  width: 100%;
  font-family: "sys", "Microsoft Yahei", sans-serif;
  border-bottom: 1px solid #a2a2a2;
}
@media (max-width: 767px) {
  .o-site-menu__list-head {
    font-size: 22px;
    line-height: 1.3;
  }
}
@media (max-width: 767px) {
  .o-site-menu__list-head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-right: 25px;
    word-break: break-all;
  }
  .o-site-menu__list-head.-active .a-plus::before {
    -webkit-transform: translate(-50%, -50%) rotate(90deg) scaleX(0);
    transform: translate(-50%, -50%) rotate(90deg) scaleX(0);
  }
}
.o-site-menu__child-list {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 10px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
}
@media screen and (max-width: 1200px) {
  .o-site-menu__child-list {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    max-height: none;
    min-height: auto;
  }
}
.-ie .o-site-menu__child-list {
  display: block;
  max-height: none;
}
.o-site-menu__child-list-item {
  width: 50%;
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  margin-bottom: 5px;
}
@media screen and (max-width: 1200px) {
  .o-site-menu__child-list-item {
    width: 100%;
  }
}
.-ie .o-site-menu__child-list-item {
  display: block;
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
}
.o-site-menu__child-list-link {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: normal;
  position: relative;
  font-family: "sys", "Microsoft Yahei", sans-serif;
}
.o-site-menu__child-list-link::before {
  width: 100%;
  height: 1px;
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  background-color: #661c7e;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: left center;
  transform-origin: left center;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition:
    transform 0.3s,
    -webkit-transform 0.3s;
}
.o-site-menu__child-list-link:hover {
  color: #661c7e;
}
.o-site-menu__child-list-link:hover::before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}
.o-site-menu .a-accordion__btn {
  pointer-events: none;
}
.o-site-menu .a-accordion__content {
  height: auto !important;
}
@media (max-width: 767px) {
  .o-site-menu .a-accordion__content {
    margin-bottom: 25px;
  }
}
.o-site-menu .m-link-guide {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 25px;
}
.o-site-menu .m-link-guide > .m-link-guide__item:nth-child(2n + 1) {
  width: calc(50% - 12px);
  max-width: calc(50% - 12px);
  -webkit-box-flex: 0;
  -ms-flex: 0 0 calc(50% - 12px);
  flex: 0 0 calc(50% - 12px);
}
.o-site-menu .m-link-guide > .m-link-guide__item:nth-child(2n + 2) {
  width: calc(50% - 12px);
  max-width: calc(50% - 12px);
  -webkit-box-flex: 0;
  -ms-flex: 0 0 calc(50% - 12px);
  flex: 0 0 calc(50% - 12px);
  margin-left: 24px;
}
.o-site-menu .m-link-guide > .m-link-guide__item.-os-l-1 {
  padding-left: calc(8.33333% + 2px);
}
.o-site-menu .m-link-guide > .m-link-guide__item.-os-r-1 {
  padding-right: calc(8.33333% + 2px);
}
.o-site-menu .m-link-guide > .m-link-guide__item.-os-l-2 {
  padding-left: calc(16.66667% + 4px);
}
.o-site-menu .m-link-guide > .m-link-guide__item.-os-r-2 {
  padding-right: calc(16.66667% + 4px);
}
.o-site-menu .m-link-guide > .m-link-guide__item.-os-l-3 {
  padding-left: calc(25% + 6px);
}
.o-site-menu .m-link-guide > .m-link-guide__item.-os-r-3 {
  padding-right: calc(25% + 6px);
}
.o-site-menu .m-link-guide > .m-link-guide__item.-os-l-4 {
  padding-left: calc(33.33333% + 8px);
}
.o-site-menu .m-link-guide > .m-link-guide__item.-os-r-4 {
  padding-right: calc(33.33333% + 8px);
}
.o-site-menu .m-link-guide > .m-link-guide__item.-os-l-5 {
  padding-left: calc(41.66667% + 10px);
}
.o-site-menu .m-link-guide > .m-link-guide__item.-os-r-5 {
  padding-right: calc(41.66667% + 10px);
}
@media (max-width: 767px) {
  .o-site-menu .m-link-guide {
    opacity: 0;
    -webkit-transform: translate(0, 30px);
    transform: translate(0, 30px);
    -webkit-transition:
      opacity 0.3s ease,
      -webkit-transform 0.3s ease;
    transition:
      opacity 0.3s ease,
      -webkit-transform 0.3s ease;
    transition:
      transform 0.3s ease,
      opacity 0.3s ease;
    transition:
      transform 0.3s ease,
      opacity 0.3s ease,
      -webkit-transform 0.3s ease;
  }
}
.o-site-menu .m-link-guide__item {
  margin-bottom: 50px;
}

/*  搜索dialog结开始----------------------------------------------- */

.search-dialog-box {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1000000;
  opacity: 0;
  visibility: hidden;
  transition: 0.6s;
  /* overflow: hidden; */
}
.search-dialog-box:before {
  content: "";
  position: absolute;
  top: 0;
  height: 0;
  background: #671c7f;
  background-size: 100% auto;
  transition: 0.6s;
  left: 0;
  right: 0;
  z-index: 1;
  opacity: 0.7;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}
.search-dialog-box.on:before {
  height: 100%;
}
.search-dialog-box .bubbles-bg {
  opacity: 0;
  visibility: hidden;
  display: none;
}
.search-dialog-box .search-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  margin: 0;
  background: rgba(0, 0, 0, 0.7);
  background-size: cover;
  background-repeat: no-repeat;
  /* z-index: 1; */
  transform-origin: center center;
  transition: height 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}
.search-dialog-box .wrap-inner {
  transform: translateY(100%);
  transition: 0.6s;
}

.search-dialog {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  z-index: 2;
}
.search-dialog .search-tit {
  font-size: 2.75rem;
  line-height: 3.5rem;
  color: #fff;
  text-align: center;
  overflow: hidden;
  display: none;
}
.search-dialog .search-inner {
  overflow: hidden;
  margin-top: 0;
}
.search-dialog .search-input {
  width: 8rem;
  margin: 0 auto;
  padding: 0 0 0 0.24rem;
  background-color: #fff;
  box-sizing: border-box;
  transition: all 0.3s;
  max-width: 94%;
  border-radius: 0.06rem;
  overflow: hidden;
}
.search-dialog .search-input input[type="text"] {
  float: left;
  height: 0.6rem;
  width: calc(100% - 0.64rem);
  background-color: transparent;
  font-size: 0.2rem;
  line-height: 0.08rem;
  color: #333;
  transition: all 0.3s;
}
.search-dialog .search-input input[type="text"]::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.search-dialog .search-input input[type="text"]:-moz-placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.search-dialog .search-input input[type="text"]::-moz-placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.search-dialog .search-input input[type="text"]:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.search-dialog .search-input input[type="submit"],
.search-dialog .search-input .clear-btn {
  float: right;
  height: 0.6rem;
  width: 0.64rem;
  cursor: pointer;
}

.search-dialog .search-input input[type="submit"] {
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center;
  background: #671c7f url(../images/public/icon_search.png) center no-repeat;
  background-size: 0.3rem;
}
.search-dialog .search-input .clear-btn {
  background-color: rgba(0, 0, 0, 0.2);
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("../images/public/close-btn.png");
  background-size: 3.5rem;
  border-radius: 100%;
  margin-right: 1rem;
  display: none;
}
.search-dialog .search-input.on {
  background-color: #fff;
}

.search-dialog .hot-search {
  font-size: 0;

  width: 19.5rem;
  margin: 0.6rem auto 0;
  box-sizing: border-box;
  padding: 0 0.6rem;
  overflow: hidden;
}
.search-dialog .hot-search .hot-tit,
.search-dialog .hot-search .hot-link {
  display: inline-block;
  display: inline;
  zoom: 1;
  vertical-align: top;
}
.search-dialog .hot-search .hot-tit {
  font-size: 0.375rem;
  line-height: 0.5rem;

  color: #fff;
  font-weight: bold;
  padding-left: 0.6rem;
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 0.5rem;
}
.search-dialog .hot-link {
  margin-left: 1rem;
}

.search-dialog .hot-link a {
  display: inline-block;
  display: inline;
  zoom: 1;
  font-size: 0.375rem;
  line-height: 0.5rem;
  margin-right: 0.75rem;
  color: #fff;
  padding-bottom: 5px;
  position: relative;
}

.search-dialog .hot-link a:before {
  content: "";
  position: absolute;
  left: 0%;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: #fff;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.3s;
}
.search-dialog-box .bottom-box {
  position: absolute;
  left: 0;
  bottom: 5.1%;
  width: 100%;
}
.search-dialog-box .bottom-box .share-box {
  overflow: hidden;
}
.search-dialog-box .bottom-box .copy {
  font-size: 0.35rem;
  line-height: 0.5rem;
  color: #fff;
  font-family: "gilroy-regular";
  margin-top: 0.5rem;
  overflow: hidden;
}

.header-right.is-open .bubbles-bg {
  visibility: visible;
  opacity: 1;
}
.header-right.is-open .search-btn .con-box {
  display: none;
}
.header-right.is-open .close-btn {
  display: block;
}
.header-right.is-open .item .search-bg {
  transform: scale(1);
}
.search-dialog-box.on {
  opacity: 1;
  visibility: visible;
}
.search-dialog-box.on .search-bg {
  height: 100vh;
}

.search-dialog-box.on .bubbles-bg {
  opacity: 1;
  visibility: visible;
}
.search-dialog-box.on .wrap-inner {
  transform: translateY(0);
}

.f-cb h3 {
  font-size: 0.3rem;
  color: #fff;
  text-align: center;
  margin-bottom: 0.3rem;
}

.pub-close {
  position: absolute;
  width: 0.48rem;
  height: 0.48rem;
  z-index: 10;
  right: 0.24rem;
  top: 0.24rem;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 100%;
}
.pub-close .bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #1c5ab7;
  transform: scale(0);
  border-radius: 100%;
  transition: transform 0.3s;
}
.pub-close i {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: 0.12rem;
  background-repeat: no-repeat;
  background-image: url(../images/public/close-btn.svg);
  transition: 0.6s;
}
.pub-close i:hover {
  transform: rotate(180deg);
}

@keyframes spin {
  to {
    transform: rotate(1turn);
  }
}
@keyframes spin2 {
  to {
    transform: rotate(-1turn);
  }
}
@keyframes spin-reverse {
  from {
    transform: rotate(1turn);
  }
}
@keyframes spin-reverse2 {
  from {
    transform: rotate(-1turn);
  }
}

/*  搜索dialog结束----------------------------------------------- */
/* 页面内容开始----------------------------------------------- */
/* 页面内容结束----------------------------------------------- */
/* footer开始----------------------------------------------- */
footer {
  padding: 0.65rem 0;
  background: #1a1a1a;
  position: relative;
  z-index: 10;
}
.fotContainer {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.fotContainer .fot1 {
  width: 50%;
}
.fotContainer .fot1 img {
  max-width: 503px;
}
.fotContainer .line {
  display: inline-block;
  width: 0.02rem;
  height: 0.2rem;
  background-color: #c7c7c7c0;
  margin: 0 0.1rem;
  position: relative;
  top: 0.04rem;
}
.fotContainer p {
  color: #fff;
  font-size: 0.19rem;
  letter-spacing: 0.02rem;
  line-height: 1.6;
  margin-top: 0.1rem;
}
.fotContainer p.address {
  margin-top: 0.2rem;
}
.fotContainer p.address span {
  display: block;
  font-size: 0.13rem;
  color: #c7c7c7;
  margin-bottom: 0.05rem;
}
.fotContainer p.address span:nth-child(2) {
  margin-bottom: 0;
}
.fotContainer p.address .adminLogin {
  font-size: 0.14rem;
  color: #c7c7c7;
  text-decoration: underline;
  margin-left: 1.3rem;
  letter-spacing: normal;
}
.fotContainer .fot4 {
  width: auto;
  text-align: center;
}
.fotContainer .fot4 img {
  width: 1.5rem;
  cursor: pointer;
}
.fotContainer .fot4 p {
  font-size: 0.13rem;
  color: #c7c7c7;
  margin-top: 0.1rem;
}
/* footer结束----------------------------------------------- */

/* 内页banner开始------------------------------------------- */
.o-news-banner {
  position: relative;
  overflow: visible;
  height: 906px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 0;
}
.o-news-banner::before {
  width: 100%;
  height: 100%;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.05) 24%, rgba(0, 0, 0, 0.05));
  z-index: 0;
}
@media (max-width: 1919px) {
  .o-news-banner {
    height: 655px;
  }
}
@media (max-width: 1439px) {
  .o-news-banner {
    height: 680px;
  }
}
@media (max-width: 1199px) {
  .o-news-banner {
    height: 480px;
  }
}
@media (max-width: 767px) {
  .o-news-banner {
    height: 360px;
  }
}
.o-news-banner.-size-sm {
  height: 500px;
}
@media (max-width: 1199px) {
  .o-news-banner.-size-sm {
    height: 450px;
  }
}
@media (max-width: 767px) {
  .o-news-banner.-size-sm {
    height: 330px;
  }
}
.o-news-banner-img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.o-news-banner-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.o-news-banner__content {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  padding-bottom: 180px;
  z-index: 1;
}
@media (max-width: 1199px) {
  .o-parallax-banner__content {
    padding-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .o-parallax-banner__content {
    padding-bottom: 20px;
  }
}
.o-news-banner__deco-bar {
  width: 1px;
  height: 160px;
  position: absolute;
  bottom: 95px;
  left: 50%;
  background-color: #6d217d;
  z-index: 4;
}
@media (max-width: 1199px) {
  .o-news-banner__deco-bar {
    bottom: 50px;
    height: 120px;
  }
}
@media (max-width: 767px) {
  .o-news-banner__deco-bar {
    bottom: 0;
    height: 80px;
  }
}
.o-parallax-banner__decos {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  overflow: visible;
  z-index: 2;
}
body.-mobile .o-parallax-banner__decos {
  overflow: hidden;
}
.o-parallax-banner__decos::before {
  width: 100%;
  height: 100%;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.05) 24%, rgba(0, 0, 0, 0.05));
}
.o-parallax-banner__deco {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  position: absolute;
}
.o-parallax-banner__deco.-dotted,
.o-parallax-banner__deco.-footer {
  bottom: 0;
  left: 0;
  width: 100%;
}
.o-parallax-banner__deco.-dotted img,
.o-parallax-banner__deco.-footer img {
  width: 100%;
}
.o-parallax-banner__deco.-dotted {
  z-index: 1;
}
@media (min-width: 768px) {
  .o-parallax-banner__deco.-dotted {
    -webkit-transform: translate(0, 70px);
    transform: translate(0, 70px);
  }
}
.o-parallax-banner__deco.-footer {
  z-index: 4;
}
.o-parallax-banner__deco.-footer.-last::before {
  width: 100%;
  height: 500px;
  content: "";
  position: absolute;
  top: calc(100% - 2px);
  left: 0;
  display: block;
  background-color: #ffffff;
}
.o-parallax-banner__deco.-footer[data-id="1"] {
  z-index: 2;
}
.o-parallax-banner__deco.-footer[data-id="2"] {
  z-index: 4;
}
.o-parallax-banner__deco.-footer[data-id="3"] {
  z-index: 6;
}
.o-parallax-banner__deco.-footer[data-id="4"] {
  z-index: 8;
}
.o-parallax-banner__deco.-footer[data-id="5"] {
  z-index: 10;
}
body.-mobile .o-parallax-banner__deco.-deco {
  overflow: hidden;
}
.o-parallax-banner__deco.-deco img {
  margin: 0 auto;
  width: 90%;
}
.o-news-banner__title {
  font-size: 50px;
  font-weight: 600;
  line-height: 1.63;
  letter-spacing: 5px;
  text-shadow: 0 10px 20px rgba(0, 0, 0, 0.35);
  margin: 0 auto;
  max-width: 1000px;
  text-align: center;
  color: #ffffff;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.7);
}
@media (max-width: 1199px) {
  .o-news-banner__title {
    font-size: 40px;
    letter-spacing: 0.56px;
  }
}
@media (max-width: 767px) {
  .o-news-banner__title {
    font-size: 35px;
    letter-spacing: 0.49px;
  }
}
.o-parallax-banner__cover {
  position: absolute;
  top: 35px;
  width: 100%;
  height: 906px;
  z-index: 3;
  pointer-events: none;
}
@media (max-width: 1919px) {
  .o-parallax-banner__cover {
    height: 655px;
  }
}
@media (max-width: 1439px) {
  .o-parallax-banner__cover {
    height: 680px;
  }
}
@media (max-width: 1199px) {
  .o-parallax-banner__cover {
    height: 480px;
  }
}
@media (max-width: 767px) {
  .o-parallax-banner__cover {
    top: 35px;
    height: 360px;
  }
}

.o-parallax-banner__cover .o-parallax-banner__deco.-deco[data-id="1"],
.o-parallax-banner .o-parallax-banner__deco.-deco[data-id="1"] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  bottom: 180px;
  right: 0;
  width: 405px;
  z-index: 12;
}
.o-parallax-banner__cover .o-parallax-banner__deco.-deco[data-id="1"]::before,
.o-parallax-banner .o-parallax-banner__deco.-deco[data-id="1"]::before {
  content: "";
  display: block;
  width: 50px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50px;
  flex: 0 0 50px;
  /* background: aqua; */
}
@media (max-width: 1199px) {
  .o-parallax-banner__cover .o-parallax-banner__deco.-deco[data-id="1"]::before,
  .o-parallax-banner .o-parallax-banner__deco.-deco[data-id="1"]::before {
    width: 10px;
    -ms-flex-preferred-size: 10px;
    flex-basis: 10px;
  }
}
.o-parallax-banner__cover .o-parallax-banner__deco.-deco[data-id="1"] img,
.o-parallax-banner .o-parallax-banner__deco.-deco[data-id="1"] img {
  height: 100%;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
@media (max-width: 1199px) {
  .o-parallax-banner__cover .o-parallax-banner__deco.-deco[data-id="1"],
  .o-parallax-banner .o-parallax-banner__deco.-deco[data-id="1"] {
    bottom: 90px;
    width: 180px;
  }
}
@media (max-width: 767px) {
  .o-parallax-banner__cover .o-parallax-banner__deco.-deco[data-id="1"],
  .o-parallax-banner .o-parallax-banner__deco.-deco[data-id="1"] {
    bottom: 50px;
    width: 90px;
  }
}
.o-parallax-banner__cover .o-parallax-banner__deco.-deco[data-id="2"],
.o-parallax-banner .o-parallax-banner__deco.-deco[data-id="2"] {
  bottom: 80px;
  left: 50px;
  z-index: 12;
}
@media (max-width: 1199px) {
  .o-parallax-banner__cover .o-parallax-banner__deco.-deco[data-id="2"],
  .o-parallax-banner .o-parallax-banner__deco.-deco[data-id="2"] {
    bottom: 50px;
    left: 30px;
    width: 62.5px;
  }
}
@media (max-width: 767px) {
  .o-parallax-banner__cover .o-parallax-banner__deco.-deco[data-id="2"],
  .o-parallax-banner .o-parallax-banner__deco.-deco[data-id="2"] {
    bottom: 20px;
    left: 13px;
    width: 32px;
    z-index: 12;
  }
}
.o-parallax-banner__cover .o-parallax-banner__deco.-deco[data-id="3"],
.o-parallax-banner .o-parallax-banner__deco.-deco[data-id="3"] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  bottom: 200px;
  left: -5px;
  width: 440px;
  z-index: 2;
}
.o-parallax-banner__cover .o-parallax-banner__deco.-deco[data-id="3"]::after,
.o-parallax-banner .o-parallax-banner__deco.-deco[data-id="3"]::after {
  content: "";
  display: block;
  width: 34px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 34px;
  flex: 0 0 34px;
}
@media (max-width: 1199px) {
  .o-parallax-banner__cover .o-parallax-banner__deco.-deco[data-id="3"]::after,
  .o-parallax-banner .o-parallax-banner__deco.-deco[data-id="3"]::after {
    width: 10px;
    -ms-flex-preferred-size: 10px;
    flex-basis: 10px;
  }
}
.o-parallax-banner__cover .o-parallax-banner__deco.-deco[data-id="3"] img,
.o-parallax-banner .o-parallax-banner__deco.-deco[data-id="3"] img {
  height: 100%;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
@media (max-width: 1199px) {
  .o-parallax-banner__cover .o-parallax-banner__deco.-deco[data-id="3"],
  .o-parallax-banner .o-parallax-banner__deco.-deco[data-id="3"] {
    bottom: 80px;
    width: 204px;
  }
}
@media (max-width: 767px) {
  .o-parallax-banner__cover .o-parallax-banner__deco.-deco[data-id="3"],
  .o-parallax-banner .o-parallax-banner__deco.-deco[data-id="3"] {
    bottom: 45px;
    width: 100px;
    z-index: 12;
  }
}
/* 内页banner结束------------------------------------------- */

/* 了解更多按钮 */
.btn-learn {
  width: 1.5rem;
  height: 0.44rem;
  line-height: 0.44rem;
  text-align: center;
  font-size: 0.14rem;
  color: #671c7f;
  border-radius: 0.22rem;
  border: 1px solid #671c7f;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
}
.m-circle-hover__text {
  position: relative;
  z-index: 2;
  transition: color 0.3s;
  /* background-color: palegoldenrod; */
}
.m-circle-hover__circle {
  position: absolute;
  top: 0;
  left: 0;
  width: 283%;
  background-color: #671c7f;
  border-radius: 50%;
  z-index: 1;
  transition: transform 0.3s ease-out;
  transform: translate(-50%, -50%) scale(0);
}
.m-circle-hover__circle::before {
  content: "";
  display: block;
  padding-bottom: 100%;
}
.m-circle-hover.-active .m-circle-hover__circle {
  transition: transform 0.6s ease-in-out;
  transform: translate(-50%, -50%) scale(1);
}
/* 旋转动画 */
.a-rotate-gear {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0;
  pointer-events: none;
  overflow: hidden;
}
.a-rotate-gear__main {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1800px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.a-rotate-gear__main .js-parallax-item {
  transition: all 0.6s linear;
}
@media (max-width: 767px) {
  .a-rotate-gear__main {
    width: 150%;
  }
}
.a-rotate-gear svg {
  width: 100%;
}
.a-rotate-gear svg .stroke {
  -webkit-animation: gear 150s linear infinite;
  animation: gear 150s linear infinite;
  -webkit-transform-origin: center;
  transform-origin: center;
}
@-webkit-keyframes gear {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(-360deg);
    transform: rotate(-360deg);
  }
}
@keyframes gear {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(-360deg);
    transform: rotate(-360deg);
  }
}
.a-rotate-gear svg .fill {
  -webkit-animation: gear 70s linear infinite;
  animation: gear 70s linear infinite;
  -webkit-transform-origin: center;
  transform-origin: center;
}
@keyframes gear {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(-360deg);
    transform: rotate(-360deg);
  }
}
@-webkit-keyframes loading {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes loading {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

#gotop {
  position: fixed;
  z-index: 90;
  bottom: 0.32rem;
  right: 0.1rem;
  box-sizing: border-box;
  text-align: center;
  cursor: pointer;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
  width: 0.46rem;
  height: 0.46rem;
  line-height: 0.46rem;
  background: #661b7f;
  opacity: 1;
  visibility: visible;
  overflow: hidden;
  border-radius: 50%;
}
#gotop.hide {
  height: 0;
  opacity: 0;
  visibility: hidden;
}
#gotop svg {
  color: #fff;
}
@media (max-width: 768px) {
  #gotop {
    right: 0;
    transform: scale(0.7);
  }
}
.layui-box a:hover {
  color: #671c7f;
}

/* 同步建院头部样式开始========================================= */
.o-header.sync .o-header__main::before {
  transform: scaleY(1);
}
.o-header.sync .o-header__main::after {
  transform: scaleY(0);
}

.o-header__home {
  width: 0.4rem;
  height: 0.4rem;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  pointer-events: all;
  position: relative;
  margin-left: 0.2rem;
  background-color: #ffffff;
  border-radius: 50%;
  transition: transform 0.3s;
  cursor: pointer;
  transform: scale(1);
  display: flex;
  align-items: center;
  justify-content: center;
  display: none;
}

.o-header__home img {
  width: 75%;
  height: 75%;
  display: block;
}

.-pc .o-header__home:hover {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

@media (max-width: 1199px) {
  .o-header__main .o-header__nav-content .o-header__home {
    width: 0.5rem;
    height: 0.5rem;
  }
}

/* 给需要隐藏导航的增加类名 */
.-hide-nav .o-header__nav-content {
  margin-top: 0;
}
.-hide-nav .o-header__list {
  /* display: none; */
  opacity: 0 !important;
}
.-hide-nav .m-header-tour {
  display: none;
}

.-hide-nav .o-header__hamburger {
  display: block !important;
}

.-hide-nav .o-header__home {
  display: flex !important;
}

.-hide-nav-meiyu .o-header__list {
  /* display: none; */
  opacity: 0 !important;
}
.-hide-nav-meiyu .m-header-tour .m-header-tour__search {
  display: none;
}

.-hide-nav-meiyu .o-header__hamburger {
  display: block !important;
}

.-hide-nav-meiyu .o-header__home {
  display: flex !important;
}
