*{
	border: 0;
	padding: 0;
	margin: 0;
}
/* 站点变灰。
html{
	 filter:grayscale(100%);
	 -webkit-filter:grayscale(100%);
	 -moz-filter:grayscale(100%);
	 -ms-filter:grayscale(100%);
	 -o-filter:grayscale(100%);
	 filter:url("data:image/svg+xml;utf8,#grayscale");
	 filter:progid:DXImageTransform.Microsoft.BasicImage(grayscale=1);
	 -webkit-filter:grayscale(1);
 }
 */
/* 站点变灰。*/
.gray{
	 filter:grayscale(100%);
	 -webkit-filter:grayscale(100%);
	 -moz-filter:grayscale(100%);
	 -ms-filter:grayscale(100%);
	 -o-filter:grayscale(100%);
	 filter:url("data:image/svg+xml;utf8,#grayscale");
	 filter:progid:DXImageTransform.Microsoft.BasicImage(grayscale=1);
	 -webkit-filter:grayscale(1);
 } 
body{
	/*background-color: #fcfaf7;*/
}
ul, li {
    list-style: none;
	border: 0;
	padding: 0;
	margin: 0;
}
h4{
	margin: 0;
}
h4 a{
	font-weight: normal;
}
a{
	color: #333333;
}
a:hover{
	text-decoration: none !important;
	color: #ed6c1f ;
}
.fl{
	float: left;
}
.fr{
	float: right;
}
.clearfix{
	clear: both;
}
a:hover .title{
	text-decoration: none !important;
	color: #ed6c1f !important;
}

.btn:focus, .btn:active {
    outline: none !important;
    box-shadow: none;
}
:focus {

outline: none;

}
.w1500{
	max-width: 1500px;
	margin: 0 auto;
}
/*header**/
.header{
	background: #FFFFFF;
}
#myheader{
	background: url(../images/build.png) center bottom no-repeat;
}
@media(min-width: 768px){
	#myheader{
		background: url(../images/build.png) right center no-repeat;
	}
}
#myheader .wrap{
	height: 180px;
}
#myheader .wrap .logo-link{
	
}
#myheader .wrap .logo-link img{
	/*margin-top: 20px;*/
	width: 100%;
}
@media (min-width: 768px){
	#myheader .wrap .logo-link img{
		width: 860px;
	}
	#myheader .wrap{
		height: 220px;
	}
	
}
#myheader .wrap .build{
	/*height: 280px;/* 例如，设置父容器的高度为视口高度 */
	/*background: url(../images/build.png) left top no-repeat;
	display: grid;
	align-items: center;
    justify-items: right;*/
	padding-right: 40px;
	margin-top: 10px;
}
#myheader .wrap .build .search-box input{
	display: inline-block;
	width: auto;
}
/*导航*/
.navbar{
	margin-bottom: 0;
}
.navbar-default {
    background: url(../images/nav-bg.png) repeat-x;
    border: 0;
}
.navbar-brand{
	padding: 0 !important;
}
.navbar-brand>img{
	margin-top: 3px;
    margin-left: 10px;
}
@media (min-width: 768px){
	.navbar-nav {
		width: 100%;
	}
	.navbar-default .navbar-nav>li{
		width: 14.28%;
	}
}

.navbar-default .navbar-nav>li>a {
    color: #f15a23;
	font-size: 1.8rem;
	text-align: left;
}
@media(min-width: 768px){
	.navbar-default .navbar-nav>li>a {
		color: #FFFFFF;
		font-size: 2rem;
		text-align: center;
	}
	
}
.navbar-default .navbar-nav>li>a:focus,.navbar-default .navbar-nav>li>a:hover{
	background-color: #d43c15;
	color: #FFFFFF;
}
.navbar-default .navbar-nav>.open>a{
	color: #FFFFFF !important;
    background-color: #d43c15 !important;
}

.dropdown-menu>li>a{
	font-size: 16px;
    padding: 10px 20px;
    text-align: center;

}
.navbar-default .navbar-toggle .icon-bar{
	background-color: #FFFFFF;
}
.navbar-default .navbar-toggle:focus, .navbar-default .navbar-toggle:hover {
    background: transparent;
}

.input-group {
	display: inline-block;
}
/* Carousel base class */
.carousel {
	width: 100%;
	/*display: grid;*/
	/*margin-bottom: 30px;*/
}
.carousel-caption {
  z-index: 10; /* Since positioning the image, we need to help out the caption */
  background: none !important; /* 移除渐变背景 */
  /*text-shadow: none !important; /* 可选：移除文字阴影（根据需要） */
}
.carousel-control.left{
	background-image: none !important;
}
.carousel-control.right{
	background-image: none !important;
}
.carousel-indicators {
    position: absolute;
    bottom: 10px;
    left: auto;
    z-index: 15;
    width: auto;
    padding-left: 0;
    margin-left: -30%;
    text-align: center;
    right: 50px;
    list-style: none;
}
.carousel-indicators li {
    width: 24px;
    height: 24px;
    margin: 0 8px;
	border-radius: 24px;
	text-indent: inherit;
	color: #FFFFFF;
	line-height: 24px;
    
}
.carousel-indicators .active {
    width: 24px;
    height: 24px;
    margin: 0 8px;
	border-radius: 24px;
	background-color: #f54526;
	border-color: #f54526;
}
/* Declare heights because of positioning of img element */
.carousel .item {
	width: 100%; /* 或者具体的宽度 */
    height: 235px; /* 设置高度为0 */
	padding: 0;
    /*padding-top: 35.25%; /* 16/9 = 100/56.25 */
}
@media(min-width: 768px){
	.carousel .item {
		height: 0; 
		padding: 0;
        padding-top: 42.25%;
	}
	
	
}
.carousel-inner > .item::before {
  content: none !important; /* 移除伪元素生成的遮罩层 */
}
.carousel-inner > .item > a > img {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 100%;
  object-fit: cover; 
  height: 100%;
  width: 100%;
}
.carousel .pic-title{
	font-size: 16px;
}


.zh-tz-box{
	background: #fcfaf7;
	padding-top: 10px;
}
@media(min-width: 768px){
	.zh-tz-box{
		background: #fcfaf7;
		padding-top: 30px;
	}
}
/**综合要闻*/

/* 核心修改：响应式宽高比容器 */
.swiper-container {
	width: 100%;
	position: relative;
	overflow: hidden;
}

/* 16:9 宽高比（修改padding-top值可调整比例） */
.swiper {
	width: 100%;
	height: 0;
	padding-top: 67.25%; /* 9/16=56.25% */
	position: relative;
}

.swiper-wrapper {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.swiper-slide {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	position: relative;
}
/*轮播图满*/
.swiper-slide .slide-a{
	height: 100%;
	width: 100%;
}
.swiper-slide p.f-title{
	color: white;
	font-size: 16px;
	position: absolute;
	bottom: 0px;
	/*padding-left: 20px;*/
	width: 100%;
	text-shadow: 0 1px 2px rgba(0,0,0,.6);
	background-color: rgb(237,108,31,0.5);
	margin: 0;
	line-height: 50px;
	padding-left: 20px;
	
}

/* 优化移动端触控体验 */
.swiper-slide img {
	width: 100%;
	height: 100%;
	/*object-fit: cover;*/ /* 保持图片比例 */
	pointer-events: none; /* 防止图片拖动干扰滑动 */
}

/* 白色导航按钮（移动端隐藏） */
.swiper-button-next,
.swiper-button-prev {
	color: #fff !important;
	background: none !important;
	width: 40px;
	height: 40px;
	opacity: 0.9;
	transition: opacity 0.3s;
}

/* 移动端隐藏导航按钮 */
@media (max-width: 768px) {
	.swiper-button-next,
	.swiper-button-prev {
		display: none !important;
	}
}

/* 分页器样式优化 */
.swiper-pagination {
	bottom: 15px !important;
	left: auto !important;
    right: 0;
    transform: translateX(-50%);
	width: auto !important;
}

.swiper-pagination-bullet {
	background: transparent !important;
	border: 2px solid #fff;
	width: 12px;
	height: 12px;
	margin: 0 8px !important;
}

.swiper-pagination-bullet-active {
	background: #fff !important;
	border: none;
}


.col{
	position: relative;
}
.col .col-title{
	float: left;
	color: #b83213;
    font-size: 22px;
    line-height: 40px;
    padding-bottom: 14px;
    font-weight: bold;
	background: url(../images/tline.png) left bottom no-repeat;
	margin: 10px 0;
	padding-right: 75px;
}

.col .col-more{
	position: absolute;
    top: 20px;
    right: 10px;
}
.col .col-more a {
    display: block;
    color: #a15552;
    font-size: 14px;
    line-height: 14px;
    /*padding-bottom: 4px;
    border-bottom: 2px solid #96403c;*/
    padding-right: 10px;
  
}
.link-more{
	padding-right: 10px !important;
}
@media(min-width: 768px){
	.link-more{
		padding-right: 0 !important;
	}
	.xiaoxun{
		background: url(../images/xiaoxun.png) center -14px no-repeat;
	}
}

.col .col-more a:before{
	content: '';
    display: inline-block;
    width: 9px;
    height: 14px;
    background: url(../images/xq_titl.png) no-repeat center;
    background-size: 100% 100%;
	margin-right: 5px;
    vertical-align: -2px;
    
}	
.col .col-more a:after{
	content: '';
    display: inline-block;
    width: 9px;
    height: 14px;
    background: url(../images/xq_titr.png) no-repeat center;
    background-size: 100% 100%;
    margin-left: 5px;
    vertical-align: -2px;
}	
.card-wrap{
	margin-bottom: 20px;
}
.custom-card {
    padding: 20px;
    /*border-radius: 8px;*/
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
	border-bottom: 3px solid #a8091f;
	background: white url(../images/flowerbg.png) right bottom no-repeat;
}

.custom-card:hover {
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
    transform: translateY(-2px);
    cursor: pointer;
}

.title {
    font-size: 1.6rem;
	line-height: 3rem;
    margin-bottom: 1rem;
	overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
	height: 9rem;
	color: #333333;
}
.title a{
    color: #333333;
}

.date {
    font-size: 1.4rem;
    margin-bottom: 0;
}
/*通知公告*/
.tztg-box{
	margin: 20px auto;
}
.tztg{
}
.tztg .tztg-col{
	background: #ebdbb6;
	text-align: center;
}
.tztg h3{
    color: #a8091f;
    font-size: 2.2rem;
    line-height: 4rem;
    font-weight: bold;
    margin: 0;
}
@media (min-width: 768px) {
	.tztg{
		padding-right: 0;
	}
	
	.tztg .tztg-col{
		height: 214px;
	}
	.tztg h3{
		padding-top: 60px
	}
}
.tztg-col a{
	color: #333333;
}
.tztg ul{
	
}

.tztg-list a{
	display: flex;
}
.tztg-list ul li{
	background: white;
	transition: all 0.3s ease;
}

.tztg-list ul li:hover{
    transform: translateY(-2px);
}
.tztg-list .title-box{
	padding: 5px;

}
.tztg-list .title-box .title{
	flex: 1;
	height: 6rem;
	color: #333333;
	overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.tztg-list .date-box{
	background: #ed6c1f;
    border-radius: 3px;
    color: #FFFFFF;
    min-width: 64px;
    /*height: 58px;*/
    padding: 2px;
    box-sizing: border-box;
    text-align: center;
    font-size: 14px;
	margin: 26px 5px;
}
.tztg-list .date-box .date{
	display: block;
    
    color: #FFFFFF;
    font-size: 2.2rem;
}
.yearmounth{
	display: block;
	background: #FFFFFF;
	color: gray;
	line-height: 2.2rem;
}

/*基层动态*/
.jcdt{
	background: url(../images/dongtai.png) left center no-repeat !important;
}
.wrap{
	padding-right: 0;
    padding-left: 0;
}
.jcdt-box{
	background: url('../images/qn-bg.png') no-repeat top center; /* 设置背景图片 */
    background-size: 100% 400px; /* 使背景图片覆盖整个元素 */
	padding: 15px 20px;
}
.xjdx{
	padding: 0 10px;
}

.con-box{
	background: white;
}
.con-box ul li{
	margin-bottom: 14px;
}
.a-box{
	display: block;
	font-size: 1.6rem;
	max-width: 340px;
	overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.a-box .img-box{
	width: 34%;
}
.a-box .img-box img{
		height: 100%;
}
.xjdx .img-box{
	width: 100px;
	height: 160px;
	box-shadow: 0 0 14px rgba(0,0,0,0.1);
}
@media (min-width: 768px) {
	.a-box .img-box{
		width: 170px;
		height: 120px;
	}
	.a-box .img-box img{
		height: 100%;
		object-fit: cover; /* 保持宽高比，填充容器 */
		object-position: top;  /* 从顶部开始裁剪（而不是默认的 center） */
	}
}
@media (min-width: 768px) {
	.xjdx .img-box{
		width: 150px;
		height: 170px;
		box-shadow: 0 0 14px rgba(0,0,0,0.1);
	}
}


.ksdh .a-box .img-box img {
	object-fit: fill;
}
.ksdh .a-box{
	display: flex;
}
.ksdh .title-img{
	height: 123px;
	padding-right: 0;
	padding-left: 0;
	text-align:center;
}
@media (min-width: 768px) {
	.ksdh .title-img{
		padding-left: 15px;
	}
}
.ksdh .imgrap{
	width: 123px;
	box-shadow: 0 0 14px rgba(0,0,0,0.1);
	height: 100%;
}
.ksdh .imgrap img{
	
	width: auto;
	height: 100%;
}

.a-box .title-box{
	flex: 1;
	flex-grow: 1; /* 占剩余空间 */
	/*margin-left: 20px;*/
	padding: 10px 20px;
	transition: all 0.3s ease;
	box-shadow: 0 0 14px rgba(0,0,0,0.1);
    border-bottom: 3px solid #a8091f;
    background: white url(../images/flowerbg.png) right bottom no-repeat;
}
.a-box .title-box:hover{
	transform: translateY(-2px);
}
.a-box .title-box .title{
    height: 6rem;
    color: #333333;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
	margin-top: 10px;
}
.a-box img{
	object-fit: cover; 
	width: 100%;
	height: 100%;
	padding: 1em 0;
}
@media (min-width: 768px){
	.a-box img{
	margin-top:0;
	padding: 0;
}
}
.wthdtitle{
	background: url(../images/shetuan.png) left center no-repeat !important;
}

/*先进典型*/

.xjdx-box{
	/*background: white;
	padding: 30px;*/
	background: url(../images/bg2.png) no-repeat top center;
    background-size: 100% 400px;
    padding: 50px 30px;
}
.ksdh h2{
	background: url(../images/link.png) left center no-repeat !important;
}
.ksdh .a-box .longimg{
	width: 46%;
}
.ksdh .a-box .longimg img{
		box-shadow: 0px 0 14px rgb(0,0,0,0.1);
		padding: 0;
		width: 100%;
		height: 100px;
	}
@media (min-width: 768px){
	.ksdh .a-box .longimg {
		width: 46%;
		
	}
	.ksdh .a-box .longimg img{
		margin-top: 0;
		width: 100%;
		height: 100%;
	}
}
.ksdh ul li {
	margin: 15px 0;
}
.link{
	margin-left: 10px !important;
}
@media(min-width: 768px){
	.link{
		margin-left: 0 !important;
	}
}

/*底部*/
.footer{
	background: url('../images/ffbg.png') no-repeat top center; /* 设置背景图片 */
    background-size: cover; /* 使背景图片覆盖整个元素 */
	min-height: 230px;
}
.footer .link-box{
	padding: 20px 0 0 0;
	border-bottom: 1px solid white;
}
.footer .link-title{
	font-size: 22px;
    line-height: 40px;
    padding-left: 58px;
    font-weight: bold;
	color: white;
}

.footer select {
    width: 260px;
    height: 40px;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    text-indent: 20px;
    margin-bottom: 30px;
    outline: none;
    border: none;
    color: #FFFFFF;
    font-size: 16px;
    background: url(../images/xia.png) no-repeat 230px center #b53b42;
}
.footer .copyright{
	padding-top: 70px;
}
.footer .copyright p{
	color: white;
}
.footer .copyright p .backlogin{
	color: yellow;
}

/*内容页*/
.content{
	max-width: 1400px;
	background: white;
	margin: 0 auto 20px auto;
}

.breadcrumb{
	background-color: transparent;
	padding: 0;
	margin: 0;
	line-height: 50px;
}
.content .detail-header{
	font-family: 方正小标宋简体;
	text-align: center;
	font-size: 24px;
}
@media (min-width: 768px) {
	.content .detail-header{
	font-size: 36px;
	}
}
.meta-info{
	padding: 10px 0 20px 0;
	text-align: center;
	color: #666666;
}
.content-section section img{
	max-width: 100%;
    border: 0px;
    border: none;
}
/* 自定义按钮样式 */
.btn-operation {
    max-width: 300px;
    margin: 0 auto 15px;
    transition: all 0.3s ease;
}
.btn-operation:hover {
    transform: translateY(-2px);
    box-shadow: 0 2px 6px rgba(0,75,135,0.2);
}
@media (min-width: 768px) {
	.content{
		padding: 0  20px;
	}
	
    .btn-operation {
        display: inline-block;
        width: auto;
        min-width: 180px;
        margin: 0 15px;
    }
}
.btn-box{
	text-align: center;
}

/*栏目页**/
.channel{
	max-width: 1400px;
	margin: 0 auto;
}
.channel .left-bar{
	background: white;
	border-left: 4px solid #ed6c1f;
}
.channel .left-bar h3{
	background: #ed6c1f url(../images/col-icon.png) 15px center no-repeat;
	margin: 0;
	line-height: 80px;
	text-align: center;
	color: white;
}
.channel .left-bar h3 a{
	display: block;
	margin: 0;
	line-height: 70px;
	text-align: center;
	color: white;

}
.left-bar ul{
	overflow: hidden;
}
.channel .left-bar ul li{
	float:left;
}

@media(min-width: 768px){
	.channel .left-bar ul li{
		float: inherit;
		background: white;
		margin: 0;
		line-height: 60px;
		text-align: center;
		border-bottom: 1px solid #f3f1ed;
	}
	
}

.channel .left-bar ul li a{
	padding: 0 20px;
	line-height: 30px;
}
@media(min-width: 768px){
	.channel .left-bar ul li a{
		display: block;
		line-height: 60px;
		text-align: center;
		font-size: 16px;
		/*background: white url(xia.png) left center no-repeat;*/
	}
}

.channel .right-wrap{
	background: white;
}
.channel .right-box h3{
	/*padding-bottom: 15px;
	border-bottom: 2px solid #ed6c1f;*/
}
.channel .right-box h3 a{
	font-size: 22px;
	color: #ed6c1f;
	
}
.bcolor{
	background: #fff8f0 !important;
	color: #ed6c1f;
	font-weight: bold;
}

/* 右侧列表样式 */
.list-header {
	border-bottom: 2px solid #004b87;
	margin-bottom: 20px;
	padding-bottom: 10px;
}
.article-item {
	padding: 15px;
	border-bottom: 1px solid #eee;
	transition: background 0.2s;
}
.article-item:hover {
	background: #f8f9fa;
}
.article-date {
	color: #666;
	min-width: 100px;
}
@media (max-width: 767px) {
	.channel-nav {
		border-right: none;
		margin-bottom: 20px;
	}
}
.page {
    line-height: 60px;
}

.topnav {
	line-height: 36px;
	text-align: right;
}

.topnav a{
	color: #ed6b1f;
}
/*
@media (min-width: 768px){
	.search-box{
		margin-top: 88px;
	}
}
*/
.btn-orange{
	background-color: #f15a23;
	color: #FFFFFF;
}
.text-orange{
	border: 1px solid #f15a23;
	background-color: rgba(255, 255, 255, 0.8);
}
.dropdown-menu{
	min-width: 100%;
}

a.txt-box{
	display: block;
	padding: 15px  0;
	border-bottom: 1px solid #f1f1f1;
	transition: background-color 0.3s ease;
}

.date-box{
	width: 68px;
}
.date-box{
	text-align: center;
	border-right: 1px solid #eaeaea;
}
.date-box .date{
	font-size: 2.2rem;
	color: #ed6c1f;
	font-weight: bold;
}
.date-box .ym{
	font-size: 1.4rem;
	margin: 0;
	color: gray;
}
.news-box{
	max-width: 70%;
}
@media(min-width: 768px){
	.news-box{
		max-width: 80%;
	}
}
.news-box .news-title{
	padding-left: 15px;
	font-size: 1.6rem;
	margin: 0;
	overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
@media(min-width: 768px){
	.news-box .news-title{
		font-size: 1.8rem;
	}
	.title{
		font-size: 1.8rem;
	}
}
.txt-box:hover{
	color: #FFFFFF;
	background-color: #ed691f;
}
.txt-box:hover .date-box .date{
	color: #FFFFFF;
}
.txt-box:hover .date-box .ym{
	color: #FFFFFF;
}

.young-title{
	color: #FFFFFF !important;
	background: url(../images/tline-w.png) left bottom no-repeat !important;
}
.young-more a{
	color: #FFFFFF  !important;
}
.young-more a:before {
    background: url(../images/xq_titl_w.png) no-repeat center !important;

}
.young-more a:after {
    background: url(../images/xq_titr_w.png) no-repeat center !important;

}
/*青年*/
.qn-box{
	height: 360px; 
	overflow: hidden; 
	padding: 15px; 
	background:#FFFFFF;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.your-class a{
	padding: 30px; 
	display: block;
	transition: all 0.3s ease;
}
.your-class a:hover{
	transform: translateY(-2px);
}
.qn-img{
	width: 100%;
    height: 0;
    padding-top: 76.64%; /* 16:9 比例 (9/16=0.5625) */
    position: relative;
    overflow: hidden;
}
.qn-img img{
	position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* 现代浏览器支持 */
	border: 1px solid #e6e6e6;
}
.qn-txt .qn-title{
	font-size: 1.6rem;
	line-height: 2.4rem;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	min-height: 48px;
}
.qn-txt .qn-date{
	color: #cbb281;

}
ul.f-link{
	margin: 10px 0 30px 0;
	overflow: hidden;
}
ul.f-link li{
	float: left;
	margin-right: 40px;
	padding-left: 20px;
	background: url(../images/r-icon.png) left center no-repeat;
	overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ff-img-box img{
	width: 100%;
	margin-top: 50px;
	border-right: 1px solid #FFFFFF;
	padding-right: 30px;
}
a.pt-box{
	display: block;
	text-align: center;
	transition: all 0.3s ease;
}
a.pt-box:hover{
	 transform: translateY(-2px);
}
.pt-box img{
	max-width: 100%;
	width: 180px;
	max-height: 225px;
	padding: 12px;
}
.pt-box h4{
	line-height: 40px;
}
.advisor{
	width: 100%;
}
@media(min-width: 768px){
	.advisor{
		width: 20%;
	}
}
.duty{
	color: gray;
}

.tztb-more{
	
}
a.tztb-more:before{
	content: '';
    display: inline-block;
    width: 9px;
    height: 14px;
    background: url(../images/xq_titl.png) no-repeat center;
    background-size: 100% 100%;
	margin-right: 5px;
    vertical-align: -2px;
    
}	
a.tztb-more:after{
	content: '';
    display: inline-block;
    width: 9px;
    height: 14px;
    background: url(../images/xq_titr.png) no-repeat center;
    background-size: 100% 100%;
    margin-left: 5px;
    vertical-align: -2px;
}



















