/* 基础样式重置 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #0ea5e9;
  --primary-dark: #0284c7;
  --primary-light: #e0f2fe;
  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1e293b;
  --slate-900: #0f172a;
  --white: #ffffff;
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --radius-sm: 0.375rem;
  --radius: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: var(--slate-700);
  line-height: 1.6;
  background-color: var(--white);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* 顶部联系栏 */
.top-bar {
  background-color: var(--slate-900);
  color: var(--white);
  padding: 0.5rem 0;
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
}

.contact-info {
  display: flex;
  gap: 1.5rem;
}

.contact-info span {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.contact-info i {
  color: var(--primary);
}

.location {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.location i {
  color: var(--primary);
}

/* 导航栏 */
.navbar {
  background-color: var(--white);
  border-bottom: 1px solid var(--slate-100);
  position: sticky;
  top: 0;
  z-index: 100;
}

.navbar .container {
  position: relative;
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.logo-icon {
  width: 2.5rem;
  height: 2.5rem;
  background-color: var(--primary);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1.125rem;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--slate-800);
  line-height: 1.2;
}

.logo-sub {
  font-size: 0.75rem;
  color: var(--slate-500);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-menu a {
  text-decoration: none;
  color: var(--slate-600);
  font-weight: 500;
  font-size: 0.9375rem;
  transition: color 0.2s;
  position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--primary);
}

.nav-menu a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: var(--primary);
  border-radius: 1px;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--slate-600);
  cursor: pointer;
}

/* 执业信息栏 */
.lawyer-info-bar {
  background-color: var(--slate-50);
  border-bottom: 1px solid var(--slate-200);
  padding: 1rem 0;
}

.lawyer-info-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.lawyer-profile {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.lawyer-avatar {
  width: 4rem;
  height: 4rem;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 700;
  box-shadow: var(--shadow);
}

.lawyer-basic h2 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--slate-800);
  margin-bottom: 0.125rem;
}

.lawyer-basic p {
  font-size: 0.875rem;
  color: var(--slate-500);
  margin-bottom: 0.25rem;
}

.license {
  font-size: 0.75rem;
  color: var(--slate-400);
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.license i {
  color: var(--primary);
}

.lawyer-contact {
  display: flex;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.contact-icon {
  width: 2rem;
  height: 2rem;
  background-color: var(--primary-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.contact-detail {
  display: flex;
  flex-direction: column;
}

.contact-detail .label {
  font-size: 0.75rem;
  color: var(--slate-400);
}

.contact-detail .value {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--slate-700);
}

/* Banner区域 */
.banner {
  position: relative;
  height: 500px;
  background: linear-gradient(135deg, var(--slate-50), var(--slate-100), #f0f9ff);
  overflow: hidden;
}

.banner-bg {
  position: absolute;
  inset: 0;
}

.banner-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.banner-icon {
  position: absolute;
  color: var(--primary);
  opacity: 0.15;
}

.scale-icon {
  top: 3rem;
  left: 3rem;
  font-size: 6rem;
}

.building-icon {
  bottom: 3rem;
  right: 3rem;
  font-size: 5rem;
}

.shield-icon {
  top: 50%;
  right: 30%;
  font-size: 4rem;
  transform: translateY(-50%);
}

.banner-content {
  position: relative;
  z-index: 10;
  height: 100%;
  display: flex;
  align-items: center;
}

.banner-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--slate-800);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.banner-content h1 span {
  color: var(--primary);
}

.banner-content p {
  font-size: 1.125rem;
  color: var(--slate-600);
  max-width: 500px;
  margin-bottom: 1.5rem;
}

.banner-btns {
  display: flex;
  gap: 0.75rem;
}

/* 按钮样式 */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-lg);
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
}

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

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

.btn-secondary {
  background-color: var(--white);
  color: var(--slate-700);
  border: 1px solid var(--slate-300);
}

.btn-secondary:hover {
  background-color: var(--slate-50);
}

/* 律师简介预览 */
.about-preview {
  padding: 4rem 0;
  background-color: var(--slate-50);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-image {
  position: relative;
}

.image-placeholder {
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, #e0f2fe, #cbd5e1);
  border-radius: var(--radius-xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--slate-500);
}

.avatar-large {
  width: 8rem;
  height: 8rem;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.experience-badge {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  background-color: var(--white);
  border-radius: var(--radius-lg);
  padding: 1rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.experience-badge i {
  width: 2.5rem;
  height: 2.5rem;
  background-color: var(--primary-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.badge-label {
  font-size: 0.75rem;
  color: var(--slate-400);
}

.badge-value {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--slate-800);
}

.about-text h2 {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--slate-800);
  margin-bottom: 1rem;
}

.about-desc {
  margin-bottom: 1.5rem;
}

.about-desc p {
  color: var(--slate-600);
  margin-bottom: 0.75rem;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.stat-item {
  text-align: center;
  padding: 1rem;
  background-color: var(--white);
  border-radius: var(--radius-lg);
}

.stat-item i {
  width: 2.5rem;
  height: 2.5rem;
  background-color: var(--primary-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin: 0 auto 0.5rem;
}

.stat-num {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--slate-800);
}

.stat-label {
  font-size: 0.75rem;
  color: var(--slate-500);
}

/* 服务领域 */
.services {
  padding: 4rem 0;
  background-color: var(--white);
}

.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-header h2 {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--slate-800);
  margin-bottom: 0.5rem;
}

.section-header p {
  color: var(--slate-500);
}

.flex-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  text-align: left;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.service-card {
  background-color: var(--slate-50);
  border-radius: var(--radius-xl);
  padding: 1.25rem;
  text-decoration: none;
  transition: all 0.3s;
  border: 1px solid transparent;
}

.service-card:hover {
  background-color: #f0f9ff;
  border-color: #bae6fd;
  box-shadow: var(--shadow-md);
}

.service-icon {
  width: 3rem;
  height: 3rem;
  background-color: var(--primary-light);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  transition: all 0.3s;
}

.service-card:hover .service-icon {
  background-color: var(--primary);
  color: var(--white);
}

.service-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--slate-800);
  margin-bottom: 0.375rem;
  transition: color 0.3s;
}

.service-card:hover h3 {
  color: var(--primary-dark);
}

.service-card p {
  font-size: 0.75rem;
  color: var(--slate-500);
  line-height: 1.5;
}

.section-footer {
  text-align: center;
  margin-top: 2rem;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  color: var(--primary);
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
}

.link-arrow:hover {
  color: var(--primary-dark);
}

/* 法律资讯 */
.news {
  padding: 4rem 0;
  background-color: var(--slate-50);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.news-card {
  background-color: var(--white);
  border-radius: var(--radius-xl);
  padding: 1.25rem;
  text-decoration: none;
  display: flex;
  gap: 1rem;
  transition: all 0.3s;
  border: 1px solid transparent;
}

.news-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--slate-100);
}

.news-icon {
  width: 3rem;
  height: 3rem;
  background-color: var(--primary-light);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.25rem;
  flex-shrink: 0;
  transition: all 0.3s;
}

.news-card:hover .news-icon {
  background-color: var(--primary);
  color: var(--white);
}

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

.news-tag {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  background-color: var(--primary-light);
  color: var(--primary);
  font-size: 0.75rem;
  border-radius: var(--radius-sm);
  margin-bottom: 0.5rem;
}

.news-content h3 {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--slate-800);
  margin-bottom: 0.375rem;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.3s;
}

.news-card:hover .news-content h3 {
  color: var(--primary);
}

.news-content p {
  font-size: 0.8125rem;
  color: var(--slate-500);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 0.5rem;
}

.news-date {
  font-size: 0.75rem;
  color: var(--slate-400);
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

/* 工作时间 */
.working-hours {
  background-color: var(--primary);
  padding: 2rem 0;
}

.working-hours-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
}

.hours-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--white);
}

.hours-icon {
  width: 3rem;
  height: 3rem;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.hours-info {
  display: flex;
  flex-direction: column;
}

.hours-label {
  font-size: 0.875rem;
  opacity: 0.8;
}

.hours-value {
  font-size: 1.125rem;
  font-weight: 600;
}

.hours-divider {
  width: 1px;
  height: 3rem;
  background-color: rgba(255, 255, 255, 0.3);
}

/* 页脚 */
.footer {
  background-color: var(--slate-900);
  color: var(--white);
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-brand p {
  color: var(--slate-400);
  font-size: 0.875rem;
  margin-top: 1rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-links h4,
.footer-contact h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-links ul,
.footer-contact ul {
  list-style: none;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: var(--slate-400);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s;
}

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

.footer-contact li {
  color: var(--slate-400);
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-contact i {
  color: var(--primary);
}

.footer-bottom {
  border-top: 1px solid var(--slate-800);
  padding-top: 1.5rem;
  text-align: center;
}

.footer-bottom p {
  color: var(--slate-500);
  font-size: 0.875rem;
}

.license-info {
  color: var(--slate-600);
  font-size: 0.75rem;
  margin-top: 0.25rem;
}

/* 显示控制 */
.desktop-only {
  display: flex;
}

.mobile-only {
  display: none;
}

/* 响应式设计 */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .top-bar .contact-info span:last-child {
    display: none;
  }
  
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--white);
    flex-direction: column;
    padding: 1rem;
    box-shadow: var(--shadow-md);
    gap: 0;
  }
  
  .nav-menu.active {
    display: flex;
  }
  
  .nav-menu li {
    border-bottom: 1px solid var(--slate-100);
  }
  
  .nav-menu li:last-child {
    border-bottom: none;
  }
  
  .nav-menu a {
    display: block;
    padding: 0.75rem 0;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .lawyer-info-content {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .lawyer-contact {
    width: 100%;
    flex-wrap: wrap;
  }
  
  .banner {
    height: 400px;
  }
  
  .banner-content h1 {
    font-size: 1.875rem;
  }
  
  .banner-icon {
    display: none;
  }
  
  .about-grid {
    grid-template-columns: 1fr;
  }
  
  .about-image {
    max-width: 300px;
    margin: 0 auto;
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .news-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .working-hours-content {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .hours-divider {
    width: 100%;
    height: 1px;
  }
  
  .desktop-only {
    display: none;
  }
  
  .mobile-only {
    display: block;
  }
}

@media (max-width: 480px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .stats {
    grid-template-columns: 1fr;
  }
  
  .lawyer-contact {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .banner-btns {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
    justify-content: center;
  }
}

/* 律站默认模板扩展 */
body {
  font-size: 0.9375rem;
}

.banner-content h1 {
  font-size: 2.25rem;
}

.section-header h2 {
  font-size: 1.75rem;
}

.about-text h2 {
  font-size: 1.625rem;
}

.page-header h1 {
  font-size: 1.875rem;
}

.lawyer-avatar img,
.lawyer-avatar-img {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.about-image .portrait-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-xl);
}

.about-image .image-placeholder.has-photo {
  padding: 0;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.footer-bottom {
  border-top: none;
  padding-top: 0;
}

.footer-powered {
  margin-top: 0;
  padding: 0.875rem 1rem 1.25rem;
  border-top: none !important;
  text-align: center;
  font-size: 0.8125rem;
  color: var(--slate-500);
  background-color: var(--slate-900);
}

.footer-powered-link {
  color: var(--primary);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
}

.footer-powered-link:hover {
  color: #38bdf8;
}

.watermark {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(32px, 8vw, 56px);
  color: rgba(239, 68, 68, 0.12);
  transform: rotate(-18deg);
  pointer-events: none;
  z-index: 0;
  font-weight: 700;
}

.breadcrumb {
  font-size: 0.875rem;
  color: var(--slate-500);
  margin-bottom: 0.75rem;
}

.breadcrumb a {
  color: var(--slate-500);
  text-decoration: none;
}

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

.article-detail {
  padding: 2.5rem 0 3rem;
}

.article-detail-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 1.5rem 2rem;
  border: 1px solid var(--slate-100);
}

.article-detail-card .cover-img {
  width: 100%;
  max-height: 24rem;
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin-bottom: 1.5rem;
}

.lawyer-article-body {
  color: var(--slate-600);
  line-height: 1.8;
  font-size: 0.9375rem;
}

.lawyer-article-body p {
  margin-bottom: 0.75rem;
}

.lawyer-article-body img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius);
}

.article-share {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--slate-100);
}

.wechat-qr-block {
  text-align: center;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--slate-200);
}

.wechat-qr-block img {
  width: 10rem;
  height: 10rem;
  object-fit: contain;
  margin: 0.75rem auto 0;
  border-radius: var(--radius);
}

.mobile-bottom-nav {
  display: none;
}

.floating-call-btn {
  display: none;
}

@media (max-width: 768px) {
  body {
    padding-bottom: 4.5rem;
  }

  .mobile-bottom-nav {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 90;
    background: var(--white);
    border-top: 1px solid var(--slate-200);
    box-shadow: 0 -4px 12px rgb(0 0 0 / 0.06);
  }

  .mobile-bottom-nav .nav-row {
    display: flex;
    justify-content: space-around;
    padding: 0.5rem 0;
  }

  .mobile-bottom-nav .nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.125rem;
    font-size: 0.6875rem;
    color: var(--slate-500);
    text-decoration: none;
    padding: 0.25rem 0.5rem;
  }

  .mobile-bottom-nav .nav-item i {
    font-size: 1.125rem;
  }

  .mobile-bottom-nav .nav-item.active {
    color: var(--primary);
  }

  .floating-call-btn {
    display: flex;
    position: fixed;
    bottom: 5rem;
    right: 1rem;
    z-index: 89;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    text-decoration: none;
    font-size: 1.25rem;
  }
}

.home-banner-wrap img {
  width: 100%;
  max-height: min(56vh, 540px);
  object-fit: cover;
  display: block;
}

.service-card .service-cover {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin-bottom: 0.75rem;
}

.services-page {
  padding: 3rem 0 4rem;
  background-color: var(--white);
}

.services-page .services-grid {
  margin-top: 0;
}

.services-empty-tip {
  text-align: center;
  color: var(--slate-500);
  padding: 2rem 0;
  font-size: 0.9375rem;
}

.case-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.js-wechat-copy,
.detail-wechat-copy,
.footer-wechat-copy {
  border: none;
  background: none;
  padding: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
  text-align: inherit;
}

.js-wechat-copy:hover,
.detail-wechat-copy:hover {
  color: var(--primary);
}

.footer-wechat-copy {
  color: var(--slate-400);
}

.footer-wechat-copy:hover {
  color: var(--primary);
}

.contact-card .js-wechat-copy {
  color: var(--slate-600);
}
