@charset "UTF-8";
/* ========== 首页 start ========== */
/* ————— indexBanner start ————— */
.indexBannerBox{position: relative;overflow: hidden;}
.indexBannerBox::before{display: block;content: '';padding-top:47.91666%;}
.indexBanner{height: 100%;position: absolute;width: 100%;top: 0;left: 0;}
.scrollBottom{padding-left: 35px;line-height: 30px;height: 30px;font-size: 16px;color: #fff;background: url("/subsiteSrc/cnPc/images/scrollBg.png") no-repeat left center;font-family: 'Alibaba PuHuiTi 2.0 55';position: absolute;right: 120px;bottom: 50px;z-index: 2;cursor: pointer;animation: moveUp 3s linear infinite;-webkit-animation: moveUp 3s linear infinite;}
@keyframes moveUp{
  0%{
    bottom: 50px;
  }
  25%{
    bottom: 55px;
  }
  50%{
    bottom:50px;
  }
  75%{
    bottom: 45px;
  }
  100%{
    bottom: 50px;
  }
}
.bannerSwiper{height: 100%;width: 100%;}
.bannerSwiper .swiper-slide{text-align: center;font-size: 18px;background: #fff;overflow:hidden;}	
.slide-inner {position: absolute;width: 100%;height: 100%;left: 0;top: 0;background-size: cover;background-position: center;display: -webkit-box;display: -ms-flexbox;display: -webkit-flex;display: flex;-webkit-box-pack: center;-ms-flex-pack: center;-webkit-justify-content: center;justify-content: center;-webkit-box-align: center;-ms-flex-align: center;-webkit-align-items: center;align-items: center;color:#fff;}
.bannerSwiper .swiper-slide .video{width: 100%;height: 100%;object-fit: cover;}
.indexBannerArrow{position: absolute;width: 430px;height: 60px;left: 120px;bottom: 50px;z-index: 2;}
.indexBannerArrowL{float: left;display: inline;margin-right: 5px;}
.indexBannerPrev{float: left;display: inline;width: 56px;height: 56px;border-radius: 50%;border: 2px solid rgba(255, 255, 255, 0.6);background: url("/subsiteSrc/cnPc/images/indexBannerPrev.png") no-repeat center center;margin-right: 20px;cursor: pointer;transition: all 0.3s;-webkit-transition: all 0.3s;}
.indexBannerPrev:hover{background-color: rgba(255, 255, 255, 0.3);border-color: rgba(255, 255, 255, 0.3);}
.indexBannerArrowL .num{overflow: hidden;line-height: 60px;height: 60px;font-size: 24px;color: #ffffff;}
.indexBannerArrowR{float: right;display: inline;margin-left: 10px;}
.indexBannerNext{float: right;display: inline;width: 56px;height: 56px;border-radius: 50%;border: 2px solid rgba(255, 255, 255, 0.6);background: url("/subsiteSrc/cnPc/images/indexBannerNext.png") no-repeat center center;margin-left: 20px;cursor: pointer;transition: all 0.3s;-webkit-transition: all 0.3s;}
.indexBannerNext:hover{background-color: rgba(255, 255, 255, 0.3);border-color: rgba(255, 255, 255, 0.3);}
.indexBannerArrowR .count{overflow: hidden;line-height: 60px;height: 60px;font-size: 24px;color: #ffffff;}
.indexBannerArrow .line{overflow: hidden;position: relative;padding-top: 29px;}
.indexBannerArrow .line::before{display: block;content: ""; width: 100%;height: 1px;position: absolute;bottom: 0;background: rgba(255, 255, 255, 0.3);left: 0;}
.indexBannerArrow .line .lineBg{width: 0%;transition: all 0.3s;-webkit-transition: all 0.3s; height: 2px;background-color: #fff;position: absolute;left: 0;bottom: 0;}
.indexBanner .slideText{line-height: 75px;font-size: 48px;color: #ffffff;top: 30%;left: 120px;position: absolute;font-family: 'Alibaba PuHuiTi 2.0 85';z-index: 2;text-align: left;}
@keyframes quanquan{0%{transform:rotate(0deg);-webkit-transform:rotate(0deg);}25%{transform:rotate(90deg);-webkit-transform:rotate(90deg);}50%{transform:rotate(180deg);-webkit-transform:rotate(180deg);}75%{transform:rotate(270deg);-webkit-transform:rotate(270deg);}100%{transform:rotate(360deg);-webkit-transform:rotate(360deg);}}

.commonMore {
	height: 60px;
	border: 2px solid #e5e5e5;
	width: 160px;
	box-sizing: border-box;
	border-radius: 60px;
	position: relative;
	overflow: hidden;
	transition: .4s ease;
	-webkit-transition: .4s ease;
  text-align: center;
}

.commonMore:hover {
	border-color: #0075c2;
}

.commonMore::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #0075c2;
	z-index: -1;
	opacity: 0;
	-webkit-transform: scale3d(0.4, 1, 1);
	transform: scale3d(0.4, 1, 1);
	-webkit-transition: -webkit-transform 0.4s, opacity 0.4s;
	transition: transform 0.4s, opacity 0.4s;
	-webkit-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
	transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
}

.commonMore:hover::before {
	z-index: 1;
	opacity: 1;
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}

.commonMore a {
	display: block;
	position: relative;
	line-height: 56px;
	z-index: 5;
	font-size: 16px;
	color: #333333;
  font-family: 'Alibaba PuHuiTi 2.0 55';
	transition: all .2s ease-in;
	-webkit-transition: all .2s ease-in;
}

.commonMore:hover a {
	color: #fff;
}

.commonMore span{
  display: inline-block;
  padding-right: 29px;
	background: url(/subsiteSrc/cnPc/images/indexMore.png) right center no-repeat;
	transition: all .4s ease-out;
	-webkit-transition: all .4s ease-out;
}

.bannerElPage {
	position: absolute;
	bottom: 0;
	left: 6.25%;
	right: 6.25%;
	height: 7.5rem;
	background-position: center;
	background-repeat: no-repeat;
	z-index: 20;
	display: flex;
}
.bannerElPage .title {
	width: 12.81190%;
	background-position: center;
	background-repeat: no-repeat;
	height: 4.385rem;
	line-height: 4.385rem;
	background-image: url(/subsiteSrc/cnPc/images/icon/ms.png);
	background-size: cover;
	box-sizing: border-box;
	font-size: 1.25rem;
	color: #666;
	padding: 0 0 0 4.375rem;
	position: absolute;
	left: 0;
	bottom: 0;
}
.newsBannerBg {
	flex: 1;
	overflow: hidden;
	position: absolute;
	height: 4.385rem;
	left: 12.81190%;
	right: 4.75rem;
	bottom: 0;
	padding: 0 4.75rem;
	background-color: rgba(0, 0, 0, .2);
	  backdrop-filter: blur(5px); 
  -webkit-backdrop-filter: blur(5px); 
}
.bannerElPage .inBannerPage {
	width: 4.75rem;
	height: 4.385rem;
	background-color: #fff;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	position: absolute;
	right: 0;
	bottom: 0;
}
.bannerElPage .inBannerPage div {
	cursor: pointer;
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100% auto;
	width: 1.2rem;
	height: 1.2rem;
	z-index: 20;
}
.bannerElPage .inBannerPage .prev {
	background-image: url(/subsiteSrc/cnPc/images/icon/up.png);
}
.bannerElPage .inBannerPage .next {
	background-image: url(/subsiteSrc/cnPc/images/icon/down.png);	
}
.newsBanner {
	overflow: hidden;
	height: 100%;
}
.newsBanner dl {
	display: flex;
	align-items: center;
	column-gap: 10.3174%;
	justify-content: space-between;
}
.newsBanner dd {
	flex: 1;
}
.newsBanner .con {
	display: flex;
	align-items: center;
	color: #fff;
	font-size: 1.125rem;
	height: 4.75rem;
	line-height: 4.75rem;
	column-gap: 2rem;
	transform: .3s;
}
.newsBanner .con:hover .post {
	color: var(--themeColor);
}
.newsBanner .con:hover .post::before {
	background-color: var(--themeColor);	
}
.newsBanner .con .post {
	flex: 1;
	padding-left: 1.25rem;
	position: relative;
}
.newsBanner .con .post::before {
	content: "";
	position: absolute;
	left: 0;	
	top: 50%;
	width: .5rem;
	height: .5rem;
	border-radius: 50%;
	background-color: #fff;
	margin-top: -.25rem;
}
.newsBanner .con .time {
	font-size: 1rem;
	text-wrap: nowrap;
}
.indexBannerBox .swiper-pagination {
	width: auto !important;
	left: 50%;
	transform: translateX(-50%);
	bottom: 5rem;
}
.indexBannerBox .swiper-pagination .swiper-pagination-bullet {
	width: 1rem;
	height: 1.25rem;
	margin: 0 .6rem;
	opacity: 1;
	background: url(/subsiteSrc/cnPc/images/icon/dm.png) center center no-repeat;
}
.indexBannerBox .swiper-pagination .swiper-pagination-bullet-active {
	background: url(/subsiteSrc/cnPc/images/icon/dmh.png) center center no-repeat;
}
.inBannerElNum {
	position: absolute;
	bottom: 6.25rem;
	left: 0;
	font-size: 2rem;
	color: #fff;
	z-index: 20;
}


.inBannerElNum .total-page {
    font-size: 1rem;
}
/* ————— indexBanner end ————— */
/* ========== 首页 start ========== */




/* ========== 留言 start ========== */
.messagePage{ background: #FFF; padding:20px}
.messageBox{ padding:20px;}
.messageTitle{position: relative;padding-left: 20px;margin-bottom: 20px; height: 50px; line-height: 50px; border-bottom: 1px solid #ddd;}
.messageTitle::before{width: 4px;height: 26px;background: var(--themeColor);display: block;content: '';position: absolute;top: 50%;left: 0;margin-top: -13px;}
.messageTitle .conL{ float: left; display: inline; font-size: 24px;color: #000000;}
.messageTitle .conR{ float: right; display: inline;}
.messageTitle .conR a{ color:var(--themeColor); font-size: 14px;}
.messageTitle .conR a:hover{ color: var(--themeColor);}
/* 留言展示列表start */
.messageList dd{padding-bottom: 20px;margin-bottom: 30px;background: #FFF;padding: 20px; border-radius: 5px;border: 1px solid #f5f5f5;box-shadow: 0px 0px 4px rgb(0 0 0 / 3%);}
.messageList dd:last-child{ border-bottom: none; margin-bottom: 0;}
.msgHead{ overflow: hidden; height: 40px; line-height: 40px; font-size: 14px;}
.msgHeadL{float: left; display: inline; color: #333;}
.msgHeadL span{ font-size:14px}
.msgHeadR{float: right; display: inline; font-size: 12px; color: #999; padding-left: 20px; background: url(/subsiteSrc/cnPc/images/common/timeIco.png) no-repeat left center / auto 15px;}
.msgText{line-height: 25px;color: #666;font-size: 12px;margin-bottom: 5px;}
.msgReplay{line-height: 25px;color: #666;font-size: 12px;background: #f9f9f9;padding: 10px; border-radius: 5px;}
.msgReplay span{ color: var(--themeColor); font-size: 14px;}
/* 留言展示列表end */
/* 留言表单start */
.messageForm{ margin-right: -40px; font-size: 14px;}
.messageForm:after{ clear:both; content: ''; visibility: hidden; display: block;}
.messageForm .item{ width: 50%; float: left; display: inline; margin-bottom: 15px;}
.messageForm .item.w100p{ width: 100%;}
.messageForm .item .con{ margin-right: 40px;}
.messageForm .item .label{ height: 38px; line-height: 38px;}
.messageForm .item .label span{ color: #da0100;}
.messageForm .item .itemC{ clear: both; min-height: 40px;}
/* 留言表单end */

/* ********************首页 start**************** */
/* 公共部分 start */
.indexTitle {
	color: #fff;
}
.indexTitle .titleCn {
	font-size: 2rem;
	line-height: 3rem;
}
.indexTitle .titleNg {
	font-size: 1.5rem;
	line-height: 2rem;
	color: #dedede;
	text-transform: uppercase;
}
.indexFlex {
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.indexMore {
	display: flex;
}
.indexMore a {
	display: flex;
	height: 3.25rem;
	line-height: 3.25rem;
	align-items: center;
	justify-content: space-between;
	border-radius: 3.25rem;
	background-color: #fff;
	font-size: 1rem;
	color: #999;
	transition: .3s;
}
.indexMore a span {
	padding: 0 1.85rem;
}
.indexMore a em {
	width: 3.25rem;
	height: 3.25rem;
	border-radius: 100%;
	background-color: var(--themeColor);
	display: flex;
	align-items: center;
	justify-content: center;
}
.indexMore a:hover i {
	transform: rotate(-30deg);
}
.indexMore a:hover {
	color: var(--themeColor);
}
.indexMore a i {
	width: 100%;
	height: 100%;
	background: url(/subsiteSrc/cnPc/images/icon/more.png) no-repeat center center;
	transition: .3s;
}
.djMore span {
	display: inline-block;
	height: 1.75rem;
	line-height: 1.75rem;
	font-size: 1rem;
	color: #fff;
	padding-right: 2.5rem;
	background-position: center right;
	background-repeat: no-repeat;
	background-image: url(/subsiteSrc/cnPc/images/icon/djmore.png);
}
/* 公共部分 end */
/* 第一栏 start */
.indexC1 {
	height: 100%;
	padding-top: 2rem;
}
.indexC1 .videoText {
	display: flex;
	column-gap: 15.47619%;
}
.indexC1 .videoText .text {
	flex: 1;
	padding-top: 10rem;
}
.indexC1 .videoText .text .title {
	font-size: 2rem;
	color: #fff;
	line-height: 3rem;
}
.indexC1 .videoText .textC {
	font-size: 1rem;
	line-height: 1.875rem;
	height: 9.375rem;
	color: #f2f2f2;
	margin: 2rem 0 3rem;
}
.indexC1 .numTdDl {
	display: flex;
	margin-top: 7.5rem;
	color: #fff;
}
.indexC1 .numTdDl dd {
	flex: 1;
	text-align: center;
}
.indexC1 .numTdDl dd:first-child {
	text-align: left;
}
.indexC1 .numTdDl dd:nth-child(2) .con {
	border-left: 1px solid rgba(255, 255, 255, 0.3);
	border-right: 1px solid rgba(255, 255, 255, 0.3);
}
.indexC1 .numTdDl .post span {
	display: inline-block;
	padding-left: 1.5rem;
	position: relative;
	height: 1.375rem;
	line-height: 1.375rem;
	font-size: 1.125rem;
	color: #fff;
	position: relative;
}
.indexC1 .numTdDl .post span::after {
	content: "";
	display: block;
	position: absolute;
	width: 1.25rem;
	height: 1.25rem;
	background: url(/subsiteSrc/cnPc/images/icon/ls.png) no-repeat center center;
	left: 0;
	top: 50%;
	margin-top: -0.625rem;
}
.indexC1 .numTdDl .con {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.indexC1 .numTdDl .number {
	display: flex;
	margin-top: .5rem;
}
.indexC1 .numTdDl .number span {
	font-size: 1rem;
	line-height: 1.5rem;
	color: #fff;
	margin-left: .3rem;
}
.indexC1 .numTdDl .num {
	font-size: 3.5rem;
	line-height: 4.25rem;
}
.indexC1 .videoText .vidoBox {
	width: 32.5rem;
	height: 32.5rem;
	border: 6px solid #fff;
	border-radius: 50%;
	position: relative;
	box-sizing: border-box;
}
@-webkit-keyframes circle-opacity1 {
	from {
		opacity: 1;
		-webkit-transform: scale(1);
	}

	to {
		opacity: 0;
		-webkit-transform: scale(1.2);
	}
}

@keyframes circle-opacity1 {
	from {
		opacity: 1;
		transform: scale(1);
	}

	to {
		opacity: 0;
		transform: scale(1.2);
	}
}
.indexC1 .videoText .vidoBox::before {
	content: '';
	display: block;
	position: absolute;
	width: 38.125rem;
	height: 38.125rem;
	border-radius: 100%;
	left: 50%;
	top: 50%;
	margin-left: -19.0625rem;
	margin-top: -19.0625rem;
	background-color: rgba(255, 255, 255, .3);
	animation: circle-opacity1 4s infinite linear;
	animation-delay: 2s;
}

.indexC1 .videoText .vidoBox::after {
	content: '';
	display: block;
	position: absolute;
	width: 38.125rem;
	height: 38.125rem;
	border-radius: 100%;
	left: 50%;
	top: 50%;
	margin-left: -19.0625rem;
	margin-top: -19.0625rem;
	background-color: rgba(255, 255, 255, .5);
	animation: circle-opacity1 4s linear infinite;
}
.indexC1 .videoText .pic::before{
	padding-top: 100%;
}
.indexC1 .videoText .vido {
	width: 100%;
	height: 100%;
	overflow: hidden;
	border-radius: 50%;
	position: relative;
	z-index: 1;
	cursor: pointer;
}
.indexC1 .videoText .pic::after {
	content: '';
	display: block;
	position: absolute;	
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, .3);
	left: 0;
	top: 0;
	z-index: 1
}
.inPlayVido {
	width: 3.125rem;
	height: 3.125rem;
	border-radius: 100%;
	background: rgba(0, 0, 0, .5) url(../images/icon/playVideo.png) no-repeat center center;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	z-index: 2;
}
/* 第一栏  end */
/* 第二栏 start */
.indexC2  {
	padding-top: 8.75rem;
	height: 100%;
	overflow: hidden;
}
.indexC2 .titleMore {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.indexC2 .wrap {
	height: 100%;
}
.indexC2 .indexFlex {
	height: 100%;
}
.indexC2 .main {
	height: 100%;
	overflow: hidden;
	display: flex;
	background-color: rgba(0, 0, 0, .2);
	 backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
	margin-top: 2rem;
	position: relative;
	box-sizing: border-box;
}
.inc2SwiperDlBox {
	width: 25.5952%;
	border-left: 1px solid rgba(255, 255, 255, 0.1);
	border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.inc2SwiperDlBox .inc2DlSwiper {
	overflow: hidden;
	position: relative;
}
.inc2DlSwiper .con {
	display: block;
}
.inc2DlSwiper .pic::before{
	padding-top: 55.81395%;
}
.inc2DlSwiper .pic .tip {
	position: absolute;
	left: 0;
	bottom: 0;
	height: 3.25rem;
	line-height: 3.25rem;
	padding: 0 1.25rem;
	background-color: rgba(0, 0, 0,.5);
	font-size: 1.125rem;
	color: #fff;
	width: 100%;
}
.inc2DlSwiper .pic .tip span {
	display: block;
}
.inc2DlSwiper .pic .tig {
	position: absolute;
	left: 0;
	top: 0;
	height: 2.625rem;
	line-height: 2.625rem;
	padding: 0 2rem;
	font-size: 1rem;
	color: #804000;
	background: linear-gradient(to right, #f7deaa, #d79c64);
}
.inc2Dl {
	margin: 1.25rem 0 1.875rem;
}
.inc2Dl dd {
	margin-bottom: 1.25rem;
}
.inc2Dl .con {
	display: block;
	color: #fff;
	padding: 0 1.25rem;
	font-size: 1rem;
	line-height: 2rem;
}
.inc2Dl .con .title {
	height: 2rem;
}
.inc2Swiper {
	overflow: hidden;
	flex: 1;
	position: relative;
}
.inc2Vido {
	padding: 0 3rem 3rem;
	cursor: pointer;
}
.inc2Vido .pic::before{
	padding-top: 56.25%;
}
.inPlayVido1 {
	width: 3.125rem;
	height: 3.125rem;
	border-radius: 100%;
	border: 1px solid #fff;
	background: rgba(0, 0, 0,.5) url(../images/icon/playVideo.png) no-repeat center center;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	z-index: 2;
}
.inc2Swiper {
	padding-bottom: 2.5rem;
}
.inc2Swiper .con {
	display: block;
	color: #fff;
}
.inc2Swiper .pic::before{
	padding-top: 57.317%;	
}
.inc2Swiper .pic .tig {
	position: absolute;
	left: 0;
	top: 0;	
	height: 2.625rem;
	line-height: 2.625rem;
	padding: 0 2rem;
	font-size: 1rem;
	color: #804000;
	background: linear-gradient(to right, #f7deaa, #d79c64);
	
}
.inc2Swiper .text {
	padding: 2rem 4.6875rem 0;
	text-align: center;
}
.inc2Swiper .text .title {
	font-size: 1.5rem;
	line-height: 2.5rem;
	height: 2.5rem;	
}
.inc2Swiper .text .time {
	font-size: 1rem;
	line-height: 1.5rem;
	height: 1.5rem;
}
.inc2Swiper .textC {
	font-size: 1rem;
	line-height: 1.875rem;
	height: 3.75rem;
	margin-top: 1rem;	
}
.inc2Swiper .swiper-pagination {
	bottom: 3rem !important;
}
.inc2Swiper .swiper-pagination-bullet {
	width: 10px;
	height: 10px;
	background: rgba(255, 255, 255, .5);
	opacity: 1;
	margin: 0 4px;
}
.inc2Swiper .swiper-pagination-bullet-active {
	background: #fff;
}
/* 第二栏 end */
/* 第三栏 start */
.indexC3 {
	position: relative;
	height: 100%;
}
.indexC3 .wrap1 {
	position: relative;
	height: 100%;
}
.titleTabPage{
	margin-top: 12.75rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: relative;
	z-index: 20;
}
.inc3TitleTab {
	display: flex;
	align-items: center;
	column-gap: 5.6rem;
}
.inc3TitleTab .inc3Tab {
	display: flex;
	align-items: center;
	column-gap: 2rem;
}
.inc3TitleTab .inc3Tab a {
	height: 3.375rem;
	line-height: 3.375rem;
	font-size: 1rem;
	color: #666;
	padding: 0 2.5rem;
	border-radius: 3.375rem;
	background-color: #fff;
}
.inc3TitleTab .inc3Tab a.hover {
	color: #fff;
	background-color: var(--themeColor);
}
.pageBt {
	display: flex;
	align-items: center;
	column-gap: 1rem;
}
.pageBt div {
	width: 3rem;
	height: 3rem;
	border-radius: 100%;
	background-color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: .3s;
}
.pageBt span {
    display: block;
    width: 100%;
    height: 100%;
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: 2rem;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-size: 2rem;
    /* 必须添加 background-color 才能让 mask 区域可见 */
    background-color: var(--themeColor);
    transition: background-color 0.3s, border-color 0.3s;
}
.pageBt .prev span {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1024 1024'%3E%3Cpath fill='currentColor' d='M671 809c-5 0-10-2-15-6L369 510c-8-8-8-21 0-29L656 188c8-8 21-8 29 0 8 8 8 21 0 29L412 496l274 279c8 8 8 21 0 29-4 4-9 5-14 5z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1024 1024'%3E%3Cpath fill='currentColor' d='M671 809c-5 0-10-2-15-6L369 510c-8-8-8-21 0-29L656 188c8-8 21-8 29 0 8 8 8 21 0 29L412 496l274 279c8 8 8 21 0 29-4 4-9 5-14 5z'/%3E%3C/svg%3E");
}
.pageBt .prev:hover span {
    background-color: #fff;
}
.pageBt .prev:hover {
	background-color: var(--themeColor);
}
.pageBt .next span {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1024 1024'%3E%3Cpath fill='black' d='M383.291616 808.954249c-5.175883 0-10.353812-1.950422-14.338566-5.862521-8.064676-7.919367-8.182356-20.877493-0.26299-28.942169l273.602402-278.620695L368.69006 216.907145c-7.919367-8.064676-7.801686-21.022803 0.26299-28.942169 8.065699-7.918343 21.022803-7.80271 28.942169 0.26299l287.685141 292.960285c7.818059 7.961322 7.818059 20.717857 0 28.67918L397.895219 802.826692C393.887952 806.907637 388.591319 808.954249 383.291616 808.954249z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1024 1024'%3E%3Cpath fill='black' d='M383.291616 808.954249c-5.175883 0-10.353812-1.950422-14.338566-5.862521-8.064676-7.919367-8.182356-20.877493-0.26299-28.942169l273.602402-278.620695L368.69006 216.907145c-7.919367-8.064676-7.801686-21.022803 0.26299-28.942169 8.065699-7.918343 21.022803-7.80271 28.942169 0.26299l287.685141 292.960285c7.818059 7.961322 7.818059 20.717857 0 28.67918L397.895219 802.826692C393.887952 806.907637 388.591319 808.954249 383.291616 808.954249z'/%3E%3C/svg%3E");
}
.pageBt .next:hover span {
    background-color: #fff;
}
.pageBt .next:hover {
	background-color: var(--themeColor);
}
.inc3swiperBg {
	position: absolute !important;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	overflow: hidden;
}
.inc3Swiper {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	bottom: 0;
	overflow: hidden;
}
.inc3Swiper .con {
	display: flex;
	height: 100%;
	flex-direction: column;
	justify-content: flex-end;
	padding: 0 2rem;
	color: #fff;
	border-right: 1px solid rgba(255, 255, 255, 0.3);
	transform: .3s;
}
.inc3Swiper .con .time {
	display: flex;
	column-gap: 1rem;
}
.inc3Swiper .con .time .day {
	font-size: 3rem;
	line-height: 3rem;
}
.inc3Swiper .con .time .year {
	font-size: 1rem;
	line-height: 4.5rem;
}
.inc3Swiper .con:nth-child(4n) {
    border-right: 1px solid transparent !important;
}
.inc3Swiper .con .title {
	font-size: 1.125rem;
	line-height: 1.875rem;
	height: 3.75rem;
}
.inc3Swiper .con .textC {
	margin: 1.75rem 0 2rem;
	font-size: 1rem;
	line-height: 1.875rem;
	height: 3.75rem;
}
.inc3Swiper .con .pic::before{
	padding-top: 61.7647%;
}
.inc3Swiper .con .pic {
	margin-bottom: 3.75rem;
}
.inc3Swiper .djMore {
	opacity: 0;
	margin-bottom: 6.25rem;
}
.inc3Swiper .con:hover {
	background-color: rgba(0, 0, 0,.2);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}
.inc3Swiper .con:hover .djMore {
	opacity: 1;
}
/* 第三栏 end */
/* 第四栏 start */
.indexC4 {
	padding-top: 12.75rem;
	height: 100%;
}
.indexC4 .main {
	width: 61.9047%;
}
.indexC4 .titleMore {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.inc4Dl {
	margin-top: 7.5rem;
	background-color: rgba(0, 0, 0, .2);
	backdrop-filter: blur(5px); 
  -webkit-backdrop-filter: blur(5px); 
}
.inc4Dl .con {
	padding: 3rem 3rem 3rem 1.5rem;
	position: relative;
	border-top: 1px solid rgba(255, 255, 255, .3);
	color: #fff;
}
.inc4Dl .con::before {
	display: block;
	content: "";
	height: 2px;
	background-color: var(--themeColor);
	width: 3rem;
	position: absolute;
	left: 0;
	top: -1px;
	transition: .3s;
}
.inc4Dl .con .titleIcon {
	display: flex;
	justify-content: space-between;
	align-items: center;
	column-gap: 2rem;
	cursor: pointer;
}
.inc4Dl .con .title {
	flex: 1;
	display: flex;
	align-items: center;
	column-gap: 1.25rem;
}
.inc4Dl .con .title span {
	position: relative;
	font-size: 1.5rem;
	height: 1.5rem;
	line-height: 1.5rem;
	font-weight: bold;
}
.inc4Dl .con .title span::before {
	display: block;
	content: "";
	width: 1.5rem;
	height: 1.5rem;
	border-radius: 100%;
	background-color: rgba(203, 175, 96, .3);
	position: absolute;
	right: -.3rem;
	top: 0;
}
.inc4Dl .con .title em {
	font-size: 1.5rem;
	flex: 1;
	font-style: normal;
}
.inc4Dl .con .icon {
	width: .75rem;
	height: .75rem;
	border-radius: 100%;
	background-color: #fff;
	position: relative;
}
.inc4Dl .con .icon::before {
	display: block;
	content: "";
	width: 3rem;
	height: 3rem;
	border-radius: 100%;
	background-color: rgba(255, 255, 255, .3);
	position: absolute;
	left: 50%;
	top: 50%;
	margin-top: -1.5rem;
	left: -1.15rem;
	animation: circle-opacity1 4s infinite linear;
    animation-delay: 2s;
}
.inc4Dl .con .icon::after{
	display: block;
	content: "";
	width: 3rem;
	height: 3rem;
	border-radius: 100%;
	background-color: rgba(255, 255, 255, .1);
	position: absolute;
	left: 50%;
	top: 50%;
	margin-top: -1.5rem;
	left: -1.15rem;
	animation: circle-opacity1 3s infinite linear;
}
.inc4Dl .con .text {
	margin: 0 0;
	font-size: 1rem;
	line-height: 0;
	height: 0;
	width: 69.3877%;
}
.inc4Dl .con .iconImg {
	position: absolute;
	top: 50%;
	right: 2rem;
	transform: translateY(-50%);
	opacity: 0;
	display: none;
}
.inc4Dl .con .img {
	width: 11.25rem;
	height: 11.25rem;
	border-radius: 100%;
	overflow: hidden;
	border: 1px solid #fff;
}
.inc4Dl .con img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.indexMore2 {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 3rem;
	height: 3rem;
	border-radius: 100%;
	background-color: var(--themeColor);
	transition: .3s;
	position: absolute;
	right: -1.5rem;
	top: 50%;
	transform: translateY(-50%);
	z-index: 1;
}
.indexMore2 span {
	display: block;
	width: 100%;
	height: 100%;
	background-position: center;
	background-repeat: no-repeat;
	background-size: 1rem;
	background-image: url(/subsiteSrc/cnPc/images/icon/more.png);
	transition: .3s;

}
.indexMore2:hover span {
	transform: rotate(-30deg);
}
.inc4Dl .con.active .icon {
	display: none;
}
.inc4Dl .con.active .text {
	margin: 2rem 0;
	line-height: 1.875rem;
	height: 3.75rem;
}
.inc4Dl .con.active::before {
	width: 100%;
}
.inc4Dl .con.active .iconImg {
	opacity: 1;
	display: block;
}
/* 第四栏 end */
/* 第五栏 start */
.indexC5 {
	padding-top: 7.5rem;
	height: 100%;
}
.inc5TitleTabMore {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.inc5TitleTab {
	display: flex;
	align-items: center;
	column-gap: 5rem;
}
.inc5TitleTabMore .inc5Tab {
	display: flex;
	align-items: center;
	column-gap: 2rem;
}
.inc5Tab a {
	height: 3.375rem;
	line-height: 3.375rem;
	border-radius: 3.375rem;
	padding: 0 2.5rem;
	font-size: 1rem;
	color: #666;
	transition: .3s;
	background-color: #fff;
}
.inc5Tab a.hover {
	background-color: var(--themeColor);
	color: #fff;
}
.inc5Swiper {
	position: relative;
	overflow: hidden;
	margin: 4rem 0 0;
	padding-bottom: 4rem;
}
.inc5Swiper .con {
	display: block;
	background-color: rgba(0, 0, 0, .2);
	backdrop-filter: blur(5px); 
  -webkit-backdrop-filter: blur(5px);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .3);
}
.inc5Swiper .con .text {
	padding: 1.875rem;
}
.inc5Swiper .con .title {
	font-size: 1.125rem;
	line-height: 1.875rem;
	height: 3.75rem;
	margin-bottom: 1.87rem;
}
.inc5Swiper .con  .timeMore {
	padding-top: 1.875rem;
	border-top: 1px solid rgba(255, 255, 255, .3);
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.inc5Swiper .con  .time {
	font-size: 1rem;
	line-height: 2.4rem;
}
.inc5Swiper .con .more {
	height: 2.4rem;
	width: 2.4rem;
	border: 1px solid #fff;
	background-position: center;
	background-repeat: no-repeat;
	background-image: url(/subsiteSrc/cnPc/images/icon/more.png);
	border-radius: 100%;
}
.inc5Swiper .con:hover .more {
	background-color: var(--themeColor);
	border: 1px solid var(--themeColor);
}
.pageBt.pageBt2 {
	position: relative;
	display: flex;
	justify-content: center;
	margin-top: 4rem;
}
.pageBt.pageBt2::before {
	display: block;
	content: "";
	width: 45%;
	height: 1px;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	background-color: rgba(255, 255, 255, .5);
	position: absolute;
}
.pageBt.pageBt2::after {
	display: block;
	content: "";
	width: 45%;
	height: 1px;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	background-color: rgba(255, 255, 255, .5);
	position: absolute;
}
/* 第五栏 end */
/* ********************首页 end**************** */


/* 党建首页 start */
/* 公共部分 start */
.djTitle1 {
	text-align: center;
	display: flex;
	justify-content: center;
}
.djTitle1 .djTitleC {
	width: 60rem;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}
.djTitle1 .djTitleC::before {
	display: block;
	content: "";
	width: 21.875rem;
	height: 2rem;
	background-repeat: no-repeat;
	background-position: center;
	background-image: url(/subsiteSrc/cnPc/images/icon/djright.png);
	position: absolute;
	left: 0;
	top: 57%;
}
.djTitle1 .djTitleC::after {
	display: block;
	content: "";
	width: 21.875rem;
	height: 2rem;
	background-repeat: no-repeat;
	background-position: center;
	background-image: url(/subsiteSrc/cnPc/images/icon/djleft.png);
	position: absolute;
	right: 0;
	top: 57%;
}
.djTitle1 .djTitleC span {
	display: flex;
	padding: 4.375rem 0 1.25rem;
	position: relative;
}
.djTitle1 .djTitleC span::before {
	display: block;
	content: "";
	width: 5rem;
	height: 5rem;
	background-repeat: no-repeat;
	background-position: center;
	background-size: 4.5rem;
	background-image: url(/subsiteSrc/cnPc/images/icon/gz.png);
	position: absolute;
	right: 0;
	top: 0;
}
.djTitle1 .djTitleC span::after {
	display: block;
	content: "";
	width: 100%;
	height: 2rem;
	background-repeat: no-repeat;
	background-position: center;
	background-image: url(/subsiteSrc/cnPc/images/icon/djj.png);
	background-size: 100%;
	position: absolute;
	left: 0;
	bottom: 0;
}
.djTitle1 .djTitleC span i {
	font-size: 3rem;
	color: #c60903;
	font-family: 'SJxingkai-C';
}
.djTitle1 .djTitleC span em {
	font-size: 2.625rem;
	color: #333;
	font-family: 'SourceHanSerifCN-SemiBold';
}




.djTitle2 {
	text-align: center;
	display: flex;
	justify-content: center;
}
.djTitle2 .djTitleC {
	width: 60rem;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}
.djTitle2 .djTitleC::before {
	display: block;
	content: "";
	width: 21.875rem;
	height: 2rem;
	background-repeat: no-repeat;
	background-position: center;
	background-image: url(/subsiteSrc/cnPc/images/icon/djright2.png);
	position: absolute;
	left: 0;
	top: 57%;
}
.djTitle2 .djTitleC::after {
	display: block;
	content: "";
	width: 21.875rem;
	height: 2rem;
	background-repeat: no-repeat;
	background-position: center;
	background-image: url(/subsiteSrc/cnPc/images/icon/djleft2.png);
	position: absolute;
	right: 0;
	top: 57%;
}
.djTitle2 .djTitleC span {
	display: flex;
	padding: 4.375rem 0 1.25rem;
	position: relative;
}
.djTitle2 .djTitleC span::before {
	display: block;
	content: "";
	width: 5rem;
	height: 5rem;
	background-repeat: no-repeat;
	background-position: center;
	background-size: 4.5rem;
	background-image: url(/subsiteSrc/cnPc/images/icon/gz2.png);
	position: absolute;
	right: 0;
	top: 0;
}
.djTitle2 .djTitleC span::after {
	display: block;
	content: "";
	width: 100%;
	height: 2rem;
	background-repeat: no-repeat;
	background-position: center;
	background-image: url(/subsiteSrc/cnPc/images/icon/djj2.png);
	background-size: 100%;
	position: absolute;
	left: 0;
	bottom: 0;
}
.djTitle2 .djTitleC span i {
	font-size: 3rem;
	color: #fff0b2;
	font-family: 'SJxingkai-C';
}
.djTitle2 .djTitleC span em {
	font-size: 2.625rem;
	color: #fff0b2;
	font-family: 'SourceHanSerifCN-SemiBold';
}
/* 公共部分 end */
/* 第一栏 start */
.djIndexC1 {
	padding: 2rem 0 6rem;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}
.djC1SwiperDl {
	display: flex;
	margin: 3rem 0 0;
}
.djC1Swiper {
	width: 68.0555%;
	position: relative;
	overflow: hidden;
}
.djC1Dl {
	flex: 1;
}
.djC1Swiper .con {
	display: block;
}
.djC1Swiper .img {
	height: 34.375rem;
	position: relative;
}
.djC1Swiper img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.djC1Swiper .tip {
	height: 3.75rem;
	line-height: 3.75rem;
	background-color: rgba(0, 0, 0,.4);
	padding: 0 2rem;
	color: #fff;
	font-size: 1.5rem;
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
}
.djC1Swiper .tip span {
	display: block;
	width: 60%;
}
.djC1Swiper .swiper-pagination.newsEl {
	bottom: 1.2rem !important;
}
.djC1Dl {
	box-shadow: 0 0 1rem rgba(0, 0, 0,.1);
	display: flex;
	flex-direction: column;
}
.djC1Dl dd {
	padding: 0 2rem;
	flex: 1;
	position: relative;
	z-index: 20;
	width: 100%;
	box-sizing: border-box;
	left: 0;
	transition:.3s;

}
.djC1Dl .con {
	display: block;
	padding: 1.125rem 0 .5rem;
	border-bottom: 1px solid #ededed;
	transition: .3s;
	position: relative;
	z-index: 1;
}
.djC1Dl .con  .title {
	font-size: 1.125rem;
	line-height: 2rem;
	height: 2rem;
	color: #666;
}
.djC1Dl .con .time {
	font-size: 1rem;
	line-height: 2rem;
	color: #999;
}
.djC1Dl dd:hover {
	background: linear-gradient(to right, #be010a,#ea9c42);
	transform: translateX(-2rem);
	width: calc(100% + 2rem);

}
.djC1Dl dd:hover .con {
	border-bottom: 1px solid transparent;
}
.djC1Dl .con:hover .title {
	color: #fff;
}
.djC1Dl .con:hover .time {
	color: #fff;	
}
/* 第一栏 end */
/* 第二栏 start */
.djIndexC2 {
	padding: 110px 0 130px;
	position: relative;
	height: 960px;
	box-sizing: border-box;
	background-color: #fff9f0;
}
.djIndexC2::before {
	display: block;
	content: "";
	width: 100%;	
	height: 100%;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 1;
	background-image: url(/subsiteSrc/cnPc/test/images/djbg2.png);
}
.djIndexC2 .wrap {	
	position: relative;
	z-index: 2;
}
.indexMore.djInMore i {

	background: linear-gradient(to right,#c10b0e,#e89640);
	border-radius: 100%;
	position: relative;
	z-index: 2;
}
.indexMore.djInMore i::before{
	display: block;
	content: "";
	width: 100%;
	height: 100%;
	border-radius: 100%;
	background:  url(/subsiteSrc/cnPc/images/icon/more.png) no-repeat center center;
}
.djC2Dl {
	margin: 40px -30px 0 0; 
	display: flex;
	flex-wrap: wrap;
}
.djC2Dl dd {
	width: 33.333%;
	margin-bottom: 30px;
}
.djC2Dl .con {
	display: block;
	border-radius: 0 2rem 0 2rem;
	background-color: #fff;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	padding: 2rem;
	margin-right: 30px;
	position: relative;
	transition: .3s;
}
.djC2Dl .con .time {
	font-size: 1rem;
	line-height: 2rem;
	color: #be010a;
}
.djC2Dl .con .title {
	font-size: 1.125rem;
	line-height: 2rem;
	height: 4rem;
	color: #333;
}
.djC2Dl .con .djIcon {
	display: flex;
	align-items: center;
	margin: 1rem 0 0;
}
.djC2Dl .con .djIcon em {
	width: 8px;
	height: 8px;
	border-radius: 100%;
	background-color: #cbaf60;
}
.djC2Dl .con .djIcon .line {
	flex: 1;
	height: 1px;
	background-color: #f5efdf;
}
.djC2Dl .con .djIcon span {
	width: 38px;
	height: 38px;
	border-radius: 100%;
	border: 2px solid #efe7cf;
	background-repeat: no-repeat;
	background-position: center;
	margin-left: 10px;
	background-image: url(/subsiteSrc/cnPc/images/icon/jt1.png);
}
.djC2Dl .con:hover {
	background-image: url(/subsiteSrc/cnPc/test/images/djahover.png);
	background-color: transparent;
}
.djC2Dl .con:hover .time {
	color: #fff;
}
.djC2Dl .con:hover .title {
	color: #fff;
}
.djC2Dl .con:hover .djIcon em {
	background-color: #fff;
}
.djC2Dl .con:hover .djIcon span {
	background-image: url(/subsiteSrc/cnPc/images/icon/jt2.png);	
}

/* 第三栏 start */
.djIndexC3 {
	padding: 20px 0 100px;
	position: relative;
	background-color: #fff9f1;
}
.djC3Swiper {
	position: relative;
}
.djC3Swiper .bg {
	overflow: hidden;
	position: relative;
}
.djC3Swiper .con {
	display: block;
	transition: .3s;
}
.djC3Swiper .pic::before {
	padding-top: 65.9090%;
}
.djC3Swiper .text .title {
	padding: 1.5rem 0 1rem;
	border-bottom: 1px solid #ededed;
}
.djC3Swiper .text .title span {
	display: block;
	font-size: 1.125rem;
	line-height: 2rem;
	height: 4rem;
	color: #333;
}
.djC3Swiper .timeMore {
	margin: 1rem 0 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.djC3Swiper .timeMore .time {
	font-size: 1rem;
	line-height: 2rem;
	color: #999;
}
.djC3Swiper .timeMore .more {
	width: 2.375rem;
	height: 2.375rem;
	border: 2px solid #e6e6e6;
	background-repeat: no-repeat;
	background-position: center;
	border-radius: 100%;
	background-image: url(/subsiteSrc/cnPc/images/icon/jt3.png);
	transition: .3s;
}
.djC3Swiper .con:hover .more {
	transform: rotate(-30deg);
}
.djC3Swiper .con:hover .title span {
	color: #c60903;
}
.djPage div {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 3rem;
	height: 3rem;
	border-radius: 100%;
	border: 1px solid #f3f1ee;
	background-color: #fff;
	z-index: 2000;
	cursor: pointer;
}
.djPage div::before {
	display: block;
	content: "";
	width: 100%;
	height: 100%;
	border-radius: 100%;
	background-repeat: no-repeat;
	background-position: center;
}
.djPage .prev::before {
	background-image: url(/subsiteSrc/cnPc/images/icon/djprev.png);
}
.djPage .prev {
	left: -5rem;
}
.djPage .next::before {
	background-image: url(/subsiteSrc/cnPc/images/icon/djnext.png);
}
.djPage .next {
	right: -5rem;
}
.djPage .prev:hover {
	background: linear-gradient(to right,#c51912,#e7913d);
}
.djPage .prev:hover::before {
	background-image: url(/subsiteSrc/cnPc/images/icon/djprev2.png);
}
.djPage .next:hover {
	background: linear-gradient(to right,#c51912,#e7913d);
}
.djPage .next:hover::before {
	background-image: url(/subsiteSrc/cnPc/images/icon/djnext2.png);
}
/* 第三栏 end */
/* 党建首页 end */
