.documentList .documentItem::after, .documentList .documentItem::before, .documentList .documentItem {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.contentBox .leftBox {
  float: left;
  width: 64%;
}
@media (max-width: 640px) {
  .contentBox .leftBox {
    float: none;
    width: 100%;
  }
}
.contentBox .rightBox {
  float: right;
  width: 30%;
}
@media (max-width: 640px) {
  .contentBox .rightBox {
    float: none;
    width: 100%;
    margin-top: 30px;
  }
}

.note {
  padding: 10px;
  font-size: 15px;
  line-height: 1.6;
  background-color: #f1f1f1;
}
.note a {
  font-size: 18px;
  color: #09f;
}
.note a:hover {
  text-decoration: underline;
}

.documentList .documentItem {
  border-bottom: 1px solid #ccc;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  padding: 20px 10px;
}
.documentList .documentItem::before {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  background: rgba(210, 128, 51, 0.2);
  border-radius: 50%;
  top: 50%;
  right: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (max-width: 1180px) {
  .documentList .documentItem::before {
    background: #D38034;
  }
}
.documentList .documentItem::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  border: solid 1px #d28033;
  border-width: 1px 1px 0 0;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}
@media (max-width: 1180px) {
  .documentList .documentItem::after {
    border-color: #ffffff;
  }
}
.documentList .documentItem:hover {
  background: rgba(211, 131, 4, 0.2);
}
.documentList .documentItem:hover::before {
  background: #D38034;
}
.documentList .documentItem:hover::after {
  border-color: #ffffff;
}
.documentList .documentItem.empty {
  pointer-events: none;
}
.documentList .documentItem.empty::before, .documentList .documentItem.empty::after {
  display: none;
}
.documentList .documentItem > div {
  width: 100%;
}
.documentList .documentItem > div.dateBox {
  width: auto;
  height: auto;
  border: solid 1px rgba(51, 51, 51, 0.2);
  border-width: 0 1px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 10px 20px 0;
  margin-right: 20px;
}
@media (max-width: 480px) {
  .documentList .documentItem > div.dateBox {
    padding: 10px 20px 0;
  }
}
.documentList .documentItem > div.dateBox p {
  color: #666666;
  font-size: 14px;
  font-weight: 400;
  line-height: 14px;
  letter-spacing: 2px;
  font-family: "EB Garamond", "Microsoft JhengHei", serif;
  font-style: normal;
}
.documentList .documentItem > div.dateBox p:first-child {
  font-size: 54px;
  margin: 0 5px 15px 0;
}
.documentList .documentItem .title a {
  display: block;
  color: #171717;
  font-size: 18px;
  font-weight: 500;
  line-height: 18px;
  letter-spacing: 2px;
  font-family: "Noto Serif TC", "Microsoft JhengHei", serif;
  font-style: normal;
  margin-bottom: 10px;
}
.documentList .documentItem .title a::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.documentList .documentItem .text {
  color: #999999;
  font-size: 16px;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: 2px;
  font-family: "Noto Serif TC", "Microsoft JhengHei", serif;
  font-style: normal;
}