/*公共顶部导航*/
/*jq-mobile的盒子*/
.ui-loader {
  display: none;
}
html {
  width: 100%;
  overflow-x: hidden;
}
body {
  width: 100%;
  margin: 0 0;
  overflow-x: hidden;
}
/*顶部通栏*/
header {
  position: fixed;
  width: 100%;
  height: 1.25333333rem;
  z-index: 100;
}
/*导航栏底色盒子*/
#nav-bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #000000;
  opacity: 0;
}
/*loading动画*/
.loading {
  width: 100%;
  height: 100%;
  min-height: 1080px;
  z-index: 10;
  position: fixed;
}
#wrap {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  overflow: hidden;
  width: 100%;
  height: 100%;
}
#wrap canvas {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  outline: 1px solid #fff;
}
/*导航栏*/
#nav-bar {
  position: relative;
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 0 0.4rem;
  z-index: 5;
}
#nav-bar .logo {
  display: block;
  width: 3.12rem;
  height: 0.69333333rem;
  align-self: center;
}
/*左侧logo*/
#logo {
  width: 3.12rem;
  height: 0.69333333rem;
  align-self: center;
}
/*手写三条横线*/
.menuDomsView {
  width: 1rem;
  height: 1rem;
  align-self: center;
  z-index: 22;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
}
.menuDomsView .menu-doms {
  width: 0.58666667rem;
  user-select: none;
  -webkit-user-select: none;
  align-self: center;
}
/*三条横线默认状态*/
.menuDomsView .menu-doms .menu-dom {
  position: relative;
  display: block;
  background: #fff;
  height: 0.08rem;
  width: 0.58666667rem;
  top: 0;
  border-radius: 0.05333333rem;
  transition: background 400ms ease, transform 300ms ease, top 300ms ease;
  -webkit-transition: background 400ms ease, transform 300ms ease, top 300ms ease;
  -webkit-transform-origin: center center;
  transform-origin: center center;
  user-select: none;
  -webkit-user-select: none;
}
.menuDomsView .menu-doms .menu-dom:nth-child(2) {
  margin: 0.10666667rem 0;
}
/*横线变叉后样式*/
.menuDomsView.menu-active .menu-doms .menu-dom {
  top: .16rem;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.menuDomsView.menu-active .menu-doms .menu-dom:nth-child(1) {
  top: .15rem;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.menuDomsView.menu-active .menu-doms .menu-dom:nth-child(2) {
  opacity: 0;
}
.menuDomsView.menu-active .menu-doms .menu-dom:nth-child(3) {
  top: -0.21rem;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
/*弹出的隐藏菜单*/
.menus {
  width: 100%;
  height: 0;
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
  z-index: 8;
  opacity: 1;
  overflow: hidden;
  transition: height 0.35s ease-in 200ms;
  -webkit-transition: height 0.35s ease-in 200ms;
  background: url("../images/icon/hmBG.png");
  background-size: 100% 100%;
  transform: translateY(0);
  -webkit-transform: translateY(0);
}
/*弹出menu时添加的类名*/
.menus-show {
  height: 100%;
  opacity: 1;
  transform: translateY(0);
  -webkit-transform: translateY(0);
  z-index: 11;
}
.menus-list {
  width: 100%;
  position: absolute;
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  top: 2.5rem;
  left: 0;
  opacity: 1;
}
.menus-item {
  text-align: center;
  margin-top: 0.6rem;
}
.menu-title {
  font-family: PingFangSC-Regular, serif;
  font-size: 19px;
  color: #FFFFFF;
  letter-spacing: 6px;
  line-height: 25px;
}
.menu-title-en {
  font-family: PingFangSC-Light;
  font-size: 8px;
  color: #FFFFFF;
  letter-spacing: 5px;
  text-align: center;
  line-height: 15px;
}
.menus-item-show {
  height: auto;
  transition: height 0.3s ease-in-out;
  -webkit-transition: height 0.3s ease-in-out;
}
/*menu列表里的每一项展示的动画*/
.menus .menus-list > a {
  width: 100%;
  text-align: center;
  height: auto;
  opacity: 0;
  pointer-events: none;
  -webkit-transform: scale(1.2) translateY(-0.55rem);
  -ms-transform: scale(1.2) translateY(-0.55rem);
  transform: scale(1.2) translateY(-0.55rem);
  -webkit-transition: opacity 0.35s ease-out, -webkit-transform 0.35s ease-out;
  transition: opacity 0.35s ease-out, -webkit-transform 0.35s ease-out;
  transition: opacity 0.35s ease-out, transform 0.35s ease-out;
  transition: opacity 0.35s ease-out, transform 0.35s ease-out, -webkit-transform 0.35s ease-out;
}
.menus .menus-list > a:nth-child(1) {
  -webkit-transition-delay: 400ms, 400ms;
  transition-delay: 400ms, 400ms;
}
.menus .menus-list > a:nth-child(2) {
  -webkit-transition-delay: 350ms, 350ms;
  transition-delay: 350ms, 350ms;
}
.menus .menus-list > a:nth-child(3) {
  -webkit-transition-delay: 300ms, 300ms;
  transition-delay: 300ms, 300ms;
}
.menus .menus-list > a:nth-child(4) {
  -webkit-transition-delay: 250ms, 250ms;
  transition-delay: 250ms, 250ms;
}
.menus .menus-list > a:nth-child(5) {
  -webkit-transition-delay: 200ms, 200ms;
  transition-delay: 200ms, 200ms;
}
.menus .menus-list > a:nth-child(6) {
  -webkit-transition-delay: 150ms, 150ms;
  transition-delay: 150ms, 150ms;
}
.menus .menus-list > a:nth-child(7) {
  -webkit-transition-delay: 100ms, 100ms;
  transition-delay: 100ms, 100ms;
}
.menus.menus-show .menus-list > a {
  opacity: 1;
  pointer-events: auto;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
}
.menus.menus-show .menus-list > a:nth-child(1) {
  -webkit-transition-delay: 450ms, 450ms;
  transition-delay: 450ms, 450ms;
}
.menus.menus-show .menus-list > a:nth-child(2) {
  -webkit-transition-delay: 500ms, 500ms;
  transition-delay: 500ms, 500ms;
}
.menus.menus-show .menus-list > a:nth-child(3) {
  -webkit-transition-delay: 550ms, 550ms;
  transition-delay: 550ms, 550ms;
}
.menus.menus-show .menus-list > a:nth-child(4) {
  -webkit-transition-delay: 600ms, 600ms;
  transition-delay: 600ms, 600ms;
}
.menus.menus-show .menus-list > a:nth-child(5) {
  -webkit-transition-delay: 650ms, 650ms;
  transition-delay: 650ms, 650ms;
}
.menus.menus-show .menus-list > a:nth-child(6) {
  -webkit-transition-delay: 700ms, 700ms;
  transition-delay: 700ms, 700ms;
}
.menus.menus-show .menus-list > a:nth-child(7) {
  -webkit-transition-delay: 750ms, 750ms;
  transition-delay: 750ms, 750ms;
}
.tool-info {
  font-family: PingFangSC-Medium, serif;
  font-size: 14px;
  color: #FFFFFF;
  letter-spacing: 1px;
  background: rgba(0, 0, 0, 0.56);
  border-radius: 5px;
  height: 2rem;
  position: absolute;
  top: 1rem;
  text-align: center;
  display: none;
}
.tool-info:nth-child(1) {
  font-family: PingFangSC-Medium, serif;
  font-size: 14px;
  color: #FFFFFF;
  letter-spacing: 2.5px;
}
.tool-info > img {
  height: 100%;
}
#qq-num {
  left: .8rem;
  padding: 12px;
}
#wechat-num {
  left: 3.2rem;
}
#email-num {
  left: 4rem;
  padding: 12px;
}
#phone-num {
  left: 5.3rem;
  padding: 12px;
}
#qq-title {
  letter-spacing: 2px;
}
#email-title {
  letter-spacing: 4px;
}
/*footer*/
/***********除首页外的  footer页脚*************/
#footer {
  width: 100%;
  height: 6.58666667rem;
  border-top: 1px solid #212730;
  background: url("../images/icon/footerBG_other.jpg");
  -webkit-background-size: 100% 100%;
  background-size: 100% 100%;
  /*icons*/
  /*info*/
  /*url*/
  /*btmfooter*/
}
#footer .chat-infos {
  position: relative;
}
#footer .methodIcons {
  width: 60%;
  margin: 0 auto;
  margin-top: 1rem;
  display: flex;
  display: -webkit-flex;
  justify-content: space-around;
}
#footer .methodIcons .qq,
#footer .methodIcons .wechat,
#footer .methodIcons .email,
#footer .methodIcons .phone {
  width: 0.85333333rem;
  height: 0.85333333rem;
}
#footer .methodIcons .qq a,
#footer .methodIcons .wechat a,
#footer .methodIcons .email a,
#footer .methodIcons .phone a {
  display: block;
  width: 0.85333333rem;
  height: 0.85333333rem;
}
#footer .methodIcons .qq a img,
#footer .methodIcons .wechat a img,
#footer .methodIcons .email a img,
#footer .methodIcons .phone a img {
  width: 100%;
}
#footer .info {
  width: 92%;
  margin: 0.53333333rem auto;
}
#footer .info p {
  font-family: PingFangSC-Regular;
  font-size: 13px;
  color: #FFFFFF;
  letter-spacing: 3px;
  line-height: 20px;
  opacity: .85;
}
#footer .url {
  width: 97%;
  display: flex;
  display: -webkit-flex;
  justify-content: space-around;
}
#footer .url a {
  font-family: PingFangSC-Regular;
  font-size: 12px;
  color: #FFFFFF;
  text-align: center;
  line-height: 18px;
}
#footer .url img {
  width: 1px;
  height: 0.34133333rem;
}
#footer .btmfooter {
  width: 92%;
  margin: 0 auto;
  margin-top: 0.53333333rem;
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
}
#footer .btmfooter p {
  opacity: 0.5;
  font-family: PingFangSC-Regular;
  font-size: 12px;
  color: #DFDEDE;
  letter-spacing: 0;
  text-align: center;
  line-height: 12px;
}
