@charset "UTF-8";
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font-weight: normal;
  font: '微软雅黑',inherit;
  vertical-align: baseline;
}

ol,ul{
	list-style: none;
	text-decoration: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
a,a:hover{
	text-decoration: none;
}
i,em{
    font-style:normal;
}
video{
  outline: none;
}
div:focus {outline: none;}
.fl{
	float: left;
}
.fr{
	float: right;
}
a{
  color: #333;
  display: block;
}
h1{
  font-size: 64px;
}
h2{
  font-size: 48px;
}
h3{
  font-size: 36px;
}
h4{
  font-size: 24px;
}
h5{
  font-size: 18px;
}
img{
  display: block;
}
.cont{
  width: 86%;
  margin:0 auto;
}
.img_box{
  overflow:hidden;
}

.padding{
  padding: 40px 0;
}
/*侧边滚动条自定义样式*/

/*定义滚动条高宽及背景 高宽分别对应横竖滚动条的尺寸*/ 
::-webkit-scrollbar {
  width: 4px;
  height: 6px;
}
::-webkit-scrollbar:hover{
  width: 8px;
}
/*定义滚动条轨道*/ 
::-webkit-scrollbar-track {
    background-color: transparent;
    -webkit-border-radius: 2em;
    -moz-border-radius: 2em;
    border-radius: 2em
}
/*定义滑块 内阴影+圆角*/ 
::-webkit-scrollbar-thumb {
  background-color: #046eb8;
  background-image: -webkit-linear-gradient(45deg,rgba(255,255,255,0) 100%,transparent 100%,transparent 50%,rgba(255,255,255,0) 50%,rgba(255,255,255,0) 75%,transparent 75%,transparent);
  -webkit-border-radius: 2em;
  -moz-border-radius: 2em;
  border-radius: 2em
}

/*清除浮动*/
  .clearFix::before,
  .clearFix::after{
      content: "";
      display: block;
      visibility: hidden;
      height: 0;
      line-height: 0;
      clear: both;
  }
  input{
    outline: none;
  }

/*文本超行省略显示*/
  .overflow_1{
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
  }
  .overflow_2{
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }
  .overflow_3{
    overflow: hidden;
    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_7{
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 7;
    -webkit-box-orient: vertical;
  }

/*图片盒子*/
  .img_box>img{
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    background-repeat: no-repeat;
  }

  /*图片鼠标经过效果*/
    .img_box:hover>img{
      transform: scale(1.1);
    }
    .img_box>img{
      transition:all 0.8s;
    }
  
/*弹性布局*/

  /*换行*/
    .flex_tap{
      flex-wrap: wrap;
    }
  /*居中*/
  .flex_cont{
    display: flex;
    justify-content: center;
  }
  /*两端*/
  .flex_sp{
    display: flex;
    justify-content: space-between;
  }
  /*垂直*/
  .flex_y{
    display: flex;
    justify-content: space-between;
    flex-direction: column;
  }


/*page 分页器*/
  .pagination {
    display: flex;
    justify-content: center;
    margin-top: 10px;
  }
  .pagination a {
    background: #fff;
    border: 1px solid #ccc;
    color: #333;
    font-size: 14px;
    padding: 8px 12px;
    margin: 0 5px;
    border-radius: 3px;
  }
  .pagination span {
      color: #333;
      font-size: 14px;
      padding: 8px 2px;
      margin: 0 5px;
      border-radius: 3px;
  }
  .pagination a:hover {
    color: #046eb8;
    border: 1px solid #046eb8;
  }
  .pagination a.page-num-current {
    color: #fff;
    background: #046eb8;
    border: 1px solid #046eb8;
  }
  .my-4{
    margin-top:40px;
  }
  /*背景图片样式自适应*/
  .bj_img{
    background-position: center;
    background-size: cover;
  }

/*动画样式*/
  /*线条动画*/
    @keyframes line{
        from{
          width: 0;
        }
        to{
          width: 100%;
        }
    }
  /*背景动画*/
  .bj_am{
    animation: bjimg 30s infinite;
    animation-timing-function: linear;
    -webkit-animation: bjimg 30s infinite;
    -webkit-animation-timing-function: linear;
  }
