.newNav {
  background-color: #F3F7FC;
}
.newNav .inner {
  padding: 35px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.newNav .inner .newNav-item {
  padding: 11px 25px;
  border-radius: 16777200px;
  border: 1px solid #e5e7eb;
  box-sizing: border-box;
  background: #ffffff;
}
.newNav .inner .newNav-item a {
  color: #4a5565;
  font-family: Inter;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.2px;
}
.newNav .inner .newNav-item-active {
  background: #dd0000;
}
.newNav .inner .newNav-item-active a {
  color: #fff;
}
.newList {
  width: 100%;
  background-color: #F3F7FC;
}
.newList .inner {
  width: 70%;
  margin: 0 auto;
  max-width: 1440px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 34px;
  padding-bottom: 20px;
}
.newList .inner .newList-item {
  width: 100%;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0px 4px 6px -4px #000000 1a, 0px 10px 15px -3px #000000 1a;
  overflow: hidden;
  display: flex;
}
.newList .inner .newList-item .newList-item-left {
  width: 43%;
  overflow: hidden;
}
.newList .inner .newList-item .newList-item-left img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: 0.5s;
}
.newList .inner .newList-item .newList-item-left img:hover {
  transform: scale(1.05);
}
.newList .inner .newList-item .newList-item-right {
  width: 57%;
  padding: 35px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.newList .inner .newList-item .newList-item-right .newList-item-right-top {
  display: flex;
  flex-direction: column;
}
.newList .inner .newList-item .newList-item-right .newList-item-right-top .newList-item-right-top-tag {
  width: fit-content;
  padding: 5px 12px 3px;
  border-radius: 16777200px;
  background: linear-gradient(90deg, #dbeafe 0%, #f3e8ff 100%);
  color: #1447e6;
  font-family: Inter;
  font-weight: 500;
  font-size: 12px;
  line-height: 16px;
  margin-bottom: 23.5px;
}
.newList .inner .newList-item .newList-item-right .newList-item-right-top .newList-item-right-top-title {
  color: #101828;
  font-family: Inter;
  font-weight: 600;
  font-size: 20px;
  line-height: 25px;
  margin-bottom: 12px;
  transition: 0.5s;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.newList .inner .newList-item .newList-item-right .newList-item-right-top .newList-item-right-top-desc {
  color: #4a5565;
  font-family: Inter;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.newList .inner .newList-item .newList-item-right .newList-item-right-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.newList .inner .newList-item .newList-item-right .newList-item-right-bottom .newList-item-right-bottom-left {
  display: flex;
  align-items: center;
  gap: 17.2px;
}
.newList .inner .newList-item .newList-item-right .newList-item-right-bottom .newList-item-right-bottom-left .newList-item-right-bottom-left-time {
  display: flex;
  align-items: center;
  gap: 4px;
}
.newList .inner .newList-item .newList-item-right .newList-item-right-bottom .newList-item-right-bottom-left .newList-item-right-bottom-left-time p {
  color: #6a7282;
  font-family: Inter;
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
}
.newList .inner .newList-item .newList-item-right .newList-item-right-bottom .newList-item-right-bottom-left .newList-item-right-bottom-left-count {
  display: flex;
  align-items: center;
  gap: 4px;
}
.newList .inner .newList-item .newList-item-right .newList-item-right-bottom .newList-item-right-bottom-left .newList-item-right-bottom-left-count p {
  color: #6a7282;
  font-family: Inter;
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
}
.newList .inner .newList-item .newList-item-right .newList-item-right-bottom .newList-item-right-bottom-right svg {
  display: block;
  object-fit: scale-down;
  transform: rotateY(0deg);
  transition: 0.5s;
}
.newList .inner .newList-item .newList-item-right .newList-item-right-bottom .newList-item-right-bottom-right:hover svg {
  transform: rotateY(360deg);
}
.newList .inner .newList-item:hover .newList-item-right .newList-item-right-top-title {
  color: #1447e6;
}
@media screen and (max-width: 1280px) {
  .newList .inner {
    width: 80%;
  }
}
@media screen and (max-width: 900px) {
  .newList .inner {
    width: 90%;
  }
  .newList .inner .newList-item {
    flex-direction: column;
  }
  .newList .inner .newList-item .newList-item-left {
    width: 100%;
    max-height: 300px;
  }
  .newList .inner .newList-item .newList-item-right {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .newList .inner .newList-item .newList-item-left {
    width: 100%;
    max-height: 200px;
  }
}
