@charset "utf-8";
/* CSS Document */
*::selection{background:#ad1823; color:#fff; text-shadow:none;}
*{margin:0;padding:0;}
body{font-size:18px; color:#000; font-family:"Microsoft YaHei","微软雅黑","黑体",sans-serif; background:#fff;}
body a{text-decoration:none; -webkit-transition:all 0.4s; -moz-transition:all 0.4s; -ms-transition:all 0.4s; -o-transition:all 0.4s; transition:all 0.4s;}
a:link,a:visited{color:#000;}
a:hover{color:#ad1823;}
/*去掉图形热点的点击时出现的边线*/
a,area{blr:expression(this.onFocus=this.blur());}  /*for IE*/   
:focus{-moz-outline-style:none; outline:none;}     /* for Firefox*/
img{border:0;}
ul,li{list-style-type:none;}
.clear{clear:both; height:0;}
table,table td{border-collapse:collapse;}

.animate{-webkit-transition:all 0.4s; -moz-transition:all 0.4s; -o-transition:all 0.4s; transition:all 0.4s;}
.unselectable{-moz-user-select:-moz-none;-webkit-user-select:none;-ms-user-select:none;user-select:none;}
.ellipsis{overflow:hidden;white-space:nowrap;text-overflow:ellipsis;}/*文字超出省略号...*/
.nowrap{overflow:hidden;white-space:nowrap;}
.justify{text-justify:inter-ideograph; text-align:justify;}/*文字两端对齐*/

.overHidden{overflow:hidden; position:fixed;}
.clamp2{overflow:hidden; text-overflow:ellipsis; display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical;}
.clamp3{overflow:hidden; text-overflow:ellipsis; display:-webkit-box; -webkit-line-clamp:3; -webkit-box-orient:vertical;}
.clamp4{overflow:hidden; text-overflow:ellipsis; display:-webkit-box; -webkit-line-clamp:4; -webkit-box-orient:vertical;}
.clamp7{overflow:hidden; text-overflow:ellipsis; display:-webkit-box; -webkit-line-clamp:7; -webkit-box-orient:vertical;}
.clamp8{overflow:hidden; text-overflow:ellipsis; display:-webkit-box; -webkit-line-clamp:8; -webkit-box-orient:vertical;}
.undecoration, .undecoration:hover{text-decoration:none !important;}
.hide{display:none;}
.bgImg{background-repeat:no-repeat; background-position:center center; background-size:cover; -webkit-transition:all 0.8s; transition:all 0.8s; display:block; height:100%;}
a:hover .bgImg{-webkit-transform:scale(1.05); transform:scale(1.05);}


/* ie9以下警告 */
.pageTips{position:fixed; z-index:10000; left:0; top:0; width:100%; height:100%; background:rgba(0,0,0,0.9);}
.pageTips .container2{color:#fff; position:absolute; left:50%; top:50%; width:630px; margin-left:-315px; margin-top:-160px;}
.pageTips .container2 a.close{display:none; width:50px; height:50px; position:absolute; z-index:1; left:auto; right:-15px; top:40px; bottom:auto; background:url(close.png) no-repeat center center;}
.pageTips .container2 .img{text-align:center;}
.pageTips .container2 .msg{font-size:18px; line-height:36px; padding-top:30px;}
.pageTips .container2 a{color:#fff; text-decoration:underline;}


.container{min-width:1260px; _width:1260px; margin:0 auto;}
.container:after{display:block; content:""; clear:both;}
.w1260{width:1260px; margin:0 auto;}

/* 头部 */
.head{width:100%; height:160px; background:#ad1823 url(headBg.jpg) no-repeat left bottom;}
.head .logo{width:1260px; height:160px; background:url(logo.png) no-repeat left center; margin:0 auto;}
.head .logo:after{display:block; content:""; width:600px; height:160px; background:url(headTxt.png) no-repeat right center; margin-right:70px; float:right;}

/* 菜单 */
.menuWrap{width:100%; height:50px; background:#f9f5ee;position:relative;z-index:1;}
#menu{width:1260px; height:50px; margin:0 auto; display:flex;}
#menu li{position:relative; text-align:center;}
#menu>li{flex:1; position:relative;}
#menu>li>a{display:block; height:50px; line-height:50px; font-size:0;}
#menu>li>a>span{display:inline-block; height:50px; line-height:50px; font-size:18px; position:relative; color:#333;}
#menu>li>a>span:before, #menu>li>a>span:after{display:block; content:""; position:absolute; -webkit-transition:all 0.4s; -moz-transition:all 0.4s; -ms-transition:all 0.4s; -o-transition:all 0.4s; transition:all 0.4s;}
#menu>li>a>span:before{width:0; height:2px; background:#ad1823; opacity:0; left:50%; bottom:0; transform:translateX(-50%);}
#menu>li>a>span:after{width:10px; height:6px; left:50%; bottom:2px; margin-left:-5px; background:url(a01.png) no-repeat center bottom; opacity:0;}
#menu>li>a:hover>span:before, #menu>li>a.current:hover>span:before, #menu>li>a.current>span:before{opacity:1; width:100%;}
#menu>li>a:hover>span:after, #menu>li>a.current:hover>span:after, #menu>li>a.current>span:after{opacity:1;}

/*这是第二级菜单*/
#menu ul{display:none; width:100%; background-color:#ad1823; position:absolute; z-index:999; left:0;}
#menu>li:nth-of-type(2)>ul{width:calc(100% + 20px); left:-10px;}
#menu ul li{margin-left:0; width:100%;}
#menu ul li a{display:block; padding:8px 5px; line-height:24px; font-size:16px;}
#menu ul li a:link, #menu ul li a:visited{color:#fff;}
#menu ul li a:hover, #menu ul li a.current{background-color:#ffe200; color:#ad1823;}

/**若子级菜单含有子级时，在a标签增加<i>标签作为箭头，由js实现动态增加，箭头大小调节i的边框宽度*/
#menu ul i{display:block; position:absolute; *top:10px; top:calc(50% - 4px); right:2px; z-index:10; width:0; height:0; border-color:transparent; border-width:4px; border-style:solid; border-left:4px #fff solid; -webkit-transition:all 0.4s; -moz-transition:all 0.4s; -ms-transition:all 0.4s; -o-transition:all 0.4s; transition:all 0.4s;}

/*这是第三级菜单 及以后*/
#menu ul ul{top:0; left:100%; width:100%; border-left:2px solid #ffe200;}
#menu ul ul li a:link, #menu ul ul li a:visited{font-size:14px;}


/* 轮播图 */
.banner{width:100%; position:relative; z-index:0;}
.banner .swiper-slide{display:-webkit-box; display:-ms-flexbox; display:-webkit-flex; display:flex; -webkit-box-pack:center; -ms-flex-pack:center; -webkit-justify-content:center; justify-content:center; -webkit-box-align:center; -ms-flex-align:center; -webkit-align-items:center; align-items:center; position:relative; z-index:0;}
.banner .swiper-slide img{display:block; width:100%;}
.banner .swiper-slide:after{display:block; content:""; z-index:10; position:absolute; left:0; bottom:0; height:4px; width:100%; background:#ad1823; filter:alpha(opacity=60); opacity:0.6; font-size:0; overflow:hidden;}
.banner .swiper-slide-active{z-index:1;}
.banner .swiper-slide-active:after{animation:timer 7s linear; -webkit-animation:timer 7s linear;}
.banner .swiper-pagination-bullets{bottom:30px !important; height:12px;}
.banner .swiper-pagination-bullet{width:12px; height:12px; display:inline-block; border-radius:6px; background:#fff; opacity:1; vertical-align:top; margin:0 6px !important;}
.banner .swiper-pagination-bullet-active{opacity:1; background:#ad1823;}
@keyframes timer{
	0%{width:0;}
	100%{width:100%;}
}
@-webkit-keyframes timer{
	0%{width:0;}
	100%{width:100%;}
}
.banner .swiper-button-prev, .banner .swiper-button-next{width:50px; height:50px; background-color:rgba(0,0,0,0.2); background-repeat:no-repeat; background-position:center center; background-size:auto 24px; -webkit-border-radius:4px; border-radius:4px;}
.banner .swiper-button-prev{background-image:url(l.png); left:5%;}
.banner .swiper-button-next{background-image:url(r.png); right:5%;}
.banner .swiper-button-prev:hover, .banner .swiper-button-next:hover{background-color:rgba(0,0,0,0.4);}
.banner .swiper-button-prev:after, .banner .swiper-button-next:after{display:none;}


.indH{height:42px; line-height:42px; font-size:24px; font-weight:bold; color:#222; border-bottom:#dbcfb9 1px solid;}
.indH a{float:right; font-size:14px; display:block; font-weight:normal;}
.indH .more1{color:#888; padding:0 8px; height:28px; line-height:28px; border:#dbdbdb 1px solid; -webkit-border-radius:4px; border-radius:4px; margin-top:8px;}
.indH .more2{height:25px; line-height:25px; color:#b31a25; margin-top:13px;}
.indH .more1:hover{color:#ad1823; border-color:#ad1823;}
.indH .more2:hover{color:#f90;}
.indH span{color:#ad1823;}
.indH img{float:left; height:28px; margin:7px 8px 0 0;}
.indH p{height:41px; line-height:41px; border-bottom:#ad1823 2px solid; float:left; position:relative; top:0;}


/* 普通新闻列表 */
.newsList li{border-bottom:#d0d0d0 1px dashed;}
.newsList li h3{height:45px; line-height:45px; font-size:18px; font-weight:normal; padding-left:20px; background:url(a02.png) no-repeat left center; margin-right:120px;}
.newsList li p{float:right; width:120px; height:45px; line-height:45px; text-align:right; color:#999;}


.F1{padding:50px 0;}
.F1 .indH{border-bottom:0;}
.news{width:600px; height:643px; float:left;}
.picNews{width:600px; height:360px; margin-top:20px; overflow:hidden; position:relative;}
.picNews .swiper-slide{display:block; width:600px; height:360px; background:#fff;}
.picNews .swiper-slide a{display: block; height:100%; overflow: hidden; position:relative;}
.picNews .swiper-slide h3{width:calc(100% - 135px); height:40px; line-height:40px; padding:0 120px 0 15px; font-size:18px; font-weight:normal; color:#fff; background:rgba(0,0,0,.5); position:absolute; left:0; bottom:0;}
.picNews .swiper-pagination-bullets{width:auto; bottom:15px !important; left:auto; right:15px; text-align:right; height:10px;}
.picNews .swiper-pagination-bullet{width:10px; height:10px; display:inline-block; border-radius:6px; background:#fff; opacity:1; vertical-align:top; margin:0 0 0 10px !important;}
.picNews .swiper-pagination-bullet-active{opacity:1; background:#ad1823;}
.picNews .swiper-button-prev, .picNews .swiper-button-next{width:32px; height:64px; background: rgba(0,0,0,.3); color:#fff;}
.picNews .swiper-button-prev{left:0;}
.picNews .swiper-button-next{right:0;}
.picNews .swiper-button-prev:after, .picNews .swiper-button-next:after{font-size:24px;}
.picNews .swiper-button-prev:hover{background-color:#ffe200; background-image:url(i04.png);}
.picNews .swiper-button-next:hover{background-color:#ffe200; background-image:url(i05.png);}

.txtNews{height:211px; padding-top:10px; overflow:hidden;}
.txtNews ul li{border-bottom:0;}
.txtNews ul li h3, .txtNews ul li p{height:44px; line-height:44px;}


.notice{height:643px; margin-left:660px;}
.notice ul{height:495px; padding-top:2px;}
.notice ul li{height:62px; padding:18px 0; border-bottom:#e6e6e6 1px solid;}
.notice ul li p{width:62px; height:62px; font-size:13px; line-height:26px; color:#b31a25; text-align:center; background:#f9ebec; -webkit-border-radius:4px; border-radius:4px; overflow:hidden; float:left;}
.notice ul li p span{display:block; height:36px; line-height:36px; background:#b31a25; color:#fff; font-size:24px;}
.notice ul li h3{height:54px; line-height:27px; padding-top:4px; margin-left:75px; font-size:18px; font-weight:normal; display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden; text-justify:inter-ideograph; text-align:justify;}


.picLink{height:80px; padding-bottom:60px; position:relative;}
.picLink .swiper-slide{display:block; width:236px; height:80px; float:left;}
.picLink .swiper-slide p{display:block; width:100%; height:80px; background-repeat:no-repeat; background-position:center center; background-size:cover; -webkit-border-radius:4px; border-radius:4px;}
.picLink .swiper-pagination-bullets{bottom:30px !important; height:10px; font-size:0;}
.picLink .swiper-pagination-bullet{width:10px; height:10px; display:inline-block; vertical-align:top; border-radius:6px; background:#b31a25; opacity:0.2; margin:0 5px !important;}
.picLink .swiper-pagination-bullet-active{opacity:1; background:#ad1823;}


.F2{height:466px; background:#f5efe6 url(bg01.jpg) no-repeat center bottom; background-size:100% auto; padding:50px 0 80px;}
.F2:after{display:block; content:""; clear:both;}
.F2 .indH{height:51px; line-height:51px;}
.F2 .indH p{height:50px; line-height:50px;}
.llxx{width:380px; height:466px; float:left;}
.llxx ul{height:400px; padding-top:14px;}
.llxx ul li{height:51px; padding:14px 0; border-bottom:#d0d0d0 1px dashed;}
.llxx ul li p{width:56px; height:49px; background:#f5efe6; border:#b31a25 1px solid; -webkit-border-radius:4px; border-radius:4px; position:relative; float:left; text-align:center; color:#b31a25; font-size:12px; line-height:16px;}
.llxx ul li p:before, .llxx ul li p:after{display:block; width:3px; height:11px; background:#f5efe6; border:#b31a25 1px solid; -webkit-border-radius:4px; border-radius:4px; content:""; position:absolute; top:-7px;}
.llxx ul li p:before{left:12px;}
.llxx ul li p:after{right:12px;}
.llxx ul li p span{display:block; height:24px; line-height:24px; font-size:18px; font-weight:bold; padding-top:6px;}
.llxx ul li h3{height:50px; line-height:25px; margin-left:74px; font-size:18px; font-weight:normal; display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden; text-justify:inter-ideograph; text-align:justify;}

.indNews{width:380px; height:466px; padding-left:60px; float:left;}
.indNews ul{height:400px; padding-top:14px;}
.indNews ul li{height:53px; padding:13px 0;}
.indNews ul li p{float:none; width:auto; height:24px; line-height:24px; font-size:16px; color:#b31a25; text-align:left;}
.indNews ul li h3{height:28px; line-height:28px; margin-right:0; padding-left:0; background:none;}


.picScroll{height:160px; padding:70px 0; background:url(bg02.jpg) repeat left top;}
.picScroll .bd{width:1260px; height:160px; margin:0 auto; overflow:hidden;}
.picScroll .bd ul{min-width:1275px; height:160px;}
.picScroll .bd ul li{width:240px; height:160px; padding-right:15px; float:left;}
.picScroll .bd ul li a{display:block; height:160px; -webkit-border-radius:4px; border-radius:4px; overflow:hidden; position:relative;}
.picScroll .bd ul li p{height:160px; overflow:hidden; background-repeat:no-repeat; background-position:center center; background-size:cover; -webkit-transition:all 0.5s; -moz-transition:all 0.5s; -ms-transition:all 0.5s; -o-transition:all 0.5s; transition:all 0.5s;}
.picScroll .bd ul li h3, .picScroll .bd ul li i{position:absolute; opacity:0; -webkit-transition:all 0.4s; -moz-transition:all 0.4s; -ms-transition:all 0.4s; -o-transition:all 0.4s; transition:all 0.4s;}
.picScroll .bd ul li h3{width:calc(100% - 60px); max-height:84px; line-height:28px; text-align:center; left:30px; top:50%; display:-webkit-box; -webkit-box-orient:vertical; -webkit-line-clamp:3; overflow:hidden; font-weight:normal; font-size:18px; z-index:1; -webkit-transform:translateY(-50%); -moz-transform:translateY(-50%); transform:translateY(-50%); color:#fff; opacity:0;}
.picScroll .bd ul li i{display:block; width:100%; height:160px; background:#ad1823; z-index:0; left:50%; top:50%; transform:translate(-50%,-50%) scale(0.01);}
.picScroll .bd ul li a:hover p{-webkit-transform:scale(1.05); -moz-transform:scale(1.05); -ms-transform:scale(1.05); -o-transform:scale(1.05); transform:scale(1.05);}
.picScroll .bd ul li a:hover h3{opacity:1;}
.picScroll .bd ul li a:hover i{opacity:0.8; transform:translate(-50%,-50%) scale(1);}


.link{padding:20px 0; line-height:30px; background:#f5efe6; font-size:0;}
.link span, .link a{display:inline-block; vertical-align:top; line-height:30px; font-size:18px;}
.link span{color:#ad1823;}
.link a{margin:0 15px;}



/* 页底 */
.foot{background:#ad1823 url(footBg.jpg) no-repeat left bottom; color:#fff; padding:30px 0; line-height:28px; font-size:14px; text-align:center;}
.foot a:link, .foot a:visited{color:#fefefe;}
.foot a:hover{color:#fff;}
.foot a img{vertical-align:text-bottom; margin-right:4px;}


.ny{width:1260px; margin:30px auto 50px;}
.ny:after{display:block; content:""; clear:both;}
.left{width:240px; float:left; background:#f5f5f5;}
.left h2{line-height:30px; padding:15px; text-align:center; background-color:#ad1823; font-size:20px; color:#fff; font-weight:normal; position:relative;}
.left ul{padding:5px 0 5px 5px;}
.left ul li a{display:block; line-height:24px; padding:10px 30px 10px 15px; font-size:16px; position:relative;}
.left ul li a:after{display:block; content:""; position:absolute; *top:10px; top:calc(50% - 4px); right:8px; z-index:10; width:0; height:0; border-color:transparent; border-width:4px; border-style:solid; border-left:4px #ad1823 solid; -webkit-transition:all 0.4s; -moz-transition:all 0.4s; -ms-transition:all 0.4s; -o-transition:all 0.4s; transition:all 0.4s;}
.left ul li a:hover:after{border-left-color:#ca2703;}
.left ul li a.on{background:#fff; color:#ad1823;}
.left ul li a.on:after{border-left-color:#ad1823;}
 
 
.right{margin-left:280px;}
.post{height:48px; line-height:48px; font-size:14px; color:#999; border-bottom:2px solid #e4e4e4;}
.post span{float:right; line-height:26px; padding-top:16px;}
.post span a:link, .post span a:visited{color:#999;}
.post span a:hover{color:#ad1823;}
.post p{float:left; color:#ad1823; border-bottom:3px solid #ad1823; font-size:24px; font-weight:bold; padding:0 5px;}

.list01, .article{padding:10px 0 50px;}

.article{}
.articleTitle{padding:40px 0 20px; line-height:36px; font-size:24px; font-weight:600; text-align:center;}
.articleInfo{font-size:14px; height:36px; line-height:36px; background:#f5f5f5; color:#666; text-align:center; margin:0 auto;}
.articleInfo label{padding-left:30px;}
.articleCon{line-height:36px; padding:20px 0 30px; font-size:18px;}
.articleCon img{max-width:100%; height:auto !important; margin:0 auto; vertical-align:top;}


.message{display:flex; margin-top:40px;}
.messageL{flex:1; overflow:hidden;}
.messageTable{width:100%; font-size:14px; color:#777;}
.messageTable td{border:#dbdbdb 1px solid; padding:7px; line-height:27px;}
.messageTable td .txt{width:278px; height:25px; line-height:25px; font-size:14px; background:#f8f8f8; border:#dbdbdb 1px solid; padding:0 5px;}
.messageTable td textarea.txt{width:calc(100% - 12px); height:240px; resize:none; padding:3px 5px;}
.messageTable td .red{color:#f00; padding-left:5px;}
.messageTable td label{margin-right:20px;}
.messageTable td input[type="radio"]{margin-right:5px;}
.messageTable td .btn{width:50px; height:25px; background:#d91516; color:#fff; border:#d91516 1px solid; cursor:hand; box-sizing:content-box;}

.messageR{width:248px; margin-left:30px;}
.messageR h2{height:30px; line-height:30px; padding-left:24px; background:url(hBg.jpg) no-repeat left center; font-size:18px; font-weight:normal; color:#d30000;}
.messageTxt{line-height:25px; font-size:14px; color:#777;}

.messageBtn{height:40px; margin:40px 0 20px;}
.messageBtn a{display:block; width:100px; height:40px; line-height:40px; text-align:center; font-size:14px; background:#ad1823; color:#fff !important; float:right;}
.messageBtn a:hover{background:#ffe200; color:#ad1823 !important;}