/* ========================================
   安则行信息服务 · 移动端紧凑版 (≤768px)
   ======================================== */

@media (max-width: 768px) {
  :root {
    --m-safe-top: env(safe-area-inset-top, 0px);
    --m-safe-left: env(safe-area-inset-left, 0px);
    --m-safe-right: env(safe-area-inset-right, 0px);
    --m-header-content-h: 48px;
    --m-header-h: calc(var(--m-header-content-h) + var(--m-safe-top));
    --m-bottom-h: 52px;
    --m-gap: 8px;
    --m-radius: 10px;
    --m-gold: #c9a227;
    --m-gold-dark: #8b6914;
    --m-text: #0a1628;
    --m-muted: #64748b;
    --m-bg: #f4f6f9;
    --m-card: #ffffff;
  }

  body.has-mobile-shell {
    padding-top: var(--m-header-h) !important;
    padding-bottom: calc(var(--m-bottom-h) + env(safe-area-inset-bottom, 0px)) !important;
    background: var(--m-bg);
    font-size: 13px;
    line-height: 1.5;
    -webkit-tap-highlight-color: transparent;
  }

  body.is-mobile-view .header {
    display: none !important;
  }

  body.is-mobile-view .floating-menu {
    bottom: calc(var(--m-bottom-h) + 12px);
    right: 12px;
    gap: 8px;
  }

  body.is-mobile-view .floating-btn {
    width: 42px;
    height: 42px;
  }

  body.is-mobile-view .floating-btn.back-to-top {
    display: none !important;
  }

  .m-back-top {
    position: fixed;
    right: 14px;
    bottom: calc(var(--m-bottom-h) + 14px + env(safe-area-inset-bottom, 0px));
    z-index: 1095;
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--m-gold), var(--m-gold-dark));
    color: #fff;
    box-shadow: 0 4px 14px rgba(201, 162, 39, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.25s, visibility 0.25s, transform 0.25s;
  }

  .m-back-top svg {
    width: 20px;
    height: 20px;
  }

  .m-back-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .container {
    padding: 0 12px !important;
  }

  .m-shell { display: block; }

  .m-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1100;
    height: var(--m-header-h);
    padding-top: var(--m-safe-top);
    padding-left: max(12px, var(--m-safe-left));
    padding-right: max(12px, var(--m-safe-right));
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    box-sizing: border-box;
  }

  .m-header-brand {
    display: flex;
    align-items: baseline;
    gap: 6px;
    min-width: 0;
  }

  .m-header-logo {
    font-size: 17px;
    font-weight: 700;
    color: var(--m-text);
    letter-spacing: 1px;
    white-space: nowrap;
  }

  .m-header-sub {
    font-size: 10px;
    color: var(--m-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .m-header-actions {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
  }

  .m-header-tel {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    font-weight: 600;
    color: var(--m-gold-dark);
    background: rgba(201, 162, 39, 0.1);
    padding: 5px 8px;
    border-radius: 20px;
    max-width: 130px;
  }

  .m-header-tel svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
  }

  .m-header-tel span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .m-header-menu {
    width: 36px;
    height: 36px;
    border: none;
    background: var(--m-bg);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--m-text);
    cursor: pointer;
  }

  .m-header-menu svg { width: 20px; height: 20px; }

  .m-drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 22, 40, 0.45);
    z-index: 1200;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s;
  }

  .m-drawer-overlay.open {
    opacity: 1;
    visibility: visible;
  }

  .m-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: min(280px, 82vw);
    height: 100%;
    background: #fff;
    z-index: 1210;
    transform: translateX(100%);
    transition: transform 0.28s ease;
    display: flex;
    flex-direction: column;
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.12);
  }

  .m-drawer.open { transform: translateX(0); }

  .m-drawer-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: calc(16px + var(--m-safe-top)) 14px 16px;
    border-bottom: 1px solid #eee;
    background: linear-gradient(135deg, #0a1628, #1a2d4a);
    color: #fff;
  }

  .m-drawer-title { font-size: 18px; font-weight: 700; }
  .m-drawer-sub { font-size: 11px; opacity: 0.75; margin-top: 2px; }

  .m-drawer-close {
    width: 32px;
    height: 32px;
    border: none;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .m-drawer-close svg { width: 18px; height: 18px; }

  .m-drawer-nav {
    flex: 1;
    padding: 8px 0;
    overflow-y: auto;
  }

  .m-drawer-nav a {
    display: block;
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 500;
    color: var(--m-text);
    border-bottom: 1px solid #f0f0f0;
  }

  .m-drawer-nav a:active { background: #f8f9fb; }

  .m-drawer-cta {
    margin: 12px;
    padding: 12px;
    text-align: center;
    background: linear-gradient(135deg, var(--m-gold), var(--m-gold-dark));
    color: #fff !important;
    font-weight: 600;
    font-size: 14px;
    border-radius: var(--m-radius);
  }

  .m-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1100;
    height: calc(var(--m-bottom-h) + env(safe-area-inset-bottom, 0px));
    padding-bottom: env(safe-area-inset-bottom, 0px);
    padding-left: var(--m-safe-left);
    padding-right: var(--m-safe-right);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.06);
    box-sizing: border-box;
  }

  .m-bottom-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    font-size: 10px;
    font-weight: 500;
    color: var(--m-muted);
    padding: 4px 0;
  }

  .m-bottom-item svg {
    width: 20px;
    height: 20px;
  }

  .m-bottom-item.active {
    color: var(--m-gold-dark);
  }

  .m-bottom-item.active svg {
    color: var(--m-gold);
  }

  /* ---- Hero 紧凑 ---- */
  .hero {
    padding: 16px 0 12px !important;
    background: linear-gradient(165deg, #0a1628 0%, #152238 55%, #1a2d4a 100%) !important;
  }

  .hero-content {
    gap: 12px !important;
  }

  .hero-badge {
    font-size: 10px !important;
    padding: 3px 8px !important;
    margin-bottom: 8px !important;
    border-radius: 4px;
  }

  .hero-title {
    font-size: 22px !important;
    margin-bottom: 6px !important;
    line-height: 1.25 !important;
  }

  .hero-description {
    font-size: 12px !important;
    margin-bottom: 10px !important;
    opacity: 0.85;
  }

  .hero-actions {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 8px !important;
    margin-bottom: 10px !important;
  }

  .hero-actions .btn {
    min-height: 36px !important;
    padding: 8px 10px !important;
    font-size: 12px !important;
    border-radius: 8px !important;
  }

  .btn-large { font-size: 12px !important; }

  .hero-stats {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 6px !important;
  }

  .stat-item {
    padding: 6px 4px !important;
    border-radius: 6px !important;
  }

  .stat-number {
    font-size: 16px !important;
  }

  .stat-label {
    font-size: 9px !important;
    line-height: 1.2;
  }

  .hero-right { margin-top: 0 !important; }

  .hero-features {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 6px !important;
  }

  .feature-box {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    padding: 8px 4px !important;
    gap: 4px !important;
    border-radius: 8px !important;
    background: rgba(255, 255, 255, 0.06) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
  }

  .feature-icon {
    width: 28px !important;
    height: 28px !important;
    margin: 0 !important;
  }

  .feature-icon svg { width: 14px !important; height: 14px !important; }

  .feature-content h3 {
    font-size: 11px !important;
    margin-bottom: 0 !important;
  }

  .feature-content p {
    display: none;
  }

  /* ---- Trust bar 胶囊滚动 ---- */
  .trust-bar {
    padding: 8px 0 !important;
    background: #fff !important;
    border-bottom: 1px solid #eee;
  }

  .trust-bar-content {
    gap: 6px !important;
    padding-bottom: 2px !important;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .trust-bar-content::-webkit-scrollbar { display: none; }

  .trust-stat {
    min-width: auto !important;
    flex: 0 0 auto;
    background: var(--m-bg);
    border-radius: 20px;
    padding: 6px 10px !important;
    gap: 6px !important;
    border: 1px solid #e8ecf0;
  }

  .stat-icon {
    width: 24px !important;
    height: 24px !important;
    border-radius: 6px !important;
  }

  .stat-icon svg { width: 12px !important; height: 12px !important; }

  .stat-title { font-size: 11px !important; }
  .stat-desc { font-size: 9px !important; display: none; }

  /* ---- 区块通用紧凑 ---- */
  .section-header {
    margin-bottom: 12px !important;
    text-align: left !important;
  }

  .section-subtitle {
    font-size: 9px !important;
    letter-spacing: 1px !important;
    margin-bottom: 4px !important;
  }

  .section-title {
    font-size: 18px !important;
    margin-bottom: 4px !important;
  }

  .section-description {
    font-size: 12px !important;
    margin: 0 !important;
    max-width: none !important;
  }

  .services,
  .strength,
  .news,
  .process,
  .about,
  .contact,
  .news-list-page,
  .news-detail-page {
    padding-top: 16px !important;
    padding-bottom: 16px !important;
  }

  .compliance-notice {
    padding: 8px 10px !important;
    margin-bottom: 12px !important;
    gap: 8px !important;
    border-radius: 8px !important;
  }

  .compliance-notice p {
    font-size: 11px !important;
    line-height: 1.4 !important;
  }

  /* ---- 服务 2列紧凑卡片 ---- */
  .services-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 8px !important;
  }

  .service-card {
    padding: 10px !important;
    border-radius: var(--m-radius) !important;
  }

  .service-number {
    font-size: 10px !important;
    margin-bottom: 4px !important;
  }

  .service-card h3 {
    font-size: 13px !important;
    margin-bottom: 4px !important;
  }

  .service-card p,
  .service-desc {
    font-size: 11px !important;
    line-height: 1.4 !important;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .service-icon {
    width: 32px !important;
    height: 32px !important;
    margin-bottom: 6px !important;
  }

  /* ---- 核心优势：移动端单列卡片 ---- */
  .strength-grid {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
    margin-top: 12px !important;
  }

  .strength-item {
    padding: 14px !important;
    border-radius: 12px !important;
    overflow: visible !important;
    box-shadow: 0 1px 6px rgba(10, 22, 40, 0.06) !important;
    border: 1px solid #e8ecf0 !important;
  }

  .strength-item:hover {
    transform: none !important;
  }

  .strength-item-number {
    top: 12px !important;
    right: 12px !important;
    font-size: 22px !important;
    color: rgba(201, 162, 39, 0.18) !important;
  }

  .strength-header-row {
    gap: 10px !important;
    margin-bottom: 8px !important;
  }

  .strength-icon-box {
    width: 40px !important;
    height: 40px !important;
    border-radius: 10px !important;
  }

  .strength-icon-box svg {
    width: 20px !important;
    height: 20px !important;
  }

  .strength-item h3 {
    font-size: 15px !important;
    padding-right: 36px !important;
    line-height: 1.3 !important;
  }

  .strength-item p {
    font-size: 12px !important;
    line-height: 1.55 !important;
    display: block !important;
    overflow: visible !important;
    -webkit-line-clamp: unset !important;
    margin: 0 !important;
  }

  /* ---- 服务流程：深色竖向时间线 ---- */
  .process {
    background: linear-gradient(160deg, #0a1628 0%, #152238 50%, #1e3a5f 100%) !important;
  }

  .process .section-subtitle {
    color: var(--m-gold) !important;
  }

  .process .section-title {
    color: #ffffff !important;
  }

  .process .section-description {
    color: rgba(255, 255, 255, 0.82) !important;
  }

  .process-timeline {
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
    margin-top: 8px !important;
  }

  .process-step {
    display: flex !important;
    flex-direction: row !important;
    align-items: flex-start !important;
    text-align: left !important;
    gap: 12px !important;
    padding: 12px 0 !important;
    background: transparent !important;
    border: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 0 !important;
  }

  .process-step:last-child {
    border-bottom: none !important;
    padding-bottom: 0 !important;
  }

  .process-step .step-number::after {
    display: none !important;
  }

  .process-step .step-line {
    display: none !important;
  }

  .step-number {
    width: 36px !important;
    height: 36px !important;
    min-width: 36px !important;
    font-size: 13px !important;
    margin: 2px 0 0 !important;
    flex-shrink: 0 !important;
    background: rgba(201, 162, 39, 0.15) !important;
    border-color: rgba(201, 162, 39, 0.45) !important;
    color: var(--m-gold) !important;
  }

  .step-content {
    flex: 1;
    min-width: 0;
  }

  .process-step h3,
  .step-content h3 {
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #ffffff !important;
    margin-bottom: 4px !important;
  }

  .process-step p,
  .step-content p {
    font-size: 12px !important;
    line-height: 1.5 !important;
    color: rgba(255, 255, 255, 0.72) !important;
    margin: 0 !important;
  }

  /* ---- 资讯 列表紧凑 ---- */
  .news-section-header {
    grid-template-columns: 1fr !important;
    gap: 8px !important;
    margin-bottom: 10px !important;
  }

  .news-grid {
    gap: 8px !important;
  }

  .news-card {
    padding: 10px !important;
    border-radius: var(--m-radius) !important;
    background: var(--m-card) !important;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04) !important;
  }

  .news-date-badge {
    width: 42px !important;
    padding: 4px !important;
    border-radius: 6px !important;
  }

  .news-day { font-size: 14px !important; }
  .news-month { font-size: 9px !important; }

  .news-card h3 {
    font-size: 13px !important;
    line-height: 1.35 !important;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 4px !important;
  }

  .news-card p {
    font-size: 11px !important;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0 !important;
  }

  .news-tag { font-size: 9px !important; padding: 1px 5px !important; }
  .news-meta { font-size: 9px !important; }

  .news-filter-bar {
    gap: 8px !important;
    margin-bottom: 10px !important;
  }

  .news-search-bar {
    display: flex !important;
    gap: 6px !important;
  }

  .news-search-bar input {
    flex: 1;
    padding: 8px 10px !important;
    font-size: 13px !important;
    border-radius: 8px !important;
  }

  .news-tags {
    gap: 6px !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    padding-bottom: 4px !important;
    -webkit-overflow-scrolling: touch;
  }

  .news-tags .tag-btn {
    flex-shrink: 0;
    padding: 5px 10px !important;
    font-size: 11px !important;
    border-radius: 16px !important;
  }

  .page-header {
    margin-bottom: 12px !important;
    text-align: left !important;
  }

  .page-header .section-title {
    font-size: 20px !important;
  }

  /* ---- 关于 ---- */
  .about-layout {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .about-image-placeholder {
    padding: 36px 20px !important;
    border-radius: 16px !important;
  }

  .image-icon {
    width: 56px !important;
    height: 56px !important;
    margin-bottom: 12px !important;
  }

  .image-text {
    font-size: 15px !important;
  }

  .about-card-info {
    position: static !important;
    right: auto !important;
    bottom: auto !important;
    margin-top: 10px !important;
    padding: 14px 20px !important;
    gap: 24px !important;
    justify-content: center !important;
    border-radius: 12px !important;
  }

  .about-card-info .info-value {
    font-size: 22px !important;
  }

  .about-card-info .info-label {
    font-size: 11px !important;
  }

  .about-text p {
    font-size: 13px !important;
    line-height: 1.65 !important;
    margin-bottom: 10px !important;
  }

  .company-info {
    grid-template-columns: 1fr !important;
    gap: 8px !important;
    margin-top: 14px !important;
  }

  .company-item {
    padding: 12px !important;
    align-items: flex-start !important;
    border-radius: 10px !important;
  }

  .company-item > div:last-child {
    flex: 1;
    min-width: 0;
  }

  .company-icon {
    width: 36px !important;
    height: 36px !important;
    border-radius: 9px !important;
  }

  .company-icon svg {
    width: 18px !important;
    height: 18px !important;
  }

  .company-label {
    font-size: 10px !important;
    letter-spacing: 0.8px !important;
    margin-bottom: 3px !important;
  }

  .about .company-name {
    font-size: 12px !important;
    font-weight: 600 !important;
    line-height: 1.5 !important;
    white-space: normal !important;
    overflow: visible !important;
    text-overflow: unset !important;
    word-break: break-word !important;
  }

  /* ---- 联系我们：移动端专属布局 ---- */
  .contact-layout {
    display: flex !important;
    flex-direction: column !important;
    gap: 16px !important;
  }

  .contact-left {
    order: 1;
  }

  .contact-right {
    order: 2;
  }

  .contact-intro {
    font-size: 12px !important;
    margin-bottom: 12px !important;
    line-height: 1.55 !important;
  }

  /* ---- 在线咨询预约：二宫格布局 ---- */
  .contact-form-wrapper {
    background: #ffffff !important;
    border: 1px solid #e8ecf0 !important;
    border-radius: 14px !important;
    padding: 0 !important;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(10, 22, 40, 0.08) !important;
  }

  .contact-form-wrapper .form-header {
    margin-bottom: 0 !important;
    padding: 14px 12px 12px;
    background: #f8fafc;
    border-bottom: 1px solid #e8ecf0;
  }

  .contact-form-wrapper .form-header::after {
    display: none;
  }

  .contact-form-wrapper .form-header h3 {
    font-size: 16px !important;
    font-weight: 700 !important;
    color: var(--m-text) !important;
    margin-bottom: 2px !important;
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .contact-form-wrapper .form-header h3::before {
    content: '';
    width: 4px;
    height: 16px;
    border-radius: 2px;
    background: linear-gradient(180deg, var(--m-gold), var(--m-gold-dark));
    flex-shrink: 0;
  }

  .contact-form-wrapper .form-header p {
    font-size: 11px !important;
    color: var(--m-muted) !important;
    margin: 0 0 0 10px !important;
    line-height: 1.4 !important;
  }

  .contact-form {
    padding: 12px !important;
    gap: 10px !important;
    display: flex !important;
    flex-direction: column !important;
  }

  /* 宫格行1：姓名 | 电话 */
  .contact-form > .form-row:not(#verifyRow) {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 8px !important;
  }

  .contact-form > .form-row:not(#verifyRow) .form-group {
    background: #f8fafc !important;
    border: 1.5px solid #e8ecf0 !important;
    border-radius: 10px !important;
    padding: 8px 10px !important;
    margin-bottom: 0 !important;
    gap: 4px !important;
  }

  /* 宫格行2-3：咨询类型 2×2 */
  .contact-form > .form-group:has(.consultation-buttons) {
    margin-bottom: 0 !important;
    gap: 6px !important;
  }

  .contact-form > .form-group:has(.consultation-buttons) > label {
    font-size: 11px !important;
    font-weight: 600 !important;
    color: var(--m-text) !important;
    padding-left: 2px;
  }

  .contact-form > .form-group:has(.consultation-buttons) > label::after {
    display: none !important;
  }

  .consultation-buttons {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 8px !important;
    margin-top: 0 !important;
    padding: 0 !important;
  }

  .consultation-btn {
    min-height: 54px !important;
    padding: 10px 8px !important;
    font-size: 12px !important;
    line-height: 1.35 !important;
    font-weight: 500 !important;
    white-space: normal !important;
    word-break: break-word !important;
    text-align: center !important;
    border: 1.5px solid #e2e8f0 !important;
    border-radius: 10px !important;
    background: #f8fafc !important;
    color: #475569 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: none !important;
    transition: border-color 0.2s, background 0.2s, color 0.2s;
  }

  .consultation-btn:hover {
    transform: none !important;
    border-color: rgba(201, 162, 39, 0.45) !important;
    background: rgba(201, 162, 39, 0.05) !important;
  }

  .consultation-btn.active {
    border-color: var(--m-gold) !important;
    background: linear-gradient(135deg, var(--m-gold), var(--m-gold-dark)) !important;
    color: #ffffff !important;
    box-shadow: 0 2px 8px rgba(201, 162, 39, 0.28) !important;
  }

  .contact-form .form-group > label {
    font-size: 11px !important;
    font-weight: 600 !important;
    color: var(--m-muted) !important;
    margin-bottom: 0 !important;
  }

  .contact-form .form-group input {
    height: 36px !important;
    padding: 0 10px !important;
    font-size: 14px !important;
    border-radius: 8px !important;
    border: 1px solid #e2e8f0 !important;
    background: #ffffff !important;
    box-sizing: border-box !important;
    width: 100% !important;
  }

  .contact-form .form-group input:focus {
    border-color: var(--m-gold) !important;
    box-shadow: 0 0 0 2px rgba(201, 162, 39, 0.12) !important;
    outline: none !important;
  }

  .contact-form .form-group input::placeholder {
    color: #94a3b8;
    font-size: 12px;
  }

  /* 宫格行4：验证码 | 图形码 */
  #verifyRow.form-row {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 8px !important;
    align-items: stretch !important;
    margin-top: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    border: none !important;
  }

  #verifyRow .form-group {
    margin-bottom: 0 !important;
    background: #f8fafc !important;
    border: 1.5px solid #e8ecf0 !important;
    border-radius: 10px !important;
    padding: 8px 10px !important;
  }

  #verifyRow .form-group:first-child {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    gap: 4px !important;
    min-width: 0;
  }

  #verifyRow #codeLabel {
    display: block !important;
    font-size: 11px !important;
    font-weight: 600 !important;
    color: var(--m-muted) !important;
    margin-bottom: 0 !important;
  }

  #verifyActionGroup > label {
    display: none !important;
  }

  #verifyActionGroup {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 4px !important;
    min-height: 68px !important;
  }

  #codeInput {
    height: 36px !important;
    min-height: 36px !important;
    padding: 0 10px !important;
    font-size: 14px !important;
    border: 1px solid #e2e8f0 !important;
    background: #ffffff !important;
    border-radius: 8px !important;
    box-sizing: border-box !important;
    width: 100% !important;
  }

  #codeInput:focus {
    border-color: var(--m-gold) !important;
    box-shadow: 0 0 0 2px rgba(201, 162, 39, 0.12) !important;
    outline: none !important;
  }

  #codeInput::placeholder {
    color: #94a3b8;
    font-size: 12px;
  }

  #sendCodeBtn {
    width: 100% !important;
    height: 36px !important;
    min-height: 36px !important;
    padding: 0 10px !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    white-space: nowrap !important;
    border-radius: 8px !important;
    border: 1px solid #e2e8f0 !important;
    background: #ffffff !important;
    color: var(--m-gold-dark) !important;
    box-sizing: border-box !important;
    align-items: center !important;
    justify-content: center !important;
  }

  #consultationForm.form-verify-sms #sendCodeBtn {
    display: flex !important;
  }

  #consultationForm.form-verify-captcha .captcha-inline {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;
    height: auto !important;
    width: 100% !important;
    flex-wrap: nowrap !important;
  }

  #consultationForm.form-verify-captcha .captcha-inline img {
    height: 34px !important;
    width: auto !important;
    flex: 1 1 auto;
    max-width: 72px;
    border-radius: 6px !important;
    border: 1px solid #e2e8f0 !important;
    display: block !important;
    cursor: pointer;
    background: #fff;
  }

  #consultationForm.form-verify-captcha .captcha-inline .btn-sm {
    flex: 0 0 auto;
    height: 34px !important;
    min-height: 34px !important;
    padding: 0 8px !important;
    font-size: 10px !important;
    white-space: nowrap !important;
    border-radius: 6px !important;
    border: 1px solid #e2e8f0 !important;
    background: #ffffff !important;
    color: var(--m-muted) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-sizing: border-box !important;
  }

  /* 提交：通栏 */
  .contact-form #submitBtn {
    height: 46px !important;
    min-height: 46px !important;
    margin-top: 2px !important;
    border-radius: 10px !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    box-shadow: 0 3px 12px rgba(201, 162, 39, 0.3) !important;
    border: none !important;
    grid-column: 1 / -1;
  }

  .contact-form #submitBtn:disabled {
    opacity: 0.45 !important;
    box-shadow: none !important;
  }

  .contact-form #submitBtn .btn-arrow {
    margin-left: 4px;
  }

  .contact-info-list {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 8px !important;
    margin-bottom: 12px !important;
  }

  .contact-info-item:nth-child(3),
  .contact-info-item:nth-child(4) {
    grid-column: 1 / -1;
  }

  .contact-info-item {
    flex-direction: row !important;
    align-items: flex-start !important;
    padding: 10px !important;
    gap: 10px !important;
    overflow: visible !important;
    border-radius: 10px !important;
    background: #f8fafc !important;
  }

  .contact-info-item > div:last-child {
    flex: 1;
    min-width: 0;
  }

  .contact-icon {
    width: 36px !important;
    height: 36px !important;
    flex-shrink: 0 !important;
  }

  .contact-icon svg {
    width: 18px !important;
    height: 18px !important;
  }

  .contact .contact-info-item .info-label {
    font-size: 10px !important;
    margin-bottom: 3px !important;
    color: var(--m-muted) !important;
  }

  .contact .contact-info-item .info-value {
    font-size: 13px !important;
    font-weight: 600 !important;
    color: var(--m-text) !important;
    line-height: 1.5 !important;
    word-break: break-word;
    white-space: normal !important;
    -webkit-text-fill-color: var(--m-text) !important;
    background: none !important;
    -webkit-background-clip: border-box !important;
    background-clip: border-box !important;
  }

  .contact .contact-info-item a.info-value {
    color: var(--m-gold-dark) !important;
    -webkit-text-fill-color: var(--m-gold-dark) !important;
  }

  .contact-person {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    padding: 16px 14px !important;
    gap: 12px !important;
    border-radius: 12px !important;
    margin-top: 4px !important;
  }

  .person-avatar {
    width: 56px !important;
    height: 56px !important;
    font-size: 24px !important;
  }

  .person-info {
    flex: none !important;
    width: 100%;
  }

  .person-name {
    font-size: 16px !important;
  }

  .person-title {
    font-size: 12px !important;
  }

  .person-actions {
    flex-direction: column !important;
    width: 100% !important;
    gap: 8px !important;
    position: static !important;
  }

  .person-actions .btn {
    width: 100% !important;
    min-width: 0 !important;
    min-height: 40px !important;
  }

  .person-wechat-popup {
    position: fixed !important;
    left: 50% !important;
    right: auto !important;
    bottom: calc(var(--m-bottom-h) + 56px + env(safe-area-inset-bottom, 0px)) !important;
    transform: translateX(-50%) translateY(8px) !important;
    z-index: 1300 !important;
    width: min(220px, 80vw) !important;
  }

  .person-wechat-popup.visible {
    transform: translateX(-50%) translateY(0) !important;
  }

  .contact {
    padding-bottom: calc(20px + var(--m-bottom-h)) !important;
  }

  /* ---- 页脚紧凑 ---- */
  .footer {
    padding: 20px 0 calc(20px + var(--m-bottom-h) + env(safe-area-inset-bottom, 0px)) !important;
    margin-bottom: 0 !important;
  }

  .footer-company-info {
    flex-direction: column !important;
    gap: 6px !important;
    text-align: center;
    align-items: center !important;
    padding: 0 4px;
  }

  .footer-company .company-name {
    font-size: 11px !important;
    font-weight: 500 !important;
    line-height: 1.55 !important;
    white-space: normal !important;
    word-break: break-word !important;
    display: block;
    width: 100%;
    max-width: 320px;
    color: rgba(255, 255, 255, 0.92) !important;
  }

  .company-separator { display: none !important; }

  .footer-bottom {
    flex-direction: column !important;
    gap: 6px !important;
    text-align: center !important;
    font-size: 10px !important;
  }

  .footer-separator { display: none !important; }

  /* ---- 资讯详情 ---- */
  .news-article {
    padding: 12px !important;
    border-radius: var(--m-radius) !important;
  }

  .article-title {
    font-size: 18px !important;
    line-height: 1.35 !important;
  }

  .article-meta {
    font-size: 10px !important;
    gap: 8px !important;
    flex-wrap: wrap !important;
  }

  .article-content {
    font-size: 14px !important;
    line-height: 1.65 !important;
  }

  .breadcrumb {
    font-size: 10px !important;
    margin-bottom: 8px !important;
    overflow-x: auto;
    white-space: nowrap;
  }

  .related-grid {
    grid-template-columns: 1fr !important;
    gap: 8px !important;
  }
}

/* 桌面隐藏移动壳层 */
@media (min-width: 769px) {
  .m-shell { display: none !important; }
}
