/*html {
filter:progid:DXImageTransForm.Microsoft.BasicImage(grayscale=1);
-webkit-filter: saturate(0);
} */
html,
body {
  height: 100%;
  overflow: hidden;
}
.layout {
  position: relative;
  margin: auto;
  height: 100%;
  max-width: 1024px;
  overflow: hidden;
}
.header {
  position: absolute;
  height: 55px;
  width: 100%;
  left: 0;
  top: 0;
  background-color: #fff;
  z-index: 9999;
  text-align: center;
}
.header__button {
  position: absolute;
  width: 24px;
  height: 24px;
  left: 15px;
  top: 15px;
}
.header__button-img {
  width: 100%;
  height: 100%;
}
.logo {
  height: 31px;
  margin-top: 12px;
}
.page-main {
  position: relative;
  overflow: auto;
  padding-top: 55px;
  height: 100%;
  box-sizing: border-box;
}
.page-body {
  box-sizing: border-box;
  overflow: hidden;
}
.footer__contact {
  background-color: #f08300;
  overflow: hidden;
  text-align: left;
  padding: 15px 40px 30px;
  color: #fff;
  margin-top: -2px;
}
.footer__contact .title {
  font-size: 20px;
  color: #fff;
  margin: 5px;
}
.footer__top {
  height: 40px;
  background: url(../../images/mobile/bg.png) bottom no-repeat;
  background-size: 100% 100%;
}
.menu-section {
  position: absolute;
  z-index: 9999;
  left: -100%;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
}
.menu-section.open {
  left: 0;
  animation: menuOpen 0.3s;
}
.menu-section.close {
  left: -100%;
  animation: menuClose 0.3s;
}
.side-menu {
  position: absolute;
  width: 50%;
  left: 0;
  top: 55px;
  bottom: 0;
  z-index: 1;
}
.side-menu .menuItem {
  display: block;
  height: 44px;
  line-height: 44px;
  text-align: center;
  color: #fff;
}
.side-menu .menuItem.active {
  background-color: #fff;
  color: #f08300;
}
.side-menu-mask {
  position: absolute;
  width: 50%;
  left: 0;
  top: 55px;
  bottom: 0;
  background-color: #f08300;
  opacity: 0.9;
  z-index: 0;
}
.current-nav {
  position: absolute;
  left: 0;
  top: 55px;
  width: 100%;
  height: 40px;
  z-index: 9998;
  box-sizing: border-box;
  background-color: #fff;
  padding: 0 15px;
  overflow: hidden;
}
.current-nav__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
}
.current-nav__item {
  flex-grow: 1;
  text-align: center;
}
.current-nav__link {
  display: inline-block;
  margin: auto;
  height: 40px;
  line-height: 40px;
  box-sizing: border-box;
}
.current-nav__link.active {
  color: #f08300;
  border-bottom: #f08300 1px solid;
}
.select-nav {
  position: absolute;
  left: 0;
  top: 55px;
  width: 100%;
  z-index: 9996;
  box-sizing: border-box;
  background-color: #fff;
  padding: 0 15px;
  overflow: visible;
  border-bottom: #f2f2f2 1px solid;
  height: 136px;
}
.select-nav__title {
  font-size: 18px;
  padding: 10px 0;
  text-align: left;
}
.select-nav .at-select__selection {
  text-align: left;
}
.select-item {
  margin-bottom: 15px;
}
@keyframes menuOpen {
  from {
    left: -100%;
  }
  to {
    left: 0;
  }
}
@keyframes menuClose {
  from {
    left: 0;
  }
  to {
    left: -100%;
  }
}
