@charset "utf-8";
/* ============================================================
   fun100-ilanbnb 全站內頁通用 RWD 樣式庫 (css/rwd_inner.css)
   電腦版 (>=992px): 保持原本經典 990px Table 排版，100% 零回歸
   行動版 (<=991px): 輕量現代化卡片流、直覺觸控分頁、Zero-Crop
   ============================================================ */

/* 1. 雙模斷點切換控制 */
.fun100-mobile-wrapper {
  display: none;
}

table.fun100-desktop-wrapper,
.fun100-desktop-wrapper {
  display: table;
  width: 990px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

@media screen and (min-width: 992px) {
  .fun100-mobile-wrapper {
    display: none !important;
  }
  table.fun100-desktop-wrapper,
  .fun100-desktop-wrapper {
    display: table !important;
    width: 990px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}

@media screen and (max-width: 991px) {
  body:not(.force-desktop) {
    background-image: none !important;
    background-color: #f8fafc !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  body:not(.force-desktop) table.fun100-desktop-wrapper,
  body:not(.force-desktop) .fun100-desktop-wrapper {
    display: none !important;
  }
  body:not(.force-desktop) .fun100-mobile-wrapper {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
  }
}

body.force-desktop table.fun100-desktop-wrapper,
body.force-desktop .fun100-desktop-wrapper {
  display: table !important;
  width: 990px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
body.force-desktop .fun100-mobile-wrapper {
  display: none !important;
}

body.force-mobile table.fun100-desktop-wrapper,
body.force-mobile .fun100-desktop-wrapper {
  display: none !important;
}
body.force-mobile .fun100-mobile-wrapper {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  overflow-x: hidden !important;
}
body.force-mobile {
  background-image: none !important;
  background-color: #f8fafc !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* ============================================================
   2. 行動版全站通用佈局與字體 (作用於 .fun100-mobile-wrapper 下)
   ============================================================ */
.fun100-mobile-wrapper * {
  box-sizing: border-box;
}

.fun100-mobile-wrapper {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Microsoft JhengHei", "微軟正黑體", sans-serif;
  color: #1e293b;
  line-height: 1.5;
  background-color: #f8fafc;
  -webkit-text-size-adjust: 100%;
}

.fun100-mobile-wrapper a {
  text-decoration: none;
  color: inherit;
}

/* 3. 內頁共用頁首 (Header) */
.fun100-mobile-wrapper .inner-mobile-header {
  background: #ffffff;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.fun100-mobile-wrapper .inner-banner-area {
  position: relative;
  width: 100%;
  aspect-ratio: 670 / 184;
  background: url('../img/mobile_header_banner.jpg?v=20260915_1550') no-repeat center center;
  background-size: 100% 100%;
  overflow: hidden;
}

@supports not (aspect-ratio: 670 / 184) {
  .fun100-mobile-wrapper .inner-banner-area {
    height: 0;
    padding-top: 27.4626%;
  }
}

.fun100-mobile-wrapper .brand-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 78%;
  height: 100%;
  display: block;
  z-index: 2;
}

.fun100-mobile-wrapper .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* 漢堡切換為紅色 ✕ 關閉鈕 */
.fun100-mobile-wrapper .menu-toggle {
  position: absolute;
  top: 8px;
  right: 10px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border: 1.5px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0284c7;
  cursor: pointer;
  padding: 0;
  line-height: 1;
  z-index: 3;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.fun100-mobile-wrapper .menu-toggle .icon-hamburger,
.fun100-mobile-wrapper .menu-toggle .icon-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  transition: all 0.2s ease;
}

.fun100-mobile-wrapper .menu-toggle .icon-close {
  display: none;
}

.fun100-mobile-wrapper .menu-toggle.active {
  background: #ffffff;
  color: #dc2626;
  border-color: rgba(220, 38, 38, 0.35);
  box-shadow: 0 3px 10px rgba(220, 38, 38, 0.25);
  transform: rotate(90deg);
}

.fun100-mobile-wrapper .menu-toggle.active .icon-hamburger {
  display: none;
}

.fun100-mobile-wrapper .menu-toggle.active .icon-close {
  display: flex;
  transform: rotate(-90deg);
}

.fun100-mobile-wrapper .menu-toggle:active {
  transform: scale(0.92);
}

.fun100-mobile-wrapper .menu-toggle.active:active {
  transform: scale(0.92) rotate(90deg);
}

/* 搜尋列 */
.fun100-mobile-wrapper .search-bar {
  padding: 8px 12px 10px;
  background: #ffffff;
  border-bottom: 1px solid #edf2f7;
}

.fun100-mobile-wrapper .search-bar form {
  display: flex;
  gap: 8px;
  align-items: center;
}

.fun100-mobile-wrapper .search-bar input {
  flex: 1;
  height: 38px;
  padding: 0 14px;
  border: 1.5px solid #d0e1f9;
  border-radius: 20px;
  font-size: 13.5px;
  background-color: #f4f8fd;
  outline: none;
  color: #334155;
  transition: border-color 0.2s, background-color 0.2s;
}

.fun100-mobile-wrapper .search-bar input:focus {
  border-color: #0284c7;
  background-color: #ffffff;
}

.fun100-mobile-wrapper .search-bar button {
  height: 38px;
  padding: 0 18px;
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
  color: #ffffff;
  border: none;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
}

/* 4. 全站共用抽屜選單 (mobile-nav) */
.fun100-mobile-wrapper .mobile-nav {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  background: #1e293b;
  padding: 0 12px;
}

.fun100-mobile-wrapper .mobile-nav.open {
  max-height: 1500px;
  padding: 14px 12px 20px;
}

.fun100-mobile-wrapper .mobile-nav .category-title {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #94a3b8;
  margin: 14px 4px 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 4px;
}

.fun100-mobile-wrapper .mobile-nav .category-title:first-child {
  margin-top: 2px;
}

.fun100-mobile-wrapper .mobile-nav-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.fun100-mobile-wrapper .mobile-nav a {
  background: #334155;
  color: #f1f5f9;
  text-align: center;
  padding: 8px 4px;
  border-radius: 6px;
  font-size: 12.5px;
  transition: background-color 0.2s;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.fun100-mobile-wrapper .mobile-nav a:hover,
.fun100-mobile-wrapper .mobile-nav a:active {
  background: #475569;
}

.fun100-mobile-wrapper .mobile-nav a.active {
  background: #0284c7 !important;
  color: #ffffff !important;
  font-weight: 700;
  box-shadow: 0 2px 6px rgba(2, 132, 199, 0.4);
}

/* 5. 快捷主題分類膠囊列 & 鄉鎮滑動列 */
.fun100-mobile-wrapper .theme-chip-bar {
  background: #ffffff;
  padding: 8px 10px 6px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-bottom: 1px solid #f1f5f9;
}

.fun100-mobile-wrapper .theme-chip-bar::-webkit-scrollbar {
  display: none;
}

.fun100-mobile-wrapper .theme-chip-list {
  display: flex;
  gap: 8px;
  width: max-content;
}

.fun100-mobile-wrapper .theme-chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 5px 12px;
  border-radius: 16px;
  font-size: 12.5px;
  font-weight: 600;
  white-space: nowrap;
  background: #f8fafc;
  color: #334155;
  border: 1px solid #e2e8f0;
  transition: all 0.2s;
}

.fun100-mobile-wrapper .theme-chip.active {
  background: #0284c7;
  color: #ffffff;
  border-color: #0284c7;
  box-shadow: 0 2px 6px rgba(2, 132, 199, 0.3);
}

.fun100-mobile-wrapper .quick-filter {
  display: flex;
  overflow-x: auto;
  gap: 6px;
  padding: 6px 10px 8px;
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
  -webkit-overflow-scrolling: touch;
}

.fun100-mobile-wrapper .quick-filter::-webkit-scrollbar {
  display: none;
}

.fun100-mobile-wrapper .quick-filter a {
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 12px;
  white-space: nowrap;
  background: #ffffff;
  color: #475569;
  border: 1px solid #cbd5e1;
}

/* ============================================================
   6. 內頁主容器與標題裝飾列 (Inner Content & Title Bar)
   ============================================================ */
.fun100-mobile-wrapper .inner-container {
  max-width: 640px;
  margin: 0 auto;
  padding: 12px 10px 24px;
}

.fun100-mobile-wrapper .inner-title-bar {
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
  border-radius: 12px;
  padding: 14px 16px;
  color: #ffffff;
  margin-bottom: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 3px 10px rgba(2, 132, 199, 0.22);
}

.fun100-mobile-wrapper .inner-title-main h1 {
  font-size: 18px;
  font-weight: 800;
  margin: 0;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.5px;
}

.fun100-mobile-wrapper .inner-title-main .subtitle {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.88);
  margin-top: 3px;
  margin-bottom: 0;
}

.fun100-mobile-wrapper .inner-count-badge {
  font-size: 12px;
  background: rgba(255, 255, 255, 0.22);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  padding: 4px 10px;
  border-radius: 12px;
  font-weight: 600;
  white-space: nowrap;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

/* ============================================================
   7. 部落客推薦卡片流 (Zero-Crop 鐵則)
   ============================================================ */
.fun100-mobile-wrapper .inner-post-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fun100-mobile-wrapper .inner-post-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  border: 1px solid #e2e8f0;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: block;
}

.fun100-mobile-wrapper .inner-post-card:active {
  transform: scale(0.99);
}

/* 縮圖區 (Zero-Crop 保持原始比例不裁切) */
.fun100-mobile-wrapper .inner-card-thumb-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #0f172a;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

@supports not (aspect-ratio: 16 / 9) {
  .fun100-mobile-wrapper .inner-card-thumb-wrap {
    height: 190px;
  }
}

.fun100-mobile-wrapper .inner-card-thumb-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* Zero-Crop 鐵則 */
  display: block;
  background: #0f172a;
}

.fun100-mobile-wrapper .inner-card-body {
  padding: 12px 14px 12px;
}

.fun100-mobile-wrapper .inner-card-title {
  font-size: 15.5px;
  font-weight: 700;
  line-height: 1.45;
  color: #1e293b;
  margin-bottom: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.fun100-mobile-wrapper .inner-card-desc {
  font-size: 13px;
  color: #64748b;
  line-height: 1.5;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.fun100-mobile-wrapper .inner-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: #64748b;
  border-top: 1px dashed #e2e8f0;
  padding-top: 8px;
  margin-top: 4px;
}

.fun100-mobile-wrapper .inner-card-meta .meta-author {
  color: #0284c7;
  font-weight: 600;
}

.fun100-mobile-wrapper .inner-card-meta .meta-hits {
  background: #f1f5f9;
  color: #475569;
  padding: 2px 8px;
  border-radius: 10px;
  font-size: 11.5px;
}

/* ============================================================
   8. 行動版觸控分頁器 (Mobile Pagination)
   ============================================================ */
.fun100-mobile-wrapper .inner-pagination {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  border: 1px solid #e2e8f0;
  margin-top: 14px;
  margin-bottom: 18px;
}

.fun100-mobile-wrapper .page-status-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  font-size: 13px;
  color: #475569;
}

.fun100-mobile-wrapper .page-select {
  padding: 5px 10px;
  border: 1.5px solid #cbd5e1;
  border-radius: 8px;
  font-size: 13px;
  color: #1e293b;
  background: #f8fafc;
  outline: none;
}

.fun100-mobile-wrapper .page-btn-row {
  display: flex;
  gap: 8px;
  justify-content: center;
}

.fun100-mobile-wrapper .page-btn {
  flex: 1;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 13.5px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
}

.fun100-mobile-wrapper .page-btn.active-action {
  background: #0284c7;
  color: #ffffff;
  box-shadow: 0 2px 6px rgba(2, 132, 199, 0.3);
}

.fun100-mobile-wrapper .page-btn.secondary {
  background: #f1f5f9;
  color: #334155;
  border: 1px solid #e2e8f0;
}

.fun100-mobile-wrapper .page-btn.disabled {
  background: #f8fafc;
  color: #cbd5e1;
  border: 1px solid #f1f5f9;
  pointer-events: none;
}

/* 9. 行動版專屬 toTop 按鈕 (與首頁完全相同的 top.png 圖示) */
.fun100-mobile-wrapper .mobile-to-top {
  position: fixed;
  bottom: 24px;
  right: 16px;
  width: 48px;
  height: 48px;
  background: url("../img/top.png") no-repeat center center;
  background-size: contain;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.2s ease;
  transform: translateY(12px);
  -webkit-tap-highlight-color: transparent;
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.28));
  display: block;
  cursor: pointer;
}

.fun100-mobile-wrapper .mobile-to-top.show {
  opacity: 0.95;
  visibility: visible;
  transform: translateY(0);
}

.fun100-mobile-wrapper .mobile-to-top:active {
  transform: scale(0.92);
  opacity: 1;
}

/* ============================================================
   10. 包棟專區 (overall.php) 專屬樣式
   ============================================================ */
.fun100-mobile-wrapper .overall-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 20px;
}

.fun100-mobile-wrapper .overall-card {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 6px;
  overflow: hidden;
  display: block;
  text-decoration: none;
  transition: transform 0.15s ease, opacity 0.15s ease;
}

.fun100-mobile-wrapper .overall-card:active {
  transform: scale(0.97);
  opacity: 0.85;
}

.fun100-mobile-wrapper .overall-card img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
  object-fit: contain;
}

.fun100-mobile-wrapper .overall-thumb-wrap {
  display: contents;
}

.fun100-mobile-wrapper .overall-card-name {
  display: none !important;
}

/* 包棟推薦文字捷徑區 */
.fun100-mobile-wrapper .overall-text-section {
  background: #ffffff;
  border-radius: 12px;
  padding: 16px 14px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  border: 1px solid #e2e8f0;
  margin-bottom: 20px;
}

.fun100-mobile-wrapper .overall-section-head {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 15.5px;
  font-weight: 800;
  color: #0369a1;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid #e0f2fe;
}

.fun100-mobile-wrapper .overall-text-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.fun100-mobile-wrapper .overall-text-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 8px 10px;
  font-size: 13px;
  font-weight: 600;
  color: #334155;
  text-decoration: none;
  transition: background-color 0.2s, border-color 0.2s;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.fun100-mobile-wrapper .overall-text-pill:hover,
.fun100-mobile-wrapper .overall-text-pill:active {
  background: #e0f2fe;
  border-color: #38bdf8;
  color: #0284c7;
}

.fun100-mobile-wrapper .overall-text-pill span {
  font-size: 12px;
}

/* ============================================================
   11. 推薦行程 (travel.php) 專屬樣式
   ============================================================ */
.fun100-mobile-wrapper .travel-card-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

.fun100-mobile-wrapper .travel-card {
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.fun100-mobile-wrapper .travel-card-media {
  display: block;
  background: #f8fafc;
}

.fun100-mobile-wrapper .travel-card-media img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.fun100-mobile-wrapper .travel-card-body {
  padding: 14px;
}

.fun100-mobile-wrapper .travel-card-title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 10px;
}

.fun100-mobile-wrapper .travel-card-title a {
  color: #0f172a;
  text-decoration: none;
}

.fun100-mobile-wrapper .travel-pkg-list {
  list-style: none;
  padding: 0;
  margin: 0 0 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.fun100-mobile-wrapper .travel-pkg-list li {
  font-size: 13px;
  line-height: 1.5;
  color: #334155;
  display: flex;
  gap: 6px;
}

.fun100-mobile-wrapper .travel-pkg-list .bullet {
  color: #0284c7;
  font-weight: 800;
}

.fun100-mobile-wrapper .travel-card-contact {
  font-size: 12.5px;
  color: #64748b;
  margin-bottom: 12px;
  padding: 8px 10px;
  background: #f8fafc;
  border-radius: 6px;
  border-left: 3px solid #0284c7;
}

.fun100-mobile-wrapper .travel-card-actions {
  display: flex;
  gap: 8px;
}

.fun100-mobile-wrapper .travel-btn-call {
  flex: 1.2;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #10b981;
  color: #ffffff;
  border-radius: 8px;
  font-size: 13.5px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 2px 6px rgba(16, 185, 129, 0.3);
}

.fun100-mobile-wrapper .travel-btn-detail {
  flex: 0.8;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #f1f5f9;
  color: #334155;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid #e2e8f0;
}

/* ============================================================
   12. 熱門景點 (play.php) 專屬樣式
   ============================================================ */
.fun100-mobile-wrapper .play-towns-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
}

.fun100-mobile-wrapper .play-town-card {
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  padding: 14px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.fun100-mobile-wrapper .play-town-header {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1.5px solid #f1f5f9;
}

.fun100-mobile-wrapper .play-town-name {
  font-size: 15.5px;
  font-weight: 800;
  color: #0369a1;
  margin: 0;
  flex: 1;
}

.fun100-mobile-wrapper .play-town-count {
  font-size: 11.5px;
  font-weight: 600;
  color: #64748b;
  background: #f1f5f9;
  padding: 2px 8px;
  border-radius: 12px;
}

.fun100-mobile-wrapper .play-spots-flow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
}

.fun100-mobile-wrapper .spot-pill {
  background: #f8fafc;
  color: #1e293b;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  padding: 4px 8px;
  font-size: 12.5px;
  font-weight: 600;
}

.fun100-mobile-wrapper .spot-arrow {
  color: #0284c7;
  font-size: 11px;
  font-weight: 800;
}

/* ============================================================
   13. 宜蘭美食 (food.php) 專屬樣式
   ============================================================ */
.fun100-mobile-wrapper .food-news-section {
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  padding: 14px;
  margin-bottom: 16px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.fun100-mobile-wrapper .food-section-head {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  font-weight: 800;
  color: #b91c1c;
  margin-bottom: 10px;
  padding-bottom: 6px;
  border-bottom: 1.5px solid #fee2e2;
}

.fun100-mobile-wrapper .food-more-link {
  margin-left: auto;
  font-size: 12.5px;
  color: #0284c7;
  text-decoration: none;
  font-weight: 600;
}

.fun100-mobile-wrapper .food-news-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.fun100-mobile-wrapper .food-news-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  border-bottom: 1px dashed #f1f5f9;
  text-decoration: none;
}

.fun100-mobile-wrapper .food-news-item:last-child {
  border-bottom: none;
}

.fun100-mobile-wrapper .news-badge {
  background: #ef4444;
  color: #ffffff;
  font-size: 10px;
  font-weight: 800;
  padding: 2px 5px;
  border-radius: 4px;
}

.fun100-mobile-wrapper .news-title {
  font-size: 13px;
  color: #1e293b;
  font-weight: 600;
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.fun100-mobile-wrapper .news-date {
  font-size: 11.5px;
  color: #94a3b8;
  white-space: nowrap;
}

.fun100-mobile-wrapper .food-guides-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 16px;
}

.fun100-mobile-wrapper .food-town-nav-bar {
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  padding: 12px;
  margin-bottom: 18px;
}

.fun100-mobile-wrapper .food-town-nav-title {
  font-size: 13px;
  font-weight: 700;
  color: #334155;
  margin-bottom: 8px;
}

.fun100-mobile-wrapper .food-town-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.fun100-mobile-wrapper .food-town-pill {
  display: inline-block;
  background: #f1f5f9;
  color: #334155;
  border-radius: 16px;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.15s;
}

.fun100-mobile-wrapper .food-town-pill:hover,
.fun100-mobile-wrapper .food-town-pill:active {
  background: #0284c7;
  color: #ffffff;
}

.fun100-mobile-wrapper .food-towns-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 24px;
}

.fun100-mobile-wrapper .food-town-group-title {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
  padding-bottom: 6px;
  border-bottom: 2px solid #e0f2fe;
}

.fun100-mobile-wrapper .food-town-group-title h2 {
  font-size: 16px;
  font-weight: 800;
  color: #0369a1;
  margin: 0;
  flex: 1;
}

.fun100-mobile-wrapper .food-shops-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fun100-mobile-wrapper .food-shop-card {
  background: #ffffff;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  padding: 12px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}

.fun100-mobile-wrapper .food-shop-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}

.fun100-mobile-wrapper .food-shop-name {
  font-size: 15px;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
}

.fun100-mobile-wrapper .food-shop-tel-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #ecfdf5;
  color: #059669;
  border: 1px solid #a7f3d0;
  border-radius: 6px;
  padding: 3px 8px;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}

.fun100-mobile-wrapper .food-shop-note {
  font-size: 12.5px;
  line-height: 1.5;
  color: #d97706;
  margin-bottom: 6px;
  background: #fffbeb;
  padding: 4px 8px;
  border-radius: 6px;
}

.fun100-mobile-wrapper .food-shop-note .note-label {
  font-weight: 700;
}

.fun100-mobile-wrapper .food-shop-addr {
  font-size: 12px;
  color: #64748b;
  display: flex;
  align-items: center;
  gap: 4px;
}

.fun100-mobile-wrapper .addr-link {
  color: #0284c7;
  text-decoration: none;
}

/* ============================================================
   12. 網站服務與條款 樣式庫 (關於我們、條款、客服、刊登、提案)
   ============================================================ */

/* 文章卡片 (關於我們、版權聲明、隱私權保護宣告) */
.fun100-mobile-wrapper .inner-article-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 18px 16px 20px;
  margin-bottom: 16px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border: 1px solid #e2e8f0;
}

.fun100-mobile-wrapper .inner-article-card h2,
.fun100-mobile-wrapper .inner-article-card .article-section-title {
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
  margin: 18px 0 10px;
  padding-bottom: 6px;
  border-bottom: 2px solid #e2e8f0;
  display: flex;
  align-items: center;
  gap: 6px;
}

.fun100-mobile-wrapper .inner-article-card h2:first-child,
.fun100-mobile-wrapper .inner-article-card .article-section-title:first-child {
  margin-top: 0;
}

.fun100-mobile-wrapper .inner-article-card p {
  font-size: 14px;
  line-height: 1.75;
  color: #334155;
  margin: 0 0 12px;
}

.fun100-mobile-wrapper .inner-article-card .highlight-box {
  background: #f0fdf4;
  border-left: 4px solid #16a34a;
  padding: 12px 14px;
  border-radius: 6px;
  margin: 12px 0 16px;
}

.fun100-mobile-wrapper .inner-article-card .highlight-box-title {
  font-weight: 700;
  color: #15803d;
  font-size: 14.5px;
  margin-bottom: 6px;
}

.fun100-mobile-wrapper .inner-article-card ol,
.fun100-mobile-wrapper .inner-article-card ul {
  margin: 0 0 14px;
  padding-left: 20px;
  color: #334155;
  font-size: 14px;
  line-height: 1.7;
}

.fun100-mobile-wrapper .inner-article-card li {
  margin-bottom: 8px;
}

.fun100-mobile-wrapper .inner-article-card li strong {
  color: #0f172a;
}

/* 互動表單卡片 (客服中心、廣告刊登、合作提案) */
.fun100-mobile-wrapper .inner-form-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 20px 16px 24px;
  margin-bottom: 16px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06);
  border: 1px solid #e2e8f0;
}

.fun100-mobile-wrapper .form-card-header {
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid #f1f5f9;
}

.fun100-mobile-wrapper .form-card-title {
  font-size: 17px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 4px;
}

.fun100-mobile-wrapper .form-card-subtitle {
  font-size: 13px;
  color: #64748b;
  margin: 0;
}

.fun100-mobile-wrapper .form-group {
  margin-bottom: 16px;
}

.fun100-mobile-wrapper .form-label {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 6px;
}

.fun100-mobile-wrapper .form-label .required {
  color: #dc2626;
  font-weight: 700;
  margin-right: 2px;
}

.fun100-mobile-wrapper .form-control {
  width: 100%;
  padding: 10px 14px;
  font-size: 14px;
  line-height: 1.5;
  color: #1e293b;
  background-color: #f8fafc;
  border: 1.5px solid #cbd5e1;
  border-radius: 8px;
  outline: none;
  transition: border-color 0.2s, background-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
}

.fun100-mobile-wrapper .form-control:focus {
  border-color: #0284c7;
  background-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.15);
}

.fun100-mobile-wrapper select.form-control {
  appearance: auto;
  -webkit-appearance: auto;
}

.fun100-mobile-wrapper textarea.form-control {
  resize: vertical;
  min-height: 110px;
}

.fun100-mobile-wrapper .form-row-2 {
  display: flex;
  gap: 10px;
}

.fun100-mobile-wrapper .form-row-2 > * {
  flex: 1;
}

.fun100-mobile-wrapper .form-turnstile-container {
  display: flex;
  justify-content: center;
  margin: 16px 0;
  min-height: 65px;
}

.fun100-mobile-wrapper .form-btn-group {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.fun100-mobile-wrapper .form-submit-btn {
  flex: 1;
  height: 46px;
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
  color: #ffffff;
  border: none;
  border-radius: 23px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.35);
  transition: all 0.2s;
}

.fun100-mobile-wrapper .form-submit-btn:active {
  transform: scale(0.98);
  box-shadow: 0 2px 6px rgba(2, 132, 199, 0.25);
}

.fun100-mobile-wrapper .form-reset-btn {
  height: 46px;
  padding: 0 22px;
  background: #f1f5f9;
  color: #64748b;
  border: 1px solid #cbd5e1;
  border-radius: 23px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.fun100-mobile-wrapper .form-reset-btn:active {
  background: #e2e8f0;
}

/* 廣告刊登專屬 Zero-Crop DM 圖片 */
.fun100-mobile-wrapper .order-dm-banner {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 16px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
  border: 1px solid #e2e8f0;
}

.fun100-mobile-wrapper .order-dm-banner img {
  width: 100% !important;
  height: auto !important;
  display: block;
  object-fit: contain;
}

/* ============================================================
   13. 鄉鎮區專屬樣式庫 (12 Townships RWD Style System)
   ============================================================ */

/* 頂部快速切換晶片高亮 */
.fun100-mobile-wrapper .quick-filter a.active {
  background: #0284c7 !important;
  color: #ffffff !important;
  border-color: #0284c7 !important;
  font-weight: 700;
  box-shadow: 0 2px 6px rgba(2, 132, 199, 0.3);
}

/* 鄉鎮橫幅形象卡片 (Zero-Crop 原比例) */
.fun100-mobile-wrapper .town-banner-card {
  width: 100%;
  margin-bottom: 14px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
  background: #ffffff;
  border: 1px solid #e2e8f0;
}

.fun100-mobile-wrapper .town-banner-card img {
  width: 100% !important;
  height: auto !important;
  display: block;
  object-fit: contain;
}

/* A 區焦點民宿輪播/滑動區 */
.fun100-mobile-wrapper .town-focus-section {
  margin-bottom: 18px;
}

.fun100-mobile-wrapper .town-focus-scroll {
  display: flex;
  overflow-x: auto;
  gap: 12px;
  padding: 4px 2px 12px;
  -webkit-overflow-scrolling: touch;
}

.fun100-mobile-wrapper .town-focus-scroll::-webkit-scrollbar {
  height: 4px;
}

.fun100-mobile-wrapper .town-focus-scroll::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}

.fun100-mobile-wrapper .town-focus-card {
  flex: 0 0 260px;
  max-width: 80vw;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  border: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  transition: transform 0.15s;
}

.fun100-mobile-wrapper .town-focus-card:active {
  transform: scale(0.98);
}

.fun100-mobile-wrapper .town-focus-img {
  width: 100%;
  background: #f1f5f9;
  overflow: hidden;
}

.fun100-mobile-wrapper .town-focus-img img {
  width: 100% !important;
  height: auto !important;
  display: block;
  object-fit: contain;
}

.fun100-mobile-wrapper .town-focus-title {
  display: none !important;
  padding: 8px 10px;
  font-size: 14px;
  font-weight: 700;
  color: #0f172a;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
  background: #fafafa;
  border-top: 1px solid #f1f5f9;
}

/* 鄉鎮精選推薦民宿卡片網格 (50%/50% 嚴格等寬) */
.fun100-mobile-wrapper .town-minsu-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 20px;
}

.fun100-mobile-wrapper .town-minsu-card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  border: 1px solid #e2e8f0;
  transition: transform 0.15s, box-shadow 0.15s;
  min-width: 0;
  width: 100%;
  box-sizing: border-box;
}

.fun100-mobile-wrapper .town-minsu-card:active {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.15);
}

.fun100-mobile-wrapper .town-minsu-img {
  width: 100%;
  background: #f8fafc;
  position: relative;
  overflow: hidden;
}

.fun100-mobile-wrapper .town-minsu-img img {
  width: 100% !important;
  height: auto !important;
  display: block;
  object-fit: contain;
}

.fun100-mobile-wrapper .town-minsu-name {
  display: none !important;
  padding: 8px 6px;
  font-size: 13px;
  font-weight: 700;
  color: #1e293b;
  text-align: center;
  line-height: 1.35;
  white-space: normal;
  word-break: break-word;
  background: #ffffff;
  border-top: 1px solid #f1f5f9;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 純文字推薦民宿膠囊名冊 */
.fun100-mobile-wrapper .town-text-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 20px;
}

.fun100-mobile-wrapper .town-text-pill {
  display: flex;
  align-items: center;
  padding: 10px 12px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  color: #334155;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  transition: all 0.15s;
  min-width: 0;
  word-break: break-word;
}

.fun100-mobile-wrapper .town-text-pill::before {
  content: "🏡";
  margin-right: 6px;
  font-size: 13px;
  flex-shrink: 0;
}

.fun100-mobile-wrapper .town-text-pill:active {
  background: #f0f9ff;
  border-color: #38bdf8;
  color: #0284c7;
}

/* 空白鄉鎮提示卡片 (無民宿時) */
.fun100-mobile-wrapper .town-empty-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 24px 18px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border: 1px dashed #cbd5e1;
  margin-bottom: 20px;
}

.fun100-mobile-wrapper .town-empty-card .empty-icon {
  font-size: 40px;
  margin-bottom: 10px;
}

.fun100-mobile-wrapper .town-empty-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 8px;
}

.fun100-mobile-wrapper .town-empty-card p {
  font-size: 13px;
  color: #64748b;
  line-height: 1.5;
  margin: 0 0 16px;
}

.fun100-mobile-wrapper .town-empty-card .btn-group {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.fun100-mobile-wrapper .town-empty-card .btn-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  color: #ffffff;
}

.fun100-mobile-wrapper .town-empty-card .btn-contact.phone {
  background: #0d9488;
}

.fun100-mobile-wrapper .town-empty-card .btn-contact.line {
  background: #00b900;
}

/* 鄉鎮最新快訊列表 */
.fun100-mobile-wrapper .town-news-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  border: 1px solid #e2e8f0;
  margin-bottom: 20px;
}

.fun100-mobile-wrapper .town-news-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px dashed #e2e8f0;
  text-decoration: none;
  color: #334155;
  font-size: 13px;
}

.fun100-mobile-wrapper .town-news-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.fun100-mobile-wrapper .town-news-item .news-title {
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-right: 8px;
}

.fun100-mobile-wrapper .town-news-item .news-date {
  font-size: 11px;
  color: #94a3b8;
  white-space: nowrap;
}

/* ============================================================
   14. 網站製作優惠專屬樣式庫 (Design Showcase RWD System)
   ============================================================ */

/* 分類切換頁籤列 (橫向滑動) */
.fun100-mobile-wrapper .design-tab-bar {
  display: flex;
  overflow-x: auto;
  gap: 8px;
  padding: 4px 2px 14px;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 12px;
}

.fun100-mobile-wrapper .design-tab-bar::-webkit-scrollbar {
  height: 4px;
}

.fun100-mobile-wrapper .design-tab-bar::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}

.fun100-mobile-wrapper .design-tab-btn {
  flex: 0 0 auto;
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  background: #ffffff;
  color: #475569;
  border: 1px solid #cbd5e1;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 5px;
}

.fun100-mobile-wrapper .design-tab-btn .badge {
  background: #f1f5f9;
  color: #64748b;
  font-size: 11px;
  padding: 2px 6px;
  border-radius: 10px;
}

.fun100-mobile-wrapper .design-tab-btn.active {
  background: #0284c7;
  color: #ffffff;
  border-color: #0284c7;
  box-shadow: 0 3px 8px rgba(2, 132, 199, 0.3);
}

.fun100-mobile-wrapper .design-tab-btn.active .badge {
  background: rgba(255, 255, 255, 0.25);
  color: #ffffff;
}

/* 案例卡片列表 (單欄精緻卡片流) */
.fun100-mobile-wrapper .design-case-list {
  display: none;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
}

.fun100-mobile-wrapper .design-case-list.active {
  display: flex;
}

.fun100-mobile-wrapper .design-case-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  transition: transform 0.15s, box-shadow 0.15s;
}

.fun100-mobile-wrapper .design-case-card:active {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.15);
}

.fun100-mobile-wrapper .design-case-img-box {
  width: 100%;
  background: #f8fafc;
  overflow: hidden;
  border-bottom: 1px solid #f1f5f9;
}

.fun100-mobile-wrapper .design-case-img-box img {
  width: 100% !important;
  height: auto !important;
  display: block;
  object-fit: contain;
}

.fun100-mobile-wrapper .design-case-body {
  padding: 14px 14px 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.fun100-mobile-wrapper .design-case-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}

.fun100-mobile-wrapper .design-case-title {
  font-size: 15px;
  font-weight: 800;
  color: #0f172a;
  margin: 0;
  line-height: 1.35;
}

.fun100-mobile-wrapper .design-type-badge {
  font-size: 11px;
  font-weight: 700;
  color: #0284c7;
  background: #e0f2fe;
  padding: 3px 8px;
  border-radius: 6px;
  white-space: nowrap;
  flex-shrink: 0;
}

.fun100-mobile-wrapper .design-case-details {
  font-size: 12px;
  color: #64748b;
  line-height: 1.6;
  background: #f8fafc;
  padding: 8px 10px;
  border-radius: 8px;
  border-left: 3px solid #0284c7;
}

.fun100-mobile-wrapper .design-case-details div {
  margin-bottom: 2px;
}

.fun100-mobile-wrapper .design-case-details div:last-child {
  margin-bottom: 0;
}

.fun100-mobile-wrapper .design-case-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  padding: 8px 0;
  background: #f1f5f9;
  color: #0284c7;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid #e2e8f0;
  transition: all 0.2s;
}

.fun100-mobile-wrapper .design-case-btn:active {
  background: #0284c7;
  color: #ffffff;
  border-color: #0284c7;
}

/* ============================================================
   15. 民宿特惠專屬樣式庫 (作用於 .fun100-mobile-wrapper 下)
   ============================================================ */
.fun100-mobile-wrapper .guaranteed-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 14px;
}

.fun100-mobile-wrapper .guaranteed-card {
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  color: inherit;
}

.fun100-mobile-wrapper .guaranteed-card:active {
  transform: scale(0.99);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.fun100-mobile-wrapper .guaranteed-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.fun100-mobile-wrapper .guaranteed-date-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 600;
  color: #475569;
  background: #f1f5f9;
  padding: 3px 8px;
  border-radius: 6px;
}

.fun100-mobile-wrapper .guaranteed-tag-badge {
  font-size: 11px;
  font-weight: 700;
  color: #dc2626;
  background: #fee2e2;
  padding: 2px 7px;
  border-radius: 12px;
  letter-spacing: 0.3px;
}

.fun100-mobile-wrapper .guaranteed-card-title {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
  color: #0f172a;
  margin: 0 0 10px 0;
  word-break: break-word;
}

.fun100-mobile-wrapper .guaranteed-card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  padding: 9px 0;
  background: #f8fafc;
  color: #0284c7;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid #cbd5e1;
  transition: all 0.2s;
  margin-top: auto;
}

.fun100-mobile-wrapper .guaranteed-card-btn:active {
  background: #0284c7;
  color: #ffffff;
  border-color: #0284c7;
}

/* ============================================================
   16. 美食推薦消息專屬樣式庫 (作用於 .fun100-mobile-wrapper 下)
   ============================================================ */
.fun100-mobile-wrapper .food-more-nav-bar {
  margin-top: 10px;
  margin-bottom: 6px;
}

.fun100-mobile-wrapper .food-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: #fff7ed;
  color: #ea580c;
  border: 1px solid #fed7aa;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s;
}

.fun100-mobile-wrapper .food-back-btn:active {
  background: #ea580c;
  color: #ffffff;
}

.fun100-mobile-wrapper .food-more-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 12px;
}

.fun100-mobile-wrapper .food-more-card {
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  color: inherit;
}

.fun100-mobile-wrapper .food-more-card:active {
  transform: scale(0.99);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.fun100-mobile-wrapper .food-more-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.fun100-mobile-wrapper .food-more-date-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 600;
  color: #475569;
  background: #f1f5f9;
  padding: 3px 8px;
  border-radius: 6px;
}

.fun100-mobile-wrapper .food-more-tag-badge {
  font-size: 11px;
  font-weight: 700;
  color: #ea580c;
  background: #ffedd5;
  padding: 2px 8px;
  border-radius: 12px;
  letter-spacing: 0.3px;
}

.fun100-mobile-wrapper .food-more-card-title {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
  color: #0f172a;
  margin: 0 0 10px 0;
  word-break: break-word;
}

.fun100-mobile-wrapper .food-more-card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  padding: 9px 0;
  background: #f8fafc;
  color: #0284c7;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid #cbd5e1;
  transition: all 0.2s;
  margin-top: auto;
}

.fun100-mobile-wrapper .food-more-card-btn:active {
  background: #0284c7;
  color: #ffffff;
  border-color: #0284c7;
}

/* ============================================================
   17. 最新消息列表與內容頁專屬樣式庫 (作用於 .fun100-mobile-wrapper 下)
   ============================================================ */

/* 17.1 列表頁卡片流 */
.fun100-mobile-wrapper .news-card-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 14px;
}

.fun100-mobile-wrapper .news-card {
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  color: inherit;
}

.fun100-mobile-wrapper .news-card:active {
  transform: scale(0.99);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.fun100-mobile-wrapper .news-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.fun100-mobile-wrapper .news-date-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 600;
  color: #475569;
  background: #f1f5f9;
  padding: 3px 8px;
  border-radius: 6px;
}

.fun100-mobile-wrapper .news-tag-badge {
  font-size: 11px;
  font-weight: 700;
  color: #0284c7;
  background: #e0f2fe;
  padding: 2px 8px;
  border-radius: 12px;
  letter-spacing: 0.3px;
}

.fun100-mobile-wrapper .news-card-title {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
  color: #0f172a;
  margin: 0 0 10px 0;
  word-break: break-word;
}

.fun100-mobile-wrapper .news-card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  padding: 9px 0;
  background: #f8fafc;
  color: #0284c7;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid #cbd5e1;
  transition: all 0.2s;
  margin-top: auto;
}

.fun100-mobile-wrapper .news-card-btn:active {
  background: #0284c7;
  color: #ffffff;
  border-color: #0284c7;
}

/* 17.2 內容頁專屬樣式 (Detail View) */
.fun100-mobile-wrapper .news-detail-nav-bar {
  margin-top: 10px;
  margin-bottom: 12px;
}

.fun100-mobile-wrapper .news-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: #f0f9ff;
  color: #0284c7;
  border: 1px solid #bae6fd;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s;
}

.fun100-mobile-wrapper .news-back-btn:active {
  background: #0284c7;
  color: #ffffff;
}

.fun100-mobile-wrapper .news-detail-card {
  background: #ffffff;
  border-radius: 14px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  padding: 20px 16px;
  margin-bottom: 20px;
}

.fun100-mobile-wrapper .news-detail-title {
  font-size: 19px;
  font-weight: 800;
  line-height: 1.45;
  color: #0f172a;
  margin: 0 0 14px 0;
  word-break: break-word;
}

.fun100-mobile-wrapper .news-detail-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding-bottom: 14px;
  margin-bottom: 18px;
  border-bottom: 1px solid #f1f5f9;
}

.fun100-mobile-wrapper .news-detail-meta-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.fun100-mobile-wrapper .news-share-group {
  display: flex;
  align-items: center;
  gap: 6px;
}

.fun100-mobile-wrapper .news-share-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  border-radius: 14px;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  color: #ffffff;
  transition: opacity 0.2s;
}

.fun100-mobile-wrapper .news-share-btn.line {
  background: #06c755;
}

.fun100-mobile-wrapper .news-share-btn.fb {
  background: #1877f2;
}

.fun100-mobile-wrapper .news-share-btn:active {
  opacity: 0.85;
}

.fun100-mobile-wrapper .news-detail-body {
  font-size: 15.5px;
  line-height: 1.8;
  color: #334155;
  word-break: break-word;
}

.fun100-mobile-wrapper .news-detail-body p {
  margin-top: 0;
  margin-bottom: 16px;
}

.fun100-mobile-wrapper .news-detail-body img {
  max-width: 100% !important;
  height: auto !important;
  object-fit: contain;
  margin: 14px auto;
  display: block;
  border-radius: 8px;
}

.fun100-mobile-wrapper .news-detail-body table {
  width: 100% !important;
  max-width: 100% !important;
  border-collapse: collapse;
  margin: 14px 0;
}

.fun100-mobile-wrapper .news-detail-bottom-nav {
  display: flex;
  gap: 10px;
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid #f1f5f9;
}

.fun100-mobile-wrapper .news-detail-action-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 0;
  border-radius: 10px;
  font-size: 13.5px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s;
}

.fun100-mobile-wrapper .news-detail-action-btn.secondary {
  background: #f1f5f9;
  color: #475569;
  border: 1px solid #cbd5e1;
}

.fun100-mobile-wrapper .news-detail-action-btn.primary {
  background: #0284c7;
  color: #ffffff;
  border: 1px solid #0284c7;
}

.fun100-mobile-wrapper .news-detail-action-btn:active {
  transform: scale(0.98);
}




/* ============================================================
   18. 自由編輯頁面內容 (CKEditor 輸出自適應排版，如 play_2, play_3)
   ============================================================ */
.fun100-mobile-wrapper .page-content-wrapper {
  background: #ffffff;
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  font-size: 15px;
  line-height: 1.8;
  color: #334155;
  word-break: break-word;
}

.fun100-mobile-wrapper .page-content-wrapper p {
  margin-top: 0;
  margin-bottom: 14px;
}

.fun100-mobile-wrapper .page-content-wrapper img {
  max-width: 100% !important;
  height: auto !important;
  object-fit: contain;
  margin: 10px auto;
  display: block;
  border-radius: 6px;
}

.fun100-mobile-wrapper .page-content-wrapper table {
  width: 100% !important;
  max-width: 100% !important;
  border-collapse: collapse;
  margin: 12px 0;
  display: block;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.fun100-mobile-wrapper .page-content-wrapper td,
.fun100-mobile-wrapper .page-content-wrapper th {
  padding: 8px 10px;
  word-break: break-word;
}

/* ============================================================
   19. 推廣貼紙 (label.php) 專屬樣式
   ============================================================ */
.fun100-mobile-wrapper .label-preview-card {
  text-align: center;
  padding: 22px 16px;
}

.fun100-mobile-wrapper .label-badge-wrap {
  display: inline-block;
  padding: 12px;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  margin-bottom: 12px;
  transition: transform 0.15s ease;
}

.fun100-mobile-wrapper .label-badge-wrap:active {
  transform: scale(0.97);
}

.fun100-mobile-wrapper .label-badge-wrap img {
  width: 150px;
  height: 150px;
  display: block;
  margin: 0 auto;
}

.fun100-mobile-wrapper .label-info-tag {
  font-size: 13px;
  color: #64748b;
  margin-bottom: 12px;
}

.fun100-mobile-wrapper .label-code-textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 10px 12px;
  font-family: Consolas, Monaco, monospace;
  font-size: 12.5px;
  color: #1e293b;
  background: #f8fafc;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  resize: none;
  line-height: 1.5;
  margin-bottom: 10px;
}

.fun100-mobile-wrapper .label-copy-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  padding: 11px 16px;
  background: #0284c7;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: 14.5px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s ease;
}

.fun100-mobile-wrapper .label-copy-btn:active {
  background: #0369a1;
}

.fun100-mobile-wrapper .label-copy-btn.copied {
  background: #16a34a;
}
