.main-box-h5 .header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  height: 43px;
  background-color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 18px;
  z-index: 222;
}

.main-box-h5 .header .logo {
  width: 169px;
}

.main-box-h5 .header .logo img {
  width: 100%;
}

.main-box-h5 .header .phone-change {
  color: #00479D;
  font-size: 12px;
}

.main-box-h5 .header .header-right {
  display: flex;
  align-items: center;
  height: 100%;
}

.main-box-h5 .header .header-right .search-content {
  width: 15px;
  height: 14px;
  background-image: url("../../img/tpl_blue/h5/search.png");
  background-size: cover;
  background-position: center;
}

.main-box-h5 .header .header-right .nav-content {
  width: 60px;
  position: relative;
  height: 100%;
  margin-left: 6px;
  background-image: url("../../img/tpl_blue/h5/nav-bg.png");
  background-size: cover;
}

.main-box-h5 .header .header-right .nav-content.active .nav-list {
  display: block;
}

.main-box-h5 .header .header-right .nav-content.active .nav-btn {
  width: 15px;
  display: block;
  position: absolute;
  top: 15px;
  left: 29px;
  height: 15px;
  background-image: url("../../img/tpl_blue/h5/nav-close.png");
  background-size: cover;
  background-position: center;
}

.main-box-h5 .header .header-right .nav-content .nav-list {
  display: none;
  width: 100%;
  position: fixed;
  height: calc(100vh - 43px);
  top: 43px;
  left: 0;
  right: 0;
  background-color: #fff;
  z-index: 222;
  padding: 0 32px;
  overflow-y: auto;
}

.main-box-h5 .header .header-right .nav-content .nav-list .nav-item {
  width: 100%;
  position: relative;
  border-bottom: 1px solid #E5E9EF;
  overflow: hidden;
}

.main-box-h5 .header .header-right .nav-content .nav-list .nav-item.active .nav-link .drop-down {
  background-image: url("../../img/tpl_blue/h5/category-down.png");
}

.main-box-h5 .header .header-right .nav-content .nav-list .nav-item.active .category-list {
  height: auto;
  margin-top: 6px;
}

.main-box-h5 .header .header-right .nav-content .nav-list .nav-item .nav-link {
  height: 52px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.main-box-h5 .header .header-right .nav-content .nav-list .nav-item .nav-link .to-link {
  font-weight: bold;
  font-size: 17px;
  color: #383B3D;
  display: block;
}

.main-box-h5 .header .header-right .nav-content .nav-list .nav-item .nav-link .drop-down {
  height: 100%;
  width: 52px;
  background-image: url("../../img/tpl_blue/h5/category-up.png");
  background-repeat: no-repeat;
  background-size: 13px 8px;
  background-position: center right;
}

.main-box-h5 .header .header-right .nav-content .nav-list .nav-item .category-list {
  height: 0;
  transition: all 0.3s;
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
}

.main-box-h5 .header .header-right .nav-content .nav-list .nav-item .category-list .category-item {
  width: 50%;
  font-weight: 400;
  font-size: 12px;
  color: #0049A0;
  margin-bottom: 20px;
}

.main-box-h5 .header .header-right .nav-content .nav-btn {
  content: "";
  width: 18px;
  display: block;
  position: absolute;
  top: 14px;
  left: 24px;
  height: 14px;
  background-image: url("../../img/tpl_blue/h5/nav-more.png");
  background-size: cover;
  background-position: center;
}

.main-box-h5 .header .header-right .nav-content .nav-btn::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1rem;
  height: 1rem;
}

body.not-scroll {
  overflow: hidden;
}