.news {
	width: 100%;
	height: 100%;
	min-height: 500px;
	margin: 0 auto;
	padding-bottom: 50px;
	box-sizing: border-box;
	overflow: hidden;
	padding: 0px ;
}

.news .news-name {
	font-size: 28px;
	font-weight: 600;
	color: #333;
	line-height: 36px;
	margin: 56px auto 40px
}

.news .news-content {
	width: 100%;
	min-height: 400px;
	margin: 0 auto;
	display: flex
}

.news .news-content .news-content-left {
	width: calc(100% - 408px);
	margin-right: 32px;
	flex-grow: 1;
	flex-shrink: 1
}

.news .news-content .news-content-left .pagination {
	padding-top: 40px;
	padding-bottom: 70px
}

.news .news-content .news-content-right {
	width: 376px;
	min-height: 400px
}

@media screen and (max-width:1024px) {
	.news .news-name {
		margin: 40px auto 20px;
		font-size: 24px;
		line-height: 32px
	}

	.news .news-content .news-content-left {
		margin-right: 0;
		width: 100%
	}

	.news .news-content .news-content-right {
		display: none
	}
}

@media screen and (max-width:1024px) {
	.news .news-name {
		margin: 30px auto 20px;
		font-size: 20px;
		line-height: 28px
	}
}

.newCard {
	width: 100%;
	height: 224px;
	background: #fff;
	margin-bottom: 24px;
	display: flex;
	justify-content: space-between;
	cursor: pointer
}

.newCard .newCard-img {
	position: relative;
	width: 34%;
	height: 224px;
	background: #fff;
	overflow: hidden
}

.newCard .newCard-img img {
	position: absolute;
	height: 100%;
	left: 50%;
	top: 0;
	transform: translateX(-50%);
	transition: all .8s cubic-bezier(.19, 1, .22, 1)
}

.newCard:hover {
	box-shadow: 0 8px 32px 0 rgba(0, 0, 0, .08)
}

.newCard:hover .newCard-img img {
	transform: translateX(-50%) scale(1.1)
}

.newCard .newCard-content {
	width: 66%;
	padding: 24px 32px;
	box-sizing: border-box
}

.newCard .newCard-content h3 {
	margin-bottom: 24px;
	font-size: 20px;
	color: #333;
	line-height: 28px;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis
}

.newCard .newCard-content h3:hover {
	color: #dc143c
}

.newCard .newCard-content p {
	width: 100%;
	height: 52px;
	font-size: 14px;
	color: #999;
	line-height: 26px;
	display: -webkit-box;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	margin-bottom: 52px
}

.newCard .newCard-content h6 {
	font-size: 14px;
	color: #999;
	line-height: 20px
}

@media screen and (max-width:768px) {
	.newCard {
		flex-wrap: wrap;
		height: auto
	}

	.newCard .newCard-img {
		width: 100%
	}

	.newCard .newCard-img img {
		width: 100%;
		height: auto;
		left: 0;
		top: 50%;
		transform: translateY(-50%)
	}

	.newCard:hover .newCard-img img {
		transform: translateY(-50%) scale(1.1)
	}

	.newCard .newCard-content {
		width: 100%;
		padding: 20px
	}

	.newCard .newCard-content h3 {
		margin-bottom: 15px;
		font-size: 18px;
		line-height: 26px
	}

	.newCard .newCard-content p {
		margin-bottom: 25px;
		font-size: 14px;
		height: auto
	}
}

@media screen and (max-width:576px) {
	.newCard .newCard-img {
		height: 150px
	}

	.newCard .newCard-content {
		width: 100%;
		padding: 10px 15px
	}

	.newCard .newCard-content h3 {
		margin-bottom: 10px;
		font-size: 16px;
		line-height: 24px
	}

	.newCard .newCard-content p {
		margin-bottom: 10px;
		font-size: 12px;
		line-height: 20px
	}

	.newCard .newCard-content h6 {
		font-size: 12px
	}
}

.rightSlide .rightSlide-banner {
	width: 100%;
	height: 240px;
	margin-bottom: 24px
}

.rightSlide .rightSlide-banner img {
	width: 100%;
	height: 100%
}

.rightSlide .rightSlide-content {
	display: inline-table;
	flex: 1 1;
	width: 100%;
	background: #fff
}

.rightSlide .rightSlide-content .rightSlide-content-title {
	padding: 24px 20px;
	box-sizing: border-box;
	border-bottom: 1px solid #e8e8e8
}

.rightSlide .rightSlide-content .rightSlide-content-title h3 {
	font-size: 18px;
	color: #333;
	line-height: 25px
}

.rightSlide .rightSlide-content .rightSlide-content-nav {
	padding: 32px 24px 42px;
	box-sizing: border-box
}

.rightSlide .rightSlide-content .rightSlide-content-nav .content-nav-card {
	width: 100%;
	display: flex;
	justify-content: space-between;
	margin-bottom: 24px
}

.rightSlide .rightSlide-content .rightSlide-content-nav .content-nav-card:hover .content-nav-card-left img {
	transform: scale(1.1)
}

.rightSlide .rightSlide-content .rightSlide-content-nav .content-nav-card .content-nav-card-left {
	width: 150px;
	height: 94px;
	position: relative;
	overflow: hidden
}

.rightSlide .rightSlide-content .rightSlide-content-nav .content-nav-card .content-nav-card-left span {
	display: block;
	width: 20px;
	height: 20px;
	text-align: center;
	color: #fff;
	background: #008CD0;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2
}

.rightSlide .rightSlide-content .rightSlide-content-nav .content-nav-card .content-nav-card-left img {
	width: 100%;
	height: 100%;
	transition: all .8s cubic-bezier(.19, 1, .22, 1)
}

.rightSlide .rightSlide-content .rightSlide-content-nav .content-nav-card .content-nav-card-right h3 a {
	width: 160px;
	height: 22px;
	font-size: 16px;
	color: #333;
	line-height: 22px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	margin-bottom: 8px;
	border: none;
	text-align: inherit
}

.rightSlide .rightSlide-content .rightSlide-content-nav .content-nav-card .content-nav-card-right h3 a:hover {
	color: #008CD0;
	background: none
}

.rightSlide .rightSlide-content .rightSlide-content-nav .content-nav-card .content-nav-card-right p {
	width: 140px;
	height: 20px;
	font-size: 14px;
	color: #999;
	line-height: 20px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	margin-bottom: 8px
}

.rightSlide .rightSlide-content .rightSlide-content-nav .content-nav-card .content-nav-card-right a {
	display: block;
	width: 77px;
	height: 28px;
	font-size: 12px;
	color: #666;
	line-height: 28px;
	border: 1px solid #e8e8e8;
	text-align: center
}

.rightSlide .rightSlide-content .rightSlide-content-nav .content-nav-card .content-nav-card-right a:hover {
	color: #fff;
	background: #008CD0
}

.rightSlide .rightSlide-content .rightSlide-content-nav .content-nav-card:last-child {
	margin-bottom: 0
}

.rightSlide .rightSlide-content .right-content-nav-bottom {
	padding: 8px 0 14px;
	box-sizing: border-box
}

.rightSlide .rightSlide-content .right-content-nav-bottom p {
	width: 100%;
	margin-bottom: 16px
}

.rightSlide .rightSlide-content .right-content-nav-bottom p a {
	display: flex;
	justify-content: left
}

.rightSlide .rightSlide-content .right-content-nav-bottom p a span:first-child {
	display: inline-block;
	width: 20px;
	height: 20px;
	border: 1px solid #e8e8e8;
	margin-right: 8px;
	text-align: center;
	line-height: 20px
}

.rightSlide .rightSlide-content .right-content-nav-bottom p a span:last-child {
	max-width: 294px;
	font-size: 16px;
	color: #666;
	line-height: 22px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap
}

.rightSlide .rightSlide-content .right-content-nav-bottom p:hover {
	cursor: pointer
}

.rightSlide .rightSlide-content .right-content-nav-bottom p:hover a span {
	color: #008CD0
}

.rightSlide .rightSlide-content .right-content-nav-bottom p:hover a span:first-child {
	border: 1px solid #008CD0
}

.rightSlide .rightSlide-content .right-content-nav-bottom p:hover a h5 {
	color: #008CD0
}

.rightSlide .rightSlide-content .right-content-nav-bottom p:last-child {
	margin-bottom: 0
}

.public-banner {
	width: 100%;
	height: 560px;
	position: relative
}

.public-banner.short {
	height: 400px
}

.public-banner .text-box {
	width: 100%;
	margin: auto;
	position: absolute;
	top: 46%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center
}

.public-banner .text-box h3 {
	color: #fff;
	font-size: 36px;
	line-height: 50px;
	font-weight: 600;
	margin-bottom: 28px
}

.public-banner .text-box p {
	color: #fff;
	font-size: 18px;
	line-height: 28px;
	font-weight: 300
}

@media screen and (max-width:1200px) {
	.public-banner {
		height: 460px
	}

	.public-banner.short {
		height: 380px
	}

	.public-banner .text-box h3 {
		font-size: 24px;
		line-height: 30px;
		margin-bottom: 10px
	}

	.public-banner .text-box p {
		font-size: 14px;
		line-height: 24px
	}
}

@media screen and (max-width:768px) {
	.public-banner {
		height: 360px
	}

	.public-banner.short {
		height: 300px
	}

	.public-banner .text-box h3 {
		font-size: 20px;
		line-height: 26px;
		margin-bottom: 3px
	}

	.public-banner .text-box p {
		font-size: 12px;
		line-height: 20px
	}
}

@media screen and (max-width:576px) {
	.public-banner {
		height: 200px
	}

	.public-banner.short {
		height: 180px
	}
}

.newDetail {
	width: 100%;
	padding-bottom: 80px;
	box-sizing: border-box
}

.newDetail .newDetail-content {
	padding: 74px 20px 88px;
	box-sizing: border-box;
	background: #fff
}

.newDetail .newDetail-content .content-wrap {
	max-width: 960px;
	margin: auto
}

.newDetail .newDetail-content .info-wrap {
	max-width: 1160px;
	margin: auto
}

.newDetail .newDetail-content .title {
	width: 100%;
	text-align: center;
	font-size: 28px;
	font-weight: 400;
	color: #333;
	line-height: 40px;
	margin-bottom: 32px
}

.newDetail .newDetail-content .post_date {
	max-width: 1240px;
	height: 40px;
	text-align: center;
	background: #f7f7f7;
	line-height: 40px;
	font-size: 14px;
	color: #999;
	margin: 0 auto 48px
}

.newDetail .newDetail-content .content {
	margin-bottom: 80px
}

.newDetail .newDetail-content .content img {
	max-width: 100%;
	display: block;
	margin: 15px auto;
}

.newDetail .newDetail-content .btn_group {
	max-width: 1160px;
	margin: auto;
	display: flex;
	justify-content: space-between
}

.newDetail .newDetail-content .btn_group a {
	display: flex;
	justify-content: left;
	width: 48%;
	height: 88px;
	line-height: 88px;
	background: #f4f4f4;
	padding: 33px 40px;
	box-sizing: border-box
}

.newDetail .newDetail-content .btn_group a span {
	display: inline-block;
	min-width: 48px;
	height: 22px;
	font-size: 16px;
	color: #999;
	line-height: 22px;
	margin-right: 24px
}

.newDetail .newDetail-content .btn_group a p {
	display: inline-block;
	max-width: 450px;
	height: 25px;
	font-size: 18px;
	color: #333;
	line-height: 25px;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	margin-bottom: 0
}

.newDetail .newDetail-content .btn_group a:hover {
	background: #008CD0
}

.newDetail .newDetail-content .btn_group a:hover p,
.newDetail .newDetail-content .btn_group a:hover span {
	color: #fff
}

@media screen and (max-width:1024px) {
	.newDetail {
		margin-top: 10px
	}

	.newDetail .detail-bread {
		display: none
	}

	.newDetail .newDetail-content {
		padding: 20px 3% 30px
	}

	.newDetail .newDetail-content .title {
		font-size: 24px;
		line-height: 28px;
		margin-bottom: 15px
	}

	.newDetail .newDetail-content .content {
		margin-bottom: 30px
	}

	.newDetail .newDetail-content .btn_group {
		flex-wrap: wrap
	}

	.newDetail .newDetail-content .btn_group a {
		width: 100%;
		height: auto;
		padding: 20px 15px
	}

	.newDetail .newDetail-content .btn_group a span {
		font-size: 14px;
		line-height: 22px
	}

	.newDetail .newDetail-content .btn_group a p {
		font-size: 16px;
		line-height: 22px
	}

	.newDetail .newDetail-content .btn_group a+a {
		margin-top: 10px
	}
}

.ant-breadcrumb {
	padding: 16px 0;
	box-sizing: border-box;
	font-size: 14px;
	line-height: 20px;
	color: #333
}
