/* ============================================================================
 * common/footer.css — 跨主題共用底部 Footer + 浮動按鈕
 * ============================================================================
 *
 * 用途：
 *   提供 6 個前台主題共用的 footer 區塊樣式（含舊版 .footer / .footer-area
 *   與新版 .footer-default-* 樣式）、社群連結、付款資訊、版權與浮動 Line/FB/Phone
 *   按鈕（function-btns-block）。本檔同時包含 .footer-area 內對 .theme-bg /
 *   .black-bg 的 footer 背景反白覆寫（深底白字）。
 *
 * 內容索引：
 *   1. .footer-area 反白覆寫        在深色背景的 footer 內 p / h4 / 連結 / 社群 icon 強制白字
 *   2. .footer-top-inner / .footer-title / .footer-info        Footer 頂部容器與標題
 *   3. .footer-about / .footer-logo                            關於我們 + logo 區
 *   4. .footer-default-* 系列                                  新版 footer：header / row / col /
 *                                                              logo-stack / map / block / list /
 *                                                              icon / social-list / line-qr / line-tip 等
 *   5. .footer-brief / .footer-social                          簡介 + 社群圖示連結
 *   6. .footer-social-link.footer-social-icon* 系列            社群按鈕的雙圖（一般 / hover）
 *   7. .footer-title / .footer-menu / .footer-message          舊版 footer 標題、選單、聯絡表單
 *   8. .footer-payment / .footer-social-2                      付款方式 + 第 2 套社群連結
 *   9. .footerBg / .footer / .footerLogo                       新版 footer 背景 + 主體容器
 *  10. .footerInfoBox / .footerInfo                            聯絡資訊區塊
 *  11. .footerLink                                             footer 連結樣式
 *  12. .footer .footerSocial .socialItem*                      社群區塊（含雙圖切換）
 *  13. .copyRight / .copyRight .elementorBox                   版權聲明
 *  14. .function-btns-block / .function-btns-area              浮動按鈕容器（右下角 Line/FB/Phone）
 *  15. .function-btns-block .btn-Line / .btn-Fb / .btn-Phone / .btn-Expand
 *                                                              個別按鈕樣式（含 hover、QR 展開、active 動畫）
 *
 * 使用頁面：前台所有頁面（透過 web.layouts.app + sites/default/footer.blade.php 載入）
 * 相依 vendor：無
 *
 * 載入順序（最先到最後，後者覆寫前者）：
 *   widgets.css -> default.css（舊單檔，凍結中）-> common/base.css ->
 *   common/header.css -> common/sidebar.css -> themes/default/base.css ->
 *   themes/default/header.css -> themes/default/sidebar.css ->
 *   common/footer.css（本檔）-> themes/default/footer.css ->
 *   其他 common/themes 檔 -> custom.css
 *
 * 抽取來源：public/web/css/default.css 四個區段：
 *   - line 1765~1791：.footer-area .theme-bg / .black-bg 反白覆寫
 *   - line 4394~4889：主 footer 區塊（.footer-top-inner、.footer-default-*、.footer-social、.footer-menu、.footer-payment、.footer-social-2 等）
 *   - line 6492~6755：新版 footer .footerBg / .footer / .footerInfo / .footerSocial / .copyRight
 *   - line 7112~7376：浮動按鈕 .function-btns-block / .btn-Line / .btn-Fb / .btn-Phone / .btn-Expand / .function-btns-area
 *
 * 詳細規格：openspec/specs/web-theme-css/spec.md（Requirement R.FUNC.1 / R.FUNC.8）
 * 變更記錄：openspec/changes/issue518-web-theme-css-modularization/（task 5.4）
 * ============================================================================
 */


/* ============================================================================
 * 區段 1：.footer-area 深底反白覆寫（task 5.1 base 抽取時刻意保留給 footer）
 *   抽取自 default.css line 1765~1791
 * ============================================================================
 */

.footer-area .theme-bg p,
.footer-area .black-bg p,
.footer-area .theme-bg h4,
.footer-area .black-bg h4,
.footer-area .theme-bg .footer-menu li a,
.footer-area .black-bg .footer-menu li a,
.footer-area .theme-bg .footer-social li a,
.footer-area .black-bg .footer-social li a {
  color: #fff;
}

.footer-area .theme-bg .footer-social li a,
.footer-area .black-bg .footer-social li a {
  border: 1px solid #fff;
}

.footer-area .theme-bg .footer-menu li:hover a,
.footer-area .black-bg .footer-menu li:hover a,
.footer-area .theme-bg .footer-menu li:hover a i,
.footer-area .black-bg .footer-menu li:hover a i {
  color: #444;
}

.footer-area .theme-bg .footer-menu li a i,
.footer-area .black-bg .footer-menu li a i {
  color: #fff;
}


/* ============================================================================
 * 區段 2：主 footer 區塊（含 .footer-default-* 新版樣式）
 *   抽取自 default.css line 4394~4889
 *   對應 blade：resources/views/sites/default/footer.blade.php
 *   註：原檔 line 4891 有一個遺漏的 @import 已被 CSS spec 忽略（必須在所有 rule 之前），
 *        不抽取至本檔，留在 default.css 不動。
 * ============================================================================
 */

.footer-top-inner {
  padding: 30px 50px;
}

.footer-title {
  color: #000000;
  border-bottom: 1px solid #333333;
  margin-bottom: 30px;
}

.footer-info {
  margin-bottom: 20px;
}

.footer-info .footer-info-box {
  border-right: 1px solid #333333;
  padding: 10px;
}

.footer-info-box p {
  line-height: 1.5;
  word-break: break-all;
}

@media (min-width: 768px) and (max-width: 991px) {
  .footer-top-inner {
    padding: 30px 15px;
  }
}

@media screen and (max-width: 767px) {
  .footer-top-inner {
    padding: 30px 15px;
  }

  .footer-info .footer-info-box {
    border-right: none;
    border-bottom: 1px solid #333333;
    padding: 12px 10px;
  }

  .footer-info .footer-info-box p:last-child {
    margin-bottom: 0;
  }

}

.footer-info .footer-info-box:last-child {
  border-right: none;
}

.footer-about .footer-title h1 {
  /* font-size: 24px;
  font-weight: 700; */
  margin-bottom: 20px;
}

.footer-about .map {
  width: 100%;
  overflow: hidden;
}

.hbnBox {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-logo {
  margin-bottom: 12px;
  max-width: 100%;
  max-width: 150px;
}

.footer-default-inner {
  padding: 32px 0 40px;
}

.footer-default-header {
  display: grid;
  grid-template-columns: 1.5fr 10.5fr;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #1a1a1a;
}

.footer-default-header-title {
  min-width: 0;
}

.footer-default-row {
  display: grid;
  grid-template-columns: 1.5fr 3.5fr 2.5fr 2fr 2.5fr;
  gap: 24px;
}

.footer-default-col {
  min-width: 0;
}

.footer-default-col--logo {
  display: flex;
  align-items: flex-start;
}

.footer-default-logo--stack {
  display: flex;
  align-items: flex-start;
}

.footer-default-logo {
  width: 175px;
  height: 210px;
  max-width: 100%;
  flex: 0 0 auto;
}

.footer-default-logo img {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  display: block;
  object-fit: contain;
}

.footer-default-title {
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
}

.footer-default-map iframe {
  width: 100%;
  height: 200px;
  border: 0;
  border-radius: 10px;
}

.footer-default-block {
  height: 100%;
}

.footer-default-block-title {
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 12px;
  padding-left: 14px;
  position: relative;
}

.footer-default-block-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 14px;
  background: #1a1a1a;
}

.footer-default-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-default-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #666666;
  margin-bottom: 10px;
}

.footer-default-item p {
  line-height: 1.5;
}

.footer-default-icon {
  font-size: 20px;
  width: 20px;
  height: 20px;
  line-height: 20px;
  margin-top: 2px;
  color: #1a1a1a;
}

.footer-default-social-list {
  margin: 0 0 16px;
  padding: 0;
}

.footer-default-line {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-default-line-info {
  min-width: 0;
}

.footer-default-line-label {
  color: #8a8a8a;
}

.footer-default-line-id {
  font-weight: 600;
  color: #00b900;
  word-break: break-all;
}

.footer-default-line-qr img {
  width: 92px;
  height: 92px;
  display: block;
  margin: 0 auto;
}

.footer-default-line-qr {
  padding: 8px;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  background: #f7f7f7;
  text-align: center;
}

.footer-default-line-tip {
  color: #8a8a8a;
  text-align: center;
  margin-top: 6px;
}

@media (min-width: 992px) and (max-width: 1199px) {
  /* 平板（992-1199px）footer 收斂：自 common/pages/shoppingCart.css 歸位（footer 為全站共用層，主題以 themes/xxx/footer.css 覆蓋）。 */
  .footer-default-header {
    grid-template-columns: 1fr;
    gap: 16px;
    padding-bottom: 28px;
  }

  .footer-default-row {
    gap: 20px 24px;
  }
}

@media (max-width: 991px) {
  .footer-default-inner {
    padding: 24px 20px 32px;
  }

  .footer-default-header {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-default-map iframe {
    height: 180px;
  }

  .footer-default-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 575px) {
  .footer-default-row {
    grid-template-columns: 1fr;
  }

  .footer-default-line {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  /* 手機（≤480px）footer 標題字級：自 common/pages/shoppingCart.css 歸位。 */
  .footer-default-title,
  .footer-default-block-title {
    font-size: 16px;
    line-height: 1.4;
  }
}

.footer-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-brief {
  margin-bottom: 12px;
}

.footer-social li {
  display: inline-block;
}

.footer-social li+li {
  margin-left: 10px;
}

.footer-social li a {
  border: 1px solid rgb(153, 153, 153);
  border-radius: 50%;
  color: #999;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  text-align: center;
  width: 40px;
}

.footer-social li a i {
  line-height: 40px;
  font-size: 28px;
}

.footer-social li a:hover {
  border-color: transparent;
  color: #fff;
}

.footer-social li a.footer-social-link {
  background: #fff;
  border-color: #e0e0e0;
  color: inherit;
  position: relative;
  transition: background-color 0.2s ease, border-color 0.2s ease;
  width: 45px;
  height: 45px;
}

.footer-social li a.footer-social-link:hover {
  background: #f5f5f5;
  border-color: #d6d6d6;
  color: inherit;
}

.footer-social li a.footer-social-link .footer-social-icon {
  display: block;
  position: relative;
  width: 24px;
  height: 24px;
}

.footer-social li a.footer-social-link .footer-social-icon-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  transition: opacity 0.2s ease;
}

.footer-social li a.footer-social-link .footer-social-icon-img--mono {
  opacity: 0;
}

.footer-social li a.footer-social-link:hover .footer-social-icon-img--mono {
  opacity: 1;
}

.footer-social li a.footer-social-link:hover .footer-social-icon-img--color {
  opacity: 0;
}

.facebook:hover {
  background: #3B5998;
}

.google-plus:hover {
  background: #DD493D;
}

.twitter:hover {
  background: #1DA1F2;
}

.rss:hover {
  background: #F36F24;
}

.pinterest:hover {
  background: #cb2027 none repeat scroll 0 0;
}

.line {
  background: #00C300;
  color: #ffffff;
}

.line:hover {
  background: #02a802ff;
}

.message {
  background: #416bc6;
  color: #ffffff;
}

.message:hover {
  background: #3B5998;
}

.footer-title {
  font-weight: 700;
  margin: 10px 0 30px;
  text-transform: uppercase;
}

.footer-menu>li {
  display: block;
}

.footer-menu li a {
  color: #666666;
  display: inline-block;
  line-height: 30px;
}

.footer-menu li a i {
  color: #999999;
  font-size: 5px;
  margin-right: 10px;
  position: relative;
  top: -3px;
}

.footer-menu li a span {
  font-size: 13px;
  font-weight: 500;
}

.footer-menu li:hover a,
.footer-menu li:hover a i {
  color: #131313;
}

.footer-message input[type="text"] {
  box-shadow: none;
  margin-bottom: 10px;
}

.footer-message textarea {
  box-shadow: none;
}

.copyright {
  padding: 0 100px;
}

.copyright-text {
  padding: 14px 0;
}

.copyright-text p {
  line-height: 1.8;
  margin: 0;
}

@media screen and (max-width: 767px) {
  .copyright {
    padding: 0 50px;
  }

  .copyright-text p {
    text-align: center;
    line-height: 2.1;
  }

  .map>iframe {
    width: 100%;
  }

}


.copyright-text p a {
  color: #999999;
  margin: 0 5px;
}

.copyright-text p a:hover {
  color: #ffffff;
}

.footer-payment {
  line-height: 1;
  padding: 12px 0;
}

.footer-payment li {
  display: inline-block;
  margin-left: 6px;
}

.footer-payment li a {
  display: block;
  line-height: 1;
}

.footer-social-2 {
  padding: 6px 0;
}

.footer-social-2 li a {
  border: 0 none;
  border-radius: 0;
}


/* ============================================================================
 * 區段 3：新版 footer 背景與版權區
 *   抽取自 default.css line 6492~6755
 *   對應 blade：sites/default/footer.blade.php 的 .footerBg 容器
 * ============================================================================
 */

.footerBg {
  background-color: #ffffff;
  background-image: url("../img/bg/bgFooter.png");
  background-position: top center;
  background-size: cover;
  background-repeat: no-repeat;
  padding-top: 40px;
  position: relative;
}

.footerBg::after {
  content: "";
  position: absolute;
  top: -200px;
  left: 0;
  width: 100%;
  height: 200px;
  display: block;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 80%);
  z-index: -1000;
}

.footerBg .row {
  display: flex;
  flex-wrap: wrap;
}

.contactBox {
  background: rgba(255, 255, 255, 0.3725490196);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid #2c2c2c;
  padding: 15px 20px;
  border-radius: 20px;
  height: 100%;
}

.mapBox {
  display: flex;
  justify-content: center;
  align-items: center;
}

.mapBox .map {
  margin-right: 20px;
}


@media screen and (max-width: 768px) {
  .mapBox .map {
    margin-right: 0px;
  }
}

.mapBox .mapText {
  margin-top: 20px;
  color: #2c2c2c;
}

.mapBox .mapText h1 {
  color: #2c2c2c;
  margin: 0 0 20px;
  /* font-size: 25px;
  line-height: 45px; */
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .mapBox .mapText h1 {
    /* font-size: 18px; */
    line-height: 32px;
    margin: 0 0 12px;
  }
}

.mapBox .mapText p {
  color: #2c2c2c;
  /* font-size: 16px; */
}

.addfriendBox {
  display: flex;
  justify-content: flex-start;
  align-items: start;
}

.addfriendBox .addfriend {
  margin-right: 40px;
}

@media screen and (max-width: 768px) {
  .addfriendBox .addfriend {
    margin-right: 10px;
    width: 40%;
  }
}

.addfriendBox .addfriend .addfriendImg {
  width: 100%;
  height: 100%;
  max-height: 200px;
  -o-object-fit: contain;
  object-fit: contain;
}

.addfriendBox .addfriendText {
  margin-top: 20px;
}

.addfriendBox .addfriendText h1 {
  margin: 0 0 20px;
  font-size: 25px;
  font-weight: bold;
  color: #333333;
  line-height: 1.5;
}

@media screen and (max-width: 768px) {
  .addfriendBox .addfriendText h1 {
    font-size: 18px;
    line-height: 32px;
    margin: 0 0 12px;
  }
}

.addfriendBox .addfriendText p {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 16px;
  color: #333333;
}

.btnKG:hover {
  background-color: #2c2c2c;
  color: #ffffff;
}

.btnKG:hover p {
  color: #ffffff;
}

.footer {
  padding: 20px 0;
}

.footer .footerLogo {
  margin-bottom: 30px;
}

.footer .footerLogo .footerLogoImg {
  max-width: 120px;
  display: block;
}

.footerInfoBox {
  margin: 20px auto;
  flex-direction: row;
}

@media screen and (max-width: 768px) {
  .footerInfoBox {
    flex-direction: column;
    align-items: center;
  }
}

.footerInfo p {
  color: #313131;
  font-size: 16px;
  margin-right: 12px;
}

.footerInfo p:last-child {
  margin-right: 0;
}

.footerInfo {
  margin-right: 20px;
  position: relative;
}

.footerInfo::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -10px;
  transform: translateY(-50%);
  width: 1px;
  height: 20px;
  background: #313131;
}

@media screen and (max-width: 768px) {
  .footerInfo {
    margin-right: 0;
    margin-bottom: 12px;
  }

  .footerInfo::after {
    display: none;
  }
}

.footerLink a {
  color: #313131;
  font-size: 16px;
  margin-right: 10px;
}

.footer .footerSocial .socialItem {
  width: 50px;
  height: 50px;
  margin-right: 15px;
}

.footer .footerSocial .socialItem .socialItemImgBox {
  width: 100%;
  height: 100%;
  display: block;
  position: relative;
}

.footer .footerSocial .socialItem .socialItemImgBox:hover .socialItemImgH {
  opacity: 1;
  transition: 0.5s;
}

.footer .footerSocial .socialItem .socialItemImgBox .socialItemImg {
  display: block;
}

.footer .footerSocial .socialItem:last-child {
  margin-right: 0;
}

.footer .footerSocial .socialItem .socialItemImgBox .socialItemImgH {
  opacity: 0;
  transition: 0.5s;
}

.footer .footerSocial .socialItem .socialItemImgBox .socialItemImg,
.footer .footerSocial .socialItem .socialItemImgBox .socialItemImgH {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.copyRight {
  padding: 8px 0 20px;
}

.copyRight .elementorBox {
  display: block;
  text-decoration: none;
}

.copyRight .elementorBox .elementorText {
  font-size: 15px;
  color: #717171;
}


/* ============================================================================
 * 區段 4：浮動按鈕（右下角 Line / FB / Phone / Expand）
 *   抽取自 default.css line 7112~7376
 *   對應 blade：sites/default/footer.blade.php 的 .function-btns-area 容器
 * ============================================================================
 */

.function-btns-block {
  width: fit-content;
  margin: 0 auto;
  display: none;
  position: fixed;
  bottom: 80px;
  right: 10px;
  z-index: 10;
  transition: all 0.3s ease 0s;
}


.function-btns-block .btn-Fb {
  width: 60px;
  height: 60px;
  margin: 0 auto 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #0084ff;
  z-index: 10;
  border-radius: 99rem;
  transition: all 0.3s ease 0s;
}

.function-btns-block .btn-Fb:hover {
  background: #0070d9;
}

.function-btns-block .btn-Fb img {
  width: 28px;
  height: 28px;
  aspect-ratio: 1/1;

}

@media screen and (max-width: 768px) {
  .function-btns-block .btn-Fb {
    width: 48px;
    height: 48px;
  }

  .function-btns-block .btn-Fb img {
    width: 22px;
    height: 22px;
    aspect-ratio: 1/1;
  }
}


.function-btns-block .btn-Line {
  width: 60px;
  height: 60px;
  margin: 0 auto 10px;
  display: flex;
  position: relative;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #4cc764;
  border-radius: 99rem;
  z-index: 10;
  transition: all 0.3s ease 0s;
  cursor: pointer;
}

.function-btns-block .btn-Line:hover {
  background: #42b659;
}

.function-btns-block .btn-Line .Qrcode {
  width: 160px;
  height: auto;
  position: absolute;
  top: 0;
  left: -180px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #e4e4e4;
  padding: 10px;
  border-radius: 10px;
  z-index: 10;
  transition: all 0.3s ease 0s;
  opacity: 0;
}

.function-btns-block .btn-Line .Qrcode.active {
  opacity: 1;
}

.function-btns-block .btn-Line .Qrcode img {
  width: 100%;
  height: auto;
  aspect-ratio: 154/197;
}

.function-btns-block .btn-Line img {
  width: 30px;
  height: 30px;
  aspect-ratio: 1/1;

}

@media screen and (max-width: 768px) {
  .function-btns-block .btn-Line {
    width: 48px;
    height: 48px;
  }

  .function-btns-block .btn-Line img {
    width: 22px;
    height: 22px;
    aspect-ratio: 1/1;
  }
}

.function-btns-block .btn-Phone {
  width: 60px;
  height: 60px;
  margin: 0 auto 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: red;
  border-radius: 99rem;
  z-index: 10;
  transition: all 0.3s ease 0s;
}

.function-btns-block .btn-Phone:hover {
  background: #ce0000;
}


.function-btns-block .btn-Phone img {
  width: 28px;
  height: 28px;
  aspect-ratio: 1/1;
}

.function-btns-block .btn-Expand {
  width: 60px;
  height: 60px;
  margin: 0 auto 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: rgb(68, 68, 68);
  color: #ffffff;
  border-radius: 99rem;
  z-index: 10;
  transition: all 0.3s ease 0s;
}

.function-btns-block .btn-Expand:hover {
  background: #282828;
}

@media screen and (max-width: 768px) {
  .function-btns-block .btn-Phone {
    width: 48px;
    height: 48px;
  }

  .function-btns-block .btn-Phone img {
    width: 22px;
    height: 22px;
    aspect-ratio: 1/1;
  }

  .function-btns-block .btn-Expand {
    width: 48px;
    height: 48px;
  }

  .function-btns-block .btn-Expand img {
    width: 22px;
    height: 22px;
    aspect-ratio: 1/1;
  }
}

#scrollUp {
  width: 60px;
  height: 60px;
  border-radius: 99rem;
  margin-bottom: 10px;
  opacity: 0;
  transition: all 0.3s ease;
}

#scrollUp:hover {
  background: #555555;
}

#scrollUp.active {
  opacity: 1;
}

#scrollUp i {
  width: 60px;
  line-height: 60px;
}


@media screen and (max-width: 768px) {
  #scrollUp {
    width: 48px;
    height: 48px;
    border-radius: 99rem;
  }

  #scrollUp i {
    width: 48px;
    line-height: 48px;
  }
}

.function-btns-area {
  opacity: 1;
  transition: all 0.3s ease;
}

.function-btns-area.active .function-btns-block {
  transform: translateY(-70px);
}

.function-btns-block {
  position: fixed;
  right: 20px;
  bottom: -50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 1000;
}



.function-btns-block a,
.function-btns-block button {
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-Line,
.btn-Fb,
.btn-Phone {
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
}

.function-btns-block.active .btn-Line,
.function-btns-block.active .btn-Fb,
.function-btns-block.active .btn-Phone {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* === Phase B Batch 2: @media (1170-1400) footer RWD（抽自 default.css 4032-4050）=== */
@media (min-width: 1170px) and (max-width: 1400px) {
  .plr-185 {
    padding: 0 30px;
  }

  .plr-200 {
    padding-left: 45px;
    padding-right: 45px;
  }

  .footer-top-inner {
    padding: 30px;
  }

  .copyright {
    padding: 0 60px;
  }
}

