* {
	margin: 0;
	padding: 0;
}
html{
	background-color: #eee;
}
li {
	display: inline-block;
}

a {
	text-decoration: none;
}

a:link {
	/* color: #000000; */
	text-decoration: none;
}

a:visited {
	/* color: #fff; */
	color: #000000;
	text-decoration: none;
}

a:hover {
	/* color: #999999; */
	text-decoration: none;
}

/* //这个是设置a标签的默认状态去除下划线 */
a:visited {
	text-decoration: none;
}

/* //这个是设置a标签的访问过后的状态去除下划线 */
a:hover {
	text-decoration: none;
}

/* //这个是设置a标签的鼠标覆盖状态去除下划线 */
a:active {
	text-decoration: none;
}

/* //这个是设置a标签的活跃状态去除下划线 */

body {
	/* width: 118.9375rem !important; */
	height: auto;
}

.header {
	width: 100% !important;
	height: 16.25rem;
	background: #1062ae;
	position: fixed;
	z-index: 1000;
	display: flex;
	flex-direction: column;
}

.header .navigation_bar {
	/* width: 80%; */
	/* width: 100%; */
	width: 63%;
	height: 5.625rem;
	margin: auto;
}

.navigation_bar_ul {
	width: 100%;
	height: 100%;
	display: flex;
}

.navigation_bar_ul li {
	flex: 1;
	height: 100%;

}

.navigation_bar_ul li a {
	width: 100%;
	height: 100%;
	cursor: pointer;
	font-size: 1.2rem;
	color: #fff;
	text-align: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	line-height: 2rem;
}

.navigation_bar_ul li a span:first-child{
    font-size: 1.8rem;
}

.navigation_bar_ul li:hover {
	background-color: #1e4890;
}
.header-time{
	padding-top: 1.875rem;
	background: #fff;
	flex: 1;
	width: 63%;
	padding: 0 18.5%;
	display: flex;
	align-items: center;
}
.header-time_left{
	margin-top: 2rem;
    font-size: 2.4rem;
}
.header-time_mid,.header-time_right{
	display: flex;
	flex-direction: column;
	font-size: 1.8rem;
}
.header-time_mid{
	flex: 1;
	margin-top: 1.25rem;
	margin-left: 1.875rem;
}
.header-time_right{
	flex-direction: row;
}
.header-time_rl{
	display: flex;
	flex-direction: column;
}
.header-time_rl span:nth-child(2n){
	color: red;
	font-size: 2.4rem;
}
.header-time_rr{
	display: flex;
	align-items: center;
	margin-left: 1.875rem;
}
.header-time_rr span{
	background-color: red;
	color: #fff;
	padding: .35rem 1rem;
	border-radius: .625rem;
	margin-right: .625rem;
	font-size: 3rem;
}
.content_all{
	background-color: #eee;
	padding-top: 3.125rem;
}
.mt200{
	padding-top: 6.25rem
}
.mt200{
	padding-top: 12.5rem;
}
.subNav{
	width: 100%;
	display: flex;
	flex-direction: column;
	background: rgba(255, 255, 255, 0.8);
	color: #4a70a7;
	display: none;
}
.navigation_bar_ul .subNav>li{
	padding: .625rem 0;
	cursor: pointer;
}
.navigation_bar_ul .subNav>li a{
	color: #4a70a7;
}
.navigation_bar_ul>li:hover .subNav{
	display: flex;
}
.navigation_bar_ul>li .subNav a:hover{
	color: #fff;
}