/* 基礎css */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Noto Sans TC", sans-serif;
}
h1,
h2,
h3 {
  font-weight: bold;
}

/* 最外框 */
.container-aoli {
  margin: auto;
  max-width: 850px;
}

/* 小於959px時 */
@media (max-width: 959px) {
  .container-aoli {
    max-width: 100%;
  }
}

/* 中間區塊 */
.item-aoli {
  display: flex;
  width: 100%;
  margin-bottom: 65px;
}
@media (max-width: 959px) {
  .item-aoli {
    flex-direction: column;
  }
  .item-type2-aoli {
    flex-direction: column-reverse;
  }
}

/* 中間區塊 > 文字區塊 */
.textContainer {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
}
.textContainer_pcLogo {
  width: 40%;
  margin-bottom: 45px;
}
.textContainer_moLogo {
  display: none;
  width: 40%;
  margin: 40px auto 50px auto;
}
.textContainer_h1 {
  margin-bottom: 20px;
}
.textContainer_h2 {
  margin-bottom: 10px;
  color: #fe8771;
  font-size: 17px;
}
.textContainer_words {
  font-size: 13px;
  color: #a5a5a5;
  text-align: center;
  line-height: 1.5;
}
.textContainer_circleImg {
  position: absolute;
  width: 20%;
  right: 5%;
  top: 15%;
}
.textContainer_colorBox {
  margin-top: 62px;
  width: 78px;
  height: 8px;
  background-color: #fe8771;
}
@media (max-width: 959px) {
  .textContainer {
    width: 100%;
  }
  .textContainer_pcLogo {
    display: none;
  }
  .textContainer_colorBox {
    margin-bottom: 30px;
  }
  .textContainer_circleImg {
    display: none;
  }
  .textContainer_words-type2 {
    margin-bottom: 80px;
  }
}

/* 中間區塊 > 圖片區塊 */
.imgContainer {
  width: 50%;
}
.imgContainer_img {
  width: 100%;
}
@media (max-width: 959px) {
  .imgContainer {
    width: 90%;
    margin: auto;
  }
  .textContainer_moLogo {
    display: block;
  }
}

/* 尾部區塊 */
.footer-aoli {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
}
.footer_mediaTitle {
  font-size: 39px;
  margin-bottom: 3px;
}
.footer_mediaSubtitle {
  color: #fe8771;
  font-size: 12px;
  margin-bottom: 36px;
}
.footer_mediaImgContainer {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  margin-bottom: 70px;
  position: relative;
}
.footer_anchorTag {
  width: 8%;
}
.footer_mediaImg {
  width: 100%;
}
.footer_mainImgContainer {
  width: 100%;
  position: relative;
}
.footer_pcMainImg {
  width: 100%;
}
.footer_moMainImg {
  display: none;
  width: 100%;
}
.footer_productTitle {
  position: absolute;
  color: white;
  font-size: 23px;
  top: 10%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.footer_productSubtitle {
  position: absolute;
  color: white;
  font-size: 12px;
  top: 18%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.footer_moCircleImgContainer {
  width: 100%;
  display: flex;
  justify-content: end;
}
.footer_moCircleImg {
  display: none;
  width: 20%;
  margin-bottom: 15px;
  margin-right: 15px;
}

@media (max-width: 959px) {
  .footer_mediaImgContainer {
    flex-wrap: wrap;
  }
  .footer_anchorTag {
    width: 50%;
    text-align: center;
  }
  .footer_mediaImg {
    width: 50%;
  }
  .footer_moCircleImg {
    display: block;
  }
  .footer_pcMainImg {
    display: none;
  }
  .footer_moMainImg {
    display: block;
  }
  .footer_mediaImgContainer {
    margin: 20px;
  }
  .footer_mediaImg {
    margin: 20px 0;
  }
  .footer_mediaSubtitle {
    margin-bottom: 15px;
  }
}
