:root {
  --law-blue: #004276;
  --law-gold: #c6a667;
  --bg-gray: #f8f9fa;
}

body {
  font-family: "Microsoft YaHei", sans-serif;
  margin: 0;
  padding: 0;
  background: #fff;
  color: #333;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

a {
  text-decoration: none;
  color: inherit;
  transition: 0.2s;
}

/* 固定版心：保持与原页面一致的 1200px */
.container {
  width: 1200px;
  max-width: 1200px;
  margin: 0 auto;
}

section {
  padding: 40px 0;
}

/* --- Header & Nav --- */
header {
  width: 1200px;
  margin: 0 auto;
  height: 110px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-text h1 {
  font-size: 28px;
  color: var(--law-blue);
  margin: 0;
}

.logo-text {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.site-logo {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  /* background: rgba(0, 66, 118, 0.06); */
  flex: 0 0 auto;
}

.site-logo img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  display: block;
}

.site-title {
  margin: 0;
  font-size: 28px;
  color: var(--law-blue);
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
}

.search-bar {
  display: flex;
  border: 2px solid var(--law-blue);
  border-radius: 4px;
  overflow: hidden;
}

.search-bar input {
  border: none;
  padding: 10px;
  width: 250px;
  outline: none;
}

.search-bar button {
  background: var(--law-blue);
  color: #fff;
  border: none;
  padding: 0 20px;
  cursor: pointer;
}

/* --- Nav 导航条 --- */
.law-nav {
  background: var(--law-blue);
  border-bottom: 4px solid var(--law-gold);
  position: sticky;
  top: 0;
  z-index: 2000;
}

.nav-bar {
  width: 1200px;
  margin: 0 auto;
  position: relative;
}

.nav-container {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-item {
  position: relative;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
}

.nav-item>a,
.nav-item>.nav-link {
  display: block;
  padding: 15px 25px;
  color: #fff;
  text-decoration: none;
}

.nav-item:hover,
.nav-item.active {
  background: #005696;
}

.nav-item.active>a,
.nav-item.active>.nav-link {
  font-weight: 700;
}

/* 下拉菜单 */
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  display: none;
  min-width: 180px;
  border-top: 2px solid var(--law-gold);
  list-style: none;
  padding: 0;
  margin: 0;
  z-index: 2100;
}

.nav-item:hover .dropdown {
  display: block;
}

.dropdown li {
  border-bottom: 1px solid #eee;
}

.dropdown li a {
  display: block;
  padding: 12px 20px;
  color: #444;
  font-size: 15px;
  text-decoration: none;
}

.dropdown li:hover a,
.dropdown li.active a {
  background: #005696;
  color: #fff;
}

/* 汉堡按钮（桌面端隐藏） */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 14px 15px;
  position: relative;
  z-index: 2200;
}

.nav-toggle-icon,
.nav-toggle-icon::before,
.nav-toggle-icon::after {
  display: block;
  width: 24px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.nav-toggle-icon::before,
.nav-toggle-icon::after {
  content: "";
  position: absolute;
  left: 15px;
}

.nav-toggle-icon::before {
  top: 8px;
}

.nav-toggle-icon::after {
  bottom: 8px;
}

/* 打开态动画 */
.nav-toggle.open .nav-toggle-icon {
  background: transparent;
}

.nav-toggle.open .nav-toggle-icon::before {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.nav-toggle.open .nav-toggle-icon::after {
  bottom: auto;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}

/* --- 通用标题 --- */
.section-header {
  border-bottom: 2px solid var(--law-blue);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.section-title {
  font-size: 18px;
  font-weight: bold;
  color: var(--law-blue);
  position: relative;
  padding: 6px 14px 6px 18px;
  border-radius: 6px;
  background: linear-gradient(90deg, rgba(198, 166, 103, 0.20) 0%, rgba(198, 166, 103, 0.10) 45%, rgba(198, 166, 103, 0) 100%);
  transition: background-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.section-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 6px;
  height: 22px;
  background: var(--law-gold);
}

.section-title.active,
.section-title.is-active,
.section-header.active .section-title {
  background: linear-gradient(90deg, rgba(198, 166, 103, 0.38) 0%, rgba(198, 166, 103, 0.16) 55%, rgba(198, 166, 103, 0) 100%);
  box-shadow: 0 8px 18px rgba(0, 66, 118, 0.10);
  transform: translateY(-1px);
}

.section-more {
  font-size: 12px;
  color: #999;
}

.section-more:hover {
  color: var(--law-blue);
}

/* 区块内 Tab（最新资讯 / 通知公告，选中态与 .section-title 一致） */
.inline-tabs {
  display: flex;
  align-items: flex-end;
  gap: 8px;
}

.dynamic-right .tab-btn {
  margin: 0;
  padding: 6px 14px 6px 12px;
  font-size: 16px;
  font-family: inherit;
  font-weight: normal;
  color: #666;
  background: transparent;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: color 0.2s, background 0.2s, box-shadow 0.2s, transform 0.2s;
}

.dynamic-right .tab-btn:hover {
  color: var(--law-blue);
  background: rgba(0, 66, 118, 0.06);
}

.dynamic-right .tab-btn.active {
  position: relative;
  font-size: 18px;
  font-weight: bold;
  color: var(--law-blue);
  padding: 6px 14px 6px 18px;
  border-radius: 6px;
  background: linear-gradient(90deg, rgba(198, 166, 103, 0.38) 0%, rgba(198, 166, 103, 0.16) 55%, rgba(198, 166, 103, 0) 100%);
  box-shadow: 0 8px 18px rgba(0, 66, 118, 0.10);
  transform: translateY(-1px);
}

.dynamic-right .tab-btn.active::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 6px;
  height: 22px;
  background: var(--law-gold);
}

.dynamic-news-header {
  align-items: flex-end;
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

/* --- 列表项 (对齐+截断修正) --- */
.news-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px dashed #ddd;
}

.news-item a {
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-right: 20px;
  min-width: 0;
}

.news-item span {
  color: #999;
  font-size: 14px;
  white-space: nowrap;
}

/* --- Section 1: 动态新闻 (宽度修正点) --- */
.news-row {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

.slider-box {
  width: 500px;
  height: 450px;
  flex-shrink: 0;
  background: #eee;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}

.slider-caption {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 15px;
  box-sizing: border-box;
}

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

/* --- Section 2: 行业服务图文卡片 --- */
.service-icons {
  background: #f8f9fa;
}

.icon-grid {
  display: flex;
  justify-content: space-between;
  gap: 15px;
}

.icon-item {
  flex: 1;
  background: #fff;
  border-bottom: 3px solid transparent;
  transition: 0.3s;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.icon-item:hover {
  border-color: var(--law-blue);
  border-bottom-color: var(--law-gold);
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.icon-img-box {
  width: 100%;
  height: 100px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-img-box img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 56px;
  object-fit: contain;
  display: block;
}

.icon-info {
  padding: 0px 5px 15px 5px;
  text-align: center;
}

.icon-name {
  font-size: 16px;
  font-weight: bold;
  color: var(--law-blue);
}

/* --- Section 3: 公告双列（法律政策 / 研究成果） --- */
.announcement-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.announcement-grid > div {
  width: 100%;
  min-width: 0;
}

/* --- Section 4: 机构推荐 --- */
.organization {
  background: #f8f9fa;
}

.org-toolbar {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 20px;
}

.org-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.org-tab-btn {
  margin: 0;
  padding: 8px 22px;
  font-size: 15px;
  font-family: inherit;
  color: #555;
  background: #fff;
  border: 1px solid #dde3ea;
  border-radius: 999px;
  cursor: pointer;
  transition: color 0.2s, background 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.org-tab-btn:hover {
  color: var(--law-blue);
  border-color: rgba(0, 66, 118, 0.35);
}

.org-tab-btn.active {
  color: #fff;
  background: var(--law-blue);
  border-color: var(--law-blue);
  box-shadow: 0 2px 8px rgba(0, 66, 118, 0.25);
}

.org-panels {
  min-height: 1px;
}

.org-panel {
  display: none;
}

.org-panel.active {
  display: block;
}

.org-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.org-card {
  text-align: center;
}

.org-img {
  width: 100%;
  aspect-ratio: 1;
  background: #eee;
  border-radius: 4px;
  object-fit: cover;
  margin-bottom: 12px;
  border: 1px solid #eee;
  display: block;
}

.org-name {
  font-size: 14px;
  font-weight: bold;
  color: #444;
}

/* 首页机构推荐：对齐 crc/memberAll 的卡片样式 */
.member-grid-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.member-grid-empty {
  grid-column: 1 / -1;
}

.member-card-home {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 12px;
  padding: 12px;
  border: 1px solid #eee;
  border-radius: 6px;
  background: #fff;
  text-decoration: none;
  color: inherit;
  transition: background 0.2s ease, box-shadow 0.2s ease;
  min-height: 100%;
}

.member-card-home:hover {
  background: #fdf2f2;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  color: inherit;
  text-decoration: none;
}

.member-card-home__img {
  flex-shrink: 0;
  width: 100px;
  height: 100px;
  border-radius: 4px;
  overflow: hidden;
  background: #eee;
}

.member-card-home__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.2s ease;
}

.member-card-home:hover .member-card-home__img img {
  transform: scale(1.05);
}

.member-card-home__body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  text-align: left;
}

.member-card-home__title {
  font-size: 1rem;
  color: inherit;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 6px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.member-card-home__desc {
  font-size: 14px;
  color: #888;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

@media (max-width: 767.98px) {
  .member-grid-list {
    grid-template-columns: 1fr;
  }

  .member-card-home {
    flex-direction: row;
    align-items: stretch;
    gap: 10px;
  }

  .member-card-home__img {
    flex-shrink: 0;
    width: 96px;
    height: 96px;
  }

  .member-card-home__body {
    flex-direction: column;
    justify-content: flex-start;
    min-width: 0;
  }
}

/* --- Footer --- */
footer {
  background: var(--law-blue);
  color: #fff;
  padding: 40px 0 0 0;
}

.footer-container {
  width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}

.footer-left {
  flex: 1.5;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  padding-right: 40px;
  font-size: 14px;
  line-height: 2;
}

.footer-left p {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin: 0 0 6px;
}

.footer-left p:last-child {
  margin-bottom: 0;
}

.footer-label {
  flex: 0 0 auto;
  color: var(--law-gold);
  font-weight: 700;
  margin-right: 8px;
}

.footer-val {
  flex: 1;
  min-width: 0;
  text-align: left;
}

.footer-right {
  flex: 1;
  padding-left: 40px;
  display: flex;
  gap: 30px;
}

.contact-info {
  font-size: 14px;
  line-height: 2;
}

.footer-bottom {
  height: 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-bottom-inner {
  width: 1200px;
  max-width: 100%;
  margin: 0 auto;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  text-align: center;
}

.footer-bottom-inner img {
  width: 16px;
  height: 16px;
  vertical-align: middle;
  object-fit: contain;
}

/* =========================
   内页通用（列表/详情）
   ========================= */
.inner-page {
  background: #fff;
}

.inner-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 10px;
  font-size: 16px;
  color: #666;
  padding: 18px 0 10px;
}

.inner-breadcrumb .breadcrumb-icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  object-fit: contain;
  display: block;
}

.inner-breadcrumb .breadcrumb-trail {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  min-width: 0;
}

.inner-breadcrumb a {
  color: #666;
}

.inner-breadcrumb a:hover {
  color: var(--law-blue);
}

.inner-breadcrumb .sep {
  margin: 0 8px;
  color: #999;
}

.inner-breadcrumb .current {
  color: var(--law-blue);
  font-weight: 600;
}

.inner-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 24px;
  padding-bottom: 40px;
}

.inner-layout.inner-layout--single {
  grid-template-columns: 1fr;
}

.inner-sidebar {
  border: 1px solid #eef1f4;
  border-top: 3px solid var(--law-gold);
  background: #fff;
}

.sidebar-title {
  padding: 14px 16px;
  font-size: 20px;
  font-weight: 700;
  color: var(--law-blue);
  border-bottom: 1px solid #eef1f4;
  background: linear-gradient(90deg, rgba(198, 166, 103, 0.42) 0%, rgba(198, 166, 103, 0.22) 42%, rgba(0, 66, 118, 0.06) 100%);
}

.sidebar-nav li a {
  display: block;
  padding: 12px 16px;
  color: #444;
  border-bottom: 1px solid #f1f3f6;
  font-size: 1rem;
}

.sidebar-nav li a:hover {
  color: var(--law-blue);
  background: #f7f9fc;
}

.sidebar-nav li.active a {
  color: var(--law-blue);
  font-weight: 700;
  background: #f2f6fb;
  position: relative;
}

.sidebar-nav li.active a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--law-gold);
}

/* page.html：侧栏无外框，仅导航列表带边框；悬停与选中态一致 */
.inner-page--sidebar-nav-border .inner-sidebar {
  border: none;
  background: transparent;
}

.inner-page--sidebar-nav-border .sidebar-nav {
  border: 1px solid #eef1f4;
  border-top: 3px solid var(--law-gold);
  background: #fff;
}

.inner-page--sidebar-nav-border .sidebar-nav li a {
  position: relative;
}

.inner-page--sidebar-nav-border .sidebar-nav li a:hover {
  color: var(--law-blue);
  font-weight: 700;
  background: #f2f6fb;
}

.inner-page--sidebar-nav-border .sidebar-nav li a:hover::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--law-gold);
}
.contact-feedback-wrap{
  margin: 40px;
}
.inner-content {
  border: 1px solid #eef1f4;
  background: #fff;
  min-width: 0;
  padding: 0;
}

.content-header {
  padding: 16px 18px;
  border-bottom: 1px solid #eef1f4;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.content-title {
  font-size: 24px;
  font-weight: 800;
  color: var(--law-blue);
  position: relative;
  padding-left: 18px;
  padding: 6px 14px 6px 18px;
  border-radius: 6px;
  background: linear-gradient(90deg, rgba(198, 166, 103, 0.38) 0%, rgba(198, 166, 103, 0.16) 55%, rgba(198, 166, 103, 0) 100%);
  transform: translateY(-1px);
}

.content-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 6px;
  height: 22px;
  background: var(--law-gold);
}

/* 文字列表 */
.text-list {
  padding: 6px 18px 16px;
}

.text-list-item {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px dashed #e3e6ea;
}

.text-list-thumb {
  flex: 0 0 150px;
  max-width: 150px;
}

.text-list-thumb .img-thumb {
  width: 100%;
  height: 100px;
  object-fit: cover;
  border-radius: 4px;
  background: #f4f4f4;
}

.text-list-main {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  row-gap: 6px;
}

.text-list-title {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.text-list-desc {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.text-list-meta {
  margin-top: auto;
  font-size: 13px;
  color: #999;
}

.text-list-item:hover .text-list-title {
  color: var(--law-blue);
}

/* 文字列表（news/nolist：标题 + 日期） */
.text-list--nolist .text-list-item {
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #333;
  text-decoration: none;
}

.text-list--nolist .text-list-item .txt {
  flex: 1;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.text-list--nolist .text-list-item .date {
  flex-shrink: 0;
  color: #999;
  font-size: 14px;
  white-space: nowrap;
}

.text-list--nolist .text-list-item:hover .txt {
  color: var(--law-blue);
}

/* 图片列表 */
.img-list {
  padding: 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.img-card {
  display: block;
  border: 1px solid #eef1f4;
  background: #fff;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  overflow: hidden;
  border-radius: 4px;
}

.img-card:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 66, 118, 0.25);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.06);
}

.img-thumb {
  width: 100%;
  aspect-ratio: 1;
  background: #eee;
  overflow: hidden;
}

.img-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 与首页 .expert-card .img-portrait 一致的竖图列表（explore_list 等），此页对齐 CRC 专家列表的比例和间距 */
.img-list.img-list--portrait {
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.img-list.img-list--portrait .img-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.img-list.img-list--portrait .img-thumb {
  aspect-ratio: 3 / 4;
  background: #f4f4f4;
}

.img-list.img-list--portrait .img-meta {
  padding: 12px 14px 16px;
  text-align: left;
  flex: 1;
}

.img-list.img-list--portrait .img-title {
  font-size: 16px;
  font-weight: 500;
  height: auto;
  white-space: normal;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.img-list.img-list--portrait .img-desc {
  -webkit-line-clamp: 2;
  margin-top: 8px;
  padding: 0;
  color: #777;
}

/* 4列网格通用（如详情页荣誉/作品展示，1:1比例） */
.img-list--4col {
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.img-list--4col .img-card {
  height: 100%;
}

.img-meta {
  padding: 12px 12px 14px;
}

.img-title {
  font-size: 14px;
  font-weight: 700;
  color: #333;
  line-height: 1.35;
  height: 38px;
  overflow: hidden;
}

.img-sub {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
}

.img-date {
  font-size: 12px;
  color: #999;
}

.img-tag {
  font-size: 12px;
  color: var(--law-blue);
  background: rgba(0, 66, 118, 0.08);
  padding: 2px 8px;
  border-radius: 999px;
}

.img-desc {
  font-size: 13px;
  color: #888;
  line-height: 1.6;
  margin-top: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* 横向图文卡片（会员/机构列表），对齐 CRC */
.img-list--horizontal {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 18px;
}

.img-card--horizontal {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  border: 1px solid #eef1f4;
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.img-card--horizontal:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 66, 118, 0.25);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.img-card--horizontal .img-thumb {
  flex: 0 0 120px;
  width: 120px;
  max-width: 40%;
  background: #f8f8f8;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.img-card--horizontal .img-thumb img {
  width: 100%;
  max-height: 120px;
  object-fit: contain;
  padding: 5px;
  display: block;
}

.img-card--horizontal .img-meta {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 16px 20px;
}

.img-card--horizontal .img-title {
  font-size: 16px;
  font-weight: 700;
  color: #333;
  margin: 0 0 8px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  height: auto;
}

.img-card--horizontal .img-desc {
  font-size: 13px;
  line-height: 1.6;
  color: #666;
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

/* 分页 */
.inner-pagination {
  padding: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.inner-pagination .pg,
.inner-pagination .pg-ellipsis {
  height: 32px;
  min-width: 32px;
  padding: 0 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e5e9ef;
  background: #fff;
  color: #555;
  font-size: 13px;
  border-radius: 4px;
}

.inner-pagination .pg:hover {
  border-color: rgba(0, 66, 118, 0.35);
  color: var(--law-blue);
}

.inner-pagination .pg.active {
  background: var(--law-blue);
  border-color: var(--law-blue);
  color: #fff;
}

.inner-pagination .pg.pg-disabled {
  color: #aaa;
  background: #f6f7f9;
  border-color: #eef1f4;
  cursor: not-allowed;
}

.inner-pagination .pg-ellipsis {
  border-color: transparent;
  background: transparent;
}

/* 详情页正文 */
.article {
  font-size: 18px;
  line-height: 2;
  color: #444;
  text-align: justify;
  padding: 40px 40px 60px 40px;
}

.article-title {
  font-size: 24px;
  font-weight: 900;
  color: #111;
  line-height: 1.35;
  margin: 0 0 10px;
  text-align: center;
}

.article-meta {
  font-size: 13px;
  color: #888;
  padding: 10px 0 14px;
  border-bottom: 1px solid #eef1f4;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.article-meta .meta-sep {
  color: #c6cbd2;
}

.font-size-btn {
  color: #666;
  border: 1px solid #e5e9ef;
  padding: 2px 8px;
  border-radius: 4px;
  margin-left: 6px;
}

.font-size-btn:hover {
  border-color: rgba(0, 66, 118, 0.35);
  color: var(--law-blue);
}

.font-size-btn.active {
  color: #fff;
  background: var(--law-blue);
  border-color: var(--law-blue);
}

.article-body {
  padding: 40px 40px 60px 40px;
  color: #333;
}

.article-body p {
  margin: 0 0 14px;
  line-height: 1.95;
}

.article-body.article-size-small {
  font-size: 14px;
}

.article-body.article-size-mid {
  font-size: 16px;
}

.article-body.article-size-large {
  font-size: 18px;
}

.article-figure {
  margin: 16px 0 18px;
}

.article-figure img {
  width: 100%;
  display: block;
  border-radius: 4px;
  border: 1px solid #eef1f4;
  background: #eee;
}

.figure-caption {
  font-size: 12px;
  color: #888;
  padding-top: 8px;
}

.article-footer {
  padding-top: 12px;
  margin-top: 12px;
  border-top: 1px dashed #e3e6ea;
}

.related-title {
  font-size: 15px;
  font-weight: 800;
  color: var(--law-blue);
  margin-bottom: 10px;
}

.related-list li {
  padding: 8px 0;
  border-bottom: 1px dashed #eef1f4;
}

.related-list li a {
  color: #333;
}

.related-list li a:hover {
  color: var(--law-blue);
}

/* 品牌/探索类详情：上部基础信息（左图右字段）+ 下部模块（标题+正文），结构参考商务部老字号数字博物馆详情 */
.article--entity {
  text-align: left;
}

.article--entity .article-title {
  text-align: center;
}

.article--entity .article-meta {
  justify-content: center;
}

.article--entity .entity-basic {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  padding: 22px 20px;
  margin: 8px 0 0;
  background: var(--bg-gray);
  border: 1px solid #eef1f4;
  border-radius: 4px;
}

.article--entity .entity-basic__media {
  flex: 0 0 300px;
  max-width: 100%;
}

.article--entity .entity-basic__media img {
  width: 100%;
  display: block;
  border-radius: 4px;
  border: 1px solid #eee;
  background: #eee;
  aspect-ratio: 1;
  object-fit: cover;
}

/* 与首页 .expert-card .img-portrait 一致 1:1.4 */
.article--entity-explore .entity-basic__media img {
  aspect-ratio: 1 / 1.4;
}

.article--entity .entity-basic__fields {
  flex: 1;
  min-width: 0;
  margin: 0;
}

.article--entity .entity-field {
  display: grid;
  grid-template-columns: 118px 1fr;
  gap: 8px 16px;
  padding: 10px 0;
  border-bottom: 1px dashed #dde3ea;
  font-size: 15px;
  line-height: 1.65;
  align-items: baseline;
}

.article--entity .entity-field:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.article--entity .entity-field:first-child {
  padding-top: 0;
}

.article--entity .entity-field dt {
  margin: 0;
  color: #666;
  font-weight: normal;
}

.article--entity .entity-field dd {
  margin: 0;
  color: #222;
  font-weight: 500;
}

.article--entity .entity-sections {
  padding-top: 8px;
}

.article--entity .entity-block {
  padding: 26px 0 28px;
  border-bottom: 1px solid #eef1f4;
}

.article--entity .entity-block:last-of-type {
  border-bottom: none;
}

.article--entity .entity-block__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--law-blue);
  margin: 0 0 16px;
  padding: 6px 14px 6px 18px;
  border-radius: 6px;
  position: relative;
  background: linear-gradient(90deg, rgba(198, 166, 103, 0.22) 0%, rgba(198, 166, 103, 0.10) 45%, rgba(198, 166, 103, 0) 100%);
}

.article--entity .entity-block__title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 6px;
  height: 22px;
  background: var(--law-gold);
  border-radius: 0 2px 2px 0;
}

.article--entity .entity-block__body {
  color: #333;
  line-height: 1.95;
  text-align: justify;
}

.article--entity .entity-block__body p {
  margin: 0 0 14px;
}

.article--entity .entity-block__body p:last-child {
  margin-bottom: 0;
}

/* 对齐 CRC 专家详情页结构的样式 (取代 article--entity) */
.law-brand-detail {
  padding: 14px 26px 36px;
  background: #fff;
  border: 1px solid #eef1f4;
  border-radius: 6px;
}

.law-brand-detail-summary {
  display: flex;
  gap: 36px;
  margin-bottom: 8px;
  padding-bottom: 28px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.law-brand-detail-logo {
  flex: 0 0 340px;
  max-width: 100%;
}

.law-brand-detail-logo img {
  display: block;
  width: 100%;
  max-width: 400px;
  min-width: 260px;
  aspect-ratio: 1;
  /* inline style in template will override to 3/4 */
  object-fit: contain;
  border: 1px solid #eee;
  padding: 14px;
  background: #fafafa;
  margin: 0 auto;
}

.law-brand-detail-params {
  flex: 1;
  min-width: 0;
  max-width: 100%;
  text-align: left;
}

.law-brand-detail-rich {
  font-size: 16px;
  line-height: 1.8;
  color: #444;
  text-align: justify;
}

.law-brand-detail-block {
  margin-top: 32px;
}

.law-brand-detail-block-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--law-blue);
  margin: 0 0 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--law-gold);
}

.article-entity-main.article-size-small,
.article-entity-main.article-size-small .entity-block__body {
  font-size: 14px;
}

.article-entity-main.article-size-mid,
.article-entity-main.article-size-mid .entity-block__body {
  font-size: 16px;
}

.article-entity-main.article-size-large,
.article-entity-main.article-size-large .entity-block__body {
  font-size: 18px;
}

/* --- 移动端适配（不影响桌面 1200px 版心） --- */
@media (max-width: 768px) {
  body {
    overflow-x: hidden;
  }

  .container {
    width: auto;
    max-width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }

  header {
    width: auto;
    height: auto;
    padding: 14px 0;
    gap: 12px;
    flex-direction: column;
    align-items: flex-start;
  }

  .logo-text h1 {
    font-size: 20px;
    line-height: 1.3;
  }

  .site-logo {
    width: 40px;
    height: 40px;
  }

  .site-logo img {
    width: 38px;
    height: 38px;
  }

  .site-title {
    font-size: 16px;
    line-height: 1.3;
    white-space: normal;
  }

  .search-bar {
    width: 100%;
    display: none;
  }

  .search-bar input {
    width: 100%;
    min-width: 0;
  }

  .nav-bar {
    width: auto;
    padding: 0;
  }

  .nav-toggle {
    display: block;
  }

  .nav-container {
    display: none;
    flex-direction: column;
    width: 100%;
    background: var(--law-blue);
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 2100;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  }

  .nav-container.open {
    display: flex;
  }

  .nav-item {
    padding: 0;
    font-size: 16px;
    white-space: normal;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav-item>a,
  .nav-item>.nav-link {
    padding: 14px 20px;
  }

  /* 移动端下拉切换 */
  .nav-item:hover .dropdown {
    display: none;
  }

  .nav-item.has-dropdown .nav-link {
    cursor: pointer;
  }

  .nav-item.has-dropdown .nav-link::after {
    content: "▾";
    margin-left: 6px;
    font-size: 12px;
    transition: transform 0.2s;
    display: inline-block;
  }

  .nav-item.dropdown-open .nav-link::after {
    transform: rotate(180deg);
  }

  .nav-item.dropdown-open .dropdown {
    display: block;
    position: static;
    box-shadow: none;
    border-top: none;
    background: rgba(0, 0, 0, 0.12);
  }

  .dropdown li a {
    color: rgba(255, 255, 255, 0.9);
    padding: 12px 32px;
    font-size: 14px;
  }

  .dropdown li {
    border-bottom-color: rgba(255, 255, 255, 0.06);
  }

  .dropdown li:hover a,
  .dropdown li.active a {
    background: rgba(255, 255, 255, 0.10);
  }

  .section-header {
    flex-wrap: wrap;
    gap: 8px 12px;
  }

  .news-row {
    flex-direction: column;
    gap: 18px;
  }

  .dynamic-right {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .slider-box {
    width: 100%;
    height: auto;
    aspect-ratio: 500 / 450;
  }

  .slider-box img {
    width: 100%;
    height: 100%;
  }

  .icon-grid {
    flex-wrap: wrap;
    gap: 12px;
  }

  .icon-item {
    flex: 0 0 calc(50% - 6px);
  }

  .announcement-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .announcement .news-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .announcement .news-item a {
    margin-right: 0;
    width: 100%;
  }

  .announcement .news-item span {
    font-size: 13px;
  }

  .org-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .expert-scroll-container {
    width: 100%;
  }

  footer {
    padding: 35px 15px;
  }

  .footer-container {
    width: auto;
    flex-direction: column;
    gap: 18px;
  }

  .footer-left {
    border-right: none;
    padding-right: 0;
  }

  .footer-left p {
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
  }

  .footer-right {
    padding-left: 0;
    gap: 18px;
    flex-wrap: wrap;
  }

  .footer-bottom-inner {
    width: auto;
    max-width: 100%;
    padding-left: 15px;
    padding-right: 15px;
    text-align: center;
  }

  /* 内页移动端 */
  .inner-breadcrumb {
    padding: 14px 0 8px;
    font-size: 14px;
  }

  .inner-layout {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .inner-sidebar {
    display: none;
  }

  .content-header {
    padding: 14px 14px;
  }

  .text-list {
    padding: 6px 14px 12px;
  }

  .text-list-item {
    padding: 12px 0;
  }

  .text-list--nolist .text-list-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .text-list--nolist .text-list-item .txt {
    width: 100%;
  }

  .text-list-thumb {
    flex: 0 0 110px;
    max-width: 110px;
  }

  .text-list-thumb .img-thumb {
    height: 80px;
  }

  .text-list-title {
    white-space: normal;
  }

  .img-list {
    padding: 14px;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .article {
    padding: 14px 14px 20px;
  }

  .content-title {
    font-size: 16px;
  }

  .article-title {
    font-size: 18px;
  }

  .article--entity .entity-basic {
    flex-direction: column;
    padding: 16px 14px;
  }

  .article--entity .entity-basic__media {
    flex: none;
    width: 100%;
  }

  .article--entity .entity-field {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 12px 0;
  }

  .article--entity .entity-field dt {
    color: var(--law-blue);
    font-weight: 600;
    font-size: 13px;
  }

  /* 横向卡片移动端 */
  .img-card--horizontal {
    flex-direction: column;
  }

  .img-card--horizontal .img-thumb {
    flex: none;
    width: 100%;
    height: 180px;
  }

  .img-list--horizontal {
    padding: 14px;
  }

  .article-body {
    padding: 14px 14px 20px;
  }

  /* 专家详情页移动端 */
  .law-brand-detail {
    padding: 14px;
  }

  .law-brand-detail-summary {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
  }

  .law-brand-detail-logo {
    flex: 0 0 auto;
    width: 100%;
  }

  .law-brand-detail-logo img {
    min-width: 0;
    max-width: min(400px, 100%);
  }

  .law-brand-detail-params {
    width: 100%;
  }

  /* law explore imglist 竖图列表：移动端每行 2 列 */
  .img-list.img-list--portrait {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .main-content {
    padding-left: 15px;
    padding-right: 15px;
  }

  .main-content > .list-container.crc-search-page {
    padding: 16px 14px;
  }

  .crc-search-page .crc-search-result-list > .newslist-item {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .crc-search-page .crc-search-result-list .newslist-thumb {
    width: 100%;
    max-width: none;
    height: 180px;
  }

  .crc-search-page .crc-search-result-list .newslist-title {
    white-space: normal;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}

/* =========================
   站内搜索（页头 + 搜索页，配色对齐 --law-blue / --law-gold）
   ========================= */
form.search-bar.crc-search-bar-wrap {
  display: block;
  border: none;
  border-radius: 0;
  overflow: visible;
  background: transparent;
}

.crc-search-bar-wrap {
  width: 100%;
  max-width: 640px;
}

.crc-search-bar-wrap--header.search-bar {
  width: 420px;
  max-width: 100%;
  flex-shrink: 0;
}

.crc-search-bar {
  display: flex;
  align-items: stretch;
  width: 100%;
  min-height: 46px;
  border: 2px solid var(--law-blue);
  border-radius: 6px;
  overflow: hidden;
  background: #fff;
  box-sizing: border-box;
}

.crc-search-bar__field {
  flex: 1 1 78%;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 0 14px;
  background: #f4f8fc;
  cursor: text;
  min-width: 0;
}

.crc-search-bar__icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='none' stroke='%23004276' stroke-width='2' viewBox='0 0 24 24'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cpath d='M21 21l-4.35-4.35'/%3E%3C/svg%3E")
    center / contain no-repeat;
}

.crc-search-bar__input {
  flex: 1 1 auto;
  min-width: 0;
  height: 44px;
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 15px;
  color: #333;
  box-shadow: none;
}

.crc-search-bar__input::placeholder {
  color: #888;
}

.crc-search-bar__btn {
  flex: 0 0 22%;
  min-width: 88px;
  border: 0;
  border-left: 2px solid var(--law-blue);
  background: var(--law-blue);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.crc-search-bar__btn:hover {
  background: #00355f;
  border-left-color: #00355f;
  color: #fff;
}

.crc-search-page .crc-search-bar-wrap--page {
  width: 100%;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 992px) {
  .crc-search-page .crc-search-bar-wrap--page {
    width: 60%;
    max-width: 60%;
  }
}

.main-content {
  width: 1200px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 0 48px;
  box-sizing: border-box;
}

.main-content > .list-container.crc-search-page {
  border: 1px solid #eef1f4;
  background: #fff;
  padding: 22px 24px 28px;
  box-sizing: border-box;
}

.crc-search-page .list-title {
  font-size: 24px;
  font-weight: 800;
  color: var(--law-blue);
  position: relative;
  padding: 6px 14px 6px 18px;
  margin: 0 0 22px;
  border-radius: 6px;
  background: linear-gradient(90deg, rgba(198, 166, 103, 0.38) 0%, rgba(198, 166, 103, 0.16) 55%, rgba(198, 166, 103, 0) 100%);
  border-bottom: none;
  display: block;
}

.crc-search-page .list-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 6px;
  height: 22px;
  background: var(--law-gold);
}

.crc-search-page .crc-search-form {
  margin-bottom: 22px;
}

.crc-search-result-intro {
  margin: 0 0 16px;
  padding: 10px 14px 10px 16px;
  font-size: 15px;
  font-weight: 800;
  color: #333;
  line-height: 1.5;
  background: #f7f9fc;
  border-left: 4px solid var(--law-blue);
  border-radius: 0 4px 4px 0;
}

.crc-search-page .crc-search-result-list.data-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.crc-search-page .crc-search-result-list > .newslist-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px dashed #e3e6ea;
  transition: background 0.2s ease;
}

.crc-search-page .crc-search-result-list > .newslist-item:first-of-type {
  padding-top: 4px;
}

.crc-search-page .crc-search-result-list > .newslist-item:hover {
  background: rgba(0, 66, 118, 0.04);
}

.crc-search-page .crc-search-result-list .newslist-thumb {
  flex: 0 0 150px;
  width: 150px;
  max-width: 38%;
  height: 150px;
  border-radius: 4px;
  overflow: hidden;
  background: #f4f4f4;
}

.crc-search-page .crc-search-result-list .newslist-thumb a,
.crc-search-page .crc-search-result-list .newslist-thumb span.d-inline-block {
  display: block;
  width: 100%;
  height: 100%;
}

.crc-search-page .crc-search-result-list .newslist-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  vertical-align: top;
  transition: transform 0.3s ease;
}

.crc-search-page .crc-search-result-list .newslist-item:hover .newslist-thumb img {
  transform: scale(1.03);
}

.crc-search-page .crc-search-result-list .newslist-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  row-gap: 6px;
  align-items: flex-start;
}

.crc-search-page .crc-search-result-list .newslist-title {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: #333;
  line-height: 1.45;
  display: block;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.2s ease;
}

.crc-search-page .crc-search-result-list a.newslist-title:hover {
  color: var(--law-blue);
}

.crc-search-page .crc-search-result-list .newslist-desc {
  margin: 0;
  font-size: 14px;
  color: #666;
  line-height: 1.7;
  word-break: break-word;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  width: 100%;
}

.crc-search-page .crc-search-result-list .newslist-meta {
  margin-top: auto;
  font-size: 13px;
  color: #999;
}

.newslist-item--no-thumb .newslist-thumb {
  display: none;
}

.crc-search-page .newslist-item--no-thumb .newslist-body {
  width: 100%;
}

.crc-search-page .pagination {
  margin-top: 20px;
  padding: 18px 0 8px;
  text-align: center;
  border-top: 1px solid #eef1f4;
}

.crc-search-page .pagination span,
.crc-search-page .pagination a {
  display: inline-block;
  padding: 6px 12px;
  margin: 0 4px;
  font-size: 13px;
  border: 1px solid #e5e9ef;
  border-radius: 4px;
  color: #555;
  background: #fff;
}

.crc-search-page .pagination a:hover {
  border-color: rgba(0, 66, 118, 0.35);
  color: var(--law-blue);
}

.crc-search-page .pagination .current {
  background: var(--law-blue);
  border-color: var(--law-blue);
  color: #fff;
}

.crc-search-result-list .crc-search-empty-item {
  list-style: none;
  border-bottom: 0;
  padding: 48px 20px 40px;
}

.crc-search-empty {
  text-align: center;
  max-width: 420px;
  margin: 0 auto;
}

.crc-search-empty__icon {
  width: 88px;
  height: 88px;
  margin: 0 auto 20px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='88' height='88' fill='none' viewBox='0 0 88 88'%3E%3Ccircle cx='38' cy='38' r='18' stroke='%23d4d4d4' stroke-width='2.5'/%3E%3Cpath stroke='%23d4d4d4' stroke-width='2.5' stroke-linecap='round' d='M52 52l22 22'/%3E%3Cpath stroke='%23c9c9c9' stroke-width='2' stroke-linecap='round' d='M28 48l20-20'/%3E%3C/svg%3E")
    center / contain no-repeat;
  opacity: 0.95;
}

.crc-search-empty__icon--hint {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='88' height='88' fill='none' viewBox='0 0 88 88'%3E%3Ccircle cx='38' cy='38' r='18' stroke='%23d4d4d4' stroke-width='2.5'/%3E%3Cpath stroke='%23004276' stroke-width='2' stroke-linecap='round' d='M52 52l22 22'/%3E%3C/svg%3E")
    center / contain no-repeat;
}

.crc-search-empty__text {
  margin: 0 0 8px;
  font-size: 17px;
  font-weight: 700;
  color: #555;
}

.crc-search-empty__hint {
  margin: 0;
  font-size: 14px;
  color: #999;
  line-height: 1.6;
}

.crc-search-empty--hint .crc-search-empty__text {
  font-weight: 600;
  color: #666;
}