﻿@charset "utf-8";
/* CSS Document */


/*定义滚动条高宽及背景 高宽分别对应横竖滚动条的尺寸*/
::-webkit-scrollbar {width: 6px; height: 16px; background-color: #fff;}
/*定义滚动条轨道 内阴影+圆角*/
::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.4);
  border-radius:0px;
  background-color: #f2f2f2;
  }
/*定义滑块 内阴影+圆角*/
::-webkit-scrollbar-thumb {
  cursor: pointer;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .2);
  background-color: rgba(43, 86, 152, 1);
  border-radius: 0px;
}
::-webkit-scrollbar-thumb:hover {background-color: rgba(43, 86, 152, 1);}
::-webkit-scrollbar-thumb:active {background-color: rgba(43, 86, 152, 1);}

/* 思源黑体可以商用 */

@font-face{
	font-family:'SourceHanSansCNNormal';
	src:url('../fonts/SourceHanSansCN-Normal.eot');
	src:local('☺'),
	url('../fonts/SourceHanSansCN-Normal-1.eot') format('embedded-opentype'),
	url('../fonts/SourceHanSansCN-Normal.woff') format('woff'),
	url('../fonts/SourceHanSansCN-Normal.ttf') format('truetype'),
	url('../fonts/SourceHanSansCN-Normal.otf') format('opentype'),
	url('../fonts/SourceHanSansCN-Normal.svg') format('svg');
	}


html {height: 100%;}
body {
	font-family:"思源黑体 CN", "SourceHanSansCNNormal","microsoft Yahei",arial,"STXihei";
	font-size:14px; 
	color:#333; 
	line-height:24px; 
	background-color: #fff;
	overflow-x: hidden;
	margin: 0;
	padding: 0;
	
}

div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,em,dt,form,p,i,span{margin:0;padding:0; font-size:100%; font-family:inherit; list-style:none; font-weight: normal; font-style: normal;}
select,input,textarea{ border-radius:0; -webkit-border-radius:0; color:#555555;}
input:focus { outline: none;}
input,button,select,textarea{outline:none;/*-webkit-appearance:none;*//*强制去除表单自带的样式*/ }
textarea{resize:none;/*-webkit-appearance:none;*//*强制去除textarea自带的样式*/ }
textarea,input,select { background:none; border:none; margin:0; padding:0;}


a{color: #333;text-decoration: none;transition: all .2s ease-in-out;}
a:hover {color: #2b5698; text-decoration: none;}
a:active,a:focus {outline: 0;color: #2b5698; text-decoration: none;}
img {border:0; vertical-align: middle;}

.clearfix:after { visibility:hidden; display:block; font-size:0; content:" "; clear:both; height:0;} 
.clearfix { zoom:1;}

.ellipsis {text-overflow: ellipsis;white-space: nowrap;overflow: hidden;}

.hang2{overflow: hidden; text-overflow: ellipsis;display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient:vertical;box-sizing: border-box;}
.hang3{overflow: hidden; text-overflow: ellipsis;display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient:vertical;box-sizing: border-box;}
.hang4{overflow: hidden; text-overflow: ellipsis;display: -webkit-box; -webkit-line-clamp: 4; webkit-box-orient:vertical;box-sizing: border-box;}

.fl{ float:left;}
.fr{ float: right;}

/*图片放大*/
.pic-scale{ position: relative; overflow: hidden; }
.pic-scale img { -webkit-transition: .5s; -o-transition: .5s; transition: .5s;max-width: 100%; }
.pic-scale:hover img { -webkit-transform: scale(1.05); -ms-transform: scale(1.05); -o-transform: scale(1.05); transform: scale(1.05); }

.item-inner {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
}

table{
    width: 100%;
    border-collapse: collapse;
}
table th,
table td{
    text-align: center;
	padding:12px;
}
table tbody tr.firstRow{background: #2b5698;color: #FFF;font-size: 14px;}

/*地图*/
.map{display: block;clear: both;margin-bottom: 50px;}
.map .title{ font-size: 22px; line-height: 34px;}

/*上一条，下一条*/
.nextpage{overflow: hidden; margin: 30px 0;}
.nextpage a{display: block; padding: 15px 0;border-bottom: 1px solid #e7e7e7;}
.nextpage a.nextpro{border-bottom: none;}




/*pages分页*/

.pagination {display: block; text-align: center; margin: 50px 0;}
.pagination ul{display: inline-block;}
.pagination ul li{float: left;}
.page-link {position: relative;display: block;padding: .6rem 1rem;margin-left: -1px;line-height: 1.25;color: #2b5698;background-color: #fff;border: 1px solid #dee2e6;font-size: 16px;}
.page-link:hover {z-index: 2;color: #2b5698;text-decoration: none;background-color: #e9ecef;border-color: #2b5698;}
.page-link:focus {z-index: 2;outline: 0;box-shadow: 0 0 0 .2rem rgba(0,123,255,.25)}
.page-item:first-child .page-link {margin-left: 0;border-top-left-radius: .25rem;border-bottom-left-radius: .25rem}
.page-item:last-child .page-link {border-top-right-radius: .25rem;border-bottom-right-radius: .25rem}
.page-item.active .page-link {z-index: 1;color: #fff;background-color: #2b5698;border-color: #2b5698;font-size: 16px;}
.page-item.disabled .page-link {color: #333;pointer-events: none;cursor: auto;background-color: #fff;border-color: #2b5698; font-size: 16px;}

@media screen and (max-width:767px) {

.page-link {font-size: 14px;padding: .6rem .6rem;}
.page-item.active .page-link {font-size: 14px;}
.page-item.disabled .page-link { font-size: 14px;}


}