.newEnergy_title{
  font-size: 16px;
  font-weight: bold;
  color: #333;
  line-height: 40px;
  height:40px;
  text-align: left;
  position: relative;

}
.newEnergy_title_icon{
  display: inline-block;
  width: 20px;
  height: 20px;
  vertical-align: middle;
  margin-right:5px;
}
.newEnergy_title_button{
  width:80px;
  height:24px;
  line-height: 24px;
  text-align: center;
  background: #2e79bf;
  color: #fff;
  border-radius: 15px;
  font-size: 13px;
  cursor: pointer;
  position: absolute;
  right: 0;
  top: 10px;
}
.newEnergy_part1_list{
  display: grid;
  grid-template-columns: repeat(5, 20%);
  grid-template-rows: repeat(2, 1fr);
  border-top:1px solid #ddd;
  border-left:1px solid #ddd;
  text-align: left;
}
.newEnergy_part1_list_item1{
  padding: 10px;
  box-sizing: border-box;
  border-right:1px solid #ddd;
  border-bottom:1px solid #ddd;
  grid-row:span 2;
}
.newEnergy_list1_img{
  width:100%;
  overflow: hidden;
}
.newEnergy_list1_img img{
  width:100%;
  object-fit: cover;
  transition: all 0.3s ease;
}
.newEnergy_list1_img:hover img{
  transform: scale(1.1);
}

.newEnergy_part1_list_item2{
  padding: 10px;
  box-sizing: border-box;
  border-right:1px solid #ddd;
  border-bottom:1px solid #ddd;
  grid-column:span 2;
}
.newEnergy_list2_img{
  width:33%;
  overflow: hidden;
  float:left;
  margin-right:10px;
}
.newEnergy_list2_img img{
  width:100%;
  object-fit: cover;
  transition: all 0.3s ease;
}
.newEnergy_list2_img:hover img{
  transform: scale(1.1);
}
.newEnergy_list1_title{
  font-size: 15px;
  font-weight: bold;
  color: #333;
  line-height: 20px;
  overflow:hidden;
  text-overflow:ellipsis;
  line-clamp:2;
  display:-webkit-box;
  text-overflow:-o-ellipsis-lastline;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
}
.newEnergy_list2_title{
  font-size: 14px;
  font-weight: bold;
  color: #333;
  line-height: 18px;
  overflow:hidden;
  text-overflow:ellipsis;
  line-clamp:2; 
  display:-webkit-box;
  text-overflow:-o-ellipsis-lastline;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
}
.newEnergy_list_subtitle{
  font-size: 10px;
  white-space: nowrap;
  color: #666;
  line-height: 16px;
  margin: 5px 0;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
}
.newEnergy_subtitle_left{
  flex: 1 1 49%;
  text-align: left;
}
.newEnergy_subtitle_right{
  flex: 1 1 40%;
  text-align: right;
}
.newEnergy_list_innericon{
  width: 14px;
  height: 14px;
  vertical-align: middle;
  margin-right: 5px;
}
.newEnergy_list_slider{
  display:inline-block;
}
.newEnergy_list_dot{
  display:inline-block;
  width:6px;
  height:6px;
  border-radius: 50%;
  background:#f0f0f0;
  margin:0 2px;
  cursor: pointer;
}
.newEnergy_list_dot_active{
  background:#2e79bf;
}

.newEnergy_list_bottom{
  width:100%;
  background:url(../img/new/bg.jpg) no-repeat 0 0;
  background-size: 100% 100%;
  display:flex;
  justify-content: space-between;
  align-items: stretch;
  border:1px solid #ddd;
}
.newEnergy_list_bottom_line{
  width:1px;
  background:#ddd;
}
.newEnergy_list_bottom_item{
  flex: 0 0 19.5%;
}
.newEnergy_list_bottom_item_img{  
  width:100%;
  overflow: hidden;
}
.newEnergy_list_bottom_item_img img{
  width:100%;
  transition: all 0.3s ease;
}
.newEnergy_list_bottom_item_img:hover img{
  transform: scale(1.1);
}
.newEnergy_list_bottom_item_word{
  width:100%;
  padding:20px 30px;
  box-sizing: border-box;
  text-align: left;
  font-size: 14px;
  color: #fff;
  line-height: 20px;
}


@media screen and (max-width:900px) {
  .newEnergy_title{
    font-size: 14px;
    line-height: 30px;
  }
  .newEnergy_part1_list{
    grid-template-columns: repeat(2, 50%);
    grid-template-rows: repeat(4, 1fr);
  }
  .newEnergy_part1_list_item1{
    grid-row:span 4;
  }
  .newEnergy_part1_list_item2{
    grid-column:span 1;
  }
  .newEnergy_list_bottom_item_word{
    color:#333;
    font-size:10px;
    line-height: 14px;
    padding:10px 3px;
  }
}






