/* GoUSTours 站点专属样式覆写 — 本文件是 goustours 自有文件,重建不会被 uvtravel 覆盖。
   全站级样式改动写这里,不要直接改 style.css(build_all.sh 每次重拷)。 */

/* 英文 hero 标题: 中文书法体的 nowrap/超大字号/5px字距 对长英文句会溢出屏幕,
   英文改衬线体、缩小字号、允许换行 (2026-07-06 用户要求修英文排版) */
.qhy-h1 .lang-en {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 4.4vw, 58px);
  letter-spacing: .5px;
  white-space: normal;
  line-height: 1.18;
}

/* 首页入口卡只有 3 张(原版4列网格会左对齐留白): 改 3 等分铺满居中 (2026-07-06 用户要求) */
.entry-bar { grid-template-columns: repeat(3, 1fr); }

/* 英文 Logo(logo-main.svg 560x380 方形构图)在 46px 档显得过小,放大一档 */
.uvt-brand .brand-logo.lang-en { height: 60px; }
.foot-brand .brand-logo.lang-en { height: 72px; }

/* 卡片销售量(价格行右侧) */
.uvt-card .price .sold { margin-left: auto; font-size: 12px; color: #9aa0a8; font-weight: 500; }

/* 详情页销售量徽章(标题右侧) */
.uvt-head .det-sold { align-self: center; white-space: nowrap; background: #fdf0e7; color: #c2410c;
  font-weight: 800; font-size: 15px; padding: 8px 14px; border-radius: 999px; }

/* 评价区「系统翻译 / Machine-translated」小标签 — 页面语言与评论原文语言不同时,
   由 user.js 在作者名旁插入(浅灰小字圆角胶囊) */
.rv-item .rv-mt { display: inline-block; font-size: 11px; color: #9aa0a8;
  background: #f2f3f5; border: 1px solid #e4e6ea; border-radius: 999px;
  padding: 1px 8px; font-weight: 500; white-space: nowrap; vertical-align: 1px; }

/* Hero 布局协调化 (2026-07-06 用户反馈文字与背景不协调):
   ① 收紧高度,减少顶部大片留白 ② 文字块整体略上移居中偏下,构图更均衡
   ③ 文字区加柔和椭圆暗色衬托,白色书法标题在明亮桥景/雾气上也清晰 */
.qhy-hero { height: 76vh; min-height: 500px; }
.qhy-hero-in { padding: 0 20px 8vh; }
.qhy-hero-scrim {
  background:
    radial-gradient(ellipse 78% 46% at 50% 74%, rgba(8,16,30,.52) 0%, rgba(8,16,30,0) 66%),
    linear-gradient(180deg, rgba(8,16,30,.20) 0%, rgba(8,16,30,.16) 38%, rgba(8,16,30,.52) 72%, rgba(8,16,30,.90) 100%);
}
.qhy-h1 { letter-spacing: 3px; text-shadow: 0 3px 26px rgba(0,0,0,.6); }
.qhy-sub { opacity: 1; text-shadow: 0 1px 12px rgba(0,0,0,.7); }

/* 页头/页脚 公司名（趣环游 · Moreahead USA LLC）2026-07-06 用户要求 */
.uvt-brand + .brand-co { font-size: 12px; color: #8a8f98; font-weight: 600; letter-spacing: .2px;
  padding-left: 12px; margin-left: 10px; border-left: 1px solid #e2e4e8; white-space: nowrap; align-self: center; }
.foot-co { margin-top: 8px; font-size: 12.5px; color: #9aa0a8; font-weight: 600; }
@media (max-width: 860px) { .uvt-brand + .brand-co { display: none; } }  /* 窄屏页头不挤,信息仍在页脚 */

/* 咨询制线路卡片价格位:显示"价格请咨询"(替代空白价格) */
.uvt-card .price-inq .inq { font-size: 15px; font-weight: 700; color: #185FA5; }
