@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@300;400;500;700&amp;family=Poppins:wght@300;400;500;600&amp;family=Roboto:ital,wght@0,400;0,500;1,500&amp;display=swap");
.documentList h3 i, .documentList li {
  transition: all 0.5s;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -20%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes dotMove {
  0% {
    top: 0;
  }
  50% {
    top: calc(100% - 5px);
  }
  100% {
    top: 0;
  }
}
@keyframes wave {
  to {
    stroke-dashoffset: 0;
  }
}
.contentBox {
  display: flex;
}
.contentBox .leftBox {
  width: 250px;
}
.contentBox .rightBox {
  width: calc(100% - 250px);
  padding-left: 50px;
}
@media (max-width: 1180px) {
  .contentBox .leftBox {
    width: 30%;
  }
  .contentBox .rightBox {
    width: 70%;
    padding-left: 30px;
  }
}
@media (max-width: 768px) {
  .contentBox {
    display: block;
  }
  .contentBox .leftBox,
.contentBox .rightBox {
    width: 100%;
  }
  .contentBox .rightBox {
    padding-left: 0;
  }
}

.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 li {
  padding: 15px 0;
  border-bottom: 1px solid #ccc;
}
.documentList li:hover h3 a, .documentList li:hover h3 i {
  color: #dc0011;
}
.documentList li:hover h3 a:before, .documentList li:hover h3 i:before {
  color: #dc0011;
}
.documentList h3 {
  position: relative;
}
.documentList h3 a {
  position: relative;
  padding: 10px 0 10px 25px;
  font-weight: 400;
  font-size: 17px;
  color: #242424;
  cursor: pointer;
}
.documentList h3 a:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
  margin-top: -2px;
  font-family: FontAwesome;
  transition: all 0.5s;
}
.documentList h3 i {
  color: #000;
}
.documentList p {
  font-size: 13px;
  line-height: 1.8;
  color: #474747;
}