@charset "UTF-8";
/**
 * 通用详情页样式
 * date: 2025-7-29
 * author: 程姣姣
 */
/* article */
.article {
  padding: 36px;
  margin-bottom: 32px;
  background: #fff;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
  border-radius: 4px;
}
.article h3 {
  line-height: 40px;
  text-align: center;
  font-size: 26px;
  font-weight: bold;
  color: #333;
}

.article-sources {
  margin: 16px 0 30px;
  line-height: 32px;
  text-align: center;
  color: #999;
  background-color: #f7f7f7;
}
.article-sources p {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  vertical-align: top;
}
.article-sources p + p {
  margin-left: 30px;
}
.article-sources a {
  display: inline-block;
  width: 20px;
  height: 20px;
  text-align: center;
  line-height: 20px;
  color: #999;
}
.article-sources a.current {
  color: #fff;
  background: #c8000a;
}

.article-info {
  word-break: break-all;
}

.article-p {
  line-height: 32px;
  font-size: 16px;
  text-indent: 2em;
  text-align: justify;
  text-justify: inter-ideograph;
}

.article-img {
  display: block;
  margin: 18px auto;
}

.article-attachment {
  margin-top: 30px;
}
.article-attachment .attachment-list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.article-attachment .attachment-list li {
  width: 560px;
  height: 59px;
  margin-top: 8px;
  border-radius: 4px;
  background: #f7f7f7;
  border: 1px solid #f7f7f7;
  display: flex;
  align-items: center;
  transition: background 0.3s, border-color 0.3s;
}
.article-attachment .attachment-list li:hover {
  background: #fff;
  border-color: #c8000a;
}
.article-attachment .attachment-list li img {
  margin: 0 8px;
}
.article-attachment .attachment-list li .info {
  width: calc(100% - 60px);
}
.article-attachment .attachment-list li .info h6 {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.article-attachment .attachment-list li .info p {
  display: flex;
  align-items: center;
  height: 26px;
}
.article-attachment .attachment-list li .info span {
  color: #999;
}
.article-attachment .attachment-list li .info a {
  width: 20px;
  height: 20px;
  margin-left: 10px;
  background: url("../images/detail/icon-download.png") no-repeat center;
}