.sticky-wrapper {
  position: relative;
  background-color: rgba(227, 13, 52, 0.8);
  z-index: 1221;
}
.is-sticky .header:after {
  position: absolute;
  content: '';
  background-color: rgba(227, 13, 52, 0.6);
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  -webkit-transition: all 0.5s linear;
  -moz-transition: all 0.5s linear;
  -ms-transition: all 0.5s linear;
  -o-transition: all 0.5s linear;
  transition: all 0.5s linear;
}
.header {
  top: 0px;
  left: 0px;
  right: 0px;
  height: 80px;
}
.header .top {
  width: 1300px;
  height: 80px;
  display: flex;
  justify-content: space-between;
  margin: -2px auto;
}
.header .top:after {
  clear: both;
  content: '';
  display: block;
  width: 0;
  height: 0;
  visibility: hidden;
}
.header.nav ul{
  width: 900px !important;
}
.header .header_wrapper {
  width: 90%;
  margin: 0px auto;
}
.header .header_wrapper:after {
  clear: both;
  content: '';
  display: block;
  width: 0;
  height: 0;
  visibility: hidden;
}
.header .header_wrapper .name {
  float: left;
  width: 15%;
}
.header .header_wrapper .name a {
  display: block;
  color: #fff;
  text-align: center;
  overflow: hidden;
  font-size: 22px;
  font-weight: bold;
  text-overflow: ellipsis;
  white-space: nowrap;
  line-height: 80px;
}
.header .header_wrapper .name h3 {
  font-size: 22px;
  line-height: 80px;
}
.header .header_wrapper .nav_add {
  height: 80px;
  box-sizing: border-box;
  /*float: left;*/
  /*width: 60%;*/
  /*overflow: hidden ;*/
}

.header .header_wrapper .nav_add ul {
  width: 777px !important;
  height: 100% !important;
  display: flex;
  justify-content: space-around;
}
.header .header_wrapper .nav li {
  margin: 0 !important;
  height: 100% !important;
}
.nav.nav_add > ul > li{
  padding: 0 !important;
}
.header .header_wrapper .nav li a {
  width: 91px;
  font-weight: bold;
  font-family: 'Poppins', sans-serif;
  line-height: 70px;
  color: #fff;
  font-size: 18px;
  text-align: center;
  webkit-transition: all 0.25s ease-in-out 0s;
  -moz-transition: all 0.25s ease-in-out 0s;
  -o-transition: all 0.25s ease-in-out 0s;
  position: relative;
  transition: all 0.25s ease-in-out 0s;
}
.header .header_wrapper .nav li a:before {
  position: absolute;
  content: "";
  width: 0px;
  height: 4px;
  bottom: -4.4px;
  left: 0;
  background: transparent;
  -webkit-transition: 0.3s ease-in-out;
  -ms-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.header .header_wrapper .nav li:hover a {
  color: #782c2c;
}
.header .header_wrapper .nav li:hover a:before {
  background: #782c2c;
  width: 100%;
}
.header .header_wrapper .users {
  text-align: right;
  float: right;
  width: 20%;
  line-height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.header .header_wrapper .users a {
  display: inline-block;
  padding: 0 10px;
  line-height: 40px;
  height: 40px;
  text-align: center;
  border-radius: 20px;
  color: #fff;
}
.header .header_wrapper .users a:hover {
  background: #782c2c;
}
.header .header_wrapper .users .login i {
  background: url("login.png") no-repeat center;
  display: inline-block;
  height: 20px;
  width: 20px;
  vertical-align: text-bottom;
}
.header .header_wrapper .users .logoff i {
  background: url("logoff.png") no-repeat center;
  display: inline-block;
  height: 20px;
  width: 20px;
  vertical-align: text-bottom;
}
.header .header_wrapper .sea {
  display: inline-block;
  border-radius: 50%;
  line-height: 40px;
  color: #fff;
  font-size: 18px;
  width: 40px;
  height: 39px;
  vertical-align: middle;
  text-align: center;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  position: relative;
  transform: translateY(-1px);
}
.header .header_wrapper .sea.show .search,
.header .header_wrapper .sea.show > i {
  opacity: 1;
  visibility: visible;
}
.header .header_wrapper .sea > i {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-width: 0 10px 10px;
  border-style: solid;
  border-color: transparent transparent #b04041;
  /*透明 透明  黄*/
  top: 47px;
  left: 10px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.header .header_wrapper .sea .search {
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  position: absolute;
  line-height: 55px;
  border-radius: 5px;
  bottom: -83px;
  left: -230px;
  height: 60px;
  font-size: 0px;
  box-sizing: border-box;
  opacity: 0;
}
.header .header_wrapper .sea .search input {
  padding-left: 10px;
  float: left;
  width: 80%;
  background-color: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(0, 0, 0, 0.09);
  border-radius: 5px 0  0 5px;
  font-size: 16px;
  color: #666;
  vertical-align: super;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.header .header_wrapper .sea:hover {
  color: #be4c4d;
  background-color: #fff;
}
.autocomplete-container {
  position: relative;
  width: 283px;
  height: 32px;
  margin: 0 auto;
}
.autocomplete-input {
  padding: 9px;
  border-radius: 3px;
  font-family: inherit;
  float: left;
  font-size: 1em;
  border: 1px solid rgba(0, 0, 0, 0.19);
  margin: 0;
}
.autocomplete-button {
  width: 60px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  font-family: inherit;
  border: 0;
  background-color: #be4c4d;
  color: #fff;
  padding: 8px;
  float: left;
  cursor: pointer;
  border-radius: 0 3px 3px 0;
  transition: all 0.2s ease-out 0s;
}
.autocomplete-button i {
  font-size: 18px;
}
.proposal-box {
  position: absolute;
  height: auto;
  border-left: 1px solid rgba(0, 0, 0, 0.11);
  border-right: 1px solid rgba(0, 0, 0, 0.11);
  left: 0;
}
.proposal-list {
  list-style: none;
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.44);
  -webkit-margin-before: 0;
  -webkit-margin-after: 0;
  -webkit-margin-start: 0;
  -webkit-margin-end: 0;
  -webkit-padding-start: 0;
}
.proposal-list li {
  text-align: left;
  padding: 5px;
  font-family: inherit;
  border-bottom: 1px solid rgba(0, 0, 0, 0.16);
  height: 25px;
  line-height: 25px;
  background-color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
}
li.proposal.selected {
  background-color: rgba(175, 42, 0, 0.52);
  color: #fff;
}
