/*-------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:35px;
  box-sizing: border-box;
  padding: 5px 0px;
}	
.header .header-con .web-logo img.logo_name
{
  margin-left: 5px;
  height:30px;
  margin-top: 2px;
}

.header .header-con .web-search
{
  position: relative;
  float: left;
  width: 25%;
  box-sizing: border-box;
  padding: 5px 0px;
}
.header .header-con .web-search input
{
  position: relative;
  float: left;
  width: 100%;
  box-sizing: border-box;
  padding: 5px 10px;
  border-radius: 3px;
  border: 1px solid #e3e6e8;
  
}
.header .header-con .web-search input:focus
{
  outline: none;
}

.header .header-con .web-search button
{
  position: absolute;
  float: left;
  right: 10px;
  width: 5%;
  box-sizing: border-box;
  padding: 8.5px 10px;
  text-align: center;
  border-radius: 3px;
  border: 0px solid #ccc;
  cursor: pointer;
  background: none;
  color: #ccc;
}
.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: 0px 0px;
}
.header .header-con .web-login a
{
  position: relative;
  float: left;
  width: auto;
  box-sizing: border-box;
  padding: 0px 0px;
  color: #fff;
  font-size: 10pt;
}
.header .header-con .web-login a img
{
  height: 28px;
  float: left;
  padding: 8px 4px;
}


.header .header-con .web-login a:hover
{
  background: linear-gradient(45deg, #e9e9e9, #e9e9e9);
}
.header .header-con .web-login a:active
{
  background: linear-gradient(45deg, #e9e9e9, #e9e9e9);
}

@media screen and (max-width:468px){

.header .header-con .web-logo img.logo_name
{
  /*display: none;  */
  padding-top: 8px;
  height: 37px;
}

.header .header-con .web-logo
{
  width: auto;
  padding: 0px 0px;
}
.header .header-con .web-search
{
  display: none;
}


.header .header-con .web-logo img
{
  height: 41px;
}

}
.header_fix
{
  position: fixed!important;
  z-index: 2000;
}
