html {
  font-family: SourceHanSansSC, SourceHanSansSC;
}
/* 禁用iOS弹性滚动 */
html, body {
  overscroll-behavior: none;
}
/* 导航栏 */
.navbar {
  width: 8.8rem;
  height: 0.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
}
.navbar .logo {
  height: 100%;
  display: block;
}
.menu-wrap {
  position: relative;
}
.menu {
  display: flex;
  height: 0.45rem;
  align-self: flex-end;
  margin: 0;
  padding: 0;
}
.menu-item {
  position: relative;
  list-style: none;
}
.menu-item > a {
  display: block;
  text-decoration: none;
  padding: 0 0.2rem;
  padding-top: 0.1rem;
  box-sizing: border-box;
  font-weight: 400;
  font-size: 0.18rem;
  color: #656F78;
  line-height: 0.18rem;
}
.menu-item .sub-menu {
  display: none;
  position: absolute;
  top: 0.38rem;
  left: 0;
  width: 1.54rem;
  z-index: 99;
}
.menu-item.active .sub-menu {
  display: block;
}
.sub-menu-item {
  list-style: none;
  opacity: 0;
  cursor: pointer;
  background: #FFF;
}
.sub-menu-item > a {
  display: block;
  text-decoration: none;
  width: 100%;
  height: 0.42rem;
  line-height: 0.42rem;
  padding-left: 0.2rem;
  box-sizing: border-box;
  font-weight: 400;
  font-size: 0.14rem;
  color: #333;
  cursor: pointer;
  transition: all .3s ease-in-out;
}
.sub-menu-item > a:hover {
  background: #2DA0BC;
  color: #FFF;
}
.menu-item.active .sub-menu-item {
  display: block;
}
.menu-item.active .sub-menu-item:nth-of-type(1) {
  animation: menuAnimation .3s ease-in-out forwards;
  animation-delay: .1s;
}
.menu-item.active .sub-menu-item:nth-of-type(2) {
  animation: menuAnimation .3s ease-in-out forwards;
  animation-delay: .2s;
}
.menu-item.active .sub-menu-item:nth-of-type(3) {
  animation: menuAnimation .3s ease-in-out forwards;
  animation-delay: .3s;
}
.menu-item.active .sub-menu-item:nth-of-type(4) {
  animation: menuAnimation .3s ease-in-out forwards;
  animation-delay: .4s;
}
.menu-item.active .sub-menu-item:nth-of-type(5) {
  animation: menuAnimation .3s ease-in-out forwards;
  animation-delay: .5s;
}
.menu-item.active .sub-menu-item:nth-of-type(6) {
  animation: menuAnimation .3s ease-in-out forwards;
  animation-delay: .6s;
}
.menu-item.active .sub-menu-item:nth-of-type(7) {
  animation: menuAnimation .3s ease-in-out forwards;
  animation-delay: .7s;
}
.active-line {
  position: absolute;
  left: 0;
  top: 0.35rem;
  width: 0.76rem;
  height: 0.03rem;
  background: #2DA0BC;
  transition: all 0.3s ease-in-out;
  z-index: 100;
}
/* 底部菜单 */
footer {
  border-top: 1px solid #F0F0F0;
  text-align: center;
}
.footer-top {
  border-bottom: 1px solid #F0F0F0;
}
.footer-top-container {
  width: 8.8rem;
  height: 3.72rem;
  margin: 0 auto;
  padding-top: 0.36rem;
  display: flex;
  justify-content: space-between;
}
.about-us {
  width: 1.21rem;
  text-align: left;
}
.news {
  width: 0.8rem;
  text-align: left;
}
.brand {
  width: 1.28rem;
  text-align: left;
}
.information {
  width: 0.64rem;
  text-align: left;
}
.about-us .title, .news .title, .brand .title, .information .title {
  height: 0.16rem;
  font-weight: bold;
  font-size: 0.16rem;
  color: #333333;
  line-height: 0.16rem;
}
.footer-menu {
  display: block;
  height: 0.16rem;
  margin-top: 0.16rem;
  font-weight: 400;
  font-size: 0.16rem;
  color: #8D8D8D;
  line-height: 0.16rem;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s;
}
.footer-menu:hover {
  color: #2DA0BC;
}
.news, .brand, .information {
  margin-left: 0.33rem;
}
.footer-top-container .left {
  display: flex;
}
.footer-top-container .right img {
  width: 1.23rem;
  height: 1.23rem;
  background: #D8D8D8;
}
.footer-bottom {
  width: 8.8rem;
  height: 0.63rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-bottom span {
  display: inline-block;
  margin-left: 0.36rem;
  height: 0.16rem;
  font-weight: 400;
  font-size: 0.12rem;
  color: #8D8D8D;
  line-height: 0.16rem;
  cursor: pointer;
  transition: all 0.3s;
}
.footer-bottom span:first-child {
  margin-left: 0;
}
.footer-bottom span:hover {
  color: #2DA0BC;
}
@keyframes menuAnimation {
	from {
    opacity: 0;
    transform: translateX(30px) rotateY(90deg);
  }
	to {
    opacity:1;
    transform: translateX(0) rotateY(0);
  }
}
/* 回到顶部 */
.back-to-top {
  position: fixed;
  left: 50%;
  bottom: 0.74rem;
  width: 8.8rem;
  height: 0.56rem;
  transform: translateX(-50%);
  z-index: 2000;
  display: none;
}
.back-to-top > div {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: flex-end;
}

.back-to-top img {
  width: 0.56rem;
  height: 0.56rem;
  cursor: pointer;
  display: block;
}

/* 默认状态图片 */
.back-to-top img {
  content: url('../../assets/common/backToTop.png');
}


/* 激活状态图片 */
.back-to-top img.active {
  content: url('../../assets/common/backToTop-active.png');
}

.empty {
  display: none;
  width: 1.6rem;
  margin: 0.63rem auto;
}
.empty img {
  width: 1.6rem;
  height: 1.6rem;
  display: block;
}
.empty-text {
  height: 0.22rem;
  font-weight: 400;
  font-size: 0.12rem;
  color: #C2C2C2;
  line-height: 0.22rem;
  text-align: center;
}

/* 列表END */
._page_container {
  margin: 0.85rem auto;
}

.toast_bg {
  z-index: 9999999 !important;
}
#nprogress .bar {
  z-index: 9999999 !important;
}