:root{
  --row-gutter: 30px;
}
.list-main {
  padding-top: 25px;
  padding-bottom: 40px;
}
.list-page {
  background: #fff;
  padding: var(--row-gutter);
  box-shadow: 0 1px 4px rgba(0, 0, 0, .06);
}
.list-body {
  display: flex;
  gap: var(--row-gutter);
  align-items: stretch;
}
.list-side {
  width: 320px;
  flex-shrink: 0;
  background: #F4F9FB url("../images/list/side-bg.png") no-repeat;
  background-size: 100% auto;
  background-position: center bottom;
}
.list-side__head {
  height: 125px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  background: #1e5aab url(../images/list/side-title-bg.png) no-repeat center bottom;
  background-size: cover;
}
.list-side__menu {
  list-style: none;
  margin: -10px 10px 0 10px;
  padding: var(--row-gutter) 0;
  background: #fff;
  height: 85%;
}
.list-side__menu li a {
  display: block;
  padding: 15px 0;
  text-align: center;
  font-size: calc(var(--font-size-base) + 2px);
  color: #333;
  transition: color .2s, background .2s;
}
.list-side__menu li:last-child a {
  border-bottom: none;
}
.list-side__menu li a:hover {
  color: #2257AB;
  background: #fff;
}
.list-side__menu li.active a {
  color: #2257AB;
  font-weight: 600;
  background: #F3F8FF;
  position: relative;
}
.list-side__menu li.active a::before {
  content: '';
  position: absolute;
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
  background: #2257AB;
}
.list-content {
  flex: 1;
  min-width: 0;
}
.list-tabs .common-tabs__header.bg .common-tabs__warp li {
  cursor: default;
}
.list-data {
  margin-top: 10px;
}
.list-data li {
  padding: 12px 0;
  /* border-bottom: 1px dashed #d8e0ec; */
}
.list-data li.list-empty {
  justify-content: center;
  border-bottom: none;
  color: #999;
}
.list-data li.list-empty::before {
  display: none;
}
.list-img:before{
  display: none;
}
.list-img {
  gap: 20px
}
.list-img .cover-img{
  flex-shrink: 0;
  width: 250px;
  height: 150px;
  object-fit: cover;
}
.list-img .cover-img img{
  width: 100%;
  height: 100%;
}
.list-content {
  width: 100%;
}
.list-content .title{
  font-size: calc(var(--font-size-base) + 2px);
  font-weight: 700;
  width: 100%;
  padding-right: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #333;
  display: block;
  margin-bottom: 10px;
}
.list-content .title:hover{
  color: #1e5aab;
}
.list-content .content{
  color: #666;
  font-size: calc(var(--font-size-base) - 2px);
  width: 100%;
  word-break: normal;
  overflow-wrap: break-word;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  margin-bottom: 10px;
}
.list-content .time {
  color: #666;
  font-size: calc(var(--font-size-base) - 2px);
}
.common-list li:nth-child(5n) {
	border-bottom: 1px solid #ebebeb;
	margin-bottom: 15px;
	padding-bottom: 25px;
}

@media only screen and (max-width: 992px) {
  .list-body {
    flex-direction: column;
  }
  .list-side {
    width: 100%;
  }
  .list-side__menu {
    display: flex;
    padding: 0;
    margin: 0;
    border: 1px solid #d8e0ec;
  }
  .list-side__menu li {
    flex: 1;
  }
  .list-side__menu li.active a::before {
    right: 0;
    bottom: 0;
    top: auto;
    width: 100%;
    height: 4px;
  }
}
@media only screen and (max-width: 768px) {
  :root {
    --row-gutter: 15px;
  }
  .list-main {
    padding-top: var(--row-gutter);
    padding-bottom: var(--row-gutter);
  }
  .layout-width {
    padding: 0 var(--row-gutter);
  }
  .list-side__head {
    height: 72px;
    line-height: 72px;
    font-size: 22px;
  }
  .list-pages a,
  .list-pages span {
    padding: 6px 10px;
    margin: 0 2px 6px;
    min-width: 32px;
  }
  .list-img .cover-img{
    width: 100px;
    height: 60px;
  }
}
