/*尾页*/
.containerii {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
    }
    
    
    /* 联系我们按钮 */
.ccssbutt {
    display: inline-block;
    padding: 22px 50px;
    background: linear-gradient(135deg, #d4af37, #f0e6d2);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 18px;
    letter-spacing: 1px;
}
    
    
          /* 底部导航栏 */


    .left-col,
    .middle-col,
    .right-col {
      flex: 1;
      min-width: 250px;
    }

    .logo {
      display: flex;
      align-items: center;
      margin-bottom: 20px;
    }

    .logo img {
      height: 50px;
      margin-right: 10px;
    }

    .title {
      font-size: 24px;
      font-weight: bold;
    }

    .address,
    .time,
    .contact {
      margin-bottom: 15px;
    }

    .address p,
    .time p,
    .contact p {
      margin: 5px 0;
    }

    .dividertty {
      width: 1px;
      background-color: #ccc;
      margin: 0 20px;
    }

    .qr-code {
      text-align: center;
      margin-bottom: 15px;
    }
    

    .qr-code img {
      width: 200px;
    }
    .footer {
      text-align: center;
      margin-top: 20px;
      color: #999;
      font-size: 14px;
    }

    /* 手機端頁尾：垂直堆疊、分隔線改橫線 */
    @media (max-width: 768px) {
      .containerii {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 24px 16px;
        gap: 0;
      }
      .left-col,
      .middle-col,
      .right-col {
        min-width: 0;
        width: 100%;
        max-width: 320px;
      }
      .dividertty {
        width: 80%;
        max-width: 200px;
        height: 1px;
        margin: 20px auto;
      }
      .logo {
        justify-content: center;
      }
      .address,
      .time,
      .contact {
        text-align: center;
      }
      .qr-code img {
        max-width: 160px;
        width: 100%;
      }
      .title {
        font-size: 20px;
      }
    }

    /* ========== 全站手機導航：漢堡按鈕 + 全屏選單（與主頁一致） ========== */
    .nav-toggle {
      display: none;
      align-items: center;
      justify-content: center;
      width: 44px;
      height: 44px;
      padding: 0;
      margin: 0;
      border: none;
      background: rgba(255,255,255,0.2);
      color: white;
      font-size: 1.4rem;
      border-radius: 8px;
      cursor: pointer;
      -webkit-tap-highlight-color: transparent;
    }
    .mobile-menu {
      position: fixed;
      inset: 0;
      background: linear-gradient(180deg, #0F3460 0%, #1a4a7a 100%);
      z-index: 250;
      display: flex;
      flex-direction: column;
      padding: 70px 24px 24px;
      overflow-y: auto;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.3s ease, visibility 0.3s ease;
    }
    .mobile-menu.show {
      opacity: 1;
      visibility: visible;
    }
    .mobile-menu-close {
      position: absolute;
      top: 16px;
      right: 16px;
      width: 44px;
      height: 44px;
      border: none;
      background: rgba(255,255,255,0.15);
      color: white;
      font-size: 1.4rem;
      border-radius: 8px;
      cursor: pointer;
      -webkit-tap-highlight-color: transparent;
    }
    .mobile-nav {
      display: flex;
      flex-direction: column;
      gap: 4px;
    }
    .mobile-nav a {
      display: block;
      padding: 14px 16px;
      color: white;
      text-decoration: none;
      font-size: 16px;
      border-radius: 8px;
      white-space: normal;
      line-height: 1.4;
    }
    .mobile-nav a:hover,
    .mobile-nav a:focus {
      background: rgba(255,255,255,0.15);
    }
    .mobile-nav .xz {
      display: block;
      font-size: 12px;
      opacity: 0.9;
      margin-top: 2px;
    }
    @media (max-width: 768px) {
      .nav-toggle { display: flex !important; visibility: visible !important; }
      .navbar .nav-links { display: none !important; }
      .navbar .home-link { display: none !important; }
      .top-bar { padding: 10px 12px; font-size: 13px; line-height: 1.4; }
      /* 無頂部橫條的頁面（醫美專案、產後修復等）：導航與頂部對齊 */
      body:not(:has(.top-bar)) .navbar { top: 0 !important; }
    }

    /* 頁尾「其他網站」區塊（全站共用） */
    .footer-other-sites {
      padding: 28px 40px 36px;
      text-align: center;
      border-top: 1px solid rgba(0,0,0,0.08);
    }
    .footer-other-sites-title {
      font-size: 15px;
      color: #555;
      margin: 0 0 16px;
      font-weight: 600;
    }
    .footer-other-sites-list {
      list-style: none;
      margin: 0;
      padding: 0;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 24px 32px;
    }
    .footer-other-sites-list li { margin: 0; }
    .footer-other-sites-list a {
      color: #0F3460;
      text-decoration: none;
      font-size: 14px;
      line-height: 1.5;
    }
    .footer-other-sites-list a:hover { text-decoration: underline; }
    .footer-other-sites-list .english-translation {
      font-size: 12px;
      opacity: 0.85;
      margin-top: 2px;
    }
    @media (max-width: 768px) {
      .footer-other-sites { padding: 20px 16px 28px; }
      .footer-other-sites-list { flex-direction: column; gap: 16px; align-items: center; }
    }