@charset "UTF-8";
/**
 * 框架公共部分
 * author kis2
 * @return
*/
.bc_fff{
	background: #fff;
}
.minH_350{
	min-height: 350px;
	height: auto !important;
	height: 350px;
}

/*
* 顶部1 kis2
*/
.top1{
	overflow: hidden;
	background: #f5f5f5;
	position: relative;
	z-index: 9;
}
.top1L{
	overflow: hidden;
	padding: 20px 0px;
}
.top1_a{
	display: block;
	overflow: hidden;
	padding-right: 20px;
	margin-right: 20px;
	float: left;
	position: relative;
}
.top1_a:after,
.top1_a:before{
	display: block;
	content: "";
	overflow: hidden;
	width: 1px;
	height: 30px;
	position: absolute;
	top: 50%;
	margin-top: -15px;
}
.top1_a:after{
	right: 0px;
	background: #fff;
}
.top1_a:before{
	right: 1px;
	background: #ddd;
}
.top1_a:last-child:after,
.top1_a:last-child:before{
	display: none;
}
.top1_a img{
	display: block;
	height: 45px;
}
.top1R{
	padding: 27px 0px;
	overflow: hidden;
}
.topShare{
	position: relative;
	overflow: hidden;
	padding-right: 10px;
	margin-right: 20px;
}
.topShare:after{
	display: block;
	content: "";
	overflow: hidden;
	width: 1px;
	height: 20px;
	margin-top: -10px;
	background: #ddd;
	position: absolute;
	right: 0px;
	top: 50%;
}
.topShare .bdsharebuttonbox a{
	-webkit-transition: all 0.3s linear;
	-o-transition: all 0.3s linear;
	transition: all 0.3s linear;
	margin: 0px !important;
	margin-right: 5px !important;
	padding: 7px 15px !important;
}
.topShare .bds_tsina{
	background: url(../images/sina.png) no-repeat center center !important;
}
.topShare .bds_tsina:hover{
	background: url(../images/sina_h.png) no-repeat center center !important;
}
.topShare .bds_weixin{
	background: url(../images/wx.png) no-repeat center center !important;
}
.topShare .bds_weixin:hover{
	background: url(../images/wx_h.png) no-repeat center center !important;
}
.top1Search{
	width: 100px;
	overflow: hidden;
	border: 1px solid #ddd;
	border-radius: 28px;
	padding: 0px 40px 0px 10px;
	position: relative;
}
.searchInp{
	display: block;
	height: 28px;
	overflow: hidden;
	border:none;
	background: none;
	outline: none;
	width: 0px;
}
.top1SearchBt{
	display: block;
	width: 100%;
	height: 28px;
	overflow: hidden;
	position: absolute;
	right: 0px;
	top: 0px;
	z-index: 2;
	-webkit-transition: background 0.3s linear;
	-o-transition: background 0.3s linear;
	transition: background 0.3s linear;
	background: url(../images/search.png) no-repeat 10px center;
}
.top1SearchBt:hover{
	background: url(../images/search_h.png) no-repeat 10px center;
}

/*
* 导航 顶部
*/
.top2{
	height: 55px;
	position: relative;
	z-index: 9;
	background: #fff;
}
.menu{
	background: #fff;
	height: 55px;
	width: 100%;
}
.fixedTop{
	position: fixed;
	left: 0px;
	top: 0px;
	z-index: 9;
	box-shadow:  0px 3px 5px rgba(0,0,0,0.1)
}
.menu_dl{
	position: relative;
}
.menu_dl dd{
	width: 12.5%;
	float: left;
	display: inline;
}
.menu_a{
	display: block;
	height: 55px;
	line-height: 55px;
	overflow: hidden;
	position: relative;
	-webkit-transition: all 0.3s linear;
	-o-transition: all 0.3s linear;
	transition: all 0.3s linear;
	text-align: center;
}
.menu_dl dd.hover .menu_a,
.menu_a:hover{
	background: #0072bc;
}
.menu_a i{
	font-size: 15px;
	color:#333;
	-webkit-transition: all 0.3s linear;
	-o-transition: all 0.3s linear;
	transition: all 0.3s linear;
}
.menu_dl dd.hover .menu_a i,
.menu_a:hover i{
	color:#fff;
}

/*
* banner图 kis2
*/
.banner{
	overflow: hidden;
	position: relative;
	padding-top: 47.91666667%;
}
.banner .bd{
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	z-index: 3;
}
.banner_dl{
	overflow: hidden;
	width: 100%;
	height: 100%
}
.banner_dl dd{
	overflow: hidden;
	width: 100%;
	height: 100%;
}
.banner_a{/*图片尺寸参考：1920*920*/
	display: block;
	overflow: hidden;
	padding-top: 47.91666667%;
	position: relative;
}
.bigImg{
	width: 100%;
	height: 100%;
	overflow: hidden;
	position: absolute;
	left: 0px;
	top: 0px;
	z-index: 2;
}
.banner_dl dd:nth-child(2n) .bigImg{
	transform:scale(1);
}
.banner_dl dd:nth-child(2n+1) .bigImg{
	transform:scale(1.1);
}
.banner_dl dd.scaleBig .bigImg{
	-webkit-animation: scaleBig 6s linear forwards;
	-o-animation: scaleBig 6s linear forwards;
	animation: scaleBig 6s linear forwards;
}
@keyframes scaleBig{
	0%  {transform:scale(1)}
	100%{transform:scale(1.1)}
}
.banner_dl dd.scaleSmall .bigImg{
	-webkit-animation: scaleSmall 6s linear forwards;
	-o-animation: scaleSmall 6s linear forwards;
	animation: scaleSmall 6s linear forwards;
}
@keyframes scaleSmall{
	0%  {transform:scale(1.1)}
	100%{transform:scale(1)}
}
.smallImg{
	width: 28.125%;
	height: 100%;
	position: absolute;
	left: 50%;
	top: 100px;
	margin-left: -14.0625%;
	z-index: 3;
	background-size: 100% auto !important;
	opacity: 0;
}
.scaleSmall .smallImg,
.scaleBig .smallImg{
	-webkit-animation: smallImg 0.5s linear forwards;
	-o-animation: smallImg 0.5s linear forwards;
	animation: smallImg 0.5s linear forwards;
}
@keyframes smallImg{
	0%  {top:100px;opacity: 0;}
	100%{top:0px;opacity: 1;}
}
.banner .hd{
	width: 100%;
	overflow: hidden;
	position: absolute;
	left: 0px;
	bottom: 35px;
	text-align: center;
	font-size: 0px;
	z-index: 5;
}
.banner .hd ul{
	display: inline-block;
	overflow: hidden;
}
.banner .hd ul li{
	width: 15px;
	height: 15px;
	overflow: hidden;
	margin: 0px 8px;
	float: left;
	display: inline;
	background: #fff;
	cursor: pointer;
	text-indent: 99em;
	position: relative;
	border-radius: 15px;
	-webkit-transition: all 0.3s linear;
	-o-transition: all 0.3s linear;
	transition: all 0.3s linear;
}
.banner .hd ul li.on{
	background: #0072bc;
}

/*
* 第一通栏 kis2
*/
.row{
	overflow: hidden;
}
.row1L{
	width: 750px;
	overflow: hidden;
	padding: 10px 20px;
	background: #fff;
	margin-right: 35px;
}
.tabBox{
	overflow: hidden;
	position: relative;
	line-height: 40px;
}
.tab_dl{
	overflow: hidden;
	position: relative;
}
.tab_dl dd{
	float: left;
	display: inline;
	overflow: hidden;
	position: relative;
	margin-right: 45px;
}
.tab_a{
	display: block;
	overflow: hidden;
	font-size: 16px;
	color:#666;
	position: relative;
}
.tab_a:after{
	display: block;
	content: "";
	overflow: hidden;
	width: 0px;
	height: 2px;
	background: #0072bc;
	position: absolute;
	left: 50%;
	bottom: 0px;
	opacity: 0;
	visibility: hidden;
	transform: translateX(-50%);
	-webkit-transition: all 0.3s linear;
	-o-transition: all 0.3s linear;
	transition: all 0.3s linear;
}
.tab_dl dd.hover .tab_a:after{
	opacity: 1;
	visibility: visible;
	width: 100%;
}
.tabMore{
	font-size: 12px;
	color:#999;
}
.tabCont{
	overflow: hidden;
	height: 275px;
	position: relative;
}
.tabCont_dl{
	visibility: hidden;
	overflow: hidden;
	transform: translateY(30px);
	opacity: 0;
	position: absolute;
	left: 0px;
	top:0px;
	right: 0px;
	transition: all 0.15s linear;
}
.tabCont_dl.show{
	transition: all 0.3s linear;
	transform: translateY(0px);
	visibility: visible;
	opacity: 1;
	transition-delay: 0.15s;
}
.tabCont_dl dt{
	overflow: hidden;
	padding-bottom: 10px;
}
.tabCont_dl dt .pic{/*图片比例 宽:高=3:2 参考尺寸 600:400 */
	width: 215px;
	overflow: hidden;
	margin-right: 20px;
	padding-top: 0px;
}
.tabCont_dl dt .pic:after{
	display: block;
	content: "";
	overflow: hidden;
	padding-top: 66.6666667%;
}
.hotDeta{
	overflow: hidden;
	padding: 5px 0px;
}
.hotDeta .listIntr{
	line-height: 30px;
	height: 60px;
}
.hotName{
	overflow: hidden;
	font-size: 18px;
	color:#333;
	line-height: 30px;
	font-weight: bold;
	-webkit-transition: all 0.3s linear;
	-o-transition: all 0.3s linear;
	transition: all 0.3s linear;
}
.list_a:hover .hotName{
    color:#0072bc;
}
.hotDeta .listIntr span{
	color:#0072bc;
}
.tabCont_dl dd{
	padding: 10px 0px;
	overflow: hidden;
}
.tabCont_dl dd .listTime{
	padding-left: 20px;
}
.row1R{
	overflow: hidden;
	background: #fff;
}
.tabBox2{
	overflow: hidden;
	background: #fafafa;
	line-height: 60px;
}
.tab_dl2{
	overflow: hidden;
}
.tab_dl2 dd{
	width: 50%;
	overflow: hidden;
	float: left;
	display: inline;
}
.tab_a2{
	display: block;
	overflow: hidden;
	font-size: 16px;
	color:#666;
	text-align: center;
	position: relative;
}
.tab_a2:after{
	display: block;
	content: "";
	overflow: hidden;
	position: absolute;
	left: 50%;
	top: 0px;
	width: 0px;
	height: 3px;
	background: #0072bc;
	transform: translateX(-50%);
	transition: all 0.3s linear;
}
.tab_dl2 dd.hover .tab_a2{
	background: #fff;
	color:#0072bc;
}
.tab_dl2 dd.hover .tab_a2:after{
	width: 100%;
}
.tabCont2{
	height: 275px;
	overflow: hidden;
	position: relative;
	background: #fff;
}
.tabCont2 .tabCont_dl dt{
	padding-bottom: 0px;
}
.tabCont2 .tabCont_dl{
	padding: 0px 20px;
}
.tabCont2 .tabCont_dl .pic{
	width: 125px;
}
.tabCont2 .hotName{
	font-size: 15px;
}

/*
* 第二通栏 kis2
*/
.titBox{
	overflow: hidden;
	font-size: 14px;
	color:#999;
	line-height: 40px;
}
.titBox span{
	font-size: 24px;
	color:#333;
	font-weight: bold;
	padding-right: 15px;
}
.row2Cont{
	/*overflow: hidden;*/
}
.row2_dl{
	/*overflow: hidden;*/
}
.row2_dl:after{
	display: block;
	content: "";
	clear: both;
	visibility: hidden;
}
.row2_dl dd{
	width: 14.2857143%;
	float: left;
	display: inline;
	position: relative;
}
.row2_dl .list_a{
	height: 375px;
	transition: all 0.3s linear;
}
.row2_dl .list_a:after{
	display: block;
	content: "";
	overflow: hidden;
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	background: url(../images/pointBg.png) repeat;
	z-index: 1;
	opacity: 0.2;
}
.row2_dl .list_a:hover{
	transform: scale(1.05);
	box-shadow: 0px 3px 10px rgba(0,0,0,0.4);
	border-radius: 5px;
}
.row2Deta{
	overflow: hidden;
	text-align: center;
}
.row2Deta span{
	display: block;
	height: 30px;
	overflow: hidden;
	background-size: auto 100% !important;
	background-repeat: no-repeat;
	background-position: center;
}
.row2_dl .list_a:hover .row2Deta span{
	animation: row2Span 0.5s linear forwards;
}
.row2_dl .list_a:hover .row2Deta i{
	animation: row2i 0.5s linear forwards;
}
@keyframes row2Span{
	0%  {transform: scale(0) translateY(-30px);opacity: 0;}
	100%{transform: scale(1) translateY(0px);opacity: 1;}
}
@keyframes row2i{
	0%  {transform: scale(0);opacity: 0;}
	100%{transform: scale(1);opacity: 1;}
}
.row2Deta i{
	display: block;
	overflow: hidden;
	font-size: 16px;
	color:#fff;
	padding-top: 10px;
}
.row3Cont{
	overflow: hidden;
	position: relative;
}
.row3_dl{
	height: 350px;
	position: relative;
}
.row3_dl dd{
	position: absolute;
	z-index: 1;
}
.row3Div{
	overflow: hidden;
	width: 100%;
	height: 100%;
}
.row3Box{
	height: 55px;
	line-height: 55px;
	position: absolute;
	left: 0px;
	right: 0px;
	bottom: 0px;
	z-index: 5;
	background-color: rgba(251,54,54,0.8);
}
.row3BoxCenter{
	display: inline-block;
	position: relative;
}
a.row3Name{
	display: block;
	overflow: hidden;
	font-size: 18px;
	color:#fff;
	padding:0px 15px;
}
.row3Cont{
	visibility: hidden;
	opacity: 0;
	position: absolute;
	top: 50%;
	left: 100%;
	overflow: hidden;
	padding-left: 17px;
	transform: translate(50px,-50%);
	transition: all 0.3s linear;
}
.row3Cont.right{
	left: auto;
	right: 100%;
	padding-left: 0px;
	padding-right: 17px;
	transform: translate(-50px,-50%);
}
.row3Cont.show{
	visibility: visible;
	opacity: 1;
	transform: translate(0px,-50%);
}
.row3Cont:after{
	display: block;
	content: "";
	overflow: hidden;
	width: 18px;
	height: 30px;
	position: absolute;
	left: 0px;
	top: 50%;
	margin-top: -15px;
	background: url(../images/trangle1.png) no-repeat center center;
}
.row3Deta{
	width: 350px;
	overflow: hidden;
	border: 1px solid #fff;
	border-radius: 3px;
	background: #fb3636;
}
.row3DetaTit{
	border-bottom: 1px solid #fff;
	overflow: hidden;
	line-height: 35px;
	padding: 0px 10px;
}
.row3DetaTit span{
	font-size: 16px;
	color:#fff;
	display: block;
	overflow: hidden;
	float: left;
}
.row3Close{
	display: block;
	width: 40px;
	height: 40px;
	overflow: hidden;
	background: url(../images/close.png) no-repeat right center;
	float: right;
}
.row3_ul{
	max-height: 150px;
	overflow-x: hidden;
	overflow-y: auto;
	padding: 0px 10px;
}
.row3_ul li{
	line-height: 35px;
	overflow: hidden;
	height: 35px;
}
a.row3_a{
	display: block;
	overflow: hidden;
	font-size: 14px;
	color:#fff;
}
a.row3_a:hover{
	text-decoration: underline;
}
.row3_dl dd.dd2{
	width: 255px;
	height: 175px;
	left: 260px;
	top: 0px;
}

.row3_dl dd.dd1{
	width: 250px;
	height: 350px;
	background: #fb3636;
	left: 0px;
	top: 0px;
}

.row3_dl dd.dd5,
.row3_dl dd.dd5 .row3Div,
.row3_dl dd.dd5 .row3Deta,
.row3_dl dd.dd2,
.row3_dl dd.dd2 .row3Div,
.row3_dl dd.dd2 .row3Deta{
	background-color: #ffae00;
}
.row3_dl dd.dd5 .row3Box,
.row3_dl dd.dd2 .row3Box{
	background-color: rgba(255,174,0,0.8);
}
.row3_dl dd.dd5 .row3Cont:after,
.row3_dl dd.dd2 .row3Cont:after{
	background: url(../images/trangle2.png) no-repeat center center;
}

.row3_dl dd.dd3{
	width: 155px;
	height: 175px;
	left: 525px;
	top: 0px;
}
.row3_dl dd.dd6,
.row3_dl dd.dd6 .row3Div,
.row3_dl dd.dd6 .row3Deta,
.row3_dl dd.dd3,
.row3_dl dd.dd3 .row3Div,
.row3_dl dd.dd3 .row3Deta{
	background-color: #0c79e9;
}
.row3_dl dd.dd6 .row3Box,
.row3_dl dd.dd3 .row3Box{
	background-color: rgba(12,121,233,0.8);
}
.row3_dl dd.dd6 .row3Cont{

}
.row3Cont.right:after{
	left: auto;
	right: 0px;
}
.row3_dl dd.dd6 .row3Cont:after{
	background: url(../images/trangle3_r.png) no-repeat center center;
}
.row3_dl dd.dd3 .row3Cont:after{
	background: url(../images/trangle3.png) no-repeat center center;
}
.row3_dl dd.dd5 .row3Cont:after{
	background: url(../images/trangle2_r.png) no-repeat center center;
}

.row3_dl dd.dd4{
	width: 420px;
	height: 165px;
	left: 260px;
	bottom: 0px;
}
.row3_dl dd.dd4,
.row3_dl dd.dd4 .row3Div,
.row3_dl dd.dd4 .row3Deta{
	background-color: #613cbd;
}
.row3_dl dd.dd4 .row3Box{
	background-color: rgba(97,60,189,0.8);
}
.row3_dl dd.dd4 .row3Cont:after{
	background: url(../images/trangle4.png) no-repeat center center;
}

.row3_dl dd.dd5{
	width: 250px;
	height: 350px;
	background: #ffae00;
	left: 690px;
	top: 0px;
}
.row3_dl dd.dd6{
	width: 250px;
	height: 290px;
	background: #0c79e9;
	right: 0px;
	top: 0px;
}

.row3_dl dt{
	width: 250px;
	overflow: hidden;
	position: absolute;
	right: 0px;
	bottom: 0px;
}
.row3_dl dt a{
	display: block;
	height: 55px;
	overflow: hidden;
	line-height: 55px;
	font-size: 18px;
	color:#fff;
	background: #fb3636;
	text-align: center;
}

/*
* footer kis2
*/
.foot1{
	overflow: hidden;
	background: #333;
	padding: 30px 0px;
}
.foot1R{
	overflow: hidden;
	margin-left: -80px;
}
.foot_dl{
	overflow: hidden;
	float: left;
	display: inline;
	margin-left: 80px;
}
.foot_dl dt{
	line-height: 30px;
	overflow: hidden;
	padding-bottom: 10px;
}
.foot_dl dt a{
	font-size: 14px;
	color:#e5e5e5;
	transition:all 0.3s linear;
}
.foot_dl dd{
	line-height: 30px;
	overflow: hidden;
}
.foot_dl dd a{
	font-size: 12px;
	color:#999;
	transition:all 0.3s linear;
}
.foot_dl a:hover{
	color:#fff;
}
.foot1Code{
	overflow: hidden;
	margin-right: -20px;
}
.footCodeCont{
	overflow: hidden;
	margin-right: 20px;
}
.footCodeCont p{
	background: #fff;
	padding: 3px;
	overflow: hidden;
}
.footCodeCont img{
	display: block;
	width: 100px;
	height: 100px;
}
.footCodeCont i{
	display: block;
	overflow: hidden;
	text-align: center;
	font-size: 12px;
	color:#999;
	padding-top: 10px;
	line-height: 20px;
}
.foot2{
	background: #333;
	overflow: hidden;
	border-top: 1px solid #565656;
	padding: 10px 0px;
	font-size: 12px;
	color:#999;
	line-height: 30px;
}
.foot2 a{
	color:#999;
	-webkit-transition: all 0.3s linear;
	-o-transition: all 0.3s linear;
	transition: all 0.3s linear;
}
.foot2 a:hover{
	color:#fff;
}

/*
* subBanner kis2
*/
.subBanner{
	overflow: hidden;
	position: relative;
}
.subBanner_a{
	display: block;
	height: 300px;
	overflow: hidden;
}

/*
* subMenu kis2
*/
.subMenu{
	overflow: hidden;
	background: #fff;
	-webkit-box-shadow: 0px 1px 3px rgba(0,0,0,0.1);
	box-shadow: 0px 1px 3px rgba(0,0,0,0.1);
}
.subMenu_dl{
	overflow: hidden;
}
.subMenu_dl dd{
	float: left;
	display: inline;
	overflow: hidden;
	margin-right: 40px;
}
.subMenu_a{
	display: block;
	overflow: hidden;
	font-size: 14px;
	color:#666;
	line-height: 50px;
}
.subMenu_dl dd.hover .subMenu_a{
	color:#0072bc;
}

/*
* location kis2
*/
.location{
	line-height: 50px;
	overflow: hidden;
}
.location span{
	padding-left: 20px;
	background: url(../images/home.png) no-repeat center center;
}
.location i{
	padding: 0px 10px;
	background: url(../images/arrowRight.png) no-repeat center center;
}
.location a{
	font-size: 14px;
	color:#666;
	-webkit-transition: all 0.3s linear;
	-o-transition: all 0.3s linear;
	transition: all 0.3s linear;
}
.location a:hover,
.location a:last-child{
	color:#0072bc;
}

/*
* 人才招聘 kis2
*/
.recruit_dl{
	overflow: hidden;
}
.recruit_dl dt{
	overflow: hidden;
	padding: 10px 0px;
}
.recruit_dl span{
	display: block;
	overflow: hidden;
	height: 60px;
	line-height: 60px;
	font-size: 16px;
	color:#666;
	padding: 0px 15px;
	width: 130px;
	float: left;
	text-align: center;
	-webkit-transition: all 0.3s linear;
	-o-transition: all 0.3s linear;
	transition: all 0.3s linear;
}
.recruit_dl dt span{
	font-weight: bold;
}
span.w_300{
	width: 370px;
	text-align: left;
}
.recruit_dl dd{
	padding: 10px 0px;
}
.recruit_a{
	display: block;
	overflow: hidden;
	background: #f5f5f5;
	-webkit-transition: all 0.3s linear;
	-o-transition: all 0.3s linear;
	transition: all 0.3s linear;
}
.recruit_a:hover{
	background: #942227;
}
.recruit_a:hover span{
	color:#fff;
}

/*
* 招聘详情 kis2
*/
.recruitView_dl{
	margin: 0px -10px;
	overflow: hidden;
}
.recruitView_dl dd{
	width: 33.33333%;
	overflow: hidden;
	float: left;
	display: inline;
	padding: 5px 0px;
}
.recruitViewTxt{
	margin: 0px 10px;
	overflow: hidden;
	font-size: 16px;
	color:#666;
	line-height: 30px;
	height: 30px;
}
.recruitViewTit{
	overflow: hidden;
	position: relative;
	padding-left: 12px;
	border-bottom: 1px solid #e2e2e2;
	font-size: 16px;
	color:#333;
	line-height: 40px;
}
.recruitViewTit:after{
	display: block;
	content: "";
	overflow: hidden;
	width: 3px;
	height: 16px;
	background: #666;
	position: absolute;
	left: 0px;
	top: 50%;
	margin-top: -8px;
}
a.formBt{
	display: block;
	width: 150px;
	height: 50px;
	overflow: hidden;
	border-radius: 3px;
	text-align: center;
	line-height: 50px;
	font-size: 16px;
	color:#fff;
	background: #0072bc;
	margin: 0px auto;
	transition: all 0.3s linear;
}
.recruitBt:hover{
	opacity: 0.8;
}
.recruitApply{
	overflow: hidden;
	font-size: 16px;
	color:#d5042c;
	line-height: 35px;
}
.recruitWord{
	font-size: 16px;
	color:#666;
	line-height: 35px;
}
.recruitWord a{
	color: #d5042c;
}

/*
* form kis2
*/
.formBox{
	padding: 50px;
}
.from_dl{
	overflow: hidden;
	margin: 0px -30px;
	padding: 10px 0px;
}
.from_dl dd{
	width: 50%;
	overflow: hidden;
	float: left;
	display: inline;
	padding: 10px 0px;
}
.from_dl dt{
	width: 100%;
	overflow: hidden;
	float: left;
	display: inline;
	padding: 10px 0px;
}
.formCont{
	overflow: hidden;
	margin: 0px 30px;
}
.formL{
	overflow: hidden;
	font-size: 16px;
	color:#555;
	line-height: 40px;
	text-align: right;
	width: 80px;
}
.formR{
	overflow: hidden;
}
.required{
	overflow: hidden;
	font-size: 16px;
	color:#d6000f;
	padding: 0px 10px;
	line-height: 40px;
}
.formC{
	overflow: hidden;
}
.formDiv{
	overflow: hidden;
	padding: 0px 10px;
	border: 1px solid #e2e2e2;
	border-radius: 3px;
}
.formInp{
	width: 100%;
	height: 38px;
	overflow: hidden;
	font-size: 14px;
	color:#666;
	line-height: 38px;
	border:none;
	background: none;
	outline: none;
}
.formArea{
	display: block;
	width: 100%;
	height: 125px;
	font-size: 14px;
	color:#666;
	line-height: 25px;
	border: none;
	outline: none;
	background: none;
	padding: 5px 0px;
	resize: none;
}
.code{
	display: block;
	overflow: hidden;
	margin: 0px 10px;
}
.code img{
	display: block;
	height: 40px;
}
.formBox .formBt{
	margin-left: 80px;
}
.formLabel{
	display: block;
	overflow: hidden;
	margin: 0px 15px;
	position: relative;
}
.formCheck{
	width: 100%;
	height: 100%;
	overflow: hidden;
	position: absolute;
	left: 0px;
	top: 0px;
	opacity: 0;
}
.labelTxt{
	height: 40px;
	overflow: hidden;
	line-height: 40px;
	padding-left: 25px;
	font-size: 16px;
	color:#666;
	background: url(../images/radio.png) no-repeat left center;
}
.formLabel.checked .labelTxt{
	background: url(../images/radio_h.png) no-repeat left center;
}
.formTit{
	font-size: 24px;
	color:#555;
	text-align: center;
	line-height: 30px;
	font-weight: bold;
}

/*
* 回复列表 kis2
*/
.msgDnList{ overflow: hidden;border-top: 1px solid #dedede;}
.msgDnList dd{ overflow: hidden; padding: 25px 0; border-bottom: 1px solid #dedede;}
.msgDnList dd .conL{ overflow: hidden; width: 107px; height: 28px; margin-right: 10px; font-size: 18px; text-align: center; line-height: 36px; color:#333}
.msgDnList dd .conR{ overflow: hidden; color: #555555; font-size: 16px; line-height: 36px;}
.msgDnList dd .con1{ margin-bottom: 20px;}
.msgDnList dd .con2{ color: #d6000f;}

/*
* 旅游在云南 kis2
*/
.local_dl{
	overflow: hidden;
	background: #fff;
	-webkit-box-shadow: 0px 0px 10px rgba(0,0,0,0.1);
	box-shadow: 0px 0px 10px rgba(0,0,0,0.1);
	margin: 0px -20px;
	border-radius: 5px;
	padding: 15px 0px;
}
.local_dl dt{
	overflow: hidden;
	line-height: 30px;
	border-bottom: 1px solid #ddd;
	padding: 0px 0px 10px 0px;
	margin-bottom: 10px;
}
.local_dl dt a{
	font-size: 16px;
	color:#333;
	font-weight: bold;
}
.local_dl dd{
	width: 33.333333%;
	float: left;
	display: inline;
	line-height: 30px;
	overflow: hidden;
	padding: 5px 0px;
}
.local_dl a{
	font-size: 14px;
	color:#666;
	overflow: hidden;
	margin: 0px 20px;
	transition: all 0.3s linear;
}
.local_dl a:hover{
	color:#0072bc;
}

/*
* 主营业务 频道页
*/
.businessBox{
    width: 100%;
    overflow: hidden;
    position: relative;
    /*background: url(../images/busineBg.jpg) repeat;*/
}
.busine_dl{
    width: 3000px;
    height: calc(100vh - 80px);
    overflow: hidden;
}
.busine_dl dd{
    height: 100%;
    width: 0px;
    overflow: hidden;
    float: left;
    display: inline;
    position: relative;
    text-align: center;
    font-size: 0px;
    margin-right: 0px;
}
.busineDiv{
    overflow: hidden;
    position: relative;
    height: 100%;
}
.busine_dl .center{
    display: inline-block;
}
.busine_dl .tableCell{
    z-index: 3;
    position: relative;
}
.busiShadow{
    display: none\9;
    display: none\9\0;
    width: 1080px;
    height: 1080px;
    overflow: hidden;
    background: rgba(25,72,136,0.6);
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 1;
    margin: -540px 0px 0px -540px;
    -webkit-transition: all 0.5s linear;
    -o-transition: all 0.5s linear;
    transition: all 0.5s linear;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
    border-radius: 100%;

}
.busine_dl dd:hover .busiShadow{
    display: block\9;
    display: block\9\0;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}
.busiBg{
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: absolute;
    left: 0px;
    top: 0px;
    z-index: 0;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    /*transition: all 0.3s linear;
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
    transform: scale(1.05);*/
}
.busiIcon{
    display: block;
    width: 128px;
    height: 128px;
    overflow: hidden;
    margin: 0px auto;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
    border-radius: 100%;
    position: relative;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
    background-color: rgba(25,72,136,0.8);
}
.busiIcon em{
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0px;
    top: 0px;
    overflow: hidden;
    z-index: 3;
    -webkit-transition: all 0.8s linear;
    -o-transition: all 0.8s linear;
    transition: all 0.8s linear;
    background-repeat: no-repeat;
    background-position: center;
}
.busine_dl dd.dd1 .busiIcon em{
    background: url(../images/busiChannelIcon1.png) no-repeat center center;
}
.busine_dl dd.dd2 .busiIcon em{
    background: url(../images/busiChannelIcon2.png) no-repeat center center;
}
.busine_dl dd.dd3 .busiIcon em{
    background: url(../images/busiChannelIcon3.png) no-repeat center center;
}
.busine_dl dd.dd4 .busiIcon em{
    background: url(../images/busiChannelIcon4.png) no-repeat center center;
}
.busine_dl dd.dd5 .busiIcon em{
    background: url(../images/busiChannelIcon5.png) no-repeat center center;
}
.busine_dl dd.dd6 .busiIcon em{
    background: url(../images/busiChannelIcon6.png) no-repeat center center;
}
.busine_dl dd:hover .busiIcon em{
    -webkit-transform: rotateY(360deg);
    -ms-transform: rotateY(360deg);
    -o-transform: rotateY(360deg);
    transform: rotateY(360deg);
}
/*.busiIcon i{
    display: block;
    display: none\9;
    display: none\0;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0px;
    top: 0px;
    overflow: hidden;
    background: #d6000f;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
    z-index: 1;
    opacity: 0;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
    border-radius: 100%;
}
.busine_dl dd:hover .busiIcon i{
    display: block\9;
    display: block\0;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    opacity: 1;
}*/
.busine_dl dd:hover .busiIcon{
    border-color:#d6000f;
}
.busiName{
    font-size: 18px;
    color:#333;
    line-height: 24px;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.busiIntr{
    font-size: 14px;
    color:#999;
    line-height: 24px;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
/*.busine_dl dd.dd2:hover .busiName,
.busine_dl dd.dd2:hover .busiIntr,
.busine_dl dd.dd6:hover .busiName,
.busine_dl dd.dd6:hover .busiIntr{
    color:#333;
}*/
.busine_dl dd:hover .busiBg{
    /*-webkit-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);*/
}
.busiTxtCont{
    width: 100%;
    overflow: hidden;
    background: #fff;
    position: absolute;
    left: 0px;
    bottom: 0px;
    z-index: 5;
    text-align: center;
    padding: 15px 0px;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.busine_dl dd.dd1 .busiTxtCont{
    background: #fdf4f9;
}
.busine_dl dd.dd2 .busiTxtCont{
    background: #edeffb;
}
.busine_dl dd.dd3 .busiTxtCont{
    background: #edf6fb;
}
.busine_dl dd.dd4 .busiTxtCont{
    background: #f8ecfd;
}
.busine_dl dd.dd5 .busiTxtCont{
    background: #fcfaec;
}
.busine_dl dd.dd6 .busiTxtCont{
    background: #fdf0e9;
}
.busine_dl dd:hover .busiTxtCont{
    background: #0072bc;
}
.busine_dl dd:hover .busiName,
.busine_dl dd:hover .busiIntr{
    color:#fff;
}
.busiMore{
    display: none\9;
    display: none\9\0;
    width: 130px;
    height: 40px;
    overflow: hidden;
    border: 1px solid #fff;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px;
    font-size: 14px;
    color:#fff;
    text-align: center;
    line-height: 40px;
    margin: 0px auto;
    -webkit-transform: translateY(100%);
    -ms-transform: translateY(100%);
    -o-transform: translateY(100%);
    transform: translateY(100%);
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
    opacity: 0;
}
.busine_dl dd:hover .busiMore{
    display: block\9;
    display: block\9\0;
    -webkit-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px);
    opacity: 1;
}
.busineDiv {
    overflow: hidden;
    position: relative;
    height: 100%;
}

/*
* 联系我们 kis2
*/
.contactDeta{
	width: 1200px;
	overflow: hidden;
	background: #fff;
	padding: 50px 20px;
	border-radius: 6px;
	-webkit-box-shadow: 0px 0px 5px rgba(0,0,0,0.1);
	box-shadow: 0px 0px 5px rgba(0,0,0,0.1);
	position: absolute;
	left: 50%;
	margin-left: -600px;
	top: 330px;
	z-index: 6;
}
.contactDetaTit{
	font-size: 24px;
	color:#0072bc;
	line-height: 40px;
	text-align: center;
	overflow: hidden;
}
.contactDeta_ul{
	overflow: hidden;
}
.contactDeta_ul li{
	width: 33.333333%;
	overflow: hidden;
	float: left;
	display: inline;
	text-align: center;
	position: relative;
}
.contactDeta_ul li:after{
	display: block;
	content: "";
	overflow: hidden;
	width: 1px;
	height: 80px;
	background: #ddd;
	position: absolute;
	right: 0px;
	top: 50%;
	margin-top: -40px;
}
.contactDeta_ul li.li3:after{
	display: none;
}
.contactDeta_ul li span{
	display: block;
	overflow: hidden;
	height: 50px;
	background-size: auto 100% !important;
}
.contactDeta_ul li i{
	display: block;
	overflow: hidden;
	font-size: 16px;
	color:#666;
	line-height: 30px;
	padding-top: 30px;
}
.contactDeta_ul li em{
	display: block;
	overflow: hidden;
	font-size: 14px;
	color:#666;
	line-height: 30px;
}
.li1 span{
	background: url(../images/tel2.png) no-repeat center center;
}
.li2 span{
	background: url(../images/email2.png) no-repeat center center;
}
.li3 span{
	background: url(../images/address2.png) no-repeat center center;
}
.contactMap{
	height: calc(100vh - 440px);
	overflow: hidden;
	position: relative;
}
#allmapmapcontact{
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0px;
	top: 0px;
	overflow: hidden;
}

/*
* 三级 kis2
*/
.screenBox{
    padding:10px 0; 
    overflow:hidden;
    font-size:15px;
}
.screenBox_dl{float:left;display:inline;overflow:hidden;margin: 0px -5px;padding:5px 0px;}
.screenBox_dl dt,
.screenBox_dl dd{
    float:left;
	overflow:hidden;
	padding: 5px;
    }
.screenBox_dl dt a,
.screenBox_dl dd a{
    line-height:40px;
    display: block;
    font-size: 14px;
    color:#999;
    background:#fff;
    text-decoration: none;
    padding: 0 15px;
    border-radius: 2px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    -moz-transition: 0.3s;
    transition: 0.3s;
    transition: 0.3s;
    transition: 0.3s;
}
.screenBox_dl dt.hover a ,.bottombar dl dt a:hover,
.screenBox_dl dd.hover a ,.bottombar dl dd a:hover{
    background:#0072bc;
    color: #fff;
}

/*
* 友情链接 kis2
*/
.frend_dl{
	overflow: hidden;
	padding: 1px 0px 0px 1px;
}
.frend_dl dd{
	width: 16.666667%;
	overflow: hidden;
	float: left;
	display: inline;
	margin: -1px 0px 0px -1px;
}
.frend_dl .list_a{
	display: block;
	height: 50px;
	overflow: hidden;
	border: 1px solid #ddd;
	text-align: center;
}
/*
* 图片处理 
*/
.object{
    position: absolute;
    left: 0px;
    top: 0px;
    overflow: hidden;
    width: 100%;
    height: 100%;
}
.object img{
    overflow: hidden;
    width: 100%;
    height: 100%;
}
.fill img{ object-fit: fill; }/*填充：不保持图片比例*/
.contain img{ object-fit: contain; }/*包含: 保持比例以最大边填满空间，最小边空白会留有*/
.cover img{ object-fit: cover; }/*覆盖：保持比例以最小边填满空间,超出部分截取*/
.none img{ object-fit: none; }
.scale-down img{ object-fit: scale-down; }

/*
* 旅游用车 
*/
.carList{
	overflow: hidden;
	position: relative;
}
.carList .bd{
	margin: 0 -10px;
}
.carList .bd dd{
	width: 25%;
	padding: 10px 0;
	float: left;
	display: inline;
}
.carList .bd .list_a{
	display: block;
	margin: 0 10px;
	padding: 10px;
	background-color: #fff;
	transition: 0.4s;
	border-radius: 3px;
}
.carList .listTit{
	line-height: 30px;
	font-size: 16px;
	color: #333;
	padding-bottom: 10px;
}
.carList .pic{
	border-radius: 3px;
}
.carList .listIntr{
	line-height: 28px;
	color: #999;
	font-size: 14px;
	height: 84px;
	overflow: hidden;
	padding: 15px 5px 5px 5px;
}
.carList .bd .list_a:hover{
	transform: translateY(-4px);
	box-shadow: 0 0 10px 0 rgba(0,0,0,0.1);
}
.carList .prev,
.carList .next{
	position: absolute;
	top: 43%;
	margin-top: -25px;
	width: 30px;
	height: 50px;
	cursor: pointer;
	z-index: 9;
	border-radius: 2px;
	transition: 0.4s;
}
.carList .prev{
	left: -30px;
	background: rgba(0,0,0,0.5) url(../images/arrowL.png) center center no-repeat;
}
.carList .next{
	right: -30px;
	background: rgba(0,0,0,0.5) url(../images/arrowR.png) center center no-repeat;
}
.carList:hover .prev{
	left: 0;
}
.carList:hover .next{
	right: 0;
}