/*與header區塊距離*/
.aboutus-section-area{
  padding-top: 5px;
  margin-top: 0px !important;
}
/*======文章內文======*/
.main-content.wrapper {
   /*display: flex;
  justify-content: center; 水平置中
  align-items: center; /* 垂直置中 */
}

/*文章封面16:9*/
.aboutus-cover-photo img{
  width: 100%;
  background-size: cover;
  background-position: center center;
  margin-top: 60px;
}
/*文章內容*/
.aboutus-content{
  margin-top: 20px;
  margin-left: 10px;
  margin-right: 10px;
  margin-bottom: 60px;
}
.aboutus-content img{
  display: block;
  margin: 0 auto;
  max-width: 100%;
  min-width: 50px;
}
.aboutus-content p{
  font-size: 1rem;
  line-height: 1.8;
}
/* 增加媒體查詢，當螢幕寬度小於768px時切換到手機版 */
@media screen and (max-width: 768px) {
  .aboutus-section-area{
    margin-top: 0px !important;
    padding-top: 0px;
  }
  .aboutus-cover-photo img{
    width: 100%;
    height: auto;
    margin-top: 56px;
  }
}