.main > .content {
  margin: 30px auto;
}
.tabBar {
  width: 100%;
  border-bottom: 1px solid #d3d3d3;
  padding-top: 60px;
  margin-bottom: 60px;
}
.tabBar > .tabBarContent {
  width: 80%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
.tabBar > .tabBarContent > .tabItem {
  flex-shrink: 0;
  font-size: 18px;
  color: #333333;
  cursor: pointer;
  padding-bottom: 20px;
}
.tabItem:hover {
  color: #3ccba6 !important;
  border-bottom: 1px solid #3ccba6;
}
.tabItem.active {
  color: #3ccba6;
  border-bottom: 1px solid #3ccba6;
}
.newsList {
  width: 100%;
}
.newsList > .newsItem {
  width: 100%;
  height: 280px;
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
  cursor: pointer;
}
.newsList > .newsItem > .newsLeft {
  width: 36%;
}
.newsList > .newsItem > .newsLeft > img {
  width: 100%;
}
.newsList > .newsItem > .newsRight {
  width: 63%;
  height: 100%;
}
.newsList > .newsItem > .newsRight > .newsTitle {
  font-size: 24px;
  font-weight: normal;
  font-stretch: normal;
  line-height: 36px;
  letter-spacing: -1px;
  color: #333333;
  max-height: 36px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.newsList > .newsItem > .newsRight > .newsContent {
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  line-height: 30px;
  letter-spacing: -1px;
  color: #666666;
  height: 219px;
}
.newsList > .newsItem > .newsRight > .newsDate {
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  line-height: 25px;
  max-height: 25px;
  letter-spacing: -1px;
  color: #666666;
  display: flex;
  align-items: center;
}
.newsList > .newsItem > .newsRight > .newsDate > img {
  width: 18px;
  margin-right: 10px;
}
.newsPageInfo {
  display: flex;
  justify-content: center;
  align-items: center;
}
.newsPageInfo > .pageNum {
  background-color: #666666;
  border-radius: 3px;
  /* opacity: 0.6; */
  color: #fefefe;
  font-size: 22px;
  font-weight: bold;
  font-stretch: normal;
  line-height: 30px;
  letter-spacing: -1px;
  outline: none;
  cursor: pointer;
  margin-right: 15px;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  border: solid 2px #666666;
}
.newsPageInfo > .pageNum.currnet {
  border: solid 2px #666666;
  color: #666666;
  background-color: #ffffff;
}
.newsPageInfo > .pageInfo {
  font-size: 22px;
  font-weight: normal;
  font-stretch: normal;
  line-height: 36px;
  letter-spacing: -1px;
  color: #666666;
}
