@charset "utf-8";

/* ====================================================
   基礎：字體與縮放（原樣保留）
   ==================================================== */
@media only screen { html { font-size: 13px; } }
@media only screen and (min-width: 360px) and (max-width: 399px) { html { font-size: 15px; } }
@media only screen and (min-width: 400px) and (max-width: 479px) { html { font-size: 16px; } }
@media only screen and (min-width: 480px) and (max-width: 719px) { html { font-size: 20px; } }
@media only screen and (min-width: 720px) { html { font-size: 30px; } }

.grayColor { color: #949494; }

.wrapper a { color: #00a0e9; }
.wrapper a:hover { color: #00a0e9; }

.row { background-color: #fff; padding: 2%; border-top: 1px solid #d2d2d2; border-bottom: 1px solid #d2d2d2; margin-top: 0.33333rem; }
.row.rowA { padding: 0 0 2% 0; }
.row.rowA .mod_a .th_a { padding: 0 2%; }

.mod_z { margin-top: -2%; }
.mod_z .th_z { height: 2.53333rem; line-height: 2.53333rem; overflow: hidden; }
.mod_z .th_z .sMark { font-size: 1.06667rem; float: left; }
.mod_z .th_z .aMore { float: right; color: #00a0e3; font-size: 0.86667rem; }

/* ====================================================
   ✅ 詳情頁（手機版）樣式：只在 <768px 生效
   - 保留你原本的直式封面、margin-top:-9.2667rem 的疊法
   - 保留你原本的按鈕 float 寫法
   ==================================================== */
@media screen and (max-width: 767px) {

  .detailCon { height: 9.26667rem; padding-bottom: 0.33333rem; position: relative; }
  .detailCon .detailPic { width: 6.63333rem; height: 9.26667rem; overflow: hidden; position: relative; z-index: 30; }
  .detailCon .detailPic img { width: 6.63333rem; height: 9.26667rem; vertical-align: top; display: block; }

  .detailCon .detailIntro { position: relative; margin-top: -9.26667rem; z-index: 20; margin-left: 7.16667rem; height: 9.26667rem; }
  .detailCon .detailIntro span { display: block; line-height: 1.53333rem; height: 1.53333rem; overflow: hidden; font-size: 0.93333rem; }
  .detailCon .detailIntro span .emTit { float: left; }
  .detailCon .detailIntro span.sName { font-size: 1.2rem; line-height: 1.6rem; height: 1.6rem; margin-bottom: 0.33333rem; }
  .detailCon .detailIntro span.sDes a { display: inline-block; }
  .detailCon .detailIntro span.sDes em { display: inline-block; }
  .detailCon .detailIntro span.sDes em.emYellow { color: #ff6b50; }
  .detailCon .detailIntro span.sSource { padding: 0.13333rem 0; line-height: 1.33333rem; height: 1.33333rem; }
  .detailCon .detailIntro span.sSource img { width: 1.33333rem; height: 1.33333rem; vertical-align: middle; display: inline; float: left; padding-right: 0.33333rem; }

  .detailCon .detailIntro .pPlayBtn { padding-top: 0.33333rem; }

  .detailCon .detailIntro .pPlayBtn .playBtn_HD,
  .detailCon .detailIntro .pPlayBtn .playDownLoadBtn,
  .detailCon .detailIntro .pPlayBtn .noPlayBtn {
    float: left;
    -webkit-border-radius: 0.2rem;
    -moz-border-radius: 0.2rem;
    border-radius: 0.2rem;
    line-height: 2.33333rem;
    height: 2.33333rem;
    font-size: 0.93333rem;
    margin-right: 0.66667rem;
    display: inline;
    color: #fff;
    padding: 0 0.66667rem 0 1.66667rem;
    position: relative;
  }

  .detailCon .detailIntro .pPlayBtn .playBtn_HD:before,
  .detailCon .detailIntro .pPlayBtn .playDownLoadBtn:before,
  .detailCon .detailIntro .pPlayBtn .noPlayBtn:before {
    content: "";
    border-color: transparent transparent transparent #fff;
    border-width: 0.5rem;
    border-style: solid;
    height: 0;
    width: 0;
    overflow: hidden;
    position: absolute;
    top: 0.7rem;
    left: 0.66667rem;
  }

  .detailCon .detailIntro .pPlayBtn .playBtn_HD:hover,
  .detailCon .detailIntro .pPlayBtn .playDownLoadBtn:hover,
  .detailCon .detailIntro .pPlayBtn .noPlayBtn:hover { color: #fff; }

  .detailCon .detailIntro .pPlayBtn .playBtn_HD { background-color: #fc750b; }
  .detailCon .detailIntro .pPlayBtn .noPlayBtn { background-color: #b5b5b5; padding: 0 0.66667rem; }
  .detailCon .detailIntro .pPlayBtn .noPlayBtn:before { display: none; }
  .detailCon .detailIntro .pPlayBtn .playDownLoadBtn { background-color: #12a7e5; padding: 0 0.66667rem; }
  .detailCon .detailIntro .pPlayBtn .playDownLoadBtn:before { display: none; }
}

/* ====================================================
   ✅ 詳情頁（桌面/平板 >=768px）新樣式
   - 你的需求：封面橫式 cover00（800x538，contain 不裁切）
   - 佈局 L3：左 55% / 右 45%
   - 兩顆按鈕永遠同一排，完全對齊
   ==================================================== */
@media screen and (min-width: 768px) {

  /* 桌面端：避免 720px 起 html=30px 的 rem 放大造成桌面爆炸
     直接把 detail 區塊用 px 控制更穩 */
  .detailCon { 
    display: grid;
    grid-template-columns: 55% 45%;
    gap: 24px;
    align-items: start;
    height: auto;
    padding-bottom: 0;
    position: relative;
  }

  .detailCon .detailPic {
    width: 100%;
    height: auto;
  }

  .detailCon .detailPic picture { display: block; width: 100%; }

  .detailCon .detailPic img {
    width: 100%;
    height: auto;
    aspect-ratio: 800 / 538;
    object-fit: contain;
    background: #0b0b0b;
    border-radius: 10px;
    display: block;
  }

  .detailCon .detailIntro {
    margin: 0;
    height: auto;
    position: relative;
    z-index: 20;
  }

  .detailCon .detailIntro span {
    display: block;
    height: auto;
    overflow: visible;
    line-height: 30px;
    font-size: 16px;
  }

  .detailCon .detailIntro span.sSource {
    white-space: normal;
    line-height: 30px;
  }

  /* ✅ 桌面端按鈕：不用 float，直接 grid/兩欄 */
  .detailCon .detailIntro .pPlayBtn {
    padding-top: 14px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 6px;
  }

  .detailCon .detailIntro .pPlayBtn .playBtn_HD,
  .detailCon .detailIntro .pPlayBtn .playDownLoadBtn,
  .detailCon .detailIntro .pPlayBtn .noPlayBtn {
    float: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;

    height: 52px;
    line-height: 52px;
    font-size: 17px;
    font-weight: 700;
    color: #fff;

    border-radius: 12px;
    margin: 0;
    box-sizing: border-box;
    white-space: nowrap;
    position: relative;

    /* 左側 icon 占位一致 */
    padding: 0 18px 0 54px;
  }

  /* 播放：保留三角形，但改成垂直居中 */
  .detailCon .detailIntro .pPlayBtn .playBtn_HD:before {
    content: "";
    border-color: transparent transparent transparent #fff;
    border-width: 0.5rem;
    border-style: solid;
    height: 0;
    width: 0;
    overflow: hidden;
    position: absolute;
    left: 22px;
    top: 50%;
    transform: translateY(-50%);
  }

  /* 下載   鈕：原本會把 :before 關掉，桌面改為透明占位，讓字對齊 */
  .detailCon .detailIntro .pPlayBtn .playDownLoadBtn:before,
  .detailCon .detailIntro .pPlayBtn .noPlayBtn:before {
    content: "";
    border-color: transparent transparent transparent #fff;
    border-width: 0.5rem;
    border-style: solid;
    height: 0;
    width: 0;
    overflow: hidden;
    position: absolute;
    left: 22px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0; /* 透明占位 */
  }

  .detailCon .detailIntro .pPlayBtn .playBtn_HD { background-color: #fc750b; }
  .detailCon .detailIntro .pPlayBtn .playDownLoadBtn { background-color: #12a7e5; }
}

/* ====================================================
   以下：你原本其他區塊樣式（原樣保留）
   （我這裡開始照你貼的內容繼續放）
   ==================================================== */

.numTabListCon { padding: 3.33333rem 0 0 0; position: relative; }
.numTabListCon .aMoreArrow { position: relative; height: 2.66667rem; overflow-x: hidden; display: block; }
.numTabListCon .aMoreArrow:after { content: ""; font-size: 0; line-height: 0; border: solid #949494; vertical-align: top; zoom: 1; -moz-transform: rotate(45deg); -o-transform: rotate(45deg); -webkit-transform: rotate(45deg); -ms-transform: rotate(45deg); transform: rotate(45deg); width: 0.9rem; height: 0.9rem; border-width: 0 0.1rem 0.1rem 0; border-style: solid; overflow: hidden; position: absolute; top: 0.66667rem; left: 50%; z-index: 10; margin-left: -0.5rem; }

.tabList { height: 3.33333rem; overflow: hidden; background-color: #fff; line-height: 3.33333rem; position: absolute; top: 0; left: 0; padding: 0 2%; width: 96%; z-index: 50; }
.tabList .con { width: 3333.3rem; }
.tabList .pTab { float: left; }
.tabList .pTab a { float: left; margin-right: 1.66667rem; color: #666; font-size: 1.06667rem; }
.tabList .pTab a.cur { text-decoration: underline; color: #00a0e9; }

.numList { padding: 0 2%; overflow: hidden; }
.numList span { width: 18.4%; overflow: hidden; float: left; margin: 0 2% 2% 0; }
.numList span:nth-child(5n+5) { margin-right: 0; }
.numList span a { display: block; border: 1px solid #cccccc; line-height: 2.46667rem; height: 2.46667rem; text-align: center; font-size: 1.06667rem; color: #333; }
.numList span a:hover { color: #333; }
.numList span a.cur { background-color: #00a0e3; border-color: #3c9dfd; color: #fff; }

.pIntroTxt { font-size: 1rem; line-height: 1.4rem; text-indent: 2rem; color: #666; }
.pIntroTxt.pIntroTxtMore { padding-bottom: 1.56667rem; position: relative; height: 4.2rem; overflow: hidden; }
.pIntroTxt.pIntroTxtMore:before { content: ""; height: 1.6rem; position: absolute; width: 100%; left: 0; bottom: 0; background-color: #fff; overflow: hidden; z-index: 5; }
.pIntroTxt.pIntroTxtMore:after { content: ""; font-size: 0; line-height: 0; border: solid #949494; vertical-align: top; zoom: 1; -moz-transform: rotate(45deg); -o-transform: rotate(45deg); -webkit-transform: rotate(45deg); -ms-transform: rotate(45deg); transform: rotate(45deg); width: 0.9rem; height: 0.9rem; border-width: 0 0.1rem 0.1rem 0; border-style: solid; overflow: hidden; position: absolute; top: 4.33333rem; left: 50%; z-index: 10; margin-left: -0.5rem; }
.pIntroTxt.pIntroTxtMore.pShowAll { height: auto; padding-bottom: 0; }
.pIntroTxt.pIntroTxtMore.pShowAll:after, .pIntroTxt.pIntroTxtMore.pShowAll:before { display: none; }

.picTxtA li { width: 96%; border-bottom: 1px solid #d2d2d2; position: relative; padding: 2%; }
.picTxtA li:last-child { padding-bottom: 0; border-bottom: 0 none; }
.picTxtA li .aMask { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 20; display: block; }
.picTxtA li .pic { overflow: hidden; position: relative; z-index: 10; }
.picTxtA li .pic img { display: block; vertical-align: top; }
.picTxtA li .txt { position: relative; overflow: hidden; z-index: 5; }
.picTxtA li .txt span { display: block; line-height: 1.53333rem; height: 1.53333rem; overflow: hidden; font-size: 0.93333rem; }
.picTxtA li .txt span.sName { font-size: 1.2rem; line-height: 1.6rem; height: 1.6rem; margin-bottom: 0.66667rem; padding-top: 0.46667rem; }
.picTxtA li .txt span.sDes em { display: inline-block; }
.picTxtA li .txt span.sDes em.emYellow { color: #ff6b50; }

.guessLikeTab { height: 2.53333rem; overflow-x: hidden; border-bottom: 1px solid #d2d2d2; }
.guessLikeTab a { float: left; padding: 0 1.2rem; line-height: 2.53333rem; height: 2.53333rem; font-size: 0.93333rem; color: #666; }
.guessLikeTab a.cur { color: #00a0e9; }
.guessLikeTab i.iLine { width: 1px; height: 1rem; float: left; margin-top: 0.76667rem; display: inline; overflow-x: hidden; background-color: #d2d2d2; }

.guessLike li .pic { width: 4.6rem; height: 6.13333rem; }
.guessLike li .pic img { width: 4.6rem; height: 6.13333rem; }
.guessLike li .txt { margin-top: -6.13333rem; margin-left: 5.5rem; height: 6.13333rem; }

.numPeriodsList { margin-top: -1%; position: relative; z-index: 10; }
.numPeriodsList li:last-child { padding-bottom: 2%; border-bottom: 1px solid #d2d2d2; }
.numPeriodsList li .pic { width: 8rem; height: 4.66667rem; }
.numPeriodsList li .pic img { width: 8rem; height: 4.66667rem; }
.numPeriodsList li .txt { margin-top: -4.66667rem; margin-left: 9rem; height: 4.66667rem; }
.numPeriodsList li .txt span.sName { font-size: 1.06667rem; line-height: 1.4rem; height: 2.8rem; padding: 0; }
.numPeriodsList li .txt span.sBottom { position: absolute; bottom: 0; left: 0; color: #666; font-size: 0.8rem; line-height: 1.06667rem; height: 1.06667rem; }

/* 全局定義關閉按鈕樣式 */
.app_download_pop .closeBtn {
  position: absolute !important;
  top: 10px !important;
  right: 10px !important;
  width: 24px !important;
  height: 24px !important;
  background: url(/images/close.png) no-repeat center !important;
  background-size: contain !important;
  cursor: pointer !important;
  z-index: 1001 !important;
  display: block !important;
}

.app_download_pop .tb {
  position: relative !important;
}/* 讓 row 之間有灰色間隔 */
.row { margin-bottom: 8px !important; }

/* ====================================================
   🎬 詳情頁滾動標題列
   ==================================================== */
.detail-scroll-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  width: 100%;
  height: 56px;
  background: #3097fd;
  z-index: 700;
  display: flex;
  align-items: center;
  padding: 0 12px;
  box-sizing: border-box;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  transform: translateY(-100%);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  pointer-events: none;
}
.detail-scroll-header.visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.detail-back-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  flex-shrink: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}
.detail-back-btn svg { width: 22px; height: 22px; }
.detail-scroll-title {
  flex: 1;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 0 10px;
  min-width: 0;
}

/* 公共頭部的隱藏/顯示過渡 */
.site-header,
.desktop-nav { transition: transform 0.3s ease, opacity 0.3s ease; }
.site-header.header-hidden,
.desktop-nav.header-hidden {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

/* ====================================================
   📐 彈窗小樣式（保留你原本）
   ==================================================== */
.other_download_pop { position: relative; }
.closeBtn {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 100;
  width: 24px;
  height: 24px;
  display: block;
  cursor: pointer;
}
.closeBtn img { width: 100%; height: 100%; }

/* ====================================================
   📱 手機版：桌面推薦隱藏
   ==================================================== */
.desktop-recommend { display: none; }

@media screen and (max-width: 767px) {
  /* 只處理頁面第一個標題區，避免影響下面其它區塊標題 */
  .main > .row:first-child .mod_z {
    margin-top: 0 !important;        /* 干掉 detail.common.css 的 margin-top:-2% */
  }

  .main > .row:first-child .mod_z .th_z {
    padding-top: 0.35rem !important; /* 標題離頂部的距離 */
  }
  
  /* th_z 不要裁切，但也不要固定高度 */
  .mod_z .th_z {
    overflow: visible !important;
    height: auto !important;
    line-height: normal !important;
  }

  /* 小屏標題：最多兩行 + 省略號 + 粗體 + 緊湊行距  */
  .mod_z .th_z h2.sMark {
    float: none !important;

    display: -webkit-box !important;
    -webkit-box-orient: vertical !important;
    -webkit-line-clamp: 2 !important;

    overflow: hidden !important;
    text-overflow: ellipsis !important;

    margin: 0 0 0.35rem 0 !important;
    padding: 0 !important;

    font-size: 1.06667rem !important;
    font-weight: 700 !important;
    line-height: 1.25 !important;

    max-height: calc(1.25em * 2) !important;
  }

  .row-intro .th_z,
  .row-intro .tb_z {
    display: block !important;
    float: none !important;
    width: 100% !important;
    clear: both !important;
  }
  .row-intro .th_z {
    margin-bottom: 8px !important;
  }
  .row-intro .pIntroTxt {
    padding-top: 12px !important;
  }
}
/* ====================================================
   💻 桌面/平板 (>=768px) 完整桌面樣式（一次到位）
   ==================================================== */
@media screen and (min-width: 768px) {

  html { font-size: 16px !important; }
  body { background: #eef0f4 !important; }

  .wrapper {
    max-width: 1200px !important;
    margin: 0 auto !important;
    background: #eef0f4 !important;
    box-shadow: 0 0 20px rgba(0,0,0,0.05);
    min-height: 100vh;
  }

  .detail-scroll-header { height: 64px; padding: 0 20px; }
  .detail-scroll-title { font-size: 16px; }

  /* 桌面端：隱藏廣告位（你 row 已加 .detail-ad-slot） */
  .detail-ad-slot { display: none !important; }

  /* 標題：H2 SEO，避免瀏覽器預設 margin */
  .mod_z:first-child .th_z { display: block !important; }
  h2.sMark {
    font-size: 22px !important;
    font-weight: 700 !important;
    line-height: 1.35 !important;
    color: #222 !important;
    margin: 0 !important;
    padding: 0 !important;
    word-break: break-word;
  }

  /* Layout L3：左 50% / 右 50% */
  .detailCon {
    display: grid !important;
    grid-template-columns: 50% 50% !important;
    gap: 24px !important;
    padding: 20px !important;
    position: relative !important;
    align-items: start !important;
    height: auto !important;
  }

  /* 左側封面：cover00（800x538），contain 不裁切 */
  .detailCon .detailPic {
    width: 100% !important;
    height: auto !important;
    overflow: hidden;
    position: relative;
    z-index: 30;
  }
  .detailCon .detailPic picture { display: block; width: 100%; }
  .detailCon .detailPic img {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 800 / 538;
    object-fit: contain;
    background: #0b0b0b;
    border-radius: 10px;
    display: block;
  }

  /* 右側資訊 */
  .detailCon .detailIntro {
    width: 100% !important;
    min-width: 0 !important;
    position: relative !important;
    margin: 0 !important;
    height: auto !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 6px !important;
  }

  .detailCon .detailIntro span {
    height: auto !important;
    line-height: 1.9 !important;
    overflow: visible !important;
    font-size: 16px !important;
    white-space: normal !important;
  }

  /* ✅ 按鈕：最終穩定版（永遠同一排、同高度、對齊一致） */
  .detailCon .detailIntro p#detail_play_p.pPlayBtn {
    display: flex !important;
    gap: 14px !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    margin-top: 10px !important;
    padding-top: 12px !important;
  }

  .detailCon .detailIntro p#detail_play_p.pPlayBtn > a.playBtn_HD,
  .detailCon .detailIntro p#detail_play_p.pPlayBtn > a.playDownLoadBtn {
    float: none !important;
    display: inline-flex !important;
    flex: 1 1 0 !important;
    width: auto !important;

    height: 52px !important;
    line-height: 52px !important;

    margin: 0 !important;
    box-sizing: border-box !important;

    align-items: center !important;
    justify-content: center !important;

    border-radius: 12px !important;
    white-space: nowrap !important;

    padding: 0 18px 0 54px !important;
    position: relative !important;
  }

  /* 播放按鈕三角形：垂直置中 */
  .detailCon .detailIntro p#detail_play_p.pPlayBtn > a.playBtn_HD:before {
    top: 50% !important;
    left: 22px !important;
    transform: translateY(-50%) !important;
  }

  /* 下  按鈕：透明占位三角，讓文字視覺中心一致 */
  .detailCon .detailIntro p#detail_play_p.pPlayBtn > a.playDownLoadBtn:before {
    content: "" !important;
    border-color: transparent transparent transparent #fff !important;
    border-width: 0.5rem !important;
    border-style: solid !important;
    height: 0 !important;
    width: 0 !important;
    overflow: hidden !important;
    position: absolute !important;
    top: 50% !important;
    left: 22px !important;
    transform: translateY(-50%) !important;
    opacity: 0 !important;
  }

  /* 避免 <i class="iDownLoadIcon"> 額外佔位干擾 */
  .detailCon .detailIntro p#detail_play_p.pPlayBtn > a > i.iDownLoadIcon {
    display: none !important;
  }

  /* 推薦：桌面顯示 Grid，手機推薦隱藏 */
  .mobile-recommend { display: none !important; }
  .desktop-recommend { display: block !important; }

  .desktop-rec-tabs {
    display: flex;
    gap: 8px;
    padding: 14px 16px;
    border-bottom: 2px solid #eee;
  }
  .desktop-rec-tab {
    background: none;
    border: 2px solid #ddd;
    padding: 6px 20px;
    font-size: 15px;
    color: #666;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
  }
  .desktop-rec-tab:hover { border-color: #3097fd; color: #3097fd; }
  .desktop-rec-tab.active { background: #3097fd; border-color: #3097fd; color: #fff; }

  .desktop-rec-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    padding: 14px;
  }

  .desktop-rec-card {
    display: flex;
    flex-direction: column;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: inherit;
    background: #fff;
  }
  .desktop-rec-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.15);
    color: inherit;
  }

  .desktop-rec-cover {
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: #f0f0f0;
  }
  .desktop-rec-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .desktop-rec-info { padding: 10px; }
  .desktop-rec-title {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    color: #333;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .desktop-rec-meta {
    margin-top: 4px;
    font-size: 12px;
    color: #999;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .desktop-rec-rate { color: #ff6b50; font-weight: 500; }

  .pIntroTxt { font-size: 15px !important; line-height: 1.8 !important; }

  .mod_z .th_z { height: auto !important; line-height: 1.8 !important; padding: 8px 0 !important; }
  .mod_a .th_a .sMark { font-size: 18px !important; }
}

/* ====================================================
   💻 小桌面 (1024px ~ 1439px)：5 欄
   ==================================================== */
@media screen and (min-width: 1024px) {
  .wrapper { max-width: 1200px !important; }

  .desktop-rec-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    padding: 16px;
  }
}

/* ====================================================
   💻 大桌面 (1440px 以上)：6 欄
   ==================================================== */
@media screen and (min-width: 1440px) {
  .wrapper { max-width: 1400px !important; }

  .desktop-rec-grid {
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    padding: 20px;
  }
}

/* ====================================================
   其他原有樣式（保留）
   ==================================================== */
.line-div {
  display:-webkit-box;
  display:-moz-flex;
  display:-ms-flexbox;
  position:relative;
  -webkit-box-orient:horizontal;
}
.input-style {
  -webkit-tap-highlight-color: rgba(255,255,255,0);
  -webkit-box-flex: 1;
  -ms-flex: 1;
  display: block;
  border: 0;
  background: #fff;
  color:#000;
  font-size: 0.866rem;
  -webkit-appearance: none;
  padding-right: 2rem;
  height: 2.7rem;
}
.input-label {
  width:5.5rem;
  height:2.7rem;
  line-height:2.7rem;
  padding:0 10px;
  text-align:left;
  display:block;
  font-size:0.9rem;
}
.btn-gray {
  width: 100%;
  height: 2.8rem;
  text-align: center;
  border-radius: 3px;
  color: #fff;
  background: #ff8d8b;
  border: 0;
  font-size: 1.2rem;
  margin-top: 1rem;
  cursor: pointer;
}
.other_download_pop {
  font-size:0.96rem;
  position: fixed;
  left: 50%;
  top: 25%;
  z-index: 1000;
  border: 1px solid #000;
  background-color: #fff;
  border-radius: 0.3rem;
  width: 19.93333rem;
  height: 19.6rem;
  margin-left: -10rem;
  margin-top: -4.33333rem;
  display: none;
  color:#000;
}
.other_download_pop p { margin: 25px 15px 0; }
.other_download_pop b { color:#ff00ce; }
.other_download_pop i { font-size:0.85rem; }
.pBtn a {
  font-size: 1.06667rem;
  line-height: 2.6rem;
  width: 8rem;
  display: inline-block;
  margin: 0 0.66667rem;
}
