.content_aoli {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 1220px;
  padding: 0px 110px;
}
.content_aoli img {
  vertical-align: top;
}
@media screen and (max-width: 959px) {
  .content_aoli {
    padding: 0px 0px;
  }
}

/*1行1組*/
.oneInLine {
  margin-top: 10%;
  text-align: center;
}
.oneInLine_img {
  width: 99%;
}

/*1行2組*/
.twoInLine {
  display: flex;
  justify-content: space-evenly;
  margin-top: 4%;
}
.twoInLine_item {
  width: 49%;
}
.twoInLine_img {
  width: 100%;
}

/*1行4組*/
.fourInLine {
  display: flex;
  justify-content: space-evenly;
  margin-top: 2%;
}
.fourInLine_item {
  width: 24.2%;
}
.fourInLine_img {
  width: 100%;
}

/*1行4組bom*/
.fourbomInLine {
  display: flex;
  justify-content: space-evenly;
  margin-top: 1%;
}
.fourbomInLine_item {
  width: 24.5%;
}
.fourbomInLine_img {
  width: 100%;
}
.fourbomInLine_img:hover {
  transform: translateY(-6px);
}
.fourbomInLine_img:hover {
  box-shadow: 0 3px 30px rgba(0, 0, 0, 0.4);
}
@media screen and (max-width: 959px) {
  .fourbomInLine {
    flex-wrap: wrap;
  }
  .fourbomInLine_item {
    width: 49%;
  }
  .fourbomInLine_img {
	  margin-bottom: 1%;
  }
}

/* 一張圖上面蓋兩張小圖 */
.twoOnImg {
  text-align: center;
  position: relative;
  margin-top: 8%;
}
.twoOnImg_mainImg {
  width: 99%;
}
.twoOnImg_imgA {
  position: absolute;
  bottom: 1.5%;
  left: 2%;
  width: 47.5%;
}
.twoOnImg_imgB {
  position: absolute;
  bottom: 1.5%;
  right: 2%;
  width: 47.5%;
}

/* 左右滿版，記得放到.content之外才有效果 */
.fullBlock {
  width: 100%;
  text-align: center;
  margin-top: 6%;
}

.fullBlock_img_pc {
  width: 100%;
  max-width: 1220px;
  display: block;
  margin: 0 auto;
}

.fullBlock_img_mo {
  display: none;
}

.brand_bg {
  background-image: url(../images/brand-bg.jpg?t=1751249008794);
  background-size: cover;
  background-repeat: no-repeat;
}

@media screen and (max-width: 959px) {
  .fullBlock_img_pc {
    display: none;
  }
  .fullBlock_img_mo {
    width: 100%;
    display: block;
    margin: 0 auto;
  }
}

/*效果*/
.go_bt {
  transition: all 0.4s ease;
}
.go_bt:hover {
  transform: scale(0.95);
}

/*滑過會亮*/
.go_bt2 {
  transition: all 0.4s ease;
}
.go_bt2:hover {
  filter: brightness(108%);
}
/*滑過上移*/
.go_bt4 {
  transition: all 0.4s ease;
}
.go_bt4:hover {
  transform: translateY(-10px);
}
