/* 腳部盒子主體樣式 */
._footer {
  color: white;
  text-align: left;

  padding: 30px 0;

  background-color: black !important;
}

/* 導航等信息盒子 */
._footer-info {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

/* 導航信息項盒子 */
._footer-info ._footer-item {
  font-family: 'brandon grotesque';
  margin: 0 8px 15px;
  width: 200px;
  list-style: none;
}

/* 分享盒子 */
._footer-item-share {
  margin: 0;
  list-style: none;
}

/* 導航標籤名 */
._footer-item-top-label {
  font-family: "Brandon Grotesque",Arial,sans-serif;
  font-size: 16px;
  font-weight: 600;
  padding: 2PX;
  margin-bottom: 15px !important;
}

/* 導航內容 */
._footer-item li {
  font-family: "Brandon Grotesque",Arial,sans-serif;
  font-size: 14px;
  padding: 2PX;
  margin: 8px 0;
}

._footer-item li a {
  color: white !important;
}

._footer-item li a:hover {
  color: white !important;
}

/* 分享盒子 */
.share-icon-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

/* 分享圖片 */
.share-icon-box img {
  width: 40px;
  height: 40px;
  margin: 0 5px;
}

/* 支付方式盒子 */
.payment-box {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* 支付方式圖片盒子 */
.payment-box .image-box {
  display: flex;
  justify-content: start;
  flex-wrap: wrap;
  margin-top: 20px;
  background-color: white;
}

/* 支付方式圖片 */
.payment-box .image-box img {
  /*width: auto;*/
  /*height: 54px;*/
  /*margin: 0 20px;*/
  width: 15%;
}

/* 文字信息 */
.payment-box p {
  font-size: 12px;
}

.payment-box p:first-of-type {
  margin-top: 20px;
}

.payment-box p:last-of-type {
  margin-top: 10px;
}

/* -------- 媒體查詢斷點 -------- */
@media (max-width: 750px) {
  /* 改變導航盒子大小 */
  ._footer-item {
    width: 135px !important;
  }
  
  ._footer-item li {
    margin: 10px 0;
  }
}