@charset "utf-8";

/* CSS Document */

* {
	margin: 0;
	padding: 0;
}

body {
	font-family: "PingFang SC", "Lantinghei SC", Helvetica, Arial, "Microsoft Yahei", sans-serif;
	font-size: 18px;
	line-height: 1.8;
	color: #000;
	text-align: left;
}

a:link,
a:visited,
a:hover,
a:active {
	color: #333;
	text-decoration: none;
}

.clear::after {
	content: "";
	clear: both;
	display: block;
}


.header {
	width: auto;
	height: 140px;
}

.header .hWrap {
	width: 1200px;
	margin: 0 auto;
	height: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	text-align: left;
}

.header .hWrap .logo {
	flex: 0 0 195px;
	height: 100px;
}

.header .hWrap .logo a,
.header .hWrap .logo img {
	width: auto;
	height: 100%;
	display: inline-block;
}

.header .hWrap .info {
	flex: 1;
	height: 100px;
	/* 允许单词内断开换行 */
	word-break: normal;
	/* 兼容旧浏览器 */
	word-wrap: break-word;
	/* 可选：优化换行美观，优先空格处断行 */
	overflow-wrap: break-word;
	font-size: 16px;
	text-align: left;
	color: #6a6a6a;
	line-height: 20px;
}

@media (max-width: 767px) {
	.header {
		width: auto;
		height: auto;
		padding: 20px 0;
	}

	.header .hWrap {
		width: auto;
		height: auto;
		display: block;
		margin: 0 10px;
	}

	.header .hWrap .logo {
		height: 80px;
		text-align: center;
		margin-bottom: 15px;
	}

	.header .hWrap .info {
		height: auto;
		font-size: 14px;
	}
}