/* 新闻详情 */
.article-wrapper {
  --article-aside-width: 320px;
  --article-ft-right-width: 1.5rem;
}

.button {
  --sk-button-width: 1.34rem;
  --sk-button-height: 0.42rem;
}

.article-wrapper {
  display: flex;
  padding: 0.92rem 0 1rem;
}

.article-wrapper .main {
  box-sizing: border-box;
  width: calc(100% - var(--article-aside-width));
  padding-right: 1.12rem;
}

.article-wrapper .aside {
  width: var(--article-aside-width);
}

.article .article-hd h1 {
  font-weight: normal;
  font-size: 0.36rem;
  color: rgb(50, 50, 50);
  margin-bottom: 0.08rem;
}

.article .article-hd .subhead {
  font-size: var(--ant-font-size-heading-4);
  margin-bottom: var(--ant-margin-sm);
}

.article .article-hd .byline {
  margin-bottom: var(--ant-margin-xs);
  font-size: 0.14rem;
}

.article .article-hd .byline .date {
  padding-left: 0.2rem;
  background-image: url("../images/icons/clock-fill.png");
  background-repeat: no-repeat;
  background-position: 0 50%;
  background-size: 0.12rem auto;
  margin-right: 0.24rem;
}

.article .article-hd .byline .category {
  padding-left: 0.16rem;
  background-image: url("../images/icons/file-alt.png");
  background-repeat: no-repeat;
  background-position: 0 50%;
  background-size: 0.09rem auto;
  margin-right: 0.24rem;
}

.article .article-hd .sharesheet {
}

.article .article-bd {
  padding: 0.48rem 0;
  line-height: 2;
  font-size: 0.16rem;
  color: rgb(120, 120, 120);
  min-height: 30vh;
}

.article .article-ft {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  border-top: 1px solid rgb(224, 224, 224);
  padding: 0.28rem 0.2rem;
}

.article .article-ft .article-ft-left {
  box-sizing: border-box;
  width: calc(100% - var(--article-ft-right-width));
  padding-right: var(--ant-padding);
}

.article .article-ft .article-ft-right {
  width: var(--article-ft-right-width);
  display: flex;
}

.article .article-ft .quick-read-list li {
  color: rgb(120, 120, 120);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  padding: 0.04rem 0;
  font-size: 0.18rem;
}

.article .article-ft .quick-read-list li a {
  transition: all 0.3s;
}

.article .article-ft .quick-read-list li a:hover {
  color: var(--main-color);
}

.latest .latest-hd {
  margin-bottom: 0.24rem;
}

.latest .latest-hd h2 {
  color: rgb(215, 0, 15);
  font-size: 0.24rem;
  font-weight: normal;
}

.latest .latest-bd {
  padding-top: 0.1rem;
  padding-bottom: 0.48rem;
}

.latest-list li {
  border-bottom: 1px solid rgb(221, 221, 221);
  padding: 0.12rem 0.1rem;
  margin-bottom: 0.2rem;
}

.latest-list li a {
  display: block;
}

.latest-list li .title {
  transition: all 0.3s;
  color: rgb(104, 104, 104);
  font-size: 0.16rem;
  font-weight: normal;
  margin-bottom: 0.06rem;
  vertical-align: middle;
}

.latest-list li .date {
  transition: all 0.3s;
  color: rgb(147, 147, 147);
  font-size: 0.14rem;
}

.arrow-right {
  display: inline-block;
  vertical-align: middle;
  width: 0.26rem;
  height: 0.08rem;
  background-image: url("../images/icons/arrow-3.svg");
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  margin-left: 0.08rem;
  margin-top: -1px;
}
.latest-list li a:hover .title {
  color: var(--main-color);
}

.latest-pic {
  margin-bottom: 0.3rem;
}

@media only screen and (max-width: 920px) {
  .article-wrapper .aside {
    display: none;
  }

  .article-wrapper .main {
    width: 100%;
    padding-right: 0;
  }
}

@media only screen and (max-width: 767px) {
  .button {
    --sk-button-width: 120px;
    --sk-button-height: 32px;
  }

  .article-wrapper {
    padding: 24px 0;
  }

  .article .article-hd h1 {
    font-size: 16px;
    margin-bottom: 12px;
  }

  .article .article-hd .subhead {
    font-size: 12px;
  }

  .article .article-hd .byline {
    font-size: 12px;
  }

  .article .article-hd .byline .date {
    padding-left: 20px;
    background-size: 12px auto;
  }

  .article .article-hd .byline .category {
    padding-left: 16px;
    background-size: 9px auto;
  }

  .article .article-bd {
    padding: var(--ant-padding) 0;
    font-size: 14px;
  }

  .article .article-ft {
    padding: var(--ant-padding-xs) 0;
  }

  .article .article-ft .article-ft-left {
    width: 100%;
    padding-right: 0;
    margin-bottom: 20px;
  }

  .article .article-ft .quick-read-list li {
    font-size: 14px;
    padding: 4px 0;
  }

  .article .article-ft .article-ft-right {
    width: 100%;
    align-items: center;
    justify-content: center;
  }

  .article .article-ft .quick-read-list li {
    padding: var(--ant-padding-xs) var(--ant-padding);
  }
}
