

* {
	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;
}


.join-hzfc{
	background: #fff;
}
/* 去除iphone按钮默认样式代码 */
input[type=button],
input[type=submit],
input[type=file],
button {
	cursor: pointer;
	-webkit-appearance: none;
}

/* 通用外层 */
.boxes {
	position: relative;
	padding: 3vw;
	background: #fff;
	overflow: hidden;
}

.boxes.f {
	background: #f9f9f9;
}

.flex{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

/* 通用弹出层样式 */
.lightBox {
	width: 100%;
	height: 100%;
	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 p {
	margin-bottom: 15px;
}

.singePage.c {
	text-align: center;
}

/* 通用分页样式 */
#page {
	display: flex;
	text-align: center;
	margin-top: 3vw;
	width: 100%;
}

#page ul{
	display: flex;
	width: 100%;
	justify-content: center;
}

#page li.xl-prevPage,
#page li.xl-nextPage {
	display: none;
}

#page li {
	display: block;
	width: 45px;
	height: auto;
	cursor: pointer;
	color: #3e3e3e;
	font-size: 14px;
	line-height: 45px;
	text-align: center;
	margin: 0 6px;
	-webkit-appearance: none;
	-webkit-transition: all .4s;
	border-radius: 50px;
	background: #ededed;
	
}

.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 {
	background-color: #272322;

	color: #FFF
}

#page li:hover {
	background-color: #272322;

	color: #FFF
}

#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: #272322;
	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: #272322;
	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: #272322;
	-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 #272322;
	color: #272322;
	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: #272322;
	border-radius: 50%;
	color: #fff;
	line-height: 40px;
	text-align: center;
	font-size: 12px;
	-webkit-transition: all .4s;
}

.commonMore3:hover{
	background: #272322;
	color: #fff;
	border-color: #272322;
	box-shadow: 0px 0px 30px rgba(0,0,0,.1);
}

.commonMore3:hover .icon{
	background: #fff;
	color: #272322;
	
}

/* 通用回到顶部代码 */
.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(https://www.julekj.com/resources/assets/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: #272322;
}

.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: 500;
	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;
	-webkit-transition: all .5s;
}
.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(../image/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(../image/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;
}


#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;
    background: #3e3e3e center center no-repeat;
	background-size: cover;
    margin-top: 0px;
	padding: 300px 0px 100px;
	color: #fff;
	
}

.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: #0062ad;
}

.de_pate{
	background: #fff;
}
.detail_top .w100{
	width: 1200px;
	margin: 0px auto;
}

.ndc_npnews .post_next {
    direction: initial;
	text-align: right;
}
/*新闻 */
.news-cont{
margin-top: 35px;
}
.news-list{
/*margin-bottom: 40px;*/
padding:40px 20px;
box-sizing: border-box;
/*border-bottom: 1px solid #b7b7b7;*/
/*border：*/
}
.news-list:hover{
	background:#d02132;
	color: #fff !important;
}
.news-list:hover p{
	color: #fff !important;
}
.news-list:hover a{
	color: #fff !important;
}
.news-list:hover .mores{
    border: 1px solid #fff !important;
}
.news-list-l{
float: left;
width: 25%;
}
.news{
	padding:75px 0;
    background: url(../image/ppjss_03.png)
}
.art-title {
    text-align: center;
    border-bottom: 1px solid #dedede;
    padding: 20px 0;
}
.show-news{
	/*width: 1560px;*/
	margin:0 auto;
	margin-top: 20px;
	margin-bottom: 120px;
}
.arttime {
    text-align: center;
    padding: 10px 0;
    margin-bottom: 30px;
    font-size: 14px;
}
.nextprev {
    padding: 10px 0 30px 0;
    border-top: 1px solid #dedede;
    margin-top: 30px;
}
.nextprev a{
  font-size: 16px;
}
.contacct-map{
    padding:80px 0;
    background: url(../image/ppjss_03.png);
}
.contact-map-list{
    margin-top: 55px;
}
.contact-map-list div{
    width: 32%;
    float: left;
    display: inline-block;
    background: #f0f0f0;
    box-sizing: border-box;
    text-align: center;
    height: 250px;
}
.contact-map-list div img{
margin-top: 15px;
}
.contact-map-list div:nth-child(2){
    margin:0 2%;
  
}
.contact-form-div{
margin-top:50px;
}
.contact-form-div input{
    width: 48%;
    display: inline-block;
    padding:10px 20px;
    background: #f1f1f1;
    outline: none;
    color: #333333;
    font-size: 18px;
    border:none;
}
.info_next {
    float: right;
}

.info_prev {
    float: left;
}
.news-list-r1{
	float: left;
	width: 8%;
	box-sizing: border-box;
}
.news-list-r1 p:nth-child(1){
	font-size: 48px;
	color: #000000;
	line-height: 1;
	text-align: center;
}
.news-list-r1 p:nth-child(2){
	font-size: 14px;
	color: #606060;
	margin-top: 15px;
	text-align: center;
}

.news-list-r{
	float: left;
	width: 65%;
	box-sizing: border-box;
	padding-left: 40px;
	padding-right: 100px;
}

.pages {
    width: 100%;
    line-height: 30px;
    text-align: center;
    overflow: hidden;
    padding: 30px 0;
    margin-top: 60px;
    margin-bottom: 120px;
}

.pages a {
    padding: 4px 9px;
    /*background: #fff;*/
    border: #db1102 solid 1px;
    margin: 0 5px
}

.pages a.font,
.pages a:hover {
    color: #fff;
    background: #db1102;
    border: #db1102 solid 1px
}
.list-titles{
	text-align: center;
	font-size: 36px;
}
.news-list-r p:nth-child(1){
font-size: 24px;
color: #3a3a39;
}
.news-list-r p:nth-child(2){
	font-size: 18px;
	color: #707070;
	margin:20px 0;
}
.news-list-r p:nth-child(3){
	color: #707070;
	font-size: 18px;
}
.news-list-r .mores{
	display: inline-block;
	font-size: 14px;
	color: #7f7f7f;
	border:1px solid #7f7f7f;
	padding:10px 15px;
	margin-top: 10px;
	transition: all 0.5s
}
.news-list-r .mores:hover{
	display: inline-block;
	color: #fff;
	background: #7f7f7f;
	border:1px solid #7f7f7f;
}
#contacct-infos{
	width: 100%;
	box-sizing: border-box;
	background: #fff;
	/*padding:60px 0;*/
}
.clear{
	clear: both;
}
.contacct-infos{
/*  background:#fff url(../img/contacct_13.png)top/cover no-repeat;*/
/*  margin:60px 0;*/
}
.contact-lxfx-text-list:nth-child(3){
  margin:35px 0;
}
.contacct-infos-cont{
  border-top: 10px solid #019b4b;
  background:#fff;
  box-sizing: border-box;
  padding: 75px 80px 50px 80px;
}
.contacct-infos-text{
  width: 40%;
  float: left;
  box-sizing: border-box;
}
.contacct-infos-text .tities{

}
.contacct-infos-text .tities p:nth-child(1){
font-size: 24px;
color: #019b4b;
}
.contacct-infos-text .tities p:nth-child(2){
color: #606060;
font-size: 24px;
margin:15px 0;
}
.contacct-infos-text .tities p:nth-child(3) span{
width: 35px;
background: #019b4b;
height: 2px;
display: inline-block;
}
.contacct-infos-text .desc{
font-size: 16px;
color: #999999;
margin-top: 60px;
line-height:2.2;
}
.contacct-infos-form{
  width: 60%;
  float: left;
  box-sizing: border-box;
}
.contacct-infos-form .tities{
font-size: 24px;
    color: #019b4b;
margin-bottom: 40px;
}
.cont-input{
margin-bottom: 30px;
}
.index-tc{
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 99999999;
  background:#fff9ea;
  transition: all 0.5s;
  box-sizing: border-box;
  padding-top: 70px;
  top:0px;
  left:0px;
}

.cont-input p{
  color: #4d4d4d;
  font-size: 16px;  
}
.cont-input p i{
  font-size: 16px;
  color: #ff0000;
  font-style: normal;
}
.cont-input input::placeholder{
  font-size: 14px;
  color: #afafaf;
}
.cont-input input{
  border:none;
  border-bottom: 1px solid #d3d3d3;
  padding:10px 0;
  width: 100%;
}
.contacct-infos-btn{

}
.contacct-infos-btn button{
  width: 100%;
  padding:12px 0;
  text-align: center;
  background:#019b4b;
  cursor: pointer;
  outline: none;
  font-size: 18px;
  color: #ffffff;
  margin-top: 10px;
  border:none;
}
}
  
.index-news-list p:nth-child(3){
	/*margin-top: 50px;*/
	font-size: 14px;
	color: #515151;
}
.index-news-list p:nth-child(4){
margin-top: 50px;
margin-bottom: 30px;
}
.index-news-list p:nth-child(4) img{
	width: 100%;
}
.index-news-list .read-more{
	vertical-align: middle;
	width: 100%;
	margin-bottom: 30px;
  margin-top: 50px;
}

.index-news-list .read-more a{
	display: inline-block !important;
	width: auto !important;
	vertical-align: middle;
	text-transform: uppercase;
	margin-right: 10px;
	color: #727272;
	font-weight: bold;
}
.index-news-list .read-more img{
	width: 20px;
	display: inline-block;
}
/*è”ç³»æˆ‘ä»¬*/
.Franchise-advantages{
	padding:75px 0;
}
.Franchise-advantages-l{
	float: left;
	width: 30%;
	height: 330px;
}
.Franchise-advantages-r{
	width: 70%;
	height: 330px;
	box-sizing: border-box;padding-left: 30px;
	float: left;
}
.online-messages-cont{
	/*height: 350px;*/
}
.online-messages-cont-l{
float: left;
	width: 70%;
	height: 205px;
	box-sizing: border-box;padding-left: 30px;
}
.online-messages-cont{
	margin-top: 35px;
	margin-bottom: 100px;
}
.online-messages-cont-r input{
	display: inline-block;
	width: 100%;
	border:1px solid #a6a6a6;
	margin-bottom: 35px;
	box-sizing: border-box;padding:12px 16px;
}
.online-messages-cont-l textarea{
	width: 100%;height: 100%;
	box-sizing: border-box;
	padding:10px 20px;
	display: inline-block;
}
.online-messages-cont-r{
	width:30%;
	height: 205px;
	float: left;
}
@keyframes roateOne {
	from {
		transform: rotate(0);
	}

	to {
		transform: rotate(180deg);
	}
}




.st_fadeUp{
	-webkit-transition: all 1s ease 0.1s;
	-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;
}

@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;
	}
	
}
