.nav {
  display: flex;
  justify-content: center;
  flex-direction: row;
  align-items: center;
  height: 56px;
  width: auto;
}

.nav-list {
  flex: 1;
  height: 56px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  color: #fff;
  position: relative;
}

.nav-list .box {
  width: 100%;
  height: 100%;
  text-align: center;
  line-height: 56px;
}

.nav-list:hover {
  background-color: #053b81;
}

.nav-list-more {
  position: absolute;
  top: 56px;
  left: 0;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 2;
  width: 100%;
  cursor: default;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  box-sizing: border-box;
  transform: scale(1, 0);
  -webkit-transform: scale(1, 0);
  transform-origin: center top;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  opacity: 0;
}

.nav-list:hover .nav-list-more {
  transform: scale(1, 1);
  opacity: 1;
}

.nav-list-more-list {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.nav-list-more-list-inner:hover {
  background-color: #053b81;
}

.nav-list-more-list-inner {
  display: flex;
  justify-content: center;
  flex-direction: row;
  align-items: center;
  width: 100%;
  height: 47px;
  color: #fff;
  font-size: 16px;
}

.menu-mobile {
  width: 50px;
  height: 60px;
  position: fixed;
  right: 30px;
  top: 30px;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  z-index: 1;
  display: none;
  transition: 0.5s;
  -webkit-transition: 0.5s;
}

.menu-mobile:hover .menu-line {
  /* background: rgba(233, 134, 66, 1); */
}

.menu-mobile.active {
  right: 50px;
  z-index: 3;
}

.menu-mobile.active .menu-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-mobile.active .menu-line:nth-child(2) {
  opacity: 0;
}

.menu-mobile.active .menu-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* 新增 */

.seach-body-inner {
  width: 100%;
}

.search-btn-view-g {
  width: 730px;
  height: 55px;
  margin: 30px auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  max-width: 100%;
}

.search-btn-view-btn {
  background: rgba(30, 107, 194, 1);
  transition: 0.5s;
  -webkit-transition: 0.5s;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 120px;
  font-size: 38px;
  height: 100%;
  cursor: pointer;
}

.search-btn-view-btn p {
  font-size: 16px;
}

.search-btn-view-btn:hover {
  opacity: 0.8;
}

.search-btn-view-input {
  width: calc(100% - 120px);
  height: 100%;
  background: #fff;
}

.search-btn-view-input input {
  outline: none;
  border: 0;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  padding: 0 10px;
  font-size: 14px;
  line-height: 55px;
}

.menu-line {
  width: 20px;
  height: 2px;
  border-radius: 2px;
  margin: 2.5px auto;
  background: #fff;
  transform-origin: center center;
  -webkit-transform-origin: center center;
}

@media (max-width: 1024px) {
  /* .nav-list-more-list {
    margin-right: 35px;
  } */
}

@media (max-width: 850px) {
  .menu-mobile {
    display: flex;
  }

  .nav {
    display: flex;
    right: -150px;
    position: fixed;
    top: 0;
    flex-direction: column;
    height: 100%;
    width: 150px;
    opacity: 0;
  }

  .nav.active {
    right: 0;
    z-index: 3;
    opacity: 1;
  }

  .nav-list-more {
    position: absolute;
    top: 0 !important;
    left: -100% !important;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
    width: calc(100%);
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
    /* height: 100%; */
    /* padding: 20px; */
    transform: scale(0, 1);
    -webkit-transform: scale(0, 1);
    transform-origin: right center;
  }

  .nav-list-more-list {
    height: auto;
    margin-right: 0;
  }

  .nav-list {
    flex: none;
    width: 100%;
    /* height: 60px; */
  }

  .nav-list-more-list-inner {
    /* height: 60px; */
  }
}

@media (max-width: 600px) {
  .menu-mobile {
    top: 20px;
  }
}

@media (max-width: 450px) {
  .menu-mobile {
    right: 0;
  }
}
