.tabNav {
  text-align: center;
  padding-top: 60px;
  width: 700px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 76px auto 0;
}
.tabNav .item {
  display: block;
  padding: 15px 30px;
  margin: 0 5px;
  font-size: 20px;
}
.tabNav .item img {
  width: 50px;
  height: 50px;
  margin: auto;
  display: block;
}
.tabNav .item svg {
  width: 40px;
  height: 40px;
  margin: auto;
  display: block;
}
.tabNav .active .text {
  color: #e41d1d;
  padding-top: 15px;
}



.newsContainer {
  margin-top: 76px;
  display: flex;
  justify-content: space-between;
}
.newsContainer .navContent {
  width: 900px;
}
.newsContainer .navContent .newsList ul li {
  width: 100%;
  padding: 24px 20px 14px;
  margin-bottom: 30px;
  border: 1px solid #efefef;
  box-shadow: 0 1px 17px 1px rgb(223 223 223 / 30%);
  border-radius: 10px;
  box-sizing: border-box;
  display: flex;
}
.newsContainer .navContent .newsList ul li .img {
  display: block;
}
.newsContainer .navContent .newsList ul li .img img {
  width: 260px;
  height: 170px;
  margin-right: 26px;
}
.newsContainer .navContent .newsList ul li .right {
  position: relative;
}
.newsContainer .navContent .newsList ul li .right .newsContent {
  display: block;
}
.newsContainer .navContent .newsList ul li .right .newsContent .title {
  width: 572px;
  font-size: 22px;
  padding-bottom: 10px;
  white-space:nowrap;
  text-overflow:ellipsis; /* for internet explorer */
  overflow:hidden;
  display:block;
}
.newsContainer .navContent .newsList ul li .right .newsContent .content {
  font-size: 15px;
  line-height: 1.6;
  color: #666;
  margin: 0;
  width: 100%;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  -ms-text-overflow: ellipsis;
  text-overflow: ellipsis;
}
.newsContainer .navContent .newsList ul li .right .newsTime {
  font-size: 16px;
  color: #ccc;
  padding-top: 20px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.newsContainer .navContent .newsList ul li .right .tagBox {
  font-size: 16px;
  padding-top: 10px;
  width: 450px;
  height: 32px;
  box-sizing: border-box;
  overflow: hidden;
}
.newsContainer .navContent .newsList ul li .right .tagBox .tagItem {
  border: 1px solid #2362fb;
  padding: 2px 8px;
  margin-right: 10px;
  font-size: 14px;
  color: #2362fb;
  text-align: center;
  box-sizing: border-box;
}
.newsContainer .navContent .newsList ul li .right .tagBox .tagItem:hover {
  background: #2362fb;
  color: #fff;
}
.newsContainer .navContent .newsList ul li .right .visited {
  position: absolute;
  right: 0px;
  bottom: 0px;
  font-size: 16px;
  color: #ccc;
  padding-top: 10px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}



#pageHelp{
  margin-top: 20px;
}
.pagehelpAvtive{
  background-color: #009688 !important;
  color:#fff!important;
  border-radius: 3px;
}



.newsContainer .aside {
  width: 270px;
  box-sizing: border-box;
}
.newsContainer .aside .asideBox {
  padding: 10px 20px;
  margin-bottom: 30px;
  border: 1px solid #efefef;
  box-shadow: 0 1px 17px 1px rgb(223 223 223 / 30%);
  border-radius: 10px;
}
.newsContainer .aside .asideBox .asideHearder {
  border-bottom: 1px solid #f0f0f0;
  padding: 5px 0 5px 10px;
  position: relative;
  font-weight: bold;
  font-size: 16px;
}
.newsContainer .aside .asideBox .asideHearder::before {
  position: absolute;
  top: 7px;
  left: 0;
  content: "";
  width: 2px;
  height: 20px;
  background-color: #dd1313;
  display: block;
}
.newsContainer .aside .asideNews ul li {
  display: flex;
  align-items: center;
  height: 38px;
  box-sizing: border-box;
}
.newsContainer .aside .asideNews ul li .icon {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 2px solid #dd1313;
  margin-right: 5px;
}
.newsContainer .aside .asideNews ul li .text {
  width: 250px;
  height: 28px;
  line-height: 28px;
  color: #333;
  font-size: 15px;
  flex: 1;
  white-space:nowrap;
  text-overflow:ellipsis; /* for internet explorer */
  overflow:hidden;
  width:190px;
  display:block;
}
.newsContainer .aside .asidetags ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.newsContainer .aside .asidetags ul li {
  width: 47%;
  text-align: center;
  background-color: #f5f5f5;
  padding: 5px;
  margin-top: 10px;
  display: inline-block;
  cursor: pointer;
  color: #666;
  font-size: 16px;
  box-sizing: border-box;
}