#news {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#news .topBg {
  width: 100%;
  height: auto;
  /* height: 120px;
  background: url('../../imgs/news/topBg.png');
  background-size: 100% 120px;
  padding: 30px 330px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #ffffff; */
}

#news .topBg>div:nth-child(1) {
  height: 28px;
  font-size: 28px;
  line-height: 28px;
}

#news .topBg>div:nth-child(2) {
  height: 16px;
  font-size: 16px;
  line-height: 16px;
}

#news .newsList {
  width: 1366px;
  padding-top: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

#news .newsList .newsDataList {
  width: 650px;
  height: 210px;
  background: #ffffff;
  border: 1px solid #f0f0f0;
  margin-bottom: 20px;
  display: flex;
  padding: 30px;
  cursor: pointer;
  justify-content: space-between;
}

#news .newsList .newsDataList .image {
  width: 200px;
  height: 150px;
  margin-right: 20px;
}

#news .newsList .newsDataList .content {
  width: 380px;
  /* flex: 1; */
  height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

#news .newsList .newsDataList .content .title {
  height: 18px;
  font-size: 18px;
  font-weight: bold;
  color: #333333;
  line-height: 18px;
}

#news .newsList .newsDataList .content .time {
  height: 14px;
  font-size: 14px;
  font-family: ArialMT;
  color: #bfc1d0;
  line-height: 14px;
  display: flex;
  align-items: center;
}

#news .newsList .newsDataList .content .text {
  /* width: 410px; */
  height: 40px;
  font-size: 14px;
  font-weight: 400;
  color: #999999;
  line-height: 20px;
  overflow: hidden;
}

#news .newsList .newsDataList .content .btn {
  width: 110px;
  height: 40px;
  line-height: 40px;
  background: #ffffff;
  padding-left: 23px;
  box-sizing: border-box;
  text-align: left;
  font-size: 14px;
  border: 1px solid #8c9abb;
  cursor: pointer;
  position: relative;
}

#news .newsList .newsDataList .content .btn>div {
  color: #8c9abb;
}

#news .newsList .newsDataList .content .btn .rightArrowsIcon {
  width: 7px;
  height: 10px;
  position: absolute;
  top: 15px;
  right: 16px;
  background: url('../../imgs/comm/rightArrowsIcon.png');
  background-size: 7px 10px !important;
  -webkit-transition: all 0.15s;
  -o-transition: all 0.15s;
  -ms-transition: all 0.15s;
  transition: all 0.15s;
}

#news .newsList .newsDataList:hover {
  box-shadow: 0px 0px 20px 0px rgba(60, 113, 176, 0.1);
}

#news .newsList .newsDataList:hover .btn {
  border: 1px solid #307fff;
}

#news .newsList .newsDataList:hover .btn>div {
  color: #307fff;
}

#news .newsList .newsDataList:hover .btn .rightArrowsIcon {
  right: 10px;
  background: url('../../imgs/comm/rightArrowsIconHover.png');
}

#news .page {
  display: flex;
  margin-bottom: 60px;
}

#news .page .pageUp,
#news .page .nextPage {
  width: 106px;
  height: 46px;
  border: 1px solid #c5cfe7;
  display: flex;
  align-items: center;
}

#news .page .pageUp>div,
#news .page .nextPage>div {
  color: #7184b0;
}

#news .page .pageUp>div:nth-child(1),
#news .page .nextPage>div:nth-child(1) {
  height: 12px;
  width: 16px;
  background-size: 16px 12px !important;
  margin-left: 18px;
  margin-right: 12px;
}

#news .page .pageUp>div:nth-child(2),
#news .page .nextPage>div:nth-child(2) {
  height: 14px;
  font-size: 14px;
  line-height: 14px;
}

#news .page .pageUp {
  margin-right: 10px;
}

#news .page .pageUp>div:nth-child(1) {
  background: url('../../imgs/comm/leftAsh.png');
}

#news .page .pageUp:hover {
  border: 1px solid #6dacff;
}

#news .page .pageUp:hover>div {
  color: #6dacff;
}

#news .page .pageUp:hover>div:nth-child(1) {
  background: url('../../imgs/comm/leftblue.png');
}

#news .page .nextPage>div:nth-child(1) {
  background: url('../../imgs/comm/rightAsh.png');
}

#news .page .nextPage:hover {
  border: 1px solid #6dacff;
}

#news .page .nextPage:hover>div {
  color: #6dacff;
}

#news .page .nextPage:hover>div:nth-child(1) {
  background: url('../../imgs/comm/rightblue.png');
}

#news .page .pageNumber {
  display: flex;
}

#news .page .pageNumber .page-num {
  width: 46px;
  height: 46px;
  border: 1px solid #c5cfe7;
  line-height: 46px;
  text-align: center;
  color: #c5cfe7 !important;
  margin-right: 10px;
}

#news .page .pageNumber .page-num-current {
  color: #307fff !important;
  border: 1px solid #6dacff;
}

#news .page .pageNumber .page-num:hover {
  color: #307fff !important;
  border: 1px solid #6dacff;
}

@media (max-width: 800px) {
  #news .topBg {
    width: 100%;
    /* padding: 30px 16px; */
    height: auto;
  }

  #news .topBg>div:nth-child(1) {
    height: 24px;
    font-size: 22px;
    line-height: 24px;
  }

  #news .topBg>div:nth-child(2) {
    height: 16px;
    font-size: 16px;
    line-height: 16px;
  }

  #news .newsList {
    width: 100%;
    padding: 32px 16px 0;
    box-sizing: border-box;
  }

  #news .newsList .newsDataList {
    width: 100%;
    padding: 12px;
    box-sizing: border-box;
    height: auto;
    display: block;
  }

  #news .newsList .newsDataList .image {
    width: 100%;
    height: auto;
    display: block;
    height: 150px;
    margin-bottom: 8px;
    border-radius: 4px;
  }

  #news .newsList .newsDataList .content {
    flex: 1;
    width: auto;
    height: auto;
    display: block;
  }

  #news .newsList .newsDataList .content .title {
    height: auto;
    margin-bottom: 12px;
  }

  #news .newsList .newsDataList .content .time {
    margin-bottom: 12px;
  }

  #news .newsList .newsDataList .content .text {
    width: auto;
    margin-bottom: 12px;
    height: auto;
  }

  #news .newsList .newsDataList .content .btn {
    display: none;
  }

  .pageUp>div:nth-child(2),
  .nextPage>div:nth-child(2) {
    display: none;
  }

  .pageUp>div:nth-child(1),
  .nextPage>div:nth-child(1) {
    margin: 0 auto !important;
  }

  .nextPage,
  .pageUp {
    width: 32px !important;
    height: 32px !important;
  }

  .page-num {
    width: 32px !important;
    height: 32px !important;
    line-height: 32px !important;
    margin-right: 8px;
  }
}

@media (max-width: 1366px) {
  #news .newsList {
    justify-content: space-evenly;
  }
}