#newsCenter {
  margin-top: 100px;
}
#newsCenter .top {
  width: 1100px;
  margin: 0 auto;
  margin-bottom: 30px;
}
#newsCenter .top .newsNavBar {
  display: flex;
  justify-content: flex-start;
}
#newsCenter .top .newsNavBar .item {
  width: 220px;
  height: 55px;
  text-align: center;
  line-height: 55px;
  margin-right: 5px;
  cursor: pointer;
  font-size: 36px;
  border-bottom: 4px solid #eee;
}
#newsCenter .top .newsNavBar .item.active {
  color: #2284b2;
  border-bottom: 4px solid #2284b2;
}
#newsCenter .bottom {
  margin-top: 10px;
  position: relative;
  height: 1500px;
}
#newsCenter .bottom .contents {
  width: 100%;
  position: absolute;
  left: 0;
  display: none;
}
#newsCenter .bottom .contents .pagination {
  display: flex;
  justify-content: center;
  padding: 20px;
  align-items: center;
  margin-top: 20px;
}
#newsCenter .bottom .contents .pagination div,
#newsCenter .bottom .contents .pagination a {
  display: block;
  padding: 10px;
}
#newsCenter .bottom .contents .imgbox {
  text-align: center;
}
#newsCenter .bottom .newsitem {
  display: flex;
  justify-content: space-between;
  box-sizing: border-box;
  padding-top: 15px;
  padding-bottom: 15px;
  border-bottom: 1px dashed #dcdcdc;
}
#newsCenter .bottom .newsitem .imgbox {
  width: 330px;
  cursor: pointer;
  overflow: hidden;
}
#newsCenter .bottom .newsitem .imgbox img {
  transition: all 0.3s;
  transform: scale(1);
  width: 100%;
}
#newsCenter .bottom .newsitem .imgbox:hover img {
  transform: scale(1.2);
}
#newsCenter .bottom .newsitem .content .Text {
  display: inline-block;
  width: 660px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
#newsCenter .bottom .newsitem .content .tit {
  overflow: hidden;
  cursor: pointer;
}
#newsCenter .bottom .newsitem .content .tit a {
  font-size: 24px;
  color: #333;
}
#newsCenter .bottom .newsitem .content .tit .text {
  float: left;
}
#newsCenter .bottom .newsitem .content .tit .date {
  float: right;
}
#newsCenter .bottom .newsitem .content .tit:hover a {
  color: #2284b2;
}
#newsCenter .bottom .newsitem .content .text {
  width: 1030px;
  line-height: 25px;
  margin-top: 20px;
  font-size: 20px;
  color: #666;
  line-height: 30px;
}
