@font-face {
  font-family: 'MaoTi';
  src: url('毛体.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

body {
  font-family: 'ZCOOL XiaoWei', 'Ma Shan Zheng', serif;
  margin: 0;
  padding: 0;
  background-color: #f8f5f0;
  color: #333;
  overflow-x: hidden;
}

/* 导航栏样式 */
.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 250px;
  background: rgba(28, 21, 35, 0.95);
  transition: all 0.4s ease;
  z-index: 1000;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.3);
  overflow-y: auto;
  overflow-x: hidden;
}

.sidebar.collapsed {
  width: 70px;
}

.sidebar-header {
  padding: 1.2rem 1rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-header h2 {
  font-family: 'Ma Shan Zheng', cursive;
  font-size: 2.2rem;
  color: #e6d2b5;
  margin: 0;
  white-space: nowrap;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  margin-left: 0.5rem;
}

.sidebar-header i {
  font-size: 2rem;
  color: #e6d2b5;
  margin-right: 0.5rem;
}

.sidebar.collapsed .sidebar-header h2 {
  display: none;
}

.nav-button {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  padding: 1rem 1.5rem;
  color: #e6d2b5;
  font-size: 1.2rem;
  border-left: 3px solid transparent;
  transition: all 0.3s ease;
  text-align: center;
}

.sidebar.collapsed .nav-button {
  padding: 1rem 0;
  justify-content: center;
}

.sidebar.collapsed .nav-button span {
  display: none;
}

.sidebar.collapsed .nav-button i {
  font-size: 1.5rem;
}

.nav-button i {
  margin-right: 0.75rem;
  font-size: 1.2rem;
  width: 1.5rem;
  text-align: center;
}

.sidebar.collapsed .nav-button i {
  margin-right: 0;
}

.nav-button:hover, .nav-button.active {
  background: rgba(255, 255, 255, 0.1);
  border-left: 3px solid #c8a97e;
}

.nav-button.active {
  font-weight: bold;
}

/* 汉堡菜单按钮 */
.toggle-button {
  position: fixed;
  top: 20px;
  left: 260px;
  width: 40px;
  height: 40px;
  border-radius: 5px;
  background: rgba(28, 21, 35, 0.8);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 1001;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.toggle-button.active {
  left: 80px;
  background: rgba(200, 169, 126, 0.8);
}

.toggle-button span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: #e6d2b5;
  margin: 3px 0;
  transition: all 0.3s ease;
}

.toggle-button.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.toggle-button.active span:nth-child(2) {
  opacity: 0;
}

.toggle-button.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* 主内容区域 */
.main-content {
  margin-left: 250px;
  transition: margin-left 0.4s ease;
  position: relative;
  min-height: 100vh;
}

.main-content.expanded {
  margin-left: 70px;
}

/* 顶部任务栏样式 */
.top-navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 1.5rem;
  background-color: rgba(28, 21, 35, 0.9);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  position: relative;
}

.navbar-title {
  font-family: 'Ma Shan Zheng', 'MaoTi', cursive;
  color: #e6d2b5;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  letter-spacing: 2px;
}

/* 搜索框容器样式 */
.search-container {
  flex-grow: 1;
  display: flex;
  justify-content: center;
  position: relative;
  max-width: 450px;
  margin: 0 auto;
}

/* 搜索输入框样式 */
.search-input {
  width: 100%;
  padding: 0.6rem 1rem;
  padding-right: 2.5rem;
  border: 1px solid rgba(230, 210, 181, 0.3);
  border-radius: 2rem;
  background-color: rgba(255, 255, 255, 0.15);
  color: #e6d2b5;
  font-family: 'ZCOOL XiaoWei', sans-serif;
  transition: all 0.3s ease;
}

.search-input:focus {
  outline: none;
  background-color: rgba(255, 255, 255, 0.25);
  border-color: rgba(230, 210, 181, 0.5);
}

.search-input::placeholder {
  color: rgba(230, 210, 181, 0.7);
}

/* 搜索图标样式 */
.search-icon {
  position: absolute;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
  color: #e6d2b5;
  pointer-events: none;
}

/* 登录按钮样式 */
.login-button {
  background-color: rgba(200, 169, 126, 0.8);
  color: #333;
  padding: 0.5rem 1.2rem;
  border: none;
  border-radius: 2rem;
  font-weight: 500;
  font-family: 'ZCOOL QingKe HuangYou', sans-serif;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.login-button:hover {
  background-color: rgba(200, 169, 126, 1);
  transform: translateY(-2px);
}

/* 音乐播放器样式 */
.music-player {
  margin: 0 1rem;
}

.music-player audio {
  border-radius: 20px;
  background-color: rgba(255,255,255,0.2);
  height: 35px;
}

/* 调整播放器控件颜色 */
.music-player audio::-webkit-media-controls-panel {
  background-color: rgba(101, 113, 85, 0.7);
}

/* 小屏幕适配 */
@media (max-width: 768px) {
  .music-player {
      display: none; /* 在小屏幕上隐藏音乐播放器 */
  }
  .sidebar {
      width: 0;
      transform: translateX(-100%);
  }
  .sidebar.collapsed {
      width: 70px;
      transform: translateX(0);
  }
  .main-content {
      margin-left: 0;
  }
  .toggle-button {
      left: 20px;
  }
  .toggle-button.active {
      left: 80px;
  }
}

/* 子菜单样式 */
.sub-menu {
  display: none;
  padding-left: 1.5rem;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease;
}

.sub-menu.active {
  display: block;
  max-height: 500px;
}

.sub-menu a {
  display: flex;
  align-items: center;
  padding: 0.75rem 1rem;
  color: rgba(230, 210, 181, 0.8);
  font-size: 1rem;
  transition: all 0.3s ease;
  border-left: 2px solid transparent;
}

.sub-menu a:hover {
  color: #e6d2b5;
  background: rgba(255, 255, 255, 0.05);
  border-left: 2px solid rgba(200, 169, 126, 0.5);
}

.sub-menu a.active {
  color: #e6d2b5;
  border-left: 2px solid #c8a97e;
  background: rgba(255, 255, 255, 0.08);
}

.sub-menu a i {
  margin-right: 0.75rem;
  font-size: 0.9rem;
  width: 1.2rem;
  text-align: center;
}

/* 替换二级菜单的CSS样式，确保在折叠状态下正确显示 */
.sidebar.collapsed .sub-menu {
  position: fixed;
  left: 70px; /* 与折叠后的侧边栏宽度一致 */
  width: 200px;
  background-color: rgba(28, 21, 35, 0.95);
  border-radius: 0 8px 8px 0;
  box-shadow: 3px 3px 15px rgba(0, 0, 0, 0.3);
  z-index: 9999; /* 确保在最上层 */
  padding: 1rem 0;
  display: none;
  transition: none;
  opacity: 1;
  transform: none;
  max-height: none;
  overflow: visible;
}

/* 隐藏折叠状态下的箭头图标 */
.sidebar.collapsed .arrow,
.sidebar.collapsed .fa-chevron-down {
  display: none !important;
}

/* 直接简化悬浮显示逻辑，使用更强的选择器 */
.sidebar.collapsed .nav-button.has-submenu:hover + .sub-menu {
  display: block !important;
}

.sidebar.collapsed .sub-menu:hover {
  display: block !important;
}

/* 双语显示样式 */
.sub-menu a {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0.75rem 1.25rem;
  transition: all 0.3s ease;
}

.sub-menu a .menu-en {
  font-size: 0.9rem;
  opacity: 0.7;
  margin-bottom: 0.2rem;
}

.sub-menu a .menu-cn {
  font-size: 1.1rem;
}

/* 滚动槽样式 */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.1);
}
::-webkit-scrollbar-thumb {
  background: rgba(200, 169, 126, 0.5);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(200, 169, 126, 0.8);
}

/* 菜单箭头 */
.arrow {
  margin-left: auto;
  transition: transform 0.3s ease;
}
.arrow.down {
  transform: rotate(180deg);
}

.has-submenu {
  position: relative;
}

/* 内容区域样式 */
#content-area {
  padding: 0;
  position: relative;
  overflow: hidden;
  margin: 0;
}

.section-title {
  font-family: 'Ma Shan Zheng', cursive;
  font-size: 2.5rem;
color: #333;
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
}

.section-title:after {
  content: '';
  display: block;
  width: 100px;
  height: 3px;
  background: linear-gradient(to right, transparent, #c8a97e, transparent);
  margin: 0.5rem auto;
}

.content-wrapper {
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* 全新设计的高级轮播图样式 */
.carousel-container {
  position: relative;
  width: 100%;
  height: calc(100vh - 64px); /* 减去顶部导航栏高度 */
  min-height: 600px;
  overflow: hidden;
  margin: 0;
  padding: 0;
  background-color: #000;
  box-shadow: none; /* 移除阴影 */
  border-radius: 0; /* 移除圆角 */
}

.carousel-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
}

.carousel-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: transform 1.2s cubic-bezier(0.645, 0.045, 0.355, 1.000), opacity 1.2s cubic-bezier(0.645, 0.045, 0.355, 1.000);
  backface-visibility: hidden;
  overflow: hidden;
  transform: scale(1.1);
}

.carousel-slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.85);
  transition: transform 8s ease;
  transform-origin: center center;
}

.carousel-slide.active img {
  transform: scale(1.05);
}

.carousel-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 3rem;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0) 100%);
  color: #fff;
  z-index: 3;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s ease 0.3s, transform 1s ease 0.3s;
}

.carousel-slide.active .carousel-content {
  opacity: 1;
  transform: translateY(0);
}

.carousel-title {
  font-family: 'Ma Shan Zheng', cursive;
  font-size: 4rem;
  margin-bottom: 1rem;
  text-shadow: 0 2px 10px rgba(0,0,0,0.6);
  letter-spacing: 2px;
}

.carousel-description {
  font-family: 'ZCOOL XiaoWei', sans-serif;
  font-size: 1.4rem;
  max-width: 700px;
  line-height: 1.6;
  text-shadow: 0 1px 3px rgba(0,0,0,0.8);
  margin-bottom: 1.5rem;
}

.carousel-button {
  display: inline-block;
  padding: 0.8rem 2rem;
  background-color: rgba(200, 169, 126, 0.9);
  color: #fff;
  border: none;
  border-radius: 50px;
  font-family: 'ZCOOL QingKe HuangYou', sans-serif;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.carousel-button:hover {
  background-color: rgba(200, 169, 126, 1);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.4);
}

.carousel-dots {
  position: absolute;
  bottom: 20px;
  right: 20px;
  display: flex;
  gap: 8px;
  z-index: 4;
}

.carousel-dot {
  width: 40px;
  height: 4px;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: all 0.3s ease;
position: relative;
overflow: hidden;
}

.carousel-dot:hover {
  background: rgba(255,255,255,0.5);
}

.carousel-dot.active {
  background: rgba(200, 169, 126, 0.8);
}

.carousel-dot.active::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.3);
  animation: dotProgress 5s linear forwards;
  transform-origin: left;
}

@keyframes dotProgress {
  0% {
      transform: scaleX(0);
  }
  100% {
      transform: scaleX(1);
  }
}

.carousel-arrows {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  pointer-events: none;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.2);
  border-radius: 50%;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  pointer-events: auto;
  opacity: 0;
}

.carousel-container:hover .carousel-arrow {
  opacity: 1;
}

.carousel-arrow:hover {
  background: rgba(200, 169, 126, 0.8);
  transform: translateY(-50%) scale(1.1);
}

.carousel-arrow.prev {
  left: 20px;
}

.carousel-arrow.next {
  right: 20px;
}

.carousel-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(0,0,0,0) 40%, rgba(0,0,0,0.4) 100%);
  z-index: 1;
  pointer-events: none;
}

/* 首页内容区样式调整 */
#home-content {
  margin-top: 0;
}

#home-content .content-wrapper {
  margin-top: 3rem;
  margin-left: auto;
  margin-right: auto;
  width: 90%;
  max-width: 1400px;
}

/* 响应式调整 */
@media (max-width: 768px) {
  .carousel-container {
      height: 500px;
      min-height: 400px;
  }
  
  .carousel-title {
      font-size: 2.5rem;
  }
  
  .carousel-description {
      font-size: 1.1rem;
  }
  
  .carousel-arrow {
      width: 40px;
      height: 40px;
  }
}

/* 添加起源发展页面的特殊样式 */
.history-page {
  padding: 0;
  background-color: #fcfaf9;
}

.history-header {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.history-header-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
}

.history-header-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
  padding: 0 20px;
}

.history-header-title {
  font-size: 2.5rem;
  margin-bottom: 10px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.history-header-subtitle {
  font-size: 1.2rem;
  max-width: 800px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* 折叠面板容器 */
.accordion-container {
    position: relative;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin: 50px auto;
    max-width: 90%;
    z-index: 1;
}

.accordion-item {
    position: relative;
    z-index: 2;
    margin-bottom: 15px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    overflow: hidden;
}

.accordion-item:hover {
    transform: perspective(1000px) rotateX(2deg);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #5c2c08;
}

.accordion-header {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(to right, rgba(255, 220, 200, 0.6), rgba(255, 248, 240, 0.85));
    transition: all 0.3s ease;
    position: relative;
}

.accordion-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/书刻底纹.jpg');
    background-size: 200px;
    background-repeat: repeat;
    opacity: 0.03;
    z-index: -1;
}

.accordion-header:hover {
    background: linear-gradient(to right, rgba(255, 210, 180, 0.7), rgba(255, 240, 220, 0.9));
}

.accordion-item.active .accordion-header {
    background: linear-gradient(to right, rgba(230, 190, 160, 0.8), rgba(250, 230, 210, 0.95));
    border-bottom: 1px dashed rgba(139, 69, 19, 0.3);
}

.accordion-header-text {
    display: flex;
    flex-direction: column;
}

.accordion-header-en {
    font-family: 'Times New Roman', serif;
    font-size: 1.8rem;
    color: #5c2c08;
    margin-bottom: 4px;
    font-weight: 500;
    letter-spacing: 1px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.accordion-header-cn {
    font-family: 'Ma Shan Zheng', cursive;
    font-size: 1.6rem;
    color: #8B4513;
    opacity: 0.85;
    letter-spacing: 3px;
}

.accordion-icon {
    font-size: 1.5rem;
    color: #8B4513;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(139, 69, 19, 0.5);
    border-radius: 50%;
    transition: all 0.3s ease;
    transform-origin: center;
    box-shadow: 0 2px 5px rgba(139, 69, 19, 0.15);
    background: rgba(255, 240, 220, 0.5);
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
    color: #5c2c08;
    background: rgba(230, 200, 170, 0.5);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out;
    background-color: rgba(255, 250, 245, 0.9);
    position: relative;
}

.accordion-body {
    padding: 25px 30px;
    position: relative;
}

.accordion-body::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 30px;
    width: 100px;
    height: 100px;
    background-image: url('../images/书刻底纹.jpg');
    background-size: cover;
    opacity: 0.05;
    border-radius: 50%;
    z-index: 0;
}

.bilingual-content {
    position: relative;
    margin-bottom: 25px;
    padding-left: 15px;
    border-left: 2px solid rgba(139, 69, 19, 0.2);
}

.bilingual-content:hover {
    border-left: 2px solid rgba(139, 69, 19, 0.5);
}

.content-cn {
    font-family: 'ZCOOL XiaoWei', serif;
    font-size: 1.15rem;
    line-height: 1.8;
    color: #5c2c08;
    margin-bottom: 12px;
    text-align: justify;
    text-shadow: 0 0 1px rgba(0, 0, 0, 0.05);
}

.content-en {
    font-family: 'Times New Roman', serif;
    font-size: 1rem;
    line-height: 1.7;
    color: #8B4513;
    opacity: 0.85;
    font-style: italic;
}

.nushu-timeline {
    margin-top: 40px;
    position: relative;
    padding: 20px 0;
    background: rgba(255, 248, 240, 0.5);
    border-radius: 8px;
    box-shadow: inset 0 0 10px rgba(139, 69, 19, 0.1);
}

.timeline-track {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, 
        transparent 0%, 
        rgba(139, 69, 19, 0.2) 10%, 
        rgba(139, 69, 19, 0.5) 50%, 
        rgba(139, 69, 19, 0.2) 90%, 
        transparent 100%);
    transform: translateY(-50%);
}

.timeline-points {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    position: relative;
    z-index: 2;
}

.timeline-point {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 20%;
    position: relative;
    transition: all 0.3s ease;
}

.timeline-point:hover {
    transform: translateY(-5px);
}

.timeline-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #8B4513;
    margin-bottom: 15px;
    position: relative;
    box-shadow: 0 0 0 5px rgba(139, 69, 19, 0.1), 0 0 0 10px rgba(139, 69, 19, 0.05);
}

.timeline-point:hover .timeline-dot {
    background: #5c2c08;
    box-shadow: 0 0 0 8px rgba(139, 69, 19, 0.15), 0 0 0 15px rgba(139, 69, 19, 0.05);
}

.timeline-period {
    font-family: 'Ma Shan Zheng', cursive;
    font-size: 1.3rem;
    color: #5c2c08;
    margin-bottom: 5px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.timeline-date {
    font-family: 'ZCOOL XiaoWei', serif;
    font-size: 0.9rem;
    color: #8B4513;
    opacity: 0.9;
    margin-bottom: 10px;
}

.timeline-info {
    background: rgba(255, 250, 245, 0.9);
    padding: 12px 15px;
    border-radius: 8px;
    width: 100%;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
    border-left: 3px solid rgba(139, 69, 19, 0.5);
    text-align: center;
}

.timeline-info p {
    font-family: 'ZCOOL XiaoWei', serif;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #5c2c08;
    margin: 0;
}

/* 女书背景元素 */
.nushu-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/书刻底纹.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  opacity: 0.15;
  z-index: 0;
  pointer-events: none;
}

/* 折叠项目 */
.accordion-item {
  background-color: white;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.accordion-item.active {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* 折叠标题 */
.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  background: linear-gradient(135deg, #f8e2e2 0%, #fff 100%);
  cursor: pointer;
  border-left: 5px solid #d85a5a;
}

.accordion-header-text {
  display: flex;
  flex-direction: column;
}

.accordion-header-en {
  font-size: 1.5rem;
  font-weight: 600;
  color: #333;
  font-family: 'Times New Roman', serif;
}

.accordion-header-cn {
  font-size: 1.2rem;
  color: #888;
  margin-top: 5px;
}

.accordion-icon {
  font-size: 1.8rem;
  color: #d85a5a;
  transition: transform 0.3s ease;
}

.accordion-item.active .accordion-icon {
  transform: rotate(45deg);
}

/* 折叠内容 */
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background-color: rgba(255, 255, 255, 0.8);
  position: relative;
}

.accordion-body {
  padding: 25px;
}

/* 双语内容 */
.bilingual-content {
  margin-bottom: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.content-cn, .content-en {
  flex: 1;
  min-width: 300px;
  line-height: 1.8;
}

.content-cn {
  color: #333;
}

.content-en {
  color: #666;
  font-style: italic;
}

/* 时间线样式 */
.nushu-timeline {
  position: relative;
  margin-top: 50px;
  padding: 20px 0;
}

.timeline-track {
  position: absolute;
  top: 30px;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #eee;
  z-index: 1;
}

.timeline-points {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}

.timeline-point {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 22%;
  position: relative;
}

.timeline-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #d85a5a;
  margin-bottom: 15px;
}

.timeline-period {
  font-weight: bold;
  font-size: 1.1rem;
  margin-bottom: 5px;
  color: #333;
}

.timeline-date {
  font-size: 0.9rem;
  color: #888;
  margin-bottom: 10px;
}

.timeline-info {
  background-color: #f9f9f9;
  padding: 15px;
  border-radius: 8px;
  font-size: 0.9rem;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

/* 响应式调整 */
@media (max-width: 768px) {
  .bilingual-content {
      flex-direction: column;
      gap: 10px;
  }
  
  .timeline-points {
      flex-direction: column;
      gap: 40px;
  }
  
  .timeline-point {
      width: 100%;
  }
  
  .timeline-track {
      height: 100%;
      width: 4px;
      left: 10px;
      top: 0;
  }
  
  .timeline-point {
      align-items: flex-start;
      padding-left: 30px;
  }
  
  .timeline-dot {
      position: absolute;
      left: 2px;
      top: 0;
  }
}

/* 添加文化价值页面特定样式 */
.cultural-value-page {
  position: relative;
  background-color: #f9f5f0;
  overflow: hidden;
}

/* 文化价值页面的艺术背景 */
.cultural-value-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/水墨竹子背景.png');
  background-size: cover;
  background-position: center;
  opacity: 0.08;
  z-index: 0;
  pointer-events: none;
}

/* 文化价值头部区域 */
.value-header {
  position: relative;
  padding: 4rem 0 2rem;
  text-align: center;
  z-index: 1;
}

.value-header-title {
  font-family: 'Ma Shan Zheng', cursive;
  font-size: 4rem;
  color: #5d4037;
  margin-bottom: 1rem;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.1);
  letter-spacing: 8px;
  position: relative;
  display: inline-block;
}

.value-header-title::before,
.value-header-title::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 60px;
  height: 3px;
  background: linear-gradient(to right, rgba(200, 169, 126, 0.2), #c8a97e);
}

.value-header-title::before {
  right: 105%;
}

.value-header-title::after {
  left: 105%;
  transform: rotate(180deg);
}

.value-header-subtitle {
  font-family: 'ZCOOL XiaoWei', sans-serif;
  font-size: 1.5rem;
  color: #7d6e6a;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
  letter-spacing: 2px;
}

/* 文化价值内容布局 */
.value-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  padding: 2rem 4rem 4rem;
  position: relative;
  z-index: 1;
}

.value-card {
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.value-card-image {
  height: 260px;
  overflow: hidden;
  position: relative;
}

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

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

.value-card-content {
  padding: 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.value-card-title {
  font-family: 'Ma Shan Zheng', cursive;
  font-size: 2.2rem;
  color: #5d4037;
  margin-bottom: 1.2rem;
  position: relative;
  padding-bottom: 0.8rem;
}

.value-card-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(to right, #c8a97e, rgba(200, 169, 126, 0.3));
}

.value-card-text {
  font-family: 'ZCOOL XiaoWei', sans-serif;
  font-size: 1.15rem;
  line-height: 1.8;
  color: #5c5c5c;
  margin-bottom: 1.5rem;
  text-align: justify;
  text-indent: 2em;
  flex-grow: 1;
}

.value-card-footer {
  display: flex;
  align-items: center;
  margin-top: auto;
}

.value-card-quote {
  font-family: 'ZCOOL QingKe HuangYou', sans-serif;
  font-size: 1.1rem;
  font-style: italic;
  color: #8d6e63;
  padding: 1rem;
  margin-top: auto;
  background-color: rgba(200, 169, 126, 0.1);
  border-left: 4px solid #c8a97e;
  border-radius: 0 6px 6px 0;
}

/* 特色展示区域 */
.value-showcase {
  margin-top: 3rem;
  padding: 3rem 4rem;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 1;
}

.showcase-title {
  font-family: 'Ma Shan Zheng', cursive;
  font-size: 2.6rem;
  color: #5d4037;
  text-align: center;
  margin-bottom: 2.5rem;
  position: relative;
}

.showcase-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(to right, rgba(200, 169, 126, 0.3), #c8a97e, rgba(200, 169, 126, 0.3));
}

.showcase-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.showcase-item {
  text-align: center;
  padding: 2rem;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.showcase-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.showcase-icon {
  font-size: 2.5rem;
  color: #c8a97e;
  margin-bottom: 1.5rem;
  display: inline-block;
  background-color: rgba(200, 169, 126, 0.1);
  width: 80px;
  height: 80px;
  line-height: 80px;
  border-radius: 50%;
  text-align: center;
}

.showcase-item-title {
  font-family: 'ZCOOL QingKe HuangYou', sans-serif;
  font-size: 1.5rem;
  color: #5d4037;
  margin-bottom: 1rem;
}

.showcase-item-desc {
  font-family: 'ZCOOL XiaoWei', sans-serif;
  font-size: 1.1rem;
  color: #666;
  line-height: 1.6;
}

/* 响应式调整 */
@media (max-width: 992px) {
  .value-content {
      grid-template-columns: 1fr;
      padding: 2rem;
  }
  
  .showcase-items {
      grid-template-columns: repeat(2, 1fr);
  }
  
  .value-header-title {
      font-size: 3rem;
  }
}

@media (max-width: 768px) {
  .value-header {
      padding: 3rem 1rem 1.5rem;
  }
  
  .value-header-title {
      font-size: 2.5rem;
  }
  
  .value-header-subtitle {
      font-size: 1.2rem;
  }
  
  .showcase-items {
      grid-template-columns: 1fr;
  }
}

/* 传统中国书法和古风设计样式 - 传承保护页面 */
.ink-decoration {
    position: absolute;
    width: 200px;
    height: 200px;
    background-image: url('https://i.imgur.com/JQqKGZh.png');
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 1;
    opacity: 0.7;
}

.ink-decoration.top-right {
    top: 20px;
    right: 20px;
    transform: rotate(45deg);
}

.ink-decoration.bottom-left {
    bottom: 20px;
    left: 20px;
    transform: rotate(-135deg);
}

.scroll-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background-image: url('https://i.imgur.com/gJHEw5z.png');
    background-size: contain;
    background-repeat: repeat-x;
    opacity: 0.2;
    z-index: 0;
}

.calligraphy-header {
    position: relative;
    overflow: hidden;
}

.brush-stroke-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://i.imgur.com/V3hxYBK.png');
    background-size: cover;
    opacity: 0.1;
    z-index: -1;
}

.seal-imprint {
    position: relative;
    display: inline-block;
}

.seal-imprint::after {
    content: "";
    position: absolute;
    top: -15px;
    right: -60px;
    width: 70px;
    height: 70px;
    background-image: url('https://i.imgur.com/mA6cy4s.png');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.7;
    transform: rotate(15deg);
}

.chinese-seal {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 80px;
    height: 80px;
    background-image: url('https://i.imgur.com/QUiZLvv.png');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.8;
}

.scroll-container {
    position: relative;
    background-image: url('https://i.imgur.com/XdOYjJX.jpg');
    background-size: cover;
    border-radius: 5px;
    padding: 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.antique-paper {
    position: relative;
    background-image: url('https://i.imgur.com/nHVDInv.jpg');
    background-size: cover;
    border: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.card-corner-decoration {
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 50px;
    background-image: url('https://i.imgur.com/pAHRJcX.png');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.7;
}

.ink-splash-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://i.imgur.com/YqH7KgO.png');
    background-size: cover;
    mix-blend-mode: multiply;
    opacity: 0.3;
    pointer-events: none;
}

.brush-title {
    font-family: 'Ma Shan Zheng', cursive;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
    position: relative;
    display: inline-block;
}

.brush-title::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-image: url('https://i.imgur.com/0iqFwgC.png');
    background-size: contain;
    background-repeat: repeat-x;
}

.ink-quote {
    position: relative;
    padding: 0 30px;
    font-style: italic;
    color: #4a3d24;
}

.quote-mark {
    position: absolute;
    width: 20px;
    height: 20px;
    background-size: contain;
    background-repeat: no-repeat;
}

.quote-mark.left {
    top: 0;
    left: 0;
    background-image: url('https://i.imgur.com/AyZyuC9.png');
}

.quote-mark.right {
    bottom: 0;
    right: 0;
    background-image: url('https://i.imgur.com/AyZyuC9.png');
    transform: rotate(180deg);
}

.bamboo-scroll {
    position: relative;
    background-image: url('https://i.imgur.com/JoV7rti.jpg');
    background-size: cover;
    border-radius: 0;
    padding: 30px 20px;
    margin: 40px 0;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.bamboo-ends {
    position: absolute;
    width: 100%;
    height: 30px;
    background-image: url('https://i.imgur.com/5Jpxr2V.png');
    background-size: contain;
    background-repeat: repeat-x;
}

.bamboo-ends.left {
    top: 0;
    left: 0;
    transform: rotate(180deg);
}

.bamboo-ends.right {
    bottom: 0;
    left: 0;
}

.brush-stroke-title {
    font-family: 'Ma Shan Zheng', cursive;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    background-image: url('https://i.imgur.com/MuC5mE1.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    padding: 10px 30px;
}

.ink-wash-item {
    position: relative;
    background-image: url('https://i.imgur.com/qkrDQV5.jpg');
    background-size: cover;
    border: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.ink-wash-item:hover {
    transform: translateY(-5px);
}

.calligraphy-flourish {
    position: absolute;
    bottom: 5px;
    right: 5px;
    width: 40px;
    height: 20px;
    background-image: url('https://i.imgur.com/JKMA5Oz.png');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.7;
}

.traditional-painting {
    position: relative;
    background-image: url('https://i.imgur.com/cDZfCnr.jpg');
    background-size: cover;
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.ink-line {
    background-image: url('https://i.imgur.com/0iqFwgC.png');
    background-repeat: repeat;
}

.ink-dot {
    background-image: url('https://i.imgur.com/JQqKGZh.png');
    background-size: cover;
    border: none;
}

.seal-mark {
    position: relative;
    color: #a02c2c;
    font-family: 'Ma Shan Zheng', cursive;
}

.seal-mark::after {
    content: "";
    position: absolute;
    top: -5px;
    right: -20px;
    width: 20px;
    height: 20px;
    background-image: url('https://i.imgur.com/mA6cy4s.png');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.7;
    transform: scale(0.7);
}

.rice-paper {
    background-image: url('https://i.imgur.com/XdOYjJX.jpg');
    background-size: cover;
    border: none;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.corner-ornament {
    position: absolute;
    width: 100px;
    height: 100px;
    background-image: url('https://i.imgur.com/pAHRJcX.png');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.3;
    z-index: 0;
}

.corner-ornament.top-left {
    top: 20px;
    left: 20px;
}

.corner-ornament.top-right {
    top: 20px;
    right: 20px;
    transform: rotate(90deg);
}

.corner-ornament.bottom-left {
    bottom: 20px;
    left: 20px;
    transform: rotate(-90deg);
}

.corner-ornament.bottom-right {
    bottom: 20px;
    right: 20px;
    transform: rotate(180deg);
}

/* 媒体查询适配 */
@media (max-width: 768px) {
    .ink-decoration {
        width: 100px;
        height: 100px;
    }
    
    .chinese-seal, .card-corner-decoration {
        transform: scale(0.7);
    }
    
    .corner-ornament {
        width: 50px;
        height: 50px;
    }
}

/* 传统中国古籍书卷设计样式 - 传承保护页面 */
.ancient-book-page {
    position: relative;
    padding: 30px 0;
    background-color: #f8f4e6;
    overflow: hidden;
}

.mountain-painting-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/水墨竹子背景.png');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: 0;
}

.book-binding-top, .book-binding-bottom {
    position: relative;
    height: 40px;
    background-image: url('https://i.imgur.com/FsOfcFZ.jpg');
    background-size: cover;
    margin: 0 20px;
    border-radius: 3px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
    z-index: 1;
}

.book-binding-bottom {
    margin-top: 40px;
}

.book-title-area {
    position: relative;
    text-align: center;
    padding: 40px 20px;
    margin: 20px;
    background-image: url('https://i.imgur.com/nHVDInv.jpg');
    background-size: cover;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    z-index: 1;
}

.book-seal {
    position: absolute;
    top: 10px;
    right: 20px;
    width: 80px;
    height: 80px;
    background-image: url('https://i.imgur.com/QUiZLvv.png');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.8;
}

.book-title {
    font-family: 'Ma Shan Zheng', cursive;
    font-size: 3rem;
    color: #8c2e0b;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
    position: relative;
    display: inline-block;
}

.book-title::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 120%;
    height: 3px;
    background-image: url('https://i.imgur.com/0iqFwgC.png');
    background-size: contain;
}

.book-subtitle {
    font-size: 1.2rem;
    color: #4a3d24;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    position: relative;
}

.ancient-book-content {
    display: flex;
    flex-wrap: wrap;
    padding: 0 20px;
    margin: 30px 0;
    position: relative;
    z-index: 1;
}

.book-left-column, .book-right-column {
    flex: 1;
    min-width: 300px;
    padding: 0 15px;
}

.chapter-container {
    margin-bottom: 40px;
    position: relative;
}

.chapter-title-wrapper {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    position: relative;
}

.chapter-mark {
    font-family: 'Ma Shan Zheng', cursive;
    font-size: 2rem;
    color: #8c2e0b;
    margin-right: 10px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
}

.chapter-title {
    font-family: 'ZCOOL XiaoWei', serif;
    font-size: 1.5rem;
    color: #4a3d24;
    margin: 0;
    padding-left: 10px;
}

.title-underline {
    position: absolute;
    bottom: -5px;
    left: 40px;
    right: 0;
    height: 2px;
    background-image: url('https://i.imgur.com/0iqFwgC.png');
    background-size: contain;
}

.chapter-content {
    padding: 20px;
    border-radius: 5px;
    position: relative;
}

.paragraph-indent {
    float: left;
    width: 2em;
    height: 1em;
}

.chapter-content p {
    margin-bottom: 15px;
    line-height: 1.8;
    text-align: justify;
    color: #333;
    font-size: 1rem;
}

.book-illustration {
    position: relative;
    margin: 15px 0;
    padding: 10px;
    background-color: #fff;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    max-width: 90%;
    border: 1px solid #e0d9c5;
    overflow: hidden; /* 确保放大的图片不溢出容器 */
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    z-index: 5;
}

.book-illustration:hover {
    transform: scale(1.05) rotate(0deg) !important; /* 覆盖原有的倾斜角度 */
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    z-index: 10; /* 确保悬浮时在其他元素上方 */
}

.book-illustration img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.book-illustration:hover img {
    transform: scale(1.15) rotate(2deg);
}

/* 添加图片悬浮时的装饰效果 */
.book-illustration::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0) 50%, rgba(0,0,0,0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none; /* 确保鼠标事件仍传递给图片 */
}

.book-illustration:hover::after {
    opacity: 1;
}

.book-illustration.right {
    float: right;
    margin-left: 15px;
    transform: rotate(1deg);
}

.book-illustration.left {
    float: left;
    margin-right: 15px;
    transform: rotate(-1deg);
}

.caption {
    text-align: center;
    padding: 8px 0 3px;
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

.chinese-poem {
    margin: 25px 10px;
    padding: 15px 20px;
    background-image: url('https://i.imgur.com/XdOYjJX.jpg');
    background-size: cover;
    border-radius: 3px;
    position: relative;
    clear: both;
    box-shadow: 0 3px 10px rgba(0,0,0,0.15);
}

.chinese-poem p {
    font-family: 'Ma Shan Zheng', cursive;
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 5px 0;
    text-align: center;
    color: #333;
}

.poem-seal {
    position: absolute;
    bottom: 10px;
    right: 15px;
    width: 50px;
    height: 50px;
    background-image: url('https://i.imgur.com/mA6cy4s.png');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.7;
}

.book-string {
    position: absolute;
    width: 30px;
    height: 80%;
    top: 10%;
    background-image: url('https://i.imgur.com/IqJqBr5.png');
    background-size: 100% 100%;
    background-repeat: repeat-y;
    z-index: 2;
}

.book-string.left-string {
    left: 50px;
}

.book-string.right-string {
    right: 50px;
}

.scroll-summary {
    position: relative;
    margin: 40px 60px 0;
    z-index: 1;
}

.scroll-edge {
    position: absolute;
    top: 0;
    width: 30px;
    height: 100%;
    background-image: url('https://i.imgur.com/pqVF0a9.png');
    background-size: contain;
    background-repeat: repeat-y;
    z-index: 2;
}

.scroll-edge.left {
    left: -15px;
    transform: rotate(180deg);
}

.scroll-edge.right {
    right: -15px;
}

.scroll-content {
    padding: 30px;
    background-image: url('https://i.imgur.com/JoV7rti.jpg');
    background-size: cover;
    border-radius: 5px;
    position: relative;
    z-index: 1;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.scroll-title {
    text-align: center;
    font-family: 'Ma Shan Zheng', cursive;
    font-size: 1.8rem;
    color: #8c2e0b;
    margin-bottom: 25px;
    position: relative;
}

.scroll-title::before,
.scroll-title::after {
    content: "—";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #8c2e0b;
    font-weight: normal;
}

.scroll-title::before {
    left: 20%;
}

.scroll-title::after {
    right: 20%;
}

.achievement-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 20px;
}

.achievement-item {
    flex: 1 0 45%;
    min-width: 250px;
    margin-bottom: 20px;
    padding: 15px;
    display: flex;
    align-items: flex-start;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 5px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.achievement-item:hover {
    transform: translateY(-5px);
}

.achievement-icon {
    flex: 0 0 50px;
    height: 50px;
    background-color: #8c2e0b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.achievement-item:hover .achievement-icon {
    transform: rotate(15deg) scale(1.2);
    background-color: #b13c14;
}

.achievement-icon i {
    font-size: 1.5rem;
    color: #fff;
    transition: transform 0.3s ease;
}

.achievement-item:hover .achievement-icon i {
    transform: rotate(-15deg); /* 图标反向旋转，形成有趣的效果 */
}

.achievement-text {
    flex: 1;
}

.achievement-text h3 {
    font-family: 'ZCOOL XiaoWei', serif;
    font-size: 1.2rem;
    color: #4a3d24;
    margin-bottom: 10px;
}

.achievement-text p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #666;
}

/* 响应式调整 */
@media (max-width: 992px) {
    .book-string {
        display: none;
    }
    
    .scroll-summary {
        margin: 30px 30px 0;
    }
}

@media (max-width: 768px) {
    .book-title-area {
        padding: 30px 20px;
    }
    
    .book-title {
        font-size: 2.5rem;
    }
    
    .book-left-column, .book-right-column {
        flex: 0 0 100%;
    }
    
    .chinese-poem {
        margin: 20px 5px;
        padding: 10px 15px;
    }
    
    .achievement-item {
        flex: 0 0 100%;
    }
    
    .achievement-icon {
        flex: 0 0 40px;
        height: 40px;
    }
    
    .scroll-edge {
        width: 20px;
    }
    
    .scroll-content {
        padding: 20px 15px;
    }
    
    .scroll-title::before {
        left: 10%;
    }
    
    .scroll-title::after {
        right: 10%;
    }
}

/* 作品鉴赏页面 - 玻璃效果与固定背景 */
.glass-morphism-page {
    position: relative;
    min-height: 100vh;
    padding: 30px 0;
    background-color: rgba(255, 255, 255, 0.7);  /* 恢复为浅色背景 */
    overflow: hidden;
}

.fixed-bg-image {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/女优照片.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0.35;  /* 适当的背景不透明度 */
    filter: brightness(1.1);
    z-index: 0;
}

.glass-container {
    position: relative;
    width: 90%;
    max-width: 1200px;
    margin: 30px auto;
    z-index: 1;
}

.glass-header {
    text-align: center;
    padding: 30px 20px;
    margin-bottom: 30px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.glass-title {
    font-family: 'Ma Shan Zheng', cursive;
    font-size: 3rem;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    margin-bottom: 15px;
}

.glass-subtitle {
    font-family: 'ZCOOL XiaoWei', serif;
    font-size: 1.2rem;
    color: #f0f0f0;
    max-width: 700px;
    margin: 0 auto;
}

.glass-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.glass-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

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

/* 图库部分样式 */
.gallery-section {
    margin-bottom: 30px;
}

.gallery-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.gallery-item {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.gallery-image {
    height: 250px;
    overflow: hidden;
    border-radius: 10px 10px 0 0;
}

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

.gallery-item:hover .gallery-image img {
    transform: scale(1.1);
}

.gallery-details {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.gallery-details h3 {
    font-family: 'ZCOOL XiaoWei', serif;
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 10px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.gallery-details p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 15px;
    flex-grow: 1;
}

.view-more-btn {
    align-self: flex-start;
    padding: 8px 15px;
    background: rgba(255, 255, 255, 0.25);
    color: #fff;
    border: none;
    border-radius: 30px;
    font-size: 0.9rem;
    text-decoration: none;
    transition: background 0.3s ease;
}

.view-more-btn:hover {
    background: rgba(255, 255, 255, 0.4);
}

/* 鉴赏指南部分 */
.appreciation-guide {
    padding: 30px;
}

.guide-title {
    font-family: 'Ma Shan Zheng', cursive;
    font-size: 2rem;
    color: #fff;
    text-align: center;
    margin-bottom: 25px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.guide-content {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(450px, 1fr));
    gap: 25px;
}

.guide-item {
    display: flex;
    align-items: flex-start;
}

.guide-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.guide-icon i {
    font-size: 1.8rem;
    color: #fff;
}

.guide-text h4 {
    font-family: 'ZCOOL XiaoWei', serif;
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 10px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.guide-text p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

/* 视频部分 */
.nushu-video {
    padding: 30px;
}

.video-title {
    font-family: 'Ma Shan Zheng', cursive;
    font-size: 2rem;
    color: #fff;
    text-align: center;
    margin-bottom: 20px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.video-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 宽高比 */
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 20px;
}

.video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.video-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.video-placeholder:hover .video-thumbnail {
    transform: scale(1.05);
}

.video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 2;
}

.video-play-button i {
    font-size: 4.5rem;
    color: rgba(255, 255, 255, 0.9);
    transition: color 0.3s ease, transform 0.3s ease;
}

.video-placeholder:hover .video-play-button {
    background-color: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.6);
}

.video-placeholder:hover .video-play-button i {
    color: #fff;
    transform: scale(1.1);
}

.video-placeholder::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.4) 100%);
    pointer-events: none;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.video-overlay i {
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 15px;
}

.video-overlay span {
    color: #fff;
    font-size: 1.2rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.video-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* 响应式调整 */
@media (max-width: 992px) {
    .guide-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .glass-title {
        font-size: 2.5rem;
    }
    
    .glass-header {
        padding: 20px;
    }
    
    .gallery-wrapper {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .guide-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .guide-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
}

/* 弹窗样式 */
.modal-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-container.active {
    opacity: 1;
    visibility: visible;
}

.modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 1500px; /* 更大的宽度 */
    max-height: 90vh;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.modal-content.active {
    opacity: 1;
    visibility: visible;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px; /* 增加内边距 */
    background: rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.modal-header h3 {
    font-family: 'Ma Shan Zheng', cursive;
    font-size: 2.2rem; /* 增加字体大小 */
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    margin: 0;
}

.modal-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    width: 40px; /* 增加按钮大小 */
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}

.modal-close i {
    font-size: 1.4rem; /* 增加图标大小 */
    color: #fff;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.modal-body {
    padding: 0;
    overflow-y: auto;
    max-height: calc(90vh - 90px); /* 减去header高度 */
    display: flex;
    flex-direction: column;
}

@media (min-width: 768px) {
    .modal-body {
        flex-direction: row;
        height: 650px; /* 设置固定高度使内容更丰满 */
    }
}

.modal-image {
    flex: 0 0 45%; /* 增加图片区域比例 */
    background: #000;
    position: relative;
    overflow: hidden;
}

.modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.modal-content:hover .modal-image img {
    transform: scale(1.05);
}

.modal-info {
    flex: 0 0 55%; /* 调整文字区域比例 */
    padding: 30px 35px; /* 增加内边距 */
    color: #fff;
    overflow-y: auto;
}

.modal-info h4 {
    font-family: 'ZCOOL XiaoWei', serif;
    font-size: 1.5rem; /* 增加标题字体大小 */
    margin: 25px 0 15px; /* 增加间距 */
    color: #fff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    position: relative;
    padding-left: 20px; /* 增加左侧装饰线的间距 */
}

.modal-info h4:first-child {
    margin-top: 0;
}

.modal-info h4::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px; /* 加粗装饰线 */
    height: 25px; /* 增高装饰线 */
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.3));
    border-radius: 3px;
}

.modal-info p {
    font-size: 1.1rem; /* 增加正文字体大小 */
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px; /* 增加段落间距 */
    text-align: justify; /* 两端对齐，更整齐 */
}

/* 移动端弹窗响应式调整 */
@media (max-width: 767px) {
    .modal-image {
        height: 300px; /* 增加移动端图片高度 */
    }
    
    .modal-header h3 {
        font-size: 1.8rem;
    }
    
    .modal-info {
        padding: 25px; /* 减小移动端内边距 */
    }
    
    .modal-info h4 {
        font-size: 1.3rem;
    }
    
    .modal-info p {
        font-size: 1rem;
    }
    
    .modal-content {
        width: 95%;
        max-width: 95%;
    }
}

#history-intro-content {
    background-image: url('../images/书刻底纹.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

#history-intro-content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.85);
    z-index: 0;
}

/* 经典解读页面 - 石刻风格 */
.stone-inscription-page {
    position: relative;
    min-height: 100vh;
    padding: 30px 0;
    background-color: #f5f2e9;
    overflow: hidden;
}

.stone-bg-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/书刻底纹.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0.15;
    z-index: 0;
    filter: contrast(1.2) brightness(0.9);
}

.classic-interpretation {
    position: relative;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    z-index: 1;
    display: flex;
    background-color: #f9f6ef;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-radius: 2px;
}

.classic-interpretation .scroll-edge {
    flex: 0 0 40px;
    background: linear-gradient(to bottom, #c0a280, #d8c0a8);
    position: relative;
    border-radius: 2px 0 0 2px;
    box-shadow: inset -5px 0 10px rgba(0, 0, 0, 0.1);
}

.classic-interpretation .scroll-edge.right {
    border-radius: 0 2px 2px 0;
    box-shadow: inset 5px 0 10px rgba(0, 0, 0, 0.1);
}

.classic-interpretation .scroll-edge::after {
    content: "";
    position: absolute;
    top: 30px;
    bottom: 30px;
    width: 100%;
    background: repeating-linear-gradient(
        to bottom,
        transparent,
        transparent 8px,
        rgba(0, 0, 0, 0.05) 8px,
        rgba(0, 0, 0, 0.05) 9px
    );
}

.classic-interpretation .scroll-content {
    flex: 1;
    padding: 40px;
    position: relative;
    background-image: url('书刻纸纹.jpg');
    background-size: 300px;
    background-repeat: repeat;
}

.calligraphy-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
    position: relative;
}

.brush-stroke-title {
    font-family: 'Ma Shan Zheng', cursive;
    font-size: 3.5rem;
    color: #332b21;
    text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.1);
    margin: 0 40px;
    position: relative;
    padding-bottom: 10px;
    letter-spacing: 0.2em;
}

.brush-stroke-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 5%;
    width: 90%;
    height: 3px;
    background: linear-gradient(to right, transparent, #8b0000, transparent);
}

.chinese-seal {
    width: 80px;
    height: 80px;
    background-color: #b92a2a;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transform: rotate(-5deg);
    box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.3);
}

.chinese-seal::before {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.chinese-seal span {
    color: #fff;
    font-family: 'Ma Shan Zheng', cursive;
    font-size: 1.8rem;
    transform: scale(0.9);
}

.chinese-seal.right {
    transform: rotate(5deg);
}

.interpretation-intro {
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 30px;
}

.ink-wash-text {
    font-family: 'ZCOOL XiaoWei', serif;
    font-size: 1.2rem;
    line-height: 1.8;
    color: #3c3228;
    text-align: center;
    letter-spacing: 0.05em;
}

.interpretation-container {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.classic-work {
    border-radius: 2px;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    position: relative;
}

.work-header {
    background: linear-gradient(to right, #e8e3d9, #d6cdbc);
    padding: 15px 25px;
    position: relative;
    border-left: 5px solid #8b0000;
}

.stone-title {
    font-family: 'ZCOOL XiaoWei', serif;
    font-size: 1.8rem;
    color: #3c3228;
    margin: 0;
    display: flex;
    align-items: baseline;
}

.title-period {
    margin: 0 10px;
    color: #8b0000;
    font-weight: normal;
}

.title-type {
    font-size: 1rem;
    color: #6e6253;
    font-weight: normal;
}

.corner-ornament {
    position: absolute;
    width: 30px;
    height: 30px;
    background-size: contain;
    background-repeat: no-repeat;
}

.corner-ornament.top-right {
    top: 10px;
    right: 10px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M95,5 L95,35 C95,35 65,35 65,65 C65,65 35,65 35,95 L5,95" stroke="%238b0000" stroke-width="5" fill="none"/></svg>');
}

.work-content {
    display: flex;
    padding: 30px;
    gap: 30px;
}

.stone-image {
    flex: 0 0 300px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 10px solid #fff;
    transform: rotate(-1deg);
    transition: transform 0.3s ease;
}

.stone-image:hover {
    transform: rotate(0);
}

.stone-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.stone-image:hover img {
    transform: scale(1.05);
}

.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 8px 12px;
    font-size: 0.9rem;
    text-align: center;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.stone-image:hover .image-caption {
    transform: translateY(0);
}

.stone-text {
    flex: 1;
}

.stone-text p {
    font-family: 'ZCOOL XiaoWei', serif;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #3c3228;
    margin-bottom: 20px;
    text-align: justify;
}

.stone-quote {
    background-color: rgba(139, 0, 0, 0.05);
    border-left: 3px solid #8b0000;
    padding: 20px 30px;
    margin: 20px 0;
    position: relative;
    border-radius: 0 3px 3px 0;
}

.quote-mark {
    position: absolute;
    color: rgba(139, 0, 0, 0.2);
    font-size: 1.8rem;
}

.quote-mark.left {
    top: 10px;
    left: 10px;
}

.quote-mark.right {
    bottom: 10px;
    right: 10px;
}

.stone-quote p {
    font-family: 'Ma Shan Zheng', cursive;
    font-size: 1.5rem;
    line-height: 1.6;
    color: #8b0000;
    text-align: center;
    margin: 0;
}

.interpretation-points {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}

.point-item {
    flex: 1 1 calc(50% - 10px);
    min-width: 200px;
    display: flex;
    align-items: flex-start;
}

.point-icon {
    width: 45px;
    height: 45px;
    background: radial-gradient(circle at center, #8b0000, #6e0000);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.point-icon i {
    color: #fff;
    font-size: 1.2rem;
}

.point-text h4 {
    font-family: 'ZCOOL XiaoWei', serif;
    font-size: 1.2rem;
    color: #3c3228;
    margin: 0 0 8px 0;
}

.point-text p {
    font-size: 0.95rem;
    margin: 0;
}

.stone-footer {
    margin-top: 50px;
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    position: relative;
}

.seal-imprint {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    position: relative;
    overflow: hidden;
    border-radius: 50%;
    opacity: 0.8;
}

.seal-imprint img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.85) contrast(1.2) grayscale(0.3);
}

.ink-quote {
    font-family: 'Ma Shan Zheng', cursive;
    font-size: 1.3rem;
    color: #8b0000;
    opacity: 0.85;
    max-width: 80%;
    margin: 0 auto;
    line-height: 1.6;
}

/* 响应式调整 */
@media (max-width: 992px) {
    .brush-stroke-title {
        font-size: 2.8rem;
    }
    
    .work-content {
        flex-direction: column;
    }
    
    .stone-image {
        flex: 0 0 auto;
        max-width: 400px;
        margin: 0 auto 30px;
    }
    
    .point-item {
        flex: 1 1 100%;
    }
}

@media (max-width: 768px) {
    .classic-interpretation .scroll-edge {
        flex: 0 0 20px;
    }
    
    .classic-interpretation .scroll-content {
        padding: 25px;
    }
    
    .calligraphy-header {
        flex-direction: column;
        gap: 20px;
    }
    
    .brush-stroke-title {
        font-size: 2.2rem;
        margin: 20px 0;
    }
    
    .chinese-seal {
        width: 60px;
        height: 60px;
    }
    
    .chinese-seal span {
        font-size: 1.4rem;
    }
    
    .stone-title {
        font-size: 1.4rem;
    }
    
    .stone-quote p {
        font-size: 1.2rem;
    }
    
    .stone-image {
        transform: none;
    }
}

/* 起源发展页面 - 玻璃效果与手风琴 */
.glass-accordion {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin: 40px 0;
    position: relative;
    z-index: 1;
}

.glass-item-wrapper {
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.glass-item-wrapper:hover {
    transform: translateY(-5px);
}

.accordion-item.glass-effect {
    background: rgba(255, 255, 255, 0.65);  /* 恢复为浅色背景 */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.accordion-item.glass-effect .accordion-header {
    background: rgba(255, 255, 255, 0.6);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.accordion-item.glass-effect .accordion-header:hover {
    background: rgba(255, 255, 255, 0.75);
}

.accordion-item.glass-effect.active .accordion-header {
    background: rgba(255, 255, 255, 0.85);
}

.accordion-item.glass-effect .accordion-header-text {
    display: flex;
    flex-direction: column;
}

.accordion-item.glass-effect .accordion-header-en {
    font-size: 1.4rem;
    color: rgba(0, 0, 0, 0.9);
    margin-bottom: 5px;
    font-weight: 500;
    letter-spacing: 0.05em;
}

.accordion-item.glass-effect .accordion-header-cn {
    font-size: 1.1rem;
    color: rgba(0, 0, 0, 0.8);
    font-family: 'ZCOOL XiaoWei', serif;
}

.accordion-icon.glass-plus {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, background 0.3s ease;
}

.accordion-icon.glass-plus span {
    color: #000;
    font-size: 1.5rem;
    line-height: 1;
}

.accordion-item.active .accordion-icon.glass-plus {
    transform: rotate(45deg);
    background: rgba(255, 255, 255, 0.4);
}

.accordion-item.glass-effect .accordion-content {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.accordion-item.active.glass-effect .accordion-content {
    max-height: 2000px;
}

.accordion-item.glass-effect .accordion-body {
    padding: 30px;
}

.glass-timeline .timeline-track {
    background: rgba(255, 255, 255, 0.2);
}

.glass-timeline .timeline-dot {
    background: rgba(255, 255, 255, 0.8);
    border: 3px solid rgba(139, 0, 0, 0.5);
}

.glass-timeline .timeline-period {
    color: rgba(0, 0, 0, 0.9);
    font-weight: 600;
}

.glass-timeline .timeline-date {
    color: rgba(0, 0, 0, 0.7);
}

.glass-timeline .timeline-info.glass-effect {
    background: rgba(255, 255, 255, 0.65);
}

.glass-timeline .timeline-info p {
    color: rgba(0, 0, 0, 0.9);
    margin: 0;
}

.bilingual-content {
    background: rgba(255, 255, 255, 0.6);
}

.content-cn, .content-en {
    margin: 0 0 15px;
    padding: 0;
    font-size: 1.05rem;
    line-height: 1.8;
}

.content-cn {
    color: rgba(0, 0, 0, 0.95) !important;
    font-family: 'ZCOOL XiaoWei', serif;
    text-shadow: none;
}

.content-en {
    color: rgba(0, 0, 0, 0.85) !important;
    text-shadow: none;
}

.bilingual-content:last-child .content-en {
    margin-bottom: 0;
}

.history-header.glass-effect {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    margin-bottom: 30px;
}

.history-header-overlay {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
}

.history-header-title, .history-header-subtitle {
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* 响应式调整 */
@media (max-width: 768px) {
    .glass-accordion {
        gap: 15px;
    }
    
    .accordion-item.glass-effect .accordion-header {
        padding: 15px 20px;
    }
    
    .accordion-item.glass-effect .accordion-header-en {
        font-size: 1.2rem;
    }
    
    .accordion-item.glass-effect .accordion-header-cn {
        font-size: 1rem;
    }
    
    .accordion-icon.glass-plus {
        width: 32px;
        height: 32px;
    }
    
    .accordion-item.glass-effect .accordion-body {
        padding: 20px;
    }
    
    .bilingual-content {
        padding: 15px;
    }
    
    .content-cn, .content-en {
        font-size: 0.95rem;
    }
    
    .glass-timeline .timeline-info.glass-effect {
        padding: 10px;
    }
}

/* 确保玻璃效果中的文本颜色正确显示 */
.glass-morphism-page .content-cn {
    color: rgba(0, 0, 0, 0.95) !important;
}

.glass-morphism-page .content-en {
    color: rgba(0, 0, 0, 0.85) !important;
}

.glass-morphism-page .timeline-period {
    color: rgba(0, 0, 0, 0.9) !important;
}

.glass-morphism-page .timeline-date {
    color: rgba(0, 0, 0, 0.7) !important;
}

.glass-morphism-page .accordion-header-en {
    color: rgba(0, 0, 0, 0.9) !important;
    text-shadow: none;
}

.glass-morphism-page .accordion-header-cn {
    color: rgba(0, 0, 0, 0.8) !important;
    text-shadow: none;
}

/* 传承人物页面样式 */
.heritage-category {
    margin-bottom: 60px;
}

.category-title {
    font-size: 2rem;
    color: #333;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(0, 0, 0, 0.1);
    position: relative;
}

.category-title i {
    margin-right: 10px;
    color: #765234;
}

.inheritors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(480px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.inheritor-card {
    background: rgba(255, 255, 255, 0.7);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.inheritor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.inheritor-image {
    width: 180px;
    height: 100%;
    min-height: 280px;
    position: relative;
    overflow: hidden;
}

.inheritor-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.inheritor-info {
    flex: 1;
    padding: 20px;
    position: relative;
}

.inheritor-info h3 {
    font-size: 1.5rem;
    margin: 0 0 5px 0;
    color: #333;
}

.english-name {
    font-size: 1rem;
    color: #666;
    font-weight: normal;
}

.inheritor-title {
    color: #765234;
    font-size: 1rem;
    margin: 0 0 15px 0;
    padding-bottom: 8px;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
}

.inheritor-details {
    display: flex;
    margin-bottom: 15px;
}

.inheritor-details p {
    margin: 0;
    margin-right: 20px;
    font-size: 0.9rem;
    color: #555;
}

.inheritor-details i {
    margin-right: 5px;
    color: #765234;
}

.inheritor-bio {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #444;
    margin-bottom: 15px;
}

.inheritor-achievements {
    background: rgba(0, 0, 0, 0.03);
    padding: 10px 15px;
    border-radius: 5px;
    margin-bottom: 15px;
}

.inheritor-achievements h4 {
    font-size: 1rem;
    margin: 0 0 10px 0;
    color: #333;
}

.inheritor-achievements ul {
    margin: 0;
    padding-left: 20px;
}

.inheritor-achievements li {
    font-size: 0.9rem;
    margin-bottom: 5px;
    color: #444;
}

.view-more-btn {
    background: #765234;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
    font-size: 0.9rem;
}

.view-more-btn:hover {
    background: #5a3e28;
}

/* 传承方式与体系样式 */
.transmission-methods {
    margin-bottom: 60px;
}

.methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
}

.method-card {
    background: rgba(255, 255, 255, 0.7);
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    text-align: center;
}

.method-card:hover {
    transform: translateY(-5px);
}

.method-icon {
    width: 70px;
    height: 70px;
    background: #765234;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.method-icon i {
    font-size: 2rem;
    color: white;
}

.method-card h3 {
    font-size: 1.3rem;
    margin: 0 0 15px 0;
    color: #333;
}

.method-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #444;
    margin: 0;
}

/* 加入我们部分样式 */
.join-us-section {
    background: rgba(255, 255, 255, 0.5);
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 30px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.join-title {
    font-size: 2rem;
    margin: 0 0 20px 0;
    color: #333;
}

.join-desc {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #444;
    max-width: 800px;
    margin: 0 auto 30px;
}

.join-options {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.join-option {
    padding: 20px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.7);
    transition: transform 0.3s ease;
}

.join-option:hover {
    transform: translateY(-5px);
}

.join-option i {
    font-size: 2.5rem;
    color: #765234;
    margin-bottom: 15px;
}

.join-option h3 {
    font-size: 1.2rem;
    margin: 0 0 10px 0;
    color: #333;
}

.join-option p {
    font-size: 0.9rem;
    color: #444;
    margin: 0;
}

.contact-btn {
    background: #765234;
    color: white;
    border: none;
    padding: 12px 30px;
    font-size: 1.1rem;
    border-radius: 30px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

.contact-btn:hover {
    background: #5a3e28;
    transform: scale(1.05);
}

/* 响应式调整 */
@media (max-width: 992px) {
    .inheritors-grid {
        grid-template-columns: 1fr;
    }
    
    .inheritor-card {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .inheritor-card {
        flex-direction: column;
    }
    
    .inheritor-image {
        width: 100%;
        height: 250px;
    }
    
    .methods-grid, 
    .join-options {
        grid-template-columns: 1fr;
    }
    
    .join-us-section {
        padding: 30px 20px;
    }
}

/* 线下展览页面样式 */
.exhibition-intro {
    margin-bottom: 40px;
}

.intro-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.section-heading {
    font-size: 2rem;
    color: #333;
    margin-bottom: 30px;
    padding-bottom: 12px;
    position: relative;
    text-align: center;
}

.section-heading::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, #765234, rgba(118, 82, 52, 0.3));
}

/* 重点展览 */
.featured-exhibitions {
    margin-bottom: 60px;
}

.exhibition-card {
    background: rgba(255, 255, 255, 0.7);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
}

.exhibition-card.featured {
    flex-direction: row;
}

.exhibition-image {
    position: relative;
    overflow: hidden;
    flex: 1;
    min-height: 300px;
    max-width: 40%;
}

.exhibition-card:not(.featured) .exhibition-image {
    max-width: 100%;
    height: 220px;
}

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

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

.exhibition-date {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    padding: 15px;
    display: flex;
    flex-direction: column;
}

.date-tag {
    display: inline-block;
    background-color: #765234;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    margin-bottom: 5px;
    align-self: flex-start;
}

.date-tag.upcoming {
    background-color: #3d7e9a;
}

.date-range {
    font-size: 0.9rem;
}

.exhibition-content {
    padding: 25px;
    flex: 2;
}

.exhibition-title {
    font-size: 1.5rem;
    margin: 0 0 15px 0;
    color: #333;
}

.exhibition-meta {
    display: flex;
    margin-bottom: 20px;
}

.exhibition-meta p {
    margin: 0;
    margin-right: 25px;
    font-size: 0.95rem;
    color: #555;
}

.exhibition-meta i {
    margin-right: 8px;
    color: #765234;
}

.exhibition-description {
    margin-bottom: 20px;
}

.exhibition-description p {
    font-size: 1rem;
    line-height: 1.7;
    color: #444;
    margin: 0;
}

.exhibition-highlights {
    background-color: rgba(0, 0, 0, 0.03);
    border-radius: 8px;
    padding: 15px 20px;
    margin-bottom: 20px;
}

.exhibition-highlights h4 {
    font-size: 1.1rem;
    margin: 0 0 10px 0;
    color: #333;
}

.exhibition-highlights ul {
    margin: 0;
    padding-left: 20px;
}

.exhibition-highlights li {
    font-size: 0.95rem;
    margin-bottom: 8px;
    color: #444;
}

.exhibition-link {
    display: inline-block;
    color: #765234;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.exhibition-link:hover {
    color: #5a3e28;
    text-decoration: underline;
}

.exhibition-link i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.exhibition-link:hover i {
    transform: translateX(3px);
}

/* 展览筛选和网格 */
.exhibition-filters {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.filter-btn {
    background: none;
    border: 1px solid #ccc;
    border-radius: 30px;
    padding: 8px 20px;
    margin: 0 8px 10px;
    font-size: 0.95rem;
    color: #555;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn.active, .filter-btn:hover {
    background-color: #765234;
    border-color: #765234;
    color: white;
}

.exhibition-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.exhibition-item {
    background: rgba(255, 255, 255, 0.7);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.exhibition-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.exhibition-item-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

.exhibition-item:hover .exhibition-item-image img {
    transform: scale(1.08);
}

.exhibition-item-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #765234;
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
}

.exhibition-item-tag.upcoming {
    background-color: #3d7e9a;
}

.exhibition-item-tag.permanent {
    background-color: #4a7d58;
}

.exhibition-item-info {
    padding: 20px;
}

.exhibition-item-info h3 {
    font-size: 1.2rem;
    margin: 0 0 12px 0;
    color: #333;
}

.exhibition-item-location, .exhibition-item-date {
    margin: 0 0 8px 0;
    font-size: 0.9rem;
    color: #555;
}

.exhibition-item-location i, .exhibition-item-date i {
    margin-right: 5px;
    color: #765234;
}

.item-link {
    display: inline-block;
    margin-top: 15px;
    color: #765234;
    font-weight: 500;
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.item-link:hover {
    color: #5a3e28;
    text-decoration: underline;
}

.load-more-btn {
    background-color: transparent;
    border: 2px solid #765234;
    color: #765234;
    padding: 10px 25px;
    border-radius: 30px;
    font-size: 1rem;
    cursor: pointer;
    display: block;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.load-more-btn:hover {
    background-color: #765234;
    color: white;
}

.load-more-btn i {
    margin-left: 5px;
}

/* 地图部分 */
.exhibition-map-section {
    margin-bottom: 60px;
}

.map-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 30px;
    font-size: 1.05rem;
    color: #444;
}

.map-container {
    display: flex;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    min-height: 500px;
}

.map-placeholder {
    flex: 2;
    position: relative;
    min-height: 500px;
    height: 500px;
    overflow: hidden;
    border-radius: 15px 0 0 15px;
    z-index: 1;
    background-color: #f0f0f0;
}

/* 自定义高德地图标记 */
.custom-marker {
    position: relative;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom-marker i {
    font-size: 36px;
    color: #765234;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.custom-marker .marker-count {
    position: absolute;
    top: 0;
    right: -5px;
    background-color: #e74c3c;
    color: white;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: bold;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.map-info-panel {
    flex: 1;
    padding: 25px;
    background-color: rgba(255, 255, 255, 0.8);
    overflow-y: auto;
    max-height: 500px;
    border-radius: 0 15px 15px 0;
}

.map-city-title {
    font-size: 1.5rem;
    margin: 0 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    color: #333;
}

.exhibition-count {
    font-size: 1rem;
    color: #555;
    font-weight: normal;
}

.map-exhibition-item {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
}

.map-exhibition-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.map-exhibition-item h4 {
    font-size: 1.2rem;
    margin: 0 0 10px 0;
    color: #333;
}

.map-exhibition-item p {
    margin: 0 0 8px 0;
    font-size: 0.9rem;
    color: #555;
}

.map-exhibition-item i {
    margin-right: 5px;
    color: #765234;
}

.map-item-link {
    display: inline-block;
    margin-top: 10px;
    color: #765234;
    font-weight: 500;
    font-size: 0.9rem;
    text-decoration: none;
}

.map-item-link:hover {
    text-decoration: underline;
}

/* 参观指南 */
.visit-guide-section {
    margin-bottom: 50px;
}

.guide-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
}

.guide-card {
    background: rgba(255, 255, 255, 0.7);
    border-radius: 10px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.guide-card:hover {
    transform: translateY(-5px);
}

.guide-icon {
    width: 70px;
    height: 70px;
    background-color: #765234;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.guide-icon i {
    font-size: 2rem;
    color: white;
}

.guide-card h3 {
    font-size: 1.3rem;
    margin: 0 0 15px 0;
    color: #333;
}

.guide-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #444;
    margin: 0;
}

/* 线下展览响应式调整 */
@media (max-width: 992px) {
    .exhibition-card.featured {
        flex-direction: column;
    }
    
    .exhibition-image, 
    .exhibition-card:not(.featured) .exhibition-image {
        max-width: 100%;
        height: 250px;
    }
    
    .map-container {
        flex-direction: column;
    }
    
    .map-placeholder {
        height: 300px;
    }
    
    .map-info-panel {
        max-height: none;
    }
}

@media (max-width: 768px) {
    .exhibition-meta {
        flex-direction: column;
    }
    
    .exhibition-meta p {
        margin-right: 0;
        margin-bottom: 8px;
    }
    
    .exhibition-grid {
        grid-template-columns: 1fr;
    }
    
    .guide-cards {
        grid-template-columns: 1fr;
    }
    
    .exhibition-filters {
        justify-content: center;
    }
}

/* 书刻体验 - Stone Inscription Experience 美化样式 */
.experience-section {
    padding: 20px 0;
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 25px;
}

.experience-item {
    background: rgba(40, 40, 50, 0.75);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 100%;
    position: relative;
}

.experience-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
}

.experience-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

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

.experience-item:hover .experience-image img {
    transform: scale(1.1);
}

.experience-details {
    padding: 25px;
    position: relative;
}

.experience-details h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #fff;
    position: relative;
    padding-bottom: 12px;
    font-weight: 600;
}

.experience-details h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #e74c3c, rgba(231, 76, 60, 0.3));
    border-radius: 3px;
}

.experience-desc {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 16px;
}

.experience-info {
    margin-bottom: 20px;
    background: rgba(0, 0, 0, 0.2);
    padding: 15px;
    border-radius: 10px;
}

.experience-info p {
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    font-size: 15px;
}

.experience-info p:last-child {
    margin-bottom: 0;
}

.experience-info p i {
    margin-right: 10px;
    color: #e74c3c;
    width: 20px;
    text-align: center;
}

.action-button {
    display: inline-block;
    padding: 12px 28px;
    background: linear-gradient(90deg, #e74c3c, #c0392b);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
}

.action-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.4);
    background: linear-gradient(90deg, #e74c3c, #d35400);
}

.action-button.small {
    padding: 8px 16px;
    font-size: 14px;
}

/* 特色体验活动样式 */
.activities-list {
    margin-top: 25px;
}

.activity-item {
    display: flex;
    background: rgba(40, 40, 50, 0.75);
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 25px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.activity-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    border-color: rgba(255, 255, 255, 0.2);
}

.activity-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 100px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    font-size: 28px;
    transition: all 0.3s ease;
}

.activity-item:hover .activity-icon {
    background: linear-gradient(135deg, #2980b9, #3498db);
    transform: scale(1.05);
}

.activity-content {
    padding: 20px;
    flex: 1;
}

.activity-content h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #fff;
}

.activity-content p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 15px;
    line-height: 1.6;
}

.activity-time {
    color: #e74c3c !important;
    font-weight: 600;
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.activity-time::before {
    content: "\f017";
    font-family: "Font Awesome 5 Free";
    font-weight: 400;
    margin-right: 8px;
    color: #e74c3c;
}

/* 工具卡片样式 */
.tools-category {
    margin-bottom: 40px;
}

.tools-category h2 {
    margin-bottom: 25px;
    font-size: 28px;
    color: #fff;
    display: flex;
    align-items: center;
}

.tools-category h2 i {
    margin-right: 15px;
    color: #e74c3c;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.tool-card {
    background: rgba(40, 40, 50, 0.8);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.tool-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
    border-color: rgba(255, 255, 255, 0.2);
}

.tool-image {
    height: 200px;
    overflow: hidden;
}

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

.tool-card:hover .tool-image img {
    transform: scale(1.1);
}

.tool-info {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.tool-info h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #fff;
}

.tool-desc {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 15px;
    line-height: 1.6;
}

.tool-details {
    margin-top: auto;
    margin-bottom: 20px;
    background: rgba(0, 0, 0, 0.2);
    padding: 12px;
    border-radius: 8px;
}

.tool-details p {
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
}

.tool-details p:last-child {
    margin-bottom: 0;
}

.tool-details p i {
    margin-right: 10px;
    color: #3498db;
    width: 20px;
    text-align: center;
}

/* 套装卡片样式 */
.package-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.package-card {
    background: rgba(40, 40, 50, 0.8);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
}

.package-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

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

.package-card:hover .package-image img {
    transform: scale(1.1);
}

.package-image::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}

.package-info {
    padding: 25px;
}

.package-info h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #fff;
}

.package-desc {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 20px;
    line-height: 1.6;
}

.package-content {
    background: rgba(0, 0, 0, 0.2);
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.package-content h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #fff;
}

.package-content ul {
    padding-left: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.package-content ul li {
    margin-bottom: 5px;
}

.package-price {
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.original-price {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: line-through;
    font-size: 16px;
}

.current-price {
    color: #e74c3c;
    font-size: 22px;
    font-weight: bold;
}

/* 石刻装饰元素 */
.stone-decoration {
    position: absolute;
    width: 120px;
    height: 120px;
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.15;
    z-index: 0;
    pointer-events: none;
}

.stone-decoration.top-left {
    top: 20px;
    left: 20px;
    background-image: url('https://i.imgur.com/pAHRJcX.png');
    transform: rotate(-15deg);
}

.stone-decoration.bottom-right {
    bottom: 20px;
    right: 20px;
    background-image: url('https://i.imgur.com/QUiZLvv.png');
    transform: rotate(15deg);
}

/* 书刻体验页面特定样式 */
#creation-new-experience-content .glass-header {
    position: relative;
    padding-bottom: 30px;
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

#creation-new-experience-content .glass-title {
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

#creation-new-experience-content .glass-title .en-subtitle {
    display: block;
    font-size: 18px;
    margin-top: 5px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
    letter-spacing: 2px;
}

#creation-new-experience-content .glass-subtitle {
    max-width: 800px;
    margin: 0 auto;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
}

/* 响应式设计调整 */
@media (max-width: 992px) {
    .experience-grid, .tools-grid, .package-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .activity-item {
        flex-direction: column;
    }
    
    .activity-icon {
        min-width: 100%;
        height: 80px;
    }
    
    .experience-image, .tool-image {
        height: 180px;
    }
    
    .package-image {
        height: 220px;
    }
    
    .package-price {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .original-price {
        margin-bottom: 5px;
    }
    
    .experience-details h3, .tool-info h3, .package-info h3 {
        font-size: 20px;
    }
    
    .activity-content h3 {
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .action-button {
        width: 100%;
        text-align: center;
    }
}

/* 作品提交表单样式美化 */
.submission-form {
    padding: 10px 0;
}

.submission-section {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 1200px) {
    .submission-section {
        grid-template-columns: 3fr 2fr;
    }
}

.form-group {
    margin-bottom: 25px;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #000;
    font-size: 1rem;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 10px 15px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: #000;
    font-size: 0.95rem;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group input[type="tel"]:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: rgba(231, 76, 60, 0.6);
    box-shadow: 0 0 10px rgba(231, 76, 60, 0.3);
    outline: none;
}

.form-group input[type="text"]::placeholder,
.form-group input[type="email"]::placeholder,
.form-group input[type="tel"]::placeholder,
.form-group textarea::placeholder,
.form-group select::placeholder {
    color: rgba(0, 0, 0, 0.6);
}

.upload-area {
    padding: 30px;
    border: 2px dashed rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgba(30, 30, 40, 0.5);
    margin-bottom: 20px;
}

.upload-area:hover {
    border-color: rgba(231, 76, 60, 0.6);
    background: rgba(30, 30, 40, 0.7);
}

.upload-area i {
    font-size: 48px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 15px;
}

.upload-area p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
    font-size: 18px;
}

.upload-hint {
    font-size: 14px !important;
    color: rgba(255, 255, 255, 0.5) !important;
}

.upload-button {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background: rgba(231, 76, 60, 0.8);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.upload-button:hover {
    background: rgba(231, 76, 60, 1);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
}

.form-group label input[type="checkbox"] {
    margin-right: 8px;
    vertical-align: middle;
}

.form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    margin-top: 10px;
}

.submit-button,
.reset-button {
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.submit-button {
    background: linear-gradient(135deg, #ffd700, #daa520);
    color: #000;
}

.submit-button:hover {
    background: linear-gradient(135deg, #ffdf4d, #e6b422);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(218, 165, 32, 0.2);
}

.reset-button {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.reset-button:hover {
    background: rgba(255, 255, 255, 0.15);
    color: white;
}

/* 图片预览相关样式 */
.image-preview-container {
    margin-top: 25px;
    background: rgba(30, 30, 40, 0.6);
    border-radius: 10px;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.image-preview-container h4 {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 15px;
    font-size: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.preview-count {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: normal;
}

.image-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
    margin-top: 10px;
}

.preview-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.3);
    height: 150px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.preview-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
}

.preview-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.preview-delete {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 30px;
    height: 30px;
    background: rgba(231, 76, 60, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: white;
    font-size: 14px;
    border: none;
}

.preview-item:hover .preview-delete {
    opacity: 1;
}

.preview-delete:hover {
    background: rgba(231, 76, 60, 1);
    transform: scale(1.1);
}

.preview-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.6);
    padding: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.preview-item:hover .preview-info {
    opacity: 1;
}

.no-images-placeholder {
    text-align: center;
    padding: 30px;
    color: rgba(255, 255, 255, 0.5);
    font-style: italic;
    grid-column: 1 / -1;
    border: 1px dashed rgba(255, 255, 255, 0.2);
    border-radius: 8px;
}

/* 优秀作品展示美化 */
.featured-works {
    margin-top: 20px;
}

.featured-work {
    background: rgba(40, 40, 50, 0.7);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 25px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.featured-work:last-child {
    margin-bottom: 0;
}

.featured-work:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
    border-color: rgba(255, 255, 255, 0.2);
}

.work-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

.featured-work:hover .work-image img {
    transform: scale(1.05);
}

.work-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 6px 12px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    font-size: 14px;
    font-weight: 600;
    border-radius: 6px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.work-info {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.work-info h3 {
    font-size: 24px;
    color: #fff;
    margin-bottom: 12px;
    font-weight: 600;
}

.author-info {
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.author-info i {
    margin-right: 8px;
    color: #e74c3c;
}

.work-date {
    margin-left: 20px;
    display: inline-flex;
    align-items: center;
}

.work-date i {
    margin-right: 8px;
    color: #3498db;
}

.work-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 16px;
}

.work-award {
    display: inline-flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.3);
    padding: 10px 15px;
    border-radius: 8px;
    margin-top: auto;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.work-award i {
    color: #f1c40f;
    font-size: 20px;
    margin-right: 10px;
}

.work-award span {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.more-works-link {
    margin-top: 20px;
    text-align: center;
}

.more-works-link a {
    display: inline-flex;
    align-items: center;
    color: #3498db;
    font-size: 16px;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 6px;
    background: rgba(52, 152, 219, 0.1);
    transition: all 0.3s ease;
}

.more-works-link a:hover {
    background: rgba(52, 152, 219, 0.2);
    transform: translateY(-3px);
}

.more-works-link a i {
    margin-right: 8px;
    font-size: 18px;
}

/* 调整为更现代的卡片布局 */
@media (min-width: 992px) {
    .featured-work {
        flex-direction: row;
        align-items: stretch;
    }
    
    .work-image {
        width: 35%;
        height: auto;
    }
    
    .work-info {
        width: 65%;
    }
}

@media (max-width: 768px) {
    .form-actions {
        flex-direction: column;
    }
    
    .work-image {
        height: 200px;
    }
    
    .work-info h3 {
        font-size: 20px;
    }
    
    .author-info {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .work-date {
        margin-left: 0;
        margin-top: 8px;
    }
    
    .work-tag {
        font-size: 12px;
        padding: 4px 10px;
    }
    
    .image-preview-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }
    
    .preview-item {
        height: 120px;
    }
    
    .preview-delete {
        opacity: 1;
        width: 25px;
        height: 25px;
    }
}

/* 产品网格布局样式 */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

.product-item {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.product-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.product-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-item:hover .product-image img {
    transform: scale(1.05);
}

.product-tag {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(220, 53, 69, 0.85);
    color: white;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 1;
}

.product-info {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-info h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #fff;
}

.product-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
    flex-grow: 1;
}

.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.product-price {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffd700;
}

.product-rating {
    display: flex;
    align-items: center;
    color: #ffd700;
    font-size: 0.9rem;
}

.product-rating i {
    margin-right: 2px;
}

.product-rating span {
    color: rgba(255, 255, 255, 0.7);
    margin-left: 5px;
    font-size: 0.8rem;
}

/* 购物车图标样式 */
.cart-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: none; /* 默认隐藏，只有在文创产品页面才显示 */
}

.cart-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(30, 30, 50, 0.85);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    position: relative;
}

.cart-button:hover {
    transform: scale(1.05);
    background: rgba(40, 40, 70, 0.9);
}

.cart-icon {
    font-size: 1.5rem;
    color: #fff;
}

.cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #dc3545;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
}

.cart-price {
    position: absolute;
    top: -38px;
    right: 0;
    background: rgba(30, 30, 50, 0.9);
    color: #ffd700;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.cart-button:hover .cart-price {
    opacity: 1;
    transform: translateY(0);
}

/* 购物车内容弹出层 */
.cart-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.cart-popup.active {
    opacity: 1;
    visibility: visible;
}

.cart-content {
    background: rgba(30, 30, 50, 0.9);
    backdrop-filter: blur(10px);
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
}

.cart-header {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cart-header h2 {
    color: #fff;
    margin: 0;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
}

.cart-header h2 i {
    margin-right: 10px;
    color: #ffd700;
}

.cart-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.cart-close:hover {
    color: #fff;
}

.cart-items {
    padding: 0 20px;
    overflow-y: auto;
    max-height: 50vh;
}

.cart-empty {
    padding: 40px 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

.cart-item {
    display: flex;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cart-item-image {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    margin-right: 15px;
    flex-shrink: 0;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-info {
    flex-grow: 1;
}

.cart-item-title {
    color: #fff;
    font-size: 1.1rem;
    margin: 0 0 5px 0;
}

.cart-item-price {
    color: #ffd700;
    font-weight: 600;
    margin: 0 0 10px 0;
    font-size: 1rem;
}

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

.quantity-control {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.quantity-btn {
    width: 28px;
    height: 28px;
    background: rgba(255, 255, 255, 0.05);
    border: none;
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}

.quantity-btn:hover {
    background: rgba(255, 255, 255, 0.15);
}

.quantity-input {
    width: 40px;
    background: transparent;
    border: none;
    text-align: center;
    color: #fff;
    font-size: 0.9rem;
    margin: 0;
    padding: 0;
}

.cart-item-remove {
    color: #dc3545;
    background: none;
    border: none;
    margin-left: 15px;
    cursor: pointer;
    font-size: 1rem;
    transition: opacity 0.2s ease;
}

.cart-item-remove:hover {
    opacity: 0.8;
}

.cart-footer {
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.cart-total-price {
    color: #ffd700;
    font-weight: 600;
    font-size: 1.4rem;
}

.cart-checkout {
    width: 100%;
    padding: 12px;
    background: #ffd700;
    border: none;
    border-radius: 8px;
    color: #222;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-checkout:hover {
    background: #ffdf4d;
    transform: translateY(-2px);
}

.cart-checkout i {
    margin-right: 8px;
}

@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 15px;
    }
    
    .product-image {
        height: 180px;
    }
    
    .product-info {
        padding: 15px;
    }
    
    .cart-container {
        bottom: 20px;
        right: 20px;
    }
    
    .cart-button {
        width: 50px;
        height: 50px;
    }
    
    .cart-content {
        width: 95%;
    }
}

@media (max-width: 576px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
    
    .cart-item {
        flex-direction: column;
    }
    
    .cart-item-image {
        margin-right: 0;
        margin-bottom: 10px;
        width: 100%;
        height: 120px;
    }
}

/* 合作机构页面样式 */
.partner-section {
    width: 100%;
    padding: 0;
}

.partner-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 25px;
}

.partner-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    transform-style: preserve-3d;
    perspective: 1000px;
    height: 450px;
}

.partner-item:hover {
    transform: translateY(-10px) rotateX(5deg);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.12);
}

.partner-logo {
    position: relative;
    height: 140px;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.partner-logo::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
    z-index: 1;
}

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

.partner-item:hover .partner-logo img {
    transform: scale(1.1);
}

.partner-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    height: calc(100% - 140px);
}

.partner-info h3 {
    font-size: 1.4rem;
    color: #000;
    margin-bottom: 10px;
    position: relative;
    padding-bottom: 10px;
    font-family: 'ZCOOL XiaoWei', serif;
}

.partner-info h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(to right, #ffd700, transparent);
}

.partner-desc {
    font-size: 0.95rem;
    color: rgba(0, 0, 0, 0.85);
    margin-bottom: 15px;
    line-height: 1.6;
}

.partner-cooperation {
    margin-top: auto;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 10px;
    padding: 15px;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.partner-cooperation h4 {
    font-size: 1rem;
    color: #964B00;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.partner-cooperation h4::before {
    content: '\f4c4';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-right: 8px;
    font-size: 0.9rem;
}

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

.partner-cooperation li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    color: rgba(0, 0, 0, 0.85);
    font-size: 0.9rem;
}

.partner-cooperation li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: #ffd700;
    border-radius: 50%;
}

.partner-link {
    display: inline-block;
    margin-top: 15px;
    padding: 8px 15px;
    background: rgba(255, 255, 255, 0.3);
    color: #000;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.2);
}

.partner-link:hover {
    background: rgba(255, 215, 0, 0.2);
    color: #964B00;
    transform: translateY(-3px);
}

.partner-link i {
    margin-left: 5px;
    font-size: 0.8rem;
}

/* 背景装饰元素 */
.partner-decoration {
    position: absolute;
    opacity: 0.05;
    pointer-events: none;
    z-index: 0;
}

.calligraphy-stroke {
    position: absolute;
    top: 50px;
    right: 50px;
    width: 200px;
    height: 200px;
    background-image: url('ink-brush-stroke.png');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.07;
    transform: rotate(-15deg);
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

.seal-decoration {
    position: absolute;
    bottom: 50px;
    left: 50px;
    width: 150px;
    height: 150px;
    background-image: url('chinese-seal.png');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.07;
    transform: rotate(15deg);
}

/* 合作机构标题特效 */
.partners-header-title {
    position: relative;
    display: inline-block;
    margin-bottom: 30px;
    font-family: 'Ma Shan Zheng', cursive;
}

.partners-header-title::before,
.partners-header-title::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 2px;
    background: linear-gradient(to right, transparent, rgba(255, 215, 0, 0.5), transparent);
}

.partners-header-title::before {
    top: -10px;
    left: -20px;
}

.partners-header-title::after {
    bottom: -10px;
    right: -20px;
}

/* 分类标题特效 */
.partner-category-title {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
    color: #000;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    text-align: center;
    font-family: 'ZCOOL QingKe HuangYou', sans-serif;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
}

.partner-category-title i {
    margin-right: 10px;
    color: #ffd700;
}

/* 合作特点展示 */
.partnership-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 40px 0;
}

.feature-item {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.12);
}

.feature-icon {
    font-size: 2rem;
    color: #ffd700;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.feature-icon::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    background: rgba(255, 215, 0, 0.2);
    border-radius: 50%;
    z-index: -1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon::after {
    width: 50px;
    height: 50px;
}

.feature-title {
    font-size: 1.2rem;
    color: #000;
    margin-bottom: 10px;
}

.feature-desc {
    font-size: 0.9rem;
    color: rgba(0, 0, 0, 0.8);
    line-height: 1.5;
}

/* 合作伙伴统计 */
.partnership-stats {
    display: flex;
    justify-content: space-between;
    margin: 40px 0;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    padding: 30px;
    backdrop-filter: blur(10px);
}

.stat-item {
    text-align: center;
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -10px;
    transform: translateY(-50%);
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #ffd700;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(0, 0, 0, 0.8);
}

/* 媒体查询 */
@media (max-width: 992px) {
    .partner-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
    
    .partnership-features {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .partnership-stats {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .stat-item {
        width: 50%;
        margin-bottom: 20px;
    }
    
    .stat-item:not(:last-child)::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .partner-grid {
        grid-template-columns: 1fr;
    }
    
    .partner-item {
        height: auto;
    }
    
    .partnership-features {
        grid-template-columns: 1fr;
    }
}

/* 联系我们页面样式 */
.contact-section {
    width: 100%;
    padding: 0;
}

/* 装饰元素 */
.contact-decoration {
    position: absolute;
    opacity: 0.05;
    pointer-events: none;
    z-index: 0;
}

.ink-dot-pattern {
    position: absolute;
    top: 50px;
    left: 50px;
    width: 200px;
    height: 200px;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.15) 2px, transparent 3px);
    background-size: 30px 30px;
    opacity: 0.3;
    transform: rotate(-5deg);
}

.wave-pattern {
    position: absolute;
    bottom: 50px;
    right: 50px;
    width: 300px;
    height: 150px;
    background-image: url('wave-pattern.png');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.07;
    transform: rotate(5deg);
}

.contact-title {
    position: relative;
    display: inline-block;
    margin-bottom: 30px;
    font-family: 'Ma Shan Zheng', cursive;
}

.contact-title::before,
.contact-title::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 2px;
    background: linear-gradient(to right, transparent, rgba(255, 215, 0, 0.5), transparent);
}

.contact-title::before {
    top: -10px;
    left: -15px;
}

.contact-title::after {
    bottom: -10px;
    right: -15px;
}

/* 联系信息网格布局 */
.contact-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 25px;
}

.contact-item {
    position: relative;
    background: rgba(255, 255, 255, 0.07);
    border-radius: 15px;
    padding: 25px;
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 215, 0, 0.2);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.contact-item:hover::before {
    opacity: 1;
}

.contact-icon {
    margin-right: 20px;
    font-size: 2rem;
    color: #ffd700;
    position: relative;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 215, 0, 0.1);
    flex-shrink: 0;
}

.contact-icon::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 1px solid rgba(255, 215, 0, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.contact-text {
    flex-grow: 1;
}

.contact-text h3 {
    color: #000;
    font-size: 1.3rem;
    margin-bottom: 12px;
    position: relative;
    padding-bottom: 10px;
    font-family: 'ZCOOL XiaoWei', serif;
}

.contact-text h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(to right, #ffd700, transparent);
}

.contact-text p {
    color: rgba(0, 0, 0, 0.85);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    padding: 8px 15px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    color: rgba(0, 0, 0, 0.9);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.social-link:hover {
    background: rgba(255, 215, 0, 0.1);
    transform: translateY(-3px);
    color: #000;
    border-color: rgba(255, 215, 0, 0.3);
}

.social-link i {
    margin-right: 8px;
    font-size: 1.1rem;
}

/* 联系表单样式 */
.contact-form {
    padding: 10px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

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

.form-group:nth-child(5),
.form-group:nth-child(6),
.form-group:nth-child(7),
.form-actions {
    grid-column: span 2;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    font-weight: 500;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 10px 15px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: #000;
    font-size: 0.95rem;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group input[type="tel"]:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: rgba(231, 76, 60, 0.6);
    box-shadow: 0 0 10px rgba(231, 76, 60, 0.3);
    outline: none;
}

.form-group input[type="text"]::placeholder,
.form-group input[type="email"]::placeholder,
.form-group input[type="tel"]::placeholder,
.form-group textarea::placeholder,
.form-group select::placeholder {
    color: rgba(0, 0, 0, 0.6);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: calc(100% - 15px) center;
    background-size: 12px;
    padding-right: 40px;
}

.form-group label input[type="checkbox"] {
    margin-right: 8px;
    vertical-align: middle;
}

.form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    margin-top: 10px;
}

.submit-button,
.reset-button {
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.submit-button {
    background: linear-gradient(135deg, #ffd700, #daa520);
    color: #000;
}

.submit-button:hover {
    background: linear-gradient(135deg, #ffdf4d, #e6b422);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(218, 165, 32, 0.2);
}

.reset-button {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.reset-button:hover {
    background: rgba(255, 255, 255, 0.15);
    color: white;
}

/* 交通信息样式 */
.location-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 25px;
}

.map-container {
    position: relative;
    height: 100%;
    min-height: 300px;
    border-radius: 15px;
    overflow: hidden;
}

.static-map {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.static-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.8) contrast(1.1);
    transition: all 0.3s ease;
}

.static-map::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.5));
    pointer-events: none;
}

.static-map:hover img {
    transform: scale(1.05);
    filter: saturate(1) contrast(1.2);
}

.transport-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.transport-item {
    background: rgba(255, 255, 255, 0.07);
    border-radius: 15px;
    padding: 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.transport-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 215, 0, 0.2);
}

.transport-item h3 {
    color: #000;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.transport-item h3 i {
    margin-right: 10px;
    color: #ffd700;
    font-size: 1.2rem;
}

.transport-item p {
    color: rgba(0, 0, 0, 0.85);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* 地图标记 */
.map-marker {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    z-index: 1;
}

.marker-pulse {
    position: relative;
    width: 20px;
    height: 20px;
    background: #ffd700;
    border-radius: 50%;
    margin: 0 auto;
}

.marker-pulse::before,
.marker-pulse::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 215, 0, 0.5);
    border-radius: 50%;
    animation: mapPulse 2s infinite;
}

.marker-pulse::after {
    animation-delay: 0.5s;
}

@keyframes mapPulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(3);
        opacity: 0;
    }
}

.marker-pin {
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 15px solid #ffd700;
    margin: 5px auto 0;
}

/* 媒体查询 */
@media (max-width: 992px) {
    .contact-info,
    .location-info {
        grid-template-columns: 1fr;
    }
    
    .map-container {
        min-height: 250px;
    }
}

@media (max-width: 768px) {
    .contact-form {
        grid-template-columns: 1fr;
    }
    
    .form-group:nth-child(5),
    .form-group:nth-child(6),
    .form-group:nth-child(7),
    .form-actions {
        grid-column: span 1;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .submit-button,
    .reset-button {
        width: 100%;
    }
    
    .social-links {
        flex-direction: column;
        gap: 8px;
    }
    
    .social-link {
        width: 100%;
    }
}

/* 开放时间和票价信息样式 */
.opening-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 25px;
}

.opening-hours,
.admission-info {
    background: rgba(255, 255, 255, 0.07);
    border-radius: 15px;
    padding: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.opening-hours:hover,
.admission-info:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 215, 0, 0.2);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.opening-hours h3,
.admission-info h3 {
    color: #000;
    font-size: 1.3rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
    font-family: 'ZCOOL XiaoWei', serif;
    text-align: center;
}

.opening-hours h3::after,
.admission-info h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(to right, transparent, #ffd700, transparent);
}

.time-list,
.notice-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.time-list li,
.notice-list li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    color: rgba(0, 0, 0, 0.85);
    font-size: 0.95rem;
}

.time-list li:last-child,
.notice-list li:last-child {
    border-bottom: none;
}

.day {
    font-weight: 500;
    color: #000;
}

.time {
    color: #964B00;
}

.price {
    color: #964B00;
    font-weight: 600;
}

.notice {
    color: rgba(0, 0, 0, 0.75);
}

.admission-info .action-button {
    margin-top: 20px;
    width: 100%;
}

@media (max-width: 992px) {
    .opening-info {
        grid-template-columns: 1fr;
    }
}

/* 登录弹窗样式 */
.login-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.login-modal.active {
    opacity: 1;
    visibility: visible;
}

.login-modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(8px);
    z-index: 2001;
}

.login-modal-content {
    position: relative;
    width: 90%;
    max-width: 420px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0;
    z-index: 2002;
    transform: translateY(20px);
    transition: all 0.3s ease;
    overflow: hidden;
}

.login-modal.active .login-modal-content {
    transform: translateY(0);
}

.login-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background-color: rgba(200, 169, 126, 0.4);
}

.login-modal-header h2 {
    color: #fff;
    margin: 0;
    font-size: 1.5rem;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 10px;
}

.login-modal-close {
    background: none;
    border: none;
    font-size: 1.8rem;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
}

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

.login-modal-body {
    padding: 30px;
    color: #fff;
}

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

.login-modal-body .form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #fff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.login-modal-body .form-group input[type="text"],
.login-modal-body .form-group input[type="password"] {
    width: 100%;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.login-modal-body .form-group input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.login-modal-body .form-group input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

.remember-me {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}

.remember-me label {
    display: flex !important;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.forgot-password {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.forgot-password:hover {
    color: #fff;
    text-decoration: underline;
}

.form-actions {
    margin-top: 25px;
}

.login-submit-button {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, rgba(200, 169, 126, 0.8), rgba(184, 154, 109, 0.9));
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.login-submit-button:hover {
    background: linear-gradient(135deg, rgba(200, 169, 126, 1), rgba(184, 154, 109, 1));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.login-divider {
    text-align: center;
    margin: 25px 0;
    position: relative;
    color: #fff;
}

.login-divider::before,
.login-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.2);
}

.login-divider::before {
    left: 0;
}

.login-divider::after {
    right: 0;
}

.login-divider span {
    background: rgba(0, 0, 0, 0.1);
    padding: 0 15px;
    position: relative;
    z-index: 1;
    backdrop-filter: blur(5px);
    border-radius: 10px;
}

.social-login {
    display: flex;
    gap: 15px;
}

.social-login-button {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.social-login-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    filter: blur(5px);
    transform: scale(1.2);
    opacity: 0.7;
    z-index: -1;
}

.social-login-button.wechat {
    background-color: rgba(7, 193, 96, 0.8);
}

.social-login-button.qq {
    background-color: rgba(18, 183, 245, 0.8);
}

.social-login-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.social-login-button.wechat:hover {
    background-color: rgba(7, 193, 96, 1);
}

.social-login-button.qq:hover {
    background-color: rgba(18, 183, 245, 1);
}

.login-modal-footer {
    padding: 15px 30px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background-color: rgba(0, 0, 0, 0.1);
}

.login-modal-footer p {
    margin: 0;
    color: #fff;
    font-size: 0.9rem;
}

.register-link {
    color: #c8a97e;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.register-link:hover {
    color: #e6d2b5;
    text-decoration: underline;
}

@media (max-width: 576px) {
    .login-modal-content {
        width: 95%;
    }
    
    .login-modal-header {
        padding: 15px 20px;
    }
    
    .login-modal-body {
        padding: 20px;
    }
    
    .social-login {
        flex-direction: column;
    }
}
