/* 新闻资讯 s */
.new-item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  height: 64px;
  padding: 4px 0;
  box-sizing: border-box;
  cursor: pointer;
}
.new-item:hover {
  background: rgba(242, 249, 252, 0.5);
  color: #2960bc;
}
.new-item > .new-item-content {
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 16px;
  white-space: normal;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.new-time {
  min-width: 65px;
  height: 100%;
}
.new-time > .new-time-day {
  font-size: 24px;
  line-height: 1.1;
}
/* 新闻资讯 e */

/* footer */
.my-footer > ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.my-footer > ul > li {
  flex: 1;
  text-align: center;
}
.my-footer a {
  color: #ccc;
}
