@charset "UTF-8";
/*
 * description: 通用列表
 * autor: qianyuitng
 * date: 2023-06-09
 */
.info-link {
  position: relative;
  display: block;
  padding: 0 130px 0 42px;
  line-height: 64px;
  font-size: 16px;
  color: #333;
  overflow: hidden;
  white-space: nowrap;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
}

.info-link::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 50%;
  width: 10px;
  height: 10px;
  margin-top: -5px;
  background: #fff;
  background: -webkit-gradient(linear, left top, right bottom, from(#fff), to(#B2CFFF));
  background: -webkit-linear-gradient(top left, #fff, #B2CFFF);
  background: -o-linear-gradient(top left, #fff, #B2CFFF);
  background: linear-gradient(to bottom right, #fff, #B2CFFF);
  -webkit-box-shadow: 2px 2px 5px rgba(57, 107, 219, 0.5);
          box-shadow: 2px 2px 5px rgba(57, 107, 219, 0.5);
  border-radius: 50%;
}

.info-link::after {
  content: "";
  position: absolute;
  left: 18px;
  top: 50%;
  width: 6px;
  height: 6px;
  margin-top: -3px;
  background: #0A57FF;
  background: -webkit-gradient(linear, left top, right bottom, from(#0A57FF), to(#2CD9FF));
  background: -webkit-linear-gradient(top left, #0A57FF, #2CD9FF);
  background: -o-linear-gradient(top left, #0A57FF, #2CD9FF);
  background: linear-gradient(to bottom right, #0A57FF, #2CD9FF);
  border-radius: 50%;
}

.info-time {
  position: absolute;
  top: 0;
  right: 16px;
  color: #999;
}

.info-item {
  border-bottom: 1px solid #F6F6FA;
}

.info-item:hover {
  color: #4683FF;
  border-bottom-color: #4683FF;
}

.info-item:hover .info-link,
.info-item:hover .info-time {
  color: #4683FF;
}
