.notice-contents {
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 440px;
  padding-right: 12px;
  overflow-y: scroll;
  overflow-x: hidden;
}

.notice-contents::-webkit-scrollbar {
  width: 6px;
  background-color: rgba(255, 255, 255, 0);
}

.notice-contents::-webkit-scrollbar-thumb {
  width: 6px;
  background: #D8D8D8;
  border-radius: 3px;
}

.notice-item {
  width: 100%;
  background: #F6F6F6;
  border-radius: 6px;
  padding: 14px 16px;
  color: #333333;
}

.notice-item .notice-item-title {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 5px;
}

.notice-item .notice-item-title .item-title {
  width: 508px;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.notice-item .notice-item-title .item-title p:nth-child(1) {
  max-width: 418px;
  line-height: 20px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.notice-item .notice-item-title .item-title p:nth-child(2) {
  font-size: 12px;
  color: #C0C0C0;
  line-height: 16px;
}

.notice-item .notice-item-content {
  margin-top: 14px;
  width: 100%;
  font-size: 12px;
  color: #333333;
  line-height: 18px;
  font-weight: normal;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.notice-item .notice-item-footer {
  width: 100%;
  height: 34px;
  margin-top: 16px;
  border-top: 1px solid #D8D8D8;
  padding-top: 16px;
  padding-right: 7px;
  display: flex;
  justify-content: space-between;
}

.notice-item .notice-item-footer .footer-date {
  font-size: 12px;
  color: #666666;
  line-height: 16px;
}

.notice-item .notice-item-content p {
  max-width: 100%;
  overflow: hidden;
  white-space: no-wrap;
  text-overflow: ellipsis;
}

.notice-error {
  width: 100%;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.item-open {
  display: flex;
  cursor: pointer;
}

.item-open:hover {
  opacity: .7;
}

.item-open img {
  width: 16px;
  height: 16px;
}

.item-open img.closed {
  transform: rotate(180deg);
}

.item-open p {
  font-size: 12px;
  color: #333333;
  line-height: 16px;
}