@charset "UTF-8";
/* 定义flex布局 */
/* 定义flex布局 是横向还是纵向布局 */
/*定义flex 超出换行*/
.lists-content {
  width: 100%;
  height: auto;
}
.lists-content .lists-content-lists {
  margin: 0 auto;
  width: 86.25rem;
  padding: 1.875rem 0;
}
@media screen and (max-width: 86.26rem) {
  .lists-content .lists-content-lists {
    width: calc(var(--s) * 700 * 1px);
    padding: calc(var(--s) * 25 * 1px) 0;
  }
}
@media screen and (max-width: 780px) {
  .lists-content .lists-content-lists {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.lists-content .lists-content-lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.lists-content .lists-content-lists .lists-content-lists-item {
  width: 17.8125rem;
  height: 22.8125rem;
  margin-bottom: 1.5625rem;
  background-color: #f9f9f9;
  margin-top: 1.5625rem;
  --j: 4;
}
@media screen and (max-width: 86.26rem) {
  .lists-content .lists-content-lists .lists-content-lists-item {
    --j: 3;
  }
}
@media screen and (max-width: 70.26rem) {
  .lists-content .lists-content-lists .lists-content-lists-item {
    --j: 2;
  }
}
.lists-content .lists-content-lists .lists-content-lists-item {
  --gap: calc((100% - 20.875rem * var(--j)) / var(--j) / 2);
  margin: 0 var(--gap);
  margin-bottom: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 1.25rem;
  padding-bottom: 1.25rem;
}
@media screen and (max-width: 50.26rem) {
  .lists-content .lists-content-lists .lists-content-lists-item {
    width: calc(var(--s) * 300 * 1px);
    height: calc(var(--s) * 400 * 1px);
    margin: 0;
    margin-bottom: calc(var(--s) * 25 * 1px);
    padding: 0 calc(var(--s) * 20 * 1px);
    padding-bottom: calc(var(--s) * 20 * 1px);
  }
}
@media screen and (min-width: 50.26rem) {
  .lists-content .lists-content-lists .lists-content-lists-item:hover {
    background-color: #fff;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  .lists-content .lists-content-lists .lists-content-lists-item:hover .lists-content-lists-item-more {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.lists-content .lists-content-lists .lists-content-lists-item .lists-content-lists-item-img {
  width: 17.8125rem;
  height: 12.5rem;
  padding-top: 1.25rem;
}
@media screen and (max-width: 50.26rem) {
  .lists-content .lists-content-lists .lists-content-lists-item .lists-content-lists-item-img {
    width: calc(var(--s) * 298 * 1px);
    padding-top: calc(var(--s) * 20 * 1px);
    height: calc(var(--s) * 209 * 1px);
  }
}
.lists-content .lists-content-lists .lists-content-lists-item .lists-content-lists-item-text {
  font-size: 1.5rem;
  margin-top: 1.875rem;
  overflow: hidden; /*隐藏多出部分文字*/
  text-overflow: ellipsis; /*用省略号代替多出部分文字*/
  display: -webkit-box; /* 显示多行文本容器 */
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1; /*显示行数*/
}
.lists-content .lists-content-lists .lists-content-lists-item .lists-content-lists-item-title {
  font-size: 0.75rem;
  margin-top: 0.9375rem;
  text-align: center;
  overflow: hidden; /*隐藏多出部分文字*/
  text-overflow: ellipsis; /*用省略号代替多出部分文字*/
  display: -webkit-box; /* 显示多行文本容器 */
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2; /*显示行数*/
}
.lists-content .lists-content-lists .lists-content-lists-item .lists-content-lists-item-more {
  font-size: 0.75rem;
  width: 5rem;
  height: 1.75rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff;
  background-color: #206453;
  margin-top: 0.9375rem;
  border-radius: 3.125rem;
  display: none;
}