header {
  position: static;
}
.banner {
  padding: 80px 0;
  margin-bottom: 60px;
  background: linear-gradient(180deg, #ffdcf7 0%, rgba(255, 255, 255, 0) 97.29%);
}
.banner .crumbs {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
}
.banner .crumbs .prev {
  color: #4b5563;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.42;
  /* 142.857% */
  letter-spacing: 0.07px;
}
.banner .crumbs .divider {
  font-size: 12px;
  color: #1f2937;
}
.banner .crumbs .current {
  color: #1f2937;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.42;
  letter-spacing: 0.07px;
}
.banner .base-info {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.banner .base-info .box-left {
  flex-shrink: 0;
  width: 206px;
}
.banner .base-info .box-right {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  width: 814px;
}
.banner .base-info .aditor-avatar {
  display: block;
  width: 206px;
  height: 206px;
  margin-bottom: 20px;
}
.banner .base-info .editor-media {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
}
.banner .base-info .twitter {
  width: 36px;
  height: 36px;
  background-image: url("../../img/common/editor/twitter.svg");
}
.banner .base-info .facebook {
  width: 36px;
  height: 36px;
  background-image: url("../../img/common/editor/pinterest.svg");
}
.banner .base-info .instagram {
  width: 36px;
  height: 36px;
  background-image: url("../../img/common/editor/instagram.svg");
}
.banner .base-info .editor-media-item {
  background-size: 100% 100%;
}
.banner .base-info .editor-name {
  color: #111;
  font-size: 42px;
  margin-bottom: 6px;
}
.banner .base-info .editor-tag {
  color: #666;
  font-size: 16px;
  margin-bottom: 8px;
  line-height: 180%;
}
.banner .base-info .editor-desc {
  color: #000;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 24px;
}
.banner .base-info .editor-desc:last-child {
  margin-bottom: 0;
}
.article-list .list-title {
  display: block;
  color: #2b2a35;
  font-size: 32px;
  padding-bottom: 32px;
  margin-bottom: 32px;
  border-bottom: 1px solid #dedede;
}
.article-list .list-item {
  border-bottom: 1px solid #dedede;
  padding-bottom: 32px;
  margin-bottom: 32px;
}
.article-list .list-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.article-list .list-item .item-title {
  display: block;
  color: #2b2a35;
  font-size: 24px;
  line-height: 1.3;
  margin-bottom: 18px;
  font-weight: 600;
}
.article-list .list-item .item-title:hover {
  text-decoration: underline;
}
.article-list .list-item .item-desc {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #494853;
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 18px;
}
.article-list .list-item .item-info {
  display: flex;
  align-items: center;
}
.article-list .list-item .item-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  margin-right: 16px;
}
.article-list .list-item .item-name {
  color: #111;
  font-size: 16px;
  margin-right: 5px;
}
.article-list .list-item .item-time {
  color: #828289;
  font-size: 16px;
}
.article-list .list-more {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #6d6c78;
  font-size: 18px;
  width: 176px;
  height: 48px;
  border-radius: 60px;
  background: #fff;
  cursor: pointer;
  filter: drop-shadow(0 4px 16px rgba(140, 122, 221, 0.28));
  margin: 60px auto 160px;
  transition: all 300ms;
}
.article-list .list-more:hover {
  color: #fff;
  background-color: #6d6c78;
}
.article-list .list-no-more {
  display: none;
  color: #494853;
  font-size: 18px;
  text-align: center;
  margin: 65px auto;
}
@media (max-width: 1200px) {
  .banner .base-info {
    align-items: center;
    gap: 20px;
  }
  .banner .base-info .box-right {
    flex: 1;
  }
}
@media (max-width: 768px) {
  .banner {
    padding: 34px 0;
    margin-bottom: 10px;
  }
  .banner .crumbs {
    margin-bottom: 24px;
  }
  .banner .base-info {
    gap: 4px;
    flex-direction: column;
  }
  .banner .base-info .aditor-avatar {
    width: 60px;
    height: 60px;
    margin: 0 auto 18px;
  }
  .banner .base-info .editor-media {
    gap: 12px;
  }
  .banner .base-info .box-right {
    width: 100%;
    text-align: center;
  }
  .banner .base-info .editor-name {
    font-size: 32px;
    margin-bottom: 14px;
  }
  .banner .base-info .editor-tag {
    font-size: 12px;
  }
  .banner .base-info .editor-desc {
    font-size: 14px;
  }
  .article-list .list-title {
    font-size: 18px;
    padding-bottom: 24px;
    margin-bottom: 24px;
    border-width: 1px;
  }
  .article-list .list-item {
    border-width: 1px;
    padding-bottom: 24px;
    margin-bottom: 24px;
  }
  .article-list .list-item .item-title {
    font-size: 18px;
    margin-bottom: 14px;
  }
  .article-list .list-item .item-desc {
    font-size: 14px;
    margin-bottom: 12px;
  }
  .article-list .list-item .item-avatar {
    width: 30px;
    height: 30px;
    margin-right: 8px;
  }
  .article-list .list-item .item-name {
    font-size: 14px;
    margin-right: 5px;
  }
  .article-list .list-item .item-time {
    font-size: 14px;
  }
  .article-list .list-more {
    font-size: 18px;
    width: 176px;
    height: 48px;
    border-radius: 60px;
    margin: 30px auto 90px;
  }
  .article-list .list-no-more {
    font-size: 16px;
    margin: 30px auto;
  }
}
