html,
body {
  color: #fff;
  background-color: #1E2831;
}

a {
  color: #fff;
  text-decoration: none;
}

* {
  margin: 0;
  padding: 0;
}

img {
  border: none;
  max-width: 100%;
}

.wrap {
  max-width: 1920px;
  padding: 0 8%;
  margin: 0 auto;
  box-sizing: border-box;
}

li {
  list-style: none;
}

.top-bg {
  width: 100%;
  height: 100%;
  background: url(../imgs/top-bg.jpg) 100% 0 no-repeat;
  background-size: 100% 40%;
  position: absolute;
  top: 0;
  opacity: 1;
  -webkit-transition: opacity 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  transition: opacity 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.header {
  position: relative;
  z-index: 2;
  height: 80px;
}

.top-box {
  position: relative;
  padding: 20px 0;
  display: flex;
  align-items: center;
}

.todo-box {
  display: flex;
}

.todo-box:focus-within {
  border: 1px solid #03c47e;
}

.todo-box .search-box {
  position: relative;
  background: rgba(0, 0, 0, 0.16);
  height: 38px;
  border: 1px solid transparent;
  background: rgba(0, 0, 0, .16);
  border-radius: 4px;
  padding-left: 8px;
}

.todo-box .search-box input {
  width: 100%;
  height: 100%;
  color: #fff;
  background: none;
  border: none;
}

.todo-box .search-box input::-webkit-input-placeholder {
  color: #FFF;
  opacity: .6;
}

.todo-box .search-box input:focus {
  outline: none;
  border: none;
  opacity: 1;
}

.todo-box .search-box i {
  position: absolute;
  top: 0;
  right: 0;
  display: inline-block;
  width: 38px;
  height: 38px;
  background: url('../imgs/icon_earch.webp') no-repeat center;
  background-size: 16px;
  cursor: pointer;
}

.search-box form {
  line-height: 38px;
  height: 38px;
  display: flex;
  align-items: center;
}

.search-box select {
  background: none;
  border: none;
  color: #FFF;
  margin-right: 10px;
}

.search-box select:focus {
  outline: none;
  border: none;
}

.search-box select option {
  color: black;
}

.menu-icon {
  position: absolute;
  left: 0;
  top: 24px;
  display: none;
  width: 24px;
  height: 24px;
  cursor: pointer;
  background: url('../imgs/icon_hamburger.webp') no-repeat;
  background-size: cover;
}

.top-logo {
  max-width: 120px;
  width: 100%;
}

.nav-con {
  flex: 1;
  display: flex;
  padding-left: 20px;
  align-items: center;
  justify-content: space-between;
}

.back-icon {
  display: none;
  padding: 24px 20px;
  -webkit-box-ordinal-group: -1;
  -webkit-order: -2;
  order: -2;
  width: 100%;
  box-sizing: border-box;
}

.back-icon i {
  display: inline-block;
  width: 24px;
  height: 24px;
  cursor: pointer;
  background: url(../imgs/icon_back.webp) no-repeat;
  background-size: cover;
}

.nav-list {
  display: flex;
  align-items: center;
}

.nav-list .nav-list-item {
  position: relative;
  color: #fff !important;
  text-decoration: none;
  opacity: 0.5;
  cursor: pointer;
  margin-right: 32px;
  font-size: 14px;
  font-weight: lighter;
}

.nav-list .nav-list-item.navon {
  opacity: 1;
}

.nav-list .nav-list-item.navon:before {
  position: absolute;
  top: -30px;
  content: "";
  width: 42px;
  left: 50%;
  margin-left: -21px;
  height: 3px;
  overflow: hidden;
  background: #03c47e;
  box-shadow: 0 2px 10px 0 #03c47e;
}

.login-btn {
  vertical-align: middle;
  text-align: center;
  padding: 0 32px;
  height: 36px;
  line-height: 34px;
  display: inline-block;
  border-radius: 20px;
  box-sizing: border-box;
  white-space: nowrap;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: pointer;
  border: 1px solid #03c47e;
  background: #03c47e;
  color: #fff;
  font-weight: 700;
}

.footer-app {
  padding: 30px 10px 20px;
  text-align: center;
  font-size: 13px;
  line-height: 24px;
  color: #8b969f;
}

.footer-app a {
  color: #8b969f;
}

.footer-app a:hover {
  color: #fff;
}

.g-btn {
  vertical-align: middle;
  text-align: center;
  padding: 0 32px;
  height: 36px;
  line-height: 34px;
  display: inline-block;
  border-radius: 20px;
  box-sizing: border-box;
  white-space: nowrap;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: pointer;
}

.btn-basic {
  border: 1px solid #03c47e;
  background: #03c47e;
  color: #fff;
  font-weight: 700;
}

.swiper-top {
  margin: 20px auto;
}

.notice-bar {
  position: absolute;
  height: 40px;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  color: #f3ae1f;
  padding: 8px 16px 8px 35px;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  overflow: hidden;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  position: relative;
  box-sizing: border-box;
}

.notice-icon {
  position: absolute;
  left: 10px;
  top: 10px;
  width: 20px;
  height: 20px;
  background: url('../imgs/icon_notice.webp') no-repeat;
  background-size: cover;
}

.notice-content {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.notice-text {
  line-height: 24px;
  height: 24px;
  overflow: hidden;
  font-size: 13px;
  position: absolute;
}

.pos-r {
  position: relative;
  z-index: 1;
}

/* 媒体查询 */
@media screen and (max-width: 950px) {
  .top-logo {
    margin-left: auto;
  }

  .nav-con {
    position: fixed;
    left: 0;
    top: 0;
    display: none;
    width: 80%;
    height: 100%;
    padding-left: 0;
    background: #1E2831;
  }

  .nav-list {
    padding: 0 0 30px 50px;
    display: block;
    overflow: hidden;
  }

  .nav-list .nav-list-item {
    padding: 10px 0;
  }

  .back-icon {
    display: block;
  }

  .menu-icon {
    display: block;
  }

  .todo-box {
    display: block;
    padding-left: 50px;
  }

  .todo-box .search-box {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #5a5a5a;
  }
}

@media screen and (max-width: 450px) {
  .wrap {
    padding: 0 15px;
  }
}