.header_top {
	background-color: #43474d;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 4px;
}

.header_top .header_topone {
	display: flex;
	align-items: center;
}

.header_top .header_topone a {
	width: 30px;
	height: 30px;
	margin: 5px 15px;
	margin-right: 2px;
	background-color: #555;
	border-radius: 50%;
	padding: 3px;
}

.header_top .header_topone a img {
	width: 24px;
	height: 24px;
}

.header_top .header_topone a:nth-child(4) {
	background-color: initial;
	border-radius: 0;
	display: flex;
	align-items: center;
}

.header_top .header_topone a:nth-child(4) img {
	height: 15px;
	width: 15px;
	margin-right: 5px;
}

.header_top .header_topone a:nth-child(4) div {
	font-size: 12px;
	color: #ffffff;
}

.header_top .header_topone a:nth-child(1):hover {
	background-color: #0056b3;
}

.header_top .header_topone a:nth-child(2):hover {
	background-color: #ea6060;
}

.header_top .header_topone a:nth-child(3):hover {
	background-color: #4fc6f8;
}

.header_top .header_toptwo {
	padding-right: 10px;
	display: flex;
	align-items: center;
}

.header_top .header_toptwo .header_oneItem {
	display: flex;
	align-items: center;
	padding: 5px 10px;
	    border-radius: 5px;
}
.header_top .header_toptwo .header_oneItem:hover{
	background-color: #ffffff;
}
.header_top .header_toptwo .header_oneItem:hover div{
	color: #000000;
}

.header_top .header_toptwo .header_oneItem img {
	width: 18px;
	margin-right: 5px;
}

.header_top .header_toptwo .header_oneItem div {
	font-size: 12px;
	color: #ffffff;
}



.header_bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	background-color: #ffffff;
	padding: 13px 30px;
}

.header_bottomone {
	width: 80px;
	height: 80px;
}

.header_bottomone img {
	width: 100%;
	height: 100%;
}

.header_bottomtwo {
	display: flex;
	align-items: center;
}

.header_bottomtwo .header_bottomthree {
	font-size: 16px;
	padding: 10px;
	position: relative;
	opacity: 1;
	cursor: pointer;
}
.header_bottomtwo .header_bottomthree:hover {
	color: #1273eb;
}
.header_bottomtwo .header_bottomthree:hover::before {
	content: "";
	width: 50%;
	position: absolute;
	background: #1273eb;
	height: 5px;
	top: 0px;
	left: 0px;
	border-radius: 6px;
	animation: aaa 0.5s linear 1;
}

.header_bottomtwo .header_bottomthree:hover::after {
	content: "";
	width: 50%;
	animation: aaa 0.5s linear 1;
	position: absolute;
	background: #1273eb;
	height: 5px;
	bottom: 0px;
	right: 0px;
	border-radius: 6px;
}

.header_bottomtwo .headercolor{
	color: #1273eb;
}
.header_bottomtwo .headercolor::before {
	content: "";
	width: 50%;
	position: absolute;
	background: #1273eb;
	height: 5px;
	top: 0px;
	left: 0px;
	border-radius: 6px;
	animation: aaa 0.5s linear 1;
}

.header_bottomtwo .headercolor::after {
	content: "";
	width: 50%;
	animation: aaa 0.5s linear 1;
	position: absolute;
	background: #1273eb;
	height: 5px;
	bottom: 0px;
	right: 0px;
	border-radius: 6px;
}

@keyframes aaa{
	from {
		width: 0;
	}
	to {
		width: 50%;
	}
}

.header_bottomtwo .header_bottomthree i {
	font-size: 14px;
	margin-left: 5px;
	vertical-align: middle;
}

.header_bottomtwo .header_bottomthree i::before {
	content: "";
	display: inline-block;
	width: 0;
	height: 0;
	border-top: 5px solid #000;
	border-bottom: 5px solid transparent;
	border-right: 5px solid transparent;
	border-left: 5px solid transparent;
}
.header_bottomtwo .header_bottomthree:hover .header_content {
	display: block;
}
.header_bottomtwo .header_bottomthree .header_content {
	box-shadow: 3px 5px 15px rgb(0 0 0 / 15%);
	padding: 20px;
	position: absolute;
	top: 42px;
	left: 0;
	width: max-content;
	display: none;
	z-index: 10;
	background-color: #ffffff;
	border-radius: 5px;
}
.header_bottomtwo .header_bottomthree .header_content .header_SecondLevel{
	font-size: 14px;
	margin-bottom: 15px;
	font-weight: 300;
	color: #212529;
	display: block;
}
.header_bottomtwo .header_bottomthree .header_content .header_SecondLevel:hover{
	color: #1273eb;
}
.header_bottomtwo .header_bottomthree .header_content .header_SecondLevel:last-child{
	margin-bottom: 0;
}