@charset "UTF-8";
/**
 * description: 通用列表
 * autor: qyt
 * date: 2024-09-12
 */
/* banner */
.banner {
  height: 358px;
}
.banner .swiper-container {
  height: 100%;
}
.banner .swiper-slide {
  overflow: hidden;
}
.banner-img {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  height: 100%;
}

/* 列表 */
.info-link {
  position: relative;
  display: block;
  padding: 0 180px 0 15px;
  line-height: 44px;
  font-size: 15px;
  color: #333;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.info-link::before {
  content: "";
  position: absolute;
  left: 3px;
  top: 50%;
  width: 4px;
  height: 4px;
  margin-top: -2px;
  background: #333;
  border-radius: 50%;
}
.info-time {
  position: absolute;
  top: 0;
  right: 0;
  color: #999;
}
.info-item {
  border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
}
.info-item:hover {
  color: #4D98E3;
}
.info-item:hover .info-link,
.info-item:hover .info-time {
  color: #4D98E3;
}