/* ========== 全球签证首页 - 按设计稿 ========== */
:root {
  --visa-blue: #1a6fd4;
  --visa-blue-dark: #0f5bb8;
  --visa-blue-light: #e8f3ff;
  --visa-text: #222;
  --visa-muted: #666;
  --visa-border: #e6eef7;
  --visa-footer: #2c3138;
  --visa-width: 1200px;
  --visa-page-bg: #f0f2f5;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html:has(body.visa-home),
body.visa-home {
  width: 100% !important;
  max-width: none !important;
  text-align: left !important;
  background: var(--visa-page-bg) !important;
  background-image: none !important;
}

body.visa-home {
  margin: 0;
  padding: 0;
  color: var(--visa-text);
  font: 14px/1.6 "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
}

body.visa-home a {
  color: inherit;
  text-decoration: none;
  transition: color .2s, background .2s, opacity .2s, border-color .2s;
}

body.visa-home a:hover {
  color: var(--visa-blue) !important;
  text-decoration: none !important;
}

body.visa-home img {
  max-width: 100%;
  vertical-align: middle;
  border: 0;
}

body.visa-home ul,
body.visa-home ol,
body.visa-home li {
  margin: 0;
  padding: 0;
  list-style: none;
}

.visa-wrap {
  width: var(--visa-width);
  max-width: 96%;
  margin: 0 auto;
}

/* ---------- Header：背景通屏，Logo 贴整体最左边 ---------- */
.visa-header {
  background: #fff;
  border-bottom: 1px solid #eef1f5;
  position: relative;
  z-index: 1000;
  width: 100%;
}

.visa-header-inner,
.visa-header .visa-wrap.visa-header-inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 72px;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0 24px 0 16px;
  box-sizing: border-box;
  gap: 0;
}

.visa-logo {
  display: flex;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
  margin-right: 0;
  margin-left: 0;
  line-height: 0;
}

.visa-logo img {
  display: block;
  height: 44px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
}

/* 旧结构兼容（页脚等仍用 mark） */
.visa-logo-mark {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(145deg, #1a6fd4 0%, #0d4ea8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 2px 8px rgba(26, 111, 212, .28);
}

.visa-logo-globe {
  width: 22px;
  height: 22px;
  border: 2px solid #fff;
  border-radius: 50%;
  position: relative;
  display: block;
}

.visa-logo-globe::before,
.visa-logo-globe::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border: 1.5px solid rgba(255, 255, 255, .9);
  border-radius: 50%;
}

.visa-logo-globe::before {
  width: 10px;
  height: 22px;
}

.visa-logo-globe::after {
  width: 22px;
  height: 8px;
}

.visa-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.visa-logo-text strong {
  font-size: 20px;
  color: #1a6fd4;
  font-weight: 800;
  letter-spacing: 1px;
}

.visa-logo-text span {
  font-size: 10px;
  color: #8a96a8;
  letter-spacing: 1px;
  margin-top: 2px;
}

/* 移动端菜单按钮 */
.visa-nav-toggle {
  display: none;
  margin-left: auto;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  z-index: 120;
}

.visa-nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #222;
  border-radius: 1px;
  transition: transform .2s, opacity .2s;
}

.visa-header.is-nav-open .visa-nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.visa-header.is-nav-open .visa-nav-toggle span:nth-child(2) {
  opacity: 0;
}

.visa-header.is-nav-open .visa-nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.visa-nav {
  display: flex;
  align-items: stretch;
  height: 100%;
  margin-left: 56px;
  gap: 0;
  flex: 1;
  justify-content: center;
}

.visa-nav a {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 22px;
  font-size: 15px;
  color: #333;
  font-weight: 500;
  border-radius: 0;
  background: transparent !important;
}

.visa-nav a:hover {
  color: var(--visa-blue) !important;
  background: transparent !important;
}

.visa-nav a.curr {
  color: var(--visa-blue) !important;
  font-weight: 600;
  background: transparent !important;
}

.visa-nav a.curr::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 28px;
  height: 3px;
  background: var(--visa-blue);
  border-radius: 2px 2px 0 0;
}

.visa-user {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
  margin-left: auto;
}

.visa-user a {
  font-size: 14px;
  color: #555;
  white-space: nowrap;
}

.visa-user a.btn-reg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 34px;
  padding: 0 18px;
  border-radius: 17px;
  background: var(--visa-blue);
  color: #fff !important;
  font-weight: 600;
}

.visa-user a.btn-reg:hover {
  background: var(--visa-blue-dark);
  color: #fff !important;
}

.visa-user a:hover {
  color: var(--visa-blue) !important;
}

/* ---------- Hero 通栏背景图 ---------- */
.visa-hero {
  position: relative;
  z-index: 1;
  height: 420px;
  background: #0a2a5c url(../../images/visa/hero.jpg) center/cover no-repeat;
  overflow: hidden;
}

.visa-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 28, 64, .82) 0%, rgba(8, 28, 64, .45) 42%, rgba(8, 28, 64, .12) 100%);
}

.visa-hero-inner {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  align-items: center;
}

.visa-hero-content {
  max-width: 560px;
  color: #fff;
}

.visa-hero-badge {
  display: inline-block;
  font-size: 12px;
  padding: 4px 12px;
  border-radius: 20px;
  background: rgba(26, 111, 212, .85);
  margin-bottom: 14px;
}

.visa-hero-content h1 {
  margin: 0 0 12px;
  font-size: 40px;
  font-weight: 800;
  letter-spacing: 2px;
  line-height: 1.25;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .25);
}

.visa-hero-desc {
  margin: 0 0 22px;
  font-size: 14px;
  opacity: .9;
  line-height: 1.6;
}

.visa-hero-stats {
  display: flex;
  gap: 40px;
  margin-bottom: 28px;
}

.visa-hero-stats b {
  display: block;
  font-size: 28px;
  font-weight: 800;
  color: #ffd56a;
  line-height: 1.1;
}

.visa-hero-stats span {
  display: block;
  font-size: 13px;
  opacity: .85;
  margin-top: 4px;
}

.visa-hero-btns {
  display: flex;
  gap: 14px;
}

.visa-hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 26px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
}

.visa-hero-btn-solid {
  background: #fff;
  color: #222 !important;
}

.visa-hero-btn-solid:hover {
  background: #f0f4f8;
  color: #111 !important;
}

.visa-hero-btn-outline {
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .85);
  color: #fff !important;
}

.visa-hero-btn-outline:hover {
  background: rgba(255, 255, 255, .25);
  color: #fff !important;
}

.visa-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  padding: 0 24px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.visa-btn-primary {
  background: var(--visa-blue);
  color: #fff !important;
  box-shadow: 0 4px 14px rgba(26, 111, 212, .35);
}

.visa-btn-primary:hover {
  background: var(--visa-blue-dark);
  color: #fff !important;
}

/* ---------- 热点/公告：白底小窗（浮在页面灰底上） ---------- */
.visa-notice {
  width: var(--visa-width);
  max-width: 96%;
  margin: 16px auto 0;
  background: #fff;
  border: 1px solid #e6e9ef;
  border-radius: 8px;
  box-sizing: border-box;
}

.visa-product-page .visa-notice {
  margin-top: 16px;
}

.visa-notice-inner {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: none;
  margin: 0;
  min-height: 44px;
  height: auto;
  gap: 8px;
  overflow: hidden;
  box-sizing: border-box;
  padding: 0 16px;
}

.visa-notice-label {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  color: #999;
  font-size: 14px;
  line-height: 1;
  padding: 0;
  border-radius: 0;
  font-weight: 400;
  white-space: nowrap;
}

.visa-notice-label::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background: url("../images/hot-icon.png") center / contain no-repeat;
  flex-shrink: 0;
}

/* 首页：最新政策（非热点） */
body.visa-home .visa-notice-label {
  color: #666;
  font-weight: 600;
}

.visa-notice-scroll {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  white-space: nowrap;
}

.visa-notice-scroll ul {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 24px;
  width: max-content;
  max-width: none;
  margin: 0;
  padding: 0;
  list-style: none;
  animation: visa-marquee 28s linear infinite;
}

.visa-notice-scroll li {
  flex-shrink: 0;
}

.visa-notice-scroll a {
  font-size: 14px;
  font-weight: 400;
  line-height: 44px;
  color: #1a6fd4 !important;
  text-decoration: none;
}

body.visa-home .visa-notice-scroll a {
  color: #1a6fd4 !important;
}

body.visa-home .visa-notice-scroll a:hover {
  color: #0f5bb8 !important;
  text-decoration: underline;
}

.visa-notice-scroll a:hover {
  color: #0f5bb8 !important;
  text-decoration: underline;
}

.visa-notice-scroll .d,
.visa-notice-scroll .tag {
  display: none;
}

@keyframes visa-marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---------- 主内容区：透出页面灰底，内容块各自成白窗 ---------- */
.visa-page {
  --visa-page-pad-x: 0;
  width: var(--visa-width);
  max-width: 96%;
  margin: 16px auto 40px;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
  box-sizing: border-box;
  overflow: visible;
}

.visa-section {
  padding: 28px 0;
}

.visa-section-tight {
  padding-top: 0;
}

/* 目的地：整块白窗 */
.visa-page > .visa-section.visa-dest-section {
  background: #fff;
  border-radius: 8px;
  padding: 24px 28px 28px;
  margin: 0 0 20px;
  box-shadow: 0 1px 4px rgba(20, 60, 120, .04);
  box-sizing: border-box;
}

/* 资讯/百科/资讯卡等：区域透出灰底，仅内部小块为白 */
.visa-page > .visa-section:not(.visa-dest-section) {
  background: transparent;
  box-shadow: none;
  padding: 8px 0 20px;
  margin: 0 0 4px;
}

.visa-sec-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  gap: 16px;
}

.visa-sec-title h2 {
  margin: 0;
  font-size: 24px;
  font-weight: 800;
  color: var(--visa-text);
  position: static;
  padding-left: 0;
}

.visa-sec-title h2::before {
  display: none;
}

.visa-sec-title p {
  margin: 4px 0 0;
  font-size: 13px;
  color: #99a3b3;
}

.visa-sec-head h2 {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
  color: var(--visa-text);
  position: relative;
  padding-left: 12px;
}

.visa-sec-head h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 18px;
  background: var(--visa-blue);
  border-radius: 2px;
}

.visa-dest-head .visa-sec-title h2,
.visa-dest-head h2 {
  padding-left: 0;
}

.visa-dest-head .visa-sec-title h2::before,
.visa-dest-head h2::before {
  display: none;
}

.visa-more {
  font-size: 13px;
  color: var(--visa-blue) !important;
}

.visa-more:hover {
  color: var(--visa-blue-dark) !important;
}

/* 栏内小「查看更多」保持灰色 */
.visa-col-head .visa-more,
.visa-rank-head .visa-more {
  color: #999 !important;
  font-size: 12px;
}

.visa-col-head .visa-more:hover,
.visa-rank-head .visa-more:hover {
  color: var(--visa-blue) !important;
}

/* ---------- 目的地：8列 × 2行（设计稿） ---------- */
.visa-dest-tabs {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.visa-dest-tabs a {
  padding: 6px 16px;
  font-size: 13px;
  border-radius: 6px;
  color: #555;
  background: transparent;
  border: none;
  font-weight: 500;
}

.visa-dest-tabs a:hover {
  color: var(--visa-blue) !important;
  background: #f0f5ff;
}

/* 当前 Tab：浅蓝底 + 深蓝字（非实心蓝白字） */
.visa-dest-tabs a.curr {
  background: #e8f1ff;
  color: var(--visa-blue) !important;
  font-weight: 600;
}

.visa-dest-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 10px;
}

.visa-dest-grid > li {
  list-style: none;
}

/* 设计稿单卡约 143×90 */
.visa-dest-grid .dest-card {
  display: block;
  position: relative;
  width: 100%;
  height: 90px;
  border-radius: 6px;
  overflow: hidden;
  background: #c5d5e8 center/cover no-repeat;
}

.visa-dest-grid .dest-card img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .35s;
  z-index: 0;
}

.visa-dest-grid .dest-card:hover img {
  transform: scale(1.06);
}

/* 设计稿遮罩：自下而上渐变 */
.visa-dest-grid .dest-card::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  background: linear-gradient(0deg, #191b23cc 0%, #191b2300 100%);
  z-index: 1;
  pointer-events: none;
}

.dest-card .dest-name {
  position: absolute;
  left: 8px;
  top: 6px;
  z-index: 2;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

.dest-card .dest-foot {
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: 6px;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 4px;
}

.dest-card .dest-type {
  font-size: 11px;
  color: rgba(255, 255, 255, .92);
  font-style: normal;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.dest-card .dest-price {
  font-size: 12px;
  font-weight: 700;
  color: #ffd56a;
  white-space: nowrap;
  flex-shrink: 0;
}

/* 兼容默认图文列表（未换列表模板时） */
.visa-dest-grid > a,
.visa-dest-grid > li > a {
  display: block;
  position: relative;
  width: 100%;
  height: 90px;
  border-radius: 6px;
  overflow: hidden;
  background: #dce8f5;
}

.visa-dest-grid > a img,
.visa-dest-grid > li > a img,
.visa-dest-grid .picText img,
.visa-dest-grid td img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.visa-dest-grid .picText,
.visa-dest-grid table {
  width: 100% !important;
  height: 100%;
  display: block;
}

/* ---------- 热门资讯 4 卡（图上角标） ---------- */
.visa-news-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.visa-news-cards > li,
.news-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--visa-border);
  transition: transform .25s, box-shadow .25s;
}

.visa-news-cards > li:hover,
.news-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(20, 60, 120, .1);
}

.news-card a,
.visa-news-cards > li > a {
  display: block;
}

.news-card .news-pic,
.visa-news-cards .news-pic {
  position: relative;
  display: block;
  overflow: hidden;
}

.visa-news-cards img,
.news-card img {
  width: 100%;
  height: 148px;
  object-fit: cover;
  display: block;
}

.news-card .news-tag,
.visa-news-cards .news-tag {
  position: absolute;
  left: 10px;
  top: 10px;
  z-index: 2;
  font-size: 11px;
  padding: 3px 10px;
  border-radius: 20px;
  background: rgba(0, 0, 0, .55);
  color: #fff;
  line-height: 1.4;
}

.visa-news-cards .news-title,
.news-card .news-title {
  display: block;
  padding: 12px 14px 16px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.45;
  color: #222;
}

.visa-news-cards .picText,
.visa-news-cards table {
  width: 100% !important;
  display: block;
  border: 0;
}

.visa-news-cards .picText td {
  display: block;
  padding: 0 !important;
}

/* ---------- 专业签证服务：内容区通栏横幅 ---------- */
.visa-process {
  padding: 0;
  margin: 0 0 20px;
  width: 100%;
  max-width: none;
  box-sizing: border-box;
}

.visa-process-banner {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  line-height: 0;
  width: 100%;
}

.visa-process-banner > img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: top;
}

/* 右下角「了解详情」热区，可按实际按钮位置微调 */
.visa-process-hotspot {
  position: absolute;
  right: 3.5%;
  bottom: 12%;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 110px;
  height: 40px;
  padding: 0 20px;
  border-radius: 6px;
  background: transparent;
  color: transparent !important;
  font-size: 0;
  line-height: 1;
  cursor: pointer;
}

.visa-process-hotspot:hover {
  background: rgba(255, 255, 255, .08);
  color: transparent !important;
}
/* ---------- 出签喜报 ---------- */
.visa-cases-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.visa-cases-grid > li,
.case-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--visa-border);
  position: relative;
}

.case-card a {
  display: block;
  position: relative;
}

.visa-cases-grid img,
.case-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
  filter: blur(1px);
}

.case-card .case-tag,
.visa-cases-grid .case-tag {
  position: absolute;
  left: 8px;
  top: 8px;
  z-index: 2;
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, .92);
  color: #445;
}

.case-card .case-info,
.visa-cases-grid .case-info {
  padding: 10px;
  text-align: center;
}

.case-card .case-type {
  display: block;
  font-size: 13px;
  font-weight: 600;
}

.case-card .case-time {
  font-size: 12px;
  color: var(--visa-blue);
}
/* ---------- 三栏列表 ---------- */
.visa-cols3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.visa-col-box {
  background: #fff;
  border-radius: 10px;
  padding: 16px 18px 8px;
  border: 1px solid #e8edf3;
  box-shadow: 0 1px 4px rgba(20, 60, 120, .04);
}

.visa-col-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--visa-border);
  margin-bottom: 4px;
}

.visa-col-head h3 {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
}

.visa-col-list li,
.visa-col-list > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px dashed #eef2f7;
  font-size: 13px;
}

.visa-col-list li:last-child {
  border-bottom: none;
}

.visa-col-list .t,
.visa-col-list a {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #333;
}

.visa-col-list .d {
  flex-shrink: 0;
  color: #aaa;
  font-size: 12px;
}

/* ---------- 资讯/百科：小白块浮在灰底上 ---------- */
.visa-section-feed .visa-col-box {
  background: #fff;
}

.visa-sec-head-feed {
  margin-bottom: 16px;
  justify-content: space-between;
  align-items: baseline;
}

.visa-sec-head-feed .visa-sec-title {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 10px 14px;
}

.visa-sec-head-feed .visa-sec-title h2 {
  margin: 0;
  padding-left: 0;
  font-size: 20px;
  font-weight: 700;
  color: #222;
  line-height: 1.3;
}

.visa-sec-head-feed .visa-sec-title h2::before {
  display: none;
}

.visa-sec-head-feed .visa-sec-title p {
  margin: 0;
  font-size: 13px;
  color: #999;
  line-height: 1.4;
}

.visa-col-feed {
  background: #fff;
  border: 1px solid #eef1f5;
  border-radius: 8px;
  padding: 18px 20px 12px;
  box-shadow: 0 1px 2px rgba(20, 40, 80, 0.03);
}

.visa-col-feed .visa-col-head {
  padding-bottom: 12px;
  margin-bottom: 2px;
  border-bottom: 1px solid #f0f2f5;
}

.visa-col-feed .visa-col-head h3 {
  font-size: 16px;
  font-weight: 700;
  color: #222;
}

.visa-col-feed .visa-more {
  font-size: 12px;
  color: #999 !important;
}

.visa-feed-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.visa-feed-list .vz-feed-li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 0;
  border-bottom: 1px solid #f3f5f8;
  justify-content: flex-start;
}

.visa-feed-list .vz-feed-li:last-child {
  border-bottom: 0;
}

.vz-feed-tag {
  flex-shrink: 0;
  display: inline-block;
  min-width: 32px;
  height: 18px;
  line-height: 18px;
  padding: 0 6px;
  border-radius: 3px;
  font-size: 12px;
  font-weight: 500;
  color: #fff !important;
  text-align: center;
  box-sizing: border-box;
}

.vz-feed-tag.tg-zixun { background: #2d6bff; }   /* 资讯 · 蓝 */
.vz-feed-tag.tg-dongtai { background: #1ab8c4; } /* 动态 · 青 */
.vz-feed-tag.tg-zhinan { background: #f5a623; }  /* 指南 · 橙 */
.vz-feed-tag.tg-baike { background: #7c5cff; }   /* 百科 · 紫 */
.vz-feed-tag.tg-moban { background: #42a5f5; }   /* 模版 · 天蓝 */
.vz-feed-tag.tg-wenda { background: #f44336; }   /* 问答 · 红 */
.vz-feed-tag.tg-default { background: #8a94a6; }

.vz-feed-t {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 14px;
  font-weight: 400;
  color: #333 !important;
  line-height: 1.4;
}

.vz-feed-t:hover {
  color: var(--visa-blue) !important;
}

.vz-feed-d {
  flex-shrink: 0;
  margin-left: auto;
  font-size: 12px;
  color: #b0b6c0;
  line-height: 1;
}

/* ---------- 配套服务 ---------- */
/* ---------- 配套服务 + 热门国家（同行：左三卡 / 右两列按钮） ---------- */
.visa-svc-panel {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  min-height: 0;
  padding: 8px 0 0;
  border-radius: 0;
  background: transparent;
  box-sizing: border-box;
  box-shadow: none;
  margin-bottom: 20px;
}

.visa-svc-left {
  flex: 1.65;
  min-width: 0;
}

.visa-svc-right {
  flex: 1;
  min-width: 0;
}

.visa-svc-title {
  margin: 0 0 14px;
  font-size: 16px;
  font-weight: 700;
  color: #222;
}

.visa-svc-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.svc-card {
  background: #fff;
  border-radius: 10px;
  padding: 18px 10px 16px;
  text-align: center;
  border: none;
  box-shadow: 0 2px 10px rgba(30, 80, 160, .06);
  transition: transform .25s, box-shadow .25s;
}

.svc-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(30, 80, 160, .12);
}

.svc-card .svc-icon {
  width: 84px;
  height: 84px;
  margin: 0 auto 12px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 完整原图展示，不裁剪外圈光晕 */
.svc-card .svc-icon img {
  width: 84px;
  height: 84px;
  display: block;
  object-fit: contain;
}

.svc-card h4 {
  margin: 0 0 6px;
  font-size: 14px;
  font-weight: 700;
  color: #222;
}

.svc-card p {
  margin: 0;
  font-size: 12px;
  color: #99a3b3;
  line-height: 1.5;
}

/* 右：两列×三行国家按钮（固定行高，不拉伸） */
.visa-quick-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(3, 44px);
  grid-auto-flow: row;
  align-content: start;
  gap: 10px;
}

/* 须压过 body.visa-home a:hover（蓝字），否则蓝底+蓝字看不见 */
body.visa-home .visa-quick-grid a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  min-height: 44px;
  max-height: 44px;
  box-sizing: border-box;
  border-radius: 8px;
  background: #fff;
  color: #333 !important;
  font-weight: 600;
  font-size: 13px;
  border: 1px solid #e6eef7;
  box-shadow: 0 1px 4px rgba(30, 80, 160, .04);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding: 0 8px;
}

body.visa-home .visa-quick-grid a:hover,
body.visa-home .visa-quick-grid a:focus,
body.visa-home .visa-quick-grid a:active {
  background: var(--visa-blue);
  color: #fff !important;
  border-color: var(--visa-blue);
}

/* ---------- 韩国签证推广：内容区通栏横条 ---------- */
.visa-promo {
  margin: 0 0 20px;
  width: 100%;
  max-width: none;
  padding: 0;
  background: none;
  border-radius: 0;
  box-sizing: border-box;
}

.visa-promo-banner {
  position: relative;
  height: auto;
  border-radius: 8px;
  overflow: hidden;
  line-height: 0;
  width: 100%;
}

.visa-promo-banner > img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center center;
  vertical-align: top;
}

/* 右侧「了解详情」热区 */
.visa-promo-hotspot {
  position: absolute;
  right: 3%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  display: block;
  min-width: 120px;
  height: 42px;
  border-radius: 6px;
  background: transparent;
  color: transparent !important;
  font-size: 0;
  cursor: pointer;
}

.visa-promo-hotspot:hover {
  background: rgba(255, 255, 255, .08);
  color: transparent !important;
}

/* ---------- 排行榜（对齐设计稿：蓝/青/橙/灰序号） ---------- */
.visa-section-rank {
  padding-top: 8px;
  padding-bottom: 8px;
  background: transparent;
  box-shadow: none;
}

.visa-sec-head-rank {
  margin-bottom: 16px;
  align-items: baseline;
}

.visa-sec-head-rank .visa-sec-title h2 {
  margin: 0;
  padding-left: 0;
  font-size: 20px;
  font-weight: 700;
  color: #222;
}

.visa-sec-head-rank .visa-sec-title h2::before {
  display: none;
}

.visa-more-blue {
  color: #1a6fd4 !important;
  font-size: 13px;
}

.visa-rank-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.visa-rank-box {
  background: #fff;
  border-radius: 8px;
  padding: 16px 18px 12px;
  border: 1px solid #eef1f5;
  box-shadow: 0 1px 2px rgba(20, 40, 80, 0.03);
  box-sizing: border-box;
}

.visa-rank-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin: 0 0 6px;
  padding-bottom: 12px;
  border-bottom: 1px solid #f0f2f5;
}

.visa-rank-head h3 {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 16px;
  font-weight: 700;
  color: #222;
  line-height: 1.3;
}

.visa-rank-head .visa-more {
  font-size: 12px;
  color: #999 !important;
  flex-shrink: 0;
}

.visa-rank-list {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: visa-rank;
}

.visa-rank-list li,
.visa-rank-box ol.visa-rank-list li,
.visa-rank-box ol.rank li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 11px 0;
  border-bottom: 1px solid #f3f5f8;
  font-size: 14px;
  line-height: 1.4;
  background: none !important;
  counter-increment: visa-rank;
}

.visa-rank-list li:last-child,
.visa-rank-box ol.visa-rank-list li:last-child {
  border-bottom: none;
}

.visa-rank-list li::before,
.visa-rank-box ol.visa-rank-list li::before {
  content: counter(visa-rank);
  width: 20px;
  height: 20px;
  border-radius: 3px;
  background: #e8ecf1;
  color: #889;
  font-size: 12px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  line-height: 1;
  font-style: normal;
}

/* 1蓝 2青 3橙 4灰 — 三列完全一致 */
.visa-rank-list li:nth-child(1)::before,
.visa-rank-box ol.visa-rank-list li:nth-child(1)::before {
  background: #2f6bff;
  color: #fff;
}

.visa-rank-list li:nth-child(2)::before,
.visa-rank-box ol.visa-rank-list li:nth-child(2)::before {
  background: #18b5c4;
  color: #fff;
}

.visa-rank-list li:nth-child(3)::before,
.visa-rank-box ol.visa-rank-list li:nth-child(3)::before {
  background: #f5a623;
  color: #fff;
}

.visa-rank-list li:nth-child(4)::before,
.visa-rank-list li:nth-child(n+4)::before,
.visa-rank-box ol.visa-rank-list li:nth-child(n+4)::before {
  background: #e5e8ee;
  color: #889;
}

.visa-rank-list li a,
.visa-rank-box ol.visa-rank-list li a {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #333 !important;
  font-size: 14px;
  font-weight: 400;
  background: none !important;
  padding: 0 !important;
}

.visa-rank-list li a:hover {
  color: #1a6fd4 !important;
}

/* 覆盖系统 style.css .rank 旧序号图 */
.visa-rank-box .rank li.no1,
.visa-rank-box .rank li.no2,
.visa-rank-box .rank li.no3,
.visa-rank-box .rank li.no4,
.visa-rank-box .rank li.no5,
.visa-rank-box .rank li.no6,
.visa-rank-box .rank li.no7,
.visa-rank-box .rank li.no8,
.visa-rank-list li.no1,
.visa-rank-list li.no2,
.visa-rank-list li.no3,
.visa-rank-list li.no4 {
  background-image: none !important;
  background-color: transparent !important;
  padding-left: 0 !important;
}

/* ---------- 获客表单通栏 ---------- */
/* ---------- 获客表单通栏：左文案 + 右 2×2 白卡片 ---------- */
.visa-lead {
  background: linear-gradient(135deg, #eef3ff 0%, #e4ecff 45%, #dde8ff 100%);
  padding: 48px 0;
  margin-top: 24px;
}

.visa-lead-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.visa-lead-text {
  flex: 1;
  min-width: 0;
}

.visa-lead-text h2 {
  margin: 0 0 10px;
  font-size: 28px;
  font-weight: 800;
  color: #1a2b4a;
  letter-spacing: .5px;
}

.visa-lead-text p {
  margin: 0 0 20px;
  color: #5a6a85;
  font-size: 14px;
}

.visa-lead-trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.visa-lead-trust span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #4a5d7a;
}

.visa-lead-trust i {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #e8f5e9;
  color: #2e7d32;
  font-style: normal;
  font-size: 11px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.visa-lead-form {
  flex-shrink: 0;
  width: 520px;
  max-width: 100%;
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 14px;
  background: #fff;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 10px 32px rgba(40, 80, 160, .12);
}

.visa-lead-form input[type="hidden"] {
  display: none;
}

.visa-lead-form select,
.visa-lead-form input[type="text"] {
  width: 100%;
  height: 48px;
  border: 1px solid #e0e6ef;
  border-radius: 8px;
  padding: 0 14px;
  font-size: 14px;
  color: #333;
  outline: none;
  background: #fff;
  min-width: 0;
}

.visa-lead-form select {
  appearance: none;
  -webkit-appearance: none;
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%2399a' d='M6 8L0 0h12z'/%3E%3C/svg%3E") no-repeat right 14px center;
  padding-right: 32px;
  cursor: pointer;
}

.visa-lead-form select:focus,
.visa-lead-form input:focus {
  border-color: var(--visa-blue);
  box-shadow: 0 0 0 3px rgba(26, 111, 212, .1);
}

.visa-lead-submit {
  width: 100%;
  height: 48px;
  border: none;
  border-radius: 8px;
  background: #1a6fd4;
  color: #fff !important;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s;
}

.visa-lead-submit:hover {
  background: var(--visa-blue-dark);
  color: #fff !important;
}

/* ---------- 页脚通栏（设计稿：白字 + 细分割线） ---------- */
.visa-footer {
  background: #2a2e35;
  color: #fff;
  padding: 28px 0 20px;
}

.visa-footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, .85);
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.visa-footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none !important;
}

.visa-footer-logo {
  height: 44px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}

.visa-footer-brand strong {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: .5px;
  line-height: 1.2;
  white-space: nowrap;
}

.visa-footer-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px 28px;
  color: #fff;
  font-size: 14px;
  line-height: 1.4;
}

.visa-footer-tel {
  color: #fff;
  white-space: nowrap;
}

.visa-footer-social {
  color: #fff !important;
  white-space: nowrap;
  text-decoration: none !important;
}

a.visa-footer-social:hover {
  color: #cfe2ff !important;
}

.visa-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  line-height: 1.6;
  flex-wrap: wrap;
  gap: 10px 20px;
  color: #fff;
}

.visa-footer-copy {
  color: #fff;
}

.visa-footer-friends {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px 12px;
  color: #fff;
}

.visa-footer-friends .lab {
  color: #fff;
}

.visa-footer-friends a {
  color: #fff !important;
  text-decoration: none !important;
}

.visa-footer-friends a:hover {
  color: #cfe2ff !important;
  text-decoration: underline !important;
}

/* 兼容旧类名 */
.visa-footer-phone,
.visa-footer-links {
  display: none;
}

/* ---------- 右侧浮窗 ---------- */
.visa-float {
  position: fixed;
  right: 18px;
  bottom: 80px;
  z-index: 99;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.visa-float a {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, .12);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: #555;
  gap: 2px;
}

.visa-float a:hover {
  background: var(--visa-blue);
  color: #fff !important;
}

.visa-float .ico {
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}

/* ---------- 响应式 ---------- */
@media (max-width: 1100px) {
  .visa-nav {
    margin-left: 24px;
  }
  .visa-nav a {
    padding: 0 12px;
    font-size: 14px;
  }
  .visa-dest-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .visa-news-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .visa-cases-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .visa-process-inner {
    flex-wrap: wrap;
  }
  .visa-svc-panel {
    flex-direction: column;
  }
  .visa-lead-inner {
    flex-direction: column;
    text-align: left;
    align-items: stretch;
  }
  .visa-lead-form {
    width: 100%;
  }
}

@media (max-width: 992px) {
  body.visa-home {
    overflow-x: hidden;
  }

  .visa-header-inner,
  .visa-header .visa-wrap.visa-header-inner {
    position: relative;
    height: 60px;
    padding: 0 12px;
    flex-wrap: nowrap;
  }

  .visa-logo img {
    height: 36px;
    max-width: 120px;
  }

  .visa-logo-mark {
    width: 36px;
    height: 36px;
  }

  .visa-logo-text strong {
    font-size: 16px;
  }

  .visa-nav-toggle {
    display: flex;
  }

  .visa-nav {
    display: none !important;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    margin: 0;
    padding: 8px 0 12px;
    height: auto;
    flex: none;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    background: #fff;
    border-bottom: 1px solid #eef1f5;
    box-shadow: 0 10px 28px rgba(20, 40, 80, .12);
    z-index: 1001;
  }

  .visa-header.is-nav-open .visa-nav {
    display: flex !important;
  }

  .visa-nav a {
    height: 46px;
    padding: 0 18px;
    font-size: 15px;
    justify-content: flex-start;
    border-bottom: 1px solid #f3f5f8;
  }

  .visa-nav a.curr::after {
    display: none;
  }

  .visa-nav a.curr {
    background: #f3f8ff !important;
  }

  .visa-page {
    --visa-page-pad-x: 0;
    margin: 12px auto 24px;
    padding: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .visa-dest-section {
    padding: 16px 12px 18px;
    margin: 0 12px 14px;
    border-radius: 10px;
    background: #fff;
  }

  .visa-section-feed {
    padding: 8px 0 16px;
    margin-bottom: 0;
    background: transparent;
    box-shadow: none;
  }

  .visa-hero {
    height: auto;
    min-height: 280px;
    padding: 28px 0 32px;
  }

  .visa-hero-badge,
  .visa-hero-stats {
    display: none;
  }

  .visa-hero-content h1 {
    font-size: 24px;
  }

  .visa-hero-desc {
    font-size: 12px;
    margin-bottom: 18px;
  }

  .visa-hero-btns {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
  }

  .visa-hero-btn {
    flex: 1;
    height: 40px;
    padding: 0 10px;
    font-size: 13px;
    border-radius: 6px;
  }

  .visa-hero-btn-solid {
    background: #fff;
    color: #222 !important;
  }

  .visa-hero-btn-solid::after {
    content: " →";
  }

  .visa-notice {
    background: #eef5ff;
  }

  .visa-notice-inner {
    gap: 8px;
    padding: 10px 12px;
  }

  .visa-notice-label {
    color: var(--visa-blue);
    font-weight: 600;
  }

  .visa-notice-scroll ul {
    gap: 16px;
  }

  body.visa-home .visa-notice-scroll a {
    color: #3a6bb5 !important;
    font-size: 12px;
  }

  /* 热门目的地：标题+说明同一行，Tab 在下，4 列宫格 */
  .visa-dest-head {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    margin-bottom: 12px;
  }

  .visa-dest-head .visa-sec-title {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 8px 10px;
  }

  .visa-dest-head .visa-sec-title h2 {
    font-size: 18px;
    font-weight: 800;
    line-height: 1.2;
  }

  .visa-dest-head .visa-sec-title p {
    margin: 0;
    font-size: 12px;
    color: #99a3b3;
    line-height: 1.3;
  }

  .visa-dest-tabs {
    width: 100%;
    overflow-x: auto;
    flex-wrap: nowrap;
    gap: 6px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .visa-dest-tabs::-webkit-scrollbar {
    display: none;
  }

  .visa-dest-tabs a {
    flex-shrink: 0;
    padding: 6px 14px;
    font-size: 13px;
    border-radius: 6px;
  }

  .visa-dest-tabs a.curr {
    background: #e8f1ff;
    color: var(--visa-blue) !important;
  }

  .visa-dest-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
  }

  .visa-dest-grid .dest-card {
    height: 72px;
    border-radius: 6px;
  }

  .visa-dest-grid .dest-card::after {
    background: linear-gradient(180deg, rgba(20, 30, 50, .55) 0%, rgba(20, 30, 50, .05) 55%, rgba(20, 30, 50, .35) 100%);
  }

  /* 手机端：国家名 + 类型叠在左上角 */
  .dest-card .dest-name {
    left: 6px;
    right: auto;
    top: 5px;
    transform: none;
    text-align: left;
    padding: 0;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.25;
    max-width: calc(100% - 10px);
  }

  .dest-card .dest-foot {
    left: 6px;
    right: 6px;
    top: 24px;
    bottom: auto;
    transform: none;
    justify-content: flex-start;
    padding: 0;
  }

  .dest-card .dest-type {
    font-size: 11px;
    text-align: left;
    color: rgba(255, 255, 255, .92);
  }

  .dest-card .dest-price {
    display: none;
  }

  .visa-sec-head {
    flex-wrap: wrap;
    gap: 8px;
  }

  /* 热门资讯：两列卡片（有内容才输出该区块） */
  .visa-page > .visa-section.visa-news-section {
    margin: 0 12px 14px;
    padding: 14px 12px 16px;
    background: #fff;
    border-radius: 10px;
  }

  .visa-news-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .visa-news-cards .news-pic,
  .visa-news-cards img {
    height: 100px;
    border-radius: 8px;
  }

  .visa-dest-grid .dest-card img[src*="notimg.gif"] {
    object-fit: contain;
    background: #d9e4f2;
    padding: 12px;
  }

  .visa-footer-top,
  .visa-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .visa-float {
    right: 10px;
    bottom: 16px;
  }

  .visa-cols3,
  .visa-rank-cols,
  .visa-cases-grid {
    grid-template-columns: 1fr;
  }

  /*
   * 手机端配套区（对齐设计稿）：
   * - 灰底上独立分区，不再用整块蓝底面板
   * - 服务三卡横排
   * - 热门国家：首行 3 个，末行 2 个加宽
   */
  .visa-svc-panel {
    flex-direction: column;
    gap: 18px;
    padding: 0;
    margin-bottom: 12px;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
  }

  .visa-svc-left,
  .visa-svc-right {
    flex: none;
    width: 100%;
  }

  .visa-svc-title {
    margin: 0 0 10px;
    font-size: 16px;
    font-weight: 700;
    color: #222;
  }

  .visa-svc-cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .svc-card {
    padding: 14px 6px 12px;
    border-radius: 10px;
    box-shadow: 0 1px 4px rgba(20, 40, 80, .06);
  }

  .svc-card .svc-icon {
    width: 66px;
    height: 66px;
    margin-bottom: 8px;
  }

  .svc-card .svc-icon img {
    width: 66px;
    height: 66px;
  }

  .svc-card h4 {
    font-size: 12px;
    margin-bottom: 4px;
    line-height: 1.3;
  }

  .svc-card p {
    font-size: 10px;
    color: #99a3b3;
    line-height: 1.35;
  }

  /* 6 列网格：前 3 个各占 2 列；末行仅 2 个时各占 3 列（加宽） */
  .visa-quick-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: none;
    grid-auto-rows: 44px;
    gap: 8px;
  }

  body.visa-home .visa-quick-grid a {
    grid-column: span 2;
    height: 44px;
    min-height: 44px;
    max-height: 44px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 8px;
    background: #fff;
    border: 0;
    box-shadow: 0 1px 4px rgba(20, 40, 80, .06);
  }

  body.visa-home .visa-quick-grid a:nth-last-child(2):nth-child(3n+1),
  body.visa-home .visa-quick-grid a:last-child:nth-child(3n+2) {
    grid-column: span 3;
  }

  .visa-promo {
    margin: 0 12px 14px;
    width: auto;
  }

  .visa-promo-banner {
    height: auto;
    border-radius: 8px;
  }

  .visa-promo-banner > img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  .visa-promo-hotspot {
    min-width: 72px;
    height: 28px;
    right: 2%;
  }

  .visa-section-rank {
    padding: 4px 12px 16px;
  }

  .visa-rank-cols {
    gap: 10px;
  }

  .visa-rank-box {
    padding: 14px 14px 8px;
  }

  .visa-process-steps {
    flex-wrap: wrap;
    gap: 12px;
  }

  .visa-step-arrow {
    display: none;
  }

  .visa-lead-form {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .visa-dest-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 5px;
  }

  .visa-dest-grid .dest-card {
    height: 68px;
  }

  .dest-card .dest-name {
    left: 5px;
    top: 4px;
    font-size: 14px;
  }

  .dest-card .dest-foot {
    left: 5px;
    top: 22px;
  }

  .dest-card .dest-type {
    font-size: 10px;
  }

  .visa-logo-text span {
    display: none;
  }

  .svc-card h4 {
    font-size: 11px;
  }

  .svc-card p {
    font-size: 9px;
  }

  body.visa-home .visa-quick-grid a {
    font-size: 12px;
  }
}
