/* ===== 基础样式 ===== */
.hero {
  background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
    url("https://oss.allintrip.cn/shanwentou/upfiles/onepage/bannerys.jpg?x-oss-process=image/quality,q_85/format,jpg");
}

section {
  height: auto;
}

/* ===== 布局组件 ===== */
.content-wrapper {
  gap: 4rem;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}

.image-content {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ===== 通用标题样式 ===== */
h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 1rem;
  position: relative;
}

.subtitle {
  font-size: 1.2rem;
  color: #666;
  font-weight: 600;
  margin-bottom: 1.5rem;
  letter-spacing: 2px;
}

.description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  /* margin-bottom: 2rem; */
}

/* ===== 横向滚动容器统一样式 ===== */
.h-scroll {
  display: flex !important;
  flex-wrap: nowrap;
  gap: 2rem;
  --h-gap: 2rem;
  overflow-x: auto;
  overflow-y: hidden;
  padding-top: 5px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-gutter: stable both-edges;
  padding-bottom: 0.5rem;
  margin-bottom: -0.5rem;
  /* Hide scrollbar (Firefox/IE/Edge) */
  -ms-overflow-style: none;
  scrollbar-width: none;
  /* width: calc(100% - 120px);
  max-width: calc(100% - 120px); */
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  position: relative;
  scroll-behavior: smooth;
  backface-visibility: hidden;
  transform: translateZ(0);
}

.h-scroll::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}

.h-scroll .clone-item {
  opacity: 1;
  transition: opacity 0.3s ease;
}

.h-scroll .scroll-sentinel {
  flex: 0 0 1px;
  width: 1px;
  height: 1px;
  margin-left: calc(-1 * var(--h-gap));
}

/* 强制特定容器在带有 h-scroll 时使用横向 Flex 布局 */
#filmWorksGrid.h-scroll,
.cinema-list.h-scroll,
.copyright-works.h-scroll,
.documentary-works.h-scroll {
  display: flex !important;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  gap: 2rem;
  /* padding: 0 1rem; */
}

.h-scroll > .media-card,
.h-scroll > .cinema-item {
  flex: 0 0 auto;
  width: clamp(200px, 24vw, 304px);
  scroll-snap-align: start;
  transition: transform 0.3s ease;
}

.h-scroll > .media-card:hover,
.h-scroll > .cinema-item:hover {
  transform: translateY(-5px);
}

/* ===== 影视作品样式 ===== */
.film-works-container {
  width: 100%;
  position: relative;
}

#filmWorksGrid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-bottom: 3rem;
}

.work-item {
  background: linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(135deg, rgba(13, 110, 253, 0.15), rgba(13, 110, 253, 0.03))
      border-box;
  padding: 0;
  border-radius: 12px;
  border: 1px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  text-align: center;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(2, 6, 23, 0.05);
}

.work-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 30px rgba(2, 6, 23, 0.12);
  background: linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(135deg, rgba(13, 110, 253, 0.3), rgba(13, 110, 253, 0.08))
      border-box;
}

.work-image {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  overflow: hidden;
  position: relative;
}

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

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

.work-content {
  padding: 1rem;
  gap: 0.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.work-item h3 {
  font-size: 1.1rem;
  color: #333;
  font-weight: 600;
  line-height: 1.3;
}

.work-item p {
  color: #666;
  font-size: 0.85rem;
  line-height: 1.4;
  margin: 0;
}

.work-details {
  margin-top: 0.5rem;
  padding: 0 1rem 1rem;
  border-top: 1px solid #e9ecef;
}

.work-description {
  color: #555;
  font-size: 0.8rem;
  line-height: 1.5;
  margin-bottom: 0.8rem;
  text-align: left;
}

.work-meta {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  justify-content: center;
}

.work-meta span {
  background: #e9ecef;
  color: #495057;
  padding: 0.25rem 0.5rem;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 500;
}

.work-toggle-btn {
  background: #ffffff;
  border: 1px solid #cfe2ff;
  color: #0d6efd;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  font-size: 0.85rem;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease,
    transform 0.08s ease;
  margin: 0 1rem 1rem;
  width: calc(100% - 2rem);
  box-shadow: 0 1px 2px rgba(13, 110, 253, 0.08);
}

.work-toggle-btn:hover {
  background: #e7f1ff;
  box-shadow: 0 4px 12px rgba(13, 110, 253, 0.15);
}

.work-toggle-btn.active {
  background: #0d6efd;
  border-color: #0d6efd;
  color: #fff;
  box-shadow: 0 6px 16px rgba(13, 110, 253, 0.35);
}

/* ===== 电影院线样式 ===== */
.cinema-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.cinema-item {
  background: linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(135deg, rgba(13, 110, 253, 0.15), rgba(13, 110, 253, 0.03))
      border-box;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(2, 6, 23, 0.01);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  border: 1px solid transparent;
  cursor: pointer;
}

.cinema-item:hover {
  /* transform: translateY(-4px); */
  box-shadow: 0 18px 34px rgba(2, 6, 23, 0.14);
  background: linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(135deg, rgba(13, 110, 253, 0.28), rgba(13, 110, 253, 0.08))
      border-box;
}

.cinema-image {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  overflow: hidden;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

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

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

.cinema-content {
  display: flex;
  flex-direction: column;
  padding: 2rem 1rem;
  gap: 0.5rem;
}

.cinema-item h3 {
  font-size: 1.2rem;
  color: #333;
  font-weight: 600;
  line-height: 1.3;
}

.cinema-location {
  color: #007bff;
  font-size: 0.9rem;
  font-weight: 500;
  margin: 0;
}

.cinema-address {
  color: #666;
  font-size: 0.85rem;
  line-height: 1.4;
  margin: 0;
}

.cinema-info {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.cinema-info span {
  background: #f8f9fa;
  color: #495057;
  padding: 0.4rem 0.8rem;
  border-radius: 0.5rem;
  font-size: 0.8rem;
  font-weight: 500;
  border: 1px solid #e9ecef;
}

.cinema-screens {
  background: #e3f2fd !important;
  color: #1976d2 !important;
  border-color: #bbdefb !important;
}

.cinema-seats {
  background: #f3e5f5 !important;
  color: #7b1fa2 !important;
  border-color: #e1bee7 !important;
}

.cinema-status {
  background: #e8f5e8 !important;
  color: #388e3c !important;
  border-color: #c8e6c9 !important;
}

.film-works-container,
.cinema-works-container,
.copyright-works-container,
.documentary-works-container {
  position: relative;
}

/* ===== 版权交易作品样式 ===== */
.copyright-works,
.documentary-works {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
}

/* 卡片统一风格：背景图 + 底部标题 + 悬浮蒙层 */
.media-card {
  position: relative;
  width: 100%;
  aspect-ratio: 9/16;
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #e9ecef;
  cursor: pointer;
}
.record‌-caard {
  height: 500px !important;
  width: 100% !important;
}

.media-card:hover {
  /* transform: translateY(-50px); */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.media-card__bottom {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 12px 14px;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.7),
    rgba(0, 0, 0, 0.12) 55%,
    rgba(0, 0, 0, 0)
  );
  transition: all 0.3s;
}

.media-card__title {
  margin: 0;
  font-size: 1.05rem;
  color: #fff;
  font-weight: 600;
}

.media-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.65) 0%,
    rgba(0, 0, 0, 0.35) 45%,
    rgba(0, 0, 0, 0.1) 100%
  );
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px 16px 16px;
  opacity: 0;
  /* transform: translateY(12px); */
  transition: opacity 220ms ease, transform 260ms ease;
  backdrop-filter: saturate(120%) blur(4px);
}
.media-card:hover .media-card__overlay_meta {
  display: block;
  transition: all 0.3s;
}
.media-card:hover .media-card__overlay {
  opacity: 1;
  transform: translateY(0);
}
.media-card__overlay_meta {
  margin-top: 10px;
  display: none;
  transition: all 0.3s;
}
.media-card__meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

.media-card__chip {
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 12px;
  line-height: 1;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.media-card__desc {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: #f1f3f5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  line-clamp: 3;
  overflow: hidden;
}

/* ===== 业务轮播统一样式 ===== */
.business-carousel {
  position: relative;
  /* margin-top: 4rem; */
  padding: 0 60px;
}

#overview .business-carousel {
  /* margin-top: 4rem; */
}

.carousel-container {
  overflow: hidden;
  position: relative;
  border-radius: 16px;
  /* box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1); */
}

.carousel-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  width: max-content;
  will-change: transform;
  backface-visibility: hidden;
  transform: translateZ(0);
  padding: 30px 0;
}
[data-id="finance1"] {
  /* 在这里定义你的样式规则 */
  background-size: 30% !important; /* 完整显示图片，保持比例 */
}
[data-id="finance5"] {
  /* 在这里定义你的样式规则 */
  background-size: 30% !important; /* 完整显示图片，保持比例 */
}

/* 使用属性选择器来定位具有特定 data-id 属性的元素 */
[data-id="exchange"]:nth-child(2) {
  /* 在这里定义你的样式规则 */
  background-size: 30% !important; /* 完整显示图片，保持比例 */
}
.carousel-card {
  background-size: contain; /* 完整显示图片，保持比例 */
  background-repeat: no-repeat; /* 防止重复 */
  background-position: center; /* 居中 */
  background-origin: content-box; /* 背景图从内边距区域开始 */
  background-color: #fff;
  color: #fff;
  padding: 20px; /* 上下左右各留20px空白 */
  border-radius: 12px;
  min-width: 300px;
  height: 200px;
  text-align: center;
  border: 1px solid #fff;
  box-shadow: 0 4px 15px rgba(30, 58, 138, 0.2);
  transition: all 0.3s ease;
  flex-shrink: 0;
  flex: 0 0 auto;
  will-change: transform;
  backface-visibility: hidden;
  transform: translateZ(0);
  position: relative;
  overflow: hidden;
}

#overview .carousel-card {
  border-radius: 16px;
  border: 2px solid #fff;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
  cursor: pointer;
}

.carousel-card:hover {
  /* transform: translateY(-5px); */
  box-shadow: 0 8px 25px rgba(30, 58, 138, 0.3);
}

.carousel-nav {
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  width: 45px;
  /* height: 100%; */
  height: 45px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  z-index: 10;
}
.carousel-nav_box {
  display: none;
}
.carousel-nav:hover {
  /* background: #fff; */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  background: rgba(0, 0, 0, 0.45);
}

.carousel-nav svg {
  color: #666;
  width: 20px;
  height: 20px;
}
.arrow-icon {
  width: 20px;
  height: 20px;
}
.arrow-left {
  transform: rotate(-180deg);
}
.carousel-prev {
  left: 0;
}
.carousel-next {
  right: 0;
}
.film-works-container:hover .carousel-nav_box {
  display: block;
}
.copyright-works-container:hover .carousel-nav_box {
  display: block;
}
.cinema-works-container:hover .carousel-nav_box {
  display: block;
}
/* 横向滚动网格左右导航按钮 */
.hs-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  z-index: 5;
}

.hs-nav:hover {
  background: #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hs-nav svg {
  color: #666;
  width: 18px;
  height: 18px;
}

.hs-prev {
  left: 0;
}

.hs-next {
  right: 0;
}

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

/* 当works-grid内容少于4个时居中显示 */
.h-scroll.centered {
  justify-content: center;
}

.h-scroll.centered .media-card {
  grid-column: span 1;
}

/* 切换按钮禁用状态 */
.carousel-nav:disabled,
.hs-prev:disabled,
.hs-next:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.carousel-nav:disabled:hover,
.hs-prev:disabled:hover,
.hs-next:disabled:hover {
  /* background: rgba(255, 255, 255, 0.95); */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transform: translateY(-50%);
}

/* 当内容少于4个时，调整网格布局 */
.h-scroll.centered {
  margin-left: auto;
  margin-right: auto;
}

/* ===== 分页统一样式 ===== */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.page-btn {
  appearance: none;
  background: #ffffff;
  color: #0d6efd;
  border: 1px solid #cfe2ff;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 0.9rem;
  min-width: 40px;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease,
    transform 0.08s ease;
  box-shadow: 0 1px 2px rgba(13, 110, 253, 0.08);
}

.page-btn:hover:not(:disabled) {
  background: #e7f1ff;
  box-shadow: 0 4px 12px rgba(13, 110, 253, 0.15);
}

.page-btn:active:not(:disabled) {
  transform: translateY(1px);
}

.page-btn.active {
  background: #0d6efd;
  color: #ffffff;
  border-color: #0d6efd;
  box-shadow: 0 4px 12px rgba(13, 110, 253, 0.3);
}

.page-btn:disabled {
  color: #94a3b8;
  border-color: #e2e8f0;
  cursor: not-allowed;
  background: #f8fafc;
}

/* ===== 通用图片样式 ===== */
.industry-image img,
.works-image img,
.copyright-image img,
.documentary-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.industry-image:hover img,
.works-image:hover img,
.copyright-image:hover img,
.documentary-image:hover img {
  transform: scale(1.05);
}

/* ===== Overview部分样式 ===== */
#overview {
  position: relative;
  padding: 80px 4vw;
}

#overview .content-wrapper {
  max-width: 1440px;
  margin: 0 auto;
}

#overview .description {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #5a6c7d;
  /* margin-bottom: 3rem; */
  text-align: left;
}

/* ===== 响应式设计 ===== */
@media (max-width: 1200px) {
  #filmWorksGrid,
  .cinema-list,
  .copyright-works,
  .documentary-works {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 900px) {
  #filmWorksGrid,
  .cinema-list,
  .copyright-works,
  .documentary-works {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .film-works-container {
    max-width: 100%;
    /* padding: 0 2rem; */
  }
}

@media (max-width: 768px) {
  .content-wrapper {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }

  .text-content,
  .image-content {
    max-width: 100%;
  }

  .works-grid,
  .copyright-works,
  .documentary-works {
    grid-template-columns: 1fr;
  }

  h2 {
    font-size: 2rem;
  }

  .hero .container {
    text-align: center;
  }

  section {
    padding: 60px 4vw;
    height: auto;
    min-height: 60vh;
  }

  /* 电影院线移动端 */
  .cinema-list {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 1rem;
  }

  .cinema-item {
    margin-bottom: 1rem;
  }

  .cinema-image {
    height: auto;
  }

  .cinema-content {
    padding: 1.2rem;
  }

  .cinema-info {
    gap: 0.6rem;
  }

  .cinema-info span {
    padding: 0.3rem 0.6rem;
    font-size: 0.75rem;
  }

  /* 版权交易和纪录片移动端 */
  .copyright-works,
  .documentary-works {
    gap: 1.5rem;
    padding: 0 1rem;
  }

  .copyright-item,
  .documentary-item {
    margin-bottom: 1rem;
  }

  .copyright-image,
  .documentary-image {
    height: 180px;
  }

  .copyright-content,
  .documentary-content {
    padding: 1.2rem;
  }

  /* 轮播移动端 */
  .business-carousel {
    padding: 0 30px;
    margin-top: 2rem;
  }

  #overview {
    padding: 80px 4vw;
  }

  #overview .description {
    font-size: 1.1rem;
    /* margin-bottom: 2.5rem; */
  }

  #overview .business-carousel {
    margin: 3rem auto 0;
    padding: 0 40px;
  }

  .carousel-card {
    min-width: 160px;
    height: 120px;
  }

  .carousel-nav {
    width: 35px;
    height: 35px;
    color: #fff;
  }

  .carousel-nav svg {
    width: 18px;
    height: 18px;
  }
}

@media (max-width: 600px) {
  #filmWorksGrid,
  .cinema-list,
  .copyright-works,
  .documentary-works {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .film-works-container {
    /* padding: 0 1rem; */
  }

  .work-item {
    min-height: 250px;
  }

  .work-image {
    height: 140px;
  }

  .pagination {
    gap: 0.5rem;
  }

  .page-btn {
    padding: 8px 12px;
    font-size: 0.8rem;
    min-width: 35px;
  }

  /* 电影院线小屏幕 */
  .cinema-list {
    gap: 1rem;
    padding: 0 0.5rem;
  }

  .cinema-image {
    height: auto;
  }

  .cinema-content {
    padding: 1rem;
  }

  .cinema-item h3 {
    font-size: 1.1rem;
  }

  .cinema-location {
    font-size: 0.85rem;
  }

  .cinema-address {
    font-size: 0.8rem;
  }

  /* 版权交易和纪录片小屏幕 */
  .copyright-works,
  .documentary-works {
    gap: 1rem;
    padding: 0 0.5rem;
  }

  .copyright-image,
  .documentary-image {
    height: 160px;
  }

  .copyright-content,
  .documentary-content {
    padding: 1rem;
  }

  .copyright-item h3,
  .documentary-item h3 {
    font-size: 1.1rem;
  }

  .copyright-category,
  .documentary-category {
    font-size: 0.8rem;
    padding: 0.25rem 0.6rem;
  }

  .copyright-year,
  .documentary-year {
    font-size: 0.8rem;
  }

  .copyright-status,
  .documentary-status {
    font-size: 0.8rem;
    padding: 0.25rem 0.6rem;
  }

  .copyright-description,
  .documentary-description {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .works-grid,
  .copyright-works {
    gap: 1rem;
  }

  .work-item,
  .cinema-item,
  .copyright-item,
  .documentary-item {
    padding: 1rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  .subtitle {
    font-size: 1rem;
  }

  /* 轮播小屏幕 */
  .business-carousel {
    padding: 0 25px;
  }

  #overview {
    padding: 60px 3vw;
  }

  #overview .description {
    font-size: 1rem;
    /* margin-bottom: 2rem; */
  }

  #overview .business-carousel {
    margin: 2.5rem auto 0;
    padding: 0 30px;
  }

  .carousel-card {
    min-width: 140px;
    height: 100px;
  }

  /* .carousel-nav {
    width: 30px;
    height: 30px;
  } */

  .carousel-nav svg {
    width: 16px;
    height: 16px;
  }
}

/* ===== 无障碍支持 ===== */
.work-toggle-btn:focus,
.btn-more:focus {
  outline: 2px solid #007bff;
  outline-offset: 2px;
}

.work-toggle-btn:focus-visible,
.btn-more:focus-visible {
  outline: 2px solid #007bff;
  outline-offset: 2px;
}

/* 高对比度模式支持 */
@media (prefers-contrast: high) {
  .work-item,
  .cinema-item,
  .copyright-item,
  .documentary-item {
    border: 2px solid #000;
  }

  .btn-more,
  .work-toggle-btn {
    border: 2px solid #000;
  }
}

/* 减少动画模式支持 */
@media (prefers-reduced-motion: reduce) {
  .work-item,
  .cinema-item,
  .copyright-item,
  .documentary-item,
  .btn-more,
  .work-toggle-btn,
  .loading-toast {
    transition: none;
  }

  .work-item:hover,
  .cinema-item:hover,
  .copyright-item:hover,
  .documentary-item:hover {
    transform: none;
  }
}
