﻿/* 除首页外的其它页面菜单的公共样式 */
#menu {
	width: 80%;
}

#menu ul {
	list-style: none;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: flex-end;
}

#menu ul li.parent {
	float: left;
	height: 60px;
	line-height: 60px;
	position: relative;
	z-index: 99;
}

#menu ul li.parent::before {
	content: "";
	display: block;
	height: 15px;
	width: 1px;
	background-color: #6b92c1;
	overflow: hidden;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 1px;
}

/* #menu ul li.parent.active::after {
	content: "";
	display: block;
	position: absolute;
	width: 80%;
	height: 50px;
	bottom: 0px;
	z-index: -1;
	left: 50%;
	transform: translateX(-50%);
	background: linear-gradient(to bottom, #0950a7 0%, #035DCB 100%);
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
} */

#menu ul li.parent:last-child {
	border-right: none;
}

#menu ul li:last-child::before {
	display: none;
}

#menu dl {
	width: 100%;
	margin: 0 auto;
	background-color: #035DCB;
	opacity: 0;
	visibility: hidden;
	transition: all .2s;
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
}

#menu dl dt {
	display: flex;
	justify-content: center;
	height: 40px;
	line-height: 40px;
}

#menu li.parent dl dt a{
	font-size: 15px !important;
}


#menu li.parent.active dl {
	opacity: 1;
	visibility: visible;
}

#menu li.parent:hover dl {
	opacity: 1;
	visibility: visible;
}

#menu ul li a {
	color: #FFF;
	position: relative;
	display: flex;
	align-items: center;
	text-decoration: none;
	justify-content: center;
	font-weight: 600;
}

.sub {
	width: 450px;
	padding: 10px 20px;
	background-color: #035DCB;
	position: absolute;
	top: 60px;
	left: 0px;
	display: flex;
	opacity: 0;
	visibility: hidden;
	transition: all .3s;
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
}

.sub ul.sub_ul {
	width: 150px;
	display: flex;
	flex-direction: column;
	list-style: none;
}

.sub ul.sub_ul li {
	height: 40px;
	line-height: 40px;
	width: 100%;
}

.sub ul li a {
	justify-content: flex-start !important;
	font-size: 15px !important;
	color: #FFF !important;
}

#menu li.parent:hover .sub {
	opacity: 1;
	visibility: visible;
}

.sub ul li a:hover {
	color: #FFF !important;
}
/* =========================================== */
/* =========================================== */
/* =========================================== */
/* 菜单样式 start */
.top-1 {
	height: 30px;
	line-height: 30px;
}

.top-1 div {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: flex-end;
}

.top-1 p {
	display: inline-block;
	font-size: 14px;
	margin-left: 20px;
}

.top-1 p a {
	color: #999999;
}

#menu-logo {
	width: 100%;
	background-color: #035DCB;
	height: 60px;
}

#logo {
	width: 20%;
}

#logo img {
	position: absolute;
	left: 0px;
	top: 50%;
	transform: translateY(-50%);
}

.top-3 {
	position: relative;
	width: 100%;
}

.top-3 img {
	width: 100%;
	/* height: 100%; */
}

/* 菜单+logo 样式 end */
/* =========================================== */
/* =========================================== */
/* =========================================== */
