﻿/* ========================================
   恒略律师事务所 - 全局样式
   ======================================== */

@font-face {
  font-family: "HarmonyOS_Sans_SC_Light";
  src: url("../fonts/HarmonyOS_Sans_SC_Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "HarmonyOS_Sans_SC_Regular";
  src: url("../fonts/HarmonyOS_Sans_SC_Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "HarmonyOS_Sans_SC";
  src: url("../fonts/HarmonyOS_Sans_SC_Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "HarmonyOS_Sans_SC_Medium";
  src: url("../fonts/HarmonyOS_Sans_SC_Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "HarmonyOS_Sans_SC_Bold";
  src: url("../fonts/HarmonyOS_Sans_SC_Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Barlow";
  src: url("../fonts/Barlow-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat-Regular";
  src: url("../fonts/Montserrat-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --color-primary: #a42127;
  --color-primary-dark: #8c1b20;
  --color-primary-light: #c43a40;
  --color-text: #222222;
  --color-text-secondary: #666666;
  --color-text-muted: #999999;
  --color-border: #e8e8e8;
  --color-bg: #ffffff;
  --color-bg-warm: #fcf8f4;
  --color-bg-cream: #fbf5ee;
  --color-about: #3e404a;
  --color-footer-text: #555555;
  --container-width: 1160px;
  --header-height: 95px;
  --font-sans: "HarmonyOS_Sans_SC_Regular", "PingFang SC", "Microsoft YaHei", sans-serif;
  --font-medium: "HarmonyOS_Sans_SC_Medium", "PingFang SC", "Microsoft YaHei", sans-serif;
  --font-bold: "HarmonyOS_Sans_SC_Bold", "PingFang SC", "Microsoft YaHei", sans-serif;
  --font-en: Montserrat, Barlow, "Helvetica Neue", Arial, sans-serif;
  --transition: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

ul,
ol {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button,
input,
select,
textarea {
  font-family: inherit;
  border: none;
  outline: none;
  background: none;
}

button {
  cursor: pointer;
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0;
}

/* ========== 区块标题 ========== */
.section-title {
  margin-bottom: 40px;
}

.section-title__en {
  font-family: Montserrat, sans-serif;
  font-weight: 600;
  font-size: 25px;
  color: #000000;
  text-align: left;
  font-style: normal;
  text-transform: none;
  line-height: 1;
}

.section-title__cn {
  font-family: HarmonyOS_Sans_SC_Bold, "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 19px;
  color: #a42127;
  text-align: left;
  font-style: normal;
  text-transform: none;
  margin-top: 6px;
}

/* ========== 按钮 ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  font-size: 15px;
  font-weight: 500;
  transition: all var(--transition);
  border: 1px solid transparent;
}

.btn--primary {
  position: relative;
  background-color: var(--color-primary);
  color: #fff;
  overflow: hidden;
  z-index: 0;
}

.btn--primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/pattern-cloud-dark.png") center / 240px auto repeat;
  opacity: 0.18;
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: -1;
}

.btn--primary:hover {
  background-color: var(--color-primary-dark);
}

.btn--ghost {
  background: #fff;
  border-color: #ddd;
  color: var(--color-text-muted);
}

.btn--ghost:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.btn__arrow {
  width: 6px;
  height: 8px;
  display: inline-block;
  flex-shrink: 0;
  border: none;
  border-radius: 0;
  background: none;
  box-shadow: none;
  outline: none;
}

.btn__arrow::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4px 0 4px 6px;
  border-color: transparent transparent transparent #fff;
}

/* ========== 顶部导航 ========== */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-height);
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  transition: background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.site-header.is-fixed {
  position: fixed;
  background: #ffffff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: none;
  height: var(--header-height);
  opacity: 1;
}

/* 白底导航（服务/律师详情等无全宽 Banner 的页面） */
.site-header--solid {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #ffffff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.site-header--solid .site-nav__link {
  color: #333;
}

.site-header--solid .site-nav__link:hover,
.site-header--solid .site-nav__link.is-active {
  color: var(--color-primary);
}

.site-header--solid .site-nav__link.is-active {
  position: relative;
}

.site-header--solid .site-nav__link.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  background: var(--color-primary);
}

.site-header--solid .site-nav__link .arrow {
  border-top-color: #333;
}

.site-header--solid .site-nav__link:hover .arrow,
.site-header--solid .site-nav__link.is-active .arrow {
  border-top-color: var(--color-primary);
}

.site-header--solid .site-logo__white {
  display: none;
}

.site-header--solid .site-logo__color {
  display: block;
  width: 60px;
  /* height: 18px; */
}

.site-header--solid .site-logo__text {
  display: flex;
}

/* 白底页滚动时保持与初始导航完全一致 */
.site-header--solid.site-header.is-fixed {
  position: sticky;
  background: #ffffff;
  opacity: 1;
  height: var(--header-height);
  box-shadow: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.site-header--solid.site-header.is-fixed .site-nav__link {
  height: var(--header-height);
  padding: 50px 0 32px;
  color: #333;
}

.site-header--solid.site-header.is-fixed .site-nav__link:hover,
.site-header--solid.site-header.is-fixed .site-nav__link.is-active {
  color: var(--color-primary);
}

.site-header--solid.site-header.is-fixed .site-nav__link .arrow {
  border-top-color: #333;
}

.site-header--solid.site-header.is-fixed .site-nav__link:hover .arrow,
.site-header--solid.site-header.is-fixed .site-nav__link.is-active .arrow {
  border-top-color: var(--color-primary);
}

.site-header--solid.site-header.is-fixed .site-logo__white {
  display: none;
}

.site-header--solid.site-header.is-fixed .site-logo__color {
  display: block;
  width: 70px;
  /* height: 18px; */
}

.site-header--solid.site-header.is-fixed .site-logo__text {
  display: flex;
}

.site-header__inner {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0;
  height: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  column-gap: 48px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 36px;
  width: auto;
  max-width: 100%;
  min-width: 0;
}

.site-nav--left {
  justify-self: start;
  justify-content: flex-start;
}

.site-nav--right {
  justify-self: end;
  justify-content: flex-end;
  margin-right: -65px;
}

/* 英文导航：文案更长，收紧间距/字号，避免与中间 Logo 重叠 */
.site-header.lang-en .site-header__inner,
html.lang-en .site-header .site-header__inner {
  max-width: min(100%, 1280px);
  column-gap: 16px;
  padding: 0 20px;
}

.site-header.lang-en .site-nav,
html.lang-en .site-header .site-nav {
  gap: 20px;
}

.site-header.lang-en .site-nav__link,
html.lang-en .site-header .site-nav__link {
  font-size: 15px;
  letter-spacing: -0.01em;
}

.site-header.lang-en .site-nav--right,
html.lang-en .site-header .site-nav--right {
  margin-right: 0;
}

.site-header.lang-en .site-logo,
html.lang-en .site-header .site-logo {
  z-index: 2;
  padding: 0 8px;
  max-width: 280px;
  gap: 6px;
}

.site-header.lang-en .site-logo__white,
html.lang-en .site-header .site-logo__white {
  width: 100px;
}

.site-header.lang-en.is-fixed .site-logo__color,
.site-header.lang-en.site-header--solid .site-logo__color,
.site-header.lang-en.site-header--solid.site-header.is-fixed .site-logo__color,
html.lang-en .site-header.is-fixed .site-logo__color,
html.lang-en .site-header.site-header--solid .site-logo__color {
  width: 70px;
}

/* 英文站名副行：双语对调后需显示（上中下英） */
.site-header.lang-en .site-logo__en,
html.lang-en .site-header .site-logo__en {
  display: block;
}

.site-header.lang-en.is-fixed .site-logo__name,
.site-header.lang-en.site-header--solid .site-logo__name,
html.lang-en .site-header.is-fixed .site-logo__name,
html.lang-en .site-header.site-header--solid .site-logo__name {
  font-size: 15px;
  line-height: 1.25;
  white-space: nowrap;
  max-width: 260px;
}

.site-header.lang-en.is-fixed .site-logo__en,
.site-header.lang-en.site-header--solid .site-logo__en,
html.lang-en .site-header.is-fixed .site-logo__en,
html.lang-en .site-header.site-header--solid .site-logo__en {
  display: block;
  font-size: 11px;
  max-width: 260px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.site-nav__item {
  position: relative;
  flex-shrink: 0;
}

.site-header .site-nav__item--lang {
  position: relative;
  right: auto;
}

.site-nav__link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: HarmonyOS_Sans_SC_Medium, "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 15px;
  color: #ffffff;
  text-align: left;
  font-style: normal;
  text-transform: none;
  box-sizing: border-box;
  height: var(--header-height);
  padding: 50px 0 32px;
  white-space: nowrap;
  transition: color 0.3s ease;
}

.site-header.is-fixed .site-nav__link {
  height: var(--header-height);
  padding: 50px 0 32px;
  color: #333333;
}

.site-nav__link:hover,
.site-nav__link.is-active {
  color: rgba(255, 255, 255, 0.85);
}

.site-nav__link.is-active {
  position: relative;
}

.site-nav__link.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  background: currentColor;
}

.site-header.is-fixed .site-nav__link:hover,
.site-header.is-fixed .site-nav__link.is-active {
  color: #a42127;
}

.site-nav__link .arrow {
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid #fff;
  opacity: 0.8;
  margin-top: 2px;
  transition: border-top-color 0.3s ease;
}

.site-header.is-fixed .site-nav__link .arrow {
  border-top-color: #333333;
}

.site-header.is-fixed .site-nav__link:hover .arrow,
.site-header.is-fixed .site-nav__link.is-active .arrow {
  border-top-color: #a42127;
}

.site-nav__dropdown {
  position: absolute;
  top: calc(100% - 0px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 180px;
  padding: 8px 0;
  background: rgba(164, 33, 39, 0.9);
  box-shadow: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  z-index: 20;
}

.site-nav__dropdown::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid rgba(164, 33, 39, 0.9);
}

.site-nav__item:hover .site-nav__dropdown {
  opacity: 1;
  visibility: visible;
}

.site-nav__dropdown a {
  display: block;
  padding: 12px 20px;
  font-family: HarmonyOS_Sans_SC, "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 15px;
  color: #ffffff;
  text-align: center;
  white-space: nowrap;
  transition: background 0.2s ease;
}

.site-nav__dropdown a:last-child {
  border-bottom: none;
}

.site-nav__dropdown a:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
}

.site-nav__dropdown--services {
  min-width: 200px;
}

.site-logo {
  flex-shrink: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  justify-self: center;
}

.site-logo__white {
  width: 100px;
  /* height: 32px; */
  display: block;
}

.site-logo__color {
  width: 60px;
  /* height: 18px; */
  display: none;
}

.site-logo__text {
  display: none;
  flex-direction: column;
  align-items: center;
  line-height: 1.2;
  text-align: center;
}

.site-logo__name {
  font-family: HarmonyOS_Sans_SC_Bold, "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 17px;
  color: #111111;
}

.site-logo__en {
  font-family: Montserrat-Regular, Montserrat, sans-serif;
  font-size: 10px;
  color: #666666;
  margin-top: 2px;
}

.site-header.is-fixed .site-logo__white {
  display: none;
}

.site-header.is-fixed .site-logo__color {
  display: block;
  width: 60px;
  /* height: 18px; */
}

.site-header.is-fixed .site-logo__text {
  display: flex;
}

.site-nav__search {
  width: 20px;
  height: 20px;
  display: block;
  transition: opacity 0.25s ease;
}

.site-nav__search--red {
  display: none;
}

.site-header.is-fixed .site-nav__search--white {
  display: none;
}

.site-header.is-fixed .site-nav__search--red {
  display: block;
}

.site-header--solid .site-nav__search--white {
  display: none;
}

.site-header--solid .site-nav__search--red {
  display: block;
}

.site-nav__search-btn {
  display: none !important;
}

.site-nav__link:has(.site-nav__search) {
  display: none !important;
}

.site-nav__search-btn:hover .site-nav__search {
  opacity: 0.75;
}

.site-nav__search-btn,
.site-nav__lang-btn {
  border: none;
  background: transparent;
  cursor: pointer;
  font: inherit;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  line-height: 1;
  padding-top: 14px;
}

.site-nav__lang-btn {
  gap: 6px;
}

.site-nav__lang-icon {
  display: block;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: currentColor;
}

.site-nav__lang-text {
  font-family: HarmonyOS_Sans_SC_Medium, "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 15px;
  line-height: 1;
}

.site-nav__lang-btn .arrow {
  margin-top: 1px;
}

.site-nav__dropdown--lang {
  min-width: 120px;
  width: max-content;
  left: -25px;
  right: 0;
  transform: none;
}

.site-nav__dropdown--lang::before {
  left: auto;
  right: 55px;
  transform: none;
}

.site-nav__dropdown--lang a.is-active {
  background: rgba(255, 255, 255, 0.12);
  font-weight: 600;
}

.site-nav__item--lang:not(:has(.site-nav__dropdown a)) {
  display: none;
}

/* ========== 全站搜索弹层 ========== */
.site-search {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.site-search.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.site-search__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
}

.site-search__panel {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
}

.site-search__close {
  position: absolute;
  top: -48px;
  right: 0;
  width: 36px;
  height: 36px;
  border: none;
  background: transparent;
  cursor: pointer;
}

.site-search__close::before,
.site-search__close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 2px;
  background: #ffffff;
}

.site-search__close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.site-search__close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.site-search__form {
  display: flex;
  align-items: stretch;
  gap: 0;
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
}

.site-search__input {
  flex: 1;
  min-width: 0;
  height: 56px;
  padding: 0 20px;
  border: none;
  font-family: HarmonyOS_Sans_SC, "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 16px;
  color: #333333;
}

.site-search__input:focus {
  outline: none;
}

.site-search__input::placeholder {
  color: #bbbbbb;
}

.site-search__submit {
  flex-shrink: 0;
  width: 64px;
  border: none;
  background: #a42127;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}

.site-search__submit:hover {
  background: #8b1b20;
}

.site-search__submit img {
  width: 35px;
  height: 35px;
}

body.search-open {
  overflow: hidden;
}

/* 移动端菜单按钮 */
.nav-toggle {
  display: none;
  width: 32px;
  height: 24px;
  flex-direction: column;
  justify-content: space-between;
  padding: 0;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: #fff;
  border-radius: 1px;
  transition: background 0.3s ease;
}

.site-header.is-fixed .nav-toggle span {
  background: #333333;
}

.site-header--solid .nav-toggle span {
  background: #333333;
}

/* ========== 右侧悬浮客服 ========== */
.float-sidebar {
  position: fixed;
  right: 41px;
  top: 50%;
  transform: translateY(-50%) translateX(100%);
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  width: 48px;
  height: 211px;
  padding: 4px 0;
  background: var(--color-primary);
  border-radius: 24px;
  overflow: visible;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  box-sizing: border-box;
  transition: transform 0.35s ease, opacity 0.35s ease, visibility 0.35s ease;
}

.float-sidebar.is-visible {
  transform: translateY(-50%) translateX(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.float-sidebar__item {
  position: relative;
  width: 38px;
  height: 68px;
  flex: 0 0 68px;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border-radius: 19px;
  overflow: visible;
  box-sizing: border-box;
  z-index: 0;
}

/* 每块划入高亮：38×68 / 圆角19 / 不透明度23% */
.float-sidebar__item::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 19px;
  background: #fff;
  opacity: 0;
  transform: translateX(100%);
  transition: transform 0.3s ease, opacity 0.3s ease;
  pointer-events: none;
  z-index: 0;
}

.float-sidebar__item:hover::before {
  opacity: 0.23;
  transform: translateX(0);
}

/* 微信项：悬停桥梁，避免移向二维码时断开 */
.float-sidebar__item:has(.float-sidebar__qr)::after {
  content: "";
  position: absolute;
  right: 100%;
  top: 0;
  width: 12px;
  height: 100%;
}

.float-sidebar__item span {
  position: relative;
  z-index: 1;
  font-family: HarmonyOS_Sans_SC, "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 13px;
  line-height: 13px;
  letter-spacing: 0;
  color: #fff;
  text-align: left;
  opacity: 1;
}

.float-sidebar__item:last-child {
  border-bottom: none;
}

.float-sidebar__item > img {
  position: relative;
  z-index: 1;
  width: 14px;
  height: 14px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.float-sidebar__qr {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  width: 95px;
  height: 95px;
  padding: 8px;
  background-color: #fff;
  background-image: url("../images/qrcode-wechat.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 79px 79px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 30;
  box-sizing: border-box;
}

.float-sidebar__item:hover .float-sidebar__qr {
  opacity: 1;
  visibility: visible;
}

/* 英文：右侧固定栏边距 20，并加宽以容纳更长文案 */
html.lang-en .float-sidebar {
  right: 20px;
  width: 56px;
  height: auto;
  min-height: 230px;
  padding: 8px 0;
  gap: 4px;
  border-radius: 28px;
}

html.lang-en .float-sidebar__item {
  width: 48px;
  height: auto;
  flex: 0 0 auto;
  min-height: 72px;
  padding: 6px 2px;
  gap: 6px;
  border-radius: 24px;
}

html.lang-en .float-sidebar__item::before {
  border-radius: 24px;
}

html.lang-en .float-sidebar__item span {
  font-size: 11px;
  line-height: 1.25;
  text-align: center;
}

html.lang-en .float-sidebar__item > img {
  width: 16px;
  height: 16px;
}

/* ========== 手机端底部双按钮（默认隐藏，≤768 显示） ========== */
.mobile-action-bar {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: -1px;
  z-index: 300;
  height: 56px;
  padding-bottom: env(safe-area-inset-bottom, 0px);
  background: #fff;
  box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.08);
  box-sizing: content-box;
}

.mobile-action-bar__btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 56px;
  margin: 0;
  padding: 0;
  border: 0;
  font-family: HarmonyOS_Sans_SC_Medium, "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 15px;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.mobile-action-bar__btn--tel {
  background: var(--color-primary);
}

.mobile-action-bar__btn--chat {
  background: var(--color-primary);
}

.mobile-action-bar__btn.is-disabled {
  opacity: 0.55;
  pointer-events: none;
}

.mobile-action-bar__icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.mobile-action-bar__icon--tel {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23fff'%3E%3Cpath d='M6.62 10.79a15.15 15.15 0 006.59 6.59l2.2-2.2a1 1 0 011.01-.24c1.12.37 2.33.57 3.58.57a1 1 0 011 1V20a1 1 0 01-1 1C10.4 21 3 13.6 3 4a1 1 0 011-1h3.5a1 1 0 011 1c0 1.25.2 2.46.57 3.58a1 1 0 01-.25 1.02l-2.2 2.19z'/%3E%3C/svg%3E");
}

.mobile-action-bar__icon--chat {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23fff'%3E%3Cpath d='M20 2H4a2 2 0 00-2 2v18l4-4h14a2 2 0 002-2V4a2 2 0 00-2-2zm-2 12H6v-2h12v2zm0-3H6V9h12v2zm0-3H6V6h12v2z'/%3E%3C/svg%3E");
}

/* ========== 页脚 ========== */
.site-footer {
  background-color: #f7f5f2;
  background-image: url("../images/pattern-footer.png");
  background-repeat: repeat;
  padding-top: 70px;
}

/* 内页页脚顶部红线（首页不加） */
body:not(.page-home) .site-footer {
  border-top: 2px solid #a42127;
}

.site-footer__main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  padding-bottom: 48px;
}

.footer-brand {
  flex-shrink: 0;
  width: 175px;
}

.footer-brand__logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}

.footer-brand__logo img {
  width: 71px;
  height: 32px;
  margin: 0 auto;
}

.footer-brand__name {
  font-family: HarmonyOS_Sans_SC_Bold, "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 19px;
  color: #111111;
  text-align: center;
  font-style: normal;
  text-transform: none;
  letter-spacing: 0;
  line-height: normal;
}

.footer-brand__en {
  font-family: Montserrat-Regular, Montserrat, sans-serif;
  font-weight: 400;
  font-size: 13px;
  color: #111111;
  text-align: center;
  font-style: normal;
  text-transform: none;
  letter-spacing: 0;
  line-height: normal;
  margin-top: 4px;
}

.footer-col {
  flex-shrink: 0;
}

.footer-col__title {
  font-family: HarmonyOS_Sans_SC_Bold, "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 13px;
  color: #000000;
  text-align: left;
  font-style: normal;
  text-transform: none;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-col__title::before {
  content: "";
  width: 0;
  height: 0;
  border-left: 5px solid #a42127;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  flex-shrink: 0;
}

.footer-col__title a {
  color: inherit;
}

.footer-col__title a:hover {
  color: #a42127;
}

.footer-col__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-left: 11px;
}

.footer-col__list a {
  font-family: HarmonyOS_Sans_SC, "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 14px;
  color: #333333;
  line-height: 25px;
  text-align: left;
  font-style: normal;
  text-transform: none;
}

.footer-col__list a:hover {
  color: #a42127;
}

.footer-col--stack {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.footer-qr {
  background: #fff;
  padding: 14px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  text-align: center;
  flex-shrink: 0;
  align-self: flex-start;
  width: 140px;
  box-sizing: border-box;
}

.footer-qr img {
  width: 112px;
  height: 112px;
  margin: 0 auto 12px;
}

.footer-qr p {
  font-family: HarmonyOS_Sans_SC, "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 13px;
  color: #666666;
  line-height: 25px;
  font-style: normal;
  text-transform: none;
  text-align: center;
}

.site-footer__bottom {
  border-top: 1px solid #e8e4df;
  padding: 18px 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-footer__bottom p,
.back-top {
  font-family: HarmonyOS_Sans_SC, "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 13px;
  color: #666666;
  line-height: 25px;
  text-align: left;
  font-style: normal;
  text-transform: none;
}

.back-top {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.back-top:hover {
  color: #a42127;
}

.back-top__icon {
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-bottom: 5px solid currentColor;
}

/* ========== 内页通用 Banner ========== */
.page-banner {
  position: relative;
  height: 441px;
  min-height: 320px;
  display: flex;
  align-items: center;
  background: #1a1a1a center / cover no-repeat;
  overflow: hidden;
}

.page-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(0, 0, 0, 0.28) 50%,
    rgba(0, 0, 0, 0.18) 100%
  );
  pointer-events: none;
}

.page-banner__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding-top: 80px;
}

.page-banner__slogan {
  margin: 0 0 12px;
  font-family: HarmonyOS_Sans_SC_Bold, "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 38px;
  color: #a42127;
  line-height: 48px;
  text-align: left;
}

.page-banner__title {
  font-family: HarmonyOS_Sans_SC_Bold, "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 38px;
  color: #ffffff;
  line-height: 48px;
  text-align: left;
  font-style: normal;
  text-transform: none;
  margin-bottom: 20px;
}

.page-banner__desc {
  font-family: HarmonyOS_Sans_SC, "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 16px;
  color: #ffffff;
  line-height: 25px;
  text-align: left;
  font-style: normal;
  text-transform: none;
  max-width: 640px;
}

/* ========== 面包屑 ========== */
.breadcrumb {
  display: flex;
  align-items: center;
  padding: 22px 0 54px;
  font-family: HarmonyOS_Sans_SC, "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 15px;
  line-height: 22px;
  letter-spacing: 0;
  text-align: left;
  font-style: normal;
  text-transform: none;
}

.breadcrumb a {
  color: #666666;
  font-family: HarmonyOS_Sans_SC, "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 15px;
  line-height: 22px;
  letter-spacing: 0;
}

.breadcrumb a:hover {
  color: var(--color-primary);
}

.breadcrumb__sep {
  margin: 0 8px;
  color: #666666;
  font-size: 15px;
  line-height: 22px;
}

.breadcrumb__current {
  color: #000000;
  font-family: HarmonyOS_Sans_SC, "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 15px;
  line-height: 22px;
  letter-spacing: 0;
}

/* ========== 分页 ========== */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 0 91px;
}

.pagination a,
.pagination span {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #666;
  border-radius: 50%;
  transition: all var(--transition);
}

.pagination a:hover {
  color: var(--color-primary);
}

.pagination .is-active {
  background: var(--color-primary);
  color: #fff;
}

.pagination span:not(.is-active) {
  color: #999;
}

.pagination__next {
  font-size: 16px;
}

/* ========== 通用表单 ========== */
.form-section {
  background: #fff;
  padding: 0 0 82px;
}

.form-section .container {
  background: #fbf5ee;
  padding: 46px 60px 79px;
  box-sizing: border-box;
}

.form-section__title {
  font-family: HarmonyOS_Sans_SC_Bold, "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 25px;
  color: #111111;
  line-height: 32px;
  text-align: left;
  font-style: normal;
  text-transform: none;
  margin-bottom: 29px;
}

.form-section__desc {
  font-family: HarmonyOS_Sans_SC, "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 16px;
  color: #000000;
  line-height: 22px;
  text-align: left;
  font-style: normal;
  text-transform: none;
  margin-bottom: 52px;
}

.consult-form {
  max-width: none;
  width: 100%;
  margin: 0;
}

.consult-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 40px;
  margin-bottom: 24px;
}

.consult-form__row--full {
  grid-template-columns: 1fr;
}

.consult-form__field label {
  display: block;
  font-family: HarmonyOS_Sans_SC, "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 15px;
  color: #362d40;
  margin-bottom: 10px;
  line-height: normal;
  text-align: left;
  font-style: normal;
  text-transform: none;
}

.consult-form__field label em {
  color: #362d40;
  font-style: normal;
  margin-left: 4px;
  font-size: 13px;
}

.consult-form__field input,
.consult-form__field select,
.consult-form__field textarea {
  width: 100%;
  height: 48px;
  padding: 0 16px;
  background: #fff;
  border: 1px solid #e5e5e5;
  font-size: 14px;
  color: #333;
  box-sizing: border-box;
}

.consult-form__field input::placeholder,
.consult-form__field textarea::placeholder {
  color: #bbbbbb;
}

.consult-form__field textarea {
  height: 160px;
  padding: 14px 16px;
  resize: vertical;
}

.consult-form__field select {
  appearance: none;
  background-image: url("../images/arrow-drop-down-fill.png");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 12px;
  padding-right: 36px;
  color: #999;
}

.consult-form__agree {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: HarmonyOS_Sans_SC, "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 14px;
  color: #666666;
  line-height: normal;
  letter-spacing: 0;
  text-align: left;
  font-style: normal;
  text-transform: none;
  margin: 8px 0 36px;
}

.consult-form__agree input {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.consult-form__agree a {
  color: #a42127;
  font-family: HarmonyOS_Sans_SC, "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 14px;
  line-height: normal;
  letter-spacing: 0;
}

.consult-form__agree a:hover {
  text-decoration: underline;
}

.consult-form__submit {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 236px;
  height: 44px;
  margin: 0 auto;
  padding: 0;
  background-color: #a42127;
  color: #ffffff;
  font-family: HarmonyOS_Sans_SC_Bold, "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 15px;
  text-align: left;
  font-style: normal;
  text-transform: none;
  overflow: hidden;
  z-index: 0;
  box-sizing: border-box;
  transition: background 0.3s ease;
}

.consult-form__submit::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/pattern-cloud-dark.png") center / 240px auto repeat;
  opacity: 0.18;
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: -1;
}

.consult-form__submit:hover {
  background-color: #8c1b20;
}

/* ========== 手风琴区块 ========== */
.accordion {
  border-top: 1px solid #ececec;
}

.accordion__item {
  border-bottom: 2px solid #ececec;
}

.accordion__item:last-child {
  border-bottom: none;
}

.accordion__head {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  font-family: HarmonyOS_Sans_SC_Bold, "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 18px;
  color: var(--color-primary);
  text-align: left;
}

.accordion__head img {
  width: 11px;
  height: 8px;
  transition: transform 0.3s ease;
}

.accordion__item.is-open .accordion__head img {
  transform: rotate(180deg);
}

.accordion__body {
  display: none;
  padding: 0 10px 28px 0;
}

.accordion__item.is-open .accordion__body {
  display: block;
}

/* ========== 移动端导航抽屉 ========== */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-nav.is-open {
  opacity: 1;
  visibility: visible;
}

.mobile-nav__panel {
  position: absolute;
  top: 0;
  left: 0;
  width: min(250px, 86vw);
  height: 100%;
  background: #ffffff;
  padding: 24px 20px 40px;
  box-sizing: border-box;
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

.mobile-nav.is-open .mobile-nav__panel {
  transform: translateX(0);
}

.mobile-nav__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 28px;
  margin-bottom: 20px;
}

.mobile-nav__close {
  position: relative;
  width: 28px;
  height: 28px;
  margin: 0 0 0 auto;
  flex-shrink: 0;
  display: block;
}

.mobile-nav__close span {
  position: absolute;
  left: 4px;
  top: 13px;
  width: 20px;
  height: 2px;
  background: #333;
}

.mobile-nav__close span:first-child {
  transform: rotate(45deg);
}

.mobile-nav__close span:last-child {
  transform: rotate(-45deg);
}

.mobile-nav__item {
  border-bottom: 1px solid #f0f0f0;
}

.mobile-nav__link {
  display: block;
  padding: 16px 0;
  font-family: HarmonyOS_Sans_SC_Medium, "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 15px;
  color: #222;
}

.mobile-nav__link.is-active {
  color: #a42127;
}

.mobile-nav__sub {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0 0 12px 12px;
}

.mobile-nav__sub a {
  display: block;
  padding: 8px 0;
  font-size: 15px;
  color: #666;
}

.mobile-nav__sub a:hover {
  color: #a42127;
}

.mobile-nav__link--label {
  cursor: default;
  color: #222;
}

.mobile-nav__lang-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 28px;
}

.mobile-nav__lang-label .site-nav__lang-icon {
  flex-shrink: 0;
  color: #333;
}

.mobile-nav__lang-label .site-nav__lang-text {
  font-family: HarmonyOS_Sans_SC_Medium, "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 15px;
  line-height: 1;
}

.mobile-nav__sub--lang {
  padding: 0 0 12px;
  margin-bottom: 4px;
  border-bottom: 1px solid #f0f0f0;
}

.mobile-nav__sub--lang a.is-active {
  color: #a42127;
  font-weight: 600;
}

body.nav-open {
  overflow: hidden;
}

/* ========== 响应式 ========== */
@media (max-width: 1024px) {
  .site-header__inner,
  .container {
    padding: 0 20px;
  }

  .site-header__inner {
    column-gap: 28px;
  }

  .site-nav {
    gap: 24px;
  }

  .site-logo {
    margin: 0;
  }

  .site-footer__main {
    flex-wrap: wrap;
    gap: 28px;
  }

  .float-sidebar {
    display: none;
  }

  .page-banner__title {
    font-size: 32px;
  }

  .page-banner__slogan {
    font-size: 32px;
    line-height: 40px;
  }

  .form-section .container {
    padding: 36px 24px 48px;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 78px;
  }

  .mobile-nav {
    display: block;
  }

  .site-header__inner {
    display: grid;
    grid-template-columns: 36px minmax(0, 1fr) 36px;
    align-items: center;
    gap: 4px;
    padding: 0 10px;
  }

  .nav-toggle {
    display: flex;
    grid-column: 1;
    grid-row: 1;
    z-index: 2;
  }

  .site-nav--left {
    display: none;
  }

  .site-logo {
    grid-column: 2;
    grid-row: 1;
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
    gap: 2px;
  }

  .site-logo__text {
    display: none;
  }

  .site-header--solid .site-logo__text,
  .site-header.is-fixed .site-logo__text {
    display: flex !important;
  }

  .site-logo__name {
    font-size: 14px;
    white-space: nowrap;
  }

  .site-logo__en {
    font-size: 9px;
    white-space: nowrap;
  }

  .site-logo__white {
    width: 100px;
    height: auto;
  }

  .site-header--solid .site-logo__color,
  .site-header.is-fixed .site-logo__color,
  .site-header--solid.site-header.is-fixed .site-logo__color {
    width: 48px;
    height: auto;
  }

  .site-nav--right {
    display: flex;
    grid-column: 3;
    grid-row: 1;
    justify-content: flex-end;
    gap: 0;
    flex: none;
    margin-right: 0;
  }

  .site-nav--right .site-nav__item {
    display: none;
  }

  .site-nav--right .site-nav__item--lang {
    display: none;
  }

  .site-nav--right > .site-nav__link,
  .site-header.is-fixed .site-nav--right > .site-nav__link,
  .site-header--solid.site-header.is-fixed .site-nav--right > .site-nav__link {
    height: var(--header-height);
    padding: 0;
    display: inline-flex;
    align-items: center;
  }

  .site-nav--right > .site-nav__search-btn,
  .site-header.is-fixed .site-nav--right > .site-nav__search-btn,
  .site-header--solid.site-header.is-fixed .site-nav--right > .site-nav__search-btn {
    display: none !important;
  }

  .site-nav--right > .site-nav__link.is-active::after {
    display: none;
  }

  .section-title__en {
    font-size: 22px;
  }

  .section-title__cn {
    font-size: 22px;
  }

  .breadcrumb {
    padding: 18px 0 28px;
    flex-wrap: wrap;
  }

  .page-banner {
    min-height: 220px;
  }

  .page-banner__inner {
    padding: 100px 20px 40px;
  }

  .page-banner__title {
    font-size: 28px;
  }

  .page-banner__slogan {
    font-size: 28px;
    line-height: 36px;
  }

  .page-banner__desc {
    font-size: 15px;
    line-height: 26px;
  }

  .site-footer {
    padding-top: 48px;
  }

  .site-footer__main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px 20px;
    align-items: start;
  }

  .footer-brand {
    display: none;
  }

  .footer-col,
  .footer-col--stack {
    width: auto;
  }

  .footer-qr {
    justify-self: start;
    align-self: start;
  }

  .site-footer__bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .pagination {
    flex-wrap: wrap;
    padding: 32px 0 60px;
  }

  .form-section {
    padding-bottom: 48px;
  }

  .form-section .container {
    padding: 28px 16px 40px;
  }

  .consult-form__row {
    flex-direction: column;
    gap: 16px;
  }

  .btn {
    max-width: 100%;
  }

  /* 手机端底部固定双按钮 */
  .mobile-action-bar {
    display: flex;
  }

  body {
    padding-bottom: calc(56px + env(safe-area-inset-bottom, 0px));
  }

  .pagination {
    padding-bottom: 80px;
  }

  .ls-select-mask {
    position: fixed;
    inset: 0;
    z-index: 1200;
    background: rgba(0, 0, 0, 0.35);
  }

  .ls-select-panel {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1201;
    width: min(75vw, 300px);
    max-width: 75vw;
    max-height: 75vh;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-sizing: border-box;
  }

  .ls-select-panel__hd {
    flex-shrink: 0;
    padding: 10px 12px;
    font-size: 15px;
    font-weight: 600;
    color: #333;
    border-bottom: 1px solid #ececec;
    line-height: 1.3;
  }

  .ls-select-panel__list {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    max-height: calc(75vh - 42px);
  }

  .ls-select-panel__item {
    display: block;
    width: 100%;
    padding: 8px 12px;
    border: 0;
    background: transparent;
    text-align: left;
    font-size: 14px;
    line-height: 1.35;
    color: #333;
    cursor: pointer;
    box-sizing: border-box;
  }

  .ls-select-panel__item.is-active {
    color: #a42127;
    background: #fff5f5;
  }

  .ls-select-panel__item + .ls-select-panel__item {
    border-top: 1px solid #f3f3f3;
  }
}


/* [mobile bump] base 10-13px +2px on phone */
@media (max-width: 768px) {
  .site-nav__dropdown a { font-size: 15px; }
  .site-logo__en { font-size: 14px; }
  .float-sidebar__item span { font-size: 15px; }
  .footer-brand__en { font-size: 15px; }
  .footer-col__title { font-size: 15px; }
  .footer-col__list a { font-size: 14px; }
  .footer-qr p { font-size: 15px; }
  .site-footer__bottom p, .back-top { font-size: 15px; }
  .breadcrumb { font-size: 15px; }
  .breadcrumb a { font-size: 15px; }
  .breadcrumb__sep { font-size: 15px; }
  .breadcrumb__current { font-size: 15px; }
  .consult-form__field label { font-size: 15px; }
  .consult-form__field label em { font-size: 15px; }
  .consult-form__agree { font-size: 14px; }
  .consult-form__agree a { font-size: 14px; }
  .consult-form__submit { font-size: 15px; }
  .mobile-nav__sub a { font-size: 15px; }
}

/* ========================================
   富文本正文自适应（微信公众号粘贴等）
   ======================================== */
.article-body,
.svc-intro,
.lawyer-bio,
.honor-detail__body {
  max-width: 100%;
  overflow-x: hidden;
  word-wrap: break-word;
  overflow-wrap: anywhere;
}

.article-body img,
.svc-intro img,
.lawyer-bio img,
.honor-detail__body img,
.article-body video,
.svc-intro video,
.lawyer-bio video,
.honor-detail__body video {
  max-width: 100% !important;
  height: auto !important;
}

.article-body section,
.article-body div,
.article-body p,
.article-body span,
.article-body table,
.article-body tbody,
.article-body thead,
.article-body tr,
.article-body td,
.article-body th,
.svc-intro section,
.svc-intro div,
.svc-intro p,
.svc-intro span,
.svc-intro table,
.svc-intro td,
.svc-intro th,
.lawyer-bio section,
.lawyer-bio div,
.lawyer-bio p,
.lawyer-bio span,
.lawyer-bio table,
.lawyer-bio td,
.lawyer-bio th,
.honor-detail__body section,
.honor-detail__body div,
.honor-detail__body p,
.honor-detail__body span,
.honor-detail__body table,
.honor-detail__body td,
.honor-detail__body th {
  max-width: 100% !important;
  box-sizing: border-box !important;
}

.article-body table,
.svc-intro table,
.lawyer-bio table,
.honor-detail__body table {
  width: 100% !important;
  border-collapse: collapse;
  word-break: break-word;
}

