html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
	display: block;
}

body {
	line-height: 1;
}

ol,
ul {
	list-style: none;
}

blockquote,
q {
	quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
	content: '';
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}


html,
body {
	background: #fff;
}

.w-container {
	width: 1200px;
	margin: 0 auto;
}

.header {}

.header .logo {
	width: 100%;
	height: 120px;
	line-height: 120px;
	background: url('http://tao.pic1.a1-w.com/web2/header.jpg');
	background-size: cover;
	background-position: center;
}

.header .logo .logo-text {
	font-size: 36px;
	color: #fff;
	font-weight: bold;
	letter-spacing: 1px;
	/* text-shadow:
		rgb(187, 187, 187) 0px 1px 0px,
		rgb(181, 181, 181) 1px 2px 0px; */
}

.header .nav-warp {
	background-color: #2274ca;
}

.header .nav-warp ul {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 50px;
}

.header .nav-warp li {
	flex: 1;
	text-align: center;
}

.header .nav-warp a {
	text-decoration: none;
	font-size: 16px;
	color: #fff;
	display: block;
	height: 50px;
	line-height: 50px;
}

.header .nav-warp a:hover,
.header .nav-warp a.active {
	background-color: #2360b6;
	font-weight: 800;
}

.content-container .content {
	/* min-height: 600px; */
}

.content-container .content .cont-image {
	display: block;
	margin: 30px auto;
	max-width: 100%;
	max-height: 450px;
}

.content-container .content p {
	margin-top: 25px;
	font-size: 16px;
	color: #454545;
	line-height: 27px;
}


.footer {
	font-size: 0;
	background-color: #f8f8f8;
	padding: 26px 0;
	margin-top: 50px;
}

.link-warp dt {
	font-size: 18px;
	font-weight: 800;
	color: #333;
	margin-bottom: 20px;
	padding-bottom: 12px;
	border-bottom: 1px dashed #ddd;
}

.link-warp dd {
	display: inline-block;
	width: 25%;
	margin-bottom: 18px;
}

.link-warp dd a {
	font-size: 14px;
	color: #565656;
	display: block;
	padding-right: 6px;
	text-decoration: none;
}

.link-warp dd a:hover {
	color: #2a89bb;
	text-decoration: underline;
}


.form-warp {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	width: 60%;
	margin: 60px auto 40px auto;
}

.form-warp .form-row {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	margin: 10px 0;
	width: 100%;
}

.form-warp .form-row label {
	font-size: 14px;
	color: #454545;
	width: 90px;
	text-align: right;
}

.form-warp .form-row textarea,
.form-warp .form-row input {
	width: 40%;
	padding: 6px 10px;
	outline: none;
	flex: 1;
}

.footer-end {
	padding: 20px 0;
	background-color: #dcdcdc;
	text-align: center;
}

.footer-end span {
	color: #666666;
	font-size: 14px;
	margin: 0 5px;
}

.footer-end span a {
	color: #666666;
}



@media (max-width: 1200px) {
	.w-container {
		width: 95%;
		margin: 0 auto;
	}
}

@media (max-width: 980px) {
	.link-warp dd {
		width: 33%;
	}
}


@media (max-width: 768px) {
	.header .logo .logo-text {
		font-size: 28px;
		text-indent: 20px;
	}

	.form-warp {
		width: 100%;
	}

	.link-warp dd {
		width: 50%;
	}

	.header .w-container {
		width: 100%;
	}

	.header .nav-warp ul {
		height: initial;
		flex-wrap: wrap;
	}

	.header .nav-warp li {
		flex: initial;
		width: 20%;
	}
}

@media (max-width: 470px) {
	.header .logo .logo-text {
		font-size: 22px;
	}

	.link-warp dd {
		width: 100%;
	}
}

@media (max-width: 350px) {
	.header .logo .logo-text {
		font-size: 18px;
	}

}

strong,
b {
	font-weight: 800;
}