/* 全局样式重置 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f9fa;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* 按钮样式 */
.btn {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 4px;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  font-size: 14px;
}

.btn-primary {
  background-color: #165DFF;
  color: white;
}

.btn-primary:hover {
  background-color: #0E42CC;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(22, 93, 255, 0.3);
}

.btn-outline {
  background-color: transparent;
  color: #165DFF;
  border: 1px solid #165DFF;
}

.btn-outline:hover {
  background-color: #165DFF;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(22, 93, 255, 0.3);
}

.btn-banner {
  background-color: white;
  color: #165DFF;
  font-size: 16px;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-banner:hover {
  background-color: #165DFF;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(22, 93, 255, 0.4);
}

/* 顶部通知栏 */
.top-notice {
  background-color: #FFF7E6;
  color: #FF7D00;
  padding: 8px 0;
  text-align: center;
  font-size: 14px;
  border-bottom: 1px solid #FFE7BA;
}

.top-notice p {
  margin: 0;
}

/* 页头 */
.header {
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
}

.logo-container {
  display: flex;
  align-items: center;
}

.logo {
  height: 50px;
  margin-right: 15px;
}

.logo-container h1 {
  font-size: 22px;
  font-weight: 600;
  color: #165DFF;
  letter-spacing: 1px;
}

.user-actions {
  display: flex;
  gap: 15px;
}

/* 导航栏 */
.main-nav {
  background-color: #165DFF;
  color: white;
}

.nav-list {
  display: flex;
}

.nav-list > li {
  position: relative;
}

.nav-list > li > a {
  display: block;
  padding: 15px 25px;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.nav-list > li > a:hover,
.nav-list > li > a.active {
  background-color: #0E42CC;
}

/* 下拉菜单 */
.dropdown:hover .submenu {
  display: block;
}

.submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: white;
  color: #333;
  min-width: 200px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border-radius: 0 0 4px 4px;
  z-index: 1000;
}

.submenu li a {
  display: block;
  padding: 12px 20px;
  font-size: 14px;
  transition: all 0.3s ease;
}

.submenu li a:hover {
  background-color: #f5f7fa;
  color: #165DFF;
  padding-left: 25px;
}

/* 轮播图 */
.banner {
  position: relative;
  height: 500px;
  overflow: hidden;
}

.banner-container {
  position: relative;
  height: 100%;
}

.banner-slides {
  display: flex;
  height: 100%;
  transition: transform 0.5s ease;
}

.slide {
  min-width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}

.slide-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: white;
  max-width: 800px;
  padding: 0 20px;
}

.slide-content h2 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 15px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.slide-content p {
  font-size: 20px;
  margin-bottom: 30px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.banner-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.3);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}

.banner-btn:hover {
  background-color: rgba(255, 255, 255, 0.6);
}

.prev {
  left: 20px;
}

.next {
  right: 20px;
}

.banner-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background-color: white;
  transform: scale(1.2);
}

/* 文字滚动 */
.scroll-text {
  background-color: #165DFF;
  color: white;
  padding: 10px 0;
  font-size: 16px;
  font-weight: 500;
}

/* 通用区块样式 */
.section {
  padding: 60px 0;
}

.section-title {
  text-align: center;
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 40px;
  color: #333;
  position: relative;
}

.section-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background-color: #165DFF;
  margin: 15px auto 0;
  border-radius: 2px;
}

.section-title i {
  margin-right: 10px;
  color: #165DFF;
}

/* 热门剧目推荐 */
.show-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.show-card {
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.show-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.show-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.show-info {
  padding: 20px;
}

.show-info h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #333;
}

.show-desc {
  font-size: 14px;
  color: #666;
  margin-bottom: 15px;
  line-height: 1.5;
}

.show-meta {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: #888;
}

.show-meta i {
  margin-right: 5px;
  color: #165DFF;
}

.view-more {
  text-align: center;
}

/* 剧院特色 */
.theater-features {
  background-color: #f0f7ff;
  padding: 60px 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.feature-card {
  background-color: white;
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background-color: #e6f0ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 32px;
  color: #165DFF;
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
  background-color: #165DFF;
  color: white;
  transform: rotate(360deg);
}

.feature-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #333;
}

.feature-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* 剧院宣传视频 */
.video-container {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

video {
  display: block;
}

.music-btn {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background-color: rgba(22, 93, 255, 0.8);
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}

.music-btn:hover {
  background-color: #165DFF;
}

/* 订阅表单 */
.subscription {
  background-color: #165DFF;
  color: white;
  padding: 60px 0;
  text-align: center;
}

.subscription .section-title {
  color: white;
}

.subscription .section-title::after {
  background-color: white;
}

.subscription .section-title i {
  color: white;
}

.subscription-desc {
  font-size: 16px;
  margin-bottom: 30px;
  opacity: 0.9;
}

.subscription-form {
  display: flex;
  max-width: 600px;
  margin: 0 auto;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
}

.form-group {
  flex: 1;
  min-width: 200px;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 12px 15px;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  background-color: white;
  color: #333;
}

.form-group input::placeholder {
  color: #999;
}

.subscription-form .btn-primary {
  background-color: white;
  color: #165DFF;
  font-weight: 600;
}

.subscription-form .btn-primary:hover {
  background-color: #f0f7ff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.success-message {
  margin-top: 20px;
  font-size: 16px;
  font-weight: 500;
}

.success-message i {
  margin-right: 8px;
}

/* 页脚 */
.footer {
  background-color: #1a1a2e;
  color: white;
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background-color: #165DFF;
}

.footer-logo {
  height: 50px;
  margin-bottom: 15px;
}

.footer-col p {
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.8;
  margin-bottom: 20px;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  font-size: 18px;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background-color: #165DFF;
  transform: translateY(-3px);
}

.footer-links li,
.contact-info li,
.upcoming-shows li {
  margin-bottom: 12px;
}

.footer-links a,
.upcoming-shows a {
  font-size: 14px;
  opacity: 0.8;
  transition: all 0.3s ease;
}

.footer-links a:hover,
.upcoming-shows a:hover {
  opacity: 1;
  color: #165DFF;
  padding-left: 5px;
}

.contact-info li {
  display: flex;
  align-items: flex-start;
  font-size: 14px;
  opacity: 0.8;
}

.contact-info i {
  margin-right: 10px;
  margin-top: 3px;
  color: #165DFF;
}

.copyright {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14px;
  opacity: 0.6;
}

/* 响应式设计 */
@media (max-width: 992px) {
  .header .container {
    flex-direction: column;
    padding: 15px 20px;
  }
  
  .logo-container {
    margin-bottom: 15px;
  }
  
  .nav-list {
    flex-wrap: wrap;
  }
  
  .banner {
    height: 400px;
  }
  
  .slide-content h2 {
    font-size: 36px;
  }
  
  .slide-content p {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .banner {
    height: 350px;
  }
  
  .slide-content h2 {
    font-size: 28px;
  }
  
  .slide-content p {
    font-size: 16px;
  }
  
  .banner-btn {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
  
  .show-list {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }
  
  .subscription-form {
    flex-direction: column;
    align-items: center;
  }
  
  .form-group {
    width: 100%;
    max-width: 400px;
  }
}

@media (max-width: 576px) {
  .logo-container h1 {
    font-size: 18px;
  }
  
  .user-actions {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }
  
  .user-actions .btn {
    width: 100%;
  }
  
  .nav-list {
    flex-direction: column;
  }
  
  .nav-list > li > a {
    padding: 12px 20px;
  }
  
  .submenu {
    position: static;
    background-color: #0E42CC;
    color: white;
    box-shadow: none;
  }
  
  .submenu li a {
    color: white;
    padding-left: 30px;
  }
  
  .submenu li a:hover {
    background-color: #0A3399;
    color: white;
    padding-left: 35px;
  }
  
  .banner {
    height: 300px;
  }
  
  .slide-content h2 {
    font-size: 24px;
  }
  
  .slide-content p {
    font-size: 14px;
    margin-bottom: 20px;
  }
  
  .btn-banner {
    padding: 10px 25px;
    font-size: 14px;
  }
  
  .section-title {
    font-size: 24px;
  }
  
  .show-list {
    grid-template-columns: 1fr;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
}
/* ==================== 通用内页样式 ==================== */
.page-header {
  background-color: #165DFF;
  color: white;
  padding: 60px 0;
  text-align: center;
  background-size: cover;
  background-position: center;
  position: relative;
}

.page-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.page-header .container {
  position: relative;
  z-index: 1;
}

.page-header h1 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
}

.page-header p {
  font-size: 16px;
  opacity: 0.9;
}

.btn-lg {
  padding: 12px 30px;
  font-size: 16px;
}

.btn-sm {
  padding: 6px 12px;
  font-size: 12px;
}

.btn-block {
  width: 100%;
}

.btn-disabled {
  background-color: #ccc;
  color: #666;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

.status {
  display: inline-block;
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
}

.status.available {
  background-color: #e6f7ff;
  color: #1890ff;
}

.status.hot {
  background-color: #fff7e6;
  color: #fa8c16;
}

.status.sold-out {
  background-color: #fff1f0;
  color: #f5222d;
}

/* ==================== 全部剧目页面样式 ==================== */
.filter-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  flex-wrap: wrap;
  gap: 20px;
}

.filter-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.filter-tab {
  padding: 8px 20px;
  border: 1px solid #e0e0e0;
  background-color: white;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
}

.filter-tab:hover,
.filter-tab.active {
  background-color: #165DFF;
  color: white;
  border-color: #165DFF;
}

.filter-sort select {
  padding: 8px 15px;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  font-size: 14px;
  background-color: white;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
}

.page-btn {
  width: 40px;
  height: 40px;
  border: 1px solid #e0e0e0;
  background-color: white;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-btn:hover,
.page-btn.active {
  background-color: #165DFF;
  color: white;
  border-color: #165DFF;
}

.page-btn.disabled {
  background-color: #f5f5f5;
  color: #ccc;
  cursor: not-allowed;
}

/* ==================== 剧目详情页面样式 ==================== */
.play-detail {
  display: flex;
  gap: 40px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.play-poster {
  width: 300px;
  flex-shrink: 0;
}

.play-poster img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.play-info {
  flex: 1;
  min-width: 300px;
}

.play-info h1 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #333;
}

.play-meta {
  margin-bottom: 30px;
}

.meta-item {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  font-size: 16px;
  color: #666;
}

.meta-item i {
  width: 24px;
  margin-right: 10px;
  color: #165DFF;
  text-align: center;
}

.play-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.play-tabs {
  display: flex;
  border-bottom: 1px solid #e0e0e0;
  margin-bottom: 30px;
  gap: 30px;
}

.play-tab {
  padding: 15px 0;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  position: relative;
  background: none;
  border: none;
  color: #666;
  transition: all 0.3s ease;
}

.play-tab:hover,
.play-tab.active {
  color: #165DFF;
}

.play-tab.active::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #165DFF;
}

.tab-content {
  display: none;
  line-height: 1.8;
}

.tab-content.active {
  display: block;
}

.tab-content h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #333;
}

.tab-content p {
  margin-bottom: 15px;
  color: #666;
}

.tab-content ul {
  margin-bottom: 15px;
  padding-left: 20px;
}

.tab-content ul li {
  margin-bottom: 8px;
  color: #666;
  list-style: disc;
}

.cast-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 20px;
}

.cast-item {
  text-align: center;
}

.cast-item img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 10px;
}

.cast-item h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
}

.cast-item p {
  font-size: 14px;
  color: #666;
}

.schedule-table {
  width: 100%;
  border-collapse: collapse;
}

.schedule-table th,
.schedule-table td {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid #e0e0e0;
}

.schedule-table th {
  background-color: #f5f7fa;
  font-weight: 600;
  color: #333;
}

.reviews-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.review-item {
  background-color: #f9f9f9;
  padding: 20px;
  border-radius: 8px;
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.reviewer-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.reviewer-info img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.reviewer-info h4 {
  font-size: 16px;
  font-weight: 600;
}

.review-rating {
  color: #ffc107;
}

.review-content {
  margin-bottom: 10px;
  color: #666;
  line-height: 1.6;
}

.review-date {
  font-size: 12px;
  color: #999;
}

.related-shows {
  padding-top: 0;
}

/* ==================== 剧院介绍页面样式 ==================== */
.about-section {
  display: flex;
  gap: 40px;
  align-items: center;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.about-section.reverse {
  flex-direction: row-reverse;
}

.about-image {
  width: 500px;
  flex-shrink: 0;
}

.about-image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.about-content {
  flex: 1;
  min-width: 300px;
}

.about-content h2,
.about-content h3 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #333;
}

.about-content p {
  margin-bottom: 15px;
  color: #666;
  line-height: 1.8;
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background-color: #e0e0e0;
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  margin-bottom: 40px;
}

.timeline-date {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  background-color: #165DFF;
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-weight: 600;
  z-index: 1;
}

.timeline-content {
  width: 45%;
  background-color: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  position: relative;
}

.timeline-item:nth-child(odd) .timeline-content {
  margin-left: 0;
}

.timeline-item:nth-child(even) .timeline-content {
  margin-left: 55%;
}

.timeline-content h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #333;
}

.timeline-content p {
  color: #666;
  line-height: 1.6;
}

/* ==================== 新闻动态页面样式 ==================== */
.news-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.news-item {
  display: flex;
  gap: 20px;
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.news-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.news-image {
  width: 300px;
  flex-shrink: 0;
}

.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-content {
  flex: 1;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.news-content h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #333;
  transition: color 0.3s ease;
}

.news-content h3:hover {
  color: #165DFF;
}

.news-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
  font-size: 14px;
  color: #999;
}

.news-meta i {
  margin-right: 5px;
  color: #165DFF;
}

.news-content p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 15px;
  flex: 1;
}

/* ==================== 联系我们页面样式 ==================== */
.contact-container {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.contact-info-section {
  flex: 1;
  min-width: 300px;
}

.contact-form-section {
  flex: 1;
  min-width: 300px;
}

.contact-info-section h2,
.contact-form-section h2 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 30px;
  color: #333;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background-color: #e6f0ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #165DFF;
  flex-shrink: 0;
}

.contact-details h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #333;
}

.contact-details p {
  color: #666;
  line-height: 1.6;
}

.social-section h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #333;
}

.social-section .social-icons {
  flex-direction: column;
  gap: 10px;
}

.social-section .social-icons a {
  width: auto;
  height: auto;
  background: none;
  border-radius: 0;
  justify-content: flex-start;
  padding: 0;
  color: #666;
}

.social-section .social-icons a:hover {
  background: none;
  color: #165DFF;
  transform: none;
}

.contact-form {
  background-color: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #333;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  font-size: 14px;
  transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #165DFF;
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.map-section {
  margin: 60px 0;
}

.map-container {
  width: 100%;
  height: 450px;
}

.transportation-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.transportation-card {
  background-color: white;
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.transportation-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.transportation-icon {
  width: 70px;
  height: 70px;
  background-color: #e6f0ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #165DFF;
  margin: 0 auto 20px;
  transition: all 0.3s ease;
}

.transportation-card:hover .transportation-icon {
  background-color: #165DFF;
  color: white;
}

.transportation-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #333;
}

.transportation-card p {
  color: #666;
  line-height: 1.6;
}

/* ==================== 在线购票页面样式 ==================== */
.ticket-steps {
  display: flex;
  justify-content: space-between;
  max-width: 800px;
  margin: 0 auto 60px;
  position: relative;
}

.ticket-steps::before {
  content: "";
  position: absolute;
  top: 25px;
  left: 10%;
  right: 10%;
  height: 3px;
  background-color: #e0e0e0;
  z-index: 0;
}

.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 50px;
  height: 50px;
  background-color: white;
  border: 3px solid #e0e0e0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  color: #999;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.step-item.active .step-number {
  background-color: #165DFF;
  border-color: #165DFF;
  color: white;
}

.step-content h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #333;
}

.step-content p {
  font-size: 14px;
  color: #666;
  text-align: center;
}

.ticket-show-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ticket-show-item {
  display: flex;
  align-items: center;
  background-color: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  gap: 20px;
}

.ticket-show-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.show-poster {
  width: 120px;
  flex-shrink: 0;
}

.show-poster img {
  width: 100%;
  border-radius: 4px;
}

.show-details {
  flex: 1;
}

.show-details h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #333;
}

.show-type {
  display: inline-block;
  background-color: #e6f7ff;
  color: #1890ff;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 12px;
  margin-bottom: 8px;
}

.show-details p {
  font-size: 14px;
  color: #666;
  margin-bottom: 5px;
}

.show-action {
  flex-shrink: 0;
}

.ticket-notes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.note-item {
  background-color: white;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.note-item h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #333;
  display: flex;
  align-items: center;
  gap: 10px;
}

.note-item h3 i {
  color: #165DFF;
}

.note-item ul {
  padding-left: 20px;
}

.note-item ul li {
  margin-bottom: 8px;
  color: #666;
  line-height: 1.6;
  list-style: disc;
}

/* ==================== 登录注册页面样式 ==================== */
.auth-container {
  max-width: 500px;
  margin: 0 auto;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.auth-tabs {
  display: flex;
}

.auth-tab {
  flex: 1;
  padding: 15px;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  background-color: #f5f7fa;
  border: none;
  transition: all 0.3s ease;
}

.auth-tab.active {
  background-color: white;
  color: #165DFF;
}

.auth-form {
  padding: 40px;
  display: none;
}

.auth-form.active {
  display: block;
}

.auth-form h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
  text-align: center;
  color: #333;
}

.auth-desc {
  text-align: center;
  color: #666;
  margin-bottom: 30px;
}

.auth-form .form-group {
  margin-bottom: 20px;
}

.auth-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #333;
}

.auth-form input {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  font-size: 14px;
  transition: border-color 0.3s ease;
}

.auth-form input:focus {
  outline: none;
  border-color: #165DFF;
}

.form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  font-size: 14px;
}

.form-options a {
  color: #165DFF;
}

.form-options a:hover {
  text-decoration: underline;
}

.remember-me,
.agree-terms {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}

.social-login {
  margin-top: 30px;
  text-align: center;
}

.social-login p {
  margin-bottom: 15px;
  color: #666;
  position: relative;
}

.social-login p::before,
.social-login p::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 30%;
  height: 1px;
  background-color: #e0e0e0;
}

.social-login p::before {
  left: 0;
}

.social-login p::after {
  right: 0;
}

.social-login-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.social-btn {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: white;
  transition: all 0.3s ease;
}

.social-btn:hover {
  transform: translateY(-3px);
}

.social-btn.wechat {
  background-color: #07c160;
}

.social-btn.weibo {
  background-color: #e6162d;
}

.social-btn.qq {
  background-color: #12b7f5;
}

/* ==================== 响应式补充样式 ==================== */
@media (max-width: 992px) {
  .play-detail {
    flex-direction: column;
    align-items: center;
  }
  
  .play-poster {
    width: 100%;
    max-width: 300px;
  }
  
  .about-section,
  .about-section.reverse {
    flex-direction: column;
  }
  
  .about-image {
    width: 100%;
  }
  
  .timeline::before {
    left: 20px;
  }
  
  .timeline-date {
    left: 20px;
    transform: translateX(0);
  }
  
  .timeline-content {
    width: calc(100% - 50px);
    margin-left: 50px !important;
  }
  
  .news-item {
    flex-direction: column;
  }
  
  .news-image {
    width: 100%;
    height: 200px;
  }
  
  .ticket-steps {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }
  
  .ticket-steps::before {
    left: 25px;
    top: 25px;
    bottom: 25px;
    right: auto;
    width: 3px;
    height: auto;
  }
  
  .step-item {
    flex-direction: row;
    align-items: center;
    gap: 20px;
  }
  
  .step-content p {
    text-align: left;
  }
}

@media (max-width: 768px) {
  .page-header h1 {
    font-size: 28px;
  }
  
  .filter-container {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .play-tabs {
    gap: 15px;
    overflow-x: auto;
    padding-bottom: 10px;
  }
  
  .cast-list {
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  }
  
  .schedule-table {
    display: block;
    overflow-x: auto;
  }
  
  .ticket-show-item {
    flex-direction: column;
    text-align: center;
  }
  
  .show-action {
    width: 100%;
  }
  
  .auth-form {
    padding: 30px 20px;
  }
}

@media (max-width: 576px) {
  .page-header {
    padding: 40px 0;
  }
  
  .page-header h1 {
    font-size: 24px;
  }
  
  .play-info h1 {
    font-size: 24px;
  }
  
  .play-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .play-buttons .btn {
    width: 100%;
  }
  
  .timeline-content {
    padding: 15px;
  }
  
  .contact-form {
    padding: 20px;
  }
  
  .transportation-grid {
    grid-template-columns: 1fr;
  }
  
  .ticket-notes {
    grid-template-columns: 1fr;
  }
}
/* 收藏按钮样式 */
#favorite-btn.favorited {
  background-color: #e63946; /* 收藏后红色背景 */
  border-color: #e63946;
  color: white;
  transition: all 0.3s ease;
}

#favorite-btn:not(.favorited):hover {
  background-color: rgba(230, 57, 70, 0.1);
  border-color: #e63946;
  color: #e63946;
}

/* 心跳动画 */
@keyframes heartBeat {
  0% { transform: scale(1); }
  14% { transform: scale(1.3); }
  28% { transform: scale(1); }
  42% { transform: scale(1.3); }
  70% { transform: scale(1); }
}

.heart-beat {
  animation: heartBeat 0.8s ease-in-out;
}
/* 交通地图卡片样式 */
.map-card {
  background-color: #ffffff;      /* 白色背景 */
  border-radius: 12px;           /* 圆角 */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); /* 柔和阴影，增加立体感 */
  padding: 15px;                 /* 图片周围留白 */
  margin: 20px auto;             /* 居中对齐 */
  max-width: 900px;              /* 限制最大宽度，防止在大屏幕上过宽 */
  overflow: hidden;              /* 确保图片不会溢出圆角 */
}

/* 图片内嵌样式 */
.map-card .traffic-img {
  width: 100%;                   /* 宽度填满卡片容器 */
  height: auto;                  /* 高度自动 */
  display: block;                /* 去除底部间隙 */
  border-radius: 8px;            /* 图片内部圆角 */
  transition: transform 0.3s ease; /* 过渡动画 */
}

/* 鼠标悬停时的微动效果 */
.map-card:hover {
  transform: translateY(-5px);   /* 向上轻微浮动 */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15); /* 阴影加深 */
}
/* ==========================================================================
   面包屑导航条样式 (指示页面先后次序)
   ========================================================================== */
.breadcrumb-container {
  background-color: #f4f5f5; /* 浅灰色背景，和上方主导航拉开层级 */
  padding: 12px 0;
  border-bottom: 1px solid #e5e6eb;
}

.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  font-size: 14px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.breadcrumb li {
  display: flex;
  align-items: center;
  color: #4e5969; /* 次要文字颜色 */
}

/* 自动在两个层级之间添加斜杠 "/" 分隔符 */
.breadcrumb li:not(:last-child)::after {
  content: "/";
  margin: 0 10px;
  color: #c9cdd4; /* 分隔符颜色 */
}

/* 可点击的链接样式 */
.breadcrumb li a {
  color: #165DFF; /* 采用跟你项目一致的蓝色主色调 */
  text-decoration: none;
}

.breadcrumb li a:hover {
  text-decoration: underline; /* 悬停时加下划线提示 */
}

/* 当前所在的最后一级（当前页面）灰色显示，不可点击 */
.breadcrumb li.active {
  color: #86909c;
  font-weight: 500;
}