@charset "UTF-8";

@font-face {
  font-family: "sys";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src:
    url("../fonts/ns.woff") format("woff"),
    url("../fonts/ns.ttf") format("truetype");
}

/* 加载完成 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: 3rem;
  /* 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-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;
}

.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;
}

/* 公共媒体查询设置html字体*/
@media screen and (min-width: 2560px) {
  html {
    font-size: 120px !important;
  }
}

@media screen and (min-width: 3000px) {
  html {
    font-size: 140px !important;
  }
}

@media screen and (min-width: 3840px) {
  html {
    font-size: 160px !important;
  }
}

@media screen and (min-width: 1940px) {
  html {
    font-size: 110px !important;
  }
}
@media screen and (max-width: 1940px) {
  html {
    font-size: 100px !important;
  }
}
@media screen and (max-width: 1800px) {
  html {
    font-size: 95px !important;
  }
}
@media screen and (max-width: 1600px) {
  html {
    font-size: 90px !important;
  }
}
@media screen and (max-width: 1400px) {
  html {
    font-size: 90px !important;
  }
}
@media screen and (max-width: 1024px) {
  html {
    font-size: 85px !important;
  }
}
@media screen and (max-width: 900px) {
  html {
    font-size: 85px !important;
  }
}
@media screen and (max-width: 640px) {
  html {
    font-size: 80px !important;
  }
}
@media screen and (max-width: 480px) {
  html {
    font-size: 80px !important;
  }
}
@media screen and (max-width: 375px) {
  html {
    font-size: 75px !important;
  }
}
@media screen and (max-width: 360px) {
  html {
    font-size: 70px !important;
  }
}
@media screen and (max-width: 350px) {
  html {
    font-size: 65px !important;
  }
}

@media (min-width: 1px) {
  .o-header__main .m-header-tour {
    display: none;
  }
  .o-header__main .o-header__nav-content .o-header__list {
    display: none;
  }
  .o-header__main .o-header__nav-content .o-header__hamburger {
    /* width: 0.5rem;
    height: 0.5rem; */
    display: block !important;
  }
}
