.header {
	width: 100%;
	height: 48px;
	position: relative;
	background: #063063;
	transition: all 0.5s ease;
	color: #fff;
	/* position: fixed; */
	/* top: 0;
	left: 0;
	right: 0;
	z-index: 200; */
}

.header-container {
	display: flex;
	justify-content: space-between;
	width: 1580px;
	line-height: 48px;
	margin: auto;
}


#weather {
	float: left;
	font-size: 12px;
	color: #666;
	line-height: 24px;
	width: 260px;
	margin-top: 25px;
	margin-left: 20px;
}

.toptxt {
	font-size: 12px;
	color: #888;
	line-height: 34px;
	text-align: right;
}

.toptxt a {
	font-size: 12px;
	color: #888;
	line-height: 34px;
	padding: 0 10px;
}

.toptxt a:hover {
	color: #3e81fe;
}

.toptxt .diqu {
	position: absolute;
	left: 0;
	top: 0;
	line-height: 34px;
	color: #333;
}

.login {
	display: flex;
	align-items: center;
	color: #fff;
	padding: 10px 0;
	font-size: 14px;
	text-align: right;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
}

.login>a {
	display: inline-block;
	/* margin-left: 14px; */
	line-height: 41px;
	font-weight: 500;
	color: #FFFFFF;
	text-align: center;
	border-radius: 4px;
}

.login>a:first-of-type {
	/* border: 1px solid #fff; */
	/* background-color: transparent; */
}

.login form {
	font-size: 0;
	display: inline-block;
}

.login .search_btn {
	display: inline-block;
	border: 0;
	color: #fff;
	font-size: 16px;
	line-height: 40px;
	text-align: center;
	width: 50px;
	height: 40px;
	margin-right: 30px;
	background: #F08302;
	transition: all .3s ease;
	cursor: pointer;
}

.login .search_btn img {
	width: 14px;
	height: 14px;
}

.login .input {
	display: inline-block;
	width: 290px;
	font-size: 14px;
	height: 40px;
	padding-left: 20px;
	color: #fff;
	border: 0;
	background: #516f92;
}

.login .input::placeholder {
	/* outline: 0px; */
	color: #fff;
}

.logo {
	/* width: 400px; */
}

.logo a {
	display: inherit;
	height: 100%;
	width: 100%;
}

.logo a img {
	width: 540px;
}


.nav {
	width: 100%;
	margin: 0 auto;
}

.nav-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 1580px;
	height: 100px;
	margin: 0 auto;
}

.nav-btn>a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 226px;
	height: 53px;
	font-family: Arial;
	font-size: 18px;
	color: #FFFFFF;
	font-style: normal;
	background: linear-gradient(270deg, #063063 0%, #082199 100%);
	border-radius: 8px;
	cursor: pointer;
}

#navul {
	/* width: 780px;
	min-width: 780px;*/
	margin: auto;
}

.nav li {
	position: relative;
	width: 130px;
	float: left;
	height: 100px;
	text-align: center;
}

.nav li a {
	position: relative;
	display: block;
	text-align: center;
	height: 100px;
	line-height: 100px;
	font-family: Oxygen,sans-serif;
	font-size: 20px;
	color: #333333;
	overflow: hidden;
}

/* .nav #navul>li:nth-of-type(n+2)::before {
	position: absolute;
	content: '';
	top: 50%;
	left: -1px;
	transform: translateY(-50%);
	width: 1px;
	height: 25px;
	background-color: rgba(255, 255, 255, .3);
} */


.nav li a img {
	display: block;
	margin: 15px auto 10px auto;
	transition: all .3s ease;
}

.nav li:hover::after, .nav li.active::after {
	position: absolute;
	content: '';
	top: 0;
	left: 0;
	width: 130px;
	height: 6px;
	background-color: #1e36b0;
}

.nav li:hover a {
	color: #1e36b0;
}


.nav li:hover .sub-menu {
	visibility: visible;
	opacity: 1;
}

.nav li a:hover img {
	-moz-transform: scaleX(-1);
	-webkit-transform: scaleX(-1);
	-o-transform: scaleX(-1);
	transform: scaleX(-1);
}


.nav .sub-menu {
	display: flex;
	flex-direction: column;
	background-color: #fff;
	box-shadow: 0px 2px 20px 0px rgba(62, 65, 159, 0.09);
	position: absolute;
	padding: 20px 0;
	min-width: 220px;
	left: 0;
	top: 100%;
	z-index: 10;
	visibility: hidden;
	opacity: 0;
	transition: all 0.3s;
}

.nav .sub-menu li {
	position: relative;
	width: max-content;
	height: unset;
}

.nav .sub-menu li a {
	text-decoration: none;
    transition: all 0.2s;
	font-size: 18px;
	height: unset;
	text-align: left;
	line-height: unset;
    display: block;
    padding: 10px 20px;
    color: #232f4b;
    position: relative;
    overflow: hidden;
    font-weight: 500;
	font-family: "Oswald",sans-serif;
}


.nav .sub-menu li:hover::after, .nav .sub-menu li.active::after{
	position: absolute;
    left: 20px;
    bottom: 4px;
	top: unset;
    width: 0px;
    height: 2px;
    content: "";
    background: #3757f7;
    transition: all 0.3s;
    opacity: 0;
    visibility: hidden;
}

.nav .sub-menu li:hover::after, .nav .sub-menu li.active::after{
	width: 80px;
    opacity: 1;
    visibility: visible;
}

footer {
	position: relative;
	font-size: 12px;
	color: #ddd;
	line-height: 17px;
	background: #1E2844;
}

.footer {
	display: flex;
	flex-direction: column;
	width: 1200px;
	height: 460px;
	margin: 0 auto;
	padding: 40px 0;
	box-sizing: border-box;
}

.footer .top {
	width: 100%;
	padding-bottom: 40px;
	border-bottom: 1px solid #4c546b;
}

.footer .partners {
	display: flex;
}

.footer .top>p {
	font-family: Oxygen1, Arial;
	font-weight: normal;
	font-size: 18px;
	color: #FFFFFF;
	line-height: 20px;
	text-align: left;
	margin-bottom: 40px;
}

.footer .partners>li {
	height: 70px;
	margin-right: 40px;
}

.footer .partners>li img {
	/* width: 100%; */
	height: 100%;
}

.footer .down {
	display: flex;
	justify-content: space-between;
	margin-top: 40px;
}

.footer p {
	margin-bottom: 12px;
}

.footer p>a {
	color: #ffffff;
}

.footer-left>p>span:first-of-type {
	display: inline-block;
	margin-right: 20px;
}

.foot-image {
	position: absolute;
	right: 0;
	top: 10px;
}

.foot-image .qrcode {
	width: 270px;
	display: block;
	margin: 0;
}

.foot-image img {
	width: 100%;
	height: 90px;
}

.foot-infor {
	font-size: 16px;
	color: rgba(red, green, blue, .7);
	line-height: 20px;
	text-align: left;
	font-style: normal;
}

.foot-infor p {
	margin-bottom: 20px;

}

.foot-infor>p>span,
.foot-link {
	font-family: Oxygen1, Arial;
	font-weight: normal;
	font-size: 16px;
	color: #dddddd;
	line-height: 20px;
	text-align: left;
	font-style: normal;
	margin-right: 10px;
}

.foot-link>p {
	margin: 0 0 20px 0;
}