:root{
  --windowWidth: 1920;
}
/* 文章列表 */
.article-list-container {
  width: calc((1400 / var(--windowWidth)) * 100vw);
  margin: 16px 0;
}
.article-list-container .list-right-form{margin-top:20px}
.article-list-container .right-container {
  margin-right: calc((376 / var(--windowWidth)) * 100vw);
  border-radius: 16px;
}
.article-list-container .right-container .title {
  font-weight: bold;
  font-family: Microsoft YaHei, Microsoft YaHei;
  font-size: calc((21 / var(--windowWidth)) * 100vw);
  line-height: calc((25 / var(--windowWidth)) * 100vw);
  color: #364C7B;
  letter-spacing: 1px;
  font-style: normal;
  text-transform: none;
}

.article-list-container .right-container h3 {
  font-weight: bold;
  font-family: PingFang SC, PingFang SC;
  font-size: calc((22 / var(--windowWidth)) * 100vw);
  line-height: calc((26 / var(--windowWidth)) * 100vw);
  color: #333333;
  letter-spacing: calc((2 / var(--windowWidth)) * 100vw);
  font-style: normal;
  text-transform: none;
  margin-bottom: calc((20 / var(--windowWidth)) * 100vw);
}

.article-list-container .right-container .hr-title{
  width: 100%;
  height: 2px;
  background-color: #D9D9D9;
  margin-bottom: calc((80 / var(--windowWidth)) * 100vw);
  margin-top: calc((19 / var(--windowWidth)) * 100vw);
}

.article-list-container .right-container .cell {
  width: 100%;
  padding: calc((20 / var(--windowWidth)) * 100vw) calc((16 / var(--windowWidth)) * 100vw) calc((40 / var(--windowWidth)) * 100vw) calc((16 / var(--windowWidth)) * 100vw);
  display: flex;
  background: #fff;
  border-bottom: 1px solid #F2F2F2;
  height: calc((215 / var(--windowWidth)) * 100vw);
}

.article-list-container .right-container .cell img {
  height: calc((155 / var(--windowWidth)) * 100vw);
  width: calc((275 / var(--windowWidth)) * 100vw);
  border-radius: 10px;
}

.article-list-container .right-container .cell .info {
  flex: 1;
  margin-left: 15px;
  font-size: 16px;
  color: #666;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.article-list-container .right-container .cell .info .title {
  width: calc((706 / var(--windowWidth)) * 100vw);
  font-size: calc((22 / var(--windowWidth)) * 100vw);
  color: #333333;
  line-height: calc((26 / var(--windowWidth)) * 100vw);
  font-weight: bold;
  cursor: pointer;
  transition: color 0.2s;
  overflow: hidden;
  text-overflow: ellipsis;
  font-family: PingFang SC, PingFang SC;
  white-space: nowrap;
}

.article-list-container .right-container .cell .info .title:hover {
  color: #b11e26
}

.article-list-container .right-container .cell .info p {
  font-size: 15px;
  color: #999;
  font-weight: 400;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.article-list-container .right-container .cell .info span {
  font-family: PingFang SC, PingFang SC;
  font-weight: 400;
  font-size: calc((18 / var(--windowWidth)) * 100vw);
  color: #999999;
  line-height: calc((21 / var(--windowWidth)) * 100vw);
  font-style: normal;
  text-transform: none;
}
.article-list-container .right-container .cell .info .source {
  font-size: 14px;
  color: #a2a6b2;
}
.article-list-container .right-container .cell .info .source .author {
  float:left;
}
.article-list-container .right-container .cell .info .source .publish {
}

.article-list-container .right-container .cell .info .content {
  font-family: PingFang SC, PingFang SC;
  font-weight: 400;
  font-size: calc((18 / var(--windowWidth)) * 100vw);
  color: #999999;
  line-height: calc((28 / var(--windowWidth)) * 100vw);
  font-style: normal;
  text-transform: none;
  width: calc((706 / var(--windowWidth)) * 100vw);
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  white-space: normal;
}
.pop-fixed{
  position: sticky;
  top: calc((180 / var(--windowWidth)) * 100vw);
  /*right: calc((251 / var(--windowWidth)) * 100vw);*/
}