#DZLoading {
  position: fixed;
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 3000;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
.ball-scale > div {
  background-color: #ffe23b;
  border-radius: 100%;
  margin: 2px;
  display: inline-block;
  height: 80px;
  width: 80px;
  animation: ball-scale 1s 0s ease-in-out infinite;
}
@keyframes ball-scale {
0% {
    transform: scale(0);
}
100% {
    transform: scale(1);
    opacity: 0;
}
}
#DZArticle {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  min-height: 100%;
  overflow-x: hidden;
  overflow-y: visible;
  background-color: #fff;
  white-space: pre-line;
  position: absolute;
  top: 0;
}
.article_title {
  width: 100%;
  overflow: visible;
  height: max-content;
  padding: 23px 16px 31px 16px;
}
.article_title .content_title {
  font-family: Noto Sans TC;
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 29px;
  color: #555555;
}
.article_title .content_date {
  font-family: Noto Sans TC;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 20px;
  color: #AAAAAA;
}
.article_content {
  padding: 0 16px;
  margin-bottom: 80px;
  overflow: visible;
  height: max-content;
  font-family: Noto Sans TC;
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 30px;
  color: #555555;
}
.article_file {
  font-family: Noto Sans TC;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  padding: 0 16px 54px 16px;
}
.article_file > div {
  margin-bottom: 11px;
}
.article_file a, .article_file a:active, .article_file a:hover {
  color: #0089FF;
}
.article_file .file_list {
  width: 100%;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}
.article_file .file_list a {
  display: block;
  margin-bottom: 7px;
}
.article_file .file_list span {
  margin-left: 10px;
}
.article_file .file_imgs {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.article_file .file_imgs a {
  display: block;
  width: 100px;
  height: 100px;
  border: 1px solid #E5E5E5;
  box-sizing: border-box;
  border-radius: 4px;
  position: relative;
  margin: 0 10px 10px 0;
}
.article_file .file_imgs a img {
  width: 100%;
  height: 100%;
  border-radius: 4px;
  object-fit: cover;
}
