@charset "utf-8";

.zt-list {
  padding: 15px;
  background-color: #fff;
}

.zt-list .zt-content li {
  border: 1px solid #dadada;
  background: #eeeeee;
  padding: 20px;
  padding-bottom: 10px;
  margin-bottom: 20px;
  display: flex;
}

.zt-list .zt-content li .zt-img {
  width: 300px;
  height: 200px;
  border: 2px solid #595959;
  overflow: hidden;
}

.zt-list .zt-content li .zt-img img {
  width: 100%;
  min-height: 200px;
}

.zt-list .zt-content li .zt-img:hover {
  border: 2px solid #f60;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.zt-list .zt-content li .info {
  flex: 1;
  min-width: 0;
  margin-left: 16px;
}

.zt-list .zt-content li .info .name {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 40px;
  line-height: 40px;
  overflow: hidden;
  font-weight: normal;
}

.zt-list .zt-content li .info .name i {
  display: block;
  width: 4px;
  height: 4px;
  background: #939393;
  border-radius: 50%;
  flex-shrink: 0;
}

.zt-list .zt-content li .info .title {
  flex: 1;
  min-width: 0;
  margin-left: 6px;
  display: block;
}

.zt-list .zt-content li .info .title a {
  font-size: 18px;
  color: #565656;
}

.zt-list .zt-content li .info .title a:hover {
  color: #f60;
}

.zt-list .zt-content .line {
  width: 100%;
  height: 5px;
  background: #dadada;
  position: relative;
  border-radius: 4px;
}

.zt-list .zt-content .line i {
  height: 5px;
  position: absolute;
  top: 0;
  left: 0;
  background: #f60;
  width: 300px;
  border-radius: 4px;
}

.zt-list .zt-content li .desc {
  font-size: 15px;
  line-height: 27px;
  color: #313131;
  padding: 7px 0 3px;
  height: 52px;
  overflow: hidden;
}

.zt-list .zt-content .list_a {
  height: 123px;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
}

.zt-list .zt-content .list_a a {
  display: block;
  width: 90px;
  border: 2px solid transparent;
  overflow: hidden;
  margin-right: 8px;
}
.zt-list .zt-content .list_a a:nth-of-type(8n) {
  margin-right: 0;
}

.zt-list .zt-content .list_a a img {
  width: 90px;
  height: 90px;
  object-fit: cover;
}

.zt-list .zt-content .list_a a p {
  display: block;
  height: 22px;
  line-height: 22px;
  text-align: center;
  margin-top: 7px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.zt-list .zt-content .list_a a:hover p {
  color: #f60;
}


/* (▼ヘ▼#) */