@charset "utf-8";

* {
	margin: 0px;
	padding: 0px;
	box-sizing: border-box;
}

ul,
li {
	list-style: none;
	margin: 0px;
	padding: 0px;
	box-sizing: border-box;
}

a {
	text-decoration: none;
	color: #231815;
}

.c-scrollbar_thumb {
	position: absolute;
	top: 0;
	right: 0;
	background-color: #231815;
	width: 7px;
	margin: 2px;
	cursor: -webkit-grab;
	cursor: grab;
}

::selection {
	background: #231815;
	color: #fff;
}

input {
	-webkit-appearance: none;
}

img {
	display: block;
	width: 100%;
	max-width: 100%;
	object-fit: cover;
}

.bgcover{
	background: center center no-repeat;
	background-size: cover;
}

/* 去除iphone按钮默认样式代码 */
input[type=button],
input[type=submit],
input[type=file],
button {
	cursor: pointer;
	-webkit-appearance: none;
}

/* 通用外层 */
.boxes {
	position: relative;
	padding: 5vw 0px;
	background-color: #fff;
	overflow: hidden;
	z-index: 2;
}

.boxes.pd0{
	padding: 0px;
}

.boxes.f {
	background: #f9f9f9;
}

/* 通用宽度 */
.w1400 {
	width: calc(100vw - 222px);
	position: relative;
	margin-left: 122px;
	padding-left: 50px;
}

.flex{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
}

/* 通用弹出层样式 */
.lightBox {
	width: 100%;
	height: 100vh;
	left: 0;
	top: 0;
	background: rgba(0, 0, 0, .8);
	z-index: 1000;
	transition: all .5s cubic-bezier(.23, 1, .32, 1);
	opacity: 0;
	visibility: hidden;
	position: fixed;
}

.lightBox.active {
	opacity: 1;
	visibility: visible
}

/* 通用视频弹出层样式 */
.videoBox {
	width: 70%;
	max-width: 1000px;
	height: auto;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	background: #fff;
	padding: 35px 0px;
	border-radius: 10px;

}

.videoBox video {
	display: block;
	position: relative;
	width: 100%;
}

.videoCloseBtn {
	width: 35px;
	height: 35px;
	position: absolute;
	right: 0px;
	top: 0px;
	line-height: 35px;
	text-align: center;
	cursor: pointer;
	-webkit-transition: all .5s;
}

.videoCloseBtn:hover {
	-webkit-transform: rotate(180deg);
}

/* 通用半透明背景代码 */
.transBg {
	background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, .8) 0%, rgba(0, 0, 0, .0) 100%);
}

/* 通用处理单行文字溢出代码 */
.singleLine {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

/* 通用处理多行文字溢出代码 */
.multiLine {
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	line-height: 1.7;
}


/* 通用字体字号行距样式 */
.singePage {
	width: 100%;
	line-height: 2;
	font-size: 16px;
}

.singePage.w{
	color: #fff;
}

.singePage p {
	margin-bottom: 10px;
}

.singePage.c {
	text-align: center;
}

/* 通用分页样式 */
#page {
	display: flex;
	text-align: center;
	margin-top: 3vw;
	width: 100%;
	border-top: 1px solid rgba(0, 0, 0, .1);
	padding-top: 3vw;
}

#page ul{
	display: flex;
	width: 100%;
	justify-content: center;
}

#page li.xl-prevPage,
#page li.xl-nextPage {
	display: none;
}

#page li {
	display: block;
	width: 40px;
	height: auto;
	cursor: pointer;
	color: #3e3e3e;
	font-size: 14px;
	line-height: 40px;
	text-align: center;
	margin: 0 3px;
	-webkit-appearance: none;
	border-radius: 3px;
	background: #fff;
	transition: all .35s;
}

.xl-nextPage,
.xl-prevPage {
	width: 60px;
	color: #2a2a32;
	height: 28px;
}

#page li.xl-disabled {
	opacity: .5;
	cursor: no-drop;
}

#page li.xl-disabled:hover {
	background-color: #f9f9f9;

	color: #666;
}

#page li.xl-active,#page li:hover {
	color: #FFF;
	background: #e60012;
}


#page li.xl-jumpText {
	background-color: rgba(0, 0, 0, 0);
	border-color: rgba(0, 0, 0, 0);
	opacity: 1;
}

#page li.xl-jumpText:hover {
	background-color: rgba(0, 0, 0, 0) !important;
	border-color: rgba(0, 0, 0, 0) !important;
}

#page li.xl-jumpButton {
	padding: 0 5px;
}

#xlJumpNum {
	width: 35px;
	margin: 0 3px;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
	-webkit-appearance: none !important;
}

input[type="number"] {
	-moz-appearance: textfield;
}

/* 通用详情页样式 */
.detail_page {
	width: 100%;
	background: #f4f4f4;
	position: relative;
	padding: 3vw;
}

.detail_box {
	width: 1200px;
	height: auto;
	margin: 0px auto;
	
}

.detail_box .singePage{
	min-height: 500px;
}



/* 通用查看更多按钮样式一 */
.commonMore {
	font-size: 16px;
	position: relative;
	z-index: 0;
	width: 158px;
	height: 54px;
	margin-top: 50px;
	padding: 0;
	border-radius: 32px;
	color: #e27223;
	cursor: pointer;
	display: block;
}

.commonMore.w {
	color: #fff;
}

.commonMore.active,
.commonMore.active:hover {
	background: #ccc;
	color: #fff;
	cursor: no-drop;
}

.commonMore.c {
	margin: 0px auto;
	margin-top: 50px;
}
.commonMore:hover {
	color: #fff;
	border-color: transparent;
	background: transparent;
}


/* 通用查看更多按钮样式二：圆形 */
.commonMore2 {
	width: 65px;
	height: 65px;
	margin: 100px auto 0px;
	display: block;
	border-radius: 50%;
	background: rgba(255, 255, 255, .9);
	color: #e27223;
	line-height: 65px;
	text-align: center;
	-webkit-transition: all .35s;
	position: relative;
}
.commonMore2.left{
	margin: 100px 0px 0px;
}
.commonMore2 i{
	position: relative;
}
.commonMore2::before {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0%;
	border-radius: 50%;
	background: #e27223;
	-webkit-transform: scale(0);
	-webkit-transition: all 400ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
	content: '';
	opacity: 0;
}

.commonMore2:hover {
	font-size: 20px;
	color: #fff;
}

.commonMore2:hover::before {
	-webkit-transform: scale(1);
	opacity: 1;
}

/* 通用查看更多按钮样式三：文字+icon */
.commonMore3{
	width: 200px;
	height: 60px;
	border-radius: 50px;
	margin: 100px auto 0px;
	display: flex;
	position: relative;
	align-items: center;
	justify-content: space-between;
	border: 1px solid #e27223;
	color: #e27223;
	overflow: hidden;
	-webkit-transition: all .4s;
	background-color: #fff;
	padding: 0px 20px;
}
.commonMore3.bw{
	border-color: #fff;
}
.commonMore3 p{
	margin-left: 15px;
	font-size: 16px;

}
.commonMore3 .icon{
	width: 40px;
	height: 40px;
	background: #e27223;
	border-radius: 50%;
	color: #fff;
	line-height: 40px;
	text-align: center;
	font-size: 12px;
	-webkit-transition: all .4s;
}

.commonMore3:hover{
	background: #e27223;
	color: #fff;
	border-color: #e27223;
	box-shadow: 0px 0px 30px rgba(0,0,0,.1);
}

.commonMore3:hover .icon{
	background: #fff;
	color: #e27223;
	
}

/* 通用回到顶部代码 */
.backTop {
	position: fixed;
	right: 50px;
	display: block;
	bottom: -100px;
	width: 50px;
	height: 50px;
	background-color: #fff;
	background-position: center center;
	background-repeat: no-repeat;
	box-shadow: 0 0 30px rgba(0, 0, 0, .1);
	cursor: pointer;
	line-height: 50px;
	font-size: 28px;

	text-align: center;
	z-index: 50;
	color: rgba(0, 0, 0, .4);
	-webkit-transition: all .5s;
}

.backTop.active {
	bottom: 50px
}

.backTop:hover {
	background-color: #2a2a32;
	color: #fff
}

/* 通用基于swiper的banner代码 */
.swiperBanner {
	height: 40vw;
	position: relative;
	margin-top: 120px;
	overflow: hidden;
}

.swiperBanner .swiper-slide {
	overflow: hidden;
}

.swiperBanner .swiper-button-next,
.swiperBanner .swiper-button-prev {
	width: 50px;
	height: 50px;
	-webkit-transition: all .5s;
	-webkit-transform: translateX(0px);
	background: rgba(39, 123, 186, .5);

}

.swiperBanner .swiper-button-next {
	right: -50px;
}

.swiperBanner .swiper-button-prev {
	left: -50px;
}

.swiperBanner .swiper-button-next:after,
.swiperBanner .swiper-button-prev:after {
	font-size: 14px;
}

.swiperBanner:hover .swiper-button-next {
	right: 10px;
}

.swiperBanner:hover .swiper-button-prev {
	left: 10px;
}

.slide-inner {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background-size: cover;
	background-position: center center
}

.swiperBanner .swiper-button-next:hover,
.swiperBanner .swiper-button-prev:hover {
	background: rgba(39, 123, 186, 1);
}

.swiper-pagination.bannerDot {
	position: absolute;
	width: auto;
	height: auto;
	display: flex;
	left: 50%;
	-webkit-transform: translateX(-50%);
	bottom: 2vw;
	text-align: center;
	z-index: 10;
	background: rgba(0, 0, 0, .3);
	padding: 10px 15px;
	padding-right: 5px;
	border-radius: 20px;
}

.swiper-pagination.bannerDot .swiper-pagination-bullet {
	width: 10px;
	height: 10px;
	background: rgba(255, 255, 255, .5);
	display: block;
	margin-right: 10px;
	border-radius: 50%;
	-webkit-transition: all .35s;
	border: 1px solid #fff;
	background: transparent;
}

.swiper-pagination.bannerDot .swiper-pagination-bullet.swiper-pagination-bullet-active {
	background: #fff;
}


/* 通用公告的代码 */
.noticeBox {
	width: 100%;
	display: flex;
	line-height: 60px;
	justify-content: space-between;
	overflow: hidden;
	border-radius: 60px;
}

.noticeBox .icon {
	width: 100px;
	text-align: center;
	font-size: 20px;
	color: #fff;
}


.noticeList {
	width: calc(100% - 200px);
}

.noticeList ul {
	display: block;
	width: 100%;
	float: left;
	height: 60px;
	overflow: hidden;
	margin-left: 20px
}

.noticeList ul li {
	width: 100%;
	height: 60px;
	position: relative;
	font-size: 16px;

}

.noticeList ul li a {
	display: block;
	width: 100%;
	height: auto;
	position: relative;
	color: #fff;
}


.noticeList ul li a span {
	margin-left: 50px;
	opacity: .7;
}


.noticeBox .arrow {
	width: 100px;
	display: flex;
	justify-content: center;
}

.noticeBox .arrow>div {
	width: 40px;
	text-align: center;
	cursor: pointer;
	color: #fff;
}

/* 通用视频播放按钮 */
.commonVideoBtn {
	width: 60px;
	height: 60px;
	position: relative;
	display: block;
	cursor: pointer;
	margin: 50px auto;
}

.commonVideoBtn::after,
.commonVideoBtn::before {
	width: 100%;
	height: 100%;
	border: 1px solid #fff;
	position: absolute;
	left: -1px;
	top: -1px;
	content: '';
	border-radius: 50%;
	-webkit-animation: scaleAnimate 2s linear infinite;
	opacity: 0;
}

.commonVideoBtn::after {
	-webkit-animation-delay: .5s;
}

@-webkit-keyframes scaleAnimate {
	0% {
		-webkit-transform: scale(1);
		opacity: 0;
	}

	50% {
		-webkit-transform: scale(1.5);
		opacity: 0.7;
	}

	100% {
		-webkit-transform: scale(2);
		opacity: 0;
	}
}

.commonVideoBtn span {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
	background: #fff;
	border-radius: 50%;
}

.commonVideoBtn span::after {
	width: 0px;
	height: 0px;
	border-top: 7px solid transparent;
	border-bottom: 7px solid transparent;
	border-left: 7px solid #035ea3;
	content: '';
	position: absolute;
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
}


/* 通用上一条下一条样式 */
.ndc_npnews {
	width: 100%;
	height: auto;
	display: flex;
	border: 1px solid rgba(0, 0, 0, .05);
	margin-top: 50px;
}

.ndc_npnews .post_next,
.ndc_npnews .post_prev {
	line-height: 25px;
}

.ndc_npnews .post_next p, .ndc_npnews .post_prev p{
	opacity: 0.5;
	font-size: 14px;
	margin-bottom: 5px;
}

.ndc_back{
	width: 20%;
	height: 55px;
	line-height: 25px;
	position: relative;
	text-align: center;
	font-size: 16px;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}


.ndc_back span{
	width: 25px;
	height: auto;
	display: block;
	padding: 3px;
	opacity: 0.7;
	margin-bottom: 5px;
}

.ndc_back p{
	display: block;
	width: 100%;
	opacity: 0.5;
	font-size: 14px;
}

.ndc_npnews a:hover p{
	opacity: 1;
}

.ndc_npnews .post_next:hover .icon:after,
.ndc_npnews .post_prev:hover .icon:after {
	background: rgba(255, 255, 255, .2)
}

.ndc_npnews .post_next {
	direction: rtl;
}

.ndc_npnews .post_next .icon,
.ndc_npnews .post_prev .icon {
	width: 20px;
	position: relative
}

.ndc_npnews .post_next .icon:before,
.ndc_npnews .post_prev .icon:before {
	width: 14px;
	height: 14px;
	position: absolute;
	left: 0;
	top: 3px;
	background: url(../../images/common/udIcon.png) no-repeat;
	background-size: cover;
	content: '';

	opacity: .5
}

.ndc_npnews .post_next .icon:before {
	left: auto;
	right: 0;
	-webkit-transform: rotate(-180deg)
}



.ndc_npnews .post_next .name,
.ndc_npnews .post_prev .name {
	width: calc(100% - 20px);
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
}

.ndc_npnews .post_next .name {
	direction: initial;
}


/* 通用淡入样式一 */
.swiper-container.swiperNomal {
	height: 100vh;
}

.swiper-container.swiperNomal .pic {
	position: absolute;
	width: 100%;
	height: 100%;
	background: center center no-repeat;
	background-size: cover;
	transition: 1s linear 2s;
	-webkit-transition: 1s linear 2s;
	transform: scale(1.1, 1.1);
	-webkit-transform: scale(1.1, 1.1);
}

.swiper-container.swiperNomal .swiper-slide-active .pic {
	transition: 6s linear;
	transform: scale(1, 1);
	-webkit-transition: 6s linear;
	-webkit-transform: scale(1, 1);
}

.swiperNomal .swiper-pagination-bullet {
	width: 10px;
	height: 10px;
	text-align: center;
	line-height: 10px;
	opacity: 1;
	border-radius: 50px;
	background: #fff;
	position: relative;
	-webkit-transition: all .8s;
	margin-right: 10px;
	opacity: .5;
}


.swiperNomal .swiper-pagination-bullet.swiper-pagination-bullet-active {
	width: 35px;
	opacity: 1;
}

.vlightBox {
	width: 100%;
	height: 100vh;
	position: fixed;
	left: 0%;
	top: 0%;
	z-index: 200;
	background: rgba(0, 0, 0, .5);
	backdrop-filter: blur(15px);
	padding: 0px 0%;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	-webkit-transition: all 0.5s cubic-bezier(0.215, 0.610, 0.355, 1);
	visibility: hidden;
	opacity: 0;
}

.inner-player video {
	display: block;
	width: 70%;
	height: auto;
	border: 5px solid #fff;
	border-radius: 5px;
}

.pro_close {
	width: 50px;
	height: auto;
	line-height: 60px;
	text-align: center;
	padding: 17px;
	position: absolute;
	right: 5%;
	top: 5%;
	border-radius: 50%;
	cursor: pointer;
	-webkit-transition: all .35s;
	background: #e27223;
}

.pro_close:hover {
	-webkit-transform: rotate(45deg);
}

.pro_close img {
	opacity: 1;
}

.vlightBox.active {
	opacity: 1;
	visibility: visible;
}

.inner-player {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	overflow: hidden;
}


.swiperNomal .swiper-pagination {
	position: relative;
}

.swiperNomal .dotBox {
	display: flex;
	justify-content: center;
	width: auto;
	position: absolute;
	bottom: 2vw;
	width: 100%;
}

.swiperNomal .btnBox {
	width: auto;
	display: flex;
	position: relative;
	z-index: 10;
	margin-left: 5px;
}

.swiperNomal .btnBox .prev,
.swiperNomal .btnBox .next {
	width: 35px;
	height: 35px;
	border: 1px solid rgba(255, 255, 255, 1);
	border-radius: 50%;
	line-height: 35px;
	text-align: center;
	margin: 0px 6px;
	color: #fff;
	cursor: pointer;
}

/* 通用自动滚动样式 */
.dowebok {
	width: 100%
}

.dowebok .img {
	margin-left: 5px;
	display: inline-block;
	width: 250px;
	height: auto;
	background: center center no-repeat;
	background-size: cover;
}

.str_wrap {
	overflow: hidden;
	width: 100%;
	font-size: 12px;
	line-height: 16px;
	position: absolute;
	-moz-user-select: none;
	-khtml-user-select: none;
	user-select: none;
	left: 0px;
	bottom: 0px;
	white-space: nowrap
}

.str_move {
	white-space: nowrap;
	position: absolute;
	top: 0;
	left: 0;
	cursor: move
}

.str_move_clone {
	display: inline-block;
	vertical-align: top;
	position: absolute;
	left: 100%;
	top: 0
}

.str_vertical .str_move_clone {
	left: 0;
	top: 100%
}

.str_down .str_move_clone {
	left: 0;
	bottom: 100%
}


.str_down .str_move,
.str_vertical .str_move {
	white-space: normal;
	width: 100%
}


/* 通用内页banner样式 */
.sub_banner {
	position: relative;
	overflow: hidden;
}
/* 通用提示样式 */
.toast {
	width: 150px;
	height: auto;
	left: 50%;
	top: 50%;
	-webkit-transform: translateY(-40%) translateX(-50%);
	z-index: 5000;
	opacity: 0;
	visibility: hidden;
	position: fixed;
	font-size: 14px;
	padding: 25px 15px;
	display: flex;
	border-radius: 8px;
	box-shadow: 0px 0px 50px rgba(0, 0, 0, .3);
	text-align: center;
	flex-wrap: wrap;
}
.toast b{
	font-size: 16px;
	display: block;
	width: 100%;
	margin-bottom: 5px;
}
.toast.icon-warning{
	background: #fef0f0;
	border: 1px solid #fde2e2;
	color: #f56c6c;
}

.toast i{
	width: 35px;
	height: 35px;
	display: block;
	position: relative;
	background: url(../../images/common/noti_icon.png);
	background-size: cover;
	margin: 0px auto;
	margin-bottom: 15px;
}
.toast.icon-warning i{
	background-position: -35px 0px;
}
.toast.active {
	opacity: 1;
	visibility: visible;
	-webkit-transform: translateY(-50%) translateX(-50%);
}
.toast div{
	width: 100%;
}
.toast p {
	display: block;
	color: #000;
}
.toast.icon-warning p {
	color: #f56c6c;
}
.toast.icon-success{
	background: #f0f9eb;
}
.toast.icon-success p,.toast.icon-success b {
	color: #67c23a;	
}
.toast .close_icon{
	width: 25px;
	height: 25px;
	display: block;
	position: absolute;
	right: 0px;
	top: 0px;
	background: url(../../images/common/noti-close.png) no-repeat;
	background-size: cover;
	cursor: pointer;
}

.thum{
	position: relative;
	overflow: hidden;
}
.pic{
	background: center center no-repeat;
	background-size: cover;
	-webkit-transition: all 1s;
}
.inner{
	width: 100%;
	height: 0;
	position: relative;
	overflow: hidden;
	padding-top: 100%;
}

.inner img{
	object-fit: cover;
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0px;
	top: 0px;
	transition: all 1s;
}


#nav-icon2{
  width: 30px;
  height: 30px;
  position: absolute;
  right: 3%;
  top: 20px;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  cursor: pointer;
  z-index: 5;
}


/* Icon 2 */

#nav-icon2 {
	display: none;
}

#nav-icon2 span {
  display: block;
  position: absolute;
  height: 3px;
  width: 50%;
  background: #fff;
  opacity: 1;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}

#nav-icon2 span:nth-child(even) {
  left: 50%;
  border-radius: 0 9px 9px 0;
}

#nav-icon2 span:nth-child(odd) {
  left:0px;
  border-radius: 9px 0 0 9px;
}

#nav-icon2 span:nth-child(1), #nav-icon2 span:nth-child(2) {
  top: 0px;
}

#nav-icon2 span:nth-child(3), #nav-icon2 span:nth-child(4) {
  top: 10px;
}

#nav-icon2 span:nth-child(5), #nav-icon2 span:nth-child(6) {
  top: 20px;
}

#nav-icon2.open span:nth-child(1),#nav-icon2.open span:nth-child(6) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

#nav-icon2.open span:nth-child(2),#nav-icon2.open span:nth-child(5) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

#nav-icon2.open span:nth-child(1) {
  left: 5px;
  top: 7px;
}

#nav-icon2.open span:nth-child(2) {
  left: calc(50% - 5px);
  top: 7px;
}

#nav-icon2.open span:nth-child(3) {
  left: -50%;
  opacity: 0;
}

#nav-icon2.open span:nth-child(4) {
  left: 100%;
  opacity: 0;
}

#nav-icon2.open span:nth-child(5) {
  left: 5px;
  top: 12px;
}

#nav-icon2.open span:nth-child(6) {
  left: calc(50% - 5px);
  top: 12px;
}
.detail_top{
    width: 100%;
    height: auto;
    position: relative;

	
}

.detail_top .title{
    font-size: 2.5vw;
    line-height: 1.5;
    font-weight: bold;
}

.detail_top .info{
    font-size: 16px;
    line-height: 1.5;
	margin-bottom: 10px;
}

.detail_box{
	padding: 3vw 0%;

}

.dpl {
    width: calc(100% - 250px);
    padding: 0px;
    padding-right: 80px;
    border: none;
}

.dpl .singePage img{
	width: 100% !important;
	height: auto !important;
}


.ndc_npnews{
    justify-content: space-between;
    margin-top: 5vw;
	align-items: center;
	border: none;
	border-top: 1px solid rgba(0, 0, 0, .1);
	padding-top: 25px;
}
.ndc_npnews .post_next, .ndc_npnews .post_prev{
    padding: 0px;
    width: 40%;
    font-size: 16px;
}
.ndc_npnews .post_next .icon, .ndc_npnews .post_prev .icon{
    width: 64px;
}
.ndc_npnews .post_next .name, .ndc_npnews .post_prev .name{
    width: calc(100% - 64px);
}
.ndc_npnews .post_next .icon:before, .ndc_npnews .post_prev .icon:before{
    display: none;
}

.ndc_npnews a:hover{
	color: #e27223;
}

.de_pate{
	background: #fff;
}
.detail_top .w100{
	width: 1200px;
	margin: 0px auto;
}

.ndc_npnews .post_next {
    direction: initial;
	text-align: right;
}

@keyframes roateOne {
	from {
		transform: rotate(0);
	}

	to {
		transform: rotate(180deg);
	}
}




.st_fadeUp{
	-webkit-transition: all 1s ease 0.3s;
	-webkit-transform: translateY(50px);
	opacity: 0;
}

.st_fadeRight{
	-webkit-transition: all 1.6s cubic-bezier(0.215, 0.610, 0.355, 1) .3s;
	-webkit-transform: translateX(100px);
	opacity: 0;
}
.st_fadeRight.is-inview{
	-webkit-transform: translateX(0px);
	opacity: 1;
}
.st_fadeUp.is-inview{
	-webkit-transform: translateY(0px);
	opacity: 1;
}

.st_clipUp{
	overflow: hidden;

}
.st_clipUp p{
	-webkit-transform: translateY(100%);
	-webkit-transition: all 1s cubic-bezier(0.785, 0.135, 0.15, 0.86) .3s;
}

.st_poly{
	-webkit-clip-path: polygon(0% 0,0 0,0% 100%,0% 100%);
	-webkit-transition: 1.5s cubic-bezier(0.215, 0.610, 0.355, 1) 0.5s;
}

.st_polyR{
	/* -webkit-clip-path: polygon(100% 0,100% 0,100% 100%,100% 100%); */
	-webkit-clip-path: polygon(0% 0,0 0,0% 100%,0% 100%);
	-webkit-transition: 1.5s cubic-bezier(0.215, 0.610, 0.355, 1) 0.5s;
}

.swiper-slide-active .st_poly,.swiper-slide-active .st_polyR{
	-webkit-clip-path: polygon(100% 0,0 0,0% 100%,100% 100%);
}

.st_polyL{
	-webkit-clip-path: polygon(100% 0,100% 0,100% 100%,100% 100%);
	-webkit-clip-path: polygon(0% 0,0 0,0% 100%,0% 100%);
}

.st_delay1{
	-webkit-transition-delay: .1s;
}
.st_delay2{
	-webkit-transition-delay: .2s;
}
.st_delay3{
	-webkit-transition-delay: .3s;
}
.st_delay4{
	-webkit-transition-delay: .4s;
}
.st_delay5{
	-webkit-transition-delay: .5s;
}
.st_delay6{
	-webkit-transition-delay: .6s;
}
.st_delay7{
	-webkit-transition-delay: .7s;
}
.st_delay8{
	-webkit-transition-delay: .8s;
}
.st_delay9{
	-webkit-transition-delay: .9s;
}

.st_delay10{
	-webkit-transition-delay: 1s;
}

.st_delay11{
	-webkit-transition-delay: 1.1s;
}

.st_delay12{
	-webkit-transition-delay: 1.2s;
}
.st_delay13{
	-webkit-transition-delay: 1.3s;
}
.st_delay14{
	-webkit-transition-delay: 1.4s;
}
.st_delay15{
	-webkit-transition-delay: 1.5s;
}
.st_delay16{
	-webkit-transition-delay: 1.6s;
}

.st_clipUp.is-inview p{
	-webkit-transform: translateY(0%);
}

.st_path{
	-webkit-transition: all 1.5s cubic-bezier(0.215, 0.610, 0.355, 1);
	-webkit-clip-path: polygon(0 0,100% 0,100% 0,0 0);
}

.st_path .pic{
	-webkit-transition: all 1.5s ease;
	-webkit-transform: scale(1.1);
}

.st_path.is-inview{
	-webkit-clip-path: polygon(0 0,100% 0,100% 100%,0 100%);
}

.st_path.is-inview .pic{
	-webkit-transform: scale(1);
}

.subBanner{
	position: relative;
	overflow: hidden;
}

.subBanner img{	
}

.common_title.is-inview .cn p {
    -webkit-transform: translateY(0%);
}


html.has-scroll-smooth,html{
	overflow: hidden;
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
}

html.has-scroll-dragging,
html.has-scroll-dragging * {
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.has-scroll-smooth body {
	overflow: hidden;
}

.c-scrollbar {
	position: absolute;
	right: 0;
	top: 0;
	width: 11px;
	height: 100vh;
	transform-origin: center right;
	transition: transform 0.3s, opacity 0.3s;
	opacity: 0;
	z-index: 100;
}

.c-scrollbar:hover {
	transform: scaleX(1.45);
}

.c-scrollbar:hover,
.has-scroll-dragging .c-scrollbar,
.has-scroll-scrolling .c-scrollbar {
	opacity: 1;
}



.has-scroll-dragging .c-scrollbar_thumb {
	cursor: -webkit-grabbing;
	cursor: grabbing;
}


.nav_bg{
	display: none;
	width: 45px;
	height: 45px;
	overflow: hidden;
	position: fixed;
	right: 10px;
	top: 7.5px;
	background: #fff;
	border-radius: 50%;
	-webkit-transition: all .8s cubic-bezier(.77,0,.175,1);
}

.menu_btn {
    position: absolute;
    right: 0px;
    display: none;
    width: 45px;
    height: 45px;
    overflow: hidden;
    text-indent: 100%;
    white-space: nowrap;
    background: #e60012;
    color: transparent;
    border: none;
}

.menu_btn span {
    top: 22px;
	left: 13px;
	width: 20px;
}

.menu_btn span, .menu_btn span:after, .menu_btn span:before {
    position: absolute;
    height: 2px;
    background-color: #fff;
    border-radius: 1px;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}

.menu_btn span:after, .menu_btn span:before {
    content: "";
    left: 0;
    -webkit-transform: translateY(0px) rotate(0deg);
}

.menu_btn span:before {
    top: -6px;
    width: 14px;
}

.menu_btn span:after {
    top: 6px;
    width: 12px;
}

.menu_btn.active span {
    background-color: transparent;
}

.menu_btn.active span:before {
    -webkit-transform: translateY(6px) rotate(-45deg);
}

.menu_btn.active span:after {
    -webkit-transform: translateY(-6px) rotate(45deg);
}

.menu_btn.active span:after, .menu_btn.active span:before {
    width: 20px;
}

.searchLight {
	width: 100%;
	height: 100vh;
	left: 0;
	top: 0;
	background: rgba(0, 0, 0, .8);
	z-index: 1000;
	transition: all .5s cubic-bezier(.23, 1, .32, 1);
	opacity: 0;
	visibility: hidden;
	position: fixed;
}

.searchLight.active{
	opacity: 1;
	visibility: visible;
}

.searchGroup{
	width: 600px;
	height: auto;
	position: absolute;
	padding:75px 100px;
	background: #fff;
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%,-50%);
}

.searchGroup .name{
	width: 100%;
	font-size: 16px;
	font-weight: bold;
	line-height: 2;
	margin-bottom: 25px;
}

.searchGroup input{
	width: 100%;
	height: 50px;
	border: none;
	border-bottom: 1px solid rgba(0,0,0,.1);
	outline: none;
	margin-bottom: 25px;
}

.searchBtn{
	width: 120px;
	height: 50px;
	line-height: 50px;
	background: rgba(0,0,0,.05);
	text-align: center;
	cursor: pointer;
	color: rgba(0,0,0,.5);
	-webkit-transition: all .35s;
}
.searchBtn:hover{
	background: #e60012;
	color: #fff;
}


.searchGroup input::-webkit-input-placeholder {
	color: rgba(0,0,0,.3);
	font-size: 14px;

}

.searchClose{
	width: 50px;
	height: 50px;
	position: absolute;
	right: 0px;
	top: 0px;
	cursor: pointer;
	line-height: 50px;
	text-align: center;
	-webkit-transition: all .5s;
}
.searchClose:hover{
	-webkit-transform: rotate(-45deg);
}

.jpage{
	width: 100%;
	display: flex;
	justify-content: center;
	    margin-top: 2vw;
}

.jpage a,.jpage span{
	display: block;
	width: 35px;
	height: 35px;
	line-height: 35px;
	text-align: center;
	position: relative;
	background: #ffffff;
	color: #2a2a32;
	cursor: pointer;
	border-radius: 3px;
	margin: 0px 2px;
	font-size: 12px;
}

.jpage a.jp-current{
	background:#e60012;
	color: #fff;
}

.jpage a.jp-previous,.jpage a.jp-next{
	display: none;
}


@media screen and (max-width: 1024px){
	.nav_bg{
		display: block;
	}
	.nav_bg.active{
		-webkit-transform: scale(40);
	}
	.menu_btn {
		display: block;
		background: #019b4b;
		color: transparent;
		top: 7.5px;
		border-radius: 50%;
		right: 10px;
		z-index: 20;
		box-shadow: 0px 0px 10px rgba(0, 0, 0, .3);
	}
	html {
	    overflow: auto;
	    position: relative;
	}
	
}
