/* pc端全局css */
/* 设置全局大小 */
body {
	min-width: 1300px;
	background: #FFFFFF;
	position: relative;
	font-family: 'Microsoft YaHei', 'Noto Sans SC', 'Helvetica', 'Arial', sans-serif;
	margin: 0;
	padding: 0;
}

body,
blockquote,
dd,
dl,
figure,
form,
p,
pre,
h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
}

/*===== 统一设置列表的margin和padding，以及列表表形式 =====*/
body,
input,
button,
select,
optgroup,
option,
textarea,
pre {
	margin: 0;
	padding: 0;
}


/* 设置文本超链接a */
a {
	text-decoration: none;
	color: #333333;
}

/*===== 统一设置列表的margin和padding，以及列表表形式 =====*/
menu,
ul,
ol {
	list-style: none;
	margin: 0;
	padding: 0;
}

/* input样式设置 */
input,
button {
	outline: none;
	height: 25px;
}

/* 统一文本输入框、下拉、文本框的背景色，避免被用户设置系统颜色而破坏页面色彩 */
select {
	border: 1px inset;
}

/* 统一下拉的边框 */
textarea {
	overflow: auto;
	vertical-align: text-bottom;
	*vertical-align: auto;
	border: 1px solid;
	resize: vertical;
}

/* 滚动条为auto，与周边的元素对齐方式，其中hack部分是IE6&7中vertical-align影响范围清除，resize为上下可拉动，避免左右拉动破坏页面布局，如有需要可以设置为none */
/*===== 设置表格元素的样式 =====*/
table {
	border-spacing: 0;
}

/* 合并表格的间隙，去掉单元格之间的间距，如有需要合并单元格为细线表格，可增加 border-collapse:collapse; */
td,
th,
caption {
	padding: 0;
}

/*===== 去除个别浏览器图片底部的几个像素，以及设置图片形式链接无边框 =====*/

a img {
	border: 0 none;
}

img {
	vertical-align: middle;
}

/*===== 设置iframe的背景色以及去除个别浏览器iframe底部的几个像素 =====*/
iframe {
	background-color: #FFFFFF;
	vertical-align: middle;
}

.hide {
	display: none;
}

.show {
	display: block;
}

/* 版权符号© */
/* &copy; */


/* 中间内容设置 */
.contentCenter {
	width: 1200px;
	margin: auto;
}

/* 清楚浮动 */
.flo:after {
	content: " ";
	display: block;
	height: 0;
	line-height: 0;
	visibility: hidden;
	clear: both;
}

/*兼容IE浏览器*/
.flo {
	zoom: 1;
}

/* 外部字体  
引用外部文件不能用中文的  
引用字体文件需要引用至少三个后缀名.ttf .woff .eot 在不同浏览器中使用*/
@font-face {
	font-family: "fontFamily";
	src: url(http://it88.vip/xiaowei.ttf);
	font-weight: normal;
	font-style: normal;
}



/* 头部 */
.header {
	height: 77px;
}

.header .nav-logo {
	float: left;
}

.header .nav-a {
	float: right;
	line-height: 77px;
}

/* .header .nav-a h1 {
	display: inline-block;
	font-weight: normal;
	float: left;
}
 */
.header .nav-a a {
	display: inline-block;
	text-align: center;
	float: left;
	margin-left: 20px;
	font-size: 18px;
	min-width: 60px;
}

/* 默认的状态 */
.header-action span {
	display: block;
	width: 60px;
	height: 4px;
	background-color: #0079e2;
	border-radius: 2px;
	margin: auto;
	margin-top: -15px;
}

.header-action {
	color: #0079e2;
}

/* 滑动时的状态 */
.header .nav-a a:hover {
	color: #0079e2;
}

.header .nav-a a:hover span {
	display: block;
	width: 60px;
	height: 4px;
	background-color: #0079e2;
	border-radius: 2px;
	margin: auto;
	margin-top: -15px;
}


/* 底部 */
.footer {
	height: 143px;
	background-color: #28466c;
	text-align: center;
	color: #FFFFFF;
}
.footer .footer-p{
	padding-top: 50px;
}
.footer p {
	font-size: 14px;
	line-height: 21px;
	color: #fffefe;
}
