.header {
  position: relative;
  width: 100%;
  height: 41px;
  background-color: #533687;
  box-sizing: border-box;
  z-index: 3000;
  transform-origin: top center;
  transition: height 0.3s ease-in-out;
}
.header-main {
  display: flex;
  height: 100%;
  justify-content: space-between;
}
.header-main-wellcome {
  height: 100%;
  display: flex;
  align-items: center;
}
.header-main-wellcome a {
  color: #fff;
  font-size: 16px;
}
.header-main-ipv6 {
  height: 100%;
  margin-left: 130px;
  font-size: 16px;
  opacity: 0.5;
  color: #fff;
  line-height: 41px;
}
.header-main .other-link {
  flex: 1;
  justify-content: flex-end;
  height: 100%;
  display: flex;
  align-items: center;
}
.header-main .other-link li {
  position: relative;
  padding: 0 3px;
  cursor: pointer;
}
.header-main .other-link li,
.header-main .other-link a,
.header-main .other-link span {
  font-size: 16px;
  color: #fff;
}
.header-main .other-link .xed-code {
  display: none;
  position: absolute;
  left: calc(50% - 75px);
  top: 30px;
  width: 150px;
  height: 150px;
  box-sizing: border-box;
  border: 4px solid #f5a623;
}
.header-main .other-link .xed-code img {
  width: 100%;
  height: 100%;
}
.header-main .other-link .xed-code::after {
  content: ' ';
  position: absolute;
  left: calc(50% - 10px);
  top: -24px;
  width: 0;
  height: 0;
  border-top: solid transparent;
  border-bottom: solid #f5a623;
  border-right: solid transparent;
  border-left: solid transparent;
  border-width: 10px;
}
.header-main .other-link .xed:hover .xed-code {
  display: block;
}
.header-main .other-link .starway-code {
  display: none;
  position: absolute;
  left: calc(50% - 75px);
  top: 30px;
  width: 150px;
  height: 150px;
  box-sizing: border-box;
  border: 4px solid #f5a623;
}
.header-main .other-link .starway-code img {
  width: 100%;
  height: 100%;
}
.header-main .other-link .starway-code::after {
  content: ' ';
  position: absolute;
  left: calc(50% - 10px);
  top: -24px;
  width: 0;
  height: 0;
  border-top: solid transparent;
  border-bottom: solid #f5a623;
  border-right: solid transparent;
  border-left: solid transparent;
  border-width: 10px;
}
.header-main .other-link .starway:hover .starway-code {
  display: block;
}
.header-hide {
  height: 0;
  transition: height 0.3s linear;
}
.nav-container-top {
  position: relative;
  z-index: 2000;
  background-color: #fff;
  transition: all 0.3s ease;
}
.nav {
  position: relative;
  z-index: 20;
  background-color: #fff;
  height: 70px;
  display: flex;
  font-size: 18px;
  color: #333;
}
.nav-logo {
  width: 390px;
  display: flex;
  align-items: center;
}
.nav-logo-img {
  width: 190px;
  height: 44px;
  background:  center no-repeat;
  background-size: 100% 100%;
}
.nav-logo-bar {
  width: 3px;
  height: 50px;
  margin-left: 10px;
  background-color: #eee;
}
.nav-logo-img1 {
  width: 110px;
  height: 44px;
  background:  center no-repeat;
  background-size: auto 100%;
}
.nav-lists {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  height: 100%;
}
.nav-lists-item {
  margin-right: 35px;
  height: 100%;
  display: flex;
  align-items: center;
}
.nav-lists-item .nav-link {
  color: #333;
}
.nav-lists-item .nav-blue {
  color: #533687;
}
.nav-lists-item .nav-link:hover {
  color: #f5a623;
}
.nav-lists-active {
  position: relative;
}
.nav-lists-active .nav-link {
  color: #f5a623;
}
.nav-lists-active::after {
  position: absolute;
  content: '';
  display: block;
  width: 100%;
  height: 4px;
  background-color: #f5a623;
  bottom: 10px;
  left: 0;
}
.nav-lists .hot-fire {
  position: relative;
}
.nav-lists .hot-fire .icon {
  position: absolute;
  top: -14px;
  right: -16px;
}
.nav-lists .hot-fire .icon .iconfont {
  color: red;
  font-size: 15px;
}
.nav .user {
  position: relative;
  display: none;
  width: 160px;
  height: 100%;
  align-items: center;
  justify-content: center;
  margin-left: 10px;
  background-color: #fff;
  cursor: pointer;
  z-index: 21;
}
.nav .user-avatar img {
  display: inline-block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
.nav .user-select {
  margin-left: 10px;
}
.nav .user-select-btn {
  display: inline-block;
  max-width: 131px;
  color: #666;
  font-size: 14px;
  font-weight: 600;
  background-color: #fff;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.nav .user-select-btn .user-name {
}
.nav .user-dropdown {
  position: absolute;
  z-index: -1;
  left: 0;
  right: 0;
  top: 71px;
  width: 160px;
  max-height: 0;
  overflow: hidden;
  background-color: #fff;
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
  border-radius: 3px;
  transition: all 0.3s ease;
}
.nav .user-dropdown-item {
  height: 35px;
  line-height: 35px;
  padding: 0 20px;
  box-sizing: border-box;
  color: #666;
  font-size: 14px;
  cursor: pointer;
}
.nav .user-dropdown-item .layui-icon {
  margin-right: 9px;
}
.nav .user-dropdown-item:last-child {
  height: 40px;
  border-top: 1px solid #ccc;
}
.nav .user-dropdown-item:hover {
  background-color: #f1f1f1;
  color: #f5a623;
}
.nav .user:hover .user-dropdown {
  max-height: 1000px;
}
.nav .user-not-login {
  width: 90px;
  color: #f5a623;
}
.nav .user-not-login a {
  cursor: pointer;
  font-size: 16px;
  color: #f5a623;
  padding: 0 5px;
}
.nav .xed-app {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  color: #f5a623;
  z-index: 21;
}
.nav .xed-app-span {
  padding: 0 5px;
  font-size: 16px;
  cursor: pointer;
}
.nav .xed-app-code {
  display: none;
  position: absolute;
  left: calc(50% - 60px);
  top: 58px;
  width: 120px;
  height: 120px;
  border: 4px solid #f5a623;
  box-sizing: border-box;
}
.nav .xed-app-code img {
  width: 100%;
  height: 100%;
}
.nav .xed-app .xed-app-code::after {
  content: ' ';
  position: absolute;
  left: calc(50% - 10px);
  top: -24px;
  width: 0;
  height: 0;
  border-top: solid transparent;
  border-bottom: solid #f5a623;
  border-right: solid transparent;
  border-left: solid transparent;
  border-width: 10px;
}
.nav .xed-app .xed-app-span:hover   .xed-app-code {
  display: block;
}
.nav-fixed {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #fff;
  box-shadow: 0 0 60px 0 rgba(0, 0, 0, 0.1);
}
.nav-lists-item {
  position: relative;
}
.nav-lists-item-hover:hover .dropdown-box {
  max-height: 1000px;
  transition: all 1s linear;
}

.dropdown-box {
  position: absolute;
  left: 50%;
  top: 71px;
  max-height: 0;
  box-sizing: border-box;
  overflow: hidden;
  transition: all 0.3s linear;
  background-color: rgba(255, 255, 255, 0.9);
  /*  .list:nth-child(2n - 1) {
    background-color: rgba(255, 255, 255, 0.6);
  }*/
}
.dropdown-box-lists {
  padding-bottom: 20px;
}
.dropdown-box .list {
  font-size: 16px;
  color: #333;
  padding: 10px 20px;
}
.dropdown-box .list-single_name {
  font-size: 16px;
  color: #333;
}
.dropdown-box .list-sub {
  margin-top: 8px;
}
.dropdown-box .list-sub_name {
  color: #666;
  font-size: 14px;
}
.dropdown-box .link {
  display: inline-block;
}
.dropdown-box .link:hover {
  color: #f5a623;
  border-bottom: 1px solid;
}
.dropdown-box-single {
  width: 200px;
  text-align: center;
  left: calc(50% - 100px);
}
.dropdown-box-sub {
  width: 550px;
  left: 0;
}
.single-banner {
  width: 100%;
  height: 180px;
  background:  no-repeat center;
  background-size: 100% 100%;
  overflow: hidden;
}
.single-banner h3 {
  font-size: 40px;
  color: #fff;
  height: 50px;
  margin-top: 65px;
  box-sizing: border-box;
  text-align: center;
}
.fixed-btn {
  position: fixed;
  top: 70%;
  right: 130px;
  width: 50px;
  height: 50px;
  box-sizing: border-box;
  z-index: 999;
}
.fixed-btn .switch-btn {
  z-index: 1000;
  position: absolute;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  color: #533687;
  left: 0;
  top: 0;
  background-color: rgba(83, 54, 135, 0.8);
  cursor: pointer;
}
.fixed-btn .close {
  background-color: #533687;
}
.fixed-btn .switch-btn:before {
  position: absolute;
  left: 10%;
  top: calc(50% - 2px);
  content: '';
  width: 80%;
  height: 4px;
  border-radius: 3px;
  background-color: #fff;
}
.fixed-btn .open:after {
  position: absolute;
  top: 10%;
  left: calc(50% - 2px);
  content: '';
  height: 80%;
  width: 4px;
  border-radius: 3px;
  background-color: #fff;
  transform-origin: center center;
  transform: scaley(1);
  transition: transform 0.3s linear;
}
.fixed-btn .close:after {
  transform: scaley(0);
}
.fixed-btn .choose-container {
  position: absolute;
  left: calc(50% - 110px);
  top: calc(50% - 110px);
  width: 220px;
  height: 220px;
  transform: scale(0);
  transform-origin: center center;
  transition: all 0.3s linear;
}
.fixed-btn .outer {
  z-index: 997;
  position: absolute;
  left: calc(50% - 128px);
  top: calc(50% - 141px);
  width: 256px;
  height: 282px;
  background:  center no-repeat;
  background-size: 90%;
  border-radius: 50%;
}
.fixed-btn .outer-item {
  position: absolute;
  width: 54px;
  height: 54px;
  cursor: pointer;
}
.fixed-btn .outer-item:nth-child(1) {
  top: 26px;
  left: calc(50% - -8px);
  background:  no-repeat center / 100%;
}
.fixed-btn .outer-item:nth-child(2) {
  left: 74px;
  top: calc(50% - 108px);
  background:  no-repeat center / 100%;
}
.fixed-btn .outer-item:nth-child(3) {
  left: 74px;
  top: calc(50%   54px);
  background:  no-repeat center / 100%;
  z-index: 1000;
}
.fixed-btn .outer-item:nth-child(4) {
  bottom: 26px;
  left: calc(50% - -8px);
  background:  no-repeat center / 100%;

  z-index: 1000;
}
.fixed-btn .outer-item:nth-child(5) {
  right: 10px;
  top: calc(50% - 30px);
  background:  no-repeat center / 80%;
}
.fixed-btn .outer-item:nth-child(6) {
  left: 28px;
  top: calc(50% - 58px);
  background:  no-repeat center / 100%;
}
.fixed-btn .outer-item:nth-child(7) {
  left: 28px;
  top: calc(50%   8px);
  background:  no-repeat center / 100%;
}
.fixed-btn .outer-item:nth-child(3):hover .app-code {
  display: block;
}
.fixed-btn .outer-item:nth-child(4):hover .wx-code {
  display: block;
}
.fixed-btn .outer-item:nth-child(7):hover .xxy-code {
  display: block;
}
.fixed-btn .outer .app-code {
  display: none;
  position: absolute;
  left: -150px;
  top: calc(50% - 72px);
  width: 144px;
  height: 144px;
  border: 2px solid #f5a623;
  box-sizing: border-box;
  background:  center / 100% no-repeat;
}
.fixed-btn .outer .app-code::after {
  content: '';
  position: absolute;
  right: -20px;
  top: calc(50% - 10px);
  width: 0;
  height: 0;
  border-top: solid transparent;
  border-bottom: solid transparent;
  border-right: solid transparent;
  border-left: solid #f5a623;
  border-width: 10px;
}
.fixed-btn .outer .wx-code {
  display: none;
  position: absolute;
  left: -150px;
  top: calc(50% - 72px);
  width: 144px;
  height: 144px;
  border: 2px solid #f5a623;
  box-sizing: border-box;
  background:  center / 100% no-repeat;
}
.fixed-btn .outer .wx-code::after {
  content: '';
  position: absolute;
  right: -20px;
  top: calc(50% - 10px);
  width: 0;
  height: 0;
  border-top: solid transparent;
  border-bottom: solid transparent;
  border-right: solid transparent;
  border-left: solid #f5a623;
  border-width: 10px;
}
.fixed-btn .outer .xxy-code {
  display: none;
  position: absolute;
  left: -150px;
  top: calc(50% - 72px);
  width: 144px;
  height: 144px;
  border: 2px solid #f5a623;
  box-sizing: border-box;
  background:  center / 100% no-repeat;
  background-size: 120px;
  background-color: #fff;
}
/* .fixed-btn .outer .xxy-code::after {
  content: '';
  position: absolute;
  right: -20px;
  top: calc(50% - 10px);
  width: 0;
  height: 0;
  border-top: solid transparent;
  border-bottom: solid transparent;
  border-right: solid transparent;
  border-left: solid #f5a623;
  border-width: 10px;
} */
.fixed-btn .center {
  z-index: 998;
  position: absolute;
  left: calc(50% - 40px);
  top: calc(50% - 40px);
  content: '';
  width: 80px;
  height: 80px;
  border-radius: 50%;
}
.fixed-btn .show-choose {
  transform: scale(1);
}

.quick-xxy-wrapper {
  width: 300px;
  height: 420px;
  padding: 10px;
}
.quick-xxy-wrapper img {
  width: 100%;
  height: 100%;
}

/*footer*/
.foot {
  width: 100%;
  min-width: 1200px;
  background-color: #53565a;
  margin-top: 60px;
}
.foot .footerphone li {
  margin-bottom: 5px;
}
.foot1 {
  background-color: #53565a;
  padding: 30px 0;
  color: #ffffff;
  height: 304px;
}
.foot1 .footheader {
  height: 75px;
  width: 100%;
  border-bottom: #a9a9a9 1px solid;
  margin-bottom: 18px;
}
.foot1 .footheader .foothinfo {
  float: left;
  width: 200px;
  padding: 0px 15px;
  box-sizing: border-box;
  color: #fff;
  font-size: 25px;
  line-height: 75px;
}
.foot1 .footheader .specialhinfo {
  width: 400px;
}
.foot1 .footsinfo {
  width: 100%;
  float: none;
}
.foot1 .footsinfo .follow-us li:hover .qr-code {
  display: block;
}
.foot1 .footsinfo .footslist {
  float: left;
  width: 200px;
  padding: 0px 15px;
  box-sizing: border-box;
  color: #fff;
  font-size: 25px;
}
.foot1 .footsinfo .specialflist {
  width: 400px;
}
.foot1 .footsinfo .footslist li {
  line-height: 24px;
}
.foot1 .footsinfo .footslist a {
  color: #999;
  font-size: 16px;
}
.foot1 .footsinfo .footslist .vchar {
  width: 30px;
  height: 30px;
}
.foot1 .footsinfo .follow-us li {
  width: 30px;
  height: 30px;
  position: relative;
}
.foot1 .footsinfo .footslist .vchar img {
  height: 30px;
  width: 30px;
}
.foot1 .footsinfo .footslist .icon {
  display: inline-block;
}
.foot1 .footsinfo .footslist span {
  color: #fff;
  font-size: 16px;
}
.foot1 .footsinfo .footslist .qr-code {
  position: absolute;
  width: 150px;
  height: 150px;
  left: -58px;
  top: 45px;
  border: 4px #f5a623 solid;
  display: none;
}
.foot1 .footsinfo .footslist .qr-code img {
  width: 100%;
  height: 100%;
}
.triangle-top {
  width: 0;
  height: 0;
  border-top: transparent solid;
  border-right: transparent solid;
  border-left: transparent solid;
  border-bottom: #f5a623 solid;
  border-width: 10px;
  position: absolute;
  top: -24px;
  left: 60px;
}
.foot2 {
  padding: 10px 0;
  background-color: rgba(83, 86, 90, 0.88);
  filter: progid:dximagetransform.microsoft.gradient(startcolorstr=#e553565a, endcolorstr=#e553565a);
  /*ie8支持*/
}
.foot2 span,
.foot2 a {
  color: #ffffff;
}
.foot2 .foot2-div > div {
  margin: 0 auto;
  text-align: center;
  font-size: 12px;
}
.foot2 .foot2-div > .foot-item1 {
  width: 30%;
}
.foot2 .foot2-div > .foot-item3 {
  width: 100%;
}
.path {
  background-color: #f8f8f8;
  height: 50px;
}
.path .back-link {
  color: #333;
}
.path .back-link:nth-child(1) {
  margin-left: 15px;
}
.path .back-link:hover {
  color: #f5a623;
  border-bottom: 1px solid #f5a623;
}
.path .inter-slash {
  margin: 0 5px;
  color: #666;
}
.path a {
  display: inline-block;
  max-width: 300px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.path-box {
  height: 100%;
  font-size: 16px;
  color: #333333;
}
.path-box-current {
  color: #f5a623;
}
.common-nav {
  height: 66px;
  width: 100%;
  display: flex;
  box-sizing: border-box;
  background-color: #533687;
  border-radius: 4px 4px 0 0;
  padding-left: 20px;
}
.common-nav-link {
  margin-right: 60px;
  height: 100%;
  display: flex;
  align-items: center;
}
.common-nav-link .link {
  font-size: 18px;
  color: #ffffff;
  letter-spacing: 0;
  cursor: pointer;
  transition: border-bottom 0.3s linear;
  border-bottom: 0px solid #f5a623;
}
.common-nav-link .link:hover {
  color: #f5a623;
}
.common-nav-active {
  border-bottom: 4px solid #f5a623;
  box-sizing: border-box;
}
.common-nav-active .link {
  color: #f5a623;
}
.common-nav-disabled {
  cursor: not-allowed;
}
.common-nav-disabled .link {
  color: #ccc;
  cursor: inherit;
}
.common-nav-disabled .link:hover {
  color: #ccc;
}

.li-search {
  flex: 1;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 10px;
}
.li-search .prod-search {
  position: relative;
  display: inline-flex;
  width: 40px;
  height: 40px;
  justify-content: center;
  overflow: hidden;
  box-sizing: border-box;
  border-radius: 50px;
  background-color: #fff;
  transition: all 0.3s linear;
}
.li-search .prod-search-input {
  position: absolute;
  width: 120px;
  transform: translatex(-100%);
  border: none;
  background-color: transparent;
  outline: none;
  padding: 0;
  height: 40px;
  font-size: 16px;
  color: #533687;
  transition: all 0.3s linear;
}
.li-search .prod-search-btn {
  position: absolute;
  right: 5px;
  top: 7px;
  flex-shrink: 0;
  display: inline-flex;
  width: 30px;
  height: 30px;
  opacity: 1;
  padding: 0;
  border-radius: 50%;
  justify-content: center;
  background-color: #fff;
  align-items: center;
  outline: none;
  border: none;
  cursor: pointer;
  border-radius: 50px;
  transition: all 0.3s linear;
}
.li-search .prod-search-btn .layui-icon {
  color: #533687;
  font-size: 20px;
  font-weight: 600;
}
.li-search .prod-search-open {
  width: 160px;
}
.li-search .prod-search-open .prod-search-input {
  transform: translatex(0);
}
.li-search .prod-search-open .prod-search-btn {
  opacity: 0;
  cursor: default;
}
.hx-pagination {
  text-align: center;
  margin-top: 20px;
}
.hx-pagination .layui-laypage a,
.hx-pagination .layui-laypage span {
  font-size: 14px;
  margin-right: 10px;
  color: #533687;
}
.hx-pagination .layui-laypage a {
  border-radius: 5px;
}
.hx-pagination .layui-laypage-curr .layui-laypage-em {
  background-color: #533687;
  border-radius: 5px;
}
.hx-pagination .layui-laypage .layui-laypage-prev,
.hx-pagination .layui-laypage .layui-laypage-next {
  padding: 0 30px;
  border: 1px solid #533687;
  border-radius: 8px;
}
.hx-pagination .layui-laypage .layui-disabled,
.hx-pagination .layui-laypage .layui-disabled:hover {
  border: 1px solid #ccc;
}
.hx-pagination .layui-laypage .layui-laypage-skip {
  color: #533687;
}
.hx-pagination .layui-laypage .layui-laypage-skip .layui-input {
  color: #533687;
}
.hx-pagination .layui-laypage .layui-laypage-skip input:focus {
  border-color: #533687 !important;
}
.hx-pagination .layui-laypage .layui-laypage-skip .layui-laypage-btn {
  color: #533687;
}
.layui-layer .layui-layer-btn .layui-layer-btn0 {
  border-color: #533687;
  background-color: #533687;
  color: #fff;
}
.layer-box-class .layui-layer-title {
  background-color: #533687;
  color: #fff;
}
.layer-box-class .layui-layer-btn .layui-layer-btn0 {
  border-color: #533687;
  background-color: #533687;
  color: #fff;
}
.pagination {
  margin-top: 20px;
  width: 100%;
  font-size: 14px;
  text-align: center;
}
.pagination-box {
  display: inline-block;
  height: 35px;
  margin: 10px 0;
}
.pagination-box .pre-page,
.pagination-box .next-page {
  padding: 0 30px;
  border-color: #533687;
  border-radius: 8px;
}
.pagination-box .dotted {
  cursor: text;
}
.pagination-box .disabled {
  cursor: not-allowed !important;
  color: #ccc;
  border-color: #ccc;
}
.pagination-box .current-page {
  border-color: #533687;
  background-color: #533687;
  color: #fff;
}
.pagination-box .skip-page {
  color: #533687;
  margin-left: 10px;
  height: 100%;
}
.pagination-box .skip-page-input {
  width: 40px;
  height: 30px;
  margin: 0 10px;
  padding: 0 3px;
  text-align: center;
  box-sizing: border-box;
  background-color: #fff;
  border: 1px solid #eee;
  outline: none;
  transition: border 0.3s linear;
}
.pagination-box .skip-page-input:focus {
  border-color: #533687;
}
.pagination-box .skip-page-btn {
  outline: none;
  height: 30px;
  margin-left: 10px;
  padding: 0 10px;
  color: #533687;
  background-color: #fff;
  border-radius: 5px;
  border: 1px solid #eee;
  cursor: pointer;
}
.pagination a {
  display: inline-block;
  padding: 0 15px;
  margin-right: 10px;
  border: 1px solid #eee;
  height: 28px;
  line-height: 28px;
  border-radius: 5px;
  text-decoration: none;
  color: #533687;
  background-color: #fff;
  transition: all 0.3s ease;
}
.pagination .total-count {
  color: #533687;
}

/* mob-nav */

.mobnav-trigger {
  display: none;
  position: absolute;
  right: 0;
  top: 0;
}
.mobnav-trigger-btn {
  position: relative;
  right: 20px;
  width: 48px;
  height: 48px;
  background-color: transparent;
  cursor: pointer;
}
.mobnav-trigger-btn svg {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
}
.menu-icon,
.close-icon {
  opacity: 0;
}
[data-mobnav-trigger='menu'] .menu-icon {
  opacity: 1;
}
[data-mobnav-trigger='close'] .close-icon {
  opacity: 1;
}

.mobnav-item-trigger {
  display: none;
}
.mobnav-item-trigger_btn {
  background-color: transparent;
}

.mobnav-wrapper {
  display: none;
  background-color: #fff;
  z-index: 10;
}

.mob-user,
.mob-user-login,
.mob-user-notlogin {
  display: none;
  color: #f5a623;
  align-items: center;
}

.mob-user-login-label {
  padding-left: 0;
}

.mob-user a {
  padding: 0 10px;
  font-size: 16px;
  cursor: pointer;
  color: #f5a623;
}

.body-noscroll {
  overflow: hidden;
  height: 100% !important;
}

/* mob-nav */

@media (max-width: 1400px) {
  .nav-container-top .main-1400 {
    width: 100%;
    max-width: 100%;
    min-width: 100%;
    padding: 0 10px;
    box-sizing: border-box;
  }
  .nav-lists-item {
    margin-right: 20px;
  }

  .nav-logo {
    width: auto;
    margin-left: 10px;
    margin-right: 25px;
    box-sizing: border-box;
  }
  .nav-logo .nav-logo-img {
    width: 150px;
    background-size: 100%;
  }
  .nav-logo .nav-logo-img1 {
    width: 80px;
    background-size: 100%;
  }
}

@media (max-width: 1200px) {
  .header-main {
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
  }
  .nav-lists-item {
    margin-right: 15px;
    font-size: 18px;
  }
  .nav-logo .nav-logo-img {
    width: 100px;
  }
  .nav-logo .nav-logo-img1 {
    width: 70px;
  }
  .path {
    padding: 0 10px;
  }
}

@media (max-width: 992px) {
  .banner {
    padding-top: 48px;
  }
  .header,
  .nav-lists,
  .nav .user,
  .nav .xed-app {
    display: none !important;
    z-index: 11;
  }
  .fixed-btn {
    right: 36px;
  }
  .fixed-btn .outer-item:nth-child(5) {
    display: none;
  }
  .mobnav-show {
    overflow-y: scroll;
  }
  .mobnav-show .mob-user {
    display: flex;
    position: absolute;
    right: 34px;
    top: 50px;
    height: 50px;
    align-items: center;
  }
  .dropdown-box {
    display: none;
    position: relative;
    top: 0;
    max-height: unset;
    overflow: unset;
    transition: unset;
  }
  .nav {
    justify-content: space-between;
    height: 48px;
  }
  .mobnav-trigger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }
  .mobnav-item-trigger {
    display: inline-block;
  }
  .nav-container-top {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
  }
  .nav-logo {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    margin: 0;
    padding: 0 10px;
    border-bottom: 1px solid #eee;
  }

  .mobnav-show {
    height: 100%;
  }

  .mobnav-show .nav-lists {
    display: flex !important;
    flex-direction: row;
    flex-wrap: wrap;
    height: auto;
    position: absolute;
    left: 0;
    right: 0;
    top: 100px;
    box-sizing: border-box;
    padding: 0 10px;
  }
  .mobnav-show .nav-lists-item {
    width: 100%;
    height: auto;
    min-height: 45px;
    margin: 0 10px;
    justify-content: space-between;
    flex-wrap: wrap;
    border-bottom: 1px solid #ece9f2;
    cursor: pointer;
  }

  .mobnav-show .nav-lists-item .nav-link,
  .mobnav-show .nav-lists-item .nav-blue {
    height: 45px;
    line-height: 45px;
    width: 100%;
  }
  .mobnav-show .nav-lists-item .mobnav-item-trigger {
    position: absolute;
    top: 0;
    right: 16px;
    height: 45px;
    line-height: 45px;
  }
  .dropdown-box-sub,
  .dropdown-box-single {
    width: 100%;
  }
  .dropdown-box-single {
    left: 0;
  }
  .dropdown-box .list {
    text-align: left;
  }

  .nav-lists-active::after {
    display: none;
  }

  /* .nav-lists .hot-fire .icon {
    position: relative;
    top: -10px;
    left: 2px;
  } */

  .nav-logo-bar {
    height: 38px;
  }
  .mobnav-wrapper {
    position: absolute;
    width: 100%;
    height: calc(100vh - 48px);
    top: 48px;
    left: 0;
    overflow-y: auto;
  }
  .mobnav-trigger {
  }
  .mobnav-trigger svg path {
    stroke: #333;
  }
  .mob-user a {
    font-size: 14px;
  }

  .nav-logo {
    z-index: 100;
    background-color: #fff;
  }

  .common-nav-link .link {
    font-size: 16px;
  }

  .common-nav {
    height: auto !important;
    flex-wrap: wrap;
    gap: 15px 20px;
    padding: 15px 20px;
  }
  .common-nav-link {
    position: relative;
    margin: 0;
  }
  .common-nav-active {
    border-bottom: none;
    color: #fff;
  }
  .common-nav-active .link {
    color: #fff;
  }
  .common-nav-active::after {
    content: '';
    position: absolute;
    height: 10px;
    left: -4px;
    right: -4px;
    bottom: -2px;
    border-radius: 5px;
    background-color: #de8b6c;
    opacity: 0.5;
  }
  .nav-lists .hot-fire .icon {
    top: -10px;
    right: unset;
    left: 58px;
  }
  .single-banner h3 {
    font-size: 28px;
    margin-top: 88px;
  }
}

@media (max-width: 768px) {
  .single-banner h3 {
    font-size: 26px;
  }
  .path-box {
    font-size: 12px;
  }
}
