/*           common         */
body {
  min-width: 1260px;
}

.box-container {
  width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.header .box-container,
.out-menu {
  padding: 0 30px;
}

.xs-show,
.xs-show-inline-block {
  display: none !important;
}

.dropdown-item-btn {
  position: relative;
}

.dropdown-item-arrow {
  display: none;
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -6px;
  width: 20px;
  height: 12px;
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: -webkit-transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.dropdown-item-arrow:before,
.dropdown-item-arrow:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6PX;
  height: 1PX;
  margin-left: -3PX;
  margin-top: 2PX;
  background: #202020;
  border-radius: 1PX;
  -webkit-transition: background 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), margin-top 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: background 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), margin-top 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: background 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), margin-top 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: background 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), margin-top 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.dropdown-item-arrow:before {
  -webkit-transform: rotate(-45deg) translate(2.5PX);
  transform: rotate(-45deg) translate(2.5PX);
}

.dropdown-item-arrow:after {
  -webkit-transform: rotate(45deg) translateX(-2.5PX);
  transform: rotate(45deg) translateX(-2.5PX);
}

.dropdown-item-arrow-right {
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

.dropdown-item.open .dropdown-item-arrow:before,
.dropdown-item.open .dropdown-item-arrow:after {
  margin-top: -2PX;
}

.dropdown-item.open .dropdown-item-arrow:before {
  -webkit-transform: rotate(45deg) translateX(2.5PX);
  transform: rotate(45deg) translateX(2.5PX);
}

.dropdown-item.open .dropdown-item-arrow:after {
  -webkit-transform: rotate(-45deg) translateX(-2.5PX);
  transform: rotate(-45deg) translateX(-2.5PX);
}

.footer .dropdown-item-arrow:before,
.footer .dropdown-item-arrow:after {
  background: #fff;
}

/*           header         */

.header {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #202020;
  /*min-width: 1260px;*/
  height: 40px;
  z-index: 51;
}

.header .inner-container {
  height: 100%;
  color: white;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header .inner-container .logo {
  display: -webkit-flex;
  display: flex;
  flex-shrink: 0;
  align-items: center;
}

.header .inner-container .logo .logo-main {
  height: 29px;
  /*width: 80px;*/
  cursor: pointer;
}

.header .inner-container .global-switch {
  display: -webkit-flex;
  display: flex;
  flex-grow: 1;
  justify-content: flex-end;
  font-size: 12px;
  margin-right: 50px;
}

.header .inner-container .global-switch .zh-option {
  color: white;
  margin-right: 24px;
  cursor: pointer;
}

.header .inner-container .global-switch .en-option {
  color: rgba(255, 255, 255, .5);
  cursor: pointer;
}

.header .inner-container .user-center {
  height: 100%;
  display: -webkit-flex;
  display: flex;
  flex-shrink: 0;
  font-size: 12px;
  align-items: center;
  position: relative;
}

.header .inner-container .user-center .login {
  box-sizing: border-box;
  padding: 0 8px;
  position: relative;
  cursor: pointer;
}

.header .inner-container .user-center .login:after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  height: 8px;
  width: 1px;
  background-color: rgba(255, 255, 255, .5);
}

.header .inner-container .user-center .sign-in {
  box-sizing: border-box;
  padding: 0 8px;
  cursor: pointer;
}

.header .inner-container .user-center .user-icon {
  display: none;
  height: 24px;
  width: 24px;
  margin-left: 12px;
  border-radius: 100%;
  cursor: pointer;
}

.header .inner-container .user-center .username {
  display: none;
  cursor: pointer;
}

.header .inner-container .user-center .username:hover {
  color: #00CAC4;
}

.header .inner-container .user-center .username:before {
  content: '欢迎您，';
}

.header .inner-container .user-center .user-menu:before {
  content: '';
  display: block;
  height: 0;
  width: 0;
  position: absolute;
  top: -12px;
  right: 50px;
  border-top: 6px solid transparent;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid white;
}

.header .inner-container .user-center .user-menu {
  display: none;
  position: absolute;
  right: 0;
  bottom: 0;
  transform: translateY(99%);
  transform: translateY(calc(100% - 2px));
  background-color: white;
  color: #333;
  width: 110px;
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
  padding-top: 10px;
}

.header .inner-container .user-center .user-menu .user-option {
  width: 100%;
  font-size: 14px;
  color: rgba(49, 51, 54, 0.90);
  line-height: 36px;
  text-align: center;
  cursor: pointer;
  display: block;
}

.header .inner-container .user-center .user-menu .user-option {
  display: block;
  text-decoration: none;
}

.header .inner-container .user-center .user-menu .user-option:hover {
  font-weight: 500;
}


.menu {
  position: fixed;
  top: 40px;
  width: 100%;
  background-color: white;
  /*min-width: 1260px;*/
  height: 60px;
  overflow: visible;
  z-index: 50;
}

.menu .out-menu {
  background-color: white;
  height: 60px;
  display: flex;
  display: -webkit-flex;
  align-items: center;
}

.menu .out-menu .out-option.disable {
  min-width: 100px;
  opacity: .6;
}

.menu .out-menu .out-option.disable:hover:before {
  content: 'Coming soon';
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
  white-space: nowrap;
  line-height: 30px;
  font-size: 14px;
  background-color: rgba(0, 0, 0, 1);
  color: white;
}

.menu .out-menu .out-option {
  position: relative;
  padding: 5px 0;
  margin-right: 48px;
  color: #313336;
  font-size: 14px;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  cursor: pointer;
  text-decoration: none;
}

.menu .out-menu .out-option img.icon {
  height: 18px;
  width: 18px;
  margin-right: 6px;
}

.menu .out-menu .out-option.selected {
  font-weight: 500;
}

.menu .sub-menu {
  display: none;
  position: absolute;
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  width: 100%;
  background-color: white;
  min-width: 1200px;
  box-shadow: inset 0 5px 5px -5px rgba(0, 0, 0, .1), 0 20px 20px -20px rgba(0, 0, 0, .1);
}

.menu .sub-menu .inner-container {
  /*max-height: 500px;*/
  margin: 0 auto;
  width: 1200px;
  display: flex;
  display: -webkit-flex;
  align-items: flex-start;
  box-sizing: border-box;
  padding-top: 20px;
  position: relative;
  overflow: hidden;
}

.menu .sub-menu .inner-container .sub-type .sub-option:nth-child(1):after {
  /*content: '';*/
  /*display: block;*/
  /*pointer-events: none;*/
  /*position: absolute;*/
  /*left: 0;*/
  /*bottom: 0;*/
  /*height: 100px;*/
  /*width: 180px;*/
  /*z-index: 27;*/
  /*background: linear-gradient(top, transparent, rgba(255,255,255,.8), #fff);*/
  /*background: -webkit-linear-gradient(top, transparent, rgba(255,255,255,.8), #fff);*/
  /*background: -moz-linear-gradient(top, transparent, rgba(255,255,255,.8), #fff);*/
  /*background: -ms-linear-gradient(top, transparent, rgba(255,255,255,.8), #fff);*/
}

.menu .sub-menu .inner-container .sub-type {
  max-height: 370px;
  overflow-y: auto;
  padding: 0 0 40px 0;
  box-sizing: border-box;
  flex-shrink: 0;
  z-index: 26;
}

.menu .sub-menu .inner-container .sub-type::-webkit-scrollbar {
  width: 0;
}

.menu .sub-menu .inner-container .sub-type .sub-option {
  color: #313336;
  font-size: 16px;
  line-height: 80px;
  border-right: thin solid #E5E5E5;
  width: 180px;
  text-align: right;
  box-sizing: border-box;
  padding: 0 36px;
  cursor: pointer;
}

.menu .sub-menu .inner-container .sub-type .sub-option.selected {
  font-weight: 600;
  border-color: #4F89FF;
}

.menu .sub-menu .inner-container .single-product-out {
  z-index: 25;
  /*display: flex;*/
  flex-direction: column;
  background-color: white;
  display: none;
  /*width: 1024px;*/
  width: 100%;
  padding-bottom: 30px;
  padding-top: 20px;
}

.menu .sub-menu .inner-container .single-product {
  transform: translateX(-1px);
  border-left: thin solid #e5e5e5;
  /*max-height: 360px;*/
  max-height: 600px;
  overflow-y: auto;
  /*overflow: hidden;*/
  flex-grow: 1;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  box-sizing: border-box;
  padding: 0 49px;
}

.menu .sub-menu .inner-container .single-product-out.open .single-product {
  max-height: 600px;
  overflow-y: auto;
}

.menu .sub-menu .inner-container .single-product-out.open .single-product::-webkit-scrollbar {
  width: 0;
}

.menu .sub-menu .inner-container .single-product .product-option {
  /*height: 158px;*/
  width: 220px;
  overflow: hidden;
  /*margin: 0 17px 20px;*/
  /* margin: 0 30px; */
  cursor: pointer;
  font-size: 18px;
  /*flex-basis: 16.666%;*/
}

.menu .sub-menu .inner-container .single-product .product-option a {
  display: block;
  position: relative;
  color: #313336;
  text-decoration: none;
}

.menu .sub-menu .inner-container .single-product .product-option:hover a {
  color: #00CAC4;
}

.menu .sub-menu .inner-container .single-product .product-option:hover .product-icon {
  transform: scale(1.08);
}

.menu .sub-menu .inner-container .single-product .product-option.disable a:before {
  content: 'Coming soon';
  display: block;
  position: absolute;
  width: 100%;
  font-size: 16px;
  line-height: 40px;
  text-align: center;
  left: 0;
  top: 50%;
  color: white;
  background-color: rgba(0, 0, 0, .8);
  opacity: 0;
  transition: .5s;
}

.menu .sub-menu .inner-container .single-product .product-option.disable:hover a:before {
  opacity: 1;
  margin-top: -20px;
}

.menu .sub-menu .inner-container .single-product .product-option.disable a {
  color: gray;
  opacity: .5;
}

.menu .sub-menu .inner-container .single-product .product-option.disable:hover a {
  color: gray;
  opacity: .5;
}

.menu .sub-menu .inner-container .single-product .product-option.disable:hover .product-icon {
  transform: none;
}

/* .menu .sub-menu .inner-container .single-product .product-option:nth-child(6n) {
  margin-right: 0;
} */

.menu .sub-menu .inner-container .single-product .product-option .product-icon {
  margin: 0 auto 20px;
  display: block;
  height: 112px;
  width: 112px;
  transition: .5s;
}

.menu .sub-menu .inner-container .single-product .product-option .product-info {
  font-size: 18px;
  text-align: center;
  box-sizing: border-box;
  padding: 0 6px;
}

.menu .sub-menu .inner-container .single-product-out .show-more-single {
  width: 993px;
  height: 38px;
  box-sizing: border-box;
  background-color: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  /*align-self: flex-end;*/
  align-self: center;
  color: rgba(49, 51, 54, .7);
  font-size: 14px;
  cursor: pointer;
  margin-top: 16px;
  margin-bottom: 22px;
}

.menu .sub-menu .inner-container .single-product-out .show-more-single .icon-s {
  margin-left: 6px;
  transform: rotate(90deg);
  transition: .5s;
  opacity: .7;
}

.menu .sub-menu .inner-container .single-product-out.open .show-more-single .icon-s {
  transform: rotate(-90deg);
}


.menu .sub-menu .inner-container .single-product-out .show-more-link a {
  width: 100%;
  display: flex;
  align-items: center;
  color: rgba(49, 51, 54, .7);
  justify-content: center;
  text-decoration: none;
}

.menu .sub-menu .inner-container .single-product-out .show-more-link {
  width: 993px;
  height: 38px;
  box-sizing: border-box;
  background-color: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  /*align-self: flex-end;*/
  align-self: center;
  color: rgba(49, 51, 54, .7);
  font-size: 14px;
  cursor: pointer;
  margin: 16px auto;
  /*margin-bottom: 22px;*/
  position: absolute;
  bottom: 0;
}

.menu .sub-menu .inner-container .single-product-out .icon-s {
  display: inline-block;
  margin-left: 6px;
  width: 18px;
  height: 18px;
  background: url(https://p3.ssl.qhimg.com/t01fec1c471693449a1.png) no-repeat;
  background-size: contain;
  /*transition: .5s;
  opacity: .7;*/
}

.menu .sub-menu .inner-container .single-product-out.open .show-more-link .icon-s {
  transform: rotate(-90deg);
}

.menu .sub-menu-service .inner-container {
  min-height: 330px;
}

.menu .sub-menu-service .inner-container .service-list {
  /*margin-top: -30px;*/
  display: flex;
  height: 100%;
  align-items: center;
  width: 900px;
  justify-content: space-between;
  box-sizing: border-box;
  padding: 0 25px 0 0;
  position: relative;
}

.menu .sub-menu-service .inner-container .service-list:after {
  content: '';
  display: block;
  /*position: absolute;*/
  height: 238px;
  width: 1px;
  background-color: #E5E5E5;
}

.menu .sub-menu-service .inner-container .service-list .service-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  /*margin: 0 47px;*/
  width: 110px;
}

.menu .sub-menu-service .inner-container .service-list .service-option a {
  display: block;
  text-decoration: none;
}

.menu .sub-menu-service .inner-container .service-list .service-option .service-icon {
  display: block;
  height: 80px;
  width: 80px;
  transition: .5s;
}

.menu .sub-menu-service .inner-container .service-list .service-option:hover .service-icon {
  transform: scale(1.08);
}

.menu .sub-menu-service .inner-container .service-list .service-option .desc {
  font-size: 14px;
  color: rgba(49, 51, 54, 0.90);
  text-align: center;
  margin-top: 20px;
}

.menu .sub-menu-service .inner-container .service-list .service-option:hover .desc {
  color: #00CAC4;
}

.menu .sub-menu-service .inner-container .hot-question {
  margin-left: 25px;
  padding-bottom: 25px;
  flex-shrink: 0;
}

.menu .sub-menu-service .inner-container .hot-question .title {
  font-size: 18px;
  color: rgba(49, 51, 54, 0.90);
  margin-bottom: 10px;
  font-weight: 500;
}

.menu .sub-menu-service .inner-container .hot-question .content .option {
  font-size: 16px;
  color: rgba(49, 51, 54, 0.90);
  line-height: 24px;
  margin-bottom: 8px;
}

.menu .sub-menu-service .inner-container .hot-question .content .option:hover a {
  color: #00CAC4;
}

.menu .sub-menu-service .inner-container .hot-question .content .option a {
  color: rgba(49, 51, 54, 0.90);
  text-decoration: none;
}

.menu .sub-menu-service .inner-container .hot-question .show-more-question {
  font-size: 14px;
  color: rgba(49, 51, 54, 0.70);
  display: flex;
  align-items: center;
  cursor: pointer;
  text-decoration: none;
}

.menu .sub-menu-service .inner-container .hot-question .show-more-question:hover img {
  transform: scale(1.08);
}

.menu .sub-menu-service .inner-container .hot-question .show-more-question img {
  display: block;
  height: 18px;
  width: 18px;
  margin-left: 6px;
  transition: .5s;
}


.menu .sub-menu-qrcode {
}

.menu .sub-menu-qrcode .inner-container {
  box-sizing: border-box;
  padding-bottom: 20px;
  display: flex;
  justify-content: space-around;
}

.menu .sub-menu-qrcode .inner-container .service-qrcode {
}

.menu .sub-menu-qrcode .inner-container .service-qrcode img {
  display: block;
  height: 120px;
  width: 120px;
  margin: 0 auto;
}

.menu .sub-menu-qrcode .inner-container .service-qrcode .tip {
  text-align: center;
  color: #313336;
  margin-top: 15px;
  font-size: 14px;
}

.menu .sub-menu-qrcode .inner-container .service-qrcode .tip-d {
  text-align: center;
  color: #313336;
  margin-top: 15px;
  font-size: 12px;
  box-sizing: border-box;
  padding: 0 20px;
}

.main {
  padding-top: 100px;
}

/*           h5-header         */
.header .menu-toggle {
  display: none;
  padding: 5px;
}

.header .menu-toggle-icon {
  position: relative;
  width: 18px;
  height: 18px;
}

.header .menu-toggle b {
  display: block;
  position: absolute;
  left: 50%;
  width: 17px;
  margin-left: -8.5px;
  height: 2px;
  border-radius: 2px;
  background: #fff;
  -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-origin: 50% 50%;
  transform-origin: 50% 50%;
}

.header .menu-toggle .mt-top {
  top: 2px;
}

.header .menu-toggle .mt-mid {
  top: 50%;
  -webkit-transform: translate3d(0, -50%, 0);
  transform: translate3d(0, -50%, 0);
}

.header .menu-toggle .mt-btm {
  width: 11px;
  bottom: 2px;
}

.header .m-logo {
  display: none;
  height: 24px;
}

.header .m-logo-360 {
  height: 20px;
}

.header .m-logo img {
  height: 100%;
  vertical-align: top;
}

.header .i-user {
  display: none;
  width: 28px;
  height: 28px;
  background-repeat: no-repeat;
}

.menu {
  border-top: 1px solid #E5E5E5;
}

.menu .menu-title,
.menu .menu-submenu-title {
  display: none;
}

.menu .menu-title {
  font-weight: bold;
  line-height: 56px;
  font-size: 16px;
  color: #313336;
  padding: 0 20px;
  position: relative;
  margin-top: -1px;
}

.menu .menu-title:after {
  top: 0;
  content: '';
  position: absolute;
  left: 20px;
  right: 0;
  height: 1px;
  background: #E5E5E5;
}

.menu .menu-submenu-title {
  line-height: 34px;
  font-size: 14px;
  color: rgba(49, 51, 54, 0.9);
}

.menu .dropdown-item-arrow {
  right: 20px;
}

.menu-open-show {
  display: none;
}

.menu-open .header .i-user {
  background-repeat: no-repeat;
}

.menu-open .header .inner-container .global-switch .zh-option {
  color: #202020;
}

.menu-open .menu-open-show {
  display: block;
}

.menu-open .menu-open-hide {
  display: none;
}

.main {
  padding-top: 100px;
}

.app-select {
  height: 48px;
  line-height: 48px;
  width: 290px;
  box-sizing: border-box;
  border: 1px solid #B4B4B4;
  border-radius: 4px;
  position: relative;
  z-index: 20;
  background: #fff;
}

.app-select-label {
  box-sizing: border-box;
  padding: 0 30px 0 12px;
}

.app-select-control {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  border: none;
  z-index: 20;
  opacity: 0;
}

.app-select:after {
  content: '';
  height: 16px;
  width: 16px;
  display: block;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("https://p0.ssl.qhimg.com/t018216bcc4efaafe25.png");
  -webkit-transform: translateY(-50%) rotate(-90deg);
  transform: translateY(-50%) rotate(-90deg);
  position: absolute;
  right: 14px;
  top: 50%;
  cursor: pointer;
}


.header .i-user {
  background-position: 0px 0px
}

.menu-open .header .i-user {
  background-position: 0px -38px
}

.header .i-user, .menu-open .header .i-user {
  background-size: 28px 66px;
  background-image: url(https://p0.ssl.qhimg.com/t01101589d73f2d933b.png)
}

@media (min-width: 992px) {
  .lg-show {
    display: block !important;
  }

  .dropdown-item-menu.lg-show {
    height: auto !important;
  }


  /*--pc shop*/
  .menu .sub-menu-shop {
    max-width: 100px;
    left: 50%;
    min-width: fit-content;
    transform: translate(176%,100%);
  }
  .menu .sub-menu-shop .dropdown-item-menu{
    padding:2px 0 20px;
  }
  .menu .sub-menu-shop .dropdown-item-menu a{
      display: block;
      width:100%;
      padding:0 20px;
      font-size: 14px;
      color: rgba(49,51,54,0.90);
      padding-top:20px;


  }



  /* -- pc contact us */
  .menu .sub-menu-contact {
    width: 240px;
    height: 112px;
    left: 50%;
    min-width: fit-content;
    transform: translate(100%,100%);
  }

  .menu .sub-menu-contact .dropdown-item-menu .contact-title {
    font-size: 12px;
    color: rgba(51,55,65,0.98);
    text-align: center;
    line-height: 20px;
    margin-top: 22px;
    cursor: pointer;
  }

  .menu .sub-menu-contact .dropdown-item-menu .contact-adress {
    font-size: 16px;
    text-align: center;
    line-height: 20px;
    text-decoration: underline;
    margin-top: 14px;
    font-weight: 600;
    cursor: pointer;
  }

  .menu .sub-menu-contact .dropdown-item-menu .contact-adress a{
    color: #313336;
  }
  /* pc contact us -- */
}

@media (max-width: 991px) {
  body {
    min-width: 320px;
  }

  .menu-open,
  .menu-open body {
    height: 100%;
    overflow-y: hidden;
  }

  .main {
    padding-top: 44px !important;
  }

  .box-container {
    width: auto !important;
  }

  .dropdown-item-arrow {
    display: block;
  }

  .xs-hide {
    display: none !important;
  }

  .xs-show {
    display: block !important;
  }

  .xs-show-inline-block {
    display: inline-block !important;
  }

  .header {
    height: 44px;
  }

  .header .box-container {
    padding: 0 10px;
  }

  .header .inner-container .user-center .user-menu {
    right: -10px;
  }

  .header .inner-container .user-center .user-menu:before {
    right: 15px;
  }

  .header .inner-container .user-center .username {
    display: none !important;
  }

  .header .inner-container .user-center .user-icon {
    width: 23px;
    height: 23px;
    margin: 0;
  }

  .header .inner-container .global-switch {
    display: block;
    text-align: right;
    margin-right: 0;
  }

  .header .inner-container .global-switch .zh-option {
    margin-right: 0;
  }

  .header .inner-container .pc-logo {
    display: none;
  }

  .header .inner-container .user-center .login {
    font-size: 0;
    padding: 0;
  }

  .header .inner-container .user-center .sign-in {
    display: none;
  }

  .header .menu-toggle,
  .header .m-logo,
  .header .i-user {
    display: block;
  }

  .header .m-logo {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate3d(-50%, -50%, 0);
    transform: translate3d(-50%, -50%, 0);
  }

  .menu {
    display: none;
    position: absolute;
    top: 44px;
    left: 0;
    right: 0;
    bottom: 0;
    height: calc(100vh - 44px);
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .menu .menu-title,
  .menu .menu-submenu-title {
    display: block;
  }

  .menu .out-menu,
  .menu .sub-type {
    display: none;
  }

  .menu .sub-menu,
  .menu .single-product-out {
    display: block !important;
    position: relative;
    -webkit-transform: none;
    transform: none;
    box-shadow: none;
  }

  .menu .sub-menu {
    min-width: 0;
  }

  .menu .sub-menu:last-child {
    margin-bottom: constant(safe-area-inset-bottom);
    margin-bottom: env(safe-area-inset-bottom);
  }

  .menu .sub-menu .inner-container {
    padding-top: 0;
    display: block;
    min-height: 0;
  }

  .menu .sub-menu .inner-container .single-product-out {
    width: auto;
    padding: 0 30px;
  }

  .menu .sub-menu .inner-container .single-product-out .show-more-single,
  .menu .sub-menu .inner-container .single-product-out .show-more-link {
    width: auto;
    position: static;
  }

  .menu .sub-menu .inner-container .single-product-out .show-more-single {
    display: none;
  }

  .menu .sub-menu .inner-container .single-product {
    margin: 0 -30px;
    padding: 0 0 0 8px;
    display: block;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    white-space: nowrap;
    max-height: none;
    border-left: none;
    -webkit-transform: none;
    transform: none;
  }

  .menu .sub-menu .inner-container .single-product .product-option {
    display: inline-block;
    width: 114px;
    height: 113px;
    margin: 15px 10px 10px;
    vertical-align: top;
  }

  .menu .sub-menu .inner-container .single-product .product-option .product-icon {
    width: 57px;
    height: 57px;
  }

  .menu .sub-menu .inner-container .single-product .product-option .product-info {
    font-size: 11px;
    color: rgba(49, 51, 54, 0.9);
    white-space: normal;
  }

  .menu .sub-menu-service .inner-container .service-list {
    width: auto;
    height: auto;
    padding: 20px;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .menu .sub-menu-service .inner-container .service-list .service-option {
    width: 50%;
    margin: 10px 0;
  }

  .menu .sub-menu-service .inner-container .service-list:after {
    display: none;
  }

  .menu .sub-menu-service .inner-container .hot-question .title {
    font-size: 14px;
  }

  .menu .sub-menu-service .inner-container .hot-question .content .option {
    font-size: 12px;
  }

  .menu .sub-menu-qrcode .inner-container {
    margin-left: 20px;
    margin-right: 20px;
  }

  .menu .sub-menu-qrcode .inner-container .service-qrcode {
    float: left;
    width: 50%;
    margin-bottom: 10px;
  }

  .menu .sub-menu-qrcode .inner-container .service-qrcode img {
    width: 25vw;
    height: 25vw;
    margin: 0 auto;
  }

  .menu .sub-menu-qrcode .inner-container .tip {
    margin-top: 10px;
  }

  .menu .sub-menu-shop {
    text-decoration: none;
  }

  .menu .sub-menu-shop .icon {
    width: 18px;
    height: 18px;
    margin-right: 10px;
    vertical-align: middle;
    position: relative;
    top: -1PX;
  }

  .dropdown-item-menu {
    display: none;
  }

  .menu-open .header {
    background: #fff;
  }

  .menu-open .header .menu-toggle b {
    background: #202020;
    width: 100%;
    top: 50%;
    margin-top: -1px;
  }

  .menu-open .header .menu-toggle .mt-top,
  .menu-open .header .menu-toggle .mt-btm {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  .menu-open .header .menu-toggle .mt-mid {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }

  .menu-open .menu {
    display: block;
  }

  .app-select {
    display: block;
    width: auto;
    margin: 0 20px;
    font-size: 12px;
    height: 36px;
    line-height: 36px;
  }

  .app-select:after {
    right: 8px;
  }

 /*shop*/
 .menu .sub-menu-shop .dropdown-item-menu{
  padding: 0 20px 10px;
}
 .menu .sub-menu-shop .dropdown-item-menu a{
   color: rgba(49,51,54,0.90);
   padding:0 4px;

 }

  /* -- mobile contact us */
  .menu .sub-menu-contact .dropdown-item-menu{
    padding: 0 20px;
  }

  .menu .sub-menu-contact .dropdown-item-menu .contact-title {
    font-size: 12px;
    color: rgba(49,51,54,0.90);
    letter-spacing: 0;
    line-height: 14px;
    margin-top: 10px;
  }

  .menu .sub-menu-contact .dropdown-item-menu .contact-adress {
    font-size: 14px;
    letter-spacing: 0;
    line-height: 14px;
    margin-top: 13px;
    font-weight: 600;
  }

  .menu .sub-menu-contact .dropdown-item-menu .contact-adress a {
    color: rgba(49,51,54,0.90);
  }
  /* mobile contact us -- */
}