@charset "utf-8";
/* CSS Document */
/**
 * @description: 网站公共样式
 * @author: ishang_pan
 * @update: ishang_pan (2020-06-16 09:25)
 */

/*reset*/
html,body,h1,h2,h3,h4,h5,h6,div,dl,dt,dd,ul,ol,li,p,blockquote,pre,hr,figure,table,caption,th,td,form,fieldset,legend,input,button,textarea,menu{margin: 0; padding: 0;}
header,footer,section,article,aside,nav,hgroup,address,figure,figcaption,menu,details{display: block;}
html{overflow-y: scroll;}
:root{overflow-y: auto; overflow-x: hidden;}
table{border-collapse: collapse; border-spacing: 0;}
caption,th{font-weight: normal;}
html,body,fieldset,iframe,abbr{border: 0;}
i,cite,em,var,address,dfn{font-style: normal;}
[hidefocus],summary{outline: 0;}
ul,ol,ul li,li,ol li{list-style: none;}
h1,h2,h3,h4,h5,h6,small{font-size: 100%;}
sup,sub{font-size: 83%;}
pre,code,kbd,samp{font-family: inherit;}
q:before,q:after{content: none;}
textarea{overflow: auto; resize: none;}
label,summary{cursor: default;}
a,button{cursor: pointer;}
h1,h2,h3,h4,h5,h6,em,strong,b{font-weight: bold;}
ins,u,s,a,a:hover{text-decoration: none;}
body,textarea,input,button,select,keygen,legend{font-family: "微软雅黑"; font-size: 16px; color: #454545; outline: 0;}
a{color: #3d3d3d; border: none; text-decoration: none; outline: none; hide-focus: expression(this.hideFocus=true);}
a:hover{text-decoration: none; color: #b90609;}
a:focus{text-decoration: none; outline: 0; -moz-outline-style: none; color: #b90609;}
img{border: 0 none; width: auto\9; height: auto; vertical-align: top; -ms-interpolation-mode: bicubic;}
button,input,select,textarea{font-size: 100%; font-family: tahoma; margin: 0; outline: 0 none; vertical-align: baseline; _overflow: visible; *vertical-align: middle; *overflow: visible;}

/*function*/
.f-dn{display: none;}
.f-db{display: block;}
.f-fl{float: left;}
.f-fr{float: right;}
.f-pr{position: relative;}
.f-pa{position: absolute;}
.f-pf{position: fixed;}
.f-oh{overflow: hidden;}
.f-fwn{font-weight: normal;}
.f-fwb{font-weight: bold;}
.f-toe{overflow: hidden; word-wrap: normal; white-space: nowrap; text-overflow: ellipsis;}
.f-csp{cursor: pointer;}
.f-csd{cursor: default;}
.f-csh{cursor: help;}
.f-csm{cursor: move;}
.f-usn{-webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;}
.f-clear{margin: 0; padding: 0; height: 0; overflow: hidden; visibility: hidden; content: "."; clear: both; font-size: 0; }
.f-clearfix:after{display: block; height: 0; visibility: hidden; font-size: 0; content:" "; clear: both;}
* html .f-clearfix{zoom: 1;}
*:first-child+html .f-clearfix{zoom: 1;}
.f-wd100{width: 100%;}
.f-npd{padding: 0;}
.f-nmg{margin: 0!important;}
.f-mlr2{margin: 0 2px;}
.f-mlr5{margin: 0 5px;}
.f-mlr7{margin: 0 7px;}
.f-mlr10{margin: 0 10px;}
.f-mlr15{margin: 0 15px;}
.f-mlr20{margin: 0 20px;}
.f-mlrf5{margin: 0 -5px;}
.f-mlrf7{margin: 0 -7px;}
.f-mlrf10{margin: 0 -10px;}
.f-mlrf15{margin: 0 -15px;}
.f-mlrf20{margin: 0 -20px;}
.f-plr5{padding: 0 5px;}
.f-plr7{padding: 0 7px;}
.f-plr10{padding: 0 10px;}
.f-plr15{padding: 0 15px;}
.f-plr20{padding: 0 20px;}
.f-mb5{margin-bottom: 5px;}
.f-mb10{margin-bottom: 10px;}
.f-mb15{margin-bottom: 15px;}
.f-mb20{margin-bottom: 20px;}
.f-nbg{background: none!important;}
.f-nbd{border: none;}
c-red{color: red;}

.f-tacenter{text-align: center;}

/*module*/
/*module*/
.c-shine a::before{position: absolute; top: 0; left: -100%; z-index: 2; display: block; content: ''; width: 50%; height: 100%; background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%); background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, .3))); background: -moz-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%); background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%); -webkit-transform: skewX(-25deg); -moz-transform: skewX(-25deg); transform: skewX(-25deg);}
.c-shine a:hover::before{-webkit-animation: shine 1s; -moz-animation: shine 1s; animation: shine 1s;}
@-webkit-keyframes shine{100%{left: 125%;}}
@-moz-keyframes shine{100%{left: 125%;}}
@keyframes shine{100%{left: 125%;}}

.c-circle a::before{position: absolute; top: 50%; left: 50%; z-index: 2; display: block; content: ''; width: 0; height: 0; background: rgba(255, 255, 255, .2); -moz-border-radius: 100%; border-radius: 100%; -webkit-transform: translate(-50%, -50%); -moz-transform: translate(-50%, -50%); transform: translate(-50%, -50%); opacity: 0;}
.c-circle a:hover::before{-webkit-animation: circle .75s; -moz-animation: circle .75s; animation: circle .75s;}
@-webkit-keyframes circle{0%{opacity: 1;} 40%{opacity: 1;} 100%{width: 200%; height: 200%; border-radius: 200%; opacity: 0;}}
@-moz-keyframes circle{0%{width: 0; height: 0; opacity: 1;} 40%{opacity: 1;} 100%{width: 200%; height: 200%; opacity: 0;}}
@keyframes circle{0%{width: 0; height: 0; opacity: 1;} 40%{opacity: 1;} 100%{width: 200%; height: 200%; opacity: 0;}}

.m-titstyle1{border-bottom: 1px solid #ddd;}
.m-titstyle1 .u-tit{display: block; padding: 6px 10px 14px; font-size: 20px; font-weight: bold; color: #0e54ad;}

.m-titstyle1 .u-more{display: block; padding: 6px 0 14px; font-size: 18px; font-weight: bold; color: #0e54ad;}
.m-titstyle1 .u-more span{margin-right: 10px; font-size: 20px; font-weight: normal;}

.m-titstyle2{line-height: 40px; background: #f7f7f7;}
.m-titstyle2 .u-tit{display: block; padding: 0 14px; background: #0e54ad; font-size: 18px; color: #fff;}

.m-tabstyle1{border-bottom: 1px solid #ddd;}
.m-tabstyle1 li{float: left; margin-right: 16px;}
.m-tabstyle1 li a{position: relative; display: block; padding: 6px 10px 14px; font-size: 20px;}
.m-tabstyle1 li a::before{content: ''; position: absolute; left: 0; bottom: 0; right: 0; margin:0 auto -1px; width: 0; height: 4px; background: #0e54ad; transition: all linear 0.4s;}
.m-tabstyle1 li.u-active a{font-weight: bold; color: #0e54ad;}
.m-tabstyle1 li.u-active a::before{width: 100%;}

.m-tabstyle2{background: #f7f7f7;}
.m-tabstyle2 li{float: left; line-height: 40px;}
.m-tabstyle2 li a{display: block; padding: 0 14px; font-size: 18px;}
.m-tabstyle2 li.u-active a{background: #0e54ad; color: #fff;}

.m-liststyle1 li{height: 48px; line-height: 48px; overflow: hidden;}
.m-liststyle1 li span{float: right; padding-left: 10px; color: #999;}
.m-liststyle1 li a{display: block; padding-left: 15px; font-size: 18px; background: url(../images/public/icon-li1.png) left center no-repeat; overflow: hidden; word-wrap: normal; white-space: nowrap; text-overflow: ellipsis; transition: all .3s;}
.m-liststyle1 li a:hover{padding-left: 18px;}

.m-liststyle1 li a.c-title{max-width:87%}
.m-liststyle1 li a.c-title,.m-liststyle1 li a.c-red{display: inline-block;}
.m-liststyle1 li a.c-red{background:none;color:#c50000}
.m-liststyle1 li a.c-red{padding-left:5px}
.m-liststyle1 li a.c-red:hover{padding-left:5px}

/*header*/
.is-header .m-toplink{background: #f5f5f5;}
.is-header .m-toplink .u-left a{display: inline-block; margin-right: 10px; padding-left: 20px; color: #999; font-size: 13px; line-height: 40px; background: url(../images/public/icon-sjlink.png) left 0px no-repeat;}
.is-header .m-toplink .u-left a:nth-child(2){background-position: left -41px;}
.is-header .m-toplink .u-left a:nth-child(3){background-position: left -80px;}
.is-header .m-toplink .u-right li{float: left; line-height: 40px;}
.is-header .m-toplink .u-right li a{color: #999; font-size: 13px;}
.is-header .m-ban{height: 371px; background: url(../images/public/bg-ban.png) top center no-repeat;}
.is-header .m-ban .d1{margin-top: 10px;}
.is-header .m-ban .d1 a{margin-top: 10px; display: block; width: 130px; border-radius: 25px; line-height: 38px; color: #fff; text-align: center; background: rgba(0,0,0,.2);}
.is-header .m-ban .p2{margin-top: 10px;}

.is-header .m-toplink .u-right li a{display: block; padding:0 9px; background: url(/dist/images/public/bg-funline.png) left center no-repeat;}


.u-search{margin: 0 auto; width: 650px; border-radius: 10px; overflow: hidden;}
.u-search .u-searchbtn{right: 0; top: 0; width: 73px; height: 50px; border: none; background: url(../images/public/pic-search.png) #ff9000 center no-repeat;}
.u-search .u-searchtext{height: 50px;}

/*footer*/
.is-footer{padding-top: 20px; height: 161px; text-align: center; color: #fff; font-size: 14px; background: #256ca4;}
.is-footer .m-footer{position: relative;height: 100%;margin: 0 auto;}
.is-footer .container{height: 100%;}
.is-footer a{color: #fff;}
.is-footer p{line-height: 24px;}
.is-footer .u-p1{line-height: 36px;}
.is-footer #_ideConac{position: absolute; left: 58px; bottom: 40px;}
.is-footer #_span_jiucuo{position: absolute; right: 69px; bottom: 50px;}
#backTop {position: fixed;right: 10.2rem;top: 70%;display: none;cursor: pointer;z-index: 999;}
#f-elderwza{position: absolute;top: 29px;left: 131px;}
#f-elderwza img{width: 152px;height: 64px;}
/*toolbar*/


/*pagination*/
.m-pagination{padding: 15px;}
.m-pagination li{float: left; margin: 3px; height: 28px; font-size: 14px;}
.m-pagination li a{display: block; padding: 0 10px; line-height: 26px; border: 1px solid #ccc; font-size: 14px; background: #fff;}
.m-pagination li.u-redirect{line-height: 28px;}
.m-pagination li.u-redirect input{padding: 0 5px; vertical-align: middle; width: 42px; height: 28px; line-height: 28px; border: 1px solid #ccc; margin: -2px 0 0 3px; *margin: -2px 0 0 3px; _margin: -2px 0 0 3px;}
.m-pagination li.active a,.m-pagination li a:hover{background: #0a6acd; border: 1px solid #0a6acd; color: #fff;}
.m-pagination li.page-info a,.m-pagination li.page-info a:hover{border: 1px solid #ccc; cursor: default; color: #666; background: #fff;}
.m-pagination li.disabled a,.m-pagination li.disabled a:hover{background: #eee; border: 1px solid #ccc; cursor: default; color: #666;}

/*share*/
.share-main{position: relative; width: auto; height: 24px;}
.share-bar a{margin-left: 10px; float: left; display: block; width: 24px; height: 24px; background-image: url(../images/public/icon-share.png);}
.share-bar .share-weixin{background-position: -79px 87px;}
.share-bar .share-tsina{background-position: -55px 87px;}
.share-bar .share-qzone{background-position: -103px 87px;}
.weixin-share-open{position: absolute; bottom: 34px; right: 0; display: none; background: #fff;}
.weixin-wrap{position: relative; padding: 10px; width: 234px; height: 102px; border: 1px solid #ddd;}
.share-qrcode{float: left;}
.share-qrcode img{display: block; width: 80px; height: 80px;}
.weixin-close{position: absolute; top: 0; right: 0; display: block; width: 20px; height: 20px; line-height: 20px; text-align: center; font-size: 16px; color: #d4d4d4; cursor: pointer;}
.weixin-text{padding: 10px 0 0 90px; line-height: 24px; font-size: 12px; color: #666;}


/*media query*/
/*large pcScreen*/
@media (min-width:1200px) {
    .container,.m-footer{padding: 0; width: 1200px;}

}
/*medium pcScreen lg*/
@media screen and (max-width: 1199px) {
	.f-lg-mlr5{margin: 0 5px;}
	.f-lg-mlr10{margin: 0 10px;}
	.f-lg-mlr15{margin: 0 10px;}
	.f-lg-mlrf5{margin: 0 -5px;}
	.f-lg-mlrf10{margin: 0 -10px!important;}
	.f-lg-mlrf15{margin: 0 -15px;}
	.f-lg-plr5{padding: 0 5px;}
	.f-lg-plr10{padding: 0 10px!important;}
	.f-lg-plr15{padding: 0 15px;}
	.f-lg-mb5{margin-bottom: 5px;}
	.f-lg-mb10{margin-bottom: 10px;}
	.f-lg-mb15{margin-bottom: 15px;}
	.f-lg-mb20{margin-bottom: 20px;}
	.f-lg-mb30{margin-bottom: 30px!important;}
	.f-lg-ha{height: auto;}
	.f-lg-fn{float: none;}
	.f-lg-wa{width: auto;}
	.f-lg-db{display: block;}
	.f-lg-dn{display: none;}

}
/*pad md*/
@media screen and (max-width: 991px){
	.f-md-mlr5{margin: 0 5px;}
	.f-md-mlr10{margin: 0 10px;}
	.f-md-mlr15{margin: 0 10px;}
	.f-md-mlrf5{margin: 0 -5px;}
	.f-md-mlrf10{margin: 0 -10px;}
	.f-md-mlrf15{margin: 0 -15px;}
	.f-md-plr5{padding: 0 5px;}
	.f-md-plr10{padding: 0 10px;}
	.f-md-plr15{padding: 0 15px;}
	.f-md-mb5{margin-bottom: 5px;}
	.f-md-mb10{margin-bottom: 10px;}
	.f-md-mb15{margin-bottom: 15px!important;}
	.f-md-ha{height: auto!important;}
	.f-md-fn{float: none;}
	.f-md-wa{width: auto;}
	.f-md-db{display: block;}
	.f-md-dn{display: none !important;}

	.is-header .m-ban .p2{width: 100%;}

	.is-footer{height: auto;}
	/* .is-footer #_span_jiucuo,.is-footer #_ideConac{display: none;} */


}
/*phone sm*/
@media screen and (max-width: 767px) {
	.f-sm-mlr5{margin: 0 5px;}
	.f-sm-mlr10{margin: 0 10px;}
	.f-sm-mlr15{margin: 0 10px;}
	.f-sm-mlrf5{margin: 0 -5px;}
	.f-sm-mlrf10{margin: 0 -10px;}
	.f-sm-mlrf15{margin: 0 -15px;}
	.f-sm-plr5{padding: 0 5px;}
	.f-sm-plr10{padding: 0 10px;}
	.f-sm-plr15{padding: 0 15px;}
	.f-sm-mb5{margin-bottom: 5px;}
	.f-sm-mb10{margin-bottom: 10px;}
	.f-sm-mb15{margin-bottom: 15px;}
	.f-sm-ha{height: auto;}
	.f-sm-fn{float: none!important;}
	.f-sm-wa{width: auto;}
	.f-sm-db{display: block;}
	.f-sm-dn{display: none;}

	.m-toplink .u-left{display: none;}
	.m-bdtit img,.m-bdlist li img{width: 100%;}
	.m-bdlist li{width: calc(100% - 20px) !important;margin: 10px;}

	.is-footer #_ideConac,#f-elderwza,.is-footer #_span_jiucuo{display: block; position: relative;float: left;margin: 0 5px;text-align: center;}
	.is-footer #_ideConac{left: 0;top: 0;width: calc(24% - 10px);}
	#f-elderwza,.is-footer #_span_jiucuo{width: calc(38% - 10px);}
	#f-elderwza{left: 0;top: 9px;}
	#f-elderwza img{width: 100%;}
	.is-footer #_span_jiucuo{right: 0;top: 13px;}
	.m-liststyle1 li a.c-title{max-width: 72%;}
}
/*small xs*/
@media screen and (max-width: 638px) {
	body{font-size: 14px;}

	.is-header .m-ban{padding-bottom: 40px; height: auto; background-position: center bottom;}
}

/*print*/
@media print {
    a[href]:after {
        content: none!important;
    }
}