@charset "utf-8";

ul,
ol {
	list-style: none;
}

li {
	list-style-type: none;
}

i,
em {
	font-style: normal;
}

a {
	text-decoration: none;
	color: inherit;
}

.clearfix:after {
	display: block;
	visibility: hidden;
	clear: both;
	height: 0;
	content: "";
}

.clearfix {
	zoom: 1;
}

.fl {
	float: left;
}

.fr {
	float: right;
}

.auto {
	margin-left: auto;
	margin-right: auto;
}

/*html5*/
k
}


/*文字截断*/
.TXTovehid {
	display: block;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.TXTovehid-two {
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.TXTovehid-three {
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
}

/*transition*/
.tran200 {
	-webkit-transition: all 0.2s linear;
	-moz-transition: all 0.2s linear;
	-ms-transition: all 0.2s linear;
	transition: all 0.2s linear;
}

.tran300 {
	-webkit-transition: all 0.3s linear;
	-moz-transition: all 0.3s linear;
	-ms-transition: all 0.3s linear;
	transition: all 0.3s linear;
}

.tran400 {
	-webkit-transition: all 0.4s linear;
	-moz-transition: all 0.4s linear;
	-ms-transition: all 0.4s linear;
	transition: all 0.4s linear;
}

.tran500 {
	-webkit-transition: all 0.5s linear;
	-moz-transition: all 0.5s linear;
	-ms-transition: all 0.5s linear;
	transition: all 0.5s linear;
}

.tran1000 {
	-webkit-transition: all 1s linear;
	-moz-transition: all 1s linear;
	-ms-transition: all 1s linear;
	transition: all 1s linear;
}

.scaleimg:hover .pic img,
.scaleimg:hover .pic em {
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1);
}

.rotateY:hover {
	-webkit-transform: rotateY(180deg);
	-moz-transform: rotateY(180deg);
	-ms-transform: rotateY(180deg);
	transform: rotateY(180deg);
}

.translateX:hover {
	-webkit-transform: translateX(-6px);
	-moz-transform: translateX(-6px);
	-ms-transform: translateX(-6px);
	transform: translateX(-6px);
}

/*网页限定宽度*/
.w1400 {
	width: 90%;
	margin: 0 auto;
	max-width: 1400px;
}



.iMore {
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 36px;
	color: #CCCCCC;
}

.iMore .icon {
	margin-left: 12px;
	width: 57px;
	height: 36px;
	position: relative;
}

.iMore .icon i {
	width: 40px;
	height: 16px;
	position: absolute;
	left: 0;
	top: 50%;
	margin-top: -8px;
	background: url(http://www.timejoy.com.cn/images/arrow1.svg) no-repeat center;
	opacity: 0.6;
	z-index: 2;
}

.iMore .icon b {
	width: 36px;
	height: 36px;
	position: absolute;
	right: 0;
	top: 0;
	box-sizing: border-box;
	border: 1px solid #CCCCCC;
	border-radius: 50%;
}

.iMore .icon b:before {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	background: #FCCA00;
	border-radius: 50%;
	transform: scale(0);
	opacity: 0;
}

.iMore:hover {
	color: #333333;
}

.iMore:hover .icon i {
	opacity: 1;
}

.iMore:hover .icon b {
	border-color: #FCCA00;
	transform: scale(1.6);
	transform-origin: right center;
}

.iMore:hover .icon b:before {
	transform: scale(1);
	opacity: 1;
}

.iMore:hover .icon i {
	transform: scale(0.8) translateX(10px);
	filter: brightness(0) invert(1);
}


.bgStyle {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	border-radius: 10px;
}

.btnStyle .btn {
	width: 36px;
	height: 36px;
	position: relative;
	margin-left: 30px;
	cursor: pointer;
	text-align: center;
	line-height: 36px;
	font-size: 0;
}

.btnStyle .btn:first-child {
	margin-left: 0;
}

.btnStyle .btn img {
	filter: brightness(0) invert(1);
}

.btnStyle .btn:before {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	box-sizing: border-box;
	border: 2px solid #FFFFFF;
	border-radius: 50%;
}

.btnStyle .btn svg {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	fill: transparent;
	stroke-width: 2px;
	stroke: #FCCA00;
	stroke-dasharray: 130;
	stroke-dashoffset: -130;
	transform: rotate(12deg);
	transition: 0.3s;
}

.btnStyle .btn:hover svg {
	animation: loopSvg 0.8s forwards;
}

@keyframes loopSvg {
	to {
		stroke-dashoffset: 0;
	}
}

.btnStyle .btn:hover img {
	filter: brightness(1) invert(0);
}

.btnStyle .btn:hover:before {
	opacity: 0;
	transform: scale(0.6);
}

.btnStyle.black .btn:before {
	border-color: #E4E4E4;
}

.btnStyle.black .btn img {
	filter: brightness(0) invert(0.5);
	opacity: 0.5;
}

.btnStyle.black .btn:hover img {
	opacity: 1;
	filter: brightness(1) invert(0);
}


.newsTop {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	margin-bottom: 38px;
}

.newsTop .date {
	font-family: "DINProMed";
	color: #BFC0C4;
}

.newsTop .date em {
	display: block;
	font-size: 50px;
	line-height: 1;
	margin-bottom: 4px;
}

.newsTop .date span {
	display: block;
	font-size: 14px;
	line-height: 18px;
}

.newsHover:hover .text h5,
.newsHover:hover .newsTop .date {
	color: #FCCA00;
}

/* .newsHover:hover .text .bg{opacity: 0.4;} */
.newsHover:hover .iMore .icon i {
	opacity: 1;
}

.newsHover:hover .iMore .icon b {
	border-color: #FCCA00;
	transform: scale(1.6);
	transform-origin: right center;
}

.newsHover:hover .iMore .icon b:before {
	transform: scale(1);
	opacity: 1;
}

.newsHover:hover .iMore .icon i {
	transform: scale(0.8) translateX(10px);
	filter: brightness(0) invert(1);
}


.newsList {
	padding-bottom: 30px;
}

.newsList li {
	padding: 30px 0;
}

.newsList li a {
	display: flex;
}

.newsList li .pic {
	width: 355px;
	flex-shrink: 0;
	margin-right: 40px;
	position: relative;
	overflow: hidden;
	padding-bottom: 236px;
	height: 0;
}

.newsList li .text {
	flex: 1;
	overflow: hidden;
}

.newsList li .text .newsTop {
	margin-bottom: 25px;
}

.newsList li .text h5 {
	margin: 0 auto 17px;
	padding-bottom: 20px;
	border-bottom: 1px solid #E4E4E4;
	line-height: 30px;
	color: #313131;
	font-weight: normal;
}

.newsList li .text p {
	line-height: 30px;
	color: #6A6B6C;
	max-height: 60px;
	overflow: hidden;
}

.page {
	text-align: center;
	font-size: 0;
}

.page a {
	display: inline-block;
	margin: 0 4px;
	min-width: 30px;
	height: 30px;
	text-align: center;
	line-height: 30px;
	font-size: 14px;
	color: #606266;
	line-height: 30px;
	position: relative;
}

.page a img {
	filter: brightness(0) invert(0.6);
}

.page a.num:before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: url(http://www.timejoy.com.cn/images/pageBg.svg) no-repeat center;
	background-size: 100% 100%;
	opacity: 0;
	transform: scale(0);
}

.page a span {
	position: relative;
	z-index: 2;
}

.page a:hover img {
	filter: brightness(1) invert(0);
}

.page a.on,
.page a.num:hover {
	color: #fff;
}

.page a.on:before,
.page a.num:hover:before {
	opacity: 1;
	transform: scale(1);
}

.fz20 {
	font-size: 20px;
}

.fz16 {
	font-size: 16px;
}

@media screen and (max-width: 1480px) {
	.fz20 {
		font-size: 18px;
	}

	.fz16 {
		font-size: 16px;
	}

	.newsList li {
		padding: 20px 0;
	}

	.newsList li .pic {
		margin-right: 30px;
	}


}


@media screen and (max-width: 1200px) {



	.newsTop {
		margin-bottom: 20px;
	}

	.newsTop .date em {
		font-size: 40px;
	}

	.newsList li .pic {
		width: 294px;
		padding-bottom: 196px;
	}

	.newsList li .text .newsTop {
		margin-bottom: 15px;
	}

	.newsList li .text h5 {
		margin-bottom: 12px;
		padding-bottom: 12px;
	}

}


@media screen and (max-width: 1024px) {

	.fz20 {
		font-size: 16px;
	}

	.fz16 {
		font-size: 14px;
	}

	.iMore .icon {
		-webkit-transform-origin: right center;
		transform-origin: right center;
		transform: scale(0.8);
		margin-left: -6px;
	}

}

@media screen and (max-width: 760px) {


	.float {
		display: none;
	}


	.newsTop {
		margin-bottom: 12px;
	}

	.newsTop .date em {
		font-size: 34px;
	}

	.newsList {
		padding-bottom: 20px;
	}

	.newsList li {
		padding: 10px;
		box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
		margin-bottom: 10px;
	}

	.newsList li a {
		display: block;
	}

	.newsList li .pic {
		width: 100%;
		margin: 0 0 12px;
		padding-bottom: 66.47%;
	}

	.newsList li .text {
		width: 100%;
	}

	.newsList li .text .newsTop {
		margin-bottom: 5px;
	}

	.newsList li .text h5 {
		padding-bottom: 5px;
		margin-bottom: 5px;
	}

	.newsList li .text p {
		line-height: 24px;
		height: auto;
		max-height: 48px;
	}

	.page a.num {
		display: none;
	}

	.page a.num.on {
		display: inline-block;
	}

}


.containernlist {
	font-size: 14px;
	line-height: 24px;
}

#containernlist {
	width: 1000px;
	margin: 0 auto;
	margin-top: 10px;
	border: 1px solid #f4f4f4;
	padding: 10px;
}

.page-wrap {
	background: #ffffff;
	padding-bottom: 3.38541667%;
}


.max1400 {
	max-width: 1210px;
	padding-left: 15px;
	padding-right: 15px;
	margin: 0 auto;
}


.clearfix:after {
	content: ".";
	display: block;
	height: 0;
	clear: both;
	overflow: hidden;
	visibility: hidden;
}

.clearfix {
	zoom: 1
}

.max1400nr {
	width: calc(100% - 350px);
	float: left;
}

.max1400tools {
	width: 340px;
	float: left;
}


.encyclopedia_main .rblock_tit {
	margin: 10px 0;
	border-bottom: 1px solid #f1f1f1;
	font-size: 16px;
	/* background: url(../images/b90fed6b8e1dd62502c2cc200fbad0dec41a1b5b.png) 0 center no-repeat; */
	padding: 10px 10px 8px 15px;
	color: #0e4ed0;
	position: relative;
}

.encyclopedia_main .rblock_tit a {
	color: #999;
	position: absolute;
	right: 18px;
	font-size: 14px
}




.encyclopedia_main .rblock_tit {
	margin: 10px 0;
	border-bottom: 1px solid #f1f1f1;
	font-size: 16px;
	/* background: url(../images/b90fed6b8e1dd62502c2cc200fbad0dec41a1b5b.png) 0 center no-repeat; */
	padding: 10px 10px 8px 15px;
	color: #0e4ed0;
	position: relative;
}

.encyclopedia_main .rblock_tit a {
	color: #999;
	position: absolute;
	right: 18px;
	font-size: 14px
}

.encyclopedia_main .rblock_con {
	padding: 10px 18px
}

.encyclopedia_main .rblock_con ul {
	overflow: hidden
}

.encyclopedia_main .rblock_con .content li {
	padding: 5px 0;
	line-height: 20px;
	font-size: 14px;
	display: flex;
	align-items: center;
}

.encyclopedia_main .rblock_con .content li a {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	width: calc(100% - 25px);
}

.encyclopedia_main .rblock_con .content li span.an {
	float: left;
	width: 15px;
	height: 15px;
	border-radius: 50%;
	border: 3px solid #0e4ed0;
	margin-right: 10px;
}

.encyclopedia_main .rblock_con .tag a {
	width: 45%;
	float: left;
	border: 1px solid #e9e9e9;
	margin: 2.5%;
	text-align: center;
	line-height: 30px;
	font-size: 14px
}


.xdetails_r_con ul {
	clear: both;
	margin: 0;
}

.xdetails_r_con ul li {
	max-height: 54px;
	line-height: 22px;
	margin-bottom: 10px;
	border-top: #c1c1c1 solid 1px;
	padding-top: 10px;
	overflow: hidden;
}

.xdetails_r_con ul li:first-child {
	padding-top: 0px;
	border: none;
}

.xdetails_r_con ul li i {
	display: inline-block;
	width: 6px;
	height: 12px;
	background: url(../images/7029adf756b4ef2e9dcfde0449f149ac68569ed2.png) no-repeat;
	margin-right: 10px;
}

.xdetails_r_con ul li a {
	color: #000;
}

.xdetails_r_con ul li a:hover {
	color: #0e4ed0;
}

.xdetails_r_con ul li:last-child {
	border-bottom: none;
}

.xdetails_r_more {
	width: 127px;
	height: 37px;
	line-height: 37px;
	text-align: center;
	background: #8d8d8d;
	color: #fff !important;
	border-radius: 5px;
	display: block;
	margin: 20px 0;
}

.xdetails_r_more:hover {
	background: #0e4ed0;
	color: #fff;
}


/*  */

.xdetails_r {
	margin-left: 50px;
	box-shadow: 0px 0px 6px 2px rgba(0, 0, 0, 0.1);
}

.xdetails_r h1 {
	padding: 0 20px 0 28px;
	height: 50px;
	line-height: 50px;
	background: #0e4ed0;
	color: #fff;
	font-size: 20px;
	font-weight: normal;
}

.xdetails_r h1 img {
	margin-top: 13px;
}

.xdetails_r_con {
	padding: 28px;
	background: #fff;
}

.xdetails_r_top {
	overflow: hidden;
	margin-bottom: 20px;
}

.xdetails_r_top h2 {
	line-height: 24px;
	margin-bottom: 16px;
}

.xdetails_r_top h2 a {
	color: #000;
}

.xdetails_r_top h2 a:hover {
	color: #0e4ed0;
}

.xdetails_r_top p {
	line-height: 18px;
	color: #777777;
	max-height: 54px;
	overflow: hidden;
	position: relative;
	text-overflow: ellipsis;
}

.xdetails_r_info {
	overflow: hidden;
	padding-top: 10px;
	margin-top: 10px;
	border-top: #c1c1c1 solid 1px;
}

.xdetails_r_info span {
	color: #777;
}

.xdetails_r_info span.fr {
	color: #0e4ed0;
}


.encyclopedia_main .rblock_con .tag a:hover {
	color: white;
	background-color: #0e4ed0;
}

@media screen and (max-width: 768px) {
	.max1400nr {
		width: 100%;
	}

	.max1400tools {
		width: 100%;
	}

	.xdetails_r {
		margin-left: 0px;
	}

} 
 
.news-module {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	padding: 20px;
	border-bottom: 1px solid #ddd;
	margin-bottom: 20px;
}

.news-btn {
	padding: 10px 15px;
    	border: none;
	background-color: #fff;
	color: #19a2c6;
	cursor: pointer;
	transition: background-color 0.3s, color 0.3s;
	font-size: 14px;
}

.news-btn:hover {
	background-color: #19a2c6;
	color: #fff;
}

.news-btn.active {
	background-color: #19a2c6;
	color: #fff;
}

@media (min-width: 768px) {
	.news-left {
		flex-basis: auto;
		margin-bottom: 0;
	}

	.news-right {
		justify-content: flex-end;
	}
}