/* 消除边距 */

body, hr, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, textarea, blockquote, p {
    padding: 0;
    margin: 0;
}

/*列表样式消除*/

ol, ul, li {
    list-style: none;
}

i {
	font-style: normal;
}

/* a标签样式重置 */

a {
    color: #333;
    text-decoration: none;
}

/*盒模型默认使用内边框*/

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

/*清除浮动*/

.clearfix:before, .clearfix:after {
    content: "";
    display: table;
}

.clearfix:after {
    clear: both;
}

/* Hides from IE-mac */

* html .clearfix {
    height: 1%;
}

.clearfix {
    display: block;
}

/* End hide from IE-mac */

*+html .clearfix {
    min-height: 1%;
}

/* IE7 */

/* 添加浮动 */

.fl {
    float: left;
}

.fr {
    float: right;
}

/*合并表格边框*/

table, td, tr, th {
    border-collapse: collapse;
}

/*img在盒子中有下边距*/

img {
    /*IE7*/
    border: none;
    vertical-align: middle;
}

html {
    font-size: 12px;
     overflow-x: hidden; 
}

/*全局设置*/

body {
    font: 16px Helvetica, Arial, "Helvetica Neue", "Microsoft yahei", "SimHei", sans-serif !important;
    /* font-size: 16px !important; */
}

/* 单行文本超出隐藏并显示省略 */

.overflow-1 {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* 多行文本超出隐藏并显示省略 */
.overflow-2 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.overflow-3 {
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
.overflow-4 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}
.overflow-5 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
}
.overflow-6 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
}
.overflow-n {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.cur{
    cursor: pointer;
}
.w{
    width: 1170px;
    margin: 0 auto;
}
.f12{
    font-size: 12px;
}
.f14{
    font-size: 14px;
}
.f16{
    font-size: 16px;
}
.f18{
    font-size: 18px;
}
.f20{
    font-size: 20px;
}
.f24{
    font-size: 24px;
}
.green{
    color: #1b3865
}
.c666{
	color: #666666
}
/* 用竖线隔开的导航 */
.links li{
    position: relative;
    cursor: pointer;
}
.links li:not(:last-child)::after{
    content: '|';
    position: absolute;
    top: 0;
    right: 0;
}
/* 分割线 */
.line{
	height: 1px;
	background: #e3e3e3;
}
.moreTag{
	display: inline-block;
	padding: 3px 10px;
	background: #e8e8e8;
	border: 1px solid #d9d9d9;
	border-radius: 17px;
	cursor: pointer;
	color: #8c8b8b;
}
.hover-big
{
        cursor: pointer;
        overflow: hidden;
}
.hover-big img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hover-big img:hover{
    transform: scale(1.05);
    transition: ease-in-out 0.1s;
}
/* 分页 */
.fy{
    width: 100%;
    text-align: center;
    margin: 30px 0;
}
.fy a{
    display: inline-block;
    padding: 0px 10px;
    line-height: 28px;
    border: 1px solid #1b6540;
    border-right: 0;
}
.fy a:hover{
    background: #eeeeee;
}
.fy .weiye{
    border-right: 1px solid #1b6540;
}
a[disabled=disabled]{
    cursor: not-allowed;
}
a[disabled=disabled]:hover{
    background: transparent;
}
.fy select{
    padding: 5px 10px;
    border: 1px solid #1b6540;
}