@import url(http://fonts.googleapis.com/css?family=Noto+Sans+TC:100,300,400,500|Open+Sans:300,400|Oswald&amp;display=swap);
.contentBox .leftBox {
  float: left;
  width: 320px;
  padding-right: 60px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.contentBox .rightBox {
  float: left;
  width: calc(100% - 320px);
}

.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 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding: 10px 0;
  margin: 10px 0;
  border-bottom: 1px solid #eee;
}

.documentList .Img {
  width: 128px;
  border: 4px solid #D2D2D2;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  overflow: hidden;
}

.documentList .Img:hover img {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
  opacity: 0.8;
}

.documentList .Img img {
  display: block;
  width: 100%;
  -webkit-transition: all .3s linear;
  -o-transition: all .3s linear;
  transition: all .3s linear;
}

.documentList .Txt {
  width: calc(100% - 128px);
  padding: 0 15px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.documentList h3 a {
  display: inline-block;
  position: relative;
  padding-bottom: 10px;
  font-weight: 400;
  font-size: 20px;
  color: #091e37;
}

.documentList h3 a:hover {
  color: #c1a367;
}

.documentList h3 i {
  color: #000;
}

.documentList p {
  font-size: 13px;
  line-height: 1.8;
  color: #474747;
}

@media (max-width: 960px) {
  .contentBox .leftBox {
    float: none;
    width: 100%;
    padding: 0;
  }
  .contentBox .rightBox {
    float: none;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .documentList li {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .documentList .Txt {
    width: 100%;
    padding: 15px;
  }
}

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