.cnw-container {
  background: #14253d;
  border-radius: 20px;
  padding: 15px;
  color: white;
  font-family: Arial, sans-serif;
  overflow: hidden;
}

.cnw-container h3 {
  margin-top: 0;
  color: #fff;
}

@keyframes scroll-up-loop {
  0% {
    transform: translateY(0%);
  }
  100% {
    transform: translateY(-50%);
  }
}

.cnw-list {
  height: 250px;
  overflow: hidden;
  position: relative;
}

.cnw-inner {
  display: flex;
  flex-direction: column;
  animation: scroll-up-loop 30s linear infinite;
}

.cnw-list:hover .cnw-inner {
  animation-play-state: paused;
}

.cnw-item {
  display: flex;
  align-items: center;
  background: #14253d;
  margin: 10px 0;
  padding: 10px 0;
  border-bottom: 1px solid #3a4c67;
}

.cnw-date {
  color: #fff;
  font-size: 13px;
  float: left;
  background: #f44336;
  height: 69px;
  border-radius: 5px;
  padding: 5px;
  width: 70px;
  text-align: center;
  line-height: 25px;
}

.cnw-date .day {
  font-size: 22px;
  display: block;
  font-weight: bold;
  color: #fff;
}

.cnw-date .month-year {
  font-size: 12px;
  color: #fff;
}

.cnw-text {
  font-size: 16px;
  color: #fff;
  float: right;
  width: 76%;
  padding: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
