﻿@charset "utf-8";/* ----------------------------------Common CSS file for----------------------------------结构目录：		1. 全局常用 CSS 样式	2. 表单及表单元素	3. 页面布局以及通用的区块样式----------------------------------*//*     全局公用样式*/
* {
	margin: 0;
	padding: 0;
}/* 文本属性：字号、颜色、粗细 */
body {
	color: #000;
	font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Helvetica Neue", STHeiti, "Microsoft Yahei", Tahoma, Simsun, sans-serif;
	font-size: 0.9rem;
	line-height: 1.3rem !important;
	word-wrap: break-word;
	max-width: 640px;
	overflow-x: hidden;
	margin: 0 auto !important;
	background: #efefef;
}/* A标签链接样式 */
a {
	color: #000;
	text-decoration: none;
}
a:hover {
	color: #000;
	text-decoration: none;
}
img {
	max-width: 100%;
}
a img {
	border: none;
}
p {
	word-wrap: break-word
}/* 表格  */
table {
	empty-cells: show;
	border-collapse: collapse;
}
caption, th {
	text-align: left;
	font-weight: 400;
}
ul li {
	list-style: none;
}
img {
	display: block;
	border: none;
}/* 清除  */
.clearfix:after {
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}
*html .clearfix {
	height: 1%;
}
*+html .clearfix {
	height: 1%;
}
.hidden {
	visibility: hidden;
}/*网站公用main,header,footer，根据实际情况，修改宽度*/
.fl {
	float: left;
}
.fr {
	float: right;
}
.wrap {
	width: 1200px;
	margin: 0 auto;
}
.clear {
	clear: both;
}     /* 头部header  */
.header {
	margin: 0 auto;
}/* 底部footer  */
.footer {
	margin: 0 auto;
}/* 主体main  */
.main {
	margin: 0 auto;
}
.layui-flow-more{clear: both;text-align: center;max-width: 640px !important;color: #d0d0d0 !important;font-size: 12px !important;}
