/* 应用于移动端设备（例如平板和手机） */
@media only screen and (max-width: 1023px) {
  .index-list-cont {
      margin: 0 10px;
  }
  .article-index-item-top {
      -webkit-flex-direction: column-reverse !important;
         -moz-box-orient: vertical !important;
         -moz-box-direction: reverse !important;
          -ms-flex-direction: column-reverse !important;
              flex-direction: column-reverse !important;
  }
  .article-index-img {
      margin-top: 15px;
  }
}

/* 应用于桌面端设备 */
@media only screen and (min-width: 1024px) {
  .index-list-cont {
    width: 1004px;
  }
}

@media only screen and (min-width: 1200px) {
}

.index-list-cont {
  border-radius: 16px;
  background-color: #FFF;
  margin: 0 auto;
}

.index-list-title {
  margin: 0 32px;
  padding: 24px 0;
  line-height: 1;
  border-bottom: 1px solid #f5f5f5;
  font-weight: 600;
  font-size: 20px;
}
.index-list-wrap {
}

.article-index-item {
  position: relative;
  padding: 16px 0;
  margin: 0 32px;
  background: #fff;
  overflow: hidden;
  border-radius: 3px;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-bottom: 1px solid #f5f5f5;
}

.article-index-item-top {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: flex-start;
     -moz-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.article-index-item-content {
  padding-top: 5px;
}

.article-index-item-bottom {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
          flex-wrap: wrap;
  margin-top: 20px;
}

.article-index-item .tag-name {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  height: 28px;
  background: #f2f6ff;
  border-radius: 20px;
  border: none;
  padding: 0 8px;
  font-weight: 400;
  font-size: 13px;
  line-height: 28px;
  color: #737782;
  overflow: hidden;
  white-space: nowrap;
  flex-shrink: 0;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.tag-name:first-child {
  margin-left: 0;
}

.tag-name{
  margin-right: 20px;
  margin-bottom: 10px;
}

.publish-date {
  flex-shrink: 0;
  margin-bottom: 10px;
}

.article-index-item .article-index-img {
  position: relative;
  width: 190px;
  height: 105px;
  margin-right: 16px;
  border-radius: 6px;
  overflow: hidden;
  -o-object-fit: cover;
     object-fit: cover;
}

.article-index-item .article-index-title {
  font-weight: 600;
  font-size: 16px;
  line-height: 18px;
  color: #000;
  max-height: 36px;
  margin-bottom: 16px;
}

.article-index-item .article-index-summary {
  text-align: justify;
}
