/* 头部 */
header{
	border-bottom:1px solid #ccc;
	background: #fff;
}
.header-bar{
	height:80px;
	/* line-height: 80px; */
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.left-section{
	float:left;
	flex:1;
}

.right-section {
	flex:1;
}
.right-section>div{
	
	display: flex;
	align-items: center;
	float: right;
}

.right-section .hotline-info {
	text-align: right;
	margin-left: 5px;
}

.hotline-info .hotline-label {
	font-family: "PingFang SC";
	font-size: 16px;
	font-style: normal;
	font-weight: 500;
}

.hotline-info .hotline-number {
	color: #007C92;
	font-family: "PingFang SC";
	font-size: 16px;
	font-style: normal;
	font-weight: 500;
	font-size: 18px;
}

/* 导航 */
.navigate{
	position:relative;
    width: 100%;
    background: #157674;
	height: 80px;
}

.navigate>ul{
	position:relative;
	display: flex;
    justify-content: flex-end;
    /* margin-top: 15px; */
    margin-bottom: 0;
}

.navigate>ul>li{
    display: inline-block;
    width: 14%;
    text-align: center;
    position: relative;
}
.navigate>ul>.active>a{
	border-bottom: 2px solid #007C92;
}

.navigate>ul>li>a{
    line-height: 60px;
    /* width: 100%; */
    display: block;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
	text-decoration: none;
}

/* 二级导航 */
.ul {
    display: flex;
}

    .ul > li {
        width: 12%;
        position: relative;
        float: left;
    }

        .ul > li > a {
            color: #fff;
            text-align: center;
        }

        .ul > li a:hover, .cur {
            /* background-color: #2baded; */
            /* color: #fff; */
        }
#navigate>ul >li>a.Navbox_selected {
    border-bottom: 3px solid #007C92;
    /* color: #fff !important; */
}

.ul2 {
    position: absolute;
	top:60px;
    background-color: #fff;
    width: 100%;
    display: none;
    z-index: 999;
    color: #007C92;
    margin-top: 0;
    border-top: 3px solid #007C92;
	box-shadow: 1px 1px 12px 5px rgba(0, 0, 0, 0.05);
}

    .ul2 > li > a {
		background-color: #fff;
		color: #007C92 !important;
        font-size:14px;
        display: block;
        padding: 15px 0;
        text-align: center;
		text-decoration: none;
    }

        .ul2 > li > a:hover {
            background: #007C921A !important;
            /* color: #33b0ed !important; */
            border-radius:0 !important;
        }

    .ul2 > li {
        list-style: none;
    }

        .ul2 > li:last-child > a {
            border-bottom: none;
        }
/* 搜索 */
.search{
	position: absolute;
	right:-30px;
	line-height:55px;
	display: flex;
}
.search_logo{
	cursor: pointer;
}
.search_group{
	display: none;
	width: 320px;
}
.search_input{
	width: 320px;
	height:36px;
	border:1px solid #007C92;
	border-radius: 43px;
	padding:2px 20px;
}
.btn_group{
	position: absolute;
	right: 17px;
	top: 0;
}
.btn_search{
	margin-right:10px;
   width: 17px;
   height: 17px;
   cursor: pointer;
}
.btn_close{
   width: 15px;
   height: 15px;
   cursor: pointer;
}






/*手机端导航*/

.navShow{
    overflow:hidden;
}
#m_nav.act {
    pointer-events: auto;
    left: 0;
    opacity: 1;
    visibility: visible;
}
#m_nav {
    z-index: 99999;
    position: fixed;
    width: 100vw;
    height: 100vh;
    /* right: -105vw; */
    top: 0;
    display: none;
    padding: 84px 20px 30px;
    overflow: hidden;
    pointer-events: none;
    transition: all 0.3s ease-out;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    background: #0b8297;
    background-size: cover;
    opacity: 0;
    visibility: hidden;
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
}

.list_box_nav_mobile {
    width: 100%;
    height: 100%;
    /* background: rgba(255, 255, 255, .1); */
    padding: 0 0 10px;
    overflow: hidden;
    overflow-y: scroll;
    margin: 0;
    flex: 1;
}

.list_box_nav_mobile>li {
    width: 100%;
    overflow: hidden;
    padding: 0;
    position: relative;
    margin: 0 auto;
}
.list_box_nav_mobile>li .con {
    position: relative;
}
.list_box_nav_mobile>li.on .a {
    color: rgba(255, 255, 255, 1);
}
.list_box_nav_mobile>li .a {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, .3);
    line-height: .64rem;
    color: rgba(255, 255, 255);
    padding: 0;
    font-size: .2rem;
    display: flex;
    position: relative;
    transition: .5s;
}
.list_box_nav_mobile>li .list {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: none;
}
.list_box_nav_mobile>li .list a {
    display: block;
    font-size: 14px;
    color: rgba(255, 255, 255, .8);
    line-height: 2.5;
    padding-left: 20px;
}

html{font-size: 80px !important;}
/* 超小设备 (手机, 600px 以下屏幕设备) */
@media screen and (max-width: 600px) {
	#header,#navigate{display: none;}
	.m_header_box,#header_con{display: block !important;}
	.m_header_box{
		z-index: 1000000;
	    display: block;
	    position: relative;
	    background: #fff;
	}
	.m_header{
		display: flex;
		justify-content: space-between;
		align-items: center;
		/*margin-bottom: 30px;*/
		padding: 10px;
	}
	.m_header .logo img{width:50px;}
	
	.right-section {
	    margin-right: 50px !important;
	}
	#header_con{
		background: #1a899d;
	    width: 100%;
	    height: 50px;
	    line-height: 35px;
	    text-align: center;
	}
	#header_con .Search_Input{
		position: relative;
	}
	#header_con .search{
		position: unset;
		/* justify-content: center; */
		display: block;
	}
	#header_con .btn_group{
		right:56px;
	}
	
	#header_con input#textfield{
		width: 80%;
		line-height: 30px;
		border:1px solid #007C92;
		border-radius: 30px;
	}
	#header_con input#textfield::placeholder {
	  font-size: 14px;
	  padding-left: 15px;
	}
	#header_con input#textfield:focus{
		border:1px solid #007C92;
	}
	#nav_btn_box {
	    position: absolute;
	    right: -18px;
	    width: 0.85rem;
	    height: 0.62rem;
	    display: flex;
	    align-items: center;
	    justify-content: center;
	    z-index: 1;
	    min-width: 0.85rem;
	}
	
	#nav_btn_box:before {
	    content: "";
	    position: absolute;
	    z-index: -1;
	    top: 0;
	    right: 0;
	    bottom: 0;
	    left: 0;
	    /* background: #fff; */
	}
	#nav_btn {
	    cursor: pointer;
	    text-align: center;
	    z-index: 99999;
	    -webkit-transition: .5s;
	    -moz-transition: .5s;
	    -ms-transition: .5s;
	    -o-transition: .5s;
	    outline: none;
	    box-shadow: none;
	}
	
	#nav_btn .point {
	    display: inline-block;
	    width: 0.34rem;
	    height: 18px;
	    position: relative;
	    outline: none;
	}
	
	#nav_btn .navbtn {
	    position: absolute;
	    top: 50%;
	    left: 0;
	    display: inline-block;
	    width: 100%;
	    height: 2px;
	    -webkit-transition: all .3s ease-out 0s;
	    -moz-transition: all .3s ease-out 0s;
	    -ms-transition: all .3s ease-out 0s;
	    -o-transition: all .3s ease-out 0s;
	    transition: all .3s ease-out 0s;
	    background: #000;
	    margin-top: -1px;
	}
	#nav_btn .point.on .navbtn {
	    background: transparent;
	}
	
	#nav_btn .point.on .navbtn::before {
	    -webkit-transform: rotate(-45deg);
	    -moz-transform: rotate(-45deg);
	    -ms-transform: rotate(-45deg);
	    -o-transform: rotate(-45deg);
	    transform: rotate(-45deg);
	    top: 0px;
	}
	
	#nav_btn .point.on .navbtn::after {
	    -webkit-transform: rotate(45deg);
	    -moz-transform: rotate(45deg);
	    -ms-transform: rotate(45deg);
	    -o-transform: rotate(45deg);
	    transform: rotate(45deg);
	    top: 0px;
	}
	#nav_btn .navbtn::before {
	    top: 8px;
	}
	
	#nav_btn .navbtn::after {
	    top: -8px;
	}
	
	#nav_btn .navbtn::after, #nav_btn .navbtn::before {
	    position: absolute;
	    left: 0;
	    display: inline-block;
	    width: 100%;
	    height: 2px;
	    content: '';
	    -webkit-transition: all .3s ease-out 0s;
	    -moz-transition: all .3s ease-out 0s;
	    -ms-transition: all .3s ease-out 0s;
	    -o-transition: all .3s ease-out 0s;
	    transition: all .3s ease-out 0s;
	    background: #000;
	}
	
	::before, ::after {
	    transition: .5s;
	}
	
	.list_box_nav_mobile>li i {
	    opacity: 1;
	    filter: alpha(opacity = 100);
	    display: inline-block;
	    width: 0.64rem;
	    height: 0.64rem;
	    display: inline-block;
	    background: url('../img/arrow_down.png') center no-repeat;
	    background-size: 15px 8px !important;
	    position: absolute;
	    display: block;
	    right: 0;
	    top: 0;
	}
	
}

/* 小设备 (平板电脑和大型手机，600 像素及以上) */
@media only screen and (min-width: 600px) and (max-width: 768px){
	#header,#navigate{display: none;}
	.m_header_box,#header_con{display: block !important;}
	.m_header_box{
		z-index: 1000000;
	    display: block;
	    position: relative;
	    background: #fff;
	}
	.m_header{
		display: flex;
		justify-content: space-between;
		align-items: center;
		/*margin-bottom: 30px;*/
		padding: 10px;
	}
	.m_header .logo img{width:50px;}
	.right-section {
	    margin-right: 50px !important;
	}
	#header_con{
		background: #1a899d;
	    width: 100%;
	    height: 50px;
	    line-height: 35px;
	    text-align: center;
	}
	#header_con .Search_Input{
		position: relative;
	}
	#header_con .search{
		position: unset;
		/* justify-content: center; */
		display: block;
	}
	#header_con .btn_group{
		right:56px;
	}
	
	#header_con input#textfield{
		width: 80%;
		line-height: 30px;
		border:1px solid #007C92;
		border-radius: 30px;
	}
	#header_con input#textfield::placeholder {
	  font-size: 14px;
	  padding-left: 15px;
	}
	#header_con input#textfield:focus{
		border:1px solid #007C92;
	}
	#nav_btn_box {
	    position: absolute;
	    right: -18px;
	    width: 0.85rem;
	    height: 0.62rem;
	    display: flex;
	    align-items: center;
	    justify-content: center;
	    z-index: 1;
	    min-width: 0.85rem;
	}
	
	#nav_btn_box:before {
	    content: "";
	    position: absolute;
	    z-index: -1;
	    top: 0;
	    right: 0;
	    bottom: 0;
	    left: 0;
	    /* background: #fff; */
	}
	#nav_btn {
	    cursor: pointer;
	    text-align: center;
	    z-index: 99999;
	    -webkit-transition: .5s;
	    -moz-transition: .5s;
	    -ms-transition: .5s;
	    -o-transition: .5s;
	    outline: none;
	    box-shadow: none;
	}
	
	#nav_btn .point {
	    display: inline-block;
	    width: 0.34rem;
	    height: 18px;
	    position: relative;
	    outline: none;
	}
	
	#nav_btn .navbtn {
	    position: absolute;
	    top: 50%;
	    left: 0;
	    display: inline-block;
	    width: 100%;
	    height: 2px;
	    -webkit-transition: all .3s ease-out 0s;
	    -moz-transition: all .3s ease-out 0s;
	    -ms-transition: all .3s ease-out 0s;
	    -o-transition: all .3s ease-out 0s;
	    transition: all .3s ease-out 0s;
	    background: #000;
	    margin-top: -1px;
	}
	#nav_btn .point.on .navbtn {
	    background: transparent;
	}
	
	#nav_btn .point.on .navbtn::before {
	    -webkit-transform: rotate(-45deg);
	    -moz-transform: rotate(-45deg);
	    -ms-transform: rotate(-45deg);
	    -o-transform: rotate(-45deg);
	    transform: rotate(-45deg);
	    top: 0px;
	}
	
	#nav_btn .point.on .navbtn::after {
	    -webkit-transform: rotate(45deg);
	    -moz-transform: rotate(45deg);
	    -ms-transform: rotate(45deg);
	    -o-transform: rotate(45deg);
	    transform: rotate(45deg);
	    top: 0px;
	}
	#nav_btn .navbtn::before {
	    top: 8px;
	}
	
	#nav_btn .navbtn::after {
	    top: -8px;
	}
	
	#nav_btn .navbtn::after, #nav_btn .navbtn::before {
	    position: absolute;
	    left: 0;
	    display: inline-block;
	    width: 100%;
	    height: 2px;
	    content: '';
	    -webkit-transition: all .3s ease-out 0s;
	    -moz-transition: all .3s ease-out 0s;
	    -ms-transition: all .3s ease-out 0s;
	    -o-transition: all .3s ease-out 0s;
	    transition: all .3s ease-out 0s;
	    background: #000;
	}
	
	::before, ::after {
	    transition: .5s;
	}
	
	.list_box_nav_mobile>li i {
	    opacity: 1;
	    filter: alpha(opacity = 100);
	    display: inline-block;
	    width: 0.64rem;
	    height: 0.64rem;
	    display: inline-block;
	    background: url('../img/arrow_down.png') center no-repeat;
	    background-size: 15px 8px !important;
	    position: absolute;
	    display: block;
	    right: 0;
	    top: 0;
	}
	
	
}

/* 中型设备（平板电脑，768 像素及以上） */
@media screen and (min-width: 768px) and (max-width: 992px){
	
}


/* 大型设备（笔记本电脑/台式机，992 像素及以上） */
@media screen and (min-width: 992px) and (max-width: 1200px) {
	.m_header{
		padding:20px;
	}
	.m_header .logo img{
		width: 80px;
	}
	#nav_btn_box{
		width: 50px;
		/* height: 0.62rem; */
	}
	#nav_btn .point{
		width: 80px;
	}
	#nav_btn .navbtn::before{
		height: 4px;
		top:15px
	}
	#nav_btn .navbtn::after{
		height: 4px;
		top: -15px;
	}
} 

/* 超大型设备（大型笔记本电脑和台式机，1200 像素及以上） */
@media screen and (min-width: 1200px) {
	
		#header{display: block !important;}
		#navigate{display: inline-block !important;}
		.m_header_box,#header_con{display:none !important;}
}
