﻿.header_h{
	height: 100px;	
}
.header_box{
	position: fixed;
    background: #fff;
    height: 100px;
    top: 0px;
    left: 0px;
    width: 100%;
    z-index: 9;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);	
}
.header{
    position: relative;
    width: 100%;
    max-width: 100%;
    height: 100%;	
    padding: 0px 0px 0px 10px;
    margin: 0 auto;
    border-top: 1px solid #dfdfdf;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.logo{
	background: #ffffff;
    border-radius: 0px 0px 50% 50%;
	position: relative;
    display: block;
    width: 140px;
	max-height: 100%;
    margin: 5px 0px 5px 0px;
    z-index: 2;
}
.logo > img{
	max-width:100%;
}
.top_menu_box{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: calc(100% - 150px);
    height: 100%;
    margin-left: 10px;
}
.top_menu_box.left{
    justify-content: flex-start;
}
.top_menu_box.right{
	
}
.top_menu_list{
	position: relative;
    padding: 10px 15px;
    font-size: 18px;
}
.top_menu_list > a{
	
}
.top_menu_list a p.ch {
    margin: 0;
    text-align: right;
}
.menu_top_btn{
    position: relative;
    display: flex;
    justify-content: flex-end;
}
.menu_top_btn a{
	padding: 10px 10px;
    font-size: 16px;
}
.menu_top_btn a .icon{
	padding-right:5px;
}

.top_menu_list.search{
    border-radius: 20px;
}
.search_btn_box{
    position: relative;
    width: 150px;
}
.search_btn_box input{
    border-radius: 20px;
    width: 100%;
    height: 30px;
    padding-left: 10px;
    padding-right: 45px;
    border: 2px solid #376634;
}
.search_btn_box a{
    display: block;
    position: absolute;
    right: 5px;
    top: 0px;
    width: 40px;
    height: 30px;
    text-align: center;
    font-size: 20px;
}

.bar {
    display: none;
    position: fixed;
    float: right;
    width: 50px;
    height: 50px;
    top: 30px;
    right: 3%;
    z-index: 11;
}
.bar > div {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    border: 0 none;
    background-color: transparent;
    cursor: pointer;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
.bar > div:before {
    content: "";
    position: absolute;
    z-index: 1;
    display: block;
    width: 30px;
    height: 2px;
    top: 24px;
    right: 16px;
    background-color: #000;
    -webkit-transition: all .5sease;
    -moz-transition: all .5s ease;
    -o-transition: all .5s ease;
    -ms-transition: all .5s ease;
    transition: all .5sease;
}
.bar > div:after {
    content: "";
    position: absolute;
    z-index: 1;
    display: block;
    width: 30px;
    height: 2px;
    top: 31px;
    right: 16px;
    background-color: #000;
    -webkit-transition: all .5sease;
    -moz-transition: all .5s ease;
    -o-transition: all .5s ease;
    -ms-transition: all .5s ease;
    transition: all .5sease;
}
.bar:after {
    content: "";
    position: absolute;
    z-index: 1;
    display: block;
    width: 30px;
    height: 2px;
    top: 17px;
    right: 16px;
    background-color: #000;
    -webkit-transition: all .5sease;
    -moz-transition: all .5s ease;
    -o-transition: all .5s ease;
    -ms-transition: all .5s ease;
    transition: all .5sease;
}
.bar.active:after  {
    transform: rotate(45deg);
    top: 25px;	
}
.bar.active > div:before{
	display: none;
}
.bar.active > div:after{
	transform: rotate(-45deg);
	top: 25px;	
}
.bar:hover > div:before {
    width: 20px;
}
/*header_down_menu_box*/
.header_down_menu_box_bg{
	position: fixed;
    top: 0;
    width: 100%;
    height: 100%;
    background: #00000059;
    z-index: 9;
}
.header_down_menu_box{
	position: fixed;
    top: 0;
    width: 100%;
    height: 100%;
    /*background: #00000059;*/
    z-index: 10;
}
.header_down_menu_box_row {
    display: flex;
    height: 100%;
	justify-content: flex-start;
}
.header_down_body_box{
	width: 100%;
    height: 100%;
    display: flex;
    align-content: center;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.header_down_menu_item {
	position: relative;
    width: 65%;
    max-width: 600px;
    min-width: 300px;
    height: 100%;
    background-color: #f6f6f6;
    padding: 30px 30px 30px 25px;
    overflow-y: auto;
}
.header_down_menu_ul {
    width: 100%;
    list-style-type: none;
    padding: 0px;
    display: flex;
    flex-wrap: wrap;
}
.header_down_menu_ul li {
    width: 100%;
    margin: 10px;
    padding: 20px 10px 0px 10px;
	border-top: 1px solid #d7d7d7;
}
.header_down_menu_ul li:nth-child(1){
    border-top: 0;
    padding-top: 0;
}
.header_down_menu_ul li.w_100{
	width:100%;
    border-bottom: solid 1px #c0c0c0;	
}
.header_down_menu_ul li a {
    font-size: 20px;
    display: block;
    color: #2c2c2c;
}
.header_down_menu_ul li a img{
	width: 100%;
    padding: 0px 35px;
}
.header_down_menu_ul li a .icon{
	display: block;
    font-size: 45px;
}
.top_search_box{
    position: relative;
    width: 180px;	
	padding: 10px 15px;
    height: 50px;
}
.top_search_box input{
	width: 100%;
    border-radius: 20px;
    padding-right: 40px;	
}
.top_search_box a{
	position: absolute;
    display: block;
    font-size: 20px;
    right: 22px;
    top: calc(50% - 15px);
}
.top_menu_logo{
	display: flex;
    flex-wrap: wrap;
    height: 100%;	
}
.top_menu_logo a{
	width: 100px;
    padding: 5px;	
    display: flex;
    align-items: center;

}
.top_menu_logo a:nth-child(1){
	background: #ff7878;
}
.top_menu_logo a:nth-child(2){
	background: #dce7e1;
}
.top_menu_logo a:nth-child(3){
    background: #fff;
}
.top_menu_logo a > img{
	max-width: 100%;
	max-height: 100%;
}
.top_menu_logo a:hover{
    background: #bbbbbb;
}
@media only screen and (max-width: 1060px){
.top_menu_box{
	display:none;
}	
.bar{
	display: block;
}
.top_search_box{
	position: relative;
    width: 100%;
    padding: 10px 0px;
    height: auto;
}
.top_search_box input {
    width: 100%;
    border-radius: 0px;
    height: 45px;
    padding-right: 40px;
}
.header_down_menu_ul li a{
	font-size: 28px;
	right: 15px;
    top: calc(50% - 18px);
}
}
