.board-top {
  background-color: var(--bg04);
  height: 150px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 60px;
  padding: 0 20px;
}
.board-top select {
  width: 166px;
  background-color: #fff;
  border: 1px solid #ddd;
  height: 60px;
  line-height: 60px;
  padding: 0 20px;
  color: var(--medium);
}

.board-top__input {
  width: 550px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
.board-top__input input[type='text'] {
  background-color: #fff;
  border: 1px solid #ddd;
  min-width: 0;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  height: 60px;
  line-height: 60px;
}
.board-top__input button {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  height: 60px;
  width: 140px;
  background-color: var(--orange);
}

.board-list {
  border-top: 1px solid var(--orange);
  text-align: center;
}

.board-list__record {
  height: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-bottom: 1px solid #ddd;
  font-size: 18px;
  font-weight: 500;
}
.board-list__record .num {
  width: 180px;
  color: var(--medium);
  font-weight: 400;
}
.board-list__record .tit {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
a.board-list__record .tit p {
  padding-right: 28px;
  background-image: url('/image/common/file_icon.svg');
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 18px;
  display: inline-block;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  max-width: 100%;
}
.board-list__record .date {
  width: 240px;
  color: var(--medium);
  font-weight: 400;
}

div.board-list__record {
  background-color: var(--bg04);
}
div.board-list__record .num,
div.board-list__record .date  {
  color: var(--dark);
  font-weight: 500;
}

a.board-list__record .tit {
  text-align: left;
}

.list-pager {
  margin-top: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.list-pager > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
}
.list-pager > div a {
  font-size: 16px;
  font-weight: 400;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.list-pager > div a.active {
  background-color: var(--orange);
  color: #fff;
  font-weight: 700;
}
.list-pager a.arrow {
  width: 24px;
  height: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.board-view__nav {
  margin-top: 40px;
  border-top: 1px solid #ddd;
  font-size: 18px;
  font-weight: 400;
  overflow: hidden;
  text-overflow: ellipsis;
}
.board-view__nav dl {
  border-bottom: 1px solid #ddd;
  height: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 40px;
  gap: 60px;
}
.board-view__nav dt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: var(--medium);
}
.board-view__nav dd {
  overflow: hidden;
  text-overflow: ellipsis;
}
.board-view__nav dd a {
  font-weight: 500;
  padding-right: 25px;
  background-image: url('/image/common/file_icon.svg');
  background-position: center right;
  background-repeat: no-repeat;
  background-size: 18px;
  display: block;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.board-view {
  border-top: 1px solid var(--orange);
}
.board-view .common-btn {
  margin-top: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.board-view__top {
  height: auto;
  border-bottom: 1px solid #ddd;
  padding: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 5%;
}
.board-view__top b {
  font-size: 24px;
  font-weight: 500;
}
.board-view__top p {
  color: var(--medium);
  font-size: 18px;
  font-weight: 400;
}

.board-view__edit {
  padding: 40px;
  min-height: 400px;
}
.board-view__edit img {
  display: inline-block;
}

.board-view__file {
  padding: 25px 40px;
  background-color: var(--bg04);
}
.board-view__file ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
}
.board-view__file ul li {
  padding-left: 25px;
  background-image: url('/image/common/file_icon.svg');
  background-position: top 0.2em left;
  background-repeat: no-repeat;
  background-size: 18px;
  line-height: 1.6;
  opacity: 0.7;
}

@media all and (max-width: 1024px) {
  .board-view-tit {
    font-size: 32px;
    margin-bottom: 25px;
  }
}

@media all and (max-width: 768px) {
  div.board-list__record {
    display: none;
  }
  .board-list__record .num {
    width: 100px;
  }
  .board-list__record .date {
    width: 150px;
  }
  .board-view-info {
    font-size: 14px;
  }
}

@media all and (max-width: 640px) {
  .board-top {
    height: 100px;
    gap: 5px;
    font-size: 14px;
    margin-bottom: 40px;
  }
  .board-top select {
    width: 75px;
    height: 45px;
    line-height: 45px;
    padding: 0 10px;
    font-size: 13px;
    background: url(/image/common/select_arrow.svg) no-repeat right 5px center;
    background-color: #fff;
  }
  .board-top__input {
    gap: 5px;
    flex: 1;
  }
  .board-top__input input[type=text] {
    height: 45px;
    line-height: 45px;
    padding-left: 10px;
  }
  .board-top__input button {
    font-size: 14px;
    height: 45px;
    width: 80px;
  }
  .board-list {
    margin-top: 45px;
  }
  .board-list__record {
    flex-wrap: wrap;
    padding: 15px 10px;
  }
  .board-list__record .num {
    display: none;
  }
  .board-list__record .tit {
    width: 100%;
    flex: none;
    font-size: 15px;
  }
  .board-list__record .date {
    width: 100%;
    font-size: 13px;
    text-align: left;
  }
  .list-pager {
    margin-top: 50px;
  }
  .list-pager > div {
    gap: 10px;
  }
  .list-pager > div a {
    width: 25px;
    height: 25px;
    font-size: 14px;
  }
  .board-view__top {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 20px;
  }
  .board-view__top b {
    font-size: 19px;
    font-weight: 500;
  }
  .board-view__top p {
    font-size: 14px;
  }
  .board-view__edit {
    padding: 20px;
    min-height: 240px;
  }
  .board-view__file {
    padding: 15px 20px;
  }
  .board-view__file ul li {
    background-size: 15px;
  }

  .board-view__nav {
    margin-top: 30px;
    font-size: 14px;
  }
  .board-view__nav dl {
    height: 60px;
    padding: 0 20px;
    gap: 20px;
  }
  .board-view__nav dt {
    gap: 5px;
    font-size: 14px;
  }
  .board-view__nav dd a {
    background-size: 16px;
    font-size: 14px;
  }
}
