/* 全局样式 - 唯美淡雅中国风 */
:root {
  /* 淡雅中国风配色 */
  --red-primary: #B8424B;
  --red-dark: #8B2F38;
  --gold-primary: #C9A962;
  --gold-light: #E8D5A8;
  --gray-dark: #3D3D3D;
  --gray-medium: #6B6B6B;
  --gray-light: #F8F6F2;
  --cream: #FAF8F5;
  --jade: #7BA193;
  --ink: #2C3E50;
}

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

body {
  font-family: "Noto Serif SC", "Songti SC", "SimSun", "Microsoft Yahei", sans-serif;
  color: var(--gray-dark);
  background-color: var(--cream);
  line-height: 1.8;
}

.container-custom {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* 导航栏 */
.navbar {
  background-color: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
  padding: 12px 0;
  border-bottom: 1px solid rgba(201, 169, 98, 0.15);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.navbar-brand img {
  height: 45px;
  border-radius: 4px;
  background: white;
  padding: 5px;
}

.navbar-brand span {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--red-primary);
  letter-spacing: 2px;
}

.nav-link {
  color: var(--gray-dark) !important;
  font-size: 0.95rem;
  margin: 0 12px;
  position: relative;
  font-weight: 500;
  letter-spacing: 1px;
  padding: 8px 0 !important;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--red-primary) !important;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 80%;
}

.nav-link.active {
  color: var(--red-primary) !important;
}

/* 按钮 */
.btn-primary {
  background: linear-gradient(135deg, var(--red-primary), var(--red-dark));
  border: none;
  padding: 12px 30px;
  border-radius: 2px;
  font-weight: 500;
  letter-spacing: 2px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(184, 66, 75, 0.2);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--red-dark), #6B2028);
  transform: translateY(-2px);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-primary), #A88B4A);
  border: none;
  color: white !important;
  padding: 12px 30px;
  border-radius: 2px;
  font-weight: 500;
  letter-spacing: 2px;
  transition: all 0.3s ease;
}

.btn-gold:hover {
  background: linear-gradient(135deg, #A88B4A, #8B7040);
  transform: translateY(-2px);
}

/* 标题 */
.section-title {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 2.2rem;
  color: var(--ink);
  font-weight: 600;
  position: relative;
  display: inline-block;
  padding-bottom: 20px;
  letter-spacing: 4px;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
}

.section-title p {
  color: var(--gray-medium);
  font-size: 1rem;
  margin-top: 20px;
}

.section {
  padding: 80px 0;
}

.bg-gray {
  background-color: rgba(248, 246, 242, 0.8);
}

/* 轮播 */
.carousel-item {
  height: 650px;
}

.carousel-item img {
  height: 100%;
  object-fit: cover;
}

.carousel-caption {
  bottom: 25%;
  left: 8%;
  right: 8%;
  text-align: left;
  background: linear-gradient(90deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 100%);
  padding: 40px 50px;
  border-radius: 2px;
  border-left: 4px solid var(--gold-primary);
}

.carousel-caption h5 {
  font-size: 2.2rem;
  color: white;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 3px;
}

.carousel-caption p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 30px;
}

/* 品牌 */
.brand-intro {
  display: flex;
  align-items: center;
  gap: 60px;
}

.brand-intro img {
  width: 45%;
  height: auto;
  border: 8px solid white;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.brand-content {
  width: 50%;
}

.brand-content h3 {
  color: var(--red-primary);
  font-size: 1.8rem;
  margin-bottom: 25px;
  font-weight: 600;
  letter-spacing: 3px;
  position: relative;
  padding-bottom: 15px;
}

.brand-content h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background: var(--gold-primary);
}

.brand-content p {
  font-size: 1.05rem;
  line-height: 2;
  margin-bottom: 20px;
  color: var(--gray-medium);
}

/* 优势卡片 */
.advantage-card {
  background: white;
  padding: 40px 30px;
  margin-bottom: 30px;
  text-align: center;
  transition: all 0.4s ease;
  border: 1px solid rgba(201, 169, 98, 0.2);
  border-radius: 2px;
}

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

.advantage-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

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

.advantage-icon {
  font-size: 2.8rem;
  color: var(--red-primary);
  margin-bottom: 20px;
}

.advantage-card h4 {
  color: var(--ink);
  font-size: 1.3rem;
  margin-bottom: 15px;
  font-weight: 600;
}

/* 课程卡片 */
.course-card {
  background: white;
  border: 1px solid rgba(201, 169, 98, 0.15);
  margin-bottom: 30px;
  transition: all 0.4s ease;
  border-radius: 2px;
}

.course-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.course-img {
  height: 220px;
  overflow: hidden;
}

.course-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.course-card:hover .course-img img {
  transform: scale(1.08);
}

.course-content {
  padding: 25px;
}

.course-content h4 {
  color: var(--red-primary);
  font-size: 1.2rem;
  margin-bottom: 12px;
  font-weight: 600;
}

.course-price {
  color: var(--gold-primary);
  font-size: 1.3rem;
  font-weight: 700;
}

/* 老师卡片 */
.teacher-card {
  text-align: center;
  margin-bottom: 30px;
  background: white;
  padding: 20px;
  border: 1px solid rgba(201, 169, 98, 0.15);
  border-radius: 2px;
  transition: all 0.4s ease;
}

.teacher-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.teacher-img {
  height: 280px;
  overflow: hidden;
  margin-bottom: 20px;
  border: 4px solid var(--gold-light);
}

.teacher-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.teacher-card:hover .teacher-img img {
  transform: scale(1.05);
}

.teacher-card h4 {
  color: var(--ink);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 8px;
}

/* 案例 */
.case-card {
  background: white;
  padding: 30px;
  margin-bottom: 30px;
  border-left: 4px solid var(--red-primary);
  transition: all 0.4s ease;
}

.case-card:hover {
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.case-info {
  display: flex;
  justify-content: space-between;
  color: #999;
  margin-bottom: 15px;
}

/* 底部 */
.footer {
  background: linear-gradient(135deg, #2C3E50 0%, #1a252f 100%);
  color: white;
  padding: 80px 0 30px;
}

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

.footer-logo h3 {
  color: white;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 3px;
}

.footer-logo img {
  height: 50px;
  background: white;
  padding: 5px;
  border-radius: 4px;
  margin-bottom: 10px;
}

.footer-links h4 {
  color: var(--gold-primary);
  font-size: 1.1rem;
  margin-bottom: 25px;
  font-weight: 600;
  letter-spacing: 2px;
  position: relative;
  padding-bottom: 15px;
}

.footer-links h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--gold-primary);
}

.footer-links ul li a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-links ul li a:hover {
  color: var(--gold-primary);
  padding-left: 8px;
}

.contact-info {
  display: flex;
  align-items: center;
  margin-bottom: 18px;
  color: rgba(255,255,255,0.7);
}

.contact-info i {
  color: var(--gold-primary);
  margin-right: 12px;
}

.copyright {
  text-align: center;
  padding-top: 40px;
  margin-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.4);
}

/* 文化 */
.culture-content {
  display: flex;
  gap: 60px;
  margin-bottom: 50px;
  align-items: center;
}

.culture-img {
  width: 42%;
}

.culture-img img {
  width: 100%;
  border: 6px solid white;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.culture-text {
  width: 52%;
}

.culture-text h3 {
  color: var(--red-primary);
  font-size: 1.6rem;
  margin-bottom: 25px;
  font-weight: 600;
  letter-spacing: 3px;
}

.culture-text p {
  line-height: 2;
  margin-bottom: 18px;
  color: var(--gray-medium);
}

/* 师资详情 */
.teacher-detail {
  display: flex;
  gap: 50px;
  margin-bottom: 80px;
  background: white;
  padding: 40px;
  border-radius: 2px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}

.teacher-detail-img img {
  width: 100%;
  border: 5px solid var(--gold-light);
}

.teacher-detail-content h3 {
  color: var(--ink);
  font-size: 1.8rem;
  font-weight: 600;
}

.teacher-title {
  color: var(--gold-primary);
  font-size: 1.1rem;
  margin-bottom: 25px;
  font-weight: 500;
}

.teacher-honor {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 30px;
}

.teacher-honor-item {
  background: linear-gradient(135deg, var(--gray-light), white);
  padding: 12px 20px;
  border-left: 3px solid var(--red-primary);
}

/* 课程Tabs */
.course-tabs {
  margin-bottom: 50px;
  border-bottom: 2px solid rgba(201, 169, 98, 0.2);
}

.course-tabs .nav-link {
  color: var(--gray-dark);
  font-size: 1rem;
  padding: 15px 25px;
  border: none;
  font-weight: 500;
}

.course-tabs .nav-link.active {
  color: var(--red-primary);
  background: transparent;
}

/* VIP */
.vip-card {
  background: linear-gradient(135deg, var(--red-primary), #8B2F38);
  color: white;
  padding: 50px 40px;
  text-align: center;
  border-radius: 2px;
}

.vip-card h3 {
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 3px;
}

.vip-price {
  font-size: 2.8rem;
  color: var(--gold-primary);
  font-weight: 700;
}

.vip-card ul li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--gold-primary);
}

/* 课程详情 */
.course-detail {
  background: white;
  padding: 35px;
  margin-bottom: 30px;
  border: 1px solid rgba(201, 169, 98, 0.15);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.course-detail:hover {
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.course-detail h4 {
  color: var(--ink);
  font-size: 1.4rem;
  font-weight: 600;
}

/* 案例筛选 */
.case-filter button {
  background: white;
  border: 1px solid rgba(184, 66, 75, 0.3);
  color: var(--gray-dark);
  padding: 10px 25px;
  margin: 0 8px;
  transition: all 0.3s ease;
}

.case-filter button.active,
.case-filter button:hover {
  background: var(--red-primary);
  color: white;
}

.case-detail {
  display: flex;
  gap: 35px;
  background: white;
  padding: 30px;
  border-radius: 2px;
}

.case-detail-img img {
  border: 4px solid var(--gold-light);
}

.case-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-primary));
  color: white;
  padding: 5px 18px;
  border-radius: 20px;
}

/* 通知卡片 */
.notice-card {
  background: white;
  border: 1px solid rgba(201, 169, 98, 0.15);
  padding: 35px;
  border-radius: 2px;
  position: relative;
}

.notice-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--red-primary);
}

.notice-card:hover {
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.notice-title {
  color: var(--ink);
  font-size: 1.4rem;
  font-weight: 600;
}

.notice-date {
  color: var(--gold-primary);
  font-weight: 600;
}

/* 联系表单 */
.contact-form {
  background: white;
  padding: 50px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.06);
  border-radius: 2px;
  border: 1px solid rgba(201, 169, 98, 0.15);
}

.contact-form .form-control {
  border-radius: 2px;
  border: 1px solid rgba(201, 169, 98, 0.3);
  padding: 14px 18px;
}

.contact-form .form-control:focus {
  border-color: var(--red-primary);
  box-shadow: 0 0 0 3px rgba(184, 66, 75, 0.1);
}

.contact-map {
  height: 450px;
  background: #f5f5f5;
  border-radius: 2px;
}

/* 页面头部 */
.page-header {
  background: linear-gradient(135deg, var(--ink) 0%, #1a252f 100%);
  color: white;
  padding: 80px 0;
  text-align: center;
}

.page-header h1 {
  font-size: 2.4rem;
  font-weight: 600;
  letter-spacing: 5px;
}

.breadcrumb {
  background: transparent;
  padding: 20px 0;
}

.breadcrumb-item a {
  color: var(--gray-medium);
  text-decoration: none;
}

.breadcrumb-item.active {
  color: var(--red-primary);
}

/* 分页 */
.pagination .page-link {
  color: var(--gray-dark);
  border: 1px solid rgba(201, 169, 98, 0.3);
  padding: 10px 16px;
}

.pagination .page-item.active .page-link {
  background: var(--red-primary);
  border-color: var(--red-primary);
}

/* 占位图 - 中国风 */
.placeholder-img {
  background: linear-gradient(135deg, #F8F6F2 0%, #EDE8DF 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #C9A962;
  font-family: "Noto Serif SC", serif;
  position: relative;
  overflow: hidden;
}

.placeholder-img::before {
  content: '❀';
  font-size: 3rem;
  opacity: 0.4;
}

.placeholder-img::after {
  content: '';
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  border: 1px solid rgba(201, 169, 98, 0.3);
}

/* 响应式 */
@media (max-width: 992px) {
  .carousel-item { height: 450px; }
  .brand-intro, .culture-content, .teacher-detail, .case-detail {
    flex-direction: column;
    gap: 30px;
  }
  .brand-intro img, .brand-content, .culture-img, .culture-text, .teacher-detail-img, .teacher-detail-content, .case-detail-img, .case-detail-content {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .carousel-caption h5 { font-size: 1.6rem; }
  .section { padding: 50px 0; }
  .section-title h2 { font-size: 1.8rem; }
}

@media (max-width: 576px) {
  .carousel-item { height: 300px; }
  .carousel-caption { display: none; }
  .section-title h2 { font-size: 1.6rem; }
}


/* 视频卡片 */
.course-video-card {
  background: white;
  padding: 20px;
  border-radius: 2px;
  transition: all 0.3s ease;
  border: 1px solid rgba(201, 169, 98, 0.15);
}

.course-video-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.video-container {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.video-container::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.2);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.video-container:hover::after {
  opacity: 1;
}

.video-container:hover i {
  transform: scale(1.1);
}

.video-container i {
  transition: transform 0.3s ease;
  z-index: 1;
}

.course-video-card h5 {
  color: var(--ink);
  font-weight: 600;
  margin-bottom: 5px;
}

.badge {
  font-size: 0.8rem;
  padding: 5px 12px;
}

/* 穴位卡片 */
.acupoint-card {
  display: block;
  background: white;
  padding: 25px 20px;
  text-align: center;
  border: 2px solid rgba(201, 169, 98, 0.3);
  border-radius: 4px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.acupoint-card:hover {
  border-color: var(--red-primary);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.acupoint-card .acupoint-name {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
}

.acupoint-card .acupoint-english {
  font-size: 0.85rem;
  color: var(--gray-medium);
}

.acupoint-card.secondary {
  border-color: rgba(201, 169, 98, 0.15);
}

.acupoint-card.secondary:hover {
  border-color: var(--gold-primary);
}

/* 处方卡片 */
.prescription-card {
  display: flex;
  align-items: center;
  background: white;
  padding: 25px;
  border: 1px solid rgba(201, 169, 98, 0.15);
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.prescription-card:hover {
  border-color: var(--red-primary);
  transform: translateX(5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.prescription-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-right: 20px;
  min-width: 60px;
}

.prescription-content {
  flex: 1;
}

.prescription-content h4 {
  color: var(--ink);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.prescription-content p {
  color: var(--gray-medium);
  font-size: 0.95rem;
  margin-bottom: 12px;
}

.prescription-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.prescription-tag {
  background: var(--gray-light);
  color: var(--gray-medium);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
}

.prescription-arrow {
  font-size: 1.5rem;
  color: var(--gold-primary);
  margin-left: 15px;
}

/* 电子书横幅 */
.ebook-banner h3 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.ebook-banner p {
  font-size: 1.1rem;
  opacity: 0.9;
}

/* 师资与联系合并页面 */
.teachers-contact-section {
  background: white;
  padding: 50px;
  border-radius: 4px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.contact-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.contact-method {
  text-align: center;
  padding: 25px;
  background: var(--gray-light);
  border-radius: 4px;
}

.contact-method i {
  font-size: 2.5rem;
  color: var(--red-primary);
  margin-bottom: 15px;
}

.contact-method h5 {
  color: var(--ink);
  font-weight: 600;
  margin-bottom: 10px;
}

.contact-method p {
  color: var(--gray-medium);
  margin: 0;
}


/* 中国风增强样式 */
:root {
  --gold-accent: #D4AF37;
  --ink-black: #2C2C2C;
}

/* 页面背景增强 - 淡雅中国风 */
body {
  background-color: #FDFBF7;
  background-image: 
    radial-gradient(ellipse at top, rgba(139,47,56,0.03) 0%, transparent 50%),
    radial-gradient(ellipse at bottom, rgba(212,175,55,0.03) 0%, transparent 50%);
}

/* 导航栏增强 */
.navbar {
  background: linear-gradient(180deg, #FDFBF7 0%, rgba(253,251,247,0.95) 100%) !important;
  border-bottom: 2px solid var(--gold-accent);
  box-shadow: 0 2px 20px rgba(139,47,56,0.1);
}

.navbar-brand {
  font-family: 'Noto Serif SC', 'STSong', 'SimSun', serif !important;
  font-weight: 700;
  letter-spacing: 3px;
}

/* 标题字体 */
h1, h2, h3, h4 {
  font-family: 'Noto Serif SC', 'STKaiti', 'KaiTi', serif !important;
  font-weight: 600;
}

/* 按钮中国风 */
.btn-gold {
  background: linear-gradient(135deg, #D4AF37 0%, #B8860B 100%);
  border: none;
  color: white;
  font-family: 'Noto Serif SC', serif;
  letter-spacing: 2px;
  position: relative;
  overflow: hidden;
}

.btn-gold::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s;
}

.btn-gold:hover::before {
  left: 100%;
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(212,175,55,0.4);
}

/* 卡片样式增强 */
.feature-card, .course-card, .teacher-card, .acupoint-card {
  border: 1px solid rgba(139,47,56,0.2);
  border-radius: 4px;
  transition: all 0.3s ease;
  background: white;
}

.feature-card:hover, .course-card:hover, .teacher-card:hover, .acupoint-card:hover {
  border-color: var(--gold-accent);
  box-shadow: 0 8px 30px rgba(139,47,56,0.15);
  transform: translateY(-5px);
}

/* 标题装饰线 */
.section-title h2::before,
.section-title h2::after {
  content: '◆';
  color: var(--gold-accent);
  margin: 0 15px;
  font-size: 0.6em;
  opacity: 0.6;
}

/* 页脚增强 */
.footer {
  background: linear-gradient(180deg, #2C2C2C 0%, #1A1A1A 100%);
  border-top: 3px solid var(--gold-accent);
  padding: 40px 0 20px;
}

.footer h5 {
  color: var(--gold-accent);
  font-family: 'Noto Serif SC', serif;
  letter-spacing: 2px;
  border-bottom: 1px solid rgba(212,175,55,0.3);
  padding-bottom: 10px;
}

/* 页面标题区域 */
.page-header {
  background: linear-gradient(135deg, rgba(139,47,56,0.9) 0%, rgba(75,25,30,0.9) 100%),
              url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><text y="50" font-size="30" fill="rgba(255,255,255,0.05)">针灸</text></svg>');
  padding: 60px 0;
  position: relative;
}

.page-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold-accent), transparent);
}

/* 穴位卡片增强 */
.acupoint-card {
  background: linear-gradient(145deg, #fff 0%, #FDFBF7 100%);
  border: 1px solid rgba(212,175,55,0.3);
}

.acupoint-card .acupoint-name {
  font-family: 'Noto Serif SC', serif;
  color: #8B2F38;
  font-weight: 600;
}

/* 响应式调整 */
@media (max-width: 768px) {
  .section-title h2::before,
  .section-title h2::after {
    display: none;
  }
}
