@charset "UTF-8";
/* ========== 首页 start ========== */
/* ————— indexBanner start ————— */
.indexBannerBox{position: relative;overflow: hidden;}
.indexBannerBox::before{display: block;content: '';padding-top:42.2396%;}
.indexBanner{height: 100%;position: absolute;width: 100%;top: 0;left: 0;}
.indexBanner .wrap{position: absolute;left: 50%;top: 0;height: 100%;transform: translateX(-50%);-webkit-transform: translateX(-50%);z-index: 1;}
.scrollBottom{padding-left: 35px;line-height: 30px;height: 30px;font-size: 16px;color: #fff;background: url("../images/scrollBg.png") no-repeat left center;font-family: 'Alibaba PuHuiTi 2.0 55';position: absolute;right: 120px;bottom: 50px;z-index: 2;cursor: pointer;animation: moveUp 3s linear infinite;-webkit-animation: moveUp 3s linear infinite;}
@keyframes moveUp{
  0%{
    bottom: 50px;
  }
  25%{
    bottom: 55px;
  }
  50%{
    bottom:50px;
  }
  75%{
    bottom: 45px;
  }
  100%{
    bottom: 50px;
  }
}
.bannerSwiper{height: 100%;width: 100%;}
.bannerSwiper .swiper-slide{text-align: center;font-size: 18px;background: #fff;overflow:hidden;}	
.slide-inner {position: absolute;width: 100%;height: 100%;left: 0;top: 0;background-size: cover;background-position: center;display: -webkit-box;display: -ms-flexbox;display: -webkit-flex;display: flex;-webkit-box-pack: center;-ms-flex-pack: center;-webkit-justify-content: center;justify-content: center;-webkit-box-align: center;-ms-flex-align: center;-webkit-align-items: center;align-items: center;color:#fff;}
.bannerSwiper .swiper-slide .video{width: 100%;height: 100%;object-fit: cover;}
.indexBannerArrow{position: absolute;width: 430px;height: 60px;right: 0px;bottom: 30px;z-index: 2;}
.indexBannerArrowL{float: left;display: inline;margin-right: 5px;}
.indexBannerPrev{float: left;display: inline;width: 56px;height: 56px;border-radius: 50%;border: 2px solid rgba(255, 255, 255, 0.6);background: url("../images/indexBannerPrev.png") no-repeat center center;margin-right: 20px;cursor: pointer;transition: all 0.3s;-webkit-transition: all 0.3s;}
.indexBannerPrev:hover{background-color: rgba(255, 255, 255, 0.3);border-color: rgba(255, 255, 255, 0.3);}
.indexBannerArrowL .num{overflow: hidden;line-height: 60px;height: 60px;font-size: 24px;color: #ffffff;}
.indexBannerArrowR{float: right;display: inline;margin-left: 10px;}
.indexBannerNext{float: right;display: inline;width: 56px;height: 56px;border-radius: 50%;border: 2px solid rgba(255, 255, 255, 0.6);background: url("../images/indexBannerNext.png") no-repeat center center;margin-left: 20px;cursor: pointer;transition: all 0.3s;-webkit-transition: all 0.3s;}
.indexBannerNext:hover{background-color: rgba(255, 255, 255, 0.3);border-color: rgba(255, 255, 255, 0.3);}
.indexBannerArrowR .count{overflow: hidden;line-height: 60px;height: 60px;font-size: 24px;color: #ffffff;}
.indexBannerArrow .line{overflow: hidden;position: relative;padding-top: 29px;}
.indexBannerArrow .line::before{display: block;content: ""; width: 100%;height: 1px;position: absolute;bottom: 0;background: rgba(255, 255, 255, 0.3);left: 0;}
.indexBannerArrow .line .lineBg{width: 0%;transition: all 0.3s;-webkit-transition: all 0.3s; height: 2px;background-color: #fff;position: absolute;left: 0;bottom: 0;}
.indexBanner .slideText{line-height: 75px;font-size: 48px;color: #ffffff;top: 30%;left: 120px;position: absolute;font-family: 'Alibaba PuHuiTi 2.0 85';z-index: 2;text-align: left;}
@keyframes quanquan{0%{transform:rotate(0deg);-webkit-transform:rotate(0deg);}25%{transform:rotate(90deg);-webkit-transform:rotate(90deg);}50%{transform:rotate(180deg);-webkit-transform:rotate(180deg);}75%{transform:rotate(270deg);-webkit-transform:rotate(270deg);}100%{transform:rotate(360deg);-webkit-transform:rotate(360deg);}}

.commonMore {
	height: 60px;
	border: 2px solid #e5e5e5;
	width: 160px;
	box-sizing: border-box;
	border-radius: 60px;
	position: relative;
	overflow: hidden;
	transition: .4s ease;
	-webkit-transition: .4s ease;
  text-align: center;
}

.commonMore:hover {
	border-color: #0075c2;
}

.commonMore::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #0075c2;
	z-index: -1;
	opacity: 0;
	-webkit-transform: scale3d(0.4, 1, 1);
	transform: scale3d(0.4, 1, 1);
	-webkit-transition: -webkit-transform 0.4s, opacity 0.4s;
	transition: transform 0.4s, opacity 0.4s;
	-webkit-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
	transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
}

.commonMore:hover::before {
	z-index: 1;
	opacity: 1;
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}

.commonMore a {
	display: block;
	position: relative;
	line-height: 56px;
	z-index: 5;
	font-size: 16px;
	color: #333333;
  font-family: 'Alibaba PuHuiTi 2.0 55';
	transition: all .2s ease-in;
	-webkit-transition: all .2s ease-in;
}

.commonMore:hover a {
	color: #fff;
}

.commonMore span{
  display: inline-block;
  padding-right: 29px;
	background: url(../images/indexMore.png) right center no-repeat;
	transition: all .4s ease-out;
	-webkit-transition: all .4s ease-out;
}

.commonMore:hover span {
	background:url(../images/indexMoreH.png) right center no-repeat;
}
/* ————— indexBanner end ————— */
/* ========== 首页 start ========== */


/*==========  高德地图点聚合 start ========== */
.yywdLeftBox{width: 360px;height: calc(100vh - 190px);background-color: #fff;box-sizing: border-box;-webkit-box-sizing: border-box;position: absolute;top: 20px;left: 20px;z-index: 2;padding: 20px 10px;}
#searchShow{font-size:15px;border-collapse: collapse;width: 100%;background-color: #fff;box-sizing: border-box;-webkit-box-sizing: border-box;line-height: 34px;height: calc(100vh - 255px);overflow: auto;}
#searchShow.hover{display: none;}
#searchShow::-webkit-scrollbar{width:6px;background-color: #fff;}
#searchShow::-webkit-scrollbar-thumb{width:6px;background:#d6d6d6;}
#searchShow li{padding: 25px 10px 8px 10px; cursor: pointer;border-bottom: 1px solid #ececec;}
#searchShow li .title{height: 24px;line-height: 24px;font-size: 15px;color: #666;overflow: hidden;font-weight: bold;}
#searchShow li .address{height: 28px;line-height: 28px;font-size: 14px;color: #999;overflow: hidden;}
#searchShow li:hover{background-color: #ebebeb;}
.yywdSearch{width: 100%;height: 45px;background-color: #fff;border-radius: 3px;box-sizing: border-box;-webkit-box-sizing: border-box;border: 1px solid #ebebeb; z-index: 2000;text-align: left;}
.yywdSearch .searchIcon{overflow: hidden;height: 45px;background: url(../images/common/search.png) no-repeat center;z-index: 2;position: relative;display: block;cursor: pointer;}
.yywdSearch input{width: 260px;;height: 45px;line-height: 45px;border: none;background: none;padding-left: 20px;display: block;float: left;box-sizing: border-box;-webkit-box-sizing: border-box;font-size: 16px;color: #666;}
.yywdSearch input::placeholder {color: #999;font-size: 15px;}
.yywdSearch input::-webkit-placeholder {color: #999;font-size: 15px;}
.mapBox{width: 100%;height: calc(100vh - 150px);position: relative;}
#container{position: relative;width: 100%;height: 100%;}
#container .textBox{width: 248px;height: 85px;background-color: #fff;position: absolute;top: 15px;right: 15px;z-index: 2;line-height: 85px;color: #333;font-size: 16px;text-align: center;}
#container .textBox .icn{width: 30px;height: 85px;background: url(../images/common/dwIcn1.png) no-repeat center;display: inline-block;vertical-align: top;margin-right: 20px;}
.amap-marker-content div{background: url(../images/common/dwIcn1.png) no-repeat center top 20px !important;width: 26px !important;height: 50px !important;border: none !important;box-shadow: none !important;line-height: 25px !important;color: #e60013 !important;font-weight: bold;}
.amap-info-content{padding: 0 !important;}
.amap-info-close{right: 6px !important;}
.mapPop{background-color: #fff;padding: 20px;}
.mapPop .pic{width: 280px;margin-bottom: 13px;}
.mapPop .pic::before{padding-top: 57.1429%;}
.mapPop .title{line-height: 24px;font-size: 16px;color: #333;margin-bottom: 7px;}
.mapPop .address{line-height: 24px;font-size: 14px;color: #999;}
.mapPop .phone{line-height: 24px;font-size: 14px;color: #999;margin-bottom: 15px;}
.jumpBox a{height: 32px;padding: 0 20px;border-radius: 16px;display: inline-block;font-size: 14px;color: #fff;line-height: 32px;}
.jumpBox a:nth-child(1){background-color: #e60212;margin-right: 10px;}
.jumpBox a:nth-child(2){background-color: #ef7901;}
.yywdList{display: none;position: absolute;top: 45px;width: 100%;border: solid 1px #62a6da;max-height: 340px;overflow-y: auto;z-index: 1;font-size: 0;}
.yywdList li{position: relative;padding-left: 10px;width: 100%;height: 34px;line-height: 34px;font-size: 14px;color: #454545;text-align: left;background-color: #fff;cursor: pointer;overflow: hidden;text-overflow: ellipsis;white-space: nowrap;}
.yywdList li:hover{color: #fff;background-color:var(--themeColor);}
/*==========  高德地图点聚合 end ========== */

/* ========== 留言 start ========== */
.messagePage{ background: #FFF; padding:20px}
.messageBox{ padding:20px;}
.messageTitle{position: relative;padding-left: 20px;margin-bottom: 20px; height: 50px; line-height: 50px; border-bottom: 1px solid #ddd;}
.messageTitle::before{width: 4px;height: 26px;background: var(--themeColor);display: block;content: '';position: absolute;top: 50%;left: 0;margin-top: -13px;}
.messageTitle .conL{ float: left; display: inline; font-size: 24px;color: #000000;}
.messageTitle .conR{ float: right; display: inline;}
.messageTitle .conR a{ color:var(--themeColor); font-size: 14px;}
.messageTitle .conR a:hover{ color: var(--themeColor);}
/* 留言展示列表start */
.messageList dd{padding-bottom: 20px;margin-bottom: 30px;background: #FFF;padding: 20px; border-radius: 5px;border: 1px solid #f5f5f5;box-shadow: 0px 0px 4px rgb(0 0 0 / 3%);}
.messageList dd:last-child{ border-bottom: none; margin-bottom: 0;}
.msgHead{ overflow: hidden; height: 40px; line-height: 40px; font-size: 14px;}
.msgHeadL{float: left; display: inline; color: #333;}
.msgHeadL span{ font-size:14px}
.msgHeadR{float: right; display: inline; font-size: 12px; color: #999; padding-left: 20px; background: url(../images/common/timeIco.png) no-repeat left center / auto 15px;}
.msgText{line-height: 25px;color: #666;font-size: 12px;margin-bottom: 5px;}
.msgReplay{line-height: 25px;color: #666;font-size: 12px;background: #f9f9f9;padding: 10px; border-radius: 5px;}
.msgReplay span{ color: var(--themeColor); font-size: 14px;}
/* 留言展示列表end */
/* 留言表单start */
.messageForm{ margin-right: -40px; font-size: 14px;}
.messageForm:after{ clear:both; content: ''; visibility: hidden; display: block;}
.messageForm .item{ width: 50%; float: left; display: inline; margin-bottom: 15px;}
.messageForm .item.w100p{ width: 100%;}
.messageForm .item .con{ margin-right: 40px;}
.messageForm .item .label{ height: 38px; line-height: 38px;}
.messageForm .item .label span{ color: #da0100;}
.messageForm .item .itemC{ clear: both; min-height: 40px;}
/* 留言表单end */
/* ========== 首页 start ========== */
/* 公共部分 start */
.indexTitle .indexMoreBtn{float: right;right: inherit;line-height: 40px;height: 40px;margin-top: 10px;}
.indexTitle .indexMoreBtn a{padding-left: 50px;display: block; background: url("../images/indexMoreBtn.png") no-repeat left center;font-size: 16px;color: #666666;transition: all 0.3s;-webkit-transition: all 0.3s;}
.indexTitle .indexMoreBtn a:hover{color: #0073bc;background-image: url("../images/indexMoreBtnH.png");}
.indexTitle .titleC{overflow: hidden;}
.indexTitle .titleC .cnTitle{line-height: 40px;height: 40px;font-size: 32px;color: #333333;font-family: 'syst';}
.indexTitle .titleC .enTitle{line-height: 25px;height: 25px;font-size: 16px;color: #999999;font-family: 'syst';}
/* 公共部分 end */
/* 首页第一通栏 start */
.indexColumn1{background-color: #fff;overflow: hidden;}
.indexColumn1C{padding: 45px 0 35px;}
.indexColumn1 .indexTitle{margin-bottom: 15px;}
.indexColumn1CR{float: right;display: inline;width: 28.125%;}
.indexColumn1Scroll{position: relative;padding: 0 20px;box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.15);border-radius: 5px;border-top: 1px solid #dedede;}
.indexColumn1Scroll .bd{overflow: hidden;height: 484px;}
.indexColumn1Scroll .bd .swiper-wrapper .swiper-slide{width: 100%;}
.indexColumn1Scroll .bd .con{display: block;padding: 20px 0;border-bottom: 1px solid #eeeeee;}
.indexColumn1Scroll .bd .con .time{float: left;display: inline;margin-right: 20px;margin-top: 20px;}
.indexColumn1Scroll .bd .con .time .time1{text-align: center;line-height: 28px;height: 28px;font-size: 26px;color: #999999;}
.indexColumn1Scroll .bd .con .time .time2{text-align: center;line-height: 20px;height: 20px;font-size: 16px;color: #999999;}
.indexColumn1Scroll .bd .con .info{overflow: hidden;padding:15px 0 15px 20px;line-height: 25px;height: 50px;position: relative;font-size: 16px;color: #333333;}
.indexColumn1Scroll .bd .con .info::after{display: block;content: "";width: 1px;height: 100%;position: absolute;left: 0;top: 0;background-color: #fff3c3;}
.indexColumn1Scroll .bd .con:hover .time .time1{color: #3370b8;}
.indexColumn1Scroll .bd .con:hover .time .time2{color: #3370b8;}
.indexColumn1Scroll .bd .con:hover .info{ background: linear-gradient(45deg, #3370b8, #865ba4);-webkit-background-clip: text; background-clip: text; color: transparent; }
.indexColumn1Arrow{line-height: 40px;height: 40px;font-size: 0;}
.indexColumn1Prev{display: inline-block !important;width: 16px;height: 100%;background: url("../images/indexC1Icon1.png") no-repeat center center;margin:0 70px;cursor: pointer;}
.indexColumn1Next{display: inline-block !important;width: 16px;height: 100%;background: url("../images/indexC1Icon2.png") no-repeat center center;margin:0 70px;cursor: pointer;}
.indexColumn1CL{float: left;display: inline;width: 69.5%;}
.indexColumn1LScrollCon{width: 60%;float: left;display: inline;}
.indexColumn1LScroll{position: relative;border-radius: 5px;}
.indexColumn1LScroll .bd{overflow: hidden;}
.indexColumn1LScroll .bd .swiper-wrapper .swiper-slide{width: 100%;}
.indexColumn1LScroll .bd .con{display: block;}
.indexColumn1LScroll .bd .con .pic{overflow: hidden;border-radius: 5px 5px 0 0;}
.indexColumn1LScroll .bd .con .pic::before{padding-top: 62.8333%;}
.indexColumn1LScrollC{background-color: #fff;padding: 21px 20px;box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.15);border-radius: 0 0 5px 5px;} 
.indexColumn1LScrollC a{display: block;}
.indexColumn1LScrollC a .title{line-height: 37px;height: 37px;font-size: 18px;color: #333333;overflow: hidden;}
.indexColumn1LScrollC a .info{line-height: 35px;height: 35px;font-size: 14px;color: #858585;margin-bottom: 10px;}
.indexColumn1LScrollC a .time{line-height: 25px;height: 25px;font-size: 16px;color: #999999;}
.indexColumn1LScrollCon:hover .indexColumn1LScrollC a .title{color: #3071b9;}
.indexC1LDot{position: absolute;right: 0;bottom: 0;line-height: 50px;height: 50px;padding: 0 40px;box-sizing: border-box;-webkit-box-sizing: border-box;text-align: right;z-index: 2;}
.indexC1LDot span{background-color: #fff;opacity: 1;transition: all 0.3s;-webkit-transition: all 0.3s;width: 10px;height: 10px;border-radius: 10px;}
.indexC1LDot span.swiper-pagination-bullet-active{background-color: #3071b9;}
.indexColumn1List{float: left;margin-left: 20px;width: 37%;}
.indexColumn1List dd{margin-bottom: 20px;}
.indexColumn1List dd:last-of-type{margin-bottom: 0;}
.indexColumn1List dd a{display: block;background-color: #fff;box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.15);padding: 21px 20px;}
.indexColumn1List dd a .title{line-height: 35px;height: 35px;font-size: 16px;color: #333333;margin-bottom: 5px;}
.indexColumn1List dd a .info{line-height: 20px;height: 40px;overflow: hidden;font-size: 14px;color: #858585;margin-bottom: 15px;}
.indexColumn1List dd a .time{line-height: 25px;height: 25px;font-size: 16px;color: #999999;}
.indexColumn1List dd:hover a .title{background: linear-gradient(45deg, #3370b8, #865ba4);-webkit-background-clip: text; background-clip: text; color: transparent; }
.indexColumn1List dd.active a .title{background: linear-gradient(45deg, #3370b8, #865ba4);-webkit-background-clip: text; background-clip: text; color: transparent; }
/* 首页第一通栏 end */
/* 首页第二通栏 start */
.indexColumn2{background-color: #fff;overflow: hidden;}
.indexColumn2 .indexTitle{margin-bottom: 15px;}
.indexColumn2CR{float: right;display: inline;width: 49.3%;margin-left: 3.45%;}
.indexColumn2CRVideo a{display: block;}
.indexColumn2CRVideo a .pic{overflow: hidden;}
.indexColumn2CRVideo a .pic::before{padding-top: 58.1690%;}
.indexColumn2CRVideo a .pic::after{display: block;content: "";width: 100%;height: 100%;position: absolute;left: 0;top: 0;background: rgba(0, 0, 0, 0.2) url("../images/indexVideoPlay.png") no-repeat center center;}
.indexColumn2CRVideo a .pic .text{line-height: 70px;height: 70px;width: 100%;text-align: center;position: absolute;left: 0;bottom: 0;background-color: rgba(0, 0, 0, 0.3);z-index: 2;font-size: 20px;color: #ffffff;}
.indexColumn2CL{overflow: hidden;}
.indexColumn2List dd{margin-bottom: 30px;}
.indexColumn2List dd:last-of-type{margin-bottom: 0;}
.indexColumn2List dd a{display: block;overflow: hidden;border-radius: 5px;background-image: -moz-linear-gradient( -180deg, rgba(171,82,155,0.99608) 0%, rgba(48,113,185,1) 100%);background-image: -webkit-linear-gradient( -180deg, rgba(171,82,155,0.99608) 0%, rgba(48,113,185,1) 100%);background-image: -ms-linear-gradient( -180deg, rgba(171,82,155,0.99608) 0%, rgba(48,113,185,1) 100%);padding: 18px 0;}
.indexColumn2List dd a .title{padding: 0 20px;line-height: 40px;height: 40px;overflow: hidden;margin-bottom: 5px;font-size: 20px;color: #ffffff;}
.indexColumn2List dd a .info{line-height: 25px;height: 50px;overflow: hidden;font-size: 14px;color: #ffffff;padding: 0 20px;margin-bottom: 20px;}
.indexColumn2List dd a .timeC{line-height: 40px;height: 40px;border-top: 1px solid #c7cade;padding: 0 20px;}
.indexColumn2List dd a .timeC .timeCR{float: right;display: inline;padding-right: 20px;background: url("../images/indexC2Icon1.png") no-repeat right center;font-size: 15px;color: #ffffff;}
.indexColumn2List dd a .timeC .time{overflow: hidden;font-size: 14px;color: #ffffff;}
/* 首页第二通栏 end */
/* 首页第三通栏 start */
.indexColumn3{background-color: #fff;overflow: hidden;}
.indexColumn3C{padding: 45px 0 160px;}
.indexColumn3 .indexTitle{margin-bottom: 15px;}
.indexColumn3ConL{float: left;display: inline;width: 70.1%;margin-right: 2%;box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.15);}
.indexColumn3ConL .pic{overflow: hidden;border-radius: 5px;}
.indexColumn3ConL .pic::before{padding-top: 29.7029%;}
.indexColumn3ConR{overflow: hidden;border-radius: 5px;background: url("../images/indexC3ConBg.png") no-repeat center center;}
.indexColumn3ConR a{display: block;width: 100%;height: 100%;padding: 20px;box-sizing: border-box;-webkit-box-sizing: border-box;}
.indexColumn3ConR a .table{border: 1px dashed #fff;}
.indexColumn3ConR a .conC{padding-left: 40px;}
.indexColumn3ConR a .con{line-height: 65px;height: 65px;padding-left: 100px;background: url("../images/indexC3Icon1.png") no-repeat left center;font-size: 32px;color: #ffffff;}
/* 首页第三通栏 end */

/* 第四通栏 start */
.indexColumn4{
	background-position:top center;
	background-repeat: no-repeat;
	padding: 85px 0 140px;
	position: relative;
}
.indexColumn4::before{
	display: block;
	content: '';
	position: absolute;
	width: 475px;
	height: 475px;
	left: 50%;
	margin-left: -237px;
	top: -145px;
	background: url(../images/indexLogo.png) center center no-repeat;
}
.indexLine{
	position: absolute;
	width: 100vw;
	left: 0;
	height: 1px;
	bottom: 172px;
	background-image: linear-gradient(to right,rgba(0,122,195,1), rgba(171,82,155,.8));
    background-image: -moz-linear-gradient(to right,rgba(0,122,195,1), rgba(171,82,155,.8)); 
    background-image: -webkit-linear-gradient(to right,rgba(0,122,195,1), rgba(171,82,155.8));
    background-image: -ms-linear-gradient( to right,rgba(0,122,195,1), rgba(171,82,155,.8)); 
}
.eventScroll{
	padding: 0 130px;
	position: relative;
	z-index: 5;
}
.eventScrollTab .dot li{
	float: left;
	display: inline;
	width: 20%;
	height: 105px;
	border-radius:0;
	background: none;
	opacity: 1;
	margin: 0 0 !important;
	text-align: center;
	position: relative;
}
.eventScrollTab .dot li .item{
	height: 58px;
	line-height: 58px;
	font-size: 20px;
	color: #333;
}
.eventScrollTab .dot li .item span{
	transition: .4s;
	-webkit-transition: .4s;
}
.eventScroll .bd{
	overflow: hidden;
}
.eventScroll .bd .text{
	padding-bottom: 64px;
	margin: 0 10px;
	overflow: hidden;
	display: flex;
	align-items: center;
}
.eventScroll .bd .pic{
	width: 420px;
	overflow: hidden;
	box-shadow:  0 0 3px 7px rgba(0, 0, 0, 0.1);
	border-radius: 5px;
}
.eventScroll .bd .infor{
	overflow: hidden;
	flex: 1;
	padding-left: 30px;
}
.eventScroll .bd .infor .title{
	height: 46px;
	line-height: 46px;
	font-weight: bold;
	font-size: 16px;
	color: #333;
}
.eventScroll .bd .infor .textC{
	line-height: 26px;
	font-size: 16px;
	color: #333;
}
.eventScrollTab{
	overflow: hidden;
}
.eventScrollTab .dot li em{
	z-index: 5;
	position: absolute;
	width: 16px;
	height: 16px;
	bottom: 25px;
	border-radius: 100%;
	left:50%;
	margin-left: -8px;
	background-image: linear-gradient(to right,rgba(0,122,195,1), rgba(171,82,155,1));
    background-image: -moz-linear-gradient(to right,rgba(0,122,195,1), rgba(171,82,155,1)); 
    background-image: -webkit-linear-gradient(to right,rgba(0,122,195,1), rgba(171,82,155,1));
    background-image: -ms-linear-gradient( to right,rgba(0,122,195,1), rgba(171,82,155,1)); 
}
.eventScrollTab .dot li em::after{
	display: block;
	content: '';
	position: absolute;
	top: -12px;
	right: -12px;
	left: -12px;
	bottom: -12px;
	border: 1px solid rgba(30, 33, 136, .98);
	border-radius: 100%;
	transform: scale(0);
	-webkit-transform: scale(0);
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s;
	-webkit-transition: all 0.3s;
}
.eventScrollTab .dot li.swiper-pagination-bullet-active em::after{
	transform: scale(1);
	-webkit-transform: scale(1);
	opacity: 1;
	visibility: visible;
}
.eventScrollTab .dot li.swiper-pagination-bullet-active span {
	font-size: 28px;
	font-weight: bold;
	background-image: linear-gradient(to right,rgba(0,122,195,1), rgba(171,82,155,.8));
    background-image: -moz-linear-gradient(to right,rgba(0,122,195,1), rgba(171,82,155,.8)); 
    background-image: -webkit-linear-gradient(to right,rgba(0,122,195,1), rgba(171,82,155.8));
    background-image: -ms-linear-gradient( to right,rgba(0,122,195,1), rgba(171,82,155,.8)); 
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.indexColumnBtn4{
	position: absolute;
	width: 40px;
	height: 40px;
	background: #fff;
	border-radius: 100%;
	box-shadow:  0 0 12px 1px rgba(0, 0, 0, 0.2) ;
	cursor: pointer;
	transition: all 0.4s;
	-webkit-transition: all 0.4s;
}
.indexColumnBtn4.prev{
	left: 0;
	bottom: 12px;
}
.indexColumnBtn4.next{
	right: 0;
	bottom: 12px;
}
.indexColumnBtn4::before{
	display: block;
	content: '';
	position: absolute;
	width: 10px;
	height: 10px;
	top: 50%;
	margin-top: -5px;
	border-top: 1px solid #000;
	border-right: 1px solid #000;
	transition: all 0.4s;
	-webkit-transition: all 0.4s;
}
.indexColumnBtn4.prev::before{
	transform: rotate(-135deg);
	-webkit-transform: rotate(-135deg);
	left: 50%;
	margin-left: -3px;
}
.indexColumnBtn4.next::before{
	transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	right: 50%;
	margin-right: -3px;
}
.indexColumnBtn4:hover{
	background: var(--themeColor);
}
.indexColumnBtn4:hover::before{
	border-color: #fff;
}
.eventOuterBox{
	padding: 115px 0 75px;
	position: relative;
}
.eventOuterBox .eventScroll .bd .text{
	margin: 0 150px;
}
.eventLine1{
	position: absolute;
    width: 100vw;
    left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
    height: 1px;
    top: 187px;
	background: #e1e1e1;
}
.eventOuterBox  .eventScrollTab .dot li em{
	background: #d0d0d0;
	transition: all .4s;
	-webkit-transition: all .4s;
}
.eventOuterBox  .eventScrollTab .dot li em{
	background: #504fa1;
}
.eventOuterBox .eventScrollTab .dot li.swiper-pagination-bullet-active span {
	font-size: 28px;
	font-weight: bold;
	background-image: linear-gradient(to right,rgba(98,73,157,1), rgba(71,81,163,.8));
    background-image: -moz-linear-gradient(to right,rgba(98,73,157,1), rgba(71,81,163,.8)); 
    background-image: -webkit-linear-gradient(to right,rgba(98,73,157,1), rgba(71,81,163,.8));
    background-image: -ms-linear-gradient( to right,rgba(98,73,157,1), rgba(71,81,163,.8)); 
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.eventOuterBox  .eventScroll .bd .infor{
	position: relative;
	z-index: 5;
	margin-bottom: 30px;
}
.eventOuterBox .text{
	position: relative;
	padding-top: 50px;
}
.eventOuterBox .textYear{
	position: absolute;
	width: 100%;
	top: -50px;
	left: 0;
	font-size: 230px;
	font-weight: bold;
	color: rgba(208, 208, 208, .5);
	text-align: center;
}
.eventOuterBox .pic{
	margin: 0 auto;
}
.eventOuterBox .eventScroll .indexColumnBtn4{
	bottom: auto;
	top: 50px;
}
/* ========== 首页 end ========== */