@charset "UTF-8";
/* ========== 首页 start ========== */
/* 按钮 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;
}


.buttonAylen:hover {
	color: #fff;
}
.buttonAylen:hover::before,
.buttonAylen:hover::after {
	-webkit-transform: translate3d(0, 100%, 0);
	transform: translate3d(0, 100%, 0);
}
.buttonAylen:hover::after {
	-webkit-transition-delay: 0.175s;
	transition-delay: 0.175s;
}
/* 按钮从上到下 颜色过渡  end */
/* 顶部广告 start */
.topTop {
	height: 36px;
    line-height: 36px;
    background: #fbfbfb;
	border-bottom: 1px  solid #eeeeee;
}
.topTop .wrap {
	height: 100%;
	display: flex;
    align-items: center;
    justify-content: space-between;
}
.topTop .left {
	font-size: 14px;
	color: #333;
}
.topTop .left span {
	padding-left: 25px;
	display: inline-block;
	background-position: left center;
	background-repeat: no-repeat;
	background-image: url(../images/icon/xlb.png);
}
.topTop  dl {
	height: 36px;
	line-height: 36px;
	display: flex;
    align-items: center;
}
.topTop dd{
	color: #333333;
	font-size: 14px;
	cursor: pointer;
	padding: 0 20px;
	position: relative;
}
.topTop dd:last-child{
	padding-right: 0;
}
.topTop dd i{
	display: block;
	float: left;
	width: 20px;
	height: 36px;
	margin-right: 10px;
}
.topTop dd.dd1 i{
	background: url(../images/icon/sj.png)no-repeat center center;
}
.topTop dd.dd2 i{
	background: url(../images/icon/wx.png)no-repeat center center;
}

.topTop dd::after{
	display: block;
	content: '';
	width: 10px;
	height: 35px;
	background: url(../images/icon/xl.png)no-repeat center center;
	float: right;
	margin-left: 10px;
	transition: all 0.4s linear;
	-webkit-transition: all 0.4s linear;
}
.topTopt dd::before{
	display: block;
	content: '';
	position: absolute;
	width: 1px;
	height: 10px;
	top: 50%;
	right: 0;
	background: #c6c6c6;
	margin-top: -5px;
}
.topTopdd:last-child::before{
	display: none;
}
.topTop .ewm{
	height: 100px;
	width: 100px;
	border: 1px solid #cccccc;
	position: absolute;
	background: #FFFFFF;
	left: 15px;
	top: 20px;
	overflow: hidden;
	padding: 8px;
	z-index: 6666;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s linear;
	-webkit-transition: all 0.3s linear;
}
.topTop .ewm img{
	width: 100%;
	height: 100%;
}
.topTop dd:hover::after{
	transform: rotate(180deg);
	-webkit-transform: rotate(180deg);
}
.topTop dd:hover .ewm{
	opacity: 1;
	visibility: visible;
	top: 36px;
}
/* 顶部广告 end */
/* 顶部关注我们 start */
.top_head{
	padding: 20px 0;
}
.top_head .wrap{
	display: flex;
	align-items: center;
	justify-content: space-between;	
}
.top_logo .wrap{ position: relative;}
.top_logo a{
	position: absolute;
	left: 0;
	top: 62px;
	width: 267px;
	height: 53px;
}

.top_logo img{
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.top_logo2{
	position: relative;
	float: left;
	top: 5px;
	height: 60px;
	width: 180px;
}
.top_logo2 a {
	width: 100%;
	height: 100%;
	display: block;
}
.top_logo2 img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: contain;
	object-position: left center;
}
.top_xiala{
	float: left;
	width: 220px;
	height: 36px;
	line-height: 36px;
	padding-left: 36px;
	margin: 20px 0 0 150px;
	border: 1px solid #e6e6e6;
	background: url(../images/icon/gzyl.png) no-repeat center left 13px;
	position: relative;
	cursor: pointer;
	box-sizing: border-box;
	-webkit-box-align: boxder-box;
}
.top_xiala .title{
	color: #333333;
	font-size: 14px;
}
.top_xiala::after{
	display: block;
	content: '';
	height: 36px;
	width: 13px;
	background: url(../images/icon/xl.png)no-repeat center center;
	transition: all 0.4s linear;
	-webkit-transition: all 0.4s linear;
	position: absolute;
	right: 12px;
	top: 0;
}
.top_xiala dl{
	background: #fff;
    border: 1px solid #eee;
    border-top: 0;
    z-index: 1001;
    position: absolute;
    width: 100%;
    height: 0;
    left: -1px;
    top: 34px;
    transition: all .3s linear;
}
.top_xiala dl dd{
	height: 34px;
	line-height: 34px;
	color: #333333;
	font-size: 14px;
	padding-left: 36px;
	visibility: hidden;
	opacity: 0;
	transition: all .3s linear;
}
.top_xiala dl dd a{
	color: #333333;
}
.x_ewm{
	width: 100px;
	height: 100px;
	border: 1px solid #CCCCCC;
	padding: 5px;
	box-sizing: border-box; box-sizing: border-box;
	position: absolute;
	right: -100px;
	top: -36px;
	visibility: hidden;
	opacity: 1;
	transition: all 0.3s linear;
	-webkit-transition: all 0.3s linear;
}
.x_ewm img{width: 90px;height: 90px;}
.top_phohe{
	float: right;
	    color: #40bbcd;
	    font-size: 22px;
	    line-height: 32px;
		height: 32px;
	    padding-left: 43px;
	    margin-top: 24px;
	    background: url(../images/top_phohe.png)no-repeat center left;
}
.top_phohe img{
	padding-top: 7px;
}
.top_xiala dl dd a:hover{
	color: #00abc4;
}
.top_xiala .title {
	margin: 0;
	padding-top: 0 !important;
	font-weight: 400;
}
.top_xiala:hover dl dd{
	opacity: 1;
	visibility: visible;
}
.top_xiala dl dd a:hover .x_ewm{
	opacity: 1;
	visibility: visible;
	right: -120px;
}
.top_xiala:hover::after{
	transform: rotate(180deg);
	-webkit-transform: rotate(180deg);
}
/* 顶部关注我们 end */
/* 头部导航 */
.mend {
	height: 50px;
	line-height: 50px;
	position: relative;
	z-index: 1000;
}
.mend .wrap{
	height: 100%;
	display: flex;
	align-items: center;
	column-gap: 40px;
	justify-content: space-between;
}
.mend .mendLeft {
	width: 180px;
	text-align: center;
	border-radius: 5px 5px 0 0;
	background-color: #5ec6d6;
	color: #fff;
	font-size: 16px;
	position: relative;
	transition: .3s;
	cursor: pointer;
}
.mend .mendLeft:hover dl{
	height: 450px; /* 鼠标悬浮时的高度 */
	width: 180px;
    padding: 30px 0;
	display: block;
	opacity: 1;
	transform: translateY(0);
}
.mend .mendLeft dl {
	display: none;
	height: 0;
	width: 0;
	text-align: center;
	position: absolute;
	left: 0;
	top: 50px;
	background-color: #332f44;
	color: #fff;
	overflow-y: auto;
	z-index: 1000;
	padding: 0;
	box-sizing: border-box;
	transition: all 0.3s ease-out; /* 添加过渡效果 */
	opacity: 0;
	transition: 
        height 0.4s cubic-bezier(0.25, 0.1, 0.25, 1.1),
        opacity 0.3s ease,
        padding 0.4s ease;
}
.mend .mendLeft.active dl {
	display: block;
	height: 450px;
	width: 180px;
	padding: 30px 0;
	text-align: center;
	position: absolute;
	left: 0;
	top: 50px;
	background-color: #332f44;
	color: #fff;
	overflow-y: auto;
	z-index: 1000;
	box-sizing: border-box;
	transition: all 0.3s ease-out; /* 添加过渡效果 */
	transition: 
        height 0.4s cubic-bezier(0.25, 0.1, 0.25, 1.1),
        opacity 0.3s ease,
        padding 0.4s ease;
		opacity: 1;
}
.mend .mendLeft dl dd {
	margin-bottom: 10px;
	padding: 0 10px;
}
.mend .mendLeft dl dd a {
	display: block;
	width: 100%;
	height: 36px;
	line-height: 36px;
	font-size: 14px;
	color: #fff;
	border-radius: 5px;
}
.mend .mendLeft dl dd a:hover{
	background-color: var(--themeColor);
}
.mend .menuDl {
	flex: 1;
	display: flex;
	justify-content: space-between;
	height: 100%;
}
.mend .menuDl dd {
	height: 50px;
	line-height: 50px;
}
.mend .menuDl dd a {
	display: inline-block;
	height: 50px;
	line-height: 50px;
	font-size: 16px;
	color: #666;
	border-bottom: 2px solid transparent;
	box-sizing: border-box;
}
.mend .menuDl dd.hover .mainMenu a,.mend .menuDl dd .mainMenu a:hover {
	color: var(--themeColor);
	font-weight: 700;
	border-bottom: 2px solid var(--themeColor);
}
.subMenuItem a:hover {
	border-bottom: 2px solid var(--themeColor);
}
/* ————— indexBanner start ————— */
.indexBanner .swiper-wrapper {position: absolute;left: 0;right: 0;top: 0;bottom: 0;}
.indexBanner{position: relative;height: 450px;overflow: hidden;}
.indexBanner a {
	display: block;
	width: 100%;
	height: 100%;
}
.indexBanner .bg {
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 1;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}
.indexBanner .swiper-pagination {
	bottom: 20px !important;
}
.indexBanner .swiper-pagination-bullet {
	width: 16px;
	height: 16px;
	background: #f9ddd3;
	opacity: 1;
	margin: 0 4px;
}
.indexBanner .swiper-pagination-bullet-active {
	background: var(--themeColor);	
}
/* ————— indexBanner end ————— */
/* 学校课程导航 start */
.shoolMenu {
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-radius: 8px;
	box-shadow:0 0 8px rgba(137, 237, 240, .25);
}
.shoolMenu dd {
	flex: 1;
}
.shoolMenu dd a {
	display: flex;
	padding: 25px 10px;
	align-items: center;
	justify-content: center;
	column-gap: 15px;
	position: relative;
	transition: .3s;
}
.shoolMenu dd a::after {
	display: block;
	content: '';
	width: 1px;	
	height: 40px;
	background-position: center;
	background-repeat: no-repeat;
	background-image: url(../images/icon/scline.png);
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
}
.shoolMenu dd .textCn {
	font-size: 18px;
	color: #333;
	line-height: 30px;
	font-weight: 700;
}
.shoolMenu dd:hover .textCn {
	color: var(--themeColor);
}
.shoolMenu dd:hover .textEn {
	color: var(--themeColor);	
}
.shoolMenu dd .textEn {
	font-size: 14px;
	color: #999;
	line-height: 20px;
}
.shoolMenu dd .icon {
	width: 40px;
	height: 40px;
	transition: transform 0.3s ease; /* 添加过渡效果 */
}
.shoolMenu dd img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.shoolMenu dd:hover .icon {
    transform: rotateY(360deg);
    transition: transform 1.2s ease-in-out;
}
/* 学校课程导航 end */
/* ========== 首页 start ========== */
.indexTitle span {
	display: inline-block;
	height: 40px;
	line-height: 40px;
	font-size: 24px;
	color: #333;
	font-weight: 700;
	position: relative;
	padding-left: 30px;
}
.indexTitle span::after {
	display: block;
	content: '';
	width: 10px;
	height: 100%;
	border-radius: 10px;
	background: linear-gradient(to bottom, #62c7d7, #dcf3f6);
	position: absolute;
	left: 0;
	top: 0;
}
/* 第二栏 start */
.indexColumn2  {
	padding-top: 40px;
}
.videoDl {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 20px;
	padding-bottom: 50px;
}
.videoDl dd {
	flex: 1;
}
.videoDl .con {
	overflow: hidden;
	border-radius: 10px;
	margin-right: 20px;
	cursor: pointer;
	position: relative;
}
.videoDl .con .pic::before{
	padding-top: 55.9440%;
}
.videoDl .con .text{
	height: 50px;
	line-height: 50px;
	color: #333333;
	font-size: 16px;
	overflow: hidden;
	padding: 0 18px;
	background: #fff;
}
.videoDl .con .text i{
	display: inline-block;
	margin-right: 10px;
	overflow: hidden;
	width: 22px;
	height: 21px;
	background: url(../images/icon/videoicon.png)no-repeat center center;
	position: relative;
	top: 6px;
}
.videoDl .con .pic .bofang{
	position: absolute;
	left: 0;
	bottom: 0;
	height: 0;
	width: 100%;
	background: rgba(0,0,0,0.5);
	transition: all 0.2s linear;
	-webkit-transition: all 0.2s linear;
	overflow: hidden;
}
.videoDl dd .con .pic .bofang::after{
	display: block;
	content: '';
	width: 54px;
	height: 54px;
	background: url(../images/icon/playVideo.png)no-repeat center center;
	position: absolute;
	left: 50%;
	top: 50%;
	margin-left: -27px;
	margin-top: -27px;

}
.videoDl dd .con:hover .pic .bofang{
	height: 100%;
}
.videoDl dd .con:hover .text{
	color: var(--themeColor);
}
.videoDl dd .con:hover {
	box-shadow: 0 0 8px rgba(137, 237, 240,.25);
}
/* 第二栏 end */
/* 第三栏 start */
.indexColumn3 {
	padding: 90px 0 90px;
	overflow: hidden;
}
.indexColumn3 .tablelink {
	display: flex;
	justify-content: space-between;
	padding: 20px;
	background-color: #fff;
	box-shadow: 0 0 8px rgba(137, 237, 240,.25);
	border-radius: 10px;
	margin: 30px 0 20px;
}
.indexColumn3 .tablelink dd {
	flex: 1;
}
.indexColumn3 .tablelink a {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 10px;
	border-radius: 10px;
	transition: all 0.2s linear;
	-webkit-transition: all 0.2s linear;
}
.indexColumn3 .tablelink .icon {
	width: 65px;
	height: 65px;
	overflow: hidden;
	display: flex;
	justify-content: center;
}
.indexColumn3 .tablelink img {
	display: block;
	object-fit: contain;
}
.indexColumn3 .tablelink .text {
	font-size: 16px;
	color: #333;
	height: 28px;
	line-height: 28px;
	overflow: hidden;
}
.indexColumn3 .tablelink dd.hover a,.indexColumn3 .tablelink dd:hover a {
	 background: linear-gradient(to right, #5ec7d5, #5ed5c7);
}

.indexColumn3 .tablelink .img2 {
	display: none;
}
.indexColumn3 .tablelink dd.hover .img1,.indexColumn3 .tablelink dd:hover .img1{
	display: none;	
}
.indexColumn3 .tablelink dd.hover .img2,.indexColumn3 .tablelink dd:hover .img2 {
	display: block;	
}
.indexColumn3 .tablelink dd.hover .text,.indexColumn3 .tablelink dd:hover .text {
	color: #FFFFFF;
	font-weight: 700;	
}
.indexColumn3 .main {
	display: flex;
	justify-content: space-between;
	background-color: #fff;
	padding: 20px;
	box-shadow: 0 0 8px rgba(137, 237, 240,.05);
	border-radius: 10px;
	column-gap: 20px;
	height: 320px;
	overflow: hidden;
}
.indexColumn3 .main .img {
	display: block;
	height: 320px;
	width: 49.137931%;
	overflow: hidden;
	border-radius: 10px;
	cursor: pointer;
}
.indexColumn3 .kcList,.indexColumn3 .right {
	flex: 1;
}
.indexColumn3 .kcList {
	padding: 20px;
	background-color: #f6f8ff;
	overflow: hidden;
	border-radius: 10px;
}
.indexColumn3 .kcList .kcTitle {
	margin-bottom: 10px;
}
.indexColumn3 .kcList .kcTitle span {
	display: inline-block;
	height: 24px;
	line-height: 24px;
	font-size: 16px;
	color: #333;
	font-weight: 700;
	padding-left: 35px;
	background-position: left center;
	background-repeat: no-repeat;
	background-image: url(../test/imgs/kcicon.png);
}
.indexColumn3 .kcList li a {
	display: block;
	height: 40px;
	line-height: 40px;
	font-size: 14px;
	color: #333;
	padding-left: 16px;
	position: relative;
	transition: .3s;
}
.indexColumn3 .kcList ul {
	min-height: 160px;
	max-height: 200px;
	overflow-y: auto;
}
.indexColumn3 .kcList li a::after {
	display: block;
	content: '';
	width: 7px;	
	height: 7px;
	border-radius: 7px;
	background-color: #fcd0b6;
	position: absolute;
	left: 0;
	top: 50%;
	margin-top: -3.5px;
}
.indexColumn3 .kcList li a:hover {
	color: var(--themeColor);
	font-weight: bold;
}
.kcMore {
	margin-top: 10px;
}
.kcMore a {
	display: inline-block;
	height: 33px;
	line-height: 33px;
	font-size: 14px;
	color: #fff;
	font-weight: 700;
	background: linear-gradient(to right, #ff8801, #f93f00);
	border-radius: 33px;
	padding: 0 40px 0 12px;
	position: relative;
}
.kcMore a::after {
	display: block;
	content: '';
	width: 16px;
	height: 16px;
	background: url(../test/imgs/more.png)no-repeat center center;
	position: absolute;	
	right: 12px;
	margin-top: -8px;
	top: 50%;
}
.indexColumn3 .right dl  {
	display: flex;
	column-gap: 18px;
}
.indexColumn3 .right dl dd {
	flex: 1;
}
.indexColumn3 .right dl .con {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 10px;
	height: 100px;
	box-sizing: border-box;
	background-color: #f6f8ff;
	border-radius: 10px;
	transition: all 0.2s linear;
	-webkit-transition: all 0.2s linear;
}
.indexColumn3 .right dl .con .text {
	font-size: 16px;
	color: #333;
	height: 28px;
	line-height: 28px;
	overflow: hidden;
	margin-top: 8px;
}
.indexColumn3 .right .kcList {
	margin-top: 10px;
	padding: 15px 20px 0;
}
.indexColumn3 .right ul {
	min-height: auto;
	max-height: 160px;
	overflow-y: auto;
}
/* 第三栏 end */
/* 第四栏 start */
.indexColumn4 {
	padding: 60px 0 60px;
	overflow: hidden;
	background-color: #fff;
}
.indexColumn4 .tempSwiper dl dd:nth-child(even) {
	background-color: #fff !important;
}
.col3title{
	background: url(../test/imgs/col3Title.png)no-repeat center center;
	border-radius: 8px;
	overflow: hidden;
	padding: 50px 35px;
	margin-bottom: 20px;
	text-align: center;
}
.col3title .text {
	font-size: 24px;
	height: 36px;
	line-height: 36px;
	color: #fff;
	font-weight: 700;
}
.col3-con{
	padding: 30px 0;
	overflow: hidden;
}
.col3-left{
	width: 469px;
	overflow: hidden;
	float: left;
	margin-right: 20px;
}

.col3Dl{
	overflow: hidden;
	margin-right: -20px;
}
.col3Dl dd{
	float: left;
	width: 50%;
	overflow: hidden;
}
.col3Dl dd .con{
	margin-right: 20px;
	border-radius: 8px;
	overflow: hidden;
}
.col3Dl dd.dd1 .con .pic::before{
	padding-top: 145.90909%;
}
.col3Dl dd .con .pic .text{
	height:38px;
	line-height: 38px;
	color: #FFFFFF;
	background: rgba(0,0,0,0.5);
	position: absolute;
	left: 0;
	bottom: 0;
	font-size: 16px;
	width: 100%;
	text-align: center;
}
.col3Dl dd.dd2 .con .pic::before{
	padding-top: 68.666%;
}
.col3Dl dd.dd2 .con:nth-child(1){
	margin-bottom: 20px;
}
.col3Dl dd .con .pic img{
	transition: all 0.3s linear;
	-webkit-transition: all 0.3s linear;
}
.col3Dl dd .con:hover .pic img{
	transform: scale(1.05);
	-webkit-transform: scale(1.05);
}
.col3-right{
	overflow: hidden;
}
.col3-riTitle {
		height: 58px;
		line-height: 58px;
		background: #40bbcd;
		font-size: 0;
}
.col3-riTitle span{
	display: inline-block;
	text-align: center;
	    font-size: 16px;
	    color: #ffffff;
	    font-weight: bold;
}
.col3conRn span .hot{
	position: relative;
}
.col3conRn span .hot::after{
	display: block;
		content: "";
		width: 20px;
		height: 20px;
		background: url(../images/hotIcn.png)no-repeat center right;
		background-size: auto 20px;
		position: absolute;
		top: 50%;
		right: 20px;
		margin-top: -10px;
	
}
.col3-riTitle .span1{
	width: 20%;
}
.col3-riTitle .span2{
	width: 30%;
}
.col3-riTitle .span3{
	width: 30%;
}
.col3-riTitle .span4{
	width: 20%;
}
.col3conRn{
	background: #FFFFFF;
}
.col3conRn dd{
	height: 48px;
	line-height: 48px;
	font-size: 0;
	
}
.col3conRn dd .con span{
	display: inline-block;
	text-align: center;
	font-size: 14px;
	color: #666666;
}
.col3conRn dd .con .span1{
	width: 20%;
}
.col3conRn dd .con .span2{
	width: 30%;
}
.col3conRn dd .con .span3{
	width: 30%;
}
.col3conRn dd .con .span4{
	width: 20%;
	color: #40BBCD;
}
.col3conRn dd:nth-child(odd){
	background: #e9f7f9;
}
.con3Dl2{
	margin-right: -20px;
	padding-top: 35px;
	overflow: visible !important; 
}
.con3Dl2 dd{
	float: left;
	width: 20%;
}
.con3Dl2 dd .con{
	margin-right: 20px;
	border-radius: 8px;
	position: relative;
}
.con3Dl2 dd .con .pic{
	border-radius: 8px;
}
.con3Dl2 dd .con .pic::before{
	padding-top: 54.2222%;
}
.con3Dl2 dd .con .pic img{
	border-radius: 8px;
}

/* 第四栏 end */
/* 第五栏 start */
.indexColumn5 {
	padding: 80px 0 120px;
	overflow: hidden;
}
.indexColumn5 dl {
	margin: 30px -20px 0 0;
}
.indexColumn5 dl::after {
	display: block;
	content: '';
	clear: both;	
}
.indexColumn5 dl dd {
	width: 25%;
	float: left;
	margin-bottom: 20px;
}
.indexColumn5 dl .con {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	margin-right: 20px;
	height: 120px;
	background-color: #fff;
	overflow: hidden;
	border-radius: 10px;
}
.indexColumn5 dl .con .img {
	width: 135px;
	height: 35px;
}
.indexColumn5 dl .con img {
	display: block;
	height: 100%;
	object-fit: contain;
}
.indexColumn5 dl .con .text {
	font-size: 16px;
	height: 30px;
	line-height: 30px;
	color: #333;
	margin-top: 5px;
}
/* 第五栏 end */
/* 第六栏 start */
.indexColumn6 {
	padding: 60px 0;
	background-color: #f9f9f9;
	overflow: hidden;
}
.indexColumn6 .topTitle {
	display: flex;
	justify-content: space-between;
}
.indexbut a {
	display: inline-block;
	height: 33px;
	font-size: 16px;
	line-height: 33px;
	padding: 0 16px;
	color: #fff;
	border-radius: 5px;
	background-color: var(--themeColor);
}
.col4-con{
	    height: 380px;
	    overflow: hidden;
		padding-top: 38px;
}
.col4-left{
	float: left;
	    position: relative;
	    width: 240px;
	    height: 380px;
	    border-radius: 10px;
	    overflow: hidden;
		padding: 48px 15px;
		box-sizing: border-box;
		-webkit-box-sizing: border-box;
		margin-right: 20px;
}
.col4-left .title{
	height: 50px;
	line-height: 50px;
	color: #333333;
	font-size: 32px;
	overflow: hidden;
}
.col4-left .title1{
	color: #999999;
	font-size: 14px;
	height: 14px;
	line-height: 14px;
	overflow: hidden;
	margin-bottom: 30px;
}
.col4-left .text{
	height: 120px;
	line-height: 24px;
	color: #666666;
	font-size: 14px;
	overflow: hidden;
	margin-bottom: 24px;
}
.col4-right{
	overflow: hidden;
}
.col4Dl{
	margin-right: -20px;
	overflow: hidden;
	position: relative;
}
.col4Dl dd{
	overflow: hidden;
	height: 380px;
	position: relative;
	width: 25%;
	float: left;
}
.col4Dl dd .con {
	margin-right: 20px;
	overflow: hidden;
	border-radius: 10px;
	background-color: #fff;
  border-radius: 100%;
}

.col4Dl dd .picimg{
	    height: 215px;
	    width: 100%;
	    margin: 0 auto;
	    overflow: hidden;
	transition: all 0.4s linear;
	-webkit-transition: all 0.4s linear;
	/* padding: 26px 26px 0 26px; */
	box-sizing: border-box;
}
.col4Dl dd .picimg img{
	    display: block;
	    width: 100%;
      height: 100%;
	    vertical-align: bottom;
}
.col4Dl dd .text {
  width: 100%;
	text-align: center;
	padding: 10px 10px 16px 10px;
	box-sizing: border-box;
	position: absolute;
	left: 50%;
  transform: translateX(-50%);
	bottom: 60px;
	height: 90px;
	overflow: hidden;
	transition: all 0.3s linear;
}
.col4Dl dd .text .title{
	height: 31px;
	line-height: 31px;
	color: #666666;
	font-size: 20px;
	font-weight: bold;
}
.col4Dl dd .text .title1{
	height: 44px;
	line-height: 22px;
	color: #666666;
	font-size: 16px;
	overflow: hidden;
	margin-bottom: 15px;
  opacity: 0;
}
.col4Dl dd .text .textC{
	height: 72px;
	line-height: 24px;
	color: #666666;
	font-size: 14px;
	overflow: hidden;
	margin-bottom: 25px;
}
.colvie a{
	display: inline-block;
	height: 30px;
	line-height: 30px;
	color: #40bbcd;
	font-size: 13px;
	padding: 0 10px;
	background: #d9f1f5;
	border-radius: 5px;
}

.colvie a+a{
	background: #3acdcc;
	color: #FFFFFF;
}
.col4Dl .slick-arrow{
	display: block;
	width: 40px;
	height: 64px;
	position: absolute;
	top: 50%;
	margin-top: -32px;
	z-index: 66;
	cursor: pointer;
	transition: all 0.3s linear;
	-webkit-transition: all 0.3s linear;
	opacity: 0;
	visibility: hidden;
}
.col4Dl:hover .slick-arrow.next{
	opacity: 1;
	visibility: visible;
}
.col4Dl:hover .slick-arrow.prev{
	opacity: 1;
	visibility: visible;
}
.col4Dl dd:hover .text{
	height: 228px;
	overflow: hidden;
  bottom: 0;
}
.col4Dl dd:hover .picimg{
	    border-bottom: 0;
	    border-radius: 0 0 50px 50px;
	    width: 110px;
	    height: 125px;
	    overflow: hidden;
	    margin: 0 auto;
	    margin-bottom: 20px;
}
.col4Dl dd:hover .con {
  width: 145px;
  margin: 0 auto;
}
/* 第六栏 end */

/* 第七栏 start */
.indexColumn7 {
	padding: 60px 0;
	background-color: #fff;
	overflow: hidden;
}
.indexColumn7 .topLink {
	display: flex;
	justify-content: space-between;
}
.indexColumn7 .linkA {
	display: flex;
	column-gap: 7px;
}
.indexColumn7 .linkA a {
	height: 36px;
	line-height: 36px;
	border-radius: 5px;
	padding: 0 12px;
	font-size: 18px;
	color: #999;
	transition: .3s;
}
.indexColumn7 .linkA a.hover, .indexColumn7 .linkA a:hover {
	color: #fff;
	font-weight: 700;
	 background: linear-gradient(to right, #5ec8d4, #5ed6c7); 
}
.indexColumn7 .main {
	display: flex;
	justify-content: space-between;
	column-gap: 20px;
}
.indexColumn7 .main .vidoBox {
	width: 564px;
	height: 370px;
	overflow: hidden;
	border-radius: 10px;
	position: relative;
	cursor: pointer;
}
.indexColumn7 .main .vidoBox img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.indexColumn7 .main .tip {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 48px;
	line-height: 48px;
	font-size: 16px;
	color: #fff;
	background-color: rgba(0,0,0,0.8);
	padding: 0 20px;
}
.indexColumn7 .main dl {
	flex: 1;
}
.indexColumn7 .main dl dd {
	margin-bottom: 25px;
}
.indexColumn7 .main .con {
	display: flex;
	justify-content: center;
	column-gap: 20px;
}
.indexColumn7 .main  .img {
	overflow: hidden;
	width: 180px;
	height: 106px;
	border-radius: 10px;
}
.indexColumn7 .main img {
	display: block;
	width: 100%;
	height: 100%;

}
.indexColumn7 .main .text {
	flex: 1;
}
.indexColumn7 .main .title {
	display: flex;
	justify-content: space-between;
	column-gap: 40px;
	align-items: center;
	height: 40px;
	line-height: 40px;
	color: #333;
}
.indexColumn7 .main .titleC {
	width: 300px;
	font-size: 18px;
	font-weight: 700;
	transition: .3s;
}
.indexColumn7 .main .time {
	font-size: 14px;
	width: 90px;
}
.indexColumn7 .main .textC {
	font-size: 14px;
	line-height: 28px;
	height: 56px;
	color: #999;
}
.indexColumn7 .main .con:hover .titleC {
	color: var(--themeColor);
}
/* 第七栏 end */
/* 第八栏 start */
.indexColumn8 {
	padding: 60px 0 0;
	overflow: hidden;
	background-color: #f9f9f9;
}
.col5-con .col4-left{
	margin: 0;
	height: 350px;
}
.col5-con .col4-left .title{
	color: #FFFFFF;
}
.col5-con .col4-left .title1{
	color: #FFFFFF;
}
.col5-con .col4-left .text{
	color: #FFFFFF;
}
.col5-con .indexbut a{
	color: #FFFFFF;
	border: 1px solid #FFFFFF;
}
.col5Dl{
	    overflow: hidden;
	    float: left;
	    width: 740px;
}
.col5Dl dd{
	display: block;
	    overflow: hidden;
	    float: left;
	    width: 350px;
	    height: 165px;
	    margin-left: 20px;
	    margin-bottom: 20px;
	     border-radius: 10px; 
	    border-radius: 10px;
	    position: relative;
}
.col5Dl dd img{
	display: block;
	    overflow: hidden;
	    float: left;
	    width: 100%;
	    height: 100%;
		object-fit: cover;
	    border-radius: 10px;
		transition: all 0.3s linear;
		-webkit-transition: all 0.3s linear;
}
.col5Dl dd .text{
	position: absolute;
	left: 0;
	bottom: 0;
	text-align: center;
	height: 40px;
	line-height: 40px;
	width: 100%;
	background: rgba(0,0,0,0.8);
	color: #FFFFFF;
	font-size: 16px;
	transition: all 0.3s linear;
	-webkit-transition: all 0.3s linear;
}
.col5Dl dd .indexbut{
	visibility: hidden;
	opacity: 0;
	transition: all 0.3s linear;
	height: 0;
}
.col5Dl dd .indexbut a i{
	display: inline-block;
	width: 13px;
	height: 9px;
	background: url(../images/jiantou1.png)no-repeat center center;
	position: relative;
	/* top: 2px; */
	margin-left: 4px;
}
.col5Dl dd:hover .indexbut{
	visibility: visible;
	opacity: 1;
	height: auto;
}
.col5Dl dd:hover .text{
	height: 100%;
}
.col5Dl dd:hover img{
	transform: scale(1.05);
	-webkit-transform: scale(1.05);
}
.col5box{
	    width: 200px;
	    height: 350px;
	    position: relative;
	    border-radius: 10px;
	    border-radius: 10px;
	    overflow: hidden;
	    float: right;
}
.col5box img{
	position: absolute;
	    left: 0;
	    top: 0;
	    display: block;
	    overflow: hidden;
	    width: 100%;
	    height: 100%;
		transition: all 0.3s linear;
		-webkit-transition: all 0.3s linear;
}
.col5box .text{
	position: absolute;
	left: 0;
	bottom: 0;
	text-align: center;
	height: 40px;
	line-height: 40px;
	width: 100%;
	background: rgba(0,0,0,0.5);
	color: #FFFFFF;
	font-size: 16px;
	transition: all 0.3s linear;
	-webkit-transition: all 0.3s linear;
}
.col5box .indexbut{
	visibility: hidden;
	opacity: 0;
	transition: all 0.3s linear;
	height: 0;
}
.col5box .indexbut a i{
	display: inline-block;
	width: 13px;
	height: 9px;
	background: url(../images/jiantou1.png)no-repeat center center;
	position: relative;
	/* top: 2px; */
	margin-left: 4px;
}
.col5box:hover .indexbut{
	visibility: visible;
	opacity: 1;
	height: auto;
}
.col5box:hover .text{
	height: 100%;
}
.col5box:hover img{
	transform: scale(1.05);
	-webkit-transform: scale(1.05);
}
/* 第八栏 end */

/* 第九栏 start */
.indexColumn9 {
	padding: 60px 0;
	background-color: #fff;
	overflow: hidden;
}
.indexColumn9 dl {
	display: flex;
	justify-content: space-between;
	column-gap: 20px;
}
.indexColumn9 dl dd {
	flex: 1;
	display: flex;
	flex-direction: column;
	row-gap: 20px;
}
.indexColumn9 dl dt {
	width: 220px;
	height: 410px;
}
.indexColumn9 dl dt  .img {
	overflow: 10px;
	height: 100%;
	border-radius: 10px;
	overflow: hidden;
}
.indexColumn9 dl dt img {
	display: block;
	height: 100%;
}
.indexColumn9 dl dd .imgMax {
	height: 264px;
	overflow: hidden;
	border-radius: 10px;
	order: 1;
}
.indexColumn9 dl dd img {
	display: block;
	height: 100%;
	width: 100%;
	object-fit: cover;
}
.indexColumn9 dl .imgMin {
	display: flex;
	justify-content: space-between;
	order: 2;
}
.indexColumn9 dl .imgMin .img {
	width: 223px;
	height: 126px;
	overflow: hidden;
	border-radius: 10px;
}
.indexColumn9 dl .dd2  .imgMax {
	order: 2;
}
.indexColumn9 dl .dd2 .imgMin {
	order: 1;
}
/* 第九栏 end */
/* 第十栏 start */
.indexColumn1,
.indexColumn2,
.indexColumn3,
.indexColumn4,
.indexColumn5,
.indexColumn6,
.indexColumn7,
.indexColumn8,
.indexColumn9,
.indexColumn10{
	overflow: hidden;
}
.indexColumn10 {
	padding: 50px 0 50px;
	background-color: #ffff;
}
.indexColumn10 dl {
	margin: 40px -30px 0 0;
	display: flex;
	flex-wrap: wrap;
}
.indexColumn10 dl::after {
	display: block;
	content: "";
	clear: both;
}
.indexColumn10 dl dt,
.indexColumn10 dl dd
{
	width: 50%;
	margin-bottom: 30px;
}
.indexColumn10 .con {
	background-color: #fff;
	border-radius: 10px;
	margin-right: 30px;
	box-shadow: 0 0 8px rgba(0, 0, 0, .1);
}
.indexColumn10 .dt2 .con {
	padding: 40px 50px;
	overflow: hidden;
}
.indexColumn10 .log {
	height: 60px;
	overflow: hidden;
	margin-bottom: 30px;
}
.indexColumn10 .logo img {
	display: block;
	height: 100%;
}
.indexColumn10 .phone {
	display: flex;
	column-gap: 20px;
	margin-bottom: 30px;
}
.indexColumn10 .phone span {
	height: 20px;
	line-height: 20px;
	font-size: 18px;
	padding-left: 40px;
	color: #333;
	font-weight: 700;
	background-position: left center;
	background-repeat: no-repeat;
	width: 90px;

}
.indexColumn10 .phone em {
	font-style: normal;
	font-size: 16px;
	line-height: 28px;
	color: #999;
	flex: 1;
}
.indexColumn10 .phone .em1 {
	font-size: 24px;
	color: #666;
}
.xxMore {
	display: flex;
	justify-content: end;
}
.xxMore a {
	display: inline-block;
	height: 50px;
	line-height: 50px;
	border-radius: 50px;
	font-size: 18px;
	color: #fff;
	background: linear-gradient(to right, #5ec7d5, #5ed5c7);
	padding: 0 20px 0 55px;
	position: relative;
}
.xxMore a::after {
	display: block;
	content: "";
	width: 20px;
	height: 20px;
	background: url(../images/icon/zxzx.png) center no-repeat;
	position: absolute;
	left: 20px;
	top: 50%;
	margin-top: -10px;
}
.indexColumn10 dd .con {
	padding: 30px 40px;
}
.indexColumn10 dd .con .title {
	font-size: 24px;
	color: #333;
	height: 30px;
	line-height: 30px;
	font-weight: bold;
}
.indexColumn10 dd .text span {
	font-size: 18px;
	color: #333;
	font-weight: bold;
	margin-right: 20px;
	height: 26px;
	line-height: 26px;
}
.indexColumn10 dd .text em {
	font-size: 16px;
	line-height: 26px;
	height: 26px;
	color: #999;
	font-style: normal;
}
.indexColumn10 dd .text {margin-top: 30px;}
/* 第十栏 end */
/* 留言内容 start */
.accliuyan{
	height: 150px;
	width: 100%;
	background: url(../test/imgs/lybg.png)no-repeat center center;
	border-radius: 50px;
	position: relative;
}
.daniao{
	position: absolute;
	left: 49px;
	bottom: -18px;
	height: 226px;
	width: 154px;
	overflow: hidden;
}
.accliuyan .title{
	height: 63px;
	line-height: 63px;
	text-align: center;
	color: #FFFFFF;
	font-weight: bold;
	font-size: 28px;
	overflow: hidden;
}
.liuyanDl{
	padding-left: 226px;
	display: flex;
	align-items: center;
}
.liuyanDl dd{
	float: left;
}
.liuyanDl dd .con{
	background: #FFFFFF;
	border-radius: 5px;
	margin-right: 25px;
}
.liuyanDl dd .con input{
	height: 58px;
	line-height: 58px;
	overflow: hidden;
	outline: none;
	border: none;
	background: none;
	width: 190px;
	padding-left: 30px;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
}
.liuyanDl dd .but a{
	display: block;
	height: 58px;
	line-height: 58px;
	color: #ffffff;
	font-size: 16px;
	padding: 0 55px;
	border-radius: 5px;
	overflow: hidden;
	background-image: linear-gradient(#ff7d3a, #ffa328);
}
.zpformSel{ height:58px; position:relative; padding-right:38px; width: 259px; box-sizing: border-box; -webkit-box-sizing: border-box;}
.zpformSel .seljg{ padding-left:10px; line-height:58px; color:#333333; font-size:13px; cursor:pointer;}
.zpformSel .selIcn{ display:inline-block; width:48px; height:58px; background:url(../test/imgs/sxbt.png) no-repeat center center; position:absolute; right:0px; top:0px; cursor:pointer;}
.zpformSel .selTj{width:100%;overflow:hidden;border: 1px solid #ebebeb;border-top:none;max-height:150px;overflow-y:auto;position:absolute;left: 0;top: 53px;background:#FFF;display:none;z-index:100000;box-sizing: border-box;}
.zpformSel .selTj a{ display:block; height:35px; line-height:35px; padding-left:10px; color:#666666; margin-bottom:1px; font-size: 12px;}
.zpformSel .selTj a:hover{ background:#3bb0c2; color:#FFF;}
.zpformSel .selTj a.hover{background:#3bb0c2; color:#FFF;}
/* 留言内容 end */
/* 底部领取 */
.footerPhone {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	height: 70px;
	background-color: rgba(0,0,0,0.8);
	z-index: 999;
}
.footerPhone .wrap {
	height: 100%;
	display: flex;
	align-items: center;
}
.footerPhone .wrap .icon {
	position: relative;
	top: -30px;
}
.footerPhone .bottom-text {
	margin: 0 60px 0 20px;
    color: #fff;
    font-size: 24px;
}
.footerPhone span {
    color: #f85415;
    font-weight: 700;
}
.footerPhone .botomInput {
	display: flex;
	height: 45px;
	line-height: 45px;
	align-items: center;
	border-radius: 45px;
	width: 440px;
	overflow: hidden;
	background-color: #fff;
}
.footerPhone .botomInput .i {
	margin: 0 13px 0 40px;

}
.footerPhone .botomInput .i img {
	display: block;
	object-fit: contain;
	object-position: center;
}
.footerPhone .input {
	flex: 1;
	display: flex;
	align-items: center;
	border: none;
	justify-content: space-between;
	padding: 0 !important;
}
.footerPhone .input input {
	padding: 0 20px;
	height: 45px;
	line-height: 45px;
	border: none !important;
	outline: none;
	font-size: 16px;
	flex: 1;
}
.footerPhone .input a {
	display: inline-block;
	width: 130px;
	height: 45px;
	line-height: 45px;
	text-align: center;
	color: #fff;
	font-size: 18px;
	background-color: #f85415;
	border-radius: 45px;
}
/* 专属顾问弹窗 */
.popMask{
	display: none;
	opacity: 0;
	width: 0;
	height: 0;
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(49, 49, 49, 0.67);
    z-index: 9;
    font-size: 50px;
}
.popMask.on {
    width: 100vw;
    height: 100vh;
    display: block;
	opacity: 1;
}
.zsgwbg{
    position: absolute;
    width: 5.79em;
    height: 9.65em;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: url(../test/imgs/zsgwbg.png);
    background-size: 5.79em 9.65em;
}
.zsgwbg .gfewm {
    width: 3.53em;
    height: 3.53em;
    margin-top: 3.85em;
    transform: translateX(1.05em);
    -webkit-transform: translateX(1.05em);
    -moz-transform: translateX(1.05em);
    -ms-transform: translateX(1.05em);
    -o-transform: translateX(1.05em);
}
.zsgwbg .closeBt {
    position: absolute;
    top: 0.4em;
    right: 0;
    width: 0.6em;
    height: 0.6em;
    cursor: pointer;
}


/* 云计算 */
/* CSS Document */
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,legend,input,textarea,p,blockquote,th,td{ margin:0; padding:0; list-style: none;}
table{ border-collapse:collapse; border-spacing:0;}
fieldset,img{ border:0;}
address,caption,cite,code,dfn,em,strong,th,var{ font-style:normal; font-weight:normal;}
ol,ul{ list-style:none;}
caption,th{ text-align:left;}
h1,h2,h3,h4,h5,h6{ font-size:100%; font-weight:normal;}
q:before,q:after{ content:'';}
abbr,acronym{ border:0; font-variant:normal;}
sup{ vertical-align:text-top;}
sub{ vertical-align:text-bottom;}
input,textarea,select{ font-family:inherit; font-size:inherit; font-weight:inherit;}
input,textarea,select{ *font-size:100%;}
legend{ color:#000;}



 /* ------------------public------------------------- */

      /*1.位置属性(position, top, right, z-index, display, float等)*/
      .pos-rel,.rela{position:relative;}
      .pos-abs{position:absolute;}

      sup{vertical-align:text-top;}
      sub{vertical-align:text-bottom;}
      .v-m{vertical-align:middle;}
      .v-t{vertical-align:top;}
      .v-b{vertical-align:bottom;}

      .show,.dis-b{display:block;}
      .hide,.kgc-hide,.dis-n{display:none;}
      .dis-i{display:inline-block;}
      .dis-f{display:flex;}
      .dis-t{display:table;}
      .dis-tc{display:table-cell;}

      .left{float:left;}
      .right{float:right;}

      /*2.大小(width, height, padding, margin)*/
      .kgc-w {width:100%;}
      .kgc-h {height:100%;}

      .kgc-ofx-h{overflow-x: hidden;}
      .kgc-ofx-a{overflow-x: auto;}
      .kgc-ofx-v{overflow-x: visible;}
      .kgc-ofy-h{overflow-y: hidden;}
      .kgc-ofy-a{overflow-y: auto;}
      .kgc-ofy-v{overflow-y: visible;}
      .kgc-of-h{overflow:hidden}

      .fix:after{clear:both;content:"";display:block;height:0;visibility:hidden;}

      /*定位*/
      .center{margin:0 auto;}
      .kgc-mla {margin-left:auto;}
      .kgc-mra {margin-right:auto;}
      .kgc-ml0,.offset0{margin-left:0;}
      .kgc-ml5,.offset5{margin-left:5px;}
      .kgc-ml10,.offset10{margin-left:10px;}
      .kgc-ml15,.offset15{margin-left:15px;}
      .kgc-ml20,.offset20{margin-left:20px;}
      .kgc-ml30 {margin-left:30px;}
      .kgc-ml40 {margin-left:40px;}
      .kgc-ml50 {margin-left:50px;}
      .kgc-ml100 {margin-left:100px;}
      .kgc-mt0,.top0{margin-top:0;}
      .kgc-mt5,.top5{margin-top:5px;}
      .kgc-mt10,.top10{margin-top:10px;}
      .kgc-mt15,.top15{margin-top:15px;}
      .kgc-mt20,.top20{margin-top:20px;}
      .kgc-mt30,.top30{margin-top:30px;}
      .kgc-mt40,.top40{margin-top:40px;}
      .kgc-mt50,.top50{margin-top:50px;}
      .kgc-mt100 {margin-top:100px;}
      .kgc-mr0 {margin-right:0;}
      .kgc-mr5 {margin-right:5px;}
      .kgc-mr10 {margin-right:10px;}
      .kgc-mr15 {margin-right:15px;}
      .kgc-mr20 {margin-right:20px;}
      .kgc-mr30 {margin-right:30px;}
      .kgc-mr40 {margin-right:40px;}
      .kgc-mr50 {margin-right:50px;}
      .kgc-mr100 {margin-right:100px;}
      .kgc-mb0 {margin-bottom:0;}
      .kgc-mb5 {margin-bottom:5px;}
      .kgc-mb10 {margin-bottom:10px;}
      .kgc-mb15 {margin-bottom:15px;}
      .kgc-mb20 {margin-bottom:20px;}
      .kgc-mb30 {margin-bottom:30px;}
      .kgc-mb40 {margin-bottom:40px;}
      .kgc-mb50 {margin-bottom:50px;}
      .kgc-mb100 {margin-bottom:100px;}

      .kgc-p0 {padding:0;}
      .kgc-p10 {padding:10px;}
      .kgc-p15 {padding:15px;}
      .kgc-p20 {padding:20px;}
      .kgc-p30 {padding:30px;}
      .kgc-pt5 {padding-top:5px}
      .kgc-pt10 {padding-top:10px}
      .kgc-pt15 {padding-top:15px}
      .kgc-pt20,.pad-t20{padding-top:20px}
      .kgc-pt30 {padding-top:30px}
      .kgc-pt50 {padding-top:50px}
      .kgc-pt80 {padding-top:80px}
      .kgc-pt100 {padding-top:100px}
      .kgc-pb5 {padding-bottom:5px}
      .kgc-pb10 {padding-bottom:10px}
      .kgc-pb15 {padding-bottom:15px}
      .kgc-pb20,.pad-b20{padding-bottom:20px;}
      .kgc-pb30 {padding-bottom:30px}
      .kgc-pb50 {padding-bottom:50px}
      .kgc-pb90 {padding-bottom:90px}
      .kgc-pb100 {padding-bottom:100px}
      .kgc-pl5 {padding-left:5px}
      .kgc-pl10 {padding-left:10px}
      .kgc-pl15 {padding-left:15px}
      .kgc-pl20,.pad-l20{padding-left:20px}
      .kgc-pl30 {padding-left:30px}
      .kgc-pl50 {padding-left:50px}
      .kgc-pl100 {padding-left:100px}
      .kgc-pr5 {padding-right:5px}
      .kgc-pr10 {padding-right:10px}
      .kgc-pr15,.pad-r15 {padding-right:15px}
      .kgc-pr20,.pad-r20{padding-right:20px}
      .kgc-pr30 {padding-right:30px}
      .kgc-pr50 {padding-right:50px}
      .kgc-pr100 {padding-right:100px}

      /*3.文字系列(font, line-height, letter-spacing, color- text-align等)*/
      /*文本对齐*/
      .align-left,.kgc-aL {text-align:left;}
      .align-right,.kgc-aR {text-align:right;}
      .acenter,.kgc-aC {text-align:center;}
      .kgc-aJ {text-align:justify;text-justify: inter-ideograph;}
      /*字体*/
      .FYH,.font-yahei {font-family: "Microsoft YaHei", SimHei, "微软雅黑", "黑体";}
      .FST{font-family:"宋体";}
      .FHT{font-family:"黑体";}
      /*字号*/
      .f0{line-height:0px; font-size:0px; text-indent:-999em; overflow:hidden;}
      .f12{font-size:12px;}
      .f13{font-size:13px;}
      .f14{font-size:14px;}
      .f16{font-size:16px;}
      .f18{font-size:18px;}
      .f20{font-size:20px;}
      .f24{font-size:24px;}
      .f28{font-size:28px;}
      .f34{font-size:34px;}
      .f36{font-size:36px;}
      /*行高*/
      .l24{line-height:24px;}
      .l20{line-height:20px;}
      .l30{line-height:30px;}
      /**/
      .strong{font-weight:bold;}
      .normal{font-weight:normal;}
      /*省略号*/
      .ellipsis{display:block;white-space:nowrap; overflow:hidden; text-overflow:ellipsis;}
      /*折行*/
        .ws-nowrap{white-space:nowrap;}
      .ws-normal{white-space:normal;}
      /*下划线*/
        .td-underline{
            text-decoration:underline
        }
      .td-none{
          text-decoration:none
      }

      /*颜色*/
      .white,.white a{color:#FFF;}
      .reds,.reds a{color:#F00;}
      .blue,.blue a{color:#0177A7;}
      .black,.black a{color:#000;}
      .gray{color:#969696;}

      /*4.背景(background, border等)*/
      .no-border{border:none;}
      /*表现样式*/

      .cursor-p,.cursor-click{cursor:pointer;}
      .cursor-d{cursor:default;}
      .cursor-m{cursor:move;}
      .cursor-h{cursor:help;}
      /*透明*/
      .opacity0{opacity:0}
      .opacity10{opacity:.1}
      .opacity20{opacity:.2}
      .opacity30{opacity:.3}
      .opacity40{opacity:.4}
      .opacity50{opacity:.5}
      .opacity60{opacity:.6}
      .opacity70{opacity:.7}
      .opacity80{opacity:.8}
      .opacity90{opacity:.9}
      .opacity100{opacity:1}
      /*5.其他(animation, transition等)*/
      @keyframes f2ChangeHeigt1 {
        0% {
          height: 0px;
        }
        100% {
          height: 62px;
        }
      }
      .f2ChangeHeigt1 {
        -webkit-animation-name: f2ChangeHeigt1;
        animation-name: f2ChangeHeigt1;
      }
      @keyframes f2ChangeHeigt2 {
        0% {
          height: 0px;
        }
        100% {
          height: 193px;
        }
      }
      .f2ChangeHeigt2 {
        -webkit-animation-name: f2ChangeHeigt2;
        animation-name: f2ChangeHeigt2;
      }
      @keyframes f2ChangeHeigt3 {
        0% {
          height: 0px;
        }
        100% {
          height: 255px;
        }
      }
      .f2ChangeHeigt3 {
        -webkit-animation-name: f2ChangeHeigt3;
        animation-name: f2ChangeHeigt3;
      }
      @keyframes f3ChangeWidth1 {
        0% {
          width: 0px;
        }
        100% {
          width: 400px;
        }
      }
      .f3ChangeWidth1 {
        -webkit-animation-name: f3ChangeWidth1;
        animation-name: f3ChangeWidth1;
      }
      @keyframes f3ChangeWidth2 {
        0% {
          width: 0px;
        }
        100% {
          width: 370px;
        }
      }
      .f3ChangeWidth2 {
        -webkit-animation-name: f3ChangeWidth2;
        animation-name: f3ChangeWidth2;
      }
      @keyframes f3ChangeWidth3 {
        0% {
          width: 0px;
        }
        100% {
          width: 340px;
        }
      }
      .f3ChangeWidth3 {
        -webkit-animation-name: f3ChangeWidth3;
        animation-name: f3ChangeWidth3;
      }
      @keyframes f3ChangeWidth4 {
        0% {
          width: 0px;
        }
        100% {
          width: 310px;
        }
      }
      .f3ChangeWidth4 {
        -webkit-animation-name: f3ChangeWidth4;
        animation-name: f3ChangeWidth4;
      }
      @keyframes f3ChangeWidth5 {
        0% {
          width: 0px;
        }
        100% {
          width: 280px;
        }
      }
      .f3ChangeWidth5 {
        -webkit-animation-name: f3ChangeWidth5;
        animation-name: f3ChangeWidth5;
      }
      @keyframes f3ChangeWidth6 {
        0% {
          width: 0px;
        }
        100% {
          width: 230px;
        }
      }
      .f3ChangeWidth6 {
        -webkit-animation-name: f3ChangeWidth6;
        animation-name: f3ChangeWidth6;
      }
      @-webkit-keyframes circle {
        from {
          -webkit-transform: rotate(-360deg);
        }
        to {
          -webkit-transform: rotate(0deg);
        }
      }
      @-moz-keyframes circle {
        from {
          -moz-transform: rotate(-360deg);
        }
        to {
          -moz-transform: rotate(0deg);
        }
      }
      @-o-keyframes circle {
        from {
          -o-transform: rotate(-360deg);
        }
        to {
          -o-transform: rotate(0deg);
        }
      }
      @keyframes circle {
        from {
          transform: rotate(-360deg);
        }
        to {
          transform: rotate(0deg);
        }
      }

      .w1110 {
        width: 1110px;
        margin: 0 auto;
      }


      .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
        background: #fff;
      }
       .swiper-pagination-bullet-active {
        background: #fff;
      }
       .swiper-pagination-bullets {
        bottom: 30px;
      }






      .fix:after {
        clear: both;
        content: "";
        display: block;
        height: 0;
        visibility: hidden;
      }
      .left {
        float: left;
      }
      .right {
        float: right;
      }

img {
  vertical-align: top;
}
body {
  background-color: #040119;
}
.green {
  color: #3ae5d9;
}
.color-d2 {
  color: #d2d2d2;
}
.f35 {
  font-size: 35px;
}
.f30 {
  font-size: 30px;
}
.f26 {
  font-size: 26px;
}
.f25 {
  font-size: 25px;
}
.w1000 {
  width: 1000px;
}
.mt70 {
  margin-top: 70px;
}
.mt60 {
  margin-top: 60px;
}
.zi3 {
  z-index: 3;
}
.banner-img {
  max-width: 1920px;
}
.s1-module {
  height: 1112px;
  background: url(../image/s1_bg.jpg) no-repeat center;
  overflow: hidden;
}
.s1-module .s1-title {
  width: 734px;
  height: 84px;
  margin-top: 77px;
}
.s1-module .yjs-what-left,
.s1-module .yjs-what-right {
  height: 300px;
}
.s1-module .yjs-what-left {
  padding-left: 75px;
}
.s1-module .yjs-what-left .y-bg {
  top: 0;
  left: 0;
  width: 266px;
  height: 300px;
  background: url(../images/yjs/yuan_bg.png) no-repeat 0 0;
}
.s1-module .yjs-what-right {
  padding-right: 75px;
  margin-top: -50px;
}
.s1-module .yjs-what-right .y-bg {
  top: 0;
  right: 0;
  width: 266px;
  height: 300px;
  background: url(../images/yjs/yuan_bg.png) no-repeat -299px 0;
}
.s1-module .youshi-img {
  height: 308px;
  width: 100%;
  margin-top: -20px;
}
.s2-module {
  height: 956px;
  background: url(../image/s2_bg.jpg) no-repeat center;
}
.s2-module .s1-title {
  width: 815px;
  height: 84px;
}
.s2-module .yjs-study-box {
  width: 1075px;
}
.s2-module .yjs-study-box .top {
  height: 375px;
}
.s2-module .yjs-study-box .top p {
  top: 73px;
  right: 85px;
  width: 460px;
}
.s2-module .yjs-study-box .bottom {
  height: 375px;
}
.s2-module .yjs-study-box .bottom p {
  width: 450px;
  top: 45px;
  left: 50px;
}
.s-bg {
  background-repeat: no-repeat;
  background-position: center;
}
.s3-module {
  height: 1342px;
}
.s3-module .s3-title {
  width: 997px;
  height: 84px;
}
.s3-module .s3-yjs-study-img1 {
  width: 894px;
  height: 561px;
  margin-top: 60px;
}
.s3-module .s3-yjs-study-img2 {
  width: 733px;
  height: 483px;
  margin-top: 35px;
}
.tt-x-50 {
  -moz-transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
  -o-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}
.s4-module {
  height: 2237px;
}
.s4-module .s4-title {
  width: 385px;
  height: 84px;
  left: 50%;
  top: 2px;
  margin-left: -192.5px;
}
.s4-module .sub-tit {
  width: 999px;
  padding-left: 55px;
  position: absolute;
  left: 50%;
  margin-left: -499.5px;
}
.s4-module .sub-tit p {
  text-align: center;
  width: 261px;
  height: 76px;
  line-height: 78px;
  background: url(../images/yjs/icon_bg_all.png) no-repeat 0 0;
  font-size: 35px;
  color: #2ff9dc;
  font-style: oblique;
}
.s4-module .sub-tit-01 {
  top: 155px;
}
.s4-module .sub-tit-02 {
  top: 700px;
}
.s4-module .sub-tit-03 {
  top: 1470px;
}
.s4-module .s4-bg-01 {
  height: 996px;
}
.s4-module .s4-bg-02 {
  height: 1242px;
}
.s4-module .s4-skill-01,
.s4-module .s4-skill-02,
.s4-module .s4-skill-03,
.s4-module .s4-skill-04 {
  width: 1054px;
  margin-left: -527px;
}
.s4-module .s4-skill-01 {
  height: 217px;
  top: 263px;
  left: 50%;
}
.s4-module .s4-skill-02 {
  height: 209px;
  top: 487px;
  left: 50%;
}
.s4-module .s4-skill-03 {
  height: 608px;
  top: 810px;
  left: 50%;
}
.s4-module .s4-skill-04 {
  height: 557px;
  top: 1550px;
  left: 50%;
}
.s5-module {
  height: 984px;
}
.s5-module .blue {
  color: #09aff5;
}
.s5-module .s5-title {
  width: 628px;
  height: 84px;
  margin-top: 110px;
}
.s5-module .w980 {
  width: 980px;
}
.s5-module .sub-tit {
  width: 215px;
  padding-left: 15px;
  height: 58px;
  line-height: 56px;
  font-style: oblique;
  background: url(../images/yjs/icon_bg_all.png) no-repeat 0 -91px;
}
.s5-module table {
  margin-left: 80px;
}
.s5-module .money {
  width: 413px;
  height: 309px;
  background: url(../image/s5_ys_bg.png) no-repeat;
}
.s5-module .pic {
  width: 849px;
  height: 488px;
  top: 210px;
  left: 310px;
}
.s6-module {
  height: 1360px;
}
.s6-module .s5-title {
  width: 734px;
  height: 84px;
  margin-top: 340px;
}
.s6-module .s6-content-img {
  width: 929px;
  height: 836px;
}
.s7-module {
  height: 2822px;
}
.s7-module .s7-bg-01 {
  height: 981px;
}
.s7-module .s7-bg-02 {
  height: 1005px;
}
.s7-module .s7-bg-03 {
  height: 837px;
}
.s7-module .s7-m-01 {
  top: 0;
  left: 50%;
}
.s7-module .s7-m-02 {
  top: 1404px;
  left: 50%;
}
.s7-module-02 {
  height: 1226px;
}
.s7-module-03 {
  height: 2302px;
}
.s7-module-03 .s7-bg-05 {
  height: 1104px;
}
.s7-module-03 .s7-bg-06 {
  height: 1199px;
}
.s7-module-03 .s7-m-04 {
  left: 50%;
  top: 0;
}
.s7-module-03 .s7-m-05 {
  left: 50%;
  top: 1368px;
}
.s8-module-01 {
  height: 1320px;
}
.s8-module-01 .w1045 {
  width: 1045px;
}
.s8-module-01 .s8-title {
  width: 678px;
  height: 165px;
}
.s8-module-01 .txt {
  width: 1046px;
  height: 471px;
  background: url(../images/yjs/s8_course_txt.png) no-repeat;
}
.s8-module-01 .w930 {
  width: 930px;
}
.s8-module-01 .w930 p {
  margin-bottom: 20px;
}
.s8-module-01 .sub-tit {
  margin-left: 35px;
  height: 58px;
  line-height: 56px;
  padding-left: 15px;
  font-style: oblique;
  background: url(../images/yjs/icon_bg_all.png) no-repeat 0 -91px;
}
.s8-module-01 .cc-img {
  width: 907px;
  height: 487px;
  background: url(../image/s8_angle.png) no-repeat;
}
.s8-module-01 .cc-img img {
  border-radius: 5px;
  margin-top: 26px;
}
.s8-module-01 .w980 {
  width: 980px;
  height: 50px;
  line-height: 50px;
  border-bottom: 1px solid #e2d1ad;
}
.fs-ob,
.fs-o {
  font-style: oblique;
}
.s8-module-02 {
  height: 974px;
}
.s8-module-02 .s8-course {
  margin-top: 175px;
  width: 1053px;
  height: 802px;
}
.s8-module-02 .s8-course > div {
  text-align: center;
  width: 259px;
  height: 259px;
  line-height: 259px;
  background: url(../image/s8_yuan_bg.png) no-repeat;
}
.s8-module-02 .s8-course > div:hover p {
  display: flex;
}
.s8-module-02 .s8-course > div p {
  display: none;
  width: 239px;
  height: 239px;
  padding: 10px;
  align-items: center;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  background: #448afc;
  font-size: 20px;
  color: #fff;
  line-height: 24px;
  font-style: initial;
}
.s8-module-02 .s8-course .course-01 {
  top: 0;
  left: 123px;
}
.s8-module-02 .s8-course .course-02 {
  top: 0;
  left: 680px;
}
.s8-module-02 .s8-course .course-03 {
  top: 269px;
  left: 15px;
}
.s8-module-02 .s8-course .course-04 {
  top: 269px;
  left: 775px;
}
.s8-module-02 .s8-course .course-05 {
  top: 533px;
  left: 123px;
}
.s8-module-02 .s8-course .course-06 {
  top: 533px;
  left: 683px;
}
.s8-module-03 {
  height: 1032px;
}
.s8-module-03 .s8-line {
  margin-top: 275px;
  width: 1053px;
  display: flex;
  justify-content: center;
}
.w1078 {
  width: 1078px;
}
.s9-tit {
  height: 76px;
  line-height: 78px;
  background: url(../images/yjs/icon_bg_all.png) left -162px no-repeat;
}
.s9-tit.s-right {
  background: url(../images/yjs/icon_bg_all.png) 790px -248px no-repeat;
}
.kgc-pr25 {
  padding-right: 25px;
}
.s9-img-box,
.s12-module .img-box {
  border: 2px solid #3e0779;
}
.s9-img-box span,
.s12-module .img-box span {
  width: 62px;
  height: 62px;
  position: absolute;
}
.s9-img-box .angle-01,
.s12-module .img-box .angle-01 {
  top: -22px;
  left: -23px;
  background: url(../images/yjs/icon_bg_all.png) no-repeat -153px -399px;
}
.s9-img-box .angle-02,
.s12-module .img-box .angle-02 {
  top: -22px;
  right: -23px;
  background: url(../images/yjs/icon_bg_all.png) no-repeat -226px -399px;
}
.s9-img-box .angle-03,
.s12-module .img-box .angle-03 {
  bottom: -19px;
  left: -23px;
  background: url(../images/yjs/icon_bg_all.png) no-repeat 0 -399px;
}
.s9-img-box .angle-04,
.s12-module .img-box .angle-04 {
  bottom: -19px;
  right: -23px;
  background: url(../images/yjs/icon_bg_all.png) no-repeat -73px -399px;
}
.s9-bl-bg {
  width: 488px;
  height: 60px;
  background: url(../images/yjs/icon_bg_all.png) no-repeat 0 -330px;
}
.s9-bl-01 {
  top: 570px;
  left: 0;
}
.s9-bl-02 {
  top: 1155px;
  right: 0;
}
.s9-bl-03 {
  top: 600px;
  right: 0;
}
.s9-bl-04 {
  top: 862px;
  left: 0;
}
.s9-module-01 {
  height: 1318px;
}
.s9-module-01 .s9-title {
  width: 385px;
  height: 81px;
}
.s9-module-01 .w420 {
  width: 420px;
}
.s9-module-02 {
  height: 926px;
}
.s9-module-03 {
  height: 1034px;
}
.s10-module {
  height: 688px;
}
.s10-module .s10-title {
  width: 385px;
  height: 84px;
}
.s10-module .s10-img {
  width: 987px;
  height: 392px;
}
.s11-module {
  height: 968px;
}
.s11-module .w965 {
  width: 965px;
}
.s11-module .w745 {
  width: 745px;
}
.s11-module .w580 {
  width: 580px;
}
.s11-module .zs-img {
  width: 197px;
  height: 277px;
}
.s11-module .l-img {
  width: 390px;
  height: 260px;
}
.s11-module .l-text {
  width: 545px;
}
.s11-module .color-09aff5 {
  color: #09aff5;
}
.s12-module {
  height: 595px;
}
.s12-module .s12-title {
  width: 869px;
  height: 85px;
}
.s12-module .nav {
  width: 970px;
  display: flex;
  justify-content: center;
  border-bottom: 2px solid #3ae5d9;
  padding-bottom: 2px;
}
.s12-module .img-box {
  width: 1075px;
  height: 350px;
  display: flex;
  justify-content: center;
  align-items: center;
}
/* 视频导学 */
.benet_video_float {
  position: fixed;
  bottom: 4px;
  left: 2px;
  width: 330px;
  height: 190px;
  background: #4f77f9;
  padding: 5px;
  box-sizing: border-box;
  z-index: 101;
  border-radius: 10px;
}
.benet_video_float_close {
  font-size: 14px;
  width: 20px;
  height: 20px;
  line-height: 20px;
  color: #ffffff;
  float: right;
  text-align: center;
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
  background: #4f77f9;
  border-radius: 0 50% 0 50%;
  z-index: 101;
}
.benet_video_float_video {
  width: 320px;
  height: 180px;
  border-radius: 7px;
  background: #000;
}

#jesong_panel {
	z-index: 17000;
	margin: 0px;
	padding: 0px;
	overflow: hidden;
	position: fixed;
	max-width: 200px;
	max-height: 200px;
	min-width: 20px;
	min-height: 20px;
	top: 120px;
	left: 15px;
	display: block;
}