/* 公告新闻大图 */
.notice-news {
  height: 280px;
}
.notice-news img {
  width: 100%;
  height: 100%;
}

/* 新闻导航 */
.news-nav {
  height: 120px;
  position: relative;
  border-bottom: 1px solid #c2c2c2;
}

.news-nav .news-center {
  width: 1200px;
  height: 75px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.news-nav .news-center ul {
  width: 400px;
  height: 100%;
  display: flex;
  justify-content: space-between;
}
.news-nav .news-center ul .news-nav-li {
  width: 105px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
}

.news-nav .news-center ul .active {
  color: #519820;
}
.news-nav .news-center ul .active::after {
  content: "";
  width: 106px;
  height: 5px;
  border-radius: 3px;
  position: absolute;
  bottom: 0;
  background-color: #519820;
}
.news-nav .news-center .search {
  width: 329px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #99c979;
  padding: 0 5px 0 20px;
  border-radius: 22px;
  box-sizing: border-box;
}
.news-nav .news-center .search img {
  width: 18px;
  height: 18px;
}
.news-nav .news-center .search input {
  width: 260px;
  height: 25px;
  border: none;
  padding-left: 10px;
  color: #999999;
}
.news-nav .news-center .search .search-botton {
  width: 54px;
  height: 36px;
  background-color: #519820;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* 新闻列表 */

.news-list .news-list-ul {
  /* height: 500px; */
  padding-top: 20px;
}
.news-list .news-list-ul li {
  height: 250px;
  padding: 20px 0;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #c2c2c2;
}
.news-list .news-list-ul li:last-child {
  border: none;
}
.news-list .news-list-ul li .left {
  width: 246px;
  height: 180px;
  position: relative;
}
.news-list .news-list-ul li .left img {
  width: 100%;
  height: 100%;
  background-color: yellow;
  border-radius: 14px;
}
.news-list .news-list-ul li .left .news-tab {
  position: absolute;
  left: 0;
  top: 0;
  padding: 10px;
  background-color: #49b300;
  color: #fff;
  font-size: 18px;
  border-radius: 14px 0 14px 0;
}
.news-list .news-list-ul li .left .notice-tab {
  position: absolute;
  left: 0;
  top: 0;
  padding: 10px;
  background-color: #ed1331;
  color: #fff;
  font-size: 18px;
  border-radius: 14px 0 14px 0;
}
.news-list .news-list-ul li .left .zx-tab {
  position: absolute;
  left: 0;
  top: 0;
  padding: 10px;
  background-color: #1399ed;
  color: #fff;
  font-size: 18px;
  border-radius: 14px 0 14px 0;
}
.news-list .news-list-ul li .right {
  width: 900px;
  height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.news-list .news-list-ul li .right .title {
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  transition:all 0.1s 0.1s ease-out;
}
.news-list .news-list-ul li .right .title:hover{
  color: #49b300;
}
.news-list .news-list-ul li .right .content {
  cursor: pointer;
  font-size: 18px;
  color: #666666;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.news-list .news-list-ul li .right .time {
  display: flex;
  align-items: center;
  color: #666666;
}
.news-list .news-list-ul li .right .time img {
  width: 21px;
  height: 21px;
  margin-right: 10px;
}
.news-list .page-number {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.news-list .page-number .page-number-ul{
  width: 60%;
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.news-list .page-number .page-number-ul .page-number-li{
  width: 62px;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #eff2f5;
  border-radius: 6px;
  font-size: 24px;
  color: #333;
}
.news-list .page-number .page-number-ul .active{
    background-color: #519820;
    color: #fff;
}

.news-list .page-number ul li img {
  width: 22px;
  height: 22px;
}

/* 鼠标移入移出 */
.news-list li img{
  -webkit-transition: all .5s;
   -moz-transition: all .5s;
    -ms-transition: all .5s;
     -o-transition: all .5s;
        transition: all .5s;
}
.news-list li:hover img{
  transform: scale(1.1, 1.1);
}