.list-news-g {
  width: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  display: none;
  margin-top: -30px;
  opacity: 0;
  margin-bottom: 30px;
}

.list-news-g.active {
  display: flex;
  animation: show 0.5s forwards;
  animation-delay: 0s;
}

@keyframes show {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

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

.list-news-list-card {
  width: 54px;
  height: 95px;
  perspective: 300px;
}

.list-news-list-card-active {
  background: rgba(30, 107, 194, 1);
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transform-origin: center -2px;
  backface-visibility: hidden;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  backface-visibility: visible;
  transform: translate3d(0, 0, 0) rotateX(180deg);
  opacity: 0;
  position: absolute;
  top: 0;
  z-index: 1;
  left: 0;
  border-radius: 5px;
  box-sizing: border-box;
  border: 1px solid rgba(30, 107, 194, 1);
}

.list-news-list:hover .list-news-list-card-active {
  transform: translate3d(0, 0, 0) rotateX(2deg);
  opacity: 1;
}

.list-news-list-card-active .list-news-list-card-span {
  border: 1px solid rgba(30, 107, 194, 1);
}



.list-news-list-card-inner {
  box-sizing: border-box;
  border-radius: 5px;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  opacity: 1;
  transition: 0.5s;
  border: 1px solid #D9D9D9;
}

.list-news-list-card-span {
  width: 7px;
  height: 8px;
  position: absolute;
  background: #fff;
  left: 20%;
  top: -5px;
  border-radius: 100%;
  border: 1px solid #D9D9D9;
}

.list-news-list-card-span:nth-child(2) {
  right: 20%;
  left: auto;
}


.list-news-list-card-span-bg {
  width: 100%;
  background: #fff;
  top: -5px;
  height: 4px;
  left: 0;
  position: absolute;
}

.list-news-list-card-span-bg::before {
  width: 1.5px;
  height: 7px;
  border-radius: 2px;
  background: #D9D9D9;
  position: absolute;
  content: '';
  left: calc(20% + 3.2px);
  top: 0;
  z-index: 1;
  transform: scale(1.2, 1);
  -webkit-transform: scale(1.2, 1);
  transform-origin: center center;
  -webkit-transform-origin: center center;
  transition: 0.5s;
  -webkit-transition: 0.5s;
}

.list-news-list-card-span-bg::after {
  width: 1.5px;
  height: 7px;
  border-radius: 2px;
  background: #D9D9D9;
  position: absolute;
  content: '';
  right: calc(20% + 3.2px);
  top: 0;
  transform: scale(1.1, 1);
  -webkit-transform: scale(1.2, 1);
  z-index: 1;
  transform-origin: center center;
  -webkit-transform-origin: center center;
  transition: 0.5s;
  -webkit-transition: 0.5s;
}

.list-news-list-card-active .list-news-list-card-span {
  border: 1px solid rgba(30, 107, 194, 1);
}


.list-news-list:hover .list-news-list-card-span-bg::after,
.list-news-list:hover .list-news-list-card-span-bg::before {
  background: rgba(30, 107, 194, 1) !important;
  z-index: 2;
}

.list-news-list:hover .list-news-list-card-inner {
  opacity: 0;
}

.list-news-list-view {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  font-size: 12px;
  color: rgba(171, 171, 171, 1);
}

.list-news-list-view p:nth-child(2) {
  font-size: 22px;
}

.list-news-list-card-active .list-news-list-view {
  color: #fff;
}


.list-news-list-view-p p:nth-child(1) {
  font-size: 18px;
  line-height: 25px;
  color: #333;
  margin-bottom: 15px;
  margin-top: 5px;
}

.list-news-list-view-p p:nth-child(2) {
  font-size: 14px;
  line-height: 20px;
  color: #999;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  box-sizing: border-box;
}

.list-news-list-view-pic {
  width: 160px;
  height: 110px;
}

.list-news-list-view-p {
  width: calc(100% - 100px);
}

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