@charset "utf-8";
/*!
 * @名称：base.css
 * @功能：1、重设浏览器默认样式
 *       2、设置通用原子类
 */
/* 防止用户自定义背景颜色对网页的影响，添加让用户可以自定义字体 */
html {
    background:white;
}
/* 内外边距通常让各个浏览器样式的表现位置不同 */
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,legend,input,textarea,p,blockquote,th,td,hr,button,article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section {
    margin:0;
    padding:0;
}
/* 要注意表单元素并不继承父级 font 的问题 */
body,button,input,select,textarea,a {
    font:14px "微软雅黑",arial,sans-serif;
}
body{
    line-height: 1.5;
    color: #444;
    min-width: 1200px;
}
input,select,textarea {
    font-size:100%;
}
/* 去掉 table cell 的边距并让其边重合 */
table {
    border-collapse:collapse;
    border-spacing:0;
}
/* ie bug：th 不继承 text-align */
th {
    text-align:inherit;
}
/* 去除默认边框 */
fieldset,img {
    border:none;
}
/* ie6 7 8(q) bug 显示为行内表现 */
iframe {
    display:block;
}
/* 去掉 firefox 下此元素的边框 */
abbr,acronym {
    border:none;
    font-variant:normal;
}
/* 一致的 del 样式 */
del {
    text-decoration:line-through;
}
address,caption,cite,code,dfn,em,th,var {
    font-style:normal;
    font-weight:500;
}
/* 去掉列表前的标识，li 会继承 */
ol,ul {
    list-style:none;
}
/* 对齐是排版最重要的因素，别让什么都居中 */
caption,th {
    text-align:left;
}
/* 来自yahoo，让标题都自定义，适应多个系统应用 */
h1,h2,h3,h4,h5,h6 {
    font-size:100%;
    font-weight:500;
}
q:before,q:after {
    content:'';
}
/* 统一上标和下标 */
sub,sup {
    font-size:75%;
    line-height:0;
    position:relative;
    vertical-align:baseline;
}
sup {
    top:-0.5em;
}
sub {
    bottom:-0.25em;
}
a{color: #444;}
/* 让链接在 hover 状态下显示下划线 */
a:hover {
    text-decoration:none;
    color: #bc2028;
}
/* 默认不显示下划线，保持页面简洁 */
ins,a {
    text-decoration:none;
}
/* 去除 ie6 & ie7 焦点点状线 */
a:focus,*:focus {
    outline:none;
}
/* 清除浮动 */
.clearfix:before,.clearfix:after {
    content:"";
    display:table;
}
.clearfix:after {
    clear:both;
    overflow:hidden;
}
.clearfix {
    zoom:1; /* for ie6 & ie7 */
}
.clear {
    clear:both;
    display:block;
    font-size:0;
    height:0;
    line-height:0;
    overflow:hidden;
}
.topnav{
	height: 146px;
	/*line-height: 146px;*/
	font-size: 12px;
	color: #666;
}
.topnav .inner{
	width: 1200px;
	margin: 0 auto;
}
.topnav .logo{
	float: left;
	height: 102px;
	vertical-align: middle;
	width: 473px;
	margin-left: 25px;
	margin-top: 22px;
}
.topnav .logo img{
	width: 101px;
	height: 102px;
	display:inline-block;
	float: left;
}
.topnav .logo .logtext{
	width: 348px;
	display:inline-block;
	float: right;
	height: 102px!important;
}
.topnav .logo .logtext span{
	font-size: 30px;
	color: #bc2028;
	line-height: 50px!important;
	height: 50px!important;
	width: 100%;
	font-weight: bold;
}

.topnav .search{
	width:292px;
	height:42px;
	margin-top:52px;
	margin-right: 10px;
	position:relative;
	float:right;
	background:url(../images/search_bg.png) left top no-repeat;
}
.topnav .search input{
	padding:2px;
	width:240px;
	border:none;
	background-color:none;
	position:absolute;
	left:10px;
	top: 10px;
}
.topnav .search .button_search{
	width: 20px;
	height:17px;
	display:block;
	position:absolute;
	right: 6px;
	top: 12px;
}

.bodybg{
}
.head{
	position: relative;
	width:100%;
	height:50px;
	/*background: rgba(0,0,0,0.3);*/
	z-index: 99;
}
.topframe{
	width:1200px;
	height:130px;
	margin:0 auto;
	padding-top:20px;
	position:relative;
}
.topLeft{
	float:left;
	margin-left: 15px;
}
.topLeft .logo_zgzj img{
	margin-top:6px;
	width:340px;
}
.topLeft .sdck{
	font-size:16px;
	color:#fff;
	float:left;
	margin-left:30px;
	margin-top:35px;
	cursor:pointer;
}
.topLeft .sdck img{
	padding-left:8px;
	vertical-align:middle;
	-webkit-transition: -webkit-transform 0.4s ease-out; 
    -moz-transition: -moz-transform 0.4s ease-out; 
    transition: transform 0.4s ease-out; 
}
.topLeft .sdck:hover img{
	-webkit-transform: rotate(-360deg); 
    -moz-transform: rotate(-360deg); 
    transform: rotate(-360deg);
}
.topLeft .logo_zgzj{
	display:block;
	float:left;
}
.topRight{
	float:right;
	margin-top:20px;
}
.topRight .logo_zjzw{
	float:left;
	width:161px;
	display:inline-block;
	margin-top:10px;
	margin-left:20px;
}
.topRight .search{
	width:240px;
	height:30px;
	margin-top:30px;
	position:relative;
	float:left;
	background:url(../images/search_bg.png) left top no-repeat;
}
.topRight .search input{
	padding:2px;
	width:180px;
	border:none;
	background-color:none;
	position:absolute;
	left:10px;
	top:4px;
}
.topRight .search .button_search{
	width:18px;
	height:17px;
	display:block;
	position:absolute;
	right:4px;
	top:9px;
}
.banner_logo .topbot{
	float: left;
	width: 100%;
	margin-top: 15px;
	margin-left: 15px;
}
#main_nav{
	width:100%;
	height:50px;
	line-height:50px;
	margin:0 auto 0 auto;
	position:relative;
	/*background: rgba(0,0,0,0.3);*/
	background-color: #bc2028;
	z-index:99;
}
#main_nav ul{
	width:1200px;
	margin:0 auto;
}
#main_nav ul li{
	float:left;
	padding:0 50px;
	font-size:16px;
	height:50px;
	line-height:50px;
	position:relative;
	text-align:center;
}
#main_nav ul li a{
	font-size:16px;
	color:#eecbcb;
}
#main_nav ul li a:hover{
	color:#fff;
}
#main_nav ul .item>a{
	color:#fff;
	font-weight: bold;
	border-bottom: 3px solid #fff;
	line-height: 47px;
	height: 47px;
	display: inline-block;
}
#main_nav li ul {
	position: absolute;
	top: 40px;
	left: 15px;
	display: none;
	z-index:999;
}
.navbg{
	width:100%;
	height:40px;
	position:absolute;
	top:180px;
	z-index:888;
	border:1px solid #d3d3d3;
	background:#f6f6f6;
	display:none;
}

#main_nav ul .focus {
}
#main_nav ul .focus>a{
	color:#fff;
}
#main_nav li ul li{
	padding:0;
}
#main_nav ul li .current1{
	width:130px;
	margin-top:5px;
	padding:25px 0 10px 0;
	background:url(../images/nav_arrow1.png) center 5px no-repeat;
}
#main_nav ul li .current1>li{
	width:100%;
}
#main_nav li ul li{
	height:40px;
	line-height:40px;
}
#main_nav li ul li a{
	width:102px;
	height:40px;
	line-height:40px;
	display:inline-block;
	font-size:14px;
	color:#fff!important;
}
#main_nav li ul li a:hover{
	background:#fff;
	color:#bc2028!important;
}
.bannerdiv{
	width:100%;
	height:375px;
	z-index:0;
	background-color:#f6f6f6;
}

.mainbg{
	width:1200px;
	height:455px;
	background-color:#fff;
	 filter:alpha(opacity=50);  
      -moz-opacity:0.5;  
      -khtml-opacity: 0.5;  
      opacity: 0.5;
	  position:absolute;
	  top:0px;
	  left:0px;
	  box-shadow:0 0 10px #ccc; 
}


.friendlink select{
	margin:0 10px;
	height:30px;
	width:200px;
	border:none;
}
.friendlink{
	width:1200px;
	margin:0px auto;
	padding-top: 20px;
	position: relative;
    z-index: 22;
}
.friendlink h3{
	height: 94px;
    background: url(../images/friendlink-bg.png) no-repeat 0px 0px;
	position:relative;
	z-index:10;
} 
.friendlink h3 .title{
	font-size:18px;
	font-weight:bold;
	color:#e42d30;
	height:50px;
	display:inline-block;
	width:120px;
	text-align:center;
	border-bottom:3px solid #e42d30;
}
.piclink { overflow: hidden;padding-top: 0px;zoom: 1; margin:30px 0; width:1200px; height:35px;}
.piclink .LeftBotton {	
	background: url(../images/index_23.gif) no-repeat 0px 0px; 
	left:0px; 
	float: left; 
	width: 29px; 
	cursor: pointer; 
	position: absolute; 
	top: 15px; 
	height: 46px
}
.piclink .LeftBotton:hover{
	background: url(../images/index_25.gif) no-repeat 0px 0px; 
}
.piclink .RightBotton {
	right: 10px;
	background: url(../images/index_24.gif) no-repeat 0 0px;
	width: 29px;
	cursor: pointer;
	position: absolute;
	top: 15px;
	height: 46px;
	right:0px;
}
.piclink .RightBotton:hover{
	background: url(../images/index_26.gif) no-repeat 0px 0px; 
}

.piclink .Cont{
	margin:0 auto;
	text-align:center;
}
.piclink .Cont a{
	color:#a37e61;
	height:35px;
	line-height:35px;
	font-weight:bold;
	display:inline-block;
	padding:0 15px;
	font-size:16px;
}
.piclink .Cont a:hover{
	color:#905528;
}
/*.piclink .picbox img {  display: block; padding:0px;  margin: 0px auto;transition-duration: 0.5s; width:100%; height:65px;}
.piclink .picbox a:hover img { 
	transform: scale(1.2);
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
}
*/.fontlink{
	width:100%;
	text-align:center;
	margin-top:20px;
}
.bottomframe{
	width:100%;
	/*height:100px;*/
	margin-top: 80px;
	line-height:30px;
	text-align:center;
	background-color: #575453;
}
.bottomframe .bqsy{
	padding: 30px 0;
	color: #d5cdc9;
	line-height: 30px;
}
/*地区选择*/
.citys {
    position: absolute;
    top:110px;
    left:100px;
	background:url(../images/final_banner_top.png) left top no-repeat;
	background-size: 100% 100%;
    z-index: 99999;
	width:1000px;
	height:400px;
	padding:30px 10px;
	display:none;
}
.citys .gonghui{
	width:90%;
	margin:10px auto 0 auto;
	height:60px;
	line-height:30px;
	border-bottom:1px solid #e7e7e7;
	padding-bottom:10px;
}
.citys .gonghui h3{
	width:120px;
	float:left;
	font-size:16px;
	color:#ff4112;
	text-align:left;
}
.citys .province{
	width:90%;
	margin:20px auto 0 auto;
	height:30px;
	line-height:30px;
	border-bottom:1px solid #e7e7e7;
	padding-bottom:10px;
}
.citys .province h3{
	width:120px;
	float:left;
	font-size:16px;
	color:#ff4112;
	text-align:left;
}
.citys .province ul{
	float:left;
}
.citys .province ul li{
	float:left;
	font-size:14px;
}
.citys .province ul li a{
	line-height:30px;
}
.citys .gonghui {
    width: 90%;
    margin: 20px auto 0 auto;
    height: 60px;
    line-height: 30px;
    border-bottom: 1px solid #e7e7e7;
    padding-bottom: 10px;
}
.citys .gonghui h3 {
    width: 120px;
    float: left;
    font-size: 16px;
    color: #f55600;
    text-align: left;
}
.citys .gonghui ul {
    float: left;
    width: 700px;
}
.citys .gonghui ul li {
    float: left;
	font-size:14px;
}
.citys .gonghui ul li a{
	line-height:30px;
}
.citys .city{
	width:90%;
	margin:10px auto 0 auto;
	height:30px;
	line-height:30px;
	border-bottom:1px solid #e7e7e7;
	padding-bottom:10px;
}
.citys .city h3{
	width:120px;
	float:left;
	font-size:16px;
	color:#ff4112;
	text-align:left;
}
.citys .city ul{
	float:left;
}
.citys .city ul li{
	float:left;
	font-size:14px;
}
.citys .city ul li a{
	line-height:30px;
}
.citys .county{
	width:90%;
	margin:20px auto 0 auto;
	height:60px;
	line-height:30px;
	border-bottom:1px solid #e7e7e7;
	padding-bottom:10px;
	position:relative;
}
.citys .county h3{
	width:120px;
	float:left;
	font-size:16px;
	color:#ff4112;
	text-align:left;
}
.citys .county ul{
	float:left;
	width:600px;
}
.citys .county ul li{
	float:left;
	font-size:14px;
}
.citys .county ul li a{
	line-height:30px;
}
.jiaxing .item{
	height:30px;
	padding:0px;
}
.item .area{
	background-color:#e42d30;
	color:#fff!important;
}
.nanhustreet{
	top:30px;
	left:0px;
	z-index:999999;
	position:absolute;
	background-color:#fff;
	padding:10px;
	width:770px;
	border:1px solid #e42d30;
	box-shadow:0 0 20px #ccc;
}
.nanhustreet li{
	float:left;
	font-size:14px;
	height:30px;
	line-height:30px;
}
.nanhustreet li a{
	height:30px!important;
	line-height:30px;
	margin:0;
	padding:0px 10px!important;
	color:#333!important;
	float:left;
}
.cyghstreet{
	top:30px;
	left:0px;
	z-index:999999;
	position:absolute;
	background-color:#fff;
	padding:10px;
	width:520px !important;
	border:1px solid #e42d30;
	box-shadow:0 0 20px #ccc;
}
.cyghstreet li{
	float:left;
	font-size:14px;
	height:30px;
	line-height:30px;
}
.cyghstreet li a{
	height:30px!important;
	margin:0;
	padding:2px 10px!important;
	color:#333!important;
}
.citys  ul li a{
	display:inline-block;
	padding:0 10px;
}
.citys  ul li a:hover{
	background-color:#e42d30;
	color:#fff!important;
	padding:0 10px;
}
.citys .item{
	background-color:#e42d30;
	color:#fff!important;
}
.citys .item>a{
	color:#fff;
}
.region{
	width:540px;
	position:absolute;
	top:195px;
	left:180px;
	z-index:10;
	margin-top:15px;
}
.region .province{
	width:90%;
	margin:0 auto;
	border-bottom:1px dashed #CCC;
	text-align:left;
	font-size:15px;
	height:30px;
	padding:10px 0;
}
.region .province a{
	padding:5px 18px;
	display:inline-block;
}
.region .province a:hover{
	background-color:#ef3438;
	color:#fff;
}
.region .prefecture-level{
	width:90%;
	margin:10px auto;
	border-bottom:1px dashed #CCC;
	padding:10px 0;
	text-align:left;
	font-size:15px;
	height:120px;
}
.region .prefecture-level li{
	float:left;
	padding:5px 18px;
}
.region .areacontent{
	width:90%;
	margin:10px auto;
	padding:10px 0;
	text-align:left;
	height:200px;
}
.region .areacontent li{
	float:left;
	font-size:15px;
}
.region .areacontent li a{
	padding:5px 18px;
	display:inline-block;
}
.region .areacontent li a:hover{
	background-color:#ef3438;
	color:#fff;
}
.region .current{
	background-color:#ef3438;
}
.region .current a{
	color:#fff;
}
.hideblock{
	display: none;
}

/*tabs*/
.rightcontent .tabs{
  padding: 20px;
}
.tabs .tabs-hd {
    height: 35px;
}

.tabs .tabs-hd ul {
    height: 34px;
    border-bottom: solid 1px #d7d4d4;
}

.tabs .tabs-hd li {
    float: left;
    margin-right: 10px;
    font-size: 16px;
    font-weight: bold;
}

.tabs .tabs-hd li a {
    display: block;
    color: #444;
    height: 33px;
    padding: 0 15px;
	font-size:16px;
}

.tabs .tabs-hd .item {
    border-bottom: solid 2px #e42d30;
}

.tabs .tabs-hd .item a,
.tabs .tabs-hd li a:hover {
    color: #e42d30;
}

.tabs .tab-panel {
    padding-top: 10px;
    display: none;
    overflow: hidden;
}

.tabs .tab-panel.item {
    display: block;
}
.tabs .tab-panel .newspaper{
  margin: 0 auto;
}
.tabs .tab-panel .newspaper img{
  height: 390px;
}




.tabs_head{
	width:100%;
	height:40px;
	line-height:40px;
	border-bottom:1px solid #d7d4d4;
	padding:0px!important;
	margin-bottom: 25px;
}

.tabs_head .more{
	float:right;
	padding:0 10px;
	font-size:14px;
}
 .tabs_head .item{
	border-bottom:3px solid #bc2028;
	float:left;
	padding:0 10px;
	font-size:22px;
	color:#bc2028;
}
.tabs_head .item a{
	color:#bc2028;
	font-size:22px;
}
/*tabs end*/


/*焦点图*/
.banner{height:375px;position:relative;background-color:#eaf6f6;/*background:#eaf6f6 url(../images/mainbg.gif) center top repeat;*/ width:100%; }
.banner .d1{width:100%;height:375px;display:block; position: absolute;left: 0;top: 0;}
.banner .d2{width:100%;height:30px;clear:both;position:absolute;z-index:10;left:0px;top:345px;}
.banner .d2 ul{float:left;position:absolute;left:50%;top:0;margin:0 0 0 -96px;display:inline;}
.banner .d2 li{width:30px;height:6px;overflow:hidden;cursor:pointer;background:#fff;opacity: 0.8;filter:alpha(opacity=80);float:left;margin:0 5px;display:inline;}
.banner .d2 li.nuw{background:#e42d30;}

.bannerdiv{min-width:1200px;height:375px;position:relative;overflow:hidden;}
.bannerdiv .lubo{ width:100% !important;}
.bannerdiv .lubo li .m-width {width:1600px;margin:0 auto;overflow:hidden; text-align:center;background: url(../images/mainbg.gif) center top repeat;}
.bannerdiv .lubo li .m-width img{}
.bannerdiv .lubo li{width:100% !important;height:375px;}
.bannerdiv .lubo li a{display:block;}
/*圆点*/
.cir_box{ overflow: hidden; position: absolute; z-index: 100;}
.cir_box li{ float: left; width: 30px; height: 5px; margin:0 5px; cursor: pointer; background: #fff; opacity: 0.8;filter:alpha(opacity=80);}
.cir_on{ background: #e42d30 !important;}
.banner_id {
    width: 1200px;
    position: absolute;
    top: 300px;
    left: 50%;
    margin-left: -600px;
}
.banner-btn .hd {position:absolute;top:30px;left:537px;}
.banner-btn .hd ul li{width:30px;height:6px;text-indent:-9999px;margin-right:20px;background:#ccc;float:left;cursor:pointer;}
.banner-btn .hd ul li.on{background:#e42d30;}


/*按钮*/
.lubo_btn{ position: absolute; width: 100%; top: 140px; display:none;}
.left_btn, .right_btn{ width: 30px; height: 80px; background: #000;opacity: 0.8;filter:alpha(opacity=80); cursor: pointer; color: #fff; line-height: 80px; font-size: 30px; text-align: center;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;}
.left_btn{ float: left;}
.right_btn{ float: right;}
#imgConac{
	width:50px;
}


.head0828 {
    position: relative;
    width: 100%;
    height: 50px;
    background: #ae6e24 ;
}

.banner .banner_logo{
	position:relative;
	/*left:50%;
	margin-left:-600px;*/
	width:1200px;
	margin: 0 auto;
    padding-top: 70px;
	/*top: 20px;*/
	z-index: 55;
}
.banner .topLeft0828{
	/*margin-left:200px;
	margin-top:35px; */
	position: absolute;
	left: 35px;
	top: 35px;
	z-index: 15;
}
.banner .topLeft0828 .logo_zgzj img{
	margin-top:6px;
	width:340px;
}
.banner .topLeft0828 .sdck{
	font-size:18px;
	color:#fff;
	font-weight:bold;
	float:left;
	margin-left:30px;
	margin-top:35px;
	cursor:pointer;
}
.banner .topLeft0828 .sdck img{
	padding-left:8px;
	vertical-align:middle;
	-webkit-transition: -webkit-transform 0.4s ease-out; 
    -moz-transition: -moz-transform 0.4s ease-out; 
    transition: transform 0.4s ease-out; 
}
.banner .topLeft0828 .sdck:hover img{
	-webkit-transform: rotate(-360deg); 
    -moz-transform: rotate(-360deg); 
    transform: rotate(-360deg);
}
.banner .topLeft0828 .logo_zgzj{
	display:block;
	float:left;
}

.mainframe{
	width: 1200px;
    margin: 20px auto;
    overflow: hidden;
    background-color: #fff;
}
.maincontent1{
	margin:20px 0;
}
.news{
	float: left;
	width: 791px;
	height: 276px;
}
.news .news-slide{
	width:307px;

	float:left;
}
#swiper-slide{
  width: 307px;
  height: 210px;
}
#swiper-slide .swiper-slide{
  width: 307px;
  height: 210px;
}
#swiper-slide .page {
  position: absolute;
  bottom: 18px;
  right: 10px;
  text-align: center;
}
#swiper-slide .swiper-pagination-switch {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 12px;
  background: #fff;
  margin: 0 5px;
  opacity: 0.8;
  cursor: pointer;
}
#swiper-slide .swiper-active-switch {
  background: #ea1117;
}
#swiper-slide .item{
  position: relative;
  display: block;
  width: 307px;
  height: 210px;
}
#swiper-slide .item p {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    color: rgb(255, 255, 255);
    text-align: left;
    white-space: nowrap;
    font: 16px 微软雅黑, 黑体;
    overflow: hidden;
    background-color: #000;
    opacity: .8;
    filter: alpha(opacity=80);
    height: 50px;
    padding-left: 10px;
    padding-right: 85px;
    line-height: 50px;
    text-overflow:ellipsis;
    overflow:hidden;
}
#swiper-slide .swiper-button-next,#swiper-slide .swiper-button-prev {
    display: none;
    position: absolute;
    top: 50%;
    width: 40px;
    height: 80px;
    margin-top: -40px;
    z-index: 10;
    cursor: pointer;
    background-position: center;
    background-repeat: no-repeat
}

#swiper-slide .swiper-button-prev {
  background-image: url(../images/picscroll/bg17.png);
  left: 0;
  right: auto
}

#swiper-slide .swiper-button-next {
  background-image: url(../images/picscroll/bg18.png);
  right: 0;
  left: auto
}

#swiper-slide .swiper-button-prev:hover {
  background-image: url(../images/picscroll/bg19.png);
}

#swiper-slide .swiper-button-next:hover {
  background-image: url(../images/picscroll/bg20.png);
}

#swiper-slide img{
	display:block;
	width: 307px;
  height: 210px;
  object-fit: cover;
	transition-duration: 0.5s;
}
#swiper-slide img:hover{
  transform: scale(1.2);
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
}

.news .list{
	width: 473px;
	float: right;
}
.news .list li{
	text-align:left;
	float:left;
	width:100%;
	height:42px;
}
.news .list li a{
	background:url(../images/point4.png) 10px center no-repeat;
	font-size:14px;
	line-height:42px;
	height:42px;
	width:100%;
	display:inline-block;
	text-indent:30px;
}
.news .list li a:hover{
	background:url(../images/point4.png) 10px center no-repeat;
	text-decoration:underline;
	width:100%;
	color: #e62532;
}
 .news .list li .message_title{
      width:75%;
      text-overflow:ellipsis; 
      white-space:nowrap; 
      overflow:hidden; 
      float: left;
      font-size:16px;
      line-height: 42px;
      color: #666666;
 }
.news .list li:hover .message_title{
	color: #bc2028;
}
  .news .list li .riqi{
     /*width:100px;*/
     float: right;
     color:#aaa7a7;
     font-size: 14px;
     line-height: 42px;
     text-indent: 0px;
 }

.maincontent1 .notice{
	width: 378px;
	height: 273px;
	float: right;
	background: url(../images/notice_bg.png) center bottom no-repeat;
	text-align: center;
}
.maincontent1 .notice .title{
	width: 111px;
	height: 30px;
	line-height: 30px;
	font-size: 18px;
	color: #fff;
	background-color: #bc2028;
	display: inline-block;
}
.maincontent1 .notice .list{
	padding: 15px;
	display: inline-block;
	width: 348px;
}
.maincontent1 .notice .list li{
	text-align:left;
	float:left;
	width:100%;
	height:42px;
}
.maincontent1 .notice .list li a{
	background:url(../images/point4.png) 10px center no-repeat;
	font-size:14px;
	line-height:42px;
	height:42px;
	width:100%;
	display:inline-block;
	text-indent:30px;
}
.maincontent1 .notice .list li a:hover{
	background:url(../images/point4.png) 10px center no-repeat;
	text-decoration:underline;
	width:100%;
	color: #e62532;
}
.maincontent1 .notice .list li .message_title{
      width:75%;
      text-overflow:ellipsis; 
      white-space:nowrap; 
      overflow:hidden; 
      float: left;
      font-size:16px;
      line-height: 42px;
      color: #666666;
 }
.maincontent1 .notice .list li:hover .message_title{
	color: #bc2028;
}
.maincontent1 .notice .list li .riqi{
     /*width:100px;*/
     float: right;
     color:#aaa7a7;
     font-size: 14px;
     line-height: 42px;
     text-indent: 0px;
 }
.maincontent2{
	margin:20px 0;
}
.maincontent2 .list_div{
	width: 376px;
	height: 276px;
	margin-left: 36px;
	float: left;
}
.maincontent2 .fir_div{
	margin-left: 0px;
}
.maincontent2 .list{
	width: 376px;
	
}
.maincontent2 .list li{
	text-align:left;
	float:left;
	width:100%;
	height:42px;
}
.maincontent2 .list li a{
	background:url(../images/point4.png) 10px center no-repeat;
	font-size:14px;
	line-height:42px;
	height:42px;
	width:100%;
	display:inline-block;
	text-indent:30px;
}
.maincontent2 .list li a:hover{
	background:url(../images/point4.png) 10px center no-repeat;
	text-decoration:underline;
	width:100%;
	color: #e62532;
}
.maincontent2 .list li .message_title{
      width:75%;
      text-overflow:ellipsis; 
      white-space:nowrap; 
      overflow:hidden; 
      float: left;
      font-size:16px;
      line-height: 42px;
      color: #666666;
 }
.maincontent2 .list li:hover .message_title{
	color: #bc2028;
}
.maincontent2 .list li .riqi{
     /*width:100px;*/
     float: right;
     color:#aaa7a7;
     font-size: 14px;
     line-height: 42px;
     text-indent: 0px;
 }
 .list_div .contact img{
 	width: 124px;
 	height: 124px;
 	object-fit: cover;
 }
 .list_div .contact p{
 	font-size: 16px;
 	line-height: 30px;
 	color: #666666;
 }
 .xyhj_div .pic-slide{
 	width: 100%;
 	height: 205px;
 }
.xyhj_div .pic-slide .swiper-container{
  width: 100%;
  overflow: hidden;
  height: 205px;
}
#index_xyhj .swiper-slide{
  /*padding-top: 40px;*/
  width: 200px;
  text-align: center;
}
#index_xyhj .swiper-slide .img{
overflow:hidden;
height:150px;
width:200px;
margin:0 auto;
 
}

#index_xyhj .swiper-slide .img img{
height:100%;
width:100%;
object-fit: cover; 
}

#index_xyhj .swiper-slide:hover .img{
-webkit-transform:translateY(-10px);
-moz-transform:translateY(-10px);
-ms-transform:translateY(-10px);
-o-transform:translateY(-10px);
transform:translateY(-10px);
 transition-duration:0.5s;
}
#index_xyhj  .swiper-slide p{
	margin-top: 10px;
	font-size: 16px;
	color: #666666;
}

#index_xyhj .arrow-left{
  position: absolute;
  left: 12px;
  top: 40px;
  width: 40px;
  height: 70px;
  background: url(../images/arrow-left.png) no-repeat center;
}
#index_xyhj .arrow-left:hover{
  background: url(../images/arrow-left-hover.png) no-repeat center;
}
#index_xyhj .arrow-right{
  position: absolute;
  right: 12px;
  top: 40px;
  width: 40px;
  height: 70px;
  background: url(../images/arrow-right.png) no-repeat center;
}
#index_xyhj .arrow-right:hover{
  background: url(../images/arrow-right-hover.png) no-repeat center;
}