@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700&family=Noto+Serif+SC:wght@300;400;600;700&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --gold: #c9a961;
  --gold-dark: #a88a4c;
  --gold-light: #e8d5a3;
  --navy: #0f1923;
  --navy-light: #1a2a3a;
  --cream: #f8f5f0;
  --charcoal: #2d3436;
  --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', 'PingFang SC', 'Microsoft YaHei', -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.7;
  color: var(--charcoal);
  background-color: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

h2 {
  text-align: center;
  font-family: 'Cinzel', serif;
  color: var(--navy);
  font-size: 36px;
  margin-bottom: 50px;
  position: relative;
  letter-spacing: 3px;
  text-transform: uppercase;
}

h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
  margin: 20px auto 0;
  border-radius: 2px;
}

.loading {
  text-align: center;
  padding: 40px;
  color: #999;
  font-style: italic;
}

::-moz-selection,
input::-moz-selection,
textarea::-moz-selection {
  background: var(--gold) !important;
  color: var(--navy) !important;
}

::-webkit-selection,
input::-webkit-selection,
textarea::-webkit-selection {
  background: var(--gold) !important;
  color: var(--navy) !important;
}

::selection,
input::selection,
textarea::selection {
  background: var(--gold) !important;
  color: var(--navy) !important;
}

::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: var(--navy);
}

::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gold-dark);
}

.nav-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, #081018 0%, var(--navy) 30%, var(--navy-light) 100%);
  z-index: 9999;
  padding: 0;
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid rgba(201, 169, 97, 0.35);
}

.nav-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 25%, var(--gold-light) 50%, var(--gold) 75%, transparent 100%);
}

.nav-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.3s var(--transition-smooth);
}

.logo:hover {
  opacity: 0.85;
}

.logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, rgba(201, 169, 97, 0.12) 0%, rgba(201, 169, 97, 0.04) 100%);
  border: 1.5px solid rgba(201, 169, 97, 0.25);
  border-radius: 50%;
  font-size: 22px;
  transition: all 0.4s var(--transition-smooth);
  flex-shrink: 0;
}

.logo:hover .logo-icon {
  border-color: var(--gold);
  box-shadow: 0 0 24px rgba(201, 169, 97, 0.15);
}

.logo-divider {
  width: 1px;
  height: 30px;
  background: linear-gradient(180deg, transparent 0%, rgba(201, 169, 97, 0.4) 30%, rgba(201, 169, 97, 0.4) 70%, transparent 100%);
  margin: 0 14px;
  flex-shrink: 0;
}

.logo-name {
  font-family: 'Noto Serif SC', 'Cinzel', serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 2px;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 40%, #d4b870 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  white-space: nowrap;
}

.mobile-menu-btn {
  display: none;
}

#main-nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 0;
  margin: 0;
  padding: 0;
  align-items: center;
}

.nav-list li {
  display: flex;
  align-items: center;
}

.nav-list li + li::before {
  content: '';
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0.3;
  margin: 0 2px;
  flex-shrink: 0;
}

.nav-list a {
  font-family: 'Noto Serif SC', 'PingFang SC', 'Microsoft YaHei', serif;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s var(--transition-smooth);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.8px;
  padding: 6px 12px;
  border-radius: 4px;
  position: relative;
  white-space: nowrap;
}

.nav-list a:hover {
  color: var(--gold);
}

.nav-list a[aria-current="page"] {
  color: var(--navy);
  background: linear-gradient(135deg, var(--gold) 0%, #d4b870 100%);
  font-weight: 500;
  box-shadow: 0 2px 8px rgba(201, 169, 97, 0.2);
}

.nav-bar .admin-btn {
  padding: 10px 20px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--navy);
  text-decoration: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s var(--transition-smooth);
  box-shadow: 0 4px 15px rgba(201, 169, 97, 0.3);
}

.nav-bar .admin-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201, 169, 97, 0.4);
}

main {
  min-height: calc(100vh - 70px);
}

section {
  padding: 60px 0;
  background: white;
  margin: 30px 0;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  scroll-margin-top: 80px;
  position: relative;
  overflow: hidden;
}

section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark), var(--gold));
}

section:nth-child(even) {
  background: var(--cream);
}

.lawyer-profile {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 50%, #0a1628 100%);
  color: white;
  text-align: center;
  padding: 120px 20px 100px;
  margin: 0;
  border-radius: 0;
  scroll-margin-top: 80px;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.lawyer-profile::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 30%, rgba(201, 169, 97, 0.08) 0%, transparent 50%),
              radial-gradient(circle at 70% 70%, rgba(201, 169, 97, 0.05) 0%, transparent 50%);
  animation: rotate 30s linear infinite;
}

.lawyer-profile::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a961' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.lawyer-avatar {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  margin: 0 auto 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  color: var(--navy);
  overflow: hidden;
  border: 6px solid var(--gold);
  position: relative;
  z-index: 10;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3),
              0 0 0 10px rgba(201, 169, 97, 0.1),
              inset 0 -20px 40px rgba(0,0,0,0.1);
  animation: avatarFloat 3s ease-in-out infinite;
}

@keyframes avatarFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

.lawyer-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lawyer-name {
  font-family: 'Cinzel', serif;
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 15px;
  letter-spacing: 3px;
  position: relative;
  z-index: 10;
  background: linear-gradient(135deg, #ffffff 0%, var(--gold-light) 50%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
  animation: nameShine 3s ease-in-out infinite;
}

@keyframes nameShine {
  0%, 100% { filter: brightness(1); }
  50% { filter: brightness(1.2); }
}

.lawyer-firm {
  font-family: 'Noto Serif SC', serif;
  font-size: 20px;
  margin-bottom: 30px;
  opacity: 0.9;
  font-weight: 300;
  letter-spacing: 2px;
  position: relative;
  z-index: 10;
}

.lawyer-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin: 40px 0;
  position: relative;
  z-index: 10;
}

.tag {
  font-family: 'Inter', sans-serif;
  background: rgba(201, 169, 97, 0.15);
  backdrop-filter: blur(10px);
  padding: 12px 24px;
  border-radius: 30px;
  font-size: 14px;
  border: 1px solid rgba(201, 169, 97, 0.3);
  transition: all 0.3s var(--transition-smooth);
  letter-spacing: 1px;
}

.tag:hover {
  background: rgba(201, 169, 97, 0.25);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(201, 169, 97, 0.2);
}

.lawyer-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 60px;
  text-align: left;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 10;
}

.info-item {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  padding: 25px;
  border-radius: 12px;
  border: 1px solid rgba(201, 169, 97, 0.2);
  transition: all 0.3s var(--transition-smooth);
}

.info-item:hover {
  background: rgba(201, 169, 97, 0.1);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.info-label {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  opacity: 0.7;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold);
}

.info-value {
  font-family: 'Noto Serif SC', serif;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.5;
}

.info-value a {
  color: inherit;
  text-decoration: none;
}

.info-value a:hover {
  text-decoration: underline;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
  padding: 0 30px;
}

.card {
  background: white;
  border: 1px solid rgba(201, 169, 97, 0.2);
  border-radius: 12px;
  padding: 30px;
  transition: all 0.4s var(--transition-smooth);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
  transform: scaleX(0);
  transition: transform 0.4s var(--transition-smooth);
}

.card:hover::before {
  transform: scaleX(1);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
  border-color: var(--gold);
}

.card-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 28px;
  margin-bottom: 20px;
  box-shadow: 0 8px 25px rgba(201, 169, 97, 0.3);
}
.card h2, .card h3 {
  font-family: 'Noto Serif SC', serif;
  color: var(--navy);
  margin-bottom: 12px;
  font-size: 20px;
  font-weight: 600;
  text-align: left;
  letter-spacing: normal;
  text-transform: none;
}

.card h2::after, .card h3::after { display: none; }

.card p {
  color: #666;
  font-size: 15px;
  line-height: 1.7;
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 30px;
}

.faq-item,
.procedure-item,
.opinion-item,
.guide-item {
  background: white;
  border: 1px solid rgba(201, 169, 97, 0.2);
  border-radius: 12px;
  margin-bottom: 20px;
  overflow: hidden;
  transition: all 0.3s var(--transition-smooth);
}

.faq-item:hover,
.procedure-item:hover,
.opinion-item:hover,
.guide-item:hover {
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.procedure-item,
.opinion-item,
.guide-item {
  margin-bottom: 30px;
}

.faq-question {
  padding: 25px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--cream);
  transition: all 0.3s var(--transition-smooth);
}

.faq-question:hover {
  background: #f0ebe4;
}

.faq-question h2, .faq-question h3 {
  font-family: 'Noto Serif SC', serif;
  color: var(--navy);
  font-size: 17px;
  font-weight: 600;
  flex: 1;
  margin: 0 20px 0 0;
  line-height: 1.5;
  text-align: left;
  letter-spacing: normal;
  text-transform: none;
  position: static;
}

.faq-question h2::after, .faq-question h3::after { display: none; }

.faq-toggle {
  width: 35px;
  height: 35px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: all 0.3s var(--transition-smooth);
  flex-shrink: 0;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
}

.faq-answer {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s var(--transition-smooth);
}

.faq-item.active .faq-answer {
  padding: 25px;
  max-height: 1000px;
}

.faq-conclusion {
  background: linear-gradient(135deg, rgba(201, 169, 97, 0.1) 0%, rgba(201, 169, 97, 0.05) 100%);
  padding: 18px;
  border-radius: 8px;
  margin-bottom: 18px;
  border-left: 4px solid var(--gold);
  font-weight: 600;
  color: var(--navy);
  font-size: 15px;
}

.faq-content {
  color: #555;
  line-height: 1.9;
  white-space: pre-wrap;
  font-size: 15px;
}

.faq-footer {
  margin-top: 25px;
  padding: 20px 28px 18px;
  border-top: 1px solid rgba(201, 169, 97, 0.15);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  font-size: 13px;
  color: #999;
  background: linear-gradient(to bottom, rgba(201, 169, 97, 0.04), transparent);
  border-radius: 0 0 10px 10px;
  position: relative;
}

.faq-footer::before {
  content: '';
  position: absolute;
  top: -1px;
  right: 28px;
  width: 40px;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
}

.faq-footer span {
  font-style: normal;
  color: #888;
  line-height: 1.7;
  letter-spacing: 0.01em;
}

.faq-date {
  font-style: italic;
  color: #aaa;
  font-size: 12px;
  letter-spacing: 0.02em;
}

.item-date {
  font-style: italic;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.procedure-list {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 30px;
}

.procedure-item {
  background: white;
  border: 1px solid rgba(201, 169, 97, 0.2);
  border-radius: 12px;
  margin-bottom: 30px;
  overflow: hidden;
}

.procedure-header {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: white;
  padding: 30px;
  position: relative;
  overflow: hidden;
}

.procedure-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23c9a961' fill-opacity='0.05'%3E%3Cpath d='M20 0v40M0 20h40'/%3E%3C/g%3E%3C/svg%3E");
}
.procedure-header h2, .procedure-header h3 {
  font-family: 'Noto Serif SC', serif;
  color: inherit;
  font-size: 22px;
  margin-bottom: 12px;
  text-align: left;
  letter-spacing: normal;
  text-transform: none;
}

.procedure-header h2::after, .procedure-header h3::after { display: none; }

.procedure-category {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 18px;
  font-size: 13px;
  margin-bottom: 12px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.procedure-category.primary-tag {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  margin-right: 8px;
  padding: 5px 14px;
}

.procedure-category.secondary-tag {
  background: rgba(255, 255, 255, 0.2);
  padding: 5px 14px;
}

.procedure-header .item-category {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  margin-bottom: 12px;
  font-weight: 500;
  letter-spacing: 0.5px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  margin-right: 8px;
}

.procedure-header .item-tag {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  margin-bottom: 12px;
  font-weight: 500;
  letter-spacing: 0.5px;
  background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
  margin-left: 8px;
}

.procedure-header .conclusion {
  background: rgba(201, 169, 97, 0.15);
  padding: 15px;
  border-radius: 8px;
  font-size: 15px;
  position: relative;
  border-left: 3px solid var(--gold);
}

.procedure-body {
  padding: 30px;
}

.procedure-overview {
  margin-bottom: 25px;
  padding: 18px;
  background: var(--cream);
  border-radius: 8px;
  border-left: 4px solid var(--gold);
  font-size: 15px;
  line-height: 1.8;
}

.stages {
  margin-top: 25px;
}

.stage {
  margin-bottom: 25px;
  padding: 25px;
  background: var(--cream);
  border-radius: 10px;
  border: 1px solid rgba(201, 169, 97, 0.15);
}

.stage h4 {
  font-family: 'Noto Serif SC', serif;
  color: var(--navy);
  margin-bottom: 12px;
  font-size: 17px;
}

.stage-content {
  white-space: pre-wrap;
  line-height: 1.9;
  color: #555;
  font-size: 15px;
}

.procedure-footer {
  padding: 18px 30px;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  font-size: 14px;
  color: #999;
  font-style: italic;
  border-top: 1px solid rgba(201, 169, 97, 0.1);
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 30px;
  padding: 0 30px;
}

.case-card {
  background: white;
  border: 1px solid rgba(201, 169, 97, 0.2);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.4s var(--transition-smooth);
  cursor: pointer;
}

.case-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

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

.case-link:hover {
  text-decoration: none;
  color: inherit;
}

.case-header {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: white;
  padding: 25px;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.case-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(201, 169, 97, 0.1) 0%, transparent 50%);
}

.case-category {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  margin-bottom: 12px;
  font-weight: 500;
  letter-spacing: 0.5px;
  position: relative;
}

.case-category.primary-tag {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  padding: 6px 16px;
}

.case-category.secondary-tag {
  background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
  margin-left: 8px;
  margin-bottom: 12px;
  padding: 6px 16px;
}
.case-header h2, .case-header h3 {
  font-family: 'Noto Serif SC', serif;
  color: inherit;
  font-size: 19px;
  line-height: 1.5;
  text-decoration: none;
  text-align: left;
  letter-spacing: normal;
  text-transform: none;
  margin-bottom: 0;
}

.case-header h2::after, .case-header h3::after { display: none; }

.case-body {
  padding: 25px;
  text-decoration: none;
}

.case-conclusion {
  background: linear-gradient(135deg, rgba(201, 169, 97, 0.1) 0%, rgba(201, 169, 97, 0.05) 100%);
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 18px;
  border-left: 4px solid var(--gold);
  font-size: 15px;
  color: var(--navy);
  font-weight: 600;
  line-height: 1.6;
}

.case-result {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #666;
  font-size: 15px;
}

.case-result-icon {
  width: 35px;
  height: 35px;
  flex-shrink: 0; /* 防止在flex布局中被压缩变形 */
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  box-shadow: 0 4px 12px rgba(201, 169, 97, 0.3);
}

/* ===== 弹窗基础 ===== */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 25, 35, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  overflow: auto;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
}

/* 弹窗容器动画 */
.modal-content {
  background: #ffffff;
  border-radius: 20px;
  max-width: 820px;
  width: 92%;
  max-height: 88vh;
  overflow: hidden;
  margin: 20px;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(201, 169, 97, 0.15);
  display: flex;
  flex-direction: column;
  transform: translateY(30px) scale(0.96);
  opacity: 0;
  transition: transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1),
              opacity 0.35s ease;
}

.modal.active .modal-content {
  transform: translateY(0) scale(1);
  opacity: 1;
}

/* ===== 弹窗头部 ===== */
.modal-header {
  background: linear-gradient(135deg, var(--navy) 0%, #152233 40%, var(--navy-light) 100%);
  color: white;
  padding: 32px 40px;
  position: relative;
  flex-shrink: 0;
  overflow: hidden;
}

/* 头部装饰纹理 */
.modal-header::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -15%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(201, 169, 97, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.modal-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 40px;
  right: 40px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark), transparent);
  border-radius: 2px;
}

.modal-header h2 {
  font-family: 'Noto Serif SC', 'Cinzel', serif;
  color: white;
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  text-align: left;
  position: relative;
  z-index: 1;
  padding-right: 50px;
  letter-spacing: 1px;
}

.modal-header h2::after {
  display: none;
}

/* ===== 关闭按钮 ===== */
.modal-close {
  position: absolute;
  right: 28px;
  top: 28px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s var(--transition-smooth);
  z-index: 2;
  line-height: 1;
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

/* ===== 弹窗主体（可滚动区域） ===== */
.modal-body {
  padding: 36px 40px 40px;
  overflow-y: auto;
  flex: 1;
  scroll-behavior: smooth;
}

/* 自定义滚动条 */
.modal-body::-webkit-scrollbar {
  width: 6px;
}

.modal-body::-webkit-scrollbar-track {
  background: transparent;
}

.modal-body::-webkit-scrollbar-thumb {
  background: rgba(201, 169, 97, 0.25);
  border-radius: 3px;
}

.modal-body::-webkit-scrollbar-thumb:hover {
  background: rgba(201, 169, 97, 0.4);
}

/* ===== 成效徽章 ===== */
.modal-conclusion {
  background: linear-gradient(135deg, rgba(201, 169, 97, 0.12) 0%, rgba(201, 169, 97, 0.04) 50%, rgba(201, 169, 97, 0.08) 100%);
  padding: 22px 28px;
  border-radius: 14px;
  margin-bottom: 32px;
  border: 1px solid rgba(201, 169, 97, 0.2);
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.modal-conclusion::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  bottom: 14px;
  width: 4px;
  background: linear-gradient(180deg, var(--gold), var(--gold-dark));
  border-radius: 0 2px 2px 0;
}

.modal-conclusion-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(201, 169, 97, 0.25);
}

.modal-conclusion-icon svg {
  width: 22px;
  height: 22px;
  color: #fff;
}

.modal-conclusion-content {
  flex: 1;
}

.modal-conclusion-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 6px;
}

.modal-conclusion-text {
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.7;
}

/* ===== 内容区块（卡片化） ===== */
.modal-section {
  margin-bottom: 28px;
  padding: 28px 32px;
  background: #fafaf8;
  border-radius: 14px;
  border: 1px solid rgba(201, 169, 97, 0.1);
  transition: border-color 0.3s;
}

.modal-section:hover {
  border-color: rgba(201, 169, 97, 0.25);
}

.modal-section-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.modal-section-icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-section-icon svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
}

.modal-section h3 {
  font-family: 'Noto Serif SC', serif;
  color: var(--navy);
  font-size: 19px;
  font-weight: 700;
  margin: 0;
  letter-spacing: 0.5px;
}

.modal-section p {
  line-height: 2;
  color: #4a4a4a;
  font-size: 15px;
  white-space: pre-wrap;
}

/* ===== 辩护要点列表 ===== */
.defense-points {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: defense-counter;
}

.defense-point-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px dashed rgba(201, 169, 97, 0.15);
  counter-increment: defense-counter;
}

.defense-point-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.defense-point-num {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 3px 10px rgba(201, 169, 97, 0.2);
}

.defense-point-text {
  flex: 1;
  font-size: 15px;
  color: #4a4a4a;
  line-height: 1.8;
  padding-top: 4px;
}

/* ===== 底部签名 ===== */
.modal-footer {
  margin-top: 32px;
  padding: 28px 0 0;
  border-top: 2px solid rgba(201, 169, 97, 0.15);
  display: flex;
  align-items: center;
  gap: 16px;
}

.modal-footer-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-footer-icon svg {
  width: 20px;
  height: 20px;
  color: var(--gold);
}

.modal-footer-text {
  flex: 1;
  font-size: 13px;
  color: #999;
  line-height: 1.7;
}

.modal-footer-text strong {
  color: var(--navy);
  font-weight: 600;
}

/* ===== 响应式 ===== */
@media (max-width: 768px) {
  .modal-content {
    width: 96%;
    max-height: 92vh;
    border-radius: 16px;
    margin: 12px;
  }

  .modal-header {
    padding: 24px 24px;
  }

  .modal-header h2 {
    font-size: 20px;
    padding-right: 40px;
  }

  .modal-header::after {
    left: 24px;
    right: 24px;
  }

  .modal-close {
    right: 18px;
    top: 20px;
    width: 36px;
    height: 36px;
    font-size: 16px;
  }

  .modal-body {
    padding: 24px 20px 28px;
  }

  .modal-conclusion {
    padding: 18px 20px;
    gap: 12px;
  }

  .modal-conclusion-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
  }

  .modal-section {
    padding: 20px 18px;
  }

  .modal-section h3 {
    font-size: 17px;
  }

  .modal-section-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
  }

  .modal-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .modal-content {
    width: 100%;
    max-height: 100vh;
    border-radius: 0;
    margin: 0;
  }

  .modal-header {
    padding: 20px 20px;
  }

  .modal-header h2 {
    font-size: 18px;
  }

  .modal-body {
    padding: 20px 16px 24px;
  }

  .modal-conclusion-text {
    font-size: 14px;
  }

  .modal-section {
    padding: 16px 14px;
    margin-bottom: 18px;
  }

  .defense-point-item {
    gap: 10px;
    padding: 12px 0;
  }

  .defense-point-num {
    width: 26px;
    height: 26px;
    font-size: 11px;
  }
}

.opinion-list {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.opinion-item {
  background: #ffffff;
  border: none;
  border-radius: 16px;
  margin-bottom: 0;
  padding: 0;
  box-shadow: 0 1px 3px rgba(15, 25, 35, 0.04), 0 4px 16px rgba(15, 25, 35, 0.06);
  transition: all 0.35s var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.opinion-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  bottom: 12px;
  width: 4px;
  border-radius: 0 4px 4px 0;
  background: linear-gradient(180deg, var(--gold) 0%, var(--gold-dark) 100%);
  opacity: 0;
  transform: scaleY(0.8);
  transition: all 0.4s var(--transition-smooth);
}

.opinion-item:hover {
  box-shadow: 0 4px 12px rgba(15, 25, 35, 0.08), 0 12px 36px rgba(15, 25, 35, 0.12);
  transform: translateY(-2px);
}

.opinion-item:hover::before {
  opacity: 1;
  transform: scaleY(1);
}

.opinion-header {
  display: block;
  padding: 32px 36px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: 16px 16px 0 0;
}

.opinion-header h2, .opinion-header h3 {
  font-family: 'Noto Serif SC', 'Cinzel', serif;
  color: #ffffff;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 14px;
  letter-spacing: 0.5px;
  text-align: left;
  text-transform: none;
}

.opinion-header h2::after, .opinion-header h3::after { display: none; }

.opinion-date {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
  font-weight: 400;
  margin-bottom: 20px;
}

.opinion-date::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.6;
}

.opinion-body {
  padding: 0 36px 32px;
}

.opinion-conclusion {
  background: linear-gradient(135deg, rgba(201, 169, 97, 0.06) 0%, rgba(201, 169, 97, 0.02) 100%);
  padding: 18px 22px;
  border-radius: 10px;
  margin-bottom: 24px;
  border-left: 3px solid var(--gold);
  font-size: 15px;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.7;
  position: relative;
}

.opinion-conclusion::after {
  content: '"';
  position: absolute;
  right: 18px;
  bottom: 6px;
  font-family: 'Noto Serif SC', serif;
  font-size: 32px;
  color: var(--gold);
  opacity: 0.2;
  line-height: 1;
}

.opinion-content {
  line-height: 2;
  white-space: pre-wrap;
  color: #444;
  font-size: 15px;
}

.opinion-content strong {
  color: var(--navy);
  font-weight: 600;
}

.opinion-footer {
  margin-top: 24px;
  padding: 18px 36px 28px;
  border-top: 1px solid rgba(201, 169, 97, 0.15);
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 13px;
  color: #999;
  overflow-wrap: break-word;
  word-break: break-all;
}

.opinion-footer::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold);
  opacity: 0.4;
  margin-bottom: 4px;
}

.guide-list {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.guide-item {
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 30px;
  overflow: hidden;
}

.guide-header {
  background: linear-gradient(135deg, #1e3a5f 0%, #2c5282 100%);
  color: white;
  padding: 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.guide-header h2, .guide-header h3 {
  color: inherit;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.45;
  margin: 0;
  text-align: left;
  letter-spacing: normal;
  text-transform: none;
}

.guide-header h2::after, .guide-header h3::after { display: none; }

.guide-header .conclusion {
  background: rgba(255,255,255,0.1);
  border-left: 3px solid var(--gold);
  padding: 12px 16px;
  border-radius: 0 6px 6px 0;
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255,255,255,0.92);
}

.view-more-bar {
  text-align: center;
  padding: 30px 0;
}

.view-more-link {
  display: inline-block;
  padding: 12px 40px;
  background: var(--navy);
  color: white;
  text-decoration: none;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s var(--transition-smooth);
}

.view-more-link:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .guide-header {
    padding: 20px 18px;
    gap: 10px;
  }

  .guide-header h2, .guide-header h3 {
    font-size: 18px;
  }

  .guide-header .conclusion {
    font-size: 13px;
    padding: 10px 14px;
  }

  .guide-body {
    padding: 18px;
  }

  .guide-content {
    font-size: 13px;
    line-height: 1.85;
  }

  .guide-footer {
    padding: 12px 18px;
    font-size: 11px;
  }
}

.guide-body {
  padding: 25px;
}

.guide-content {
  line-height: 2;
  white-space: pre-wrap;
  color: #333;
}

.guide-content strong {
  color: #1e3a5f;
  font-weight: 600;
}

.guide-footer {
  padding: 15px 25px;
  background: #f5f5f5;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  font-size: 13px;
  color: #999;
  font-style: italic;
}

.breadcrumb {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.breadcrumb-list {
  list-style: none;
  display: flex;
  gap: 10px;
  margin: 0;
  padding: 0;
  font-size: 14px;
  color: #666;
}

.breadcrumb-item {
  display: flex;
  align-items: center;
}

.breadcrumb-item:not(:last-child)::after {
  content: '>';
  margin-left: 10px;
  color: #999;
}

.breadcrumb-item a {
  color: #1e3a5f;
  text-decoration: none;
}

.breadcrumb-item a:hover {
  text-decoration: underline;
}

footer {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: white;
  padding: 60px 0;
  margin-top: 80px;
  text-align: center;
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark), var(--gold));
}

.footer-content {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.footer-main-sections {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  text-align: left;
}

.footer-section {
  margin-bottom: 0;
}

.footer-section h3 {
  font-family: 'Noto Serif SC', serif;
  font-size: 20px;
  margin-bottom: 20px;
  color: var(--gold);
  position: relative;
}

.footer-section h3::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--gold);
}

.footer-section p {
  line-height: 1.9;
  opacity: 0.9;
  font-size: 15px;
}

.footer-section p:empty {
  display: none;
}

.footer-section p a,
.footer-section a {
  color: inherit;
  text-decoration: none;
}

.footer-section p a:hover,
.footer-section a:hover {
  text-decoration: underline;
}

.footer-copyright {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-copyright p {
  line-height: 1.9;
  opacity: 0.8;
  font-size: 14px;
}

.back-to-top {
  position: fixed;
  bottom: 35px;
  right: 35px;
  width: 55px;
  height: 55px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: 0 8px 25px rgba(201, 169, 97, 0.4);
  transition: all 0.4s var(--transition-smooth);
  z-index: 1000;
}

.back-to-top:hover {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 100%);
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 12px 35px rgba(201, 169, 97, 0.5);
}

.back-to-top.visible {
  display: flex;
}

.admin-btn {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--navy);
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s var(--transition-smooth);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.admin-btn:hover {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(201, 169, 97, 0.4);
}

.filter-bar {
  max-width: 900px;
  margin: 0 auto 30px;
  padding: 0 20px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 8px 16px;
  border: 1px solid #1e3a5f;
  background: white;
  color: #1e3a5f;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 14px;
}

.filter-btn:hover,
.filter-btn.active {
  background: #1e3a5f;
  color: white;
}

@media (max-width: 768px) {
  .nav-bar .container {
    flex-wrap: wrap;
    position: relative;
  }

  .opinion-list {
    gap: 24px;
    padding: 0 12px;
  }

  .opinion-item {
    border-radius: 12px;
    padding: 0;
    box-shadow: 0 1px 2px rgba(15, 25, 35, 0.04), 0 3px 10px rgba(15, 25, 35, 0.06);
  }

  .opinion-item::before {
    width: 3px;
    top: 10px;
    bottom: 10px;
    border-radius: 0 3px 3px 0;
  }

  .opinion-item:hover {
    transform: translateY(-1px);
  }

  .opinion-header {
    padding: 24px 20px;
  }

  .opinion-header h2, .opinion-header h3 {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 10px;
    font-weight: 700;
    letter-spacing: 0.3px;
  }

  .opinion-date {
    font-size: 12px;
    margin-bottom: 16px;
  }

  .opinion-date:empty {
    display: none;
  }

  .opinion-body {
    padding: 0 20px 24px;
  }

  .opinion-conclusion {
    padding: 14px 16px;
    border-radius: 8px;
    margin-bottom: 18px;
    font-size: 14px;
    line-height: 1.65;
  }

  .opinion-conclusion::after {
    font-size: 24px;
    right: 12px;
    bottom: 4px;
  }

  .opinion-content {
    font-size: 14px;
    line-height: 1.85;
  }

  .opinion-footer {
    margin-top: 18px;
    padding: 14px 20px 20px;
    font-size: 12px;
  }

  .nav-container {
    height: 60px;
    padding: 0 15px;
    flex-wrap: wrap;
  }

  .logo {
    flex: 1;
    min-width: 0;
  }

  .logo-icon {
    width: 36px;
    height: 36px;
    font-size: 18px;
  }

  .logo-divider {
    height: 24px;
    margin: 0 10px;
  }

  .logo-name {
    font-size: 17px;
    letter-spacing: 1px;
  }

  .nav-list li + li::before {
    display: none;
  }

  .mobile-menu-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 22px;
    cursor: pointer;
    transition: all 0.3s var(--transition-smooth);
    box-shadow: 0 4px 12px rgba(201, 169, 97, 0.3);
    flex-shrink: 0;
  }

  .mobile-menu-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(201, 169, 97, 0.4);
  }

  #main-nav {
    display: none;
    width: 100%;
    margin-top: 0;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--navy);
    z-index: 9998;
    padding: 0 15px 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    border-bottom: 2px solid var(--gold);
  }

  #main-nav.active {
    display: block;
  }

  .nav-list {
    display: none;
    flex-direction: column;
    width: 100%;
    background: rgba(15, 25, 35, 0.98);
    padding: 12px;
    gap: 0;
    border-radius: 12px;
    margin-top: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  }

  .nav-list.active {
    display: flex;
  }

  .nav-list li {
    width: 100%;
    border-bottom: 1px solid rgba(201, 169, 97, 0.15);
  }

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

  .nav-list a {
    display: block;
    padding: 14px 12px;
    font-size: 15px;
    text-align: left;
    border-radius: 6px;
    color: rgba(255, 255, 255, 0.8);
  }

  .nav-list a:hover {
    background: rgba(201, 169, 97, 0.08);
    color: var(--gold);
  }

  .nav-list a[aria-current="page"] {
    background: rgba(201, 169, 97, 0.15);
    color: var(--gold);
    font-weight: 500;
    box-shadow: none;
  }

  .nav-bar .admin-btn {
    display: none;
  }

  .lawyer-name {
    font-size: 32px;
  }

  .lawyer-firm {
    font-size: 17px;
  }

  h2 {
    font-size: 26px;
    letter-spacing: 1px;
  }

  .card-grid,
  .case-grid {
    grid-template-columns: 1fr;
    padding: 0 15px;
    gap: 20px;
  }

  .lawyer-info-grid {
    grid-template-columns: 1fr;
    padding: 0 15px;
  }

  .lawyer-profile {
    padding: 100px 15px 60px;
  }

  .container {
    padding: 0 15px;
  }

  .back-to-top {
    bottom: 25px;
    right: 25px;
    width: 50px;
    height: 50px;
  }

  .modal-content {
    width: 96%;
    margin: 10px;
    border-radius: 16px;
  }

  .modal-body {
    padding: 24px 20px 28px;
  }
}

@media (max-width: 480px) {
  .logo-icon {
    width: 32px;
    height: 32px;
    font-size: 16px;
  }

  .logo-divider {
    height: 20px;
    margin: 0 8px;
  }

  .logo-name {
    font-size: 15px;
    letter-spacing: 1px;
  }

  .mobile-menu-btn {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }

  .lawyer-name {
    font-size: 28px;
  }

  h2 {
    font-size: 22px;
  }
}

.login-body {
  font-family: 'Noto Sans SC', -apple-system, BlinkMacSystemFont, sans-serif;
  background: linear-gradient(135deg, #0d1b2a 0%, #1b3a4b 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-container {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 16px;
  padding: 40px;
  width: 100%;
  max-width: 400px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.login-header {
  text-align: center;
  margin-bottom: 30px;
}

.login-header h1 {
  font-size: 24px;
  color: #0d1b2a;
  margin-bottom: 8px;
}

.login-header p {
  color: #666;
  font-size: 14px;
}

.login-form-group {
  margin-bottom: 20px;
}

.login-form-group label {
  display: block;
  margin-bottom: 8px;
  color: #333;
  font-weight: 500;
}

.login-form-group input {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 14px;
  transition: border-color 0.3s;
}

.login-form-group input:focus {
  outline: none;
  border-color: #1b3a4b;
}

.login-btn {
  width: 100%;
  padding: 14px;
  background: #0d1b2a;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}

.login-btn:hover {
  background: #1b3a4b;
}

.login-error {
  color: #e74c3c;
  font-size: 14px;
  margin-top: 10px;
  text-align: center;
  display: none;
}

.login-back-link {
  display: block;
  text-align: center;
  margin-top: 20px;
  color: #666;
  text-decoration: none;
  font-size: 14px;
}

.login-back-link:hover {
  color: #0d1b2a;
}

/* ===== 内容底部标签 ===== */
.item-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.item-tag {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 14px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.3px;
  color: #fff;
  background: linear-gradient(135deg, var(--navy-light) 0%, var(--navy) 100%);
  border: 1px solid rgba(201, 169, 97, 0.3);
  transition: all 0.2s ease;
  white-space: nowrap;
}

.item-tag:hover {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 100%);
  color: var(--navy);
  border-color: var(--gold);
  transform: translateY(-1px);
  box-shadow: 0 3px 10px rgba(201, 169, 97, 0.25);
}

@media (max-width: 768px) {
  .item-tag {
    font-size: 11px;
    padding: 3px 10px;
  }
}
