<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";

#header{
	width: 100%;
	background: #fff;
	height: 60px;
	position: fixed;
	z-index: 999;
	top: 0;
	left: 0;
	-moz-box-shadow:0px 0px 10px rgba(0,0,0,0.1);               /* For Firefox3.6+ */
	-webkit-box-shadow:0px 0px 10px rgba(0,0,0,0.1);            /* For Chrome5+, Safari5+ */
	box-shadow:0px 0px 10px rgba(0,0,0,0.1);                    /* For Latest Opera */		
}
#header .headerBox{
	width: 90%;
	min-width:1200px;
	position: relative;
	margin:0 auto;
}
#header .logo{
	position: absolute;
	z-index: 9;
	top: 18px;
	left: 10px;
	width: 130px;
	height: 22px;
}
#header .logo .icon-logo{
	position: relative;
	z-index: 9;
	display: block;
	width: 130px;
	height: 30px;
	background: url(../img/icon.png) no-repeat left top;
}

#header .menu{
	position: absolute;
	z-index: 9;
	left: 180px;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}

#header .menu ul.menu-con{
	position: relative;
	right: 0;
	top: 0;
}
#header .menu ul li{
	position: relative;
	float: left;
	display: block;
}
#header .menu ul li a{
	position: relative;
	display: block;
	color: #333;
	height: 60px;
	line-height: 60px;
	font-size: 16px;
}
#header .menu ul li a span{
	padding: 0 15px;
}
#header .menu ul li a:hover{
	color: #26bbd6
}


#header .menu-btn{
	display: none;
}

/*滚动变化*/
#header.suspend{
	position: fixed;
}

#header .conn{
	position: absolute;
	right: 10px;
	height:60px;
	line-height:60px;
}
#header .conn a{
	color:#26bbd6;
	display:inline-block;
	height:16px;
	line-height:16px;
	font-size:16px;
}
#header .conn .email span{
	display:inline-block;
	position: relative;
	top: 2px;
	width:22px;
	height:16px;
	background:url(../img/icon.png) no-repeat -700px 1px;
}
#header .conn .platform span{
	display:inline-block;
	width:22px;
	position: relative;
	top: 2px;
	height:16px;
	background:url(../img/icon.png) no-repeat -800px 1px;
}
#header .conn b{
	display:inline-block;
	box-sizing:border-box;
	width:2px;
	height:15px;
	margin:0 10px;
	border:1px solid #e6e6e6;
}

/*二级菜单效果*/
#header .menu .menu-con li ul{
	position:absolute;
	width:100%;
	background:#fff;
	display:none;
}
#header .menu .menu-con li ul li{
	width:100%;
	height:36px;
	line-height:36px;
	border-top:1px solid #E4E4E4;
	z-index:inherit;
	text-align:center;
	padding:0;
	font-size:14px;
	float: none;
}
#header .menu .menu-con li ul li a{
	height:36px;
	line-height:36px;
	font-size:14px;
	color:#666;
}
#header .menu .menu-con li ul li:hover{
	background:#F3F3F3;
}
#header .menu .menu-con li ul li:hover a{
	color:#666;
}
#header .menu .menu-con .ECG:hover .ECG_list{
	display:block;
}
#header .menu .menu-con .about:hover .about_list{
	display:block;
}


@media screen and (max-width: 768px) {
/*手机样式*/
#header .logo{
	left: 0;
}
#header .logo .icon-logo{
	position: relative;
	z-index: 9;
	display: block;
	width: 130px;
	height: 30px;
	background: url(../img/icon.png) no-repeat left top;
	transform:scale(0.8,0.8);
}


#header .headerBox{
	width:100%;
	min-width:100%;
}
#header .conn{
	display: none;
	padding-right:60px;
	padding-top: 2px;
	z-index: 3;
	width: 100%;
	background: #fff;
	text-align:right;
}
#header .menu ul li a span{
	border:0 !important;
}
#header .menu-btn {
	display: block;
	width: 30px;
	height: 30px;
	margin-top:15px;
	position: absolute;
	z-index: 9;
	top: 0px;
	right: 15px;
	/*-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;*/		
}
#header .menu-btn .icon-menu-btn{
	width: 30px;
	height: 30px;
	display: block;
	background: url(../img/menu.png) no-repeat;
	background-size:100%;
}
/*#header .menu a.menu-btn:hover .icon-menu-btn{
	width: 30px;
	height: 30px;
	display: block;
	background: url(../img/menu.png) no-repeat;
	background-size:100%;
	background-color: rgba(256,256,256,1);
}*/

#header .menu{
	position: absolute;
	z-index: 2;
	right: 0px;
	top: 0px;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
#header .menu ul.menu-con{
	position: fixed;
	top: 0px;
	padding-top: 60px;
	right: -100%;
	width: 100%;
	margin: 0;
	height: 100%;
	background: #fafafa;
	-webkit-transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;		
}
#header .menu ul li{
	float: none;
	width: 100%;
	display: block;
	text-align:left;
	border-top:1px solid #f1f1f1;
}
#header .menu ul.menu-con.open li ul{
	display:block;
	background:#f9fafb;
	border-top: 0;
	text-align: left;
}
#header .menu ul.menu-con.open li.ECG{
	height: 260px;
}
#header .menu ul.menu-con.open li.ECG ul li{
	width:100%;
	float:none;
	display: block;
	border: 0;
}

#header .menu ul.menu-con.open li.ECG ul{
	height: 200px;
}
#header .menu .menu-con li ul li{
	overflow: hidden;
	text-align:left;
	line-height: 50px;
	height: 50px;
}
#header .menu .menu-con li ul li a{
	line-height: 50px;
	height: 50px;
	font-size: 16px;
	padding-left: 30px;
}
#header .menu ul.menu-con.open li.about ul li{
	width:100%;
	float:none;
	display: block;
	overflow:hidden;
	border-bottom:0;
	border-top:0;
}
#header .menu ul.menu-con.open li.about{
	padding-bottom:30px;
}
#header .menu ul.menu-con.open{
	background-color:#fff;
	top: 0px;
	right: 0;
	overflow-x: auto;
}

}
</pre></body></html>