#head{
    position: relative;
}
.menu{
    position: absolute;
    top: 60px;
    left: 0;
    z-index: 99;
    width: 100%;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.8);
}

/* logo */
.logo{
    float: left;
    margin-top: 6px;
    width: 302px;
    height: 70px;
}
.logo>img{
    width: 100%;
    height: 100%;
}

/* 菜单栏 */
.menu_right>ul{
    display: inline-block;
    margin-right:34px;
}
.menu_right>ul>li{
    position: relative;
    float: left;
    width: 111px;
    height: 80px;
    line-height: 80px;
    font-size: 18px;
    text-align: center;
    font-weight: 700;
}
.menu_right>ul>li>a{
    color: #017783;
	display: inline-block;
	width: 100%;
	height: 100%;
}
.menu_right>ul>.action{
    background-color: #017783;
}
.menu_right>ul>.action>a{
    color: #fff;
}
/* 下拉菜单 */
.menu .item{
    display: none;
}
.menu li:hover .item{
    position: absolute;
    top: 80px;
    left: -40px;
    display: block;
    width: 200px;
    background: #fff;
    line-height: 0px;
    font-weight: 400;
}
.menu li:hover .item>div{
    display:inline-block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 200px;
    height: 60px;
    line-height: 60px;
    font-size: 16px;
}
.menu li:hover .item>div>a{
	display: inline-block;
	width: 100%;
	height: 100%;
	color: #1F1F1F;
}
.item>div:hover{
    background-color: #E7E7E7;
}
/* 联系电话 */
.menu .menu_right{
    float: right;
}
.menu .menu_right .phone{
    float: right;
    padding-top: 28px;
}
.menu .menu_right .phone{
    font-size: 14px;
    font-weight: 900;
    color: #017783;
}
.menu .menu_right .phone img{
    vertical-align: top;
    width: 24px;
    height: 24px;
}

/* 联系方式 */
.contact{
    position: fixed;
    top: 50%;
	margin-top: -151px;
    right: 20px;
    z-index: 999;;
    width: 80px;
    height: 242px;
    border-radius: 10px;
    background: rgba(1,119,131,0.66);
    box-shadow: 3px 3px 6px 0px rgba(0,0,0,0.18); 
}
.contact>div{
	position: relative;
    width: 80px;
    height: 80px;
    text-align: center;
    font-size: 12px;
    line-height: 12px;
    color: #fff;
}
.contact .icon{
    padding: 14px 20px 10px 20px;
    width: 40px;
    height: 40px;
}
.icon_kf{
    background: url(../images/icon_kf.png) no-repeat center center; 
}
.icon_wx{
    background: url(../images/icon_wx.png) no-repeat center center; 
}
.icon_gzh{
    background: url(../images/icon_gzh.png) no-repeat center center; 
}
.wx,.gzh{
    border-top: 1px solid rgba(255, 255, 255, 0.6);
}
.kf{
	border-radius: 10px 10px 0 0;
}
.gzh{
	border-radius: 0 0 10px 10px;
}
.contact>div .show{
	display: none;
	position: absolute;
	z-index: -1;
	top: -1px;
	right: 0;
	border-radius: 10px 0 0 10px;
	width: 198px;
	height: 82px;
	background-color: #fff;	
}
.contact>.kf .show{
	border-radius: 10px 10px 0 10px;
}
.contact>.gzh .show{
	border-radius: 10px 0 10px 10px;
}
.kf>.show{
	text-align: left;
	font-size: 14px;
	line-height: 82px;
	color: #017783;
	font-weight: 500;
}
.kf>.show>span{	
	margin-left: 14px;
}
.wx>.show>img,
.gzh>.show>img{
	float: left;
	padding-left: 20px;
	width: 82px;
	height: 82px;
}
.contact>div:hover{
    background-color:transparent;
	color: #017783;
}
.contact>.kf:hover .icon_kf{
	background-image: url(../images/icon_kf_a.png);
}
.contact>.wx:hover .icon_wx{
	background-image: url(../images/icon_wx_a.png);
}
.contact>.gzh:hover .icon_gzh{
	background-image: url(../images/icon_gzh_a.png);
}
.contact>.kf:hover .show,
.contact>.wx:hover .show,
.contact>.gzh:hover .show{
	display: block;
}