﻿@charset "utf-8";
.inner-card-list {
  padding: 30px 40px 0 40px;
  background-color: #ffffff;
}
@media only screen and (max-width: 1024px) {
  .inner-card-list {
    padding: 30px 20px 0 20px;
  }
}
@media only screen and (max-width: 767px) {
  .inner-card-list {
    padding: 30px 10px 0 10px;
  }
}
.image-card {
  position: relative;
}
@media only screen and (max-width: 767px) {
  .image-card {
    display: flex;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid #e7e7e7;
  }
}
.image-card__image {
  height: 230px;
  overflow: hidden;
}
@media only screen and (max-width: 1299px) {
  .image-card__image {
    height: 160px;
  }
}
@media only screen and (max-width: 767px) {
  .image-card__image {
    width: 100px;
    height: 100px;
    flex: none;
  }
}
.image-card__image--large {
  height: 484px;
}
@media only screen and (max-width: 1299px) {
  .image-card__image--large {
    height: 344px;
  }
}
@media only screen and (max-width: 767px) {
  .image-card__image--large {
    width: 100px;
    height: 100px;
    flex: none;
  }
}
.image-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s ease-in-out;
}
.image-card__info {
  position: absolute;
  top: auto;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  background-image: linear-gradient(to top, #000000, transparent);
}
@media only screen and (max-width: 767px) {
  .image-card__info {
    position: relative;
    background-image: none;
  }
}
.image-card__title {
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  padding: 0 25px;
  font-size: 16px;
  font-family: Microsoft YaHei;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.6;
  margin-bottom: 20px;
}
@media only screen and (max-width: 767px) {
  .image-card__title {
    color: #333333;
    margin-top: 20px;
    text-overflow: -o-ellipsis-lastline;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
  }
}
.image-card__link {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
}
.image-card:hover::after {
  opacity: 1;
}
.image-card:hover .image-card__image img {
  transform: scale(1.05);
}