.newsList-wrapper {
  padding-bottom: 50px;
}
.newsList-wrapper .nav-wrapper {
  border-bottom: 1px solid #eeeeee;
}
.newsList-wrapper .nav-wrapper .nav-item-wrapper {
  position: relative;
}
.newsList-wrapper .nav-wrapper .nav-item-wrapper .nav-item {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 17px 19px;
  font-size: 18px;
  font-weight: bold;
  font-stretch: normal;
  letter-spacing: 0px;
  color: #333333;
  cursor: pointer;
  position: relative;
}

/* .newsList-wrapper .nav-wrapper .nav-item:first-child::after {
  transition: all .3s ease;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 110px;
  height: 2px;
  background-color: #6462f3;
  content: '';
} */
.newsList-wrapper .nav-wrapper .nav-item-wrapper .linear.active {
  transform: translateX(190px);
}
.newsList-wrapper .content-wrapper {
/*  display: grid;
  display: -ms-grid;
  grid-template-columns: 1fr 1fr 1fr;
  -ms-grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: repeat(auto-fill, 120px);
  -ms-grid-template-rows: repeat(auto-fill, 120px);
  grid-gap: 10px;
  -ms-grid-gap: 10px;
  margin-top: 30px; */
  /* 解决高度坍塌的问题 */
  display: flex;
  flex-wrap: wrap; 
   margin-top: 25px;
}
.newsList-wrapper .content-wrapper.dyc .imgWrapper {
  background-image: url(./images/news-industry.png);
  background-position: center;
  background-size: cover;
}

.newsList-wrapper .content-wrapper .imgWrapper-parent {
	float: left;
	padding: 5px;
	width: 66.66%;
	box-sizing: border-box;
}
.newsList-wrapper .content-wrapper .content-item-parent {
	float: left;
	padding: 5px;
	width: 50%;
	box-sizing: border-box;
  display: block;
}

.newsList-wrapper .content-wrapper .imgWrapper {
  border-radius: 4px;
  background-image: url(./images/news-example.png);
  background-position: center;
  background-size: cover;
  border: none;
  height: 250px;
}



.newsList-wrapper .content-wrapper .imgWrapper .important-news {
  padding-top: 72px;
  padding-bottom: 30px;
  width: 400px;
  margin: 0 auto;
  text-align: center;
  color: #fff;
}
.newsList-wrapper .content-wrapper .imgWrapper .important-news h2 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 20px;
}
.newsList-wrapper .content-wrapper .imgWrapper .important-news p {
  font-size: 14px;
}
.newsList-wrapper .content-wrapper .imgWrapper .important-news .but-read-go {
  width: 128px;
  height: 30px;
  background: #ffffff;
  border-radius: 16px;
  margin-top: 30px;
  border: none;
  color: #6462F3;
  cursor: pointer;
}
.newsList-wrapper .content-wrapper .content-item {
  height: 120px;
  background-color: #ffffff;
  border-radius: 4px;
  border: solid 1px #eeeeee;
  box-sizing: border-box;
  padding: 16px 20px 16px;
  overflow: hidden;
  position: relative;
}
.newsList-wrapper .content-wrapper .content-item .item-title-wrapper {
  justify-content: space-between;
  align-items: center;
}
.newsList-wrapper .content-wrapper .content-item .item-title-wrapper .title {
  font-size: 16px;
  font-weight: bold;
  font-stretch: normal;
  letter-spacing: 0px;
  color: #333333;
  line-height: 20px;
}
.newsList-wrapper .content-wrapper .content-item .item-title-wrapper .date {
  font-size: 12px;
  font-weight: normal;
  font-stretch: normal;
  letter-spacing: 0px;
  color: #999999;
  white-space: nowrap;
}
.newsList-wrapper .content-wrapper .content-item .item-desc {
  margin-top: 20px;
  font-size: 14px;
  font-weight: normal;
  font-stretch: normal;
  line-height: 24px;
  letter-spacing: 0px;
  color: #999999;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.newsList-wrapper .content-wrapper .content-item .toDetail-button {
  position: absolute;
  font-size: 14px;
  font-weight: normal;
  font-stretch: normal;
  letter-spacing: 0px;
  color: #6462f3;
  bottom: 0;
  right: 20px;
  bottom: 16px;
  cursor: pointer;
}
.newsList-wrapper .pagination-wrapper {
  margin-top: 30px;
}
.newsList-wrapper .el-pagination {
	text-align: center;
}