﻿* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	outline: none;
	
	font-family: 'Noto Sans SC','Source Han Sans CN',"PingFang SC", "HanHei SC", "Helvetica Neue", Microsoft Yahei, "Helvetica", "STHeitiSC-Light", "Arial", sans-serif;
}

/* box-sizing:content-box */
body,
th,
td,
input,
select,
textarea,
button {
	font-size: 16px;
	color: #000;
}

/* 重置页面文字属性 */
fieldset,
img {
	border: 0 none
}

/* 重置fieldset（表单分组）、图片的边框为0*/
dl,
ul,
ol,
menu,
li {
	list-style: none
}

/* 重置类表前导符号为onne,menu在HTML5中有效 */
blockquote,
q {
	quotes: none
}

/* 重置嵌套引用的引号类型 */
blockquote:before,
blockquote:after,
q:before,
q:after {
	content: '';
	content: none
}

/* 重置嵌套引用*/
input,
select,
textarea,
button {
	vertical-align: middle;
	resize: none;
	-webkit-appearance: none !important;
	outline: none;
	border: none;
	background: transparent;
}

/* 重置表单控件垂直居中*/
button {
	cursor: pointer
}

/* 重置表单button按钮效果 */
a {
	color: #333;
	text-decoration: none;
	border: 0 none;
}

/* 重置链接a标签 */
address,
caption,
cite,
code,
dfn,
em,
var {
	font-style: normal;
	font-weight: normal
}

/* 重置样式标签的样式 */
caption {
	display: none;
}

/* 重置表格标题为隐藏 */
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* 重置table属性 */
img {
	border: 0 none;
	max-width: 100%;
	vertical-align: middle;
	transition: all .8s;
}

/* 图片在当前行内的垂直位置 */
a img {
	border: 0 none;
}

em,
i {
	font-style: normal;
}

h3,
h4,
h5,
h6 {
	font-weight: normal;
}

/* 取消a标签点击后的虚线框 */
a {
	outline: none;
	color: inherit;
	-webkit-tap-highlight-color: transparent;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
}

::-webkit-scrollbar {
	width: 4px;
	background-color: #F5F5F5;
}

/* 滚动槽 */
/* ::-webkit-scrollbar-track {
	border-radius: 5px;
} */

/* 滚动条滑块 */
/* ::-webkit-scrollbar-thumb {
	border-radius: 10px;
	background: #ddd;
} */

/*清除浮动*/
.fl {
	float: left;
}

.fr {
	float: right;
}


.cl{
	clear: both;
}


.clearfix:after {
	content: "";
	display: block;
	clear: both;
	width: 100%;
	height: 0;
	line-height: 0;
	font-size: 0;
}

/* input 的 placeholder*/
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
	color: #999;
}

input:-moz-placeholder,
textarea:-moz-placeholder {
	color: #999;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
	color: #999;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
	color: #999;
}


.color-blue {
	color: #0168b5;
}

.color-red {
	color: red;
}

.color-white {
	color: white;
}

.color-black {
	color: black;
}

.bg-blue {
	background-color: #0168b5;
}

.bg-red {
	background: #F00;
}

.bg-white {
	background: #FFF;
}

.bg-black {
	background: #333;
}


.dis-flex-center-center {
	display: flex;
	align-items: center;
	justify-content: center;
}

.dis-flex-between-center {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.dis-flex-center {
	display: flex;
	align-items: center;
}

.dis-flex-between {
	display: flex;
	justify-content: space-between
}

.dis-flex {
	display: flex;
}

.flex-column {
	flex-direction: column;
}

.flex-wrap {
	flex-wrap: wrap;
}

.position-relative {
	position: relative;
}

.hmax {
	height: 100% !important;
}

.wmax {
	width: 100% !important;
}

.w50 {
	width: 50% !important;
}

.img {
	position: relative;
	overflow: hidden;
}

.transition {
	transition: all .36s;
}

.transition1 {
	transition: all 1s;
}


.text-uppercase {
	text-transform: uppercase;
}

.cursor {
	cursor: pointer;
}

.font-weight {
	font-weight: 800;
}

.fixed {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 9999;
	-webkit-animation: 300ms ease-in-out 0s normal none fadeInDown;
	animation: 300ms ease-in-out 0s normal none fadeInDown;
}

@-webkit-keyframes fadeInDown {
	0% {
		-webkit-transform: translate3d(0, -100%, 0);
		opacity: 0;
		transform: translate3d(0, -100%, 0)
	}

	to {
		-webkit-transform: translateZ(0);
		opacity: 1;
		transform: translateZ(0)
	}
}

@keyframes fadeInDown {
	0% {
		-webkit-transform: translate3d(0, -100%, 0);
		opacity: 0;
		transform: translate3d(0, -100%, 0)
	}

	to {
		-webkit-transform: translateZ(0);
		opacity: 1;
		transform: translateZ(0)
	}
}

/*  white-space: nowrap;   overflow: hidden;text-overflow:ellipsis; */
.line-clamp {
	word-break: break-all;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.line-clamp2 {
	word-break: break-all;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.line-clamp4 {
	word-break: break-all;
	display: -webkit-box;
	-webkit-line-clamp: 4;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.line-clamp3 {
	word-break: break-all;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.line-height2-4 {
	line-height: 2.4;
}

.line-height2-8 {
	line-height: 2.8;
}

.opacity8 {
	opacity: 0.8;
}


/* 栏目页banner手机端与pc端切换显示 */
.colum-pc {
	display: block;
}

.colum-phone {
	display: none;
}

@media screen and (max-width:750px) {
	.colum-pc {
		display: none;
	}

	.colum-phone {
		display: block;
	}
}

/* 图片放大 */
.img-scale {
	transform: scale(1);
	transition: all .5s;
}

.img-scale:hover {
	transform: scale(1.1);
	transition: all .5s;
}


/*分页样式*/
.pglist {
	padding: 40px 0;
	width: 100%;
	text-align: center;
	clear: both;
}

.pglist a {
	color: #333;
	padding: 0 15px;
	margin: 0 5px;
	background: #fff;
	border: 1px solid #edebeb;
}

.pglist a.close {
	background: #f2f2f2 !important;
}

.pglist * {
	display: inline-block;
	vertical-align: middle;
	line-height: 34px;
	padding-bottom: 1px;
}

.pglist a:hover,
.pglist .hover {
	display: inline-block;
	color: #fff;
	background: #0168b5;
	border-color: #0168b5;
}

.pglist .page-num-current {
	display: inline-block;
	color: #fff;
	background: #0168b5;
	border-color: #0168b5;
}