.news-default-g {
  margin-top: -30px;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.news-default-list {
  height: 65px;
  width: 100%;
  border-bottom: 1px solid rgba(232, 232, 232, 1);
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.news-default-p {
  display: flex;
  flex-direction: row;
  align-items: center;
  color: #333333;
  position: relative;
  line-height: 65px;
  transition: 0.5s;
  width: calc(100% - 150px);
  -webkit-transition: 0.5s;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  box-sizing: border-box;
  padding-left: 20px;
}

.news-default-p::before {
  content: '';
  width: 6px;
  height: 6px;
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -3px;
  display: inline-block;
  border-radius: 6px;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  background: linear-gradient(90deg, #BED5E5 0%, rgba(210, 228, 240, 0.21) 100%);
}

.news-default-list:hover .news-default-p::before {
  background: linear-gradient(90deg, #55A0F0 0%, rgba(37, 90, 147, 0.06) 100%)
}

.news-default-list:hover .news-default-p {
  color: rgba(30, 107, 194, 1);
}

.news-default-span {
  width: 150px;
  height: 100%;
  display: flex;
  flex-direction: row;
  color: #999;
  font-size: 14px;
  align-items: center;
  justify-content: flex-end;
}

.clock {
  display: flex;
  width: 12px;
  height: 12px;
  margin-right: 10px;
}

/* color: rgba(51, 51, 51, 1) */

