.mediaCenter-container{
	width: 100%;
}
.mediaCenter4-wrap{
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 100px;
	border-top: 1px solid #dfdfdf;
	border-left: 1px solid #dfdfdf;
}

.mediaCenter4-image{
	width: 20%;
	border-right: 1px solid #dfdfdf;
	border-bottom: 1px solid #dfdfdf;
	overflow: hidden;
}
.mediaCenter4-image img{
	width: 100%;
	height: auto;
	display: block;
	transition-duration:0.5s;
}

.mediaCenter4-image img:hover{
	transform: scale(1.1) translate3d(0px, 0px, 0px);
}

@media only screen and (max-width: 900px) {
	.mediaCenter4-wrap{
		margin-bottom: 70px;
	}
	.mediaCenter4-image{
		width: 25%;
	}
}

@media only screen and (max-width: 700px) {
	.mediaCenter4-wrap{
		margin-bottom: 50px;
	}
	.mediaCenter4-image{
		width: 33.3%;
	}
}

@media only screen and (max-width: 500px) {
	.mediaCenter4-wrap{
		margin-bottom: 30px;
	}
	.mediaCenter4-image{
		width: 50%;
	}
}



/* mediaCenter-tabs */
.mediaCenter-tabs{
	width: 100%;
	font-weight: bold;
	font-size: 16px;
	color: #363a3d;
	display: flex;
	border-bottom: 1px solid #43474a;
	position: relative;
	z-index: 5;
}
.mediaCenter-tab{
	display: inline-block;
	height: 54px;
	line-height: 54px;
	padding: 0 40px;
	cursor: pointer;
	border-top: 1px solid rgba(0,0,0,0);
	border-left: 1px solid rgba(0,0,0,0);
	border-right: 1px solid rgba(0,0,0,0);
	position: relative;
}
.mediaCenter-tab.mediaCenter-tab-active{
	border-top: 1px solid #43474a;
	border-left: 1px solid #43474a;
	border-right: 1px solid #43474a;
}
.mediaCenter-tab.mediaCenter-tab-active::after{
	content: '';
	width: 100%;
	height: 4px;
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 12;
	background-color: #FFFFFF;
}
.mediaCenter-tab:hover{
	color: #238e3a;
}


/* 手机端下拉框 */
.mediaCenter-title{
	display: none;
}
.mediaCenter-title-wrap{
	display: flex;
	align-items: center;
}
.mediaCenter-title-r{
	flex: 1;
	position: relative;
	background-color: #FFFFFF;
	font-size: 12px;
	border: 1px solid #e6e6e6;
}
.mediaCenter-dropdown{
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 10px;
	height: 37px;
	width: 100%;
	color: #363a3d;
}
.mediaCenter-down-n{
	display: block;
	width: 8px;
	height: auto;
}
.dropdown-content {
	width: calc(100% + 2px);
	top: 38px;
	left: -1px;
	position: absolute;
	box-sizing: border-box;
	border-left: 1px solid #e6e6e6;
	border-right: 1px solid #e6e6e6;
	background-color: #FFFFFF;
	display: none;
	z-index: 100;
}
.dropdown-content .dropdown-text{
	height: 37px;
	line-height: 37px;
	padding: 0 10px;
	border-bottom: 1px solid #e6e6e6;
	display: block;
	color: #363a3d;
}

.dropdown-content .dropdown-text:hover{
	background-color: #e6e6e6;
}
.mediaCenter-down-transform{
	transform:rotate(180deg);
	-ms-transform:rotate(180deg); 	/* IE 9 */
	-moz-transform:rotate(180deg); 	/* Firefox */
	-webkit-transform:rotate(180deg); /* Safari 和 Chrome */
	-o-transform:rotate(180deg); 	/* Opera */
}


@media only screen and (max-width: 1300px) {
	.mediaCenter-tabs{
		font-size: 14px;
	}
	.mediaCenter-tab{
		height: 52px;
		line-height: 52px;
		padding: 0 35px;
	}
}


@media only screen and (max-width: 1000px) {
	.mediaCenter-tabs{
		font-size: 14px;
	}
	.mediaCenter-tab{
		height: 50px;
		line-height: 50px;
		padding: 0 30px;
	}
}


@media only screen and (max-width: 900px) {
	.mediaCenter-tabs{
		font-size: 13px;
	}
	.mediaCenter-tab{
		height: 44px;
		line-height: 44px;
		padding: 0 20px;
	}
}


@media only screen and (max-width: 700px) {
	.mediaCenter-tabs{
		display: none;
	}
	.mediaCenter-title{
		display: block;
	}
}

.mediaCenter-lists{
	width: 100%;
	min-height: 300px;
}
.mediaCenter-list-wrap{
	width: 100%;
	display: none;
}
.mediaCenter-list-grid{
	width: 100%;
	box-sizing: border-box;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-column-gap: 40px;
}
.mediaCenter-list{
	display: block;
	width: 100%;
	position: relative;
	margin-top: 80px;
}
.mediaCenter-list:hover{
	background-color: #f7f7f7;
}
.mediaCenter-list-rel{
	width: 100%;
	height: 282px;
	position: relative;
}
.mediaCenter-list-image{
	width: 100%;
	height: 100%;
	overflow: hidden;
}
.mediaCenter-list-image img{
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	transition-duration:0.5s;
}

.mediaCenter-list-image img:hover{
	transform: scale(1.1) translate3d(0px, 0px, 0px);
}

.mediaCenter-list-time{
	width: 116px;
	height: 34px;
	line-height: 34px;
	text-align: center;
	font-size: 16px;
	color: #FFFFFF;
	font-weight: bold;
	position: absolute;
	left: 3%;
	bottom: -17px;
	z-index: 5;
	background-color: #238e3a;
	padding-top: 1px;
}

.mediaCenter-list-content{
	padding: 35px 3% 20px 3%;
	box-sizing: border-box;
	width: 100%;
}
.mediaCenter-list-title{
	font-size: 18px;
	font-weight: bold;
	color: #363a3d;
	line-height: 30px;
	
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}
.mediaCenter-list-desc{
	margin-top: 12px;
	font-size: 14px;
	line-height: 24px;
	color: #919191;
	
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

@media only screen and (max-width: 1300px) {
	.mediaCenter-list-grid{
		grid-column-gap: 30px;
	}
	.mediaCenter-list{
		margin-top: 50px;
	}
	.mediaCenter-list-rel{
		height: 226px;
	}
	.mediaCenter-list-time{
		width: 100px;
		height: 30px;
		line-height: 30px;
		font-size: 14px;
		bottom: -15px;
		left: 4%;
	}
	.mediaCenter-list-content{
		padding: 25px 4% 16px 4%;
	}
	.mediaCenter-list-title{
		font-size: 15px;
		line-height: 22px;
	}
	.mediaCenter-list-desc{
		margin-top: 8px;
		font-size: 13px;
	}
}

@media only screen and (max-width: 1000px) {
	.mediaCenter-list-grid{
		grid-column-gap: 20px;
	}
}

@media only screen and (max-width: 900px) {
	.mediaCenter-list-grid{
		grid-template-columns: repeat(2, 1fr);
		grid-column-gap: 30px;
	}
	.mediaCenter-list{
		margin-top: 40px;
	}
	.mediaCenter-list-time{
		width: 100px;
		height: 30px;
		line-height: 30px;
		font-size: 13px;
		bottom: -15px;
		left: 4%;
	}
	.mediaCenter-list-title{
		font-size: 14px;
		line-height: 22px;
	}
	.mediaCenter-list-desc{
		margin-top: 8px;
		font-size: 12px;
		line-height: 20px;
	}
}

@media only screen and (max-width: 700px) {
	.mediaCenter-list-grid{
		grid-column-gap: 20px;
	}
	.mediaCenter-list{
		margin-top: 30px;
	}
	.mediaCenter-list-time{
		left: 3%;
	}
	.mediaCenter-list-content{
		padding: 25px 3% 16px 3%;
	}
}

@media only screen and (max-width: 600px) {
	.mediaCenter-list-grid{
		grid-template-columns: repeat(1, 1fr);
		grid-column-gap: 0;
	}
	.mediaCenter-list{
		width: 100%;
		margin: 20px 0 0 0;
	}
	.mediaCenter-list-title{
		font-size: 14px;
		line-height: 22px;
	}
	.mediaCenter-list-desc{
		margin-top: 8px;
		font-size: 12px;
		line-height: 20px;
	}
}


/* 详情 */
.mediaCenter3-wrap{
	width: 100%;
	margin-top: 90px;
	padding: 100px 0;
}
.mediaCenter3-content{
	display: flex;
	flex-wrap: wrap;
}
.mediaCenter3-content-end{
	align-items: flex-end;
}
.mediaCenter3-content-l{
	width: 400px;
	flex-shrink: 0;
}
.mediaCenter3-l-box{
	width: 100%;
	display: inline-block;
	height: auto;
	border: 4px solid #238e3a;
	padding: 42px 45px;
	background-color: #FFFFFF;
}
.mediaCenter3-l-title{
	font-size: 30px;
	font-weight: bold;
	color: #363a3d;
	line-height: 48px;
}
.mediaCenter3-l-line{
	margin-top: 30px;
	width: 24px;
	height: 3px;
	background-color: #989898;
}
.mediaCenter3-l-time{
	margin-top: 30px;
	font-weight: bold;
	color: #238e3a;
	font-size: 24px;
}
.mediaCenter3-l-share{
	margin-top: 20px;
	display: flex;
	align-items: center;
}
.mediaCenter3-l-share>div{
	font-size: 14px;
	color: #333333;
	margin-right: 10px;
}

.mediaCenter3-l-share .social-share .icon-wechat, .mediaCenter3-l-share .social-share .icon-qq, .mediaCenter3-l-share .social-share .icon-weibo {
	color: #b0b0b0;
	border-color: #b0b0b0;
	font-size: 16px;
	line-height: 31px;
}

.mediaCenter3-l-share .social-share .icon-wechat:hover, .mediaCenter3-l-share .social-share .icon-qq:hover, .mediaCenter3-l-share .social-share .icon-weibo:hover {
	color: #76952e;
	border-color: rgba(118, 149, 46, 0.1);
	background-color: rgba(118, 149, 46, 0.3) ;
}

.mediaCenter3-l-share .social-share .icon-wechat .wechat-qrcode{
	top: 44px;
}
.mediaCenter3-l-share .social-share .icon-wechat .wechat-qrcode:after{
	top: -7px;
	 border-color: transparent transparent #f3f3f3 transparent ;
	border-width: 0 6px 6px 6px;
}

.mediaCenter3-content-r{
	margin-left: 7%;
	flex: 1;
}
.mediaCenter3-desc{
	width: 100%;
	padding: 20px 0 0 0;
	font-size: 14px;
	line-height: 2;
}
.mediaCenter3-desc p,.mediaCenter3-desc div{
	font-size: 14px;
	line-height: 2;
}
.mediaCenter3-desc img,.mediaCenter3-desc video{
	width: 100%;
	height: auto;
	display: block;
}
.mediaCenter3-fixed{
	position: fixed;
	z-index: 100;
	width: 400px;
	top: 120px;
}

.mediaCenter3-back{
	width: 100%;
	display: flex;
	justify-content: flex-end;
	padding-bottom: 40px;
	font-size: 16px;
	border-bottom: 1px solid #e3e4e6;
}
.mediaCenter3-back a{
	color: #238e3a;
	display: flex;
	align-items: center;
}
.mediaCenter3-back img{
	width: 10px;
	height: auto;
	display: inline-block;
	margin-left: 10px;
	margin-top: 1px;
}


.mediaCenter3-r-mobile{
	display: none;
	width: 100%;
	padding-top: 15px;
}

.mediaCenter3-next{
	width: 100%;
	margin-top: 50px;
	padding-top: 40px;
	display: flex;
	border-top: 1px solid #e3e4e6;
}
.mediaCenter3-next-wrap{
	width: 50%;
	display: inline-block;
}
.mediaCenter3-next-a{
	width: 100%;
	display: inline-block;
}
.mediaCenter3-next-title{
	width: 100%;
	font-size: 18px;
	font-weight: bold;
	color: #363a3d;
}
.mediaCenter3-next-title2{
	width: 100%;
	font-size: 18px;
	font-weight: bold;
	color: #363a3d;
	text-align: right;
}

.mediaCenter3-next-content{
	margin-top: 20px;
	display: flex;
	align-items: center;
}
.mediaCenter3-next-content img{
	width: 130px;
	height: 90px;
	display: block;
	object-fit: cover;
	flex-shrink: 0;
}

.mediaCenter3-next-desc{
	margin-left: 20px;
	padding-right: 5px;
	flex: 1;
}
.mediaCenter3-next-desc2{
	margin-right: 20px;
	padding-left: 5px;
	flex: 1;
}
.mediaCenter3-next-time{
	font-size: 14px;
	color: #76952e;
	font-weight: bold;
}
.mediaCenter3-next-text{
	font-size: 16px;
	line-height: 24px;
	margin-top: 12px;
	color: #363a3d;
	height: 50px;
	
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

@media only screen and (max-width: 1300px) {
	.mediaCenter3-wrap{
		padding: 70px 0;
	}
	.mediaCenter3-content-l{
		width: 350px;
	}
	.mediaCenter3-l-box{
		border: 3px solid #76952e;
		padding: 37px 40px;
	}
	.mediaCenter3-content-r{
		margin-left: 5%;
		flex: 1;
	}
	.mediaCenter3-fixed{
		width: 350px;
	}
	
	.mediaCenter3-l-title{
		font-size: 22px;
		font-weight: bold;
		color: #363a3d;
		line-height: 38px;
	}
	.mediaCenter3-l-line{
		margin-top: 28px;
		width: 24px;
		height: 2px;
		background-color: #989898;
	}
	.mediaCenter3-l-time{
		margin-top: 28px;
		font-weight: bold;
		color: #76952e;
		font-size: 17px;
	}
	.mediaCenter3-l-share{
		margin-top: 16px;
		display: flex;
		align-items: center;
	}
	.mediaCenter3-l-share>div{
		font-size: 12px;
		color: #333333;
		margin-right: 10px;
	}
	
	.mediaCenter3-back{
		padding-bottom: 30px;
		font-size: 13px;
	}
	.mediaCenter3-back img{
		width: 8px;
		margin-left: 8px;
	}
	
	.mediaCenter3-l-share .social-share .icon-wechat, .mediaCenter3-l-share .social-share .icon-qq, .mediaCenter3-l-share .social-share .icon-weibo {
		font-size: 14px !important;
		line-height: 27px !important;
		width: 28px !important;
		height: 28px !important;
	}
	.mediaCenter3-l-share .social-share .icon-wechat .wechat-qrcode{
		top: 40px;
		left: -88px;
	}
	
	
	.mediaCenter3-next{
		margin-top: 35px;
		padding-top: 25px;
	}
	
	.mediaCenter3-next-title{
		font-size: 16px;
	}
	.mediaCenter3-next-title2{
		font-size: 16px;
	}
	.mediaCenter3-next-content{
		margin-top: 15px;
	}
	.mediaCenter3-next-content img{
		width: 120px;
		height: 80px;
	}
	.mediaCenter3-next-desc{
		margin-left: 15px;
		padding-right: 5px;
	}
	.mediaCenter3-next-desc2{
		margin-right: 15px;
		padding-left: 5px;
	}
	.mediaCenter3-next-time{
		font-size: 13px;
	}
	.mediaCenter3-next-text{
		font-size: 14px;
		line-height: 22px;
		margin-top: 8px;
		height: 44px;
	}
}
@media only screen and (max-width: 1200px) {
	.mediaCenter3-wrap {
	    margin-top: 60px;
	}
	.mediaCenter3-fixed{
		top: 100px;
	}
	
}

@media only screen and (max-width: 900px) {
	.mediaCenter3-wrap{
		padding: 50px 0;
	}
	.mediaCenter3-content-l{
		width: 270px;
	}
	.mediaCenter3-l-box{
		border: 3px solid #76952e;
		padding: 23px 25px;
	}
	.mediaCenter3-content-r{
		margin-left: 3%;
		flex: 1;
	}
	.mediaCenter3-fixed{
		width: 270px;
	}
	
	.mediaCenter3-l-title{
		font-size: 18px;
		font-weight: bold;
		color: #363a3d;
		line-height: 30px;
	}
	.mediaCenter3-l-line{
		margin-top: 22px;
		width: 24px;
		height: 1px;
		background-color: #989898;
	}
	.mediaCenter3-l-time{
		margin-top: 22px;
		font-weight: bold;
		color: #76952e;
		font-size: 14px;
	}
	.mediaCenter3-l-share{
		margin-top: 12px;
		display: flex;
		align-items: center;
	}
	
	
	.mediaCenter3-next{
		margin-top: 25px;
		padding-top: 20px;
	}
	
	.mediaCenter3-next-title{
		font-size: 16px;
	}
	.mediaCenter3-next-title2{
		font-size: 14px;
	}
	.mediaCenter3-next-content{
		margin-top: 15px;
	}
	.mediaCenter3-next-content img{
		width: 100px;
		height: 70px;
	}
	.mediaCenter3-next-desc{
		margin-left: 15px;
		padding-right: 5px;
	}
	.mediaCenter3-next-desc2{
		margin-right: 15px;
		padding-left: 5px;
	}
	.mediaCenter3-next-time{
		font-size: 13px;
	}
	.mediaCenter3-next-text{
		font-size: 12px;
		line-height: 20px;
		margin-top: 6px;
		height: 40px;
	}
}

@media only screen and (max-width: 700px) {
	.mediaCenter3-wrap{
		padding: 30px 0;
	}
	.mediaCenter3-content-l{
		width: 230px;
	}
	.mediaCenter3-l-box{
		border: 3px solid #76952e;
		padding: 17px;
	}
	.mediaCenter3-content-r{
		margin-left: 3%;
		flex: 1;
	}
	.mediaCenter3-fixed{
		width: 230px;
	}
	
	.mediaCenter3-l-title{
		font-size: 14px;
		font-weight: bold;
		color: #363a3d;
		line-height: 23px;
	}
	.mediaCenter3-l-line{
		margin-top: 18px;
		width: 24px;
		height: 1px;
		background-color: #989898;
	}
	.mediaCenter3-l-time{
		margin-top: 18px;
		font-weight: bold;
		color: #76952e;
		font-size: 13px;
	}
	.mediaCenter3-l-share>div{
		font-size: 12px;
	}
	.mediaCenter3-back{
		padding-bottom: 20px;
		font-size: 12px;
	}
	.mediaCenter3-back img{
		width: 7px;
		margin-left: 7px;
	}
	.mediaCenter3-l-share .social-share .icon-wechat, .mediaCenter3-l-share .social-share .icon-qq, .mediaCenter3-l-share .social-share .icon-weibo {
		font-size: 12px !important;
		line-height: 23px !important;
		width: 24px !important;
		height: 24px !important;
	}
	.mediaCenter3-l-share .social-share .icon-wechat .wechat-qrcode{
		top: 34px;
		left: -90px;
	}
}

@media only screen and (max-width: 500px) {
	.mediaCenter3-wrap{
		padding: 15px 0;
	}
	.mediaCenter3-content-r{
		margin-left: 0%;
		flex: 1;
	}
	.mediaCenter3-l-box{
		position: static;
	}
	.mediaCenter3-content-l{
		display: none;
	}
	.mediaCenter3-r-mobile{
		display: block;
	}
	
	.mediaCenter3-back{
		padding-bottom: 15px;
	}
	
	.mediaCenter3-desc{
		padding: 15px 0 0 0;
	}
	.mediaCenter3-l-time{
		margin-top: 0;
		font-weight: bold;
		color: #76952e;
		font-size: 13px;
	}
	.mediaCenter3-l-share{
		margin-top: 0;
		margin-left: 15px;
	}
	.mediaCenter3-mobile-fixed{
		display: flex;
		align-items: center;
		margin-top: 2px;
	}
	.mediaCenter3-next-title{
		font-size: 14px;
	}
	.mediaCenter3-next-content{
		display: none;
	}
	.mediaCenter3-next{
		margin-top: 15px;
		padding-top: 15px;
	}
}


/* 展会新闻 */
.mediaCenter-wrap{
	background-color: #f7f7f7;
	position: relative;
	z-index: 2;
	height: 446px;
	margin-bottom: 100px;
}
.mediaCenter-wrap::after{
	content: '';
	width: 1000px;
	height: 100%;
	position: absolute;
	right: 100%;
	top: -162px;
	z-index: 0;
	background-color: #ebebeb;
	transform: skewY(18deg);
}
.mediaCenter-swiper{
	width: 100%;
	height: 100%;
}
.mediaCenter-swiper .swiper-wrapper{
	width: 100%;
	height: 100%;
}
.mediaCenter-swiper .swiper-slide{
	width: 100%;
	height: 100%;
}
.mediaCenter-swiper-slide{
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: row-reverse;
}
.mediaCenter-swiper-l{
	width: 50%;
	height: 100%;
	padding: 60px 110px 60px 60px;
	box-sizing: border-box;
}

.mediaCenter-swiper-time{
	font-weight: bold;
	font-size: 16px;
	color: #238e3a;
}
.mediaCenter-swiper-title{
	font-size: 24px;
	font-weight: bold;
	color: #363a3d;
	margin-top: 30px;
	line-height: 34px;
	
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}
.mediaCenter-swiper-desc{
	margin-top: 30px;
	font-size: 16px;
	color: #9a9a9a;
	line-height: 30px;
	
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}
.mediaCenter-swiper-tool{
	width: 50%;
	position: absolute;
	left: 60px;
	bottom: 60px;
	z-index: 5;
	display: flex;
	align-items: center;
	justify-content: flex-start;
}
.mediaCenter-swiper-tool .mediaCenter-swiper-pagination{
	position: static;
	transform: translateX(0px) !important;
	width: 150px !important;
}
.mediaCenter-swiper-tool .mediaCenter-swiper-pagination .swiper-pagination-bullet{
	background-color: #909090 !important;
	display: inline-block;
	margin-right: 20px !important;
	width: 4px;
	height: 4px;
	opacity: 1;
}
.mediaCenter-swiper-tool .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
    transform: scale(1) translate3d(0px, 0px, 0px) !important;
}
.mediaCenter-swiper-tool .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    transform: scale(1) translate3d(0px, 0px, 0px) !important;
}
.mediaCenter-swiper-tool .mediaCenter-swiper-pagination .swiper-pagination-bullet-active{
	background-color: rgba(0,0,0,0) !important;
	width: 12px;
	height: 12px;
	background-image: url(../img/img-29.png);
	border-radius: 0;
}
.mediaCenter-swiper-btns{
	height: 100%;
	display: flex;
	align-items: center;
	margin-left: 20px;
}
.mediaCenter-swiper-btns img{
	width: 60px;
	height: auto;
	display: block;
	margin-left: 10px;
}
.mediaCenter-swiper-btns .swiper-button-disabled{
	opacity: 0.4;
}
.mediaCenter-swiper-r{
	width: 50%;
	height: 100%;
	overflow: hidden;
}
.mediaCenter-swiper-r img{
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	transition-duration:0.5s;
}

.mediaCenter-swiper-r img:hover{
	transform: scale(1.1) translate3d(0px, 0px, 0px);
}

.mediaCenter-wrap2{
	width: 100%;
	/* margin-top: 100px; */
}
@media only screen and (max-width: 1300px) {
	/* .mediaCenter-wrap2{
		margin-top: 70px;
	} */
	
	.mediaCenter-wrap{
		height: 390px;
		margin-bottom: 70px;
	}
	.mediaCenter-swiper-l{
		padding: 50px 100px 50px 50px;
		box-sizing: border-box;
	}
	.mediaCenter-swiper-time{
		font-size: 15px;
	}
	.mediaCenter-swiper-title{
		font-size: 20px;
		margin-top: 20px;
		line-height: 32px;
	}
	.mediaCenter-swiper-desc{
		margin-top: 20px;
		font-size: 15px;
		line-height: 28px;
	}
	.mediaCenter-swiper-tool{
		width: 40%;
		position: absolute;
		left: 50px;
		bottom: 50px;
		z-index: 5;
	}
}
@media only screen and (max-width: 900px) {
	/* .mediaCenter-wrap2{
		margin-top: 50px;
	} */
	
	.mediaCenter-wrap{
		height: 320px;
		margin-bottom: 50px;
	}
	.mediaCenter-swiper-l{
		padding: 35px 50px 35px 35px;
		box-sizing: border-box;
	}
	.mediaCenter-swiper-time{
		font-size: 14px;
	}
	.mediaCenter-swiper-title{
		font-size: 17px;
		margin-top: 15px;
		line-height: 30px;
	}
	.mediaCenter-swiper-desc{
		margin-top: 15px;
		font-size: 14px;
		line-height: 26px;
	}
	.mediaCenter-swiper-tool{
		width: 40%;
		position: absolute;
		left: 35px;
		bottom: 35px;
		z-index: 5;
	}
	.mediaCenter-swiper-btns img{
		width: 50px;
		margin-left: 10px;
	}
}

@media only screen and (max-width: 700px) {
	/* .mediaCenter-wrap2{
		margin-top: 30px;
	} */
	
	.mediaCenter-wrap{
		height: 260px;
		margin-bottom: 30px;
	}
	.mediaCenter-wrap::after{
		background-color: rgba(0,0,0,0);
	}
	.mediaCenter-swiper-l{
		padding: 25px;
		box-sizing: border-box;
	}
	.mediaCenter-swiper-time{
		font-size: 13px;
	}
	.mediaCenter-swiper-title{
		font-size: 15px;
		margin-top: 15px;
		line-height: 27px;
	}
	.mediaCenter-swiper-desc{
		margin-top: 15px;
		font-size: 13px;
		line-height: 24px;
	}
	.mediaCenter-swiper-tool{
		width: 50%;
		position: absolute;
		left: 25px;
		bottom: 25px;
		z-index: 5;
	}
	.mediaCenter-swiper-tool .mediaCenter-swiper-pagination{
		width: 100px !important;
	}
	.mediaCenter-swiper-tool .mediaCenter-swiper-pagination .swiper-pagination-bullet{
		margin-right: 12px !important;
		width: 4px;
		height: 4px;
	}
	.mediaCenter-swiper-tool .mediaCenter-swiper-pagination .swiper-pagination-bullet-active{
		width: 9px;
		height: 9px;
		background-size: 100%;
	}
	.mediaCenter-swiper-btns{
		margin-left: 10px;
	}
	.mediaCenter-swiper-btns img{
		width: 40px;
		margin-left: 4px;
	}
}

@media only screen and (max-width: 500px) {
	/* .mediaCenter-wrap2{
		margin-top: 20px;
	} */
	.mediaCenter-wrap{
		height: auto;
		margin-bottom: 20px;
	}
	.mediaCenter-swiper-slide{
		display: block;
	}
	.mediaCenter-swiper-r{
		width: 100%;
		height: 220px;
		overflow: hidden;
		display: block;
	}
	.mediaCenter-swiper-l{
		width: 100%;
		padding: 20px 3%;
	}
	.mediaCenter-swiper-tool{
		position: static;
		padding: 0 3% 20px 3%;
	}
}

.mediaCenter-tabs .swiper{
	width: 100%;
	height: 100%;
	position: relative;
	z-index: 2;
	bottom: -1px;
}
.mediaCenter-tabs .swiper-wrapper{
	width: 100%;
	height: 100%;
}
.mediaCenter-tabs .swiper-slide{
	display: inline-block;
	width: auto;
}