/* #region 基本样式 */
.module {
  padding: 1.25rem;
}

.module .content {
  margin-top: 20px;
}

.underline-title .bold-title {
  padding: 0 1rem;
}

/* #endregion */

/* #region 文章 */
.article .title {
  padding: 0 1rem;
}

.article .title h1 {
  color: #ff8686;
  font-size: 1rem;
  font-weight: bold;
  line-height: 160%;
}

.article .title div {
  margin-top: 5px;
  color: #999;
  font-size: 12px;
  font-weight: 500;
}

.article .title span:not(:last-child) {
  margin-right: 20px;
}

.article .content {
  color: #4d4d4d;
  font-size: 14px;
  font-weight: 500;
  line-height: 21px;
}

.article .content h3 {
  margin: 10px 0;
  padding-left: 10px;
  color: #ff8686;
  font-size: 18px;
  font-weight: 500;
  border-left: 3px solid #ff8686;
}

.article .content p {
  margin: 20px 0;
  text-indent: 2em;
}

.article .content p > a {
  color: #ff8686;
}

.article .content p > strong {
  font-weight: bold;
}

.article .content div {
  margin: 20px 0;
  text-align: center;
}

.article .content img {
  max-width: 80%;
  border-radius: 12px;
}

.article .interact {
  text-align: end;
  color: #999;
  font-size: 12px;
  font-weight: 500;
}

.article .interact img {
  vertical-align: -4px;
  margin-right: 3px;
}

.article .interact span {
  vertical-align: middle;
}

.article .interact span:not(:last-child) {
  margin-right: 20px;
}

.article .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
  padding: 0 1.25rem;
  color: #333;
  font-size: 14px;
}

.article .tags a {
  color: #2b72c4;
  transition: 0.3s;
}

.article .tags a:hover {
  color: #ff8686;
  transition: 0.3s;
}

.article .tags::before {
  content: "相关标签: ";
}
/* #endregion */

/* #region 相关问题 */

.related-issues .list a {
  position: relative;
  display: block;
  color: #4d4d4d;
  font-size: 14px;
  padding-left: 15px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  line-height: 30px;
}

.related-issues .list a:hover {
  color: #ff8686;
  transition: 0.3s;
}

.related-issues .list a::before {
  position: absolute;
  left: 0;
  top: 11px;
  display: block;
  width: 7px;
  height: 7px;
  content: "";
  background: #ffffff;
  border: 1px solid #707070;
  border-radius: 50%;
  box-sizing: border-box;
  transition: 0.3s;
}

.related-issues .list a:hover::before {
  border: 1px solid #ff8686;
  transition: 0.3s;
}
/* #endregion */

/* #region 全部评论 */
.comments .module-content {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}

.comments .empty i {
  display: block;
  width: 178px;
  height: 145px;
  background: url(/pgd/static/m/icon/170.png) no-repeat center center;
  background-size: 178px 145px;
  margin: auto;
}

.comments .empty p {
  margin: 15px 0;
  color: #4d4d4d;
  font-size: 12px;
  text-align: center;
}
/* #endregion */

/* #region 推荐阅读 */
.recommend-read {
  margin: 0 1.25rem;
  border-radius: 12px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.08);
}

.recommend-read .title {
  display: flex;
  justify-content: space-between;
}

.recommend-read .nav {
  display: flex;
  gap: 20px;
  color: #999;
  font-size: 12px;
  font-weight: 500;
  transition: 0.3s;
}

.recommend-read .active {
  position: relative;
  color: #ff8686;
  transition: 0.3s;
}

.recommend-read .active::after {
  display: block;
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 60%;
  height: 0.125rem;
  margin-left: -30%;
  content: "";
  border-bottom: 0.3125rem;
  background: #ff8686;
}

.recommend-read .list li {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 500;
}

.recommend-read .list li:not(:last-child) {
  margin-bottom: 12px;
}

.recommend-read .list a {
  position: relative;
  display: block;
  width: 75%;
  color: #4d4d4d;
  padding-left: 15px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.recommend-read .list a:hover {
  color: #ff8686;
  transition: 0.3s;
}

.recommend-read .list a::before {
  position: absolute;
  left: 2px;
  top: 6.5px;
  display: block;
  width: 7px;
  height: 7px;
  content: "";
  background: #ffffff;
  border: 1px solid #707070;
  border-radius: 50%;
  box-sizing: border-box;
  transition: 0.3s;
}

.recommend-read .list a:hover::before {
  border: 1px solid #ff8686;
  transition: 0.3s;
}

.recommend-read .list img {
  display: inline-block;
  vertical-align: middle;
}

.recommend-read .list span {
  display: inline-block;
  vertical-align: middle;
  color: #999;
  font-size: 12px;
}
/* #endregion */

/* #region 热门话题 */
.hot-topic {
  margin: 20px;
  border-radius: 12px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.08);
}

.hot-topic .link {
  display: flex;
  flex-wrap: wrap;
  column-gap: 10px;
  row-gap: 15px;
}

.hot-topic .link a {
  display: block;
  padding: 5px 10px;
  color: #ff8686;
  font-size: 14px;
  font-weight: 500;
  background: rgba(255, 134, 134, 0.07);
  border-radius: 6px;
}
/* #endregion */
