﻿* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	outline: none;
}

/* box-sizing:content-box */
body,
th,
td,
input,
select,
textarea,
button {
	font-size: 16px;
	/* font-family: "微软雅黑", "Microsoft YaHei", "Arial", "PingFang SC", "黑体", "宋体"; */
	font-family: "Barlow-Regular", "Microsoft YaHei", 微软雅黑, "Arial", "Helvetica", "sans-serif" !important;
	color: #333;
}

/* 重置页面文字属性 */
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;
}

.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;
}





.ititle {
	position: relative;
	text-align: center;
}

.ititle span {
	display: block;
}


.ititle span.ititle_cn {
	position: relative;
	font-size: 46px;
	color: #007F41;
	line-height: 56px;
	text-transform: uppercase;
	font-weight: 800;
	text-align: center;
	z-index: 2;
}

.ititle span.ititle_en {
	width: 100%;
	display: block;
	position: absolute;
	transform: translateX(-50%);
	left: 50%;
	color: rgba(255, 255, 255, 0.4);
	top: -25px;
	font-size: 70px;
	font-weight: 600;
	font-family: impact;
	z-index: 1;
	text-transform: uppercase;
}



@media screen and (min-width: 0px) and (max-width: 760px) {


	.ititle span.ititle_cn {
		position: relative;
		font-size: 36px;
		color: #007F41;
		line-height: 46px;
		text-transform: uppercase;
		font-weight: 800;
		text-align: center;
		z-index: 2;
	}

	.ititle span.ititle_en {
		width: 100%;
		display: block;
		position: absolute;
		transform: translateX(-50%);
		left: 50%;
		color: rgba(255, 255, 255, 0.4);
		top: -10px;
		font-size: 50px;
		font-weight: 600;
		font-family: impact;
		z-index: 1;
		text-transform: uppercase;
	}

}


/* 所谓的推荐阅读 */

.pro-title1 {
	overflow: hidden;
	margin-bottom: 4px;
}

.pro-tt {
	font-weight: 600;
	font-size: 18px;
	color: #333;
	float: left;
	padding-left: 10px;
	border-left: 4px solid #007F41;
}

.pro-title1 a {
	color: #333;
	font-size: 16px;
	padding: 2px 6px;
	float: right;
}

.pro-title1 span {
	float: right;
}

.news-all {
	overflow: hidden;
	margin-top: 10px;
}

.news-re {
	margin-top: 30px;
	overflow: hidden;
	margin-bottom: 30px;
}

.ct-1 {
	float: left;
	padding: 5px 10px;
	width: 47%;
	height: auto;
	overflow: hidden;
	margin-right: 3%;
	display: block;
	border-bottom: 1px dashed #999;
	margin-bottom: 5px;
}

.pro-content1 {
	font-size: 15px;
	line-height: 30px;
	height: auto;
	color: #333;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	width: 65%;
	float: left;
}

.time {
	float: right;
	color: #333;
	font-size: 15px;
	line-height: 30px;
	height: auto;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	width: 30%;
	text-align: right;
}

.pro-ex1 {
	overflow: hidden;
	margin-top: 10px;
}

.box11 {
	display: block;
}

.pro-ex1 .box11 {
	width: calc((100% - 80px) / 4);
	margin: 10px;
	float: left;
}

@media screen and (min-width: 1200px) {
	.box11 img {
		width: 100%;
		height: auto;
		/* padding: 0 10%; */
		border: #ccc 1px solid;
	}
}

@media screen and (max-width: 768px) {
	.box11 img {
		width: 100%;
		height: 130px;
		/* padding: 0 10%; */
		border: #ccc 1px solid;
	}
}

.box-tt {
	font-size: 16px;
	color: #333;
	text-align: center;
	line-height: 50px;
	height: auto;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	background: #eee;
}

.ct-1:hover .pro-content2 {
	color: #333;
}

.ct-1:hover .time {
	color: #333;
}

.ct-1:hover .pro-content1 {
	color: #333;
}

.box11:hover .box-tt {
	color: #333;
}


@media(max-width:992px) {
	.box11 img {
		padding: 0;
	}
}

@media(max-width:768px) {
	.news-details {
		padding: 30px 0;
	}

	.news-tt-1 {
		font-size: 18px;
	}

	.text-right p {
		font-size: 14px;
		line-height: 28px;
	}

	.last-text,
	.next-text,
	.return {
		font-size: 14px;
		width: 180px;
	}

	/***********推荐系列********/
	.pro-tt {
		font-size: 16px;
	}

	.ct-1 {
		width: 100%;
	}

	.pro-ex1 .box11 {
		width: calc((100% - 40px)/2);
	}

	.pro-title1 a {
		font-size: 14px;
	}

	.pro-content1 {
		font-size: 14px;
	}

	.time {
		font-size: 14px;
	}
}

@media(max-width:530px) {
	.page-nav a {
		font-size: 12px;
	}

	/***********新闻内页********/
	.news-tt-1 {
		font-size: 16px;
	}

	.news-time1 a {
		font-size: 12px;
	}

	.last-text,
	.next-text,
	.return {
		width: 160px;
	}

	/***********推荐系列********/
	.pro-ex1 .box11 {
		width: calc((100% - 40px)/2);
		margin: 0 10px;
		margin-bottom: 10px;
	}

	.box-tt {
		font-size: 14px;
	}

	.pro-title1 a {
		font-size: 13px;
	}

	.time {
		font-size: 13px;
	}

	.pro-detail-box-tit {
		font-size: 14px;
	}
}

@media(max-width:380px) {
	.time {
		width: 32%;
	}
}