html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
	margin: 0;
	padding: 0;
}

body {
	background-color: #fcfcfc;
}

h1,
h2,
h3,
h4,
h5,
h6,
em,
i {
	font-weight: 100;
	font-style: normal;
}

h1,
h2,
h3,
h4,
h5,
h6,
a {
	font-family: "微软雅黑";
}

ul,
ol,
li {
	list-style-type: none;
}

a {
	color: #666;
	text-decoration: none;
	outline: 0;
}

a:hover {
	text-decoration: none;
}

/* header */
.header-wrap {
	width: 100%;
	height: auto;
	box-sizing: border-box;
}

.header-link {
	width: 100%;
	height: 43px;
	background: linear-gradient(180deg, #3991f5 0%, #3067e3 100%);
	display: flex;
	justify-content: center;
}

.link-wrap {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 1200px;
}

.left-link {
	display: flex;
	align-items: center;
}

.left-link_item {
	padding: 0 18px 0 18px;
	position: relative;
}

.left-link_item:first-child {
	padding: 0 18px 0 0;
}

.left-link_item::after {
	content: "";
	width: 1px;
	height: 10px;
	display: inline-block;
	position: absolute;
	right: 0;
	background-color: rgba(255, 255, 255, 0.34);
	font-size: 12px;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
}

.left-link_item:last-child::after {
	display: none;
}

.left-link_item a {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.34);
	font-weight: 400px;
	display: inline-block;
	text-align: center;
	transition: all 0.3s;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-o-transition: all 0.3s;
	-ms-transition: all 0.3s;
}

.left-link_item:hover a {
	font-size: 18px;
}

.right-personal {
	display: flex;
	align-items: center;
	font-size: 14px;
}

.right-personal img {
	margin-right: 11px;
}

.right-personal a {
	color: #fff;
	display: inline-block;
}

.header-main {
	width: 100%;
	height: 480px;
	background: url(../images/header-mainbg.png) no-repeat center center;
	background-size: cover;
	display: flex;
	justify-content: center;
}

.header-main_wrap {
	width: 1200px;
	height: auto;
	height: 480px;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.logo {
	display: inline-block;
	width: 546px;
	height: 124px;
	margin-top: 123px;
}

.logo img {
	width: 100%;
	height: 100%;
}

.header-main_search {
	width: 473px;
	height: 53px;
	border-radius: 6px;
	background-color: rgba(255, 255, 255, 0.61);
	margin-top: 55px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	box-sizing: border-box;
}

.search-input {
	height: 53px;
	border: none;
	outline: none;
	background-color: unset;
	width: calc(100% - 50px);
	padding-left: 27px;
	font-size: 16px;
}

.search-input::placeholder {
	color: #999999;
	font-size: 16px;
}

.search-input::-webkit-input-placeholder {
	color: #999999;
	font-size: 16px;
}

.search-input::-moz-placeholder {
	color: #999999;
	font-size: 16px;
}

.search-input:-ms-input-placeholder {
	color: #999999;
	font-size: 16px;
}

.search-input::-o-placeholder {
	color: #999999;
	font-size: 16px;
}

.search-btn {
	width: 50px;
	height: 43px;
	border-radius: 6px;
	background-color: #3067e3;
	border: none;
	outline: none;
	margin-right: 4px;
}

.header-nav {
	width: 100%;
	height: 90px;
	background: linear-gradient(360deg, #3991f5 0%, #3067e3 100%);
	box-shadow: 0px 2px 14px rgba(28, 95, 174, 0.56);
	display: flex;
	justify-content: center;
	align-items: center;
}

.nav-wrap {
	width: 1200px;
	display: flex;
	height: 90px;
	justify-content: space-between;
	align-items: center;
}

.nav-wrap_item {
	width: calc(100% / 6);
	text-align: center;
	position: relative;
	height: 90px;
	line-height: 90px;
}

.nav-wrap_item::before {
	content: "";
	width: 0px;
	height: 0px;
	display: inline-block;
	position: absolute;
	border-bottom: 11px solid #fff;
	border-left: 11px solid transparent;
	border-right: 11px solid transparent;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	display: none;
}

.nav-wrap_item:hover::before {
	display: block;
}

.nav-wrap_item::after {
	content: "";
	width: 1px;
	height: 10px;
	background-color: #fff;
	display: inline-block;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
}

.nav-wrap_item:last-child::after {
	display: none;
}

.nav-wrap_item a {
	display: inline-block;
	text-align: center;
	font-weight: 500;
	font-family: "微软雅黑";
	font-size: 24px;
	color: #fff;
}

/* header end */
/* footer */
.footer-wrap {
	width: 100%;
	height: 149px;
	background-color: rgba(255, 255, 255, 0.96);
}

.friendlink {
	width: 100%;
	height: 92px;
	/* background-color: rgba(48, 103, 227, 0.88); */
	background: linear-gradient(180deg, #306CE4 0%, #30AFE4 100%);
	display: flex;
	justify-content: center;
}

.friendlink-wrap {
	width: 1200px;
	height: 92px;
	display: flex;
	align-items: center;
	box-sizing: border-box;
	padding: 0 20px;
	justify-content: space-between;
	position: relative;
}

.friendlink-tit {
	font-size: 20px;
	color: rgba(255, 255, 255, 1);
	font-weight: 400;
}

.friendlink-list {
	display: flex;
	align-items: center;
}

.friendlink-item {
	position: relative;
	display: flex;
	align-items: center;
}

.friendlink-item::after {
	content: "";
	width: 1px;
	height: 10px;
	display: inline-block;
	position: absolute;
	background-color: #fff;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
}

.friendlink-item:last-child::after {
	display: none;
}

.friendlink-item a {
	font-size: 14px;
	color: #fff;
	font-weight: 400;
	font-family: "微软雅黑";
	display: inline-block;
	padding: 0 30px;
}

.friendlink-qt {
	width: 188px;
	height: 40px;
	background-color: #fff;
	border-radius: 2px;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
}

.friendlink-qt span {
	font-size: 14px;
	color: rgba(51, 51, 51, 1);
	text-align: center;
}

.friendlink-qt i {
	display: inline-block;
	width: 0px;
	height: 0px;
	border-top: 8px solid #333333;
	border-left: 8px solid transparent;
	border-right: 8px solid transparent;
	margin-left: 37px;
	transition: all 0.3s;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-o-transition: all 0.3s;
	-ms-transition: all 0.3s;
}

.friendlink-qt:hover i {
	transform: rotate(180deg);
}

.qt-box {
	width: 100%;
	height: auto;
	background-color: rgba(255, 255, 255, 1);
	box-shadow: 0px 0px 14px rgba(48, 103, 227, 0.15);
	position: absolute;
	bottom: 70px;
	left: 0;
	box-sizing: border-box;
	padding-bottom: 10px;
	display: none;
}

.qt-box_item {
	display: inline-block;
	margin: 0 5px;
	padding: 10px 10px 0;
}

.footer-btom {
	width: 100%;
	height: 150px;
	background-color: rgba(255, 255, 255, 0.96);
	box-sizing: border-box;
	display: flex;
	justify-content: center;
}

.footer-btom_wrap {
	width: 1200px;
	height: 150px;
	padding: 0 20px;
	box-sizing: border-box;
	display: flex;
	align-items: center;
}

.btom_wrap-left {
	width: 911px;
}

.wrap-left-link {
	display: flex;
	align-items: center;
}

.wrap-left-link li {
	padding: 0 56px 0 56px;
	position: relative;
	margin-top: 20px;
}

.wrap-left-link li::after {
	content: "";
	width: 1px;
	height: 10px;
	display: inline-block;
	position: absolute;
	right: 0;
	background-color: #333333;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
}

.wrap-left-link li:first-child {
	padding: 0 56px 0 0;
}

.wrap-left-link li:last-child::after {
	display: none;
}

.wrap-left-link a {
	color: #333333;
	font-size: 20px;
	font-weight: 400;
}

.copyright {
	display: flex;
	flex-wrap: wrap;
	margin-top: 20px;
}

.copyright li {
	margin-right: 59px;
	font-size: 14px;
	color: #999999;
	line-height: 30px;
	padding-top: 3px;
}

.copyright li a {
	font-size: 14px;
	color: #999999;
	display: flex;
	align-items: center;
}

.copyright li:nth-of-type(4) {
	margin-right: 0px;
}

.copyright img {
	margin-right: 12px;
}

.btom_wrap-right {
	display: flex;
	align-items: center;
}

.zfwzzc {
	margin-left: 39px;
}

/* footer end */
/* 滚动条 */
::-webkit-scrollbar {
	width: 5px;
	height: 5px;
}

/* 滚动槽 */
::-webkit-scrollbar-track {
	box-shadow: inset 6px rgba(0, 0, 0, 0.3);
	-webkit-box-shadow: inset 6px rgba(161, 73, 73, 0.3);
	-moz-box-shadow: inset 6px rgba(0, 0, 0, 0.3);
	-ms-box-shadow: inset 6px rgba(0, 0, 0, 0.3);
	-o-shadow: inset 6px rgba(0, 0, 0, 0.3);
	border-radius: 10px;
}

/* 滚动条滑块 */
::-webkit-scrollbar-thumb {
	border-radius: 10px;
	background: rgba(0, 0, 0, .3);
	/* background: linear-gradient(360deg, #3991F5 0%, #3067E3 100%); */
	box-shadow: inset 6px rgba(0, 0, 0, 0.5);
	-webkit-box-shadow: inset 6px rgba(0, 0, 0, 0.5);
	-moz-box-shadow: inset 6px rgba(0, 0, 0, 0.5);
	-ms-box-shadow: inset 6px rgba(0, 0, 0, 0.5);
	-o-shadow: inset 0px rgba(0, 0, 0, 0.5);
}

/* ::-webkit-scrollbar-thumb:window-inactive {
	background: rgba(48, 106, 228, 1);
} */
/* 滚动条 end */

/* 头条 */
.headlines {
	width: 100%;
	height: 63px;
	margin: 16px 0 12px;
	background: url(../images/headlines_bg.png) no-repeat center center;
	box-sizing: border-box;
}

.headlines a {
	font-size: 24px;
	line-height: 55px;
	font-family: "微软雅黑";
	font-weight: bold;
	color: #3068E3;
	display: inline-block;
	margin-left: 216px;
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
	width: calc(100% - 216px);
}

/* 头条 end */
.main-wrap {
	width: 100%;
	height: auto;
	background: url(../images/main_bg1.png) no-repeat center top;
	background-size: cover;
	display: flex;
	justify-content: center;
	box-sizing: border-box;
	flex-direction: column;
	align-items: center;
}

.main-container {
	width: 1200px;
	height: auto;
}