/*
 ===============================
 * @authro      : 杨朝杰
 * @created     : 2018-05-26
 * @content     : 文章详细（标题、时间、内容、附件、音频、视频、图组、上下篇）、列表分页、各种列表（文字列表、图文列表、全图列表、...）、人才招聘、留言板
 ===============================
 */
@charset "UTF-8";


/**
 * 文章详细页（标题、时间、内容、附件）
 * @author 杨朝杰
 * @return
 */
.pageBox{
	min-height:300px;
	height:auto !important;
	height:300px;
	clear:both;
	overflow:hidden;
	padding:40px 60px; 
	background:#fff;
	}
.articleTitle{
	padding:20px 150px 10px 150px;
    font-size:32px;
    line-height:46px;
    color:#333;
    text-align: center;
	font-weight:bold;
	}
.articleTime{
    line-height:36px;
    text-align:center;
    font-size:0px;
}
.articleTime .center{
    display: inline-block;
    overflow: hidden;
}
.articleTimeTxt{
    font-size: 14px;
}
.newsShare{
    padding-left: 15px;
    margin-top: 2px;
}
.newsShare span{
    font-size: 14px;
}
.articleBox {
    overflow:hidden;
    font-size: 16px;
    color: #454545;
    line-height: 40px;
	padding:20px 0 0 0;
}
.articleBox img{ max-width:100%;}

.articleHand{
    clear:both;
    font-size:16px;
    overflow: hidden;
	padding:10px 0 0 0;
    }
.articleHand a{
    display:block;
    line-height:32px;
    padding:10px 20px 10px 30px;
    float:left;
	background:url(../images/file.png) no-repeat left center; 
}
.articleHand a.word{background:url(../images/word.png) no-repeat left center; color:#37a6ff !important; }
.articleHand a.ppt,.articleHand a.pptx{background:url(../images/ppt.png) no-repeat left center; color:#ff7735 !important;}
.articleHand a.excel{background:url(../images/excel.png) no-repeat left center; color:#15bf44 !important; }
.articleHand a.pdf{background:url(../images/pdf.png) no-repeat left center; color:#1369c0 !important; }
.articleHand a.zip{background:url(../images/zip.png) no-repeat left center; color:#ff9779 !important; }

.codeBox{
	clear:both;
	background:#fff;
	text-align:center;
	padding:20px;
	}
.codeBox p{
	display:block;
	line-height:40px;
	font-size:14px;
	}
	
/**
 * 文章阅读页-内容上部大图
 */
#play{
    width:800px;
    height:535px;
    position:relative;
    overflow: hidden;
    background:#fff;
    border:1px solid #e9e9e9;
    padding:5px;
    margin:20px auto 0 auto;
}
#play .change_a {
    width:40%;
    height: 100%;
    position: absolute;
    top: 0;
    z-index: 1;
    cursor: pointer;
    display: block;
    overflow: hidden;
    background:url(about:blank);
}
#play .prev_a {left: 0;}
#play .next_a {right: 0}
#play .change_a span {
    width: 24px;
    height: 43px;
    display: block;
    position: absolute;
    top: 50%;
    margin-top: -21px;
    display: none
}
#play .prev_a span {background: url(../images/article_icon.png) no-repeat 0px -50px;left: 0;}
#play .next_a span {background: url(../images/article_icon.png) no-repeat -30px -50px;right: 0;}

#play .img_ul {
    position: relative;
    z-index: 1;
    width:800px;
    height:535px;
}
#play .img_ul li{
    position: relative;
    z-index: 1;
    width:800px;
    height:535px;
    background:#fff;
    margin:0 0 5px 0;
}
#play .img_ul li img{position:absolute;}


.imgMove{width:800px;clear:both;margin:20px auto;position:relative;}

.img_hd {
	margin:0 auto;
	overflow: hidden;
	height:90px;
	position:relative;
}
.img_hd ul {
	position: absolute;
	z-index: 1
}
.img_hd ul li {
	float: left;
	width:124px;
	height:82px;
	padding:3px;
	margin:0 5px;
	cursor: pointer;
	background:#fff;
	border:1px solid #d4d4d4;
	position:relative;
}
.img_hd ul li p{
	width:124px;
	height:82px;
	display:block;
	background:#fff;
	position:relative;
	}
.img_hd ul li i{
	display:block;
	clear:both;
	line-height:20px;
	padding:0 5px;
	background:#000;
	color:#fff;
	position:absolute;
	right:3px;
	bottom:3px;
	z-index:99999999999999;
	filter:alpha(opacity=50);
	-moz-opacity: 0.5;
	opacity: 0.5;
	font-family:Arial;
	font-size:12px;
	font-style:normal;
	}
.img_hd ul li img {position:absolute;width:90px;width:124px;
	height:82px;}
.img_hd ul li.on {border:1px solid #cc0000;background:#cc0000;}
.imgMove .prev_a {margin-top: 15px; display:block;width:30px; height:60px; position:absolute; left:0px; top:0px; background:url(../images/article_icon.png) no-repeat 10px 15px;}
.imgMove .next_a {margin-top: 15px;display:block; width:30px; height:60px; position:absolute; right:0px; top:0px; background:url(../images/article_icon.png) no-repeat -37px 15px;}

.articlePage{
    clear:both;
    text-align:center;
	overflow:hidden;
    }
.articlePage a{
    display: inline-block;
    padding: 8px 15px;
    color: #444;
    border-radius: 2px;
    margin: 0 2px;
    background: #E2E2E2;
    }
.articlePage a:hover,.articlePage a.hover{
    color:#fff;
    background:#666;
    }
	
.pageUp{
	clear:both;
	overflow:hidden;
	line-height:35px;
	font-size:16px;
	padding:20px 0;
}

/**
 * 分享
 * @author 杨朝杰
 * @return
 */
.ShareBox {
	overflow: hidden;
	clear:both;
}
.ShareBox p {
	display: block;
	overflow: hidden;
	float: left;
}
.ShareBox i {
	clear:both;
	display: block;
	font-size:12px;
	color:#666;
	text-align: center;
	overflow: hidden;
	margin:5px 0px;
	display:none;
}
.ShareBox span {
    font-size: 14px;
    line-height: 30px;
	float:left;
}
.ShareBox a{
	padding: 0 !important;
    width: 25px !important;
    height: 25px !important;
    margin: 0 7px 0 0 !important;
	}
.ShareBox .bds_weChat{background: url(../images/share/shareBt5.png) no-repeat center center !important;background-size:100%!important;}
.ShareBox .bds_tsina{background: url(../images/share/shareBt1.png) no-repeat center center !important;background-size:100%!important;}
.ShareBox .bds_tqq{background: url(../images/share/shareBt2.png) no-repeat center center !important;background-size:100%!important;}
.ShareBox .bds_qzone{background: url(../images/share/shareBt3.png) no-repeat center center !important;background-size:100%!important;}
.ShareBox .bds_douban{background: url(../images/share/shareBt4.png) no-repeat center center !important;background-size:100%!important;}
.ShareBox .bds_sqq{background: url(../images/share/shareBt6.png) no-repeat center center !important;background-size:100%!important;}
.ShareBox .f_more{background:url(../images/footShare.png) no-repeat -111px 0px !important;}
	
/**
 * 404页面
 * @author 杨朝杰
 * @return
 */
.alert{width:695px;height:355px;clear:both;position:absolute;left:50%;top:50%;margin:-177px 0 0 -348px;background:url(../images/404.jpg) no-repeat;}
.alertTitle1{clear:both;text-align:center;line-height:40px;font-size:14px;padding:70px 0 0 100px;}
.alertTitle2{clear:both;text-align:center;line-height:40px;font-size:14px;padding:0 0 0 100px;}
.alertTitle2 strong{font-size:20px;padding:0 10px;color:#ff0000;}
.alertBt{width:137px;lin-height:36px;height:36px;border:none;cursor:pointer;position:absolute;left:280px;bottom:75px;color:#454545;font-size:14px;text-align:center;font-family:"microsoft yahei";display:block;background: none;}
.infoInput{line-height:26px;border:1px solid #d7d7d7;outline:medium;padding:3px 0;}
.formlist td{padding:5px 0;}
.buttonface2{width:80px;line-height:26px;cursor:pointer;text-align:center;font-family:"microsoft yahei";font-size:14px;border:1px solid #d7d7d7;}
	
	
/**
 * 列表分页
 * @author 杨朝杰
 * @return
 */
.page{padding:5px 0;text-align: center;clear: both;font-size: 14px;}
.page a{display: inline-block;overflow: hidden;padding:8px 12px;color:#999999;border-radius:3px;background: #fff;}
.page a:hover{background: #cc0000;color: #fff;}
.page a.hover{background: #cc0000;color: #fff;}
.page input{display: inline-block;vertical-align: middle;height: 22px;border: 1px solid #e6e6e6;position: relative; top: -2px;}
.page input.pageDetail{width: 30px; height: 30px; text-align: center; border-radius: 3px; color: #999999; position: relative; top: -13px;}
.page label{color:#999999;position: relative;top: -11px;}
.page input.page_bnt{border: none; width: 30px; height: 25px; cursor: pointer; background: none; color: #999999; position: relative; top: -13px;}

.page a div{
	width: 11px;
    height: 19px;
	background-position: center center;
	background-repeat: no-repeat;
}
.page a.firstPage div{background-image: url(../images/page/firstPage.png)}
.page a.prevPage div{background-image: url(../images/page/prevPage.png)}
.page a.nextPage div{background-image: url(../images/page/nextPage.png)}
.page a.lastPage div{background-image: url(../images/page/lastPage.png)}

.page a.firstPage:hover div{background-image: url(../images/page/firstPageH.png)}
.page a.prevPage:hover div{background-image: url(../images/page/prevPageH.png)}
.page a.nextPage:hover div{background-image: url(../images/page/nextPageH.png)}
.page a.lastPage:hover div{background-image: url(../images/page/lastPageH.png)}

.page a.firstPage.disabled{background:#E2E2E2;}
.page a.prevPage.disabled{background:#E2E2E2;}
.page a.nextPage.disabled{background:#E2E2E2;}
.page a.lastPage.disabled{background:#E2E2E2;}

.page a.firstPage.disabled div{background-image: url(../images/page/firstPage.png)}
.page a.prevPage.disabled div{background-image: url(../images/page/prevPage.png)}
.page a.nextPage.disabled div{background-image: url(../images/page/nextPage.png)}
.page a.lastPage.disabled div{background-image: url(../images/page/lastPage.png)}

/**
 * 全文列表1
 * @author 杨朝杰
 * @return
 */
.textList1{
	clear:both;
	overflow:hidden;
	}
.textList1 dd{
	padding:25px 0;
	overflow:hidden;
	clear:both;
	border-bottom:1px dotted #ccc;
    -o-transition:.3s;
    -ms-transition:.3s;
    -moz-transition:.3s;
    -webkit-transition:.3s;
    transition:.3s;
	}
.textList1 dd .date{
    font-family: Arial;
    border: 1px #ccc solid;
    width:65px;
    margin-right:20px;
	float:left;
    -o-transition:.3s;
    -ms-transition:.3s;
    -moz-transition:.3s;
    -webkit-transition:.3s;
    transition:.3s;
}
.textList1 dd .date span{
    font-size: 30px;
    font-weight: bold;
    background: #ccc;
    line-height: 45px;
    color: #fff;
	display:block;
	text-align:center;
    -o-transition:.3s;
    -ms-transition:.3s;
    -moz-transition:.3s;
    -webkit-transition:.3s;
    transition:.3s;
}
.textList1 dd .date em{
    display: block;
    text-align: center;
	line-height:25px;
	text-align:center;
	color:#565656;
	background:#fff;
}
.textList1 dd .txtBox{
	}
.textList1 dd .txtBox h3{
    font-size: 18px;
    margin-bottom: 5px;
    color: #454545;
    -o-transition:.3s;
    -ms-transition:.3s;
    -moz-transition:.3s;
    -webkit-transition:.3s;
    transition:.3s;
	font-weight:normal;
	}
.textList1 dd .txtBoxCon{
    line-height: 23px;
    height: 46px;
    overflow: hidden;
    color: #848484;
	font-size:14px;
    -o-transition:.3s;
    -ms-transition:.3s;
    -moz-transition:.3s;
    -webkit-transition:.3s;
    transition:.3s;
}
.textList1 dd:hover{ background:#fff;}
.textList1 dd:hover .date{border: 1px #cf261f solid;}
.textList1 dd:hover .date span{ background:#cf261f;}
.textList1 dd:hover .txtBox h3{ color:#cf261f;}
.textList1 dd:hover .txtBoxCon{ color:#666;}

/**
 * 全文列表2
 * @author 杨朝杰
 * @return
 */
.textList2 dd{
	clear: both;
	overflow: hidden;
	height: 72px;
	border-bottom: 1px dotted #dbdbdb;
}
.textList2 dd span{
	display:inline;
	float:right;
	height: 72px;
	font-size:15px;
	color: #666666;
	line-height: 72px;
	background-image: url(../images/icon18.png);
	background-position: right center;
	background-repeat: no-repeat;
}
.textList2 dd .listTit{
	display:block;
	overflow: hidden;
	height: 72px;
	color: #666666;
	line-height: 72px;
	font-size: 16px;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	padding-right: 15px;
}
.textList2 dd .listTit:hover{color: #cf261f}
.textList2 .downBtn{
	background: url(../images/downIco.png) center center no-repeat;
	height: 72px;
	width: 25px;
	float: right;
	display: inline;
	cursor: pointer;
}
.textList2 .downBtn a{
	display: block;
	height: 100%;
}
.textList2 .downBtn:hover{
	background-image: url(../images/downIco_h.png)
}
/**
 * 图文列表1
 * @author 杨朝杰
 * @return
 */
.textImg1{
    border-bottom: 1px solid #ddd;
	position:relative;
	z-index:9;
    background:#fff;
}
.textImg1 dd{
    padding:30px 0;
    -o-transition:.3s;
    -ms-transition:.3s;
    -moz-transition:.3s;
    -webkit-transition:.3s;
    transition:.3s;
	overflow:hidden;
	clear:both;
	border-top:1px solid #e6e6e6;
    position: relative;
    z-index: 3;
}
.animate1 dd:before{
    display: block;
    display: none\9;
    content: "";
    overflow: hidden;
    width: 0px;
    height: 100%;
    position: absolute;
    left: 50%;
    top: 0px;
    /*-webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);*/
    background: #ddd;
    opacity: 0;
    -webkit-transition: all 0.5s linear;
    -o-transition: all 0.5s linear;
    transition: all 0.5s linear;
    z-index: 2;
}
.animate1 dd:after{
    display: block;
    display: none\9;
    content: "";
    overflow: hidden;
    width: 0px;
    height: 100%;
    position: absolute;
    right: 50%;
    top: 0px;
    /*-webkit-transform: translateX(50%);
    -ms-transform: translateX(50%);
    -o-transform: translateX(50%);
    transform: translateX(50%);*/
    background: #ddd;
    opacity: 0;
    -webkit-transition: all 0.5s linear;
    -o-transition: all 0.5s linear;
    transition: all 0.5s linear;
    z-index: 2;
}
.animate1 dd:hover:before,
.animate1 dd:hover:after{
    width: 50%;
    opacity: 1;
}
.animate2 dd:before{
    display: block;
    display: none\9;
    content: "";
    overflow: hidden;
    width: 100%;
    height: 0px;
    position: absolute;
    left: 0px;
    bottom: 50%;
    /*-webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);*/
    background: #ddd;
    opacity: 0;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
    z-index: 2;
}
.animate2 dd:after{
    display: block;
    display: none\9;
    content: "";
    overflow: hidden;
    width: 100%;
    height: 0px;
    position: absolute;
    left: 0px;
    top: 50%;
    /*-webkit-transform: translateX(50%);
    -ms-transform: translateX(50%);
    -o-transform: translateX(50%);
    transform: translateX(50%);*/
    background: #ddd;
    opacity: 0;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
    z-index: 2;
}
.animate2 dd:hover:before,
.animate2 dd:hover:after{
    height: 50%;
    opacity: 1;
}
.animate3 dt{
    width: 0px;
    height: 0px;
    overflow: hidden;
    position: absolute;
    left: 0px;
    top: 0px;
    background: #ddd;
    z-index: 1;
}
.textImg1 dd .wrap{
    position: relative;
    z-index: 3;
} 
.textImg1 dd .picture{
	display:block;
	width:263px;
	height:175px;
	overflow:hidden; 
	position:relative;
    float: left;
	margin:0 20px 0 0;
	}
.textImg1 dd .picture img{
	display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0px;
    top: 0px;
    z-index: 2;
	transform: scale(1);
	-webkit-transition:0.3s; 
	-moz-transition:0.3s; 
	transition:0.3s;
	}
.textImg1 dd .picture .jqthumb{
	transition: 0.4s ease;
}
.textImg1 dd:hover .jqthumb{
	transform: scale(1.05);
}
.textImg1 h3{
    font-size:18px;
    color:#191919;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	padding-top: 8px;
}
.textImg1 p{
	margin:15px 0;
    line-height:30px;
	overflow:hidden;
	font-size:14px;
	color:#848484;
}
.textImg1 dd:hover{
    background:#ddd\9;
}
.textImg1 dd:hover .picture img{transform: scale(1.05)}
.textImg1 dd h6{
	font-weight: normal;
	padding:0 0 0 26px;
	float:left;
	overflow:hidden;
	background:url(../images/date.png) no-repeat left center;
	}
.textImg1 dd h6 span{
	padding:0 0 0 26px;
	margin:0 0 0 20px;
    background: url(../images/read.png) no-repeat left center;
}

/**
 * 图文列表2
 * @author 杨朝杰
 * @return
 */
.textImg2{overflow:hidden;margin: 0px -7px 0 -8px !important;}
.textImg2 dd{
	float:left; 
	width:33.333%; 
	-webkit-animation:gfadeIn 0.6s 0.8s both; 
	-moz-animation:gfadeIn 0.6s 0.8s both; 
	animation:gfadeIn 0.6s 0.8s both;
    transition: all .2s;
    -webkit-transition: all .2s;
    -o-transition: all .2s;
    -moz-transition: all .2s;
	overflow:hidden;
	}
.textImg2 dd:nth-of-type(1){-webkit-animation-delay:0.2s; -moz-animation-delay:0.2s; animation-delay:0.2s;}
.textImg2 dd:nth-of-type(2){-webkit-animation-delay:0.4s; -moz-animation-delay:0.4s; animation-delay:0.4s;}
.textImg2 dd:nth-of-type(3){-webkit-animation-delay:0.6s; -moz-animation-delay:0.6s; animation-delay:0.6s;}
.textImg2 dd:nth-of-type(4){-webkit-animation-delay:0.8s; -moz-animation-delay:0.8s; animation-delay:0.8s;}
.textImg2 dd:nth-of-type(5){-webkit-animation-delay:1s; -moz-animation-delay:1s; animation-delay:1s;}
.textImg2 dd:nth-of-type(6){-webkit-animation-delay:1.2s; -moz-animation-delay:1.2s; animation-delay:1.2s;}
.textImg2 dd:nth-of-type(7){-webkit-animation-delay:1.4s; -moz-animation-delay:1.4s; animation-delay:1.4s;}
.textImg2 dd:nth-of-type(8){-webkit-animation-delay:1.6s; -moz-animation-delay:1.6s; animation-delay:1.6s;}
.textImg2 dd:nth-of-type(9){-webkit-animation-delay:1.8s; -moz-animation-delay:1.8s; animation-delay:1.8s;}
.textImg2 dd:nth-of-type(10){-webkit-animation-delay:2s; -moz-animation-delay:2s; animation-delay:2s;}
.textImg2 dd:nth-of-type(11){-webkit-animation-delay:2.2s; -moz-animation-delay:2.2s; animation-delay:2.2s;}
.textImg2 dd:nth-of-type(12){-webkit-animation-delay:2.4; -moz-animation-delay:2.4; animation-delay:2.4s;}

.textImg2 dd a{
	display:block; 
	height:100%;
	margin:8px 7px 20px 8px;
	background:#fff;
    transition: all .2s;
    -webkit-transition: all .2s;
    -o-transition: all .2s;
    -moz-transition: all .2s;
	}
.textImg2 dd .picture{display:block; padding-top:56.25%; width:100%; overflow:hidden; position:relative;}
.textImg2 dd .picture img{
	-webkit-transition:0.3s; 
	-moz-transition:0.3s; 
	transition:0.3s;
	display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0px;
    top: 0px;
    z-index: 2;
	}	
a .ui-s-cover { background: #000; position: absolute; width: 100%; top: 0; left: 0; height: 100%; filter: alpha(opacity=40); opacity: 0.4; transition: all 0.2s ease-in-out; z-index: 5; }
a:hover .ui-s-cover { filter: alpha(opacity=0); opacity: 0; }	

.ui-s-add{
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: absolute;
    top: -100%;
    left: 0px;
    background: rgba(0,0,0,0.5) url(../images/carImg.png) no-repeat center center;
    z-index: 3;
	-webkit-transition:0.3s; 
	-moz-transition:0.3s; 
	transition:0.3s;
}
a:hover .ui-s-add{top:0;}
.flashBg{
    overflow: hidden;
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: absolute;
    left: 0px;
    bottom: -100%;
    z-index: 1;
    background: #88b829;
	-webkit-transition:0.3s; 
	-moz-transition:0.3s; 
	transition:0.3s;
}
a:hover .flashBg{bottom:0;}

.textImg2 dd .newsText{
	position:relative; 
	height:120px; 
	padding:15px; 
	background:#fff; 
	-webkit-transition:0.3s; 
	-moz-transition:0.3s; 
	transition:0.3s;
	position:relative;
	overflow:hidden;
	}
.textImg2 dd .newsText h2{margin-bottom:10px; color:#333; font-size:18px; font-weight:normal;}
.textImg2 dd .newsText p{height:44px; color:#999; font-size:13px; overflow:hidden; line-height:1.8;}
.textImg2 dd .newsText span{ width:100%;position:absolute; bottom:20px; left:0; color:#999; height:16px; line-height:16px;}
.textImg2 dd .newsText span em{
	display:block;
	line-height:16px;
	float:left;
	padding:0 0 0 20px;
	font-style:normal;
	margin:0 0 0 20px;
	background:url(../images/date.png) no-repeat left center;
	}
.textImg2 dd .newsText span i{
	display:block;
	line-height:16px;
	float:right;
	padding:0 0 0 20px;
	font-style:normal;
	margin:0 20px 0 0;
	color:#999;
	background:url(../images/read.png) no-repeat left center;
	}
.textImg2 dd a:hover{
    box-shadow: 0 0px 15px rgba(0,0,0,0.1);
    -webkit-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    -o-transform: translateY(-5px);
    transform: translateY(-5px);
    transform: translate3d(0, -2px, 0);
    -webkit-transform: translate3d(0, -2px, 0);
    -o-transform: translate3d(0, -2px, 0);
    -moz-transform: translate3d(0, -2px, 0);
}

/**
 * 全图列表1
 * @author 杨朝杰
 * @return
 */
.imgList1{margin: 0 -8px; overflow:hidden;position:relative;}
.imgList1 dd{
	float:left; 
	width:33.3333%; 
	padding:8px 0 20px 0; 
	-webkit-animation:gfadeIn 0.6s 0.8s both; 
	-moz-animation:gfadeIn 0.6s 0.8s both; 
	animation:gfadeIn 0.6s 0.8s both;
    transition: all .2s;
    -webkit-transition: all .2s;
    -o-transition: all .2s;
    -moz-transition: all .2s;
    /*border-radius: 4px;
    box-shadow: 0px 1px 2px 0px #e1e1e1;*/
	overflow:hidden;
	}
.imgList1 dd:nth-of-type(1){-webkit-animation-delay:0.2s; -moz-animation-delay:0.2s; animation-delay:0.2s;}
.imgList1 dd:nth-of-type(2){-webkit-animation-delay:0.4s; -moz-animation-delay:0.4s; animation-delay:0.4s;}
.imgList1 dd:nth-of-type(3){-webkit-animation-delay:0.6s; -moz-animation-delay:0.6s; animation-delay:0.6s;}
.imgList1 dd:nth-of-type(4){-webkit-animation-delay:0.8s; -moz-animation-delay:0.8s; animation-delay:0.8s;}
.imgList1 dd:nth-of-type(5){-webkit-animation-delay:1s; -moz-animation-delay:1s; animation-delay:1s;}
.imgList1 dd:nth-of-type(6){-webkit-animation-delay:1.2s; -moz-animation-delay:1.2s; animation-delay:1.2s;}
.imgList1 dd:nth-of-type(7){-webkit-animation-delay:1.4s; -moz-animation-delay:1.4s; animation-delay:1.4s;}
.imgList1 dd:nth-of-type(8){-webkit-animation-delay:1.6s; -moz-animation-delay:1.6s; animation-delay:1.6s;}
.imgList1 dd:nth-of-type(9){-webkit-animation-delay:1.8s; -moz-animation-delay:1.8s; animation-delay:1.8s;}
.imgList1 dd:nth-of-type(10){-webkit-animation-delay:2s; -moz-animation-delay:2s; animation-delay:2s;}
.imgList1 dd:nth-of-type(11){-webkit-animation-delay:2.2s; -moz-animation-delay:2.2s; animation-delay:2.2s;}
.imgList1 dd:nth-of-type(12){-webkit-animation-delay:2.4; -moz-animation-delay:2.4; animation-delay:2.4s;}

.imgList1 dd a{display:block; margin: 0 8px; height:100%; transition: 0.3s ease;}
.imgList1 dd .picture{
	display:block; 
	padding-top: 66.66666%;
	width:100%; 
	overflow:hidden; 
	position:relative;
}
.imgList1 dd .picture img{
	width:100%;
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	-webkit-transition:0.3s; 
	-moz-transition:0.3s; 
	transition:0.3s;
}	
a .ui-s-cover { background: #000; position: absolute; width: 100%; top: 0; left: 0; height: 100%; filter: alpha(opacity=40); opacity: 0.4; transition: all 0.2s ease-in-out; z-index: 5; }
a:hover .ui-s-cover { filter: alpha(opacity=0); opacity: 0; }	
.imgList1 dd span{
    padding:15px;
    background: #fff;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    transition: 0.3s;
	font-size:15px;
	display:block;
	text-align:center;
	}
.imgList1 dd a:hover{
    box-shadow: 0 0px 10px 0 rgba(0,0,0,0.1);
    -webkit-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    -o-transform: translateY(-5px);
    transform: translateY(-5px);
    transform: translate3d(0, -2px, 0);
    -webkit-transform: translate3d(0, -2px, 0);
    -o-transform: translate3d(0, -2px, 0);
    -moz-transform: translate3d(0, -2px, 0);
}

/*
* 全图列表2
* kis2
*/
.imgDiv{
    display: block;
    padding-top: 66.66667%;
    overflow: hidden;
    position: relative;
}
.imgDiv img{
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0px;
    top: 0px;
}
.scaleImg img{
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.scaleImg:hover img{
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
    transform: scale(1.05);
}

.imgList_dl{
    overflow: hidden;
    margin: 0px -10px;
}
.imgList_dl dd{
    width: 33.333333%;
    overflow: hidden;
    float: left;
    display: inline;
    padding: 10px 0px;
}
.imgListBox{
    overflow: hidden;
    margin: 0px 10px;
    position: relative;
    padding-bottom: 115px;
    -webkit-box-shadow: 0px 0px 5px rgba(0,0,0,0.2);
    box-shadow: 0px 0px 5px rgba(0,0,0,0.2);
}
.imgListDeta{
    overflow: hidden;
    position: absolute;
    left: 0px;
    right: 0px;
    bottom: -80px;
    text-align: center;
    background: #fff;
    padding: 20px 0px;
    -webkit-transition: background 0.3s linear;
    -o-transition: background 0.3s linear;
    transition: background 0.3s linear;
}
.imgListBox .imgDiv{
    padding-top: 58.3941606%;
}
.imgListBox .listName{
    font-size: 18px;
    color:#333;
    overflow: hidden;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.imgListBox .listIntr{
    font-size: 14px;
    color:#666;
    line-height: 25px;
    height: 50px;
    overflow: hidden;
    padding: 10px;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.listBtBox{
    overflow: hidden;
    width: 280px;
    margin: 0px auto;
    border: 1px solid #ddd;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.listBtBox a{
    display: block;
    width: 50%;
    float: left;
    overflow: hidden;
    position: relative;
    font-size: 0px;
    text-align: center;
    height: 50px;
    line-height: 50px;
}
.listBtBox a span{
    display: inline-block;
    font-size: 16px;
    color:#fff;
    padding-left: 35px;
}
.bt1:after{
    display: block;
    content: "";
    width: 1px;
    height: 20px;
    overflow: hidden;
    position: absolute;
    right: 0px;
    top: 50%;
    margin-top: -10px;
    background: #fff;
}
.bt1 span{
    background: url(../images/proIcon.png) no-repeat left center;
}
.bt2 span{
    background: url(../images/VRIcon.png) no-repeat left center;
}
.imgList_dl dd:hover .imgListDeta{
    background: #dd0800;
}
.imgList_dl dd:hover .listBtBox{
    border-color: #fff;
}
.imgList_dl dd:hover .listName,
.imgList_dl dd:hover .listIntr{
    color:#fff;
}

/*
* 全图列表3 3:4
*/
.imgList3{margin: 0px -10px; overflow:hidden;}
.imgList3 dd{
    float:left; 
    width:25%;
    /*border-radius: 4px;
    box-shadow: 0px 1px 2px 0px #e1e1e1;*/
    overflow:hidden;
    padding: 10px 0px;
    }
.imgList3 dd a{
    display:block;
    margin: 0px 10px;
    background:#fff; 
    -webkit-animation:gfadeIn 0.6s 0.8s both;
    -moz-animation:gfadeIn 0.6s 0.8s both; 
    animation:gfadeIn 0.6s 0.8s both;
    transition: all .2s;
    -webkit-transition: all .2s;
    -o-transition: all .2s;
    -moz-transition: all .2s;
}
.imgList3 dd .picture{display:block; width:100%;padding-top:133.333333%; overflow:hidden; position:relative;}
.imgList3 dd .picture img{
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0px;
    top: 0px;
    -webkit-transition:0.3s; 
    -moz-transition:0.3s; 
    transition:0.3s;
    }   
a.ui-s-cover { background: #000; position: absolute; width: 100%; top: 0; left: 0; height: 100%; filter: alpha(opacity=40); opacity: 0.4; transition: all 0.2s ease-in-out; z-index: 5; }
a:hover .ui-s-cover { filter: alpha(opacity=0); opacity: 0; }   
.imgList3 dd span{
    padding:15px;
    background: #fff;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    transition: 0.3s;
    font-size:15px;
    display:block;
    text-align:center;
    }
.imgList3 dd:hover a{
    box-shadow: 0 0px 25px rgba(0,0,0,0.1);
    -webkit-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    -o-transform: translateY(-5px);
    transform: translateY(-5px);
    transform: translate3d(0, -2px, 0);
    -webkit-transform: translate3d(0, -2px, 0);
    -o-transform: translate3d(0, -2px, 0);
    -moz-transform: translate3d(0, -2px, 0);
}

/*
* 全图列表4 16:10
*/
.imgList4{margin: 0px -10px; overflow:hidden;}
.imgList4 dd{
    float:left; 
    width:33.3333333%;
    /*border-radius: 4px;
    box-shadow: 0px 1px 2px 0px #e1e1e1;*/
    overflow:hidden;
    padding: 10px 0px;
    }
.imgList4 dd a{
    display:block;
    margin: 0px 10px;
    background:#fff; 
    -webkit-animation:gfadeIn 0.6s 0.8s both;
    -moz-animation:gfadeIn 0.6s 0.8s both; 
    animation:gfadeIn 0.6s 0.8s both;
    transition: all .2s;
    -webkit-transition: all .2s;
    -o-transition: all .2s;
    -moz-transition: all .2s;
    padding: 10px;
}
.imgList4 dd .picture{display:block; width:100%;padding-top:62.5%; overflow:hidden; position:relative;}
.imgList4 dd .picture img{
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0px;
    top: 0px;
    -webkit-transition:0.3s; 
    -moz-transition:0.3s; 
    transition:0.3s;
    z-index: 2;
    }   
.ui-s-video{ 
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: absolute;
    left: 0px;
    top: 0px;
    z-index: 3;
    background: url(../images/video.png) no-repeat center center;
}
a:hover .ui-s-cover { filter: alpha(opacity=0); opacity: 0; }   
.imgList4 dd span{
    padding:15px 15px 5px 15px;
    background: #fff;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    transition: 0.3s;
    font-size:15px;
    display:block;
    text-align:center;
    }
.imgList4 dd:hover a{
    box-shadow: 0 0px 25px rgba(0,0,0,0.1);
    -webkit-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    -o-transform: translateY(-5px);
    transform: translateY(-5px);
    transform: translate3d(0, -2px, 0);
    -webkit-transform: translate3d(0, -2px, 0);
    -o-transform: translate3d(0, -2px, 0);
    -moz-transform: translate3d(0, -2px, 0);
}

/**
 * 领导列表
 * @author 杨朝杰
 * @return
 */
.leadershipDl dd{
	clear: both;
	overflow: hidden;
	padding: 20px;
	background: #fff;
	height: 280px;
	background-image: url(../images/bg4.jpg);
	background-repeat: no-repeat;
	background-position:220px center;
	margin-bottom: 10px;
}
.leadershipDl dd .pic{
	width: 200px;
	height: 280px;
	overflow: hidden;
	margin-right: 50px;
}
.leadershipDl dd .pic img{
	display: block;
	width: 200px;
	height: 280px;
}
.leadershipDl dd .divR{overflow: hidden}
.leadershipDl dd .divR .divT{
	clear: both;
	height: 40px;
	overflow: hidden;
	line-height: 40px;
	color: #333333;
	font-size: 26px;
	text-align: center;
	text-align: center;
}
.leadershipDl dd .divR .txt{
	width: 660px;
	margin: 0 auto;
	overflow: hidden;
	text-align: left;
	font-size: 16px;
	line-height: 36px;
	color: #666666;
}


/**
 * 人才招聘详细页
 * @author 杨朝杰
 * @return
 */
.jobInfo{
	clear:both;
	overflow:hidden;
	line-height:36px;
    font-size: 16px;
	padding:10px 0 0 0;
	}
.jobTitle{
    font-size: 17px;
    color: #333;
    border-bottom: solid 1px #E7E7E7;
    line-height: 30px;
    margin-top:30px;
    padding-bottom: 10px;
	}
.jobTitle i{
    width: 3px;
    background:#666;
    height: 20px;
    display: block;
    float: left;
    position: relative;
    top: 5px;
    margin-right: 10px;
}
.jobBt{
	clear:both;
    width: 180px;
    height: 50px;
    border-radius: 3px;
    text-align: center;
    line-height: 50px;
    color: #FFFFFF !important;
    background:#cc0000;
    display:block;
    font-size: 18px;
	margin:0 auto;
	-webkit-transition:0.3s; 
	-moz-transition:0.3s; 
	transition:0.3s;
}
.jobBt:hover{background:#f6c016;}
.jobField{clear:both;overflow:hidden;line-height:36px;font-size:16px;padding:15px 0 0 0;}
.jobField dd{width:33%;float:left;}
.jobName{font-weight:bold;font-size:24px;clear:both;padding:0 0 10px 0;}
.jobTime{font-size:14px;line-height:30px;padding:0 0 10px 0;color:#999;border-bottom: solid 1px #E7E7E7;}
/**
 * 人才招聘（应聘表单提交）
 * @author 杨朝杰
 * @return
 */
 .subPopBox {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: fixed;
    left: 0px;
    top:0px;
    background: rgba(0, 0, 0, 0.65);
    filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr='#65000000', endColorstr='#65000000')\9;
    z-index: 999999;
    display: none;
}
.subPopCont {
    width: 790px;
    height: 555px;
    /*overflow: hidden;*/
    border:10px solid #fff;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px;
    background: #fff;
    position: relative;
    left: 50%;
    top:50%;
    margin-left: -395px;
    margin-top: -277px;
}
.joinForm {
    overflow: hidden;
    padding: 20px 40px;
}
.joinFormTit {
    display: block;
    font-size: 24px;
    color:#333;
    text-align: center;
    overflow: hidden;
}
.joinForm_dl {
    overflow: hidden;
}
.joinForm_dl dd {
    clear: both;
    /*height: 32px;
    line-height: 32px;*/
    /*overflow: hidden;*/
    padding-left: 70px;
    position: relative;
    margin-bottom: 10px;
}
.joinFormName {
    display: block;
    width: 70px;
    height: 32px;
    overflow: hidden;
    line-height: 32px;
    text-align: right;
    font-size: 12px;
    color:#444;
    position: absolute;
    left: 0px;
    top:0px;
}
.joinFormName i {
    font-style:normal;
    padding-right:3px;
    color:#cc0000;
}
.joinFormInp {
    display: block;
    width: 203px;
    height: 30px;
    overflow: hidden;
    border:1px solid #ddd;
    padding: 0px 5px;
    font-size: 12px;
    color:#666;
    font-family:"microsoft yahei";
    line-height: 30px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px;
}
.customUpload{
	width: 100% !important;
	height: 100% !important;
}
.joinForm_dl dd label {
    margin-right: 15px;
}
.joinForm_dl dd label span {
    padding-left: 6px;
}
.joinFormInp[disabled="disabled"] {
    background: #fff;
}
.joinForm_dl dt {
    overflow: hidden;
    position: relative;
    padding-left: 70px;
    margin-bottom: 10px;
}
.joinForm_dl dt textarea {
    width: 580px;
    height: 140px;
    overflow-x: hidden;
    overflow-y: auto;
    border:1px solid #ddd;
    padding: 5px 10px;
    font-size: 12px;
    color:#666;
    line-height: 20px;
}
.joinFile {
    display: block;
    width: 110px;
    height: 30px;
    overflow: hidden;
    background: #535353;
    font-size: 14px;
    color:#fff;
    line-height: 30px;
    text-align: center;
}
input.w_100 {
    width: 100px;
}
.joinCode {
    height: 32px;
    overflow: hidden;
    line-height: 32px;
    margin-left: 10px;
}
.joinCode img {
    display: block;
    height: 32px;
    float: left;
}
.joinCode i {
    display: block;
    height: 32px;
    overflow: hidden;
    float: left;
    padding-left: 10px;
    color:#666;
}
.joinCode i:hover {
    color:#d70112;
}
.closeSubPop {
    width: 30px;
    height: 28px;
    overflow: hidden;
    background:url(../images/closeVideoPop.png) no-repeat center center;
    position: absolute;
    right:10px;
    top:10px;
}
.bbsBt {
    display: block;
    width: 90px;
    height: 40px;
    overflow: hidden;
    margin:0px auto;
    text-align: center;
    line-height: 40px;
    font-size: 14px;
    color:#fff !important;
    background: #e75a19;
}

/* 招聘页 start */
.recruitTitle{padding-left: 30px;}
.recruitTitle dd{ font-size: 16px;  float: left;display: inline; width: 110px;height: 60px;line-height: 60px;}
.recruitTitle dd+dd{ text-align: center; margin-left: 75px;}
.recruitList{ overflow: hidden;}
.recruitList dd{ overflow: hidden; margin-bottom: 10px;}
.recruitList dd .recruitT{ overflow: hidden; height: 60px; line-height: 60px; padding: 0 0 0 30px; background: #f5f5f5; color: #656565; cursor: pointer; transition: all .3s; -webkit-transition: all .3s;}
.recruitList dd .recruitT .text{ font-size: 16px; overflow: hidden; float: left; display: inline; width: 110px; margin-right: 75px;}
.recruitList dd .recruitT .text+.text{ text-align: center;}
.recruitList dd .recruitT .btn{ float: right; display: inline; width: 60px; height: 60px; background: url(../images/zpShow.png) no-repeat center center;}
.recruitList dd .recruitC{ overflow: hidden; font-size: 14px; color: #888; line-height: 30px; display: none; padding:20px; background:#FFF;}
.recruitList dd .recruitC strong{color: #333;}
.recruitTable{ font-size: 14px; color: #555555; padding: 0px 0; border-bottom: 1px solid #ddd;}
.recruitTable table{ border:none;}
.recruitTable table tr{ border:none; height: 50px;}
.recruitTable table tr td{ border:none;}
.recruitTable table b{ margin-right: 20px;}
.recruitBtn{ overflow: hidden; padding-top: 20px;}
.recruitBtn a{ border: 1px solid #cf261f; font-size: 16px; overflow: hidden; display: block; height: 50px; line-height: 50px; float: left; display: inline; padding: 0 40px; background: #cf261f; color: #FFF; border-radius: 3px; transition: all .3s; -webkit-transition: all .3s;}
.recruitBtn a:hover{ opacity: 0.9}
.recruitBtn a.btn2{margin-left: 15px; background: none; color: #cf261f;}
.recruitList dd:hover .recruitT{ background: #cf261f; color: #FFF;}
.recruitList dd:hover .recruitT .btn{  background: url(../images/zpShowh.png) no-repeat center center;}
.recruitList dd.active .recruitT{ background: #cf261f; color: #FFF;}
.recruitList dd.active .recruitT .btn{  background: url(../images/zpHide.png) no-repeat center center;}
/* 招聘页 end */

/**
 * 表单
 * @author 杨朝杰
 * @return
 */
.fromBox{overflow:hidden;}
.fromTip{font-size: 14px;color:#999;overflow: hidden;}
.fromTip em{color:#cc3333;padding-right: 5px;}
.form1{clear:both;}
.form1 dd{clear:both;padding:5px 0;}
.form1L{width:115px;height:40px;line-height: 40px;text-align: right;vertical-align: top;color: #666;padding:0 10px 0 0;font-size:14px;float:left;}
.form1L em{color:#cc0000;padding:5px 5px 0 0;font-style:normal;}
.form1Input{width:280px;padding:5px;position:relative;zoom: 1;height:28px;line-height:28px;background: #fff;border: 1px solid #ebebeb;font-size: 14px;color:#888;}
.form1Input[readonly="readonly"]{background: #fafafa;color:#666;}
.form1Input.w400{width:400px;}
.form1Input.w200{width:200px;}
.form1Input.w100{width:100px;}
.codeSrc{margin: 0 0 0 10px;height:40px; cursor: pointer;}
.form1Textarea1{ resize: none; width:400px;height:80px;padding:5px;position:relative;zoom: 1;line-height:20px;background: #fff;border: 1px solid #ebebeb;outline: none;}
.form1Textarea1.w700{width:700px;height:200px;}
.form1R{float:left;}
.form1Bt{overflow:hidden;padding:15px 0 20px 125px;}
.form1Bt a{display: block;height: 34px;background:#cc0000;text-align: center;line-height: 34px;color: #fff !important;font-size:14px;border-radius: 2px;padding:2px 20px;float:left;-o-transition: .3s;-ms-transition: .3s;-moz-transition: .3s;-webkit-transition: .3s;transition: .3s;}
.form1Bt a:hover{opacity: 0.8;}
.form2Bt{text-align: center;}
.form2Bt a{
	display: inline-block;
	width: 150px; 
	margin: 0 10px;
	height: 50px;
	line-height: 50px;
	font-size: 16px;
	color: #fff;
	border-radius: 3px;
	background: #cf261f;
}
.form2Bt a.btn2{
	background: #e6e6e6;
	color: #666;
}
.form2 dd{
	float: left;
	display: inline;
	clear: none;
	margin-bottom: 25px;
}
.form2 .form1L{
	height: 50px;
	line-height: 50px;
}
.form2 .form1Input{
	height: 38px;
	line-height: 38px;
	width: 380px;
}
.form2 .codeSrc{
	height: 50px;
}
/**
 * 留言板
 * @author 杨朝杰
 * @return
 */
.msgTitle{font-size:16px;clear:both;font-weight:bold;color:#000;padding:0 0 10px 0;border-bottom:2px solid #d5d5d5;}
.msgList{clear:both;overflow:hidden;padding:30px 0 0 0;font-size:14px;}
.msgList dd{clear:both;padding:15px 0;overflow:hidden;position:relative;}
.msgTitle{clear:both;line-height:30px;}
.msgTitle span{padding:0 0 0 30px;}
.msgInfo{clear:both;line-height:30px;}
.msgReply{clear:both;line-height:30px; border-top:1px dotted #d5d5d5; margin-top:10px;}
.msgName{width:100px;padding:10px 0 0 0;position:absolute;left:10px;top:10px;}
.msgName strong{display:block;clear:both;font-size:14px;}
.msgName span{display:block;line-height:20px;padding:5px 0 0 0;}
.msgList_r{border:1px solid #d5d5d5;background:#fff;padding:15px;position:relative;-moz-border-radius: 5px; -webkit-border-radius: 5px; border-radius:5px;margin:0 0 0 100px;}
.msgList_jt{width:11px;height:18px;position:absolute;left:-11px;top:20px;background:url(../images/jiantou.jpg) no-repeat;}

/*
* 大事记 begin
* kis2
*/
.eventBox{
    position: relative;
    overflow: hidden;
    padding: 40px 80px;
    background: #fff;
}
.event{
    position: relative;
    padding-bottom: 23px;
}
.event:before{
    content: '';
    display: block;
    height: 100%;
    width: 10px;
    background: #f4f4f4;
    border-radius: 10px;
    position: absolute;
    left: 50%;
    margin-left: -5px;
    top: 0;
}
.event:after{
    content: '';
    display: block;
    height: 23px;
    width: 120px;
    background: #f4f4f4;
    border-radius: 100%;
    position: absolute;
    left: 50%;
    margin-left: -60px;
    bottom: 0;
}
.event dd{
    position: relative;
    overflow: hidden;
    
}
.event dd.odd~dd.odd{
    margin-top: -90px;
}
.event dd.even{
    margin-top: -190px;
}
.event .conBox{
    width: 50%;
    margin:0 -5px 0  0;
    overflow: hidden;
    padding-bottom: 175px;
    position: relative;
    transition: 0.4s ease;
    cursor: pointer;
}
.event dd.odd .conBox{
    background: url(../images/eventIcoL.png) right bottom no-repeat;
}
.event dd.even .conBox{
    background: url(../images/eventIcoR.png) left bottom no-repeat;
}
.event .con{
    background: #f4f4f4;
    border-radius: 5px;
    padding: 20px;
    width: 430px;
    transition: 0.4s ease;
}
.event dd.even .conBox {
    float: right;
    left: -10px;
}
.event dd.odd .conBox {
    right: -5px;
}
.event dd.even .con {
    float: right;
}
.event .title{
    font-size: 20px;
    color: #333;
    line-height: 36px;
}
.event .info{
    font-size: 16px;
    color: #666;
    line-height: 26px;
}
.event .conBox:hover .con{
    background: #ce251e;
}
.event .conBox:hover .title,
.event .conBox:hover .info{
    color: #fff;
}
.event dd.odd .conBox:hover{
    background: url(../images/eventIcoL_h.png) right bottom no-repeat;
}
.event dd.even .conBox:hover{
    background: url(../images/eventIcoR_h.png) left bottom no-repeat;
}