/*-------header---------*/
.header
{
  position: relative;
  float: left;
  width: 100%;
  box-sizing: border-box;
  z-index: 2000;
  transition: 0.1s ease-in;
  background: white;
  box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}
.header .header-con
{
  position: relative;
  float: left;
  width: 100%;
  box-sizing: border-box;
  padding: 0px 10px;
}
.header .header-con 
{
  position: relative;
  float: left;
  width: 100%;
  box-sizing: border-box;
}
.header .header-con .web-logo
{
  position: relative;
  float: left;
  width: 20%;
  box-sizing: border-box;
  padding: 5px 0px;
}
.header .header-con .web-logo img
{
  position: relative;
  float: left;
  width: auto;
  height:30px;
  box-sizing: border-box;
  padding: 5px 0px;
}	

.header .header-con .web-search
{
  position: relative;
  float: left;
  width: 60%;
  box-sizing: border-box;
  padding: 5px 0px;
}
.header .header-con .web-search input
{
  position: relative;
  float: left;
  width: 80%;
  box-sizing: border-box;
  padding: 5px 10px;
  border-radius: 3px;
  border: 1px solid #ad0000;
}
.header .header-con .web-search input:focus
{
  outline: none;
}

.header .header-con .web-search button
{
  position: relative;
  float: left;
  width: 10%;
  box-sizing: border-box;
  padding: 8.5px 0px;
  text-align: center;
  border-radius: 3px;
  border: 1px solid #ad0000;
  margin-left: -10px;
  cursor: pointer;
  background: #ad0000;
  color: white;
}
.header .header-con .web-search button:active
{
  background: #000000;
}

.header .header-con .web-login
{
  position: relative;
  float: right;
  width: auto;
  box-sizing: border-box;
  padding: 5px 0px;
}
.header .header-con .web-login a
{
  position: relative;
  float: left;
  width: auto;
  box-sizing: border-box;
  padding: 6px 10px;
  color: #fff;
  background: #ad0000;
  border-radius: 3px;
  font-size: 10pt;
  margin-left: 5px;
}
.header .header-con .web-login a.logout
{
  background: #000000;
}
.header .header-con .web-login a.logout i
{
  padding: 3px 0px;
}

.header .header-con .web-login a.bell
{
  background: #000000;
}
.header .header-con .web-login a.bell i
{
  padding: 3px 0px;
}



.header .header-con .web-login a:hover
{
  background: linear-gradient(45deg, #000000, #ad0000);
}
.header .header-con .web-login a:active
{
  background: linear-gradient(45deg, #ad0000, #000000);
}

@media screen and (max-width:468px){

.header .header-con .web-logo
{
  width: 40%;
}
.header .header-con .web-search
{
  display: none;
}

}
.header_fix
{
  position: fixed!important;
  z-index: 2000;
}
