@charset "UTF-8";
/**
 * 公告详情
 * date: 2024-9-24
 * author: fxyue;
 */
.files-title {
  height: 24px;
  font-size: 16px;
  font-weight: 500;
  color: #333;
  line-height: 24px;
}
.files-item {
  box-shadow: 0px 0px 10px 0px rgba(16, 56, 122, 0.1);
  margin-top: 12px;
  display: flex;
  align-items: center;
  height: 62px;
  padding: 0 10px;
  line-height: 42px;
  background: #fff;
}

.files-item.doc > a {
  background-image: url("../images/detail/doc.png");
}
.files-item.zip > a {
  background-image: url("../images/detail/zip.png");
}
.files-item.xls > a {
  background-image: url("../images/detail/xls.png");
}
.files-item.pdf > a {
  background-image: url("../images/detail/pdf.png");
}


.files-item > a {
  color: #333;
  padding-left: 50px;
  background: left center no-repeat;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  max-width: 90%;
  box-sizing: border-box;
}
.files-item > span {
  margin-left: 14px;
  color: #0189D4;
  padding-left: 24px;
  background: url("../images/detail/download_icon.png") left center no-repeat;
}