@charset "UTF-8";
/* CSS Document */
.articleTitle {
  margin-top: 70px;
}

.textEditor .note {
  font-size: 15px;
  font-weight: 200;
  font-family: "EB Garamond", "微軟正黑體", serif;
  color: #454545;
  text-align: center;
  margin-bottom: 80px;
}

.textEditor .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.textEditor .leftBox {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
  width: 50%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.textEditor .rightBox {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
  width: 50%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.textEditor .Txt {
  padding-left: 64px;
  padding-right: 80px;
}

.textEditor .Txt .title {
  font-size: 24px;
  font-weight: 300;
  font-family: "Noto Serif TC", "微軟正黑體", serif;
  color: #050505;
  letter-spacing: 1px;
}

.textEditor .Txt p {
  margin-top: 15px;
  font-size: 14px;
  font-weight: 200;
  font-family: "Noto Serif TC", "微軟正黑體", serif;
  color: #666666;
  letter-spacing: 1px;
}

.textEditor .Img img {
  display: block;
  width: 100%;
}

@media (max-width: 960px) {
  .textEditor .Txt {
    padding: 0 20px;
  }
}

@media (max-width: 767px) {
  .textEditor .note {
    margin-bottom: 40px;
  }
  .textEditor .box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .textEditor .leftBox {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    width: 100%;
  }
  .textEditor .rightBox {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    width: 100%;
  }
  .textEditor .Txt {
    padding-top: 10px;
    padding-bottom: 30px;
  }
}

@media (max-width: 640px) {
  .articleTitle {
    margin-top: 25px;
    font-size: 22px;
  }
}

/*# sourceMappingURL=about.css.map */