@charset "UTF-8";
/**
 * 通用详情
 * date: 2025-7-21
 * author: haotang;
 */
.com-box {
  border-radius: 4px;
  padding: 36px;
  box-shadow: 0px 2px 14px rgba(4, 44, 101, 0.1);
  box-sizing: border-box;
  margin: 0 auto 30px auto;
}

.article-title {
  line-height: 38px;
  font-weight: 700;
  font-size: 26px;
  text-align: center;
}
.article-info {
  height: 32px;
  display: flex;
  background-color: #F6F6F6;
  margin-top: 16px;
  gap: 30px;
  align-items: center;
  justify-content: center;
  color: #666;
}
.article-info > div {
  max-width: 25%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.article-box {
  margin: 30px 0;
}

.font-size-set {
  display: flex;
}
.font-size-set span {
  width: 20px;
  height: 20px;
  line-height: 20px;
  text-align: center;
  border-radius: 1px;
  margin: 0 3px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.font-size-set span.current {
  background-color: #1F6DE8;
  color: #fff;
  font-weight: 700;
}

.file-box .label {
  height: 21px;
  line-height: 21px;
}
.file-list {
  gap: 8px;
  display: flex;
  flex-wrap: wrap;
  margin-top: 8px;
}
.file-item {
  width: calc(50% - 4px);
  height: 59px;
  display: flex;
  background-color: #F6F6F6;
  border: 1px solid #F6F6F6;
  box-sizing: border-box;
  border-radius: 4px;
  padding: 0 7px;
  align-items: center;
}
.file-item:hover {
  background-color: #fff;
  border-color: #1F6DE8;
}
.file-ico {
  width: 36px;
  height: 36px;
}
.file-info {
  width: calc(100% - 44px);
  margin-left: 8px;
}
.file-info .name {
  height: 21px;
  line-height: 21px;
  color: #333;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.file-info .detail {
  display: flex;
  margin-top: 4px;
  height: 18px;
  align-items: center;
}
.file-info .detail .size {
  font-size: 12px;
  color: #B1B6CC;
}
.file-info .detail .download-ico {
  width: 14px;
  height: 15px;
  margin-left: 12px;
  background: url("../images/download.svg") center no-repeat;
}