@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@500&family=Noto+Sans+TC:wght@400;500&family=Poppins:wght@400;600&display=swap");
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -20%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.contentBox .leftBox {
  padding: 0 50px 0 0;
}
.contentBox .rightBox {
  padding: 0;
}
@media (max-width: 1024px) {
  .contentBox .leftBox {
    padding: 0;
  }
}

.textEditor {
  margin-top: 0;
}
.textEditor .album {
  float: right;
  width: 300px;
  padding: 0 0 35px 35px;
  list-style: none;
}
.textEditor .album li {
  float: left;
  width: 90px;
  height: 90px;
  margin: 0 10px 10px 0;
  box-shadow: 2px 2px 5px #c3c3c3;
}
.textEditor .album a {
  display: block;
}
.textEditor .album a img {
  max-width: 100%;
}

@media (max-width: 767px) {
  .textEditor .album {
    float: none;
    margin: 20px auto;
    padding: 0;
  }
}