@charset "UTF-8";
:root {
	--themeColor: #954888;
}

/* ========== 主体框架 start ========== */
/* 进度条 */
.loading {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, 1);
}

.loading .loadingC {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
}

.loading .loadingC .text {
	display: inline-block;
	vertical-align: middle;
	color: #333;
	font-weight: bold;
	font-size: 14px;
}

.la-line-scale,
.la-line-scale>div {
	position: relative;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box
}

.la-line-scale {
	display: block;
	font-size: 0;
	color: #0a569e
}

.la-line-scale.la-dark {
	color: #333
}

.la-line-scale>div {
	display: inline-block;
	float: none;
	background-color: currentColor;
	border: 0 solid currentColor
}

.la-line-scale {
	width: 40px;
	height: 32px
}

.la-line-scale>div {
	width: 4px;
	height: 32px;
	margin: 2px;
	margin-top: 0;
	margin-bottom: 0;
	border-radius: 0;
	-webkit-animation: line-scale 1.2s infinite ease;
	-moz-animation: line-scale 1.2s infinite ease;
	-o-animation: line-scale 1.2s infinite ease;
	animation: line-scale 1.2s infinite ease
}

.la-line-scale>div:nth-child(1) {
	-webkit-animation-delay: -1.2s;
	-moz-animation-delay: -1.2s;
	-o-animation-delay: -1.2s;
	animation-delay: -1.2s
}

.la-line-scale>div:nth-child(2) {
	-webkit-animation-delay: -1.1s;
	-moz-animation-delay: -1.1s;
	-o-animation-delay: -1.1s;
	animation-delay: -1.1s
}

.la-line-scale>div:nth-child(3) {
	-webkit-animation-delay: -1s;
	-moz-animation-delay: -1s;
	-o-animation-delay: -1s;
	animation-delay: -1s
}

.la-line-scale>div:nth-child(4) {
	-webkit-animation-delay: -.9s;
	-moz-animation-delay: -.9s;
	-o-animation-delay: -.9s;
	animation-delay: -.9s
}

.la-line-scale>div:nth-child(5) {
	-webkit-animation-delay: -.8s;
	-moz-animation-delay: -.8s;
	-o-animation-delay: -.8s;
	animation-delay: -.8s
}

.la-line-scale.la-sm {
	width: 20px;
	height: 16px
}

.la-line-scale.la-sm>div {
	width: 2px;
	height: 16px;
	margin: 1px;
	margin-top: 0;
	margin-bottom: 0
}

.la-line-scale.la-2x {
	width: 80px;
	height: 25px;
	display: inline-block;
	vertical-align: middle;
}

.la-line-scale.la-2x>div {
	width: 8px;
	height: 25px;
	margin: 4px;
	margin-top: 0;
	margin-bottom: 0
}

.la-line-scale.la-3x {
	width: 120px;
	height: 96px
}

.la-line-scale.la-3x>div {
	width: 12px;
	height: 96px;
	margin: 6px;
	margin-top: 0;
	margin-bottom: 0
}

@-webkit-keyframes line-scale {

	0%,
	40%,
	100% {
		-webkit-transform: scaleY(0.4);
		transform: scaleY(0.4)
	}

	20% {
		-webkit-transform: scaleY(1);
		transform: scaleY(1)
	}
}

@-moz-keyframes line-scale {

	0%,
	40%,
	100% {
		-webkit-transform: scaleY(0.4);
		-moz-transform: scaleY(0.4);
		transform: scaleY(0.4)
	}

	20% {
		-webkit-transform: scaleY(1);
		-moz-transform: scaleY(1);
		transform: scaleY(1)
	}
}

@-o-keyframes line-scale {

	0%,
	40%,
	100% {
		-webkit-transform: scaleY(0.4);
		-o-transform: scaleY(0.4);
		transform: scaleY(0.4)
	}

	20% {
		-webkit-transform: scaleY(1);
		-o-transform: scaleY(1);
		transform: scaleY(1)
	}
}

@keyframes line-scale {

	0%,
	40%,
	100% {
		-webkit-transform: scaleY(0.4);
		-moz-transform: scaleY(0.4);
		-o-transform: scaleY(0.4);
		transform: scaleY(0.4)
	}

	20% {
		-webkit-transform: scaleY(1);
		-moz-transform: scaleY(1);
		-o-transform: scaleY(1);
		transform: scaleY(1)
	}
}


.ovHide {
  overflow: hidden;
}
/* 图片设置 */
.imgSit img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
}
.imgSit {
	position: relative;
	overflow: hidden;
}
/* 背景图片设置 */
.backgroundSit {
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

/* flex布局 */
.flex {
	display: flex;
	display: -webkit-flex;
}
.flex-jc {
	justify-content: center;
}
.flex-ai {
	align-items: center;	
}
.flex-jc-sb {
	justify-content: space-between;	
}
.flex-jc-end {
	justify-content: flex-end;
}
.flex-ai-end {
	align-items: end;
}
.flex-jc-sa {
	justify-content: space-around;	
}
.flex-1 {
	flex: 1;
	-webkit-flex: 1;
}
.flex-column {
	flex-direction: column;
	-webkit-flex-direction: column;
}
.flex-wrap {
	flex-wrap: wrap;
	-webkit-flex-wrap: wrap;	
}
.flex-ai-end{
	align-items: flex-end;
}
/* 层级显示 */
.post-zindex {
	position: relative;
	z-index: 30;
}
/* 文字对齐方式 */
.text-center {
	text-align: center;
}
.text-left {
	text-align: left;	
}
.text-right {
	text-align: right;	
}
.text-justify {
	text-align: justify;
	text-justify: inter-ideograph;
}

/* swiper 分页按钮 */

.swiperBt div {
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 100%;
	background-color:#fff;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: .3s;
	position: absolute;
	z-index: 20;
    box-shadow: 0 0 8px rgb(0 0 0 / 0.1);
}
.swiperBt .prev:hover{
	background-color: var(--themeColor);
}
.swiperBt .next:hover{
	background-color: #fff;	
}
.swiperBt 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;
}
.swiperBt .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");
}
.swiperBt .prev:hover span {
    background-color: #fff;
}
.swiperBt .prev:hover {
	background-color: var(--themeColor);
}
.swiperBt .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");
}
.swiperBt .next:hover span {
    background-color: #fff;
}
.swiperBt .next:hover {
	background-color: var(--themeColor);
}
/* 按钮 hover效果 start */
.hvrToRight {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
}
.hvrToRight:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--zt-color);
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 0 50%;
  transform-origin: 0 50%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvrToRightFac:before {
    background: #ffac09 !important;
}
.hvrToRight:hover, .hvrToRight:focus, .hvrToRight:active {
  color: white;
}
.hvrToRight:hover:before, .hvrToRight:focus:before, .hvrToRight:active:before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
  transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}
/* 震动效果 start */
.hvrWHorizontal {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  transition: .5s;
}
.hvrWHorizontal:hover, .hvrWHorizontal:focus, .hvrWHorizontal:active {
  -webkit-animation-name: hvr-wobble-horizontal;
  animation-name: hvr-wobble-horizontal;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}
@keyframes hvr-wobble-horizontal {
  16.65% {
    -webkit-transform: translateX(8px);
    transform: translateX(8px);
  }

  33.3% {
    -webkit-transform: translateX(-6px);
    transform: translateX(-6px);
  }

  49.95% {
    -webkit-transform: translateX(4px);
    transform: translateX(4px);
  }

  66.6% {
    -webkit-transform: translateX(-2px);
    transform: translateX(-2px);
  }

  83.25% {
    -webkit-transform: translateX(1px);
    transform: translateX(1px);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
/* 震动效果 end */
/* 上下震动效果 start */
.hvrWVertical {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
}
.hvrWVertical:hover, .hvrWVertical:focus, .hvrWVertical:active {
  -webkit-animation-name: hvr-wobble-vertical;
  animation-name: hvr-wobble-vertical;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}
@-webkit-keyframes hvr-wobble-vertical {
  16.65% {
    -webkit-transform: translateY(8px);
    transform: translateY(8px);
  }

  33.3% {
    -webkit-transform: translateY(-6px);
    transform: translateY(-6px);
  }

  49.95% {
    -webkit-transform: translateY(4px);
    transform: translateY(4px);
  }

  66.6% {
    -webkit-transform: translateY(-2px);
    transform: translateY(-2px);
  }

  83.25% {
    -webkit-transform: translateY(1px);
    transform: translateY(1px);
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
/* 上下震动效果 end */
/* 悬浮效果 start */
.hvrFShadow {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
}
.hvrFShadow:before {
  pointer-events: none;
  position: absolute;
  z-index: -1;
  content: '';
  top: 100%;
  left: 5%;
  height: 10px;
  width: 90%;
  opacity: 0;
  background: -webkit-radial-gradient(center, ellipse, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0) 80%);
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0) 80%);
  /* W3C */
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform, opacity;
  transition-property: transform, opacity;
}
.hvrFShadow:hover, .hvrFShadow:focus, .hvrFShadow:active {
  -webkit-transform: translateY(-5px);
  transform: translateY(-5px);
  /* move the element up by 5px */
}
.hvrFShadow:hover:before, .hvrFShadow:focus:before, .hvrFShadow:active:before {
  opacity: 1;
  -webkit-transform: translateY(5px);
  transform: translateY(5px);
}
/* 按钮从上到下 颜色过渡  start*/
.buttonL {
	float: left;
	display: block;
	border: none;
	background: none;
	color: inherit;
	vertical-align: middle;
	position: relative;
	z-index: 1;
	-webkit-backface-visibility: hidden;
	-moz-osx-font-smoothing: grayscale;
}
.buttonL.buttonAylen {
	background: #fff !;
	color: #37474f;
	overflow: hidden;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
}
.buttonAylen.button--inverted {
	background: none;
	color: #fff;
}
.buttonAylen::before,
.buttonAylen::after {
	content: '';
	position: absolute;
	height: 100%;
	width: 100%;
	bottom: 100%;
	left: 0;
	z-index: -1;
	-webkit-transition: -webkit-transform 0.3s;
	transition: transform 0.3s;
	-webkit-transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
	transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
}
.buttonAylen::before {
	background-color: #d22849;
}
.buttonAylen::after {
	background-color: #bc082b;
}
.buttonAylen1::before {
	background-color: #ffb72a;
}
.buttonAylen1::after {
	background-color: #f2a309;
}
.buttonAylen1::before,
.buttonAylen1::after {
	content: '';
	position: absolute;
	height: 100%;
	width: 100%;
	bottom: 100%;
	left: 0;
	z-index: -1;
	-webkit-transition: -webkit-transform 0.3s;
	transition: transform 0.3s;
	-webkit-transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
	transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
}
.buttonL.buttonAylen1 {
	background: #fff;
	color: #37474f;
	overflow: hidden;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
}

.buttonAylen:hover {
	color: #fff;
}
.buttonAylen:hover::before,
.buttonAylen:hover::after {
	-webkit-transform: translate3d(0, 100%, 0);
	transform: translate3d(0, 100%, 0);
}

.buttonAylen1:hover::after {
	-webkit-transition-delay: 0.175s;
	transition-delay: 0.175s;
}
.buttonAylen1:hover {
	color: #fff;
}
.buttonAylen1:hover::before,
.buttonAylen1:hover::after {
	-webkit-transform: translate3d(0, 100%, 0);
	transform: translate3d(0, 100%, 0);
}
.buttonAylen1:hover::after {
	-webkit-transition-delay: 0.175s;
	transition-delay: 0.175s;
}
/* -------------- */
.buttonL.buttonAylen2 {
	background: #fff ;
	color: #37474f;
	overflow: hidden;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
}
.buttonAylen.button--inverted {
	background: none;
	color: #fff;
}
.buttonAylen2::before,
.buttonAylen2::after {
	content: '';
	position: absolute;
	height: 100%;
	width: 100%;
	bottom: 100%;
	left: 0;
	z-index: -1;
	-webkit-transition: -webkit-transform 0.3s;
	transition: transform 0.3s;
	-webkit-transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
	transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
}
.buttonAylen2::before {
	background-color: #91bb4f;
}
.buttonAylen2::after {
	background-color: #6b8e34;
}
.buttonAylen2:hover::after {
	-webkit-transition-delay: 0.175s;
	transition-delay: 0.175s;
}
.buttonAylen2:hover {
	color: #fff !important;
}
.buttonAylen2:hover::before,
.buttonAylen2:hover::after {
	-webkit-transform: translate3d(0, 100%, 0);
	transform: translate3d(0, 100%, 0);
}
.buttonAylen2:hover::after {
	-webkit-transition-delay: 0.175s;
	transition-delay: 0.175s;
}
/* 按钮从上到下 颜色过渡  end */

/* 通知公告 start */
.textListOne {
    margin-right: -30px;
    padding: 30px 0 0 0;
}
.textListOne::after {
    display: block;
    content: "";
    clear: both;
}
.textListOne dd{
    float: left;
    width: 50%;
    margin-bottom: 60px;
}
.textListOne .con {
    background-color: #fff;
    border-bottom: 1px solid #e6e6e6;
    padding: 15px 30px;
    display: block;
    position: relative;
    margin-right: 30px;
    transition: .3s;
}
.textListOne .timeTitle {
  display: flex;
  column-gap: 30px;
}
.textListOne  .time {
  width: 110px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #f0f0f0;
  padding: 20px 0 10px;
  color: #666;
  position: relative;
  top: -55px;
}
.textListOne  .time .day {
  font-size: 24px;
  line-height: 40px;
}
.textListOne  .time .line {
  width: 10px;
  height: 2px;
  background-color: #efc879;
  margin: 5px 0;
}
.textListOne  .time .year {
  font-size: 16px;
  line-height: 28px;
}
.textListOne  .title {
  flex: 1;
  font-size: 20px;
  line-height: 30px;
  color: #333;
  height: 60px;
}
.textListOne .con .text {
  font-size: 16px;
  line-height: 28px;
  color: #666;
  height: 56px;
  margin: -20px 0 34px;
}
.textListOne .con:hover {
  border-bottom: var(--zt-color) 1px solid;
}
.textListOne .con:hover .time {
  background-color: var(--zt-color);
  color: #fff;
}
.textListOne .con:hover .line {
  background-color: #fff;
}
/* 通知公告 end */



/* 头部 start */
.topBox {
	position: relative;
	left: 0;
	top: 0;
	right: 0;
	z-index: 1000;

}
.topBox.is-fixed {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
}
.topTop {
	height: 45px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	background-image: url(../images/iconLi/toptopbg.png);
	color: #fff;
}
.topRight {
	margin-right: 7.5rem;
}
.topTop .wrap {
	position: relative;
	height: 100%;
}
.greetTiyle {
	font-size: 1rem;
}
.topRightUl li {
	padding: 0 1.125rem;
}
.topRightUl li:nth-child(1){
	border-right: 1px solid #fff;
}
.topRightUl a{
	font-size: 1rem;
	color: #fff;
	font-weight: 500;
}
/* 搜素 */
.topSearch {
	height: 1.25rem;
	width: 1.25rem;
	flex: 0 0 1.25rem;
	background-position: center;
	background-repeat: no-repeat;
	background-size: 1.25rem;
	background-image: url(../images/iconLi/seatch.png);
	cursor: pointer;
	transition: .3s;
}
.topSearch:hover {
	transform: scale(1.05);
}
.topSearchBox {
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	display: flex;
	align-items: center;
	height: 32px;
	line-height: 32px;;
	padding: 0 1rem 0 0;
	background-color: #fff;
	z-index: 500;
	width: 2.5rem;
	font-size: 1rem;
	color: #666;
	overflow: hidden;
	border: .0625rem solid transparent;
	border-radius: 1.875rem;
	column-gap: .625rem;
	justify-content: flex-end;
	transition: width .3s, border-color .3s, box-shadow .3s;
	z-index: 20;
}
.topSearchBox:hover,
.topSearchBox:focus-within {
	width: 13rem;
	border-color: #e0e0e0;
	box-shadow: 0 0 .625rem rgba(0, 0, 0, .08);
}
.topSearchBox .input {
	flex: 1;
	height: 32px;
	line-height: 2.32px;;
	border: none;
	opacity: 0;
	width: 0;
	min-width: 0;
	overflow: hidden;
	pointer-events: none;
	transition: width .3s, opacity .2s;
}
.topSearchBox:hover .input,
.topSearchBox:focus-within .input {
	width: 140px;
	opacity: 1;
	pointer-events: auto;
}
.topSearchBox .input input {
	display: block;
	width: 100%;
	height: 32px;
	line-height: 32px;
	border: none;
	padding: 0;
	font-size: .875rem;
	color: #666;
	background-color: transparent;
}
.topSearchBox input:focus {
	outline: none;
}
.topMneu {
	background-color: var(--themeColor);
}
.topMneu dd{
	flex: 1;
	position: relative;
	z-index: 20;
}
.topMneu dd:nth-child(5){
	margin-left: 25rem;
}
/* .topMneu dd:nth-last-child(1){
	text-align: right;
}
.topMneu dd:nth-last-child(2){
	text-align: right;
}
.topMneu dd:nth-last-child(3){
	text-align: right;
}
.topMneu dd:nth-last-child(4){
	text-align: right;
} */
.topDl dd .mainMenu > a {
	display: block;
	height: 80px;
	line-height: 80px;
	color: #fff;
	font-size: 1.25rem;
	text-align: center;
	position: relative;
	transition: transform .28s cubic-bezier(.2,.9,.3,1),
				color .2s ease, font-size .18s ease, box-shadow .28s ease;
	-webkit-transition: -webkit-transform .28s cubic-bezier(.2,.9,.3,1),
						color .2s ease, font-size .18s ease, box-shadow .28s ease;
	will-change: transform;
	font-weight: 700;
}
.topDl dd .mainMenu > a::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: 12px;
	transform: translateX(-50%) scaleX(0);
	transform-origin: center;
	height: 3px;
	width: 40%;
	background: linear-gradient(90deg, rgba(255,255,255,0.95), rgba(255,255,255,0.6));
	border-radius: 2px;
	transition: transform .32s cubic-bezier(.2,.9,.3,1), opacity .2s;
	opacity: 0;
}

 .topDl dd:hover,
 .topDl dd.hover{
	/* 父元素的较轻背景，配合子项内部动画 */
	background-color: rgba(255, 255, 255, 0.04);
	/* 通过 backdrop-filter 制造轻微磨砂感（现代浏览器支持） */
	-webkit-backdrop-filter: blur(4px);
	backdrop-filter: blur(4px);
}

.topDl dd:hover .mainMenu > a,
.topDl dd.hover .mainMenu > a {
     font-size: 1.125rem;
	transform: translateY(-3px) scale(1.02);
	box-shadow: 0 10px 24px rgba(0,0,0,0.10);
}

.topDl dd:hover .mainMenu > a::after,
.topDl dd.hover .mainMenu > a::after {
	transform: translateX(-50%) scaleX(1);
	opacity: 1;
}

/* 子菜单平滑出现动画 */
.topDl dd .subMenu {
	transform: translateY(-8px);
	transition: opacity .28s ease, transform .28s cubic-bezier(.2,.9,.3,1);
	opacity: 0;
	display: none;
}
.topDl dd:hover .subMenu{
	display: block;
	opacity: 1;
	transform: translateY(0);
}


.topLog {
	height: 190px;
	width: 15rem;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
}
.topLog img {
	object-fit: contain;
}

/* meu start */

.subMenu{
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	z-index: 500;
	background-color: #cc88c1;
	border-radius: 5px;
	opacity: 0;
	display: none;
}
.subMenuItem{
	display: flex;
	flex-direction: column;
	align-items: center;
	column-gap: 10px;
	padding: 20px 0;
    box-shadow: 0 0 8px 0px rgba(0, 0, 0, 0.15);
	overflow: hidden;
}

.subMenuItem a {
	position: relative;
	display: block;
	width: 100%;
	font-size: 1.125rem;
	line-height: 2;
	color: #fff;
	text-align: center;
	padding: 5px 0;
	overflow: hidden;
	z-index: 1;
	transition: .3s;
}


/* 背景填充层 */
.subMenuItem a::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 0;
	height: 100%;
	background: var(--themeColor);
	transition: width .4s ease;
	z-index: -1;
}


/* hover填充 */
.subMenuItem a:hover::before {
	width: 100%;
}


.subMenuItem a:hover {
	font-weight: 700;
}
.subMenu:before {
    display: block;
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    margin-left: -8px;
    width: 16px;
    height: 16px;
    background: #cc88c1;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    z-index: 2;
}
.topDl dd:hover .subMenu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0px);
    -webkit-transform: translateY(0px);
	display: block;
}
/* 头部 end */

/* ————— indexBanner start ————— */
/* .indexBannerBox {
    position: relative;
    height: 100vh;              
    scroll-snap-align: start;
    scroll-snap-stop: always;
} */
 .indexBannerBox {
	position: relative;
 }
  .indexBannerBox::before{
	display: block;
	content: '';
	padding-top: 43.2291%;
  }
.indexBanner{height: 100%;position: absolute;width: 100%;top: 0;left: 0;}
.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;}
.indexBannerDown {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	height: 5.625rem;
	width: 5.625rem;
	border-radius: 100%;
	border: 1px dashed #fff;
	background-position: center;
	background-repeat: no-repeat;
	background-size: 1.25rem;
	background-image: url(../images/iconLi/inbannedwown.png);
	cursor: pointer;
	bottom: 2rem;
	z-index: 2000;
	 animation: bannerDownFloat 1.8s ease-in-out infinite;
	 display: none;
}
@keyframes bannerDownFloat {
    0%   { transform: translateX(-50%) translateY(0);      }
    50%  { transform: translateX(-50%) translateY(-10px);  }
    100% { transform: translateX(-50%) translateY(0);      }
}
.indexBannerBox .swiper-pagination {
	bottom: 4.25rem;
	left: 0;
	/* right: 18.5188%; */
	right: 0;
}
.indexBannerBox .swiper-pagination .swiper-pagination-bullet{
	width: 16px;
	height: 16px;
	background: rgba(255, 255, 255, .4);
	margin: 0 5px;
	opacity: 1;
	border-radius: 16px;
}
.indexBannerBox .swiper-pagination .swiper-pagination-bullet-active {
	width: 32px;
	background: var(--themeColor);
}

/* ————— indexBanner end ————— */

/* footer start */
.footer {
	background-color: #f2f3f9;
	font-family: 'HarmonyOS_Sans_Light';
}
.footerMain {
	padding: 3.9125rem 0 5rem;
	column-gap: 7.5rem;
	justify-content: space-between;
}
.footerDl {
	flex: 1;
}
.footerDl dd {
	margin-bottom: 1.5rem;
	color: #333;
	line-height: 1.5;
	font-size: 1.125rem;
}
.footerDl .flex {
	align-items: center;
	column-gap: 10px;
}
.footerDl .icon {
	width: 1.5rem;
	height: 1.5rem;
	background-position: center;
	background-repeat: no-repeat;
	background-size: 1.125rem 1.25rem;
}
.footerDl .phone{
	font-size: 1.5rem;
}
.footerMain dt{
	font-size: 1.25rem;
	line-height: 2;
	color: #333;
	margin-bottom: 1.25rem;
}
.footerQR {
	width: 36.842%;
	column-gap: 3.25rem;
}
.footerQR {
	flex-wrap: wrap;
}
.footerQR dt {
	width: 100%;
}
.footerQR .con{
	position: relative;
}
.footerQR .QR {
	position: absolute;
	width: 9.375rem;
	height: 9.375rem;
	left: -1.5rem;
	top: -10.125rem;
	opacity: 0;
	transform: translateY(.625rem);
	transition: all 0.3s ease;
	pointer-events: none;
	display: flex;
	justify-content: center;
	align-items: center;
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	background-image: url(../images/iconLi/qrbg.png);
	border-radius: 5px;
}
.footerQR .QR img{
	width: 7.5rem;
	height: 7.5rem;
	object-fit: contain;
}
.footerQR .con:hover .QR {
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
}
/* .footerQR .QR::after {
	content: "";
	position: absolute;
	bottom: -0.375rem;
	left: 50%;
	transform: translateX(-50%);
	width: .625rem;
	height: .625rem;
	background: var(--themeColor);
	transform: translateX(-50%) rotate(45deg);
} */
 .footerQR dd {
	flex: 1;
 }
  .footerQR dd .con {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
  }
.footerQR .icon{
	width: 3.125rem;
	height: 3.125rem;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 100%;
	background-color: var(--themeColor);
	border-radius: 100%;
	cursor: pointer;
}
.footerQR .icon img{
	object-fit: contain;
}
.footerQR .tip {
	text-align: center;
	font-size: 1rem;
	color: #666;
	line-height: 1;
	margin-top: 1rem;
}
.footerLogo {
	column-gap: 2.5rem;
}
.footerLogo em {
	flex: 1;
	height: 1px;
	background-color: var(--themeColor);
}
.footerLogo img {
	width: 23.125rem;
	height: 4.6875rem;
	object-fit: contain;
}
.footerLogo i {
	width: 10.937%;
	height: 1px;
	background-color: var(--themeColor);
}
/* 底部版权start   */
.friendCopyRight{ height: 3.5rem; line-height: 1; overflow: hidden; font-size: .875rem; color: #999}
.friendCopyRight .conL{ float: left; display: inline;}
.friendCopyRight .conL span{ margin-right: 1.25rem;}
.friendCopyRight .conL img{ margin-right: .625rem; vertical-align: middle;}
.friendCopyRight .conL a{ color: #999; margin-right: 1.25rem;}
.friendCopyRight .conL a:hover{ color: var(--themeColor);}
.friendCopyRight .conR{ float: right; display: inline;}
.friendCopyRight .conR a{color: #999; }
.friendCopyRight .conR a:hover{ color: var(--themeColor);}
/* footer end */

/* 首页 start */
.propZsBox{
	position: fixed;
	top: 50%;
	right: 3.125%;
	background-color: #fff;
	z-index: 999;
	border-radius: 8px;
	width: 18rem;
	height: 10rem;
}
.propZsBox .off{
	position: absolute;
	top: 0;
	right: 0;
	left: auto;
	width: 2.5rem;
	height: 2.5rem;
	background-position: center;
	background-repeat: no-repeat;
	background-size: 2rem;
	background-image: url(../images/off.png);
	cursor: pointer;
	transition: .5s;
	z-index: 20;
}
.propZsBox .off:hover{
	  transform: rotate(360deg);
}
.propZsBox a {
	display: block;
	width: 100%;
	height: 100%;
}
.propZsBox img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
/* 公共部分 start */
.indexTitle .titleCn{
	font-size: 2.25rem;
	line-height: 3rem;
	color: #333;
	font-family: 'SourceHanSerifCN-Bold';
}
.indexTitle .titleNg{
	font-size: 14px;
	line-height: 22px;
	color: var(--themeColor);
	column-gap: 1rem;
	text-transform: uppercase;
}
.indexTitle .titleNg em {
	width: 3.75rem;
	height: .625rem;
	background-position: right center;
	background-repeat: no-repeat;
	background-size:auto;
	background-image: url(../images/iconLi/titleng.png);
}
.indexMore a {
	display: inline-block;
	padding-right: 3rem;
	font-size: 1rem;
	color: #555;
	height: 1.875rem;
	line-height: 1.875rem;
	background-position: right center;
	background-size: 1.5rem;
	background-repeat: no-repeat;
	background-image: url(../images/iconLi/indexmore.png);
	transition: .3s;
}
.indexMore a:hover {
	color: var(--themeColor);
}
/* 滚屏动画 */
html, body {
    overflow-x: hidden;
}

#snapLayer {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 100vh;
    z-index: 9999;
    pointer-events: none;   /* 动画期间不拦截点击 */
    background: #fff;       /* 和页面背景色一致 */
    transform: translateY(0);
    opacity: 0;
    transition: transform 0.9s cubic-bezier(0.77, 0, 0.175, 1),
                opacity   0.9s cubic-bezier(0.77, 0, 0.175, 1);
}
/* 公共部分 end */
/* 第一栏 start */
.indexColumn1 {
	padding: 8.35rem 0  4.35rem ;
	background-image: url(../images/iconLi/indexc1bg.png);
	position: relative;
	z-index: 1;
	background-position: top center;
	background-size: 100% auto;
}
.indexColumn1 .main{
	column-gap: 1.875rem;
	position: relative;
	z-index: 2;
}
.indexColumn1 .left {
	width: 57.8947%;
}
.inC1Swiper {
	margin:2.25rem 0 .9375rem;
}
.inC1Swiper .img{
	height: 20.625rem;
	position: relative;
}
.inC1Swiper .img::before{
	display: block;
	content: "";
	height: 100%;
	width: 100%;
	background-position: bottom center;
	background-repeat: no-repeat;
	background-size: auto;
	background-image: url(../images/iconLi/line-bg.png);
	position: absolute;
	left: 0;
	top: 0;
}
.inC1Swiper .tip{
	position: absolute;
	left: 0;
	bottom: 0;
	right: 0;
	padding: 0 1.875rem;
	z-index: 5;
	color: #fff;
}
.inC1Swiper .tip span{
	height: 4.375rem;
	line-height: 4.375rem;
	width: 60%;
	font-size: 1.375rem;
}
.inC1Swiper .swiper-pagination {
	width: auto;
	left: auto;
	right: 1.875rem;
	bottom: 1.75rem;
}
.inC1Swiper .swiper-pagination .swiper-pagination-bullet{
	width: 10px;
	height: 10px;
	margin: 0 5px;
	background: #fff;
	opacity: 0.7;
}
.inC1Swiper .swiper-pagination .swiper-pagination-bullet-active{
	opacity: 1;
}
.incC1Dl1 {
	column-gap: 1.25rem;
}
.incC1Dl1 dd{
	width: calc((100% - 2.5rem)/3);
}
.incC1Dl1 .img{
	height: 8rem;
}
.incC1Dl1 a {
	display: block;
	transition: .3s;
}
.incC1Dl1 .text{
	padding: .8125rem 1.25rem;
	background-color: #fff;
}
.incC1Dl1 .title {
	font-size: 1.125rem;
	line-height: 1.5;
	color: #333;
}
.incC1Dl1 a:hover {
	transform: translateY(-4px);
}
.incC1Dl1 a:hover .text{
	background-color: var(--themeColor);
}
.incC1Dl1 a:hover .title{
	color: #fff;
}
.inC1Dl2 {
	background-color: #fff;
	margin-top: 2.25rem;
	transition: .3s;
}
.inC1Dl2 a {
	display: block;
	padding: 1rem 1.875rem;
	transition: .3s;
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100% 5rem;
}
.inC1Dl2 .tag {
	padding-left: 2rem;
	background-position: left center;
	background-repeat: no-repeat;
	background-size: .8125rem 1.125rem;
	background-image: url(../images/iconLi/inc1icon.png);
	font-size: 1rem;
	line-height: 1;
	color: var(--themeColor);
	margin-bottom: .8125rem;
	transition: .3s;
	position: relative;
	z-index: 20;
}
.inC1Dl2 .tag::before{
	display: block;
	content: "";
	width: 1px;
	height: 3.25rem;
	border-left: 1px dashed #d4cb64;
	position: absolute;
	left: 7px;
	top: 1.25rem;
	transition: .3s;

}
.inC1Dl2 .title {
	padding-left: 2rem;
	font-size: 1.125rem;
	color: #333;
	transition: .3s;
	line-height: 1;
}
.inC1Dl2 a:hover {
	background-image: url(../images/iconLi/inc1bg.png);
}
.inC1Dl2 a:hover .tag::before{
	display: none;
}
.inC1Dl2 dd:nth-last-child(1) .tag::before{
	display: none;
}
.inC1Dl2 a:hover .tag{
	color: #fff;
}
.inC1Dl2 a:hover .title{
	color: #fff;
}
.indexColumn1::before{
	display: block;
	content: "";
	width: 100%;
	height:150%;
	position: absolute;
	left: 0;
	bottom: -50%;
	background-position: center bottom;
	background-repeat: no-repeat;
	background-size: cover;
	background-image: url(../images/icoL2/c2bgbf.png);
}
/* 第一栏 end */

/* 第二栏修改 start */
.indexC2 {
	padding: 4.375rem 0 6.875rem;
	min-height: 20.625rem;
	position: relative;
	background-position: center bottom;
	background-repeat: no-repeat;
	background-size: 100% auto;
	background-image: url(../images/icoL2/c2bg.png);
	z-index: 2;
}
.inC2Dl2 {
	justify-content: flex-end;
	padding-left: 12.5rem;
	column-gap: 1.875rem;
}
.inC2Dl2 dd {
	width: calc((100% - 3.75rem)/3);
	padding: 2.5rem 1.625rem;
	box-sizing: border-box;
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100% 100%;
	height: 33.75rem;
	overflow: hidden;
}
.inC2Dl2 dd .indexTitle {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	color: #fff;
}
.inC2Dl2 dd .indexTitle .titleCn{
	color: #fff;
}
.inC2Dl2 dd .indexTitle .titleNg{
	color: #fff;
}
.inC2Dl2 dd:nth-child(1){
	background-image: url(../images/icoL2/c2d1.png);
}
.inC2Dl2 dd:nth-child(2){
	background-image: url(../images/icoL2/c2d2.png);
}
.inC2Dl2 dd:nth-child(3){
	background-image: url(../images/icoL2/c2d3.png);
}
.inC2Dl2 ul {
	margin: 1.5rem 0 1.5rem;
}
.inC2Dl2 li {
	margin-bottom: 1rem;
}
.inC2Dl2 li:nth-last-child(1){
	margin-bottom: 0;
}
.inC2Dl2 li a {
	font-size: 1.125rem;
	line-height: 1.625rem;
	height: 3.25rem;
	color: #fff;
	position: relative;
	padding-left: 1.25rem;
	background-repeat: no-repeat;
	background-size:.65rem .875rem;
	background-position: left .35rem;
	background-image: url(../images/icoL2/sjx.png);
	transition: .3s;
}
.indexMore.indexMorebai a {
	color: #fff;
	background-image: url(../images/icoL2/morebai.png);
}
.moreLine {
	column-gap: .8125rem;
}
.moreLine em {
	height: 1px;
	background-color: #fff;
}
/* 第二栏修改 end */

/* 第二栏 start */
.indexColumn2 {
	padding: 4.5rem 0;
	background-position: top center;
	background-repeat: no-repeat;
	background-size: auto;
	background-image: url(../images/iconLi/inc2bg.png);
	background-color: #fff;
}
.inC2Swiper {
	margin: 2.5rem 0 0;
	padding-bottom: 5rem;
}
.inC2Swiper .img{
	height: 12.5rem;
	position: relative;
}
.inC2Swiper .video{
	cursor: pointer;
	transition: .3s;
}
.inC2Swiper .img::before{
	display: block;
	content: "";
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.2);
	position: absolute;
	left: 0;
	top: 0;
	opacity: 0;
}
.inC2Swiper .play{
	width: 2.5rem;
	height: 2.5rem;
	background-position: center;
	background-repeat: no-repeat;
	background-size: 2rem;
	background-image: url(../images/iconLi/paly.png);
	transform: translate(-50%,-50%);
	position: absolute;
	left: 50%;
	top: 50%;
	z-index: 20;
	cursor: pointer;
	opacity: 0;
}
.inC2Swiper .text {
	padding: 1.25rem;
	background-color: #d2d4df;
	font-size: 1rem;
	color: #999;
	line-height: 1;
	background-position: right bottom;
	background-repeat: no-repeat;
	background-size: auto;
}
.inC2Swiper .title{
	font-size: 1.125rem;
	line-height: 1.75rem;
	height: 3.5rem;
	color: #333;
	margin-bottom: 1rem;
}
.inC2Swiper .video:hover .text{
	color: #fff;
	background-image: url(../images/iconLi/yd.png);
	background-color: var(--themeColor);
}
.inC2Swiper .video:hover .title{
	color: #fff;
}
.inC2Swiper .video:hover .img::before{
	display: block;
	opacity: 1;
}
.inC2Swiper .video:hover .play{
	opacity: 1;
}
.pageElBt .swiper-pagination {
	position: relative;
	bottom: auto;
	width: auto;
}
.pageElBt {
	position: absolute;
	left: 0;
	bottom: 0;
	right: 0;
	column-gap: 1rem;
}
.pageElBt .prev,
.pageElBt .next{
	width: 2.5rem;
	height: 2.5rem;
	background-position: center;
	background-repeat: no-repeat;
	background-size: 1.5rem 2rem;
	cursor: pointer;
}
.pageElBt .prev {
	background-image: url(../images/iconLi/prev.png);
}
.pageElBt .next{
	background-image: url(../images/iconLi/next.png);
}
.pageElBt  .swiper-pagination-bullet{
	width: 10px;
	height: 10px;
	margin: 0 5px;
	background:#cebdca;
	opacity: 1;
}
.pageElBt .swiper-pagination-bullet-active{
	background: var(--themeColor);
}
/* 第二栏 end */
/* 第三栏 start */
.indexColumn3 {
	padding: 2.5rem 0;
	background-color: #fff;
	background-image: url(../images/icoL2/c3bg.png);
	background-position: center bottom;
}
.indexColumn3 .main{
	column-gap: 1.875rem;
}
/* .indexColumn3 {
	margin: 2.5rem 0 0;
} */
.indexColumn3 .con{
	column-gap: 2.5rem;
}
.indexColumn3 .img{
	width: 20.625rem;
	height: 11.25rem;
	position: relative;
	padding: 0 12px 12px 0;
	border-radius: 1.25rem  1.25rem 3.75rem 1.25rem ;
	overflow: hidden;
	box-sizing: border-box;
}
.indexColumn3 .img::before{
	display: block;
	content: "";
	width: 100%;
	height: calc(100% - 12px);
	border-radius: 1.25rem;
	background-color: var(--themeColor);
	position: absolute;
	bottom: 0;
	right: -12px;
	border-radius: 1.25rem  1.25rem 3.75rem 1.25rem ;
}
.indexColumn3 img{
	position: relative;
	z-index: 20;
	 border-radius: inherit;
}
.inC3Swiper {
	margin-top: 2.5rem;
}
.inC3Swiper .title{
	font-size: 1.375rem;
	line-height: 1.875rem;
	height: 3.75rem;
	color: #333;
}
.inC3Swiper .info{
	font-size: 1rem;
	line-height: 1.5;
	color: #666;
	margin-top: 1rem;
}
.indexColumn3 .left{
	width: calc(50% - 1.25rem);
}
.inC3Swiper .swiper-pagination {
	width: auto;
	left: 23.125rem;
	bottom: 12px;
}
.inC3Swiper .swiper-pagination-bullet{
	width: 10px;
	height: 10px;
	border-radius: 10px;
	margin: 0 5px;
	background-color: #cebdca;
	opacity: 1;
}
.inC3Swiper  .swiper-pagination-bullet-active {
	width: 24px;
	background-color: var(--themeColor);
}
.inC3Dl{
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100% 100%;
	background-image: url(../images/icoL2/xywh.png);
	margin-top: 1rem;
	padding: 1.875rem;
}
.inC3Dl a {
	column-gap: 13%;
	border-bottom: 1px solid #ebebeb;
	padding: .75rem 0;
	height: 3.75rem;
	box-sizing: border-box;
	transition: .3s;
}
.inC3Dl dd:nth-last-child(1) a{
	border: none;
} 
.inC3Dl .title{
	font-size: 1.125rem;
	line-height: 1.5;
	color: #333;
	padding-left: 1.125rem;
	position: relative;
	transition: .3s;
}
.inC3Dl .title::before{
	display: block;
	content: "";
	width: 5px;
	height: 5px;
	background-color: var(--themeColor);
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
}
.inC3Dl .time{
	font-size: 1rem;
	color: #999;
	line-height: 1;
}
.inC3Swiper.inC3Swiper2 .img::before{
	background-color: #d7be71;
}
.inC3Dl a:hover .title{
	color: var(--themeColor);
}
/* 第三栏 end */
/* 第四栏 start */
.indexColumn4 {
	padding: 4rem 0 ;
	background-color: #fff;
}
.inC4Swiper {
	padding-top: 5rem;
	padding-bottom: 5.3125rem;
}
.inC4Swiper a{
	display: block;
	padding: 2.5rem;
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100% 10.875rem;
	background-image: url(../images/iconLi/inc4border.png);
	height: 10.875rem;
	box-sizing: border-box;
	transition: .3s;
	position: relative;
}
.inC4Swiper a::before{
	display: block;
	content: "";
	width: 100%;
	height: 6.25rem;
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100% 6.25rem;
	position: absolute;
	left: 0;
	top: -1.875rem;
	transition: .3s;
	z-index: 2;
}
.inC4Swiper .time {
	color: var(--themeColor);
	line-height: 1.875rem;
	font-weight: 600;
}
.inC4Swiper .day{
	font-size: 1.875rem;
}
.inC4Swiper span {
	font-size: 1.25rem;
	margin: 0 5px;
}
.inC4Swiper .moth {
	font-size: 1rem;
	line-height: 2;
}
.inC4Swiper .title {
	font-size: 1.125rem;
	line-height: 1.625rem;
	color: #333;
	font-weight: 600;
	margin-top: 1.4375rem;
}
.inC4Swiper a:hover {
	background-image: url(../images/iconLi/inc4borderh.png);
}
.inC4Swiper a:hover::before{
		background-image: url(../images/iconLi/inc4pic2.png);
}
.inC4Swiper a:hover .title{
	color: #fff;
}
.inC4Swiper a:hover .time{
	color: #fff;
}
/* 第四栏end */
/* 第五栏 start */
.indexColumn5 {
padding: 5.625rem 0 8.4375rem;
-webkit-mask-image: url(../images/iconLi/inc5mak.png);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: 100% 100%;
  display: none;

  mask-image: url(../images/iconLi/inc5mak.png);
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: 100% 100%;
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100%;
	background-image: url(../images/iconLi/inc5bg.png);
	position: relative;
	z-index: 2;
}
.indexColumn5 .main{
	column-gap: 3.125rem;
}
.inc5Dl {
	margin-top: 3.4375rem;
}
.inc5Dl a {
	height: 4.875rem;
	padding: 0 2rem;
	box-sizing: border-box;
	position: relative;
	display: flex;
	align-items: center;
	transition: .3s;
	border-bottom: 1px solid #ebebeb;
}
.inc5Dl a::before{
	display: block;
	content: "";
	position: absolute;
	height: 100%;
	left: 0;
	right: -11.25rem;
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100% 100%;
	
	z-index: 20;
	transition: .3s;
}
.inc5Dl .title {
	font-size: 1.25rem;
	line-height: 1.875rem;
	color: #333;
	font-weight: 500;
	transition: .3s;
	position: relative;
	z-index: 21;
}
.indexColumn5 .imgBg{
	padding-top: 2.8125rem;
	width: 50.2368%;
	background-position: top right;
	background-repeat: no-repeat;
	background-size: auto;
	background-image: url(../images/iconLi/inc5line.png);
}
.indexColumn5 .img{
	height: 34.375rem;
}
.inc5Dl dd.hover .title {
	color: #fff;
}
.inc5Dl dd.hover a::before{
	background-image: url(../images/iconLi/inc5textbg.png);
}
/* 第五栏 end */
/* 第六栏 start */
.indexColumn6 {
	padding: 3.5rem 0 0rem;
	background-image: url(../images/iconLi/inc6bg.png);
	position: relative;
	top: -6rem;
	display: none;
}
.indexColumn6 .main{
	column-gap: 1.25rem;
	position: relative;
	margin-top: 2.5rem;
}

.inC6Swiper {
	width: 50%;
}
.inC6Swiper .img{
	height: 31.25rem;
}
.inC6Swiper .text {
	position: relative;
	top: -3.125rem;
	padding: 3.125rem 13.25rem  3.125rem 3.125rem;
	z-index: 22;
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100%;
	background-image: url(../images/iconLi/inc6textbg.png);
}
.inC6Swiper .con {
	display: block;
}
.inC6Swiper .title{
	font-size: 1.375rem;
	line-height: 1;
	color: #333;
	transition: .3s;
}
.inC6Swiper .time {
	color: var(--themeColor);
	font-size: 1.125rem;
	line-height: 1;
	margin: 1.5rem 0 1.125rem;
}
.inC6Swiper .info {
	font-size: 1rem;
	line-height: 1.5;
	color: #777;
}
.inC6Dl dd {
	margin-bottom: 1rem;
}
.inC6Dl .con {
	column-gap: 1.5rem;
	background-color: #fff;
	transition: .3s;
	align-items: center;
}
.inC6Dl .img{
	width: 17.5rem;
	height: 11.5625rem;
}
.inC6Dl .title{
	font-size: 1.125rem;
	line-height: 1.625rem;
	color: #333;
	font-weight: 500;
}
.inC6Dl a:hover .title{
	color: var(--themeColor);
}
.inC6Dl .info{
	font-size: 1rem;
	color: #777;
	line-height: 1;
	margin: .9375rem 0 1.75rem;
}
.inC6Dl .time{
	font-size: 1rem;
	color: #999;
	line-height: 1;
}
.inC6Swiper .swiper-pagination {
	width: auto;
	left: auto;
	right: 2rem;
	bottom: 10.875rem;
	z-index: 100;
}
.inC6Swiper .swiper-pagination-bullet{
	width: 10px;
	height: 10px;
	border-radius: 10px;
	margin: 0 5px;
	background-color: #cebdca;
	opacity: 1;
}
.inC6Swiper  .swiper-pagination-bullet-active {
	width: 24px;
	background-color: var(--themeColor);
}
.inC6Swiper a:hover .title {
	color: var(--themeColor);
}
/* 第六栏 end */
/* 第七栏 start */
.indexColumn7 {
	padding: 4.375rem 0 5.3125rem;
	background-position: top center;
	background-repeat: no-repeat;
	background-size: auto;
	background-image: url(../images/icoL2/c7bg.png);
}
.indexColumn7 .indexTitle .titleCn{
	color: #fff;
}
.indexColumn7 .indexTitle .titleNg{
	color: #fff;
}
.indexColumn7 .indexMore a {
	color: #fff;
	background-image: url(../images/icoL2/morebai.png);
}
.indexColumn7  .indexTitle .titleNg em {
	background-image: url(../images/icoL2/linebai.png);
}
.inC7Dl {
	margin-top: 2.5rem;
}
.inC7Dl dd{
	width: 25%;
	box-sizing: border-box;
}
.inC7Dl dd:nth-child(1),
.inC7Dl dd:nth-last-child(1){
	width: 50%;
}
.inC7Dl .img{
	position: relative;
	height: 23.75rem;
	 overflow: hidden;
}
.inC7Dl .img::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url(../images/iconLi/line-bg.png) center bottom / 100% no-repeat;
  transition: all 0.3s ease;
  z-index: 1;
}

.inC7Dl .tip{
	position: absolute;
	z-index: 200;
	left: 0;
	right: 0;
	bottom: 0;
	font-size: 1.25rem;
	color: #fff;
	padding: 0 1.25rem;
	height: 3.75rem;
	line-height: 3.75rem;
}
.inC7Dl a:hover .img::before {
  background-color: rgba(0, 0, 0, 0.2);
}
.inC7Dl a:hover .tip {
	bottom: auto;
	top: 50%;
	transform: translateY(-50%);
	text-align: center;
}
/* 第七栏 end */
/* 第八栏 start */
.indexColumn8 {
	padding: 0rem 0 18.75rem;
	background-image: url(../images/icoL2/inc8bg2.png);
	background-size:100% 100%;
	position: relative;
}
/* .indexColumn8::before{
	display: block;
	content: "";
	width: 30rem;
	height: 30rem;
	position: absolute;
	bottom: 5%;
	left: 30%;
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100% 100%;
	background-image: url(../images/icoL2/inc7bgbf.png);
} */
.inC8Dl {
	display: grid;
	grid-template-columns: repeat(3,1fr);
	gap: 1.875rem;
	margin: 2.5rem 0 6.875rem;
}
.inC8Dl a{
	display: block;
	transition: .3s;
}
.inC8Dl .img{
	height: 9.375rem;
	border-radius: .625rem;
}
.inC8Dl a:hover {
	transform: translateY(-5px);
}
.inC8SwiperBg {
	padding: 0 7.5rem;
	position: relative;
}
.pageBtn2 div{
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 3.125rem;
	height: 3.125rem;
	line-height: 3.125rem;
	text-align: center;
	font-size: 1rem;
	color: var(--themeColor);
	border: 1px solid var(--themeColor);
	cursor: pointer;
	transition: .3s;
	z-index: 20;
	display: block;
	border-radius: 100%;
}
.pageBtn2 div:hover {
	color: #fff;
	background-color: var(--themeColor);
}
.pageBtn2 .prev{
	left: 0;
}
.pageBtn2 .prev::before{
	display: block;
	content: "prev";
	font-family: 'swiper-icons';
}
.pageBtn2 .next{
	right: 0;
}
.pageBtn2 .next::before{
	display: block;
	content: "next";
	font-family: 'swiper-icons';
}
.inC8Swiper .con {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	transition: .3s;
}
.inC8Swiper .icon {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 7.5rem;
	height: 7.5rem;
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100%;
	background-image: url(../images/iconLi/iconbg.png);
	transition: .3s;
	border-radius: 100%;
	overflow: hidden;
}
.inC8Swiper img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}
.inC8Swiper .img2{
	display: none;
}
.inC8Swiper .con:hover .icon{
	background-color: var(--themeColor);
	background-image: none;
}
.inC8Swiper .con:hover .img2{
	display: block;
}
.inC8Swiper .con:hover .img1{
	display: none;
}
.inC8Swiper .post{
	font-size: 1.25rem;
	line-height: 1.5;
	margin-top: 1.5rem;
}
/* 第八栏 end */

/* 第四栏 修改 start */
.inC4 {
	padding: 3.75rem 0 4.375rem;
	background-color: #f6f7f7;
	background-position: center bottom;
	background-repeat: no-repeat;
	background-size: cover;
	background-image: url(../images/icoL2/c4bg.png);
}
.inC4dl2 {
	column-gap: 5.5rem;
	margin-top: 1.875rem;
	padding-right: 1.875rem;
}
.inC4dl2 .img{
	height: 24.375rem;
	position: relative;
	overflow: hidden;
	display: block;
}
.inC4dl2 .img  .tag {
	position: absolute;
	left: 2.125rem;
	bottom: 3.125rem;
	height: 5rem;
	width: 5rem;
	line-height: 5rem;
	text-align: center;
	font-size: 1.25rem;
	color: #fff;
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100% 100%;
	background-image: url(../images/icoL2/sr.png);
}
.inC4dl2 dd {
	width: calc((100% - 5.5rem)/2);
}
.inC4dl2 dd:nth-of-type(2) .img  .tag {
	background-image: url(../images/icoL2/xy.png);
}
.inC4dl2 .text {
	background-color: #fff;
	border-radius: 0 0 3.125rem 0;
	position: relative;
	padding: 1.875rem 1.25rem 2.8125rem;
	top: -1.875rem;
	right: -1.875rem;
}
.inC4dl2 .title {
	font-size: 1.375rem;
	color: #333;
	line-height: 1;
	transition: .3s;
}
.inC4dl2 .title:hover{
	color: var(--themeColor);
}
.inC4dl2 .time{
	font-size: 1.125rem;
	color: var(--themeColor);
	line-height: 1;
	margin: 1.25rem 0;
}
.inC4dl2 .info {
	font-size: 1rem;
	line-height: 1.5rem;
	height: 3rem;
	color: #999;
	margin-bottom: 2.25rem;
}
.inC4dl2  .more {
	height: 3.125rem;
	width: 8.125rem;
	line-height: 3.125rem;
	border-radius: 3.125rem;
	text-align: center;
	line-height: 3.125rem;
	font-size: 1.125rem;
	color: #fff;
	background-color: var(--themeColor);
	display: block;
}
/* 第四栏 修改 end */
/* 首页 end */