* {
	padding: 0;
	margin: 0;
	border: none;
	outline: none;
}

a {
	text-decoration: none;
}

li {
	list-style: none;
}

body {
	min-width: 1200px;
	font-family: "Microsoft YaHei", "Helvetica Neue", "Helvetica", "PingFang SC", "Hiragino Sans GB", "Noto Sans CJK SC", "Noto Sans CJK", "Source Han Sans", "WenQuanYi Micro Hei", sans-serif;
}

/* 头部 */

.head {
	height: 120px;
}

.head .vessel {
	min-width: 1200px;
	width: 100%;
	height: 120px;
	position: fixed;
	top: 0;
	z-index: 10001;
	background: #FFFFFF;
	display: flex;
	justify-content: center;
	align-items: center;
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.head .vessel .center {
	width: 1200px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.head .vessel .center .nav {
	display: flex;
	align-items: center;
	width: 800px;
	justify-content: space-around;
}

.head .vessel .center .nav li {
	position: relative;
	height: 30px;
}

.head .vessel .center .nav li:nth-child(1) {
	margin-left: 0;
}


.head .vessel .center .nav li a {
	font-size: 18px;
	color: #000000;
	padding: 10px 4px;
}

.head .vessel .center .nav li a::after {
	content: '';
	width: 0;
	height: 4px;
	border-radius: 4px;
	background: #1c6ec4;
	position: absolute;
	left: 50%;
	bottom: 0;
	transform: translateX(-50%);
	transition: all 0.3s ease;
}

.head .vessel .center .nav li:hover a::after {
	width: 100%;
}

.head .vessel .center .nav .active a::after {
	width: 100%;
}

/* 底部 */

.foot {
	background: #333333;
}

.foot .center {
	width: 1200px;
	margin: 0 auto;
	padding: 50px 0;
}

.foot .center .top {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.foot .center .top .left li:nth-child(1) {
	margin-bottom: 36px;
}

.foot .center .top .left li .rubric {
	font-size: 18px;
	color: #ffffff;
	margin-bottom: 10px;
	white-space: pre;
}

.foot .center .top .left li:nth-child(1) .rubric {
	font-size: 20px;
	margin-bottom: 2px;
}

.foot .center .top .left li .refer {
	line-height: 24px;
	font-size: 14px;
	color: #999999;
}

.foot .center .top .centre {
	display: flex;
	align-items: center;
}

.foot .center .top .centre li {
	margin-left: 20px;
}

.foot .center .top .centre li:nth-child(1) {
	margin-left: 0;
}

.foot .center .top .centre li a {
	font-size: 14px;
	color: #b9b9b9;
}

.foot .center .top .right {
	display: flex;
	align-items: center;
	margin-top: 12px;
}

.foot .center .top .right li {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	margin-left: 25px;
}

.foot .center .top .right li:nth-child(1) {
	margin-left: 0;
}

.foot .center .top .right li img {
	margin-bottom: 10px;
}

.foot .center .top .right li p {
	font-size: 14px;
	color: #999999;
}

.foot .bottom {
	height: 50px;
	text-align: center;
	line-height: 50px;
	border-top: 1px solid #666666;
	font-size: 14px;
	color: #999999;
}

.foot .bottom a {
	color: #999999;
}

/* 右侧悬浮 */

.offside-suspend {
	position: fixed;
	right: 2%;
	bottom: 18%;
	z-index: 10000;
}

.offside-suspend li {
	width: 110px;
	height: 110px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	cursor: pointer;
}

.offside-suspend li:nth-child(1) {
	background: #0e80d7;
}

.offside-suspend li:nth-child(2) {
	background: #34353e;
}

.offside-suspend li:nth-child(1) img {
	margin-bottom: 8px;
}

.offside-suspend li:nth-child(2) img {
	margin-bottom: 14px;
}

.offside-suspend li span {
	color: #ffffff;
}

.offside-suspend li:nth-child(1) span {
	font-size: 16px;
}

.offside-suspend li:nth-child(2) span {
	font-size: 14px;
}

/* 在线留言 */

.online-message {
	width: 100%;
	height: 100%;
	position: fixed;
	left: 0;
	top: 0;
	background: rgba(0, 0, 0, 0.5);
	z-index: 10001;
	display: none;
}

.online-message .center {
	width: 640px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.online-message .center .content {}

.online-message .center .content .top {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 40px;
	height: 80px;
	background: #2f98fb;
	border-radius: 8px 8px 0 0;
}

.online-message .center .content .top span {
	font-size: 24px;
	color: #ffffff;
}

.online-message .center .content .top img {
	cursor: pointer;
}

.online-message .center .content .bottom {
	padding: 80px 52px 120px 72px;
	background: #ffffff;
	border-radius: 0 0 8px 8px;
}

.online-message .center .content .bottom .input-box {
	margin-top: 30px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.online-message .center .content .bottom .input-box:nth-child(1) {
	margin-top: 0;
}

.online-message .center .content .bottom .input-box .label {
	width: 120px;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	margin-right: 30px;
	color: #666666;
}

.online-message .center .content .bottom .input-box span {
	width: 84px;
	text-align: justify;
	text-align-last: justify;
	font-size: 20px;
}

.online-message .center .content .bottom .input-box b {
	color: #f31c1c;
	margin-right: 12px;
	font-size: 20px;
}

.online-message .center .content .bottom .input-box strong {
	font-weight: normal;
	font-size: 20px;
	white-space: pre;
}

.online-message .center .content .bottom .input-box input {
	flex: 1;
	height: 58px;
	line-height: 58px;
	border: 1px solid #cccccc;
	border-radius: 4px;
	padding: 0 18px;
	box-sizing: border-box;
	font-size: 20px;
	color: #000000;
}

.online-message .center .content .bottom .input-box textarea {
	flex: 1;
	min-height: 58px;
	height: 116px;
	line-height: 58px;
	border: 1px solid #cccccc;
	border-radius: 4px;
	padding: 0 18px;
	box-sizing: border-box;
	font-size: 20px;
	color: #000000;
}

.online-message .center .content .bottom .input-box input::-moz-placeholder {
	font-size: 20px;
	color: #cccccc;
}

.online-message .center .content .bottom .input-box input::-webkit-input-placeholder {
	font-size: 20px;
	color: #cccccc;
}

.online-message .center .content .bottom .input-box input:-ms-input-placeholder {
	font-size: 20px;
	color: #cccccc;
}

.online-message .center .content .bottom .input-box textarea::-moz-placeholder {
	font-size: 20px;
	color: #cccccc;
}

.online-message .center .content .bottom .input-box textarea::-webkit-input-placeholder {
	font-size: 20px;
	color: #cccccc;
}

.online-message .center .content .bottom .input-box textarea:-ms-input-placeholder {
	font-size: 20px;
	color: #cccccc;
}

.online-message .center .content .bottom .btn-box {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	margin: 80px 0 0 0;
	padding: 0 20px 0 0;
}

.online-message .center .content .bottom .btn-box .submit {
	width: 160px;
	height: 60px;
	text-align: center;
	line-height: 60px;
	border-radius: 8px;
	background: #2f98fb;
	color: #ffffff;
	font-size: 20px;
	cursor: pointer;
	margin-right: 60px;
}

.online-message .center .content .bottom .btn-box .close {
	width: 160px;
	height: 60px;
	text-align: center;
	line-height: 60px;
	border-radius: 8px;
	background: #f0f0f0;
	color: #666666;
	font-size: 20px;
	cursor: pointer;
}

/* 分页 */
.zxpage {
	width: 1100px;
	margin: 0 auto;
	font-size: 0;
}

.zxpage ul {
	text-align: center;
}

.zxpage li {
	display: inline-block;
	width: 36px;
	height: 36px;
	line-height: 36px;
	text-align: center;
	border-radius: 50%;
	background: #ffffff;
	font-size: 16px;
	margin-left: 8px;
}

.zxpage li:first-child {
	margin-left: 0;
}

.zxpage li.active {
	background: #3a7bca;
}

.zxpage li.active span {
	color: #ffffff;
}

.zxpage li.disabled {
	cursor: no-drop;
}

.zxpage li a {
	color: #333333;
	display: block;
}

.zxpage li span {
	color: #333333;
	display: block;
}<!--0.00029206275939941-->