/* 全局样式 */
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

:root {
  --primary-color: #1a1a2e;
  --secondary-color: #16213e;
  --accent-color: #e94560;
  --text-color: #333;
  --text-light: #666;
  --bg-light: #f8f9fa;
  --white: #ffffff;
  --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  --gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  --shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.15);
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
}

/* 关于我们页面背景 */
body.about-page {
  position: relative;
}

body.about-page::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../兴娱影视/点进去顶端图片.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  z-index: -1;
}

body.about-page::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.85);
  z-index: -1;
}

/* 项目页面背景 - 与关于我们页面风格一致 */
body.project-page {
  position: relative;
}

body.project-page::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../兴娱影视/点进去顶端图片.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  z-index: -1;
}

body.project-page::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.85);
  z-index: -1;
}

/* 招募页面背景 - 与关于我们页面风格一致 */
body.recruitment-page {
  position: relative;
}

body.recruitment-page::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../兴娱影视/点进去顶端图片.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  z-index: -1;
}

body.recruitment-page::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.85);
  z-index: -1;
}

/* 新闻中心页面背景 - 与招募页面风格一致 */
body.news-page {
  position: relative;
}

body.news-page::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../兴娱影视/点进去顶端图片.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  z-index: -1;
}

body.news-page::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.85);
  z-index: -1;
}

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

/* 导航栏 */
.navbar {
  background: rgba(26, 26, 46, 0.95);
  -webkit-backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  padding: 1rem 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-brand {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--white);
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-menu a {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
  position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--accent-color);
}

.nav-menu a.active::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent-color);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.nav-toggle span {
  width: 25px;
  height: 3px;
  background: var(--white);
  transition: all 0.3s;
}

/* 轮播图 */
.hero {
  margin-top: 70px;
  position: relative;
  min-height: 80vh;
  height: auto;
  overflow: hidden;
  background: rgb(26, 26, 46);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-background {
  position: absolute;
  top: -20%;
  left: -20%;
  width: 140%;
  height: 140%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: blur(50px) brightness(0.6) saturate(1.3);
  -webkit-filter: blur(50px) brightness(0.6) saturate(1.3);
  z-index: 0;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  pointer-events: none;
}

.hero.has-background .hero-background {
  opacity: 1;
}

.carousel-container {
  position: relative;
  width: 100%;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.carousel-slides {
  position: relative;
  width: 100%;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  background: transparent;
  z-index: 2;
  cursor: pointer;
}

.carousel-slide[data-href] {
  cursor: pointer;
}

.carousel-slide[data-href]:hover .carousel-content {
  transform: translate(-50%, -50%) scale(1.05);
  transition: transform 0.3s ease;
}

.carousel-slide.active {
  opacity: 1;
}

.carousel-slide img {
  width: 100%;
  height: auto;
  max-height: 80vh;
  -webkit-object-fit: contain;
  object-fit: contain;
  object-position: center;
  display: block;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
  -webkit-filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}

.carousel-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: var(--white);
  z-index: 10;
  pointer-events: auto;
  cursor: pointer;
}

.carousel-content h1 {
  font-size: 4rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
  animation: fadeInUp 1s ease-out;
}

.carousel-content p {
  font-size: 1.5rem;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
  animation: fadeInUp 1s ease-out 0.3s both;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.3);
  border: none;
  color: var(--white);
  font-size: 3rem;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 20;
  transition: all 0.3s;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.carousel-btn:hover {
  background: rgba(255, 255, 255, 0.5);
  transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev {
  left: 30px;
}

.carousel-btn.next {
  right: 30px;
}

.carousel-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 20;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s;
}

.dot.active,
.dot:hover {
  background: var(--white);
  transform: scale(1.2);
}

/* 页面标题 */
.page-header {
  margin-top: 70px;
  padding: 0;
  background: var(--gradient-1);
  text-align: center;
  color: var(--white);
  position: relative;
  min-height: 400px;
  height: auto;
}


/* 关于我们页面的标题背景 */
body.about-page .page-header {
  background-image: url('../《运河谣》/背景1.png');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

body.about-page .page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 0;
}

body.about-page .page-header .container {
  position: relative;
  z-index: 1;
}

/* 项目页面的标题背景 - 与关于我们页面风格一致 */
body.project-page .page-header {
  background-image: url('../《运河谣》/背景2.png');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

body.project-page .page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 0;
}

body.project-page .page-header .container {
  position: relative;
  z-index: 1;
}

/* 招募页面的标题背景 - 与关于我们页面风格一致 */
body.recruitment-page .page-header {
  background-image: url('../《运河谣》/背景1.png');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

body.recruitment-page .page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 0;
}

body.recruitment-page .page-header .container {
  position: relative;
  z-index: 1;
}

/* 新闻中心页面的标题背景 - 与招募页面风格一致 */
body.news-page .page-header {
  background-image: url('../《运河谣》/背景1.png');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

body.news-page .page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 0;
}

body.news-page .page-header .container {
  position: relative;
  z-index: 1;
}

.page-header h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

.page-header p {
  font-size: 1.3rem;
  opacity: 0.9;
}

/* 按钮 */
.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: var(--gradient-1);
  color: var(--white);
  box-shadow: var(--shadow);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.btn-secondary {
  background: var(--accent-color);
  color: var(--white);
  box-shadow: var(--shadow);
}

.btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

/* 章节标题 */
.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--primary-color);
  position: relative;
  padding-bottom: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 0;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--gradient-1);
  border-radius: 2px;
}

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

/* 介绍区域 */
.intro-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #1a1a2e 0%, #2d3561 50%, #667eea 100%);
  position: relative;
  overflow: hidden;
}

.intro-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 50%, rgba(102, 126, 234, 0.3) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(26, 26, 46, 0.4) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.intro-section .container {
  position: relative;
  z-index: 1;
}

.intro-section .section-title {
  color: var(--white);
}

.intro-section .intro-text p {
  color: rgba(255, 255, 255, 0.9);
}

.intro-section .btn-primary {
  background: rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.intro-section .btn-primary:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
}

.intro-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.intro-text p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.8;
}

.intro-image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: var(--shadow);
}

.intro-image .video-wrapper {
  border-radius: 15px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

/* 项目亮点 */
.project-highlight {
  padding: 80px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #e94560 100%);
  position: relative;
  overflow: hidden;
}

.project-highlight::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 30%, rgba(233, 69, 96, 0.3) 0%, transparent 50%),
              radial-gradient(circle at 70% 70%, rgba(102, 126, 234, 0.3) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.project-highlight .container {
  position: relative;
  z-index: 1;
}

.project-highlight .section-title {
  color: var(--white);
}

.project-highlight .project-card {
  background: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.project-highlight .btn-primary {
  background: rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
}

.project-highlight .btn-primary:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.project-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: all 0.3s;
}

.project-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.card-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.project-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.project-card p {
  color: var(--text-light);
  line-height: 1.8;
}

/* 招募区域 */
.recruitment-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #16213e 0%, #0f3460 50%, #00f2fe 100%);
  position: relative;
  overflow: hidden;
}

.recruitment-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 20%, rgba(0, 242, 254, 0.2) 0%, transparent 50%),
              radial-gradient(circle at 50% 80%, rgba(22, 33, 62, 0.4) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.recruitment-section .container {
  position: relative;
  z-index: 1;
}

.recruitment-section .recruitment-banner {
  background: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.recruitment-section .banner-content h2 {
  color: var(--primary-color);
}

.recruitment-section .banner-content p {
  color: var(--text-light);
}

.recruitment-section .banner-content .highlight {
  color: #00f2fe;
}

.recruitment-section .btn-secondary {
  background: linear-gradient(135deg, #00f2fe 0%, #0f3460 100%);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.recruitment-section .btn-secondary:hover {
  background: linear-gradient(135deg, #0f3460 0%, #00f2fe 100%);
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 242, 254, 0.3);
}

.recruitment-banner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  background: var(--white);
  padding: 3rem;
  border-radius: 15px;
  box-shadow: var(--shadow);
}

.banner-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.banner-content p {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.banner-content .highlight {
  color: var(--accent-color);
  font-weight: 600;
  font-size: 1.3rem;
}

.banner-image img {
  width: 100%;
  border-radius: 15px;
}

/* 关于我们页面 */
.about-section {
  padding: 80px 0;
  background: var(--white);
}

.about-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 -2.5rem;
}

.about-content > * {
  margin: 0 2.5rem;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.about-text {
  -webkit-box-flex: 2;
  -ms-flex: 2;
  flex: 2;
  width: 0;
  min-width: 0;
}

.about-image {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  width: 0;
  min-width: 0;
}

/* Grid fallback for modern browsers */
@supports (display: grid) {
  .about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 5rem;
    margin: 0;
  }

  .about-content > * {
    margin: 0;
  }

  .about-text,
  .about-image {
    width: auto;
    min-width: auto;
  }
}

.about-text .section-title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
  text-align: center;
  display: inline-block;
  width: 100%;
}

.about-text .section-subtitle {
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--text-light);
  margin-left: 0.75rem;
  display: inline-block;
  vertical-align: baseline;
  white-space: nowrap;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
}

.about-text p {
  margin-bottom: 1.5rem;
  color: var(--text-light);
  line-height: 1.8;
  font-size: 1.1rem;
}

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

.about-image img {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: var(--shadow);
  -webkit-object-fit: contain;
  object-fit: contain;
}

/* 视频区域 */
.video-section {
  padding: 80px 0;
  background: var(--bg-light);
}

.video-container {
  max-width: 900px;
  margin: 0 auto;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
}

.video-wrapper {
  position: relative;
  width: 100%;
  background: #000;
  aspect-ratio: 16 / 9;
}

.video-player {
  width: 100%;
  height: 100%;
  display: block;
  -webkit-object-fit: contain;
  object-fit: contain;
  background: #000;
}

.video-poster-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.3);
  color: var(--white);
  z-index: 15;
  cursor: pointer;
  transition: all 0.3s;
}

.video-poster-overlay:hover {
  background: rgba(0, 0, 0, 0.5);
}

.video-poster-overlay.hidden {
  display: none;
}

.play-button {
  cursor: pointer;
  transition: transform 0.3s;
  margin-bottom: 1rem;
}

.play-button:hover {
  transform: scale(1.1);
}

.play-button:active {
  transform: scale(0.95);
}

.play-hint {
  font-size: 1.1rem;
  font-weight: 500;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.video-loading,
.video-error {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.8);
  color: var(--white);
  z-index: 10;
}

.video-error.show {
  display: flex;
}

.video-loading.show {
  display: flex;
}

.video-loading p,
.video-error p {
  margin-top: 1rem;
  font-size: 1.1rem;
}

.error-detail {
  font-size: 0.9rem;
  opacity: 0.8;
  margin-top: 0.5rem;
}

.loading-progress {
  width: 200px;
  height: 4px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
  margin-top: 1rem;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  background: var(--accent-color);
  width: 0%;
  transition: width 0.3s;
  border-radius: 2px;
}

.loading-spinner {
  width: 50px;
  height: 50px;
  border: 4px solid rgba(255, 255, 255, 0.3);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

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

.error-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.retry-btn {
  margin-top: 1.5rem;
  padding: 10px 25px;
  background: var(--accent-color);
  color: var(--white);
  border: none;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.retry-btn:hover {
  background: #d6364f;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(233, 69, 96, 0.4);
}

/* 视频播放器样式优化 */
.video-player::-webkit-media-controls-panel {
  background-color: rgba(0, 0, 0, 0.7);
}

.video-player::-webkit-media-controls-play-button {
  background-color: var(--accent-color);
  border-radius: 50%;
}

.video-player::-webkit-media-controls-current-time-display,
.video-player::-webkit-media-controls-time-remaining-display {
  color: var(--white);
}

/* 核心理念 */
.values-section {
  padding: 80px 0;
  background: var(--white);
}

.values-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
}

.values-text {
  width: 100%;
}

.values-text .section-title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
  text-align: center;
  display: inline-block;
  width: 100%;
}

.values-text .section-subtitle {
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--text-light);
  margin-left: 0.75rem;
  display: inline-block;
  vertical-align: baseline;
  white-space: nowrap;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
}

.values-list {
  margin-top: 3rem;
}

.value-item {
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

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

.value-item h3 {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.value-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.value-details p {
  margin-bottom: 0;
  color: var(--text-light);
  line-height: 1.8;
  font-size: 1.1rem;
}

.value-details p strong {
  color: var(--primary-color);
  font-weight: 600;
}

.section-subtitle {
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--text-light);
  margin-left: 0.75rem;
  display: inline-block;
  vertical-align: baseline;
  white-space: nowrap;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
}


/* 社会责任 */
.responsibility-section {
  padding: 80px 0;
  background: var(--white);
}

.responsibility-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
}

.responsibility-text {
  width: 100%;
}

.responsibility-text .section-title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
  text-align: center;
  display: inline-block;
  width: 100%;
}

.responsibility-text .section-subtitle {
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--text-light);
  margin-left: 0.75rem;
  display: inline-block;
  vertical-align: baseline;
  white-space: nowrap;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
}

.responsibility-list {
  margin-top: 3rem;
}

.responsibility-item {
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

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

.responsibility-item h3 {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.responsibility-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.responsibility-details p {
  margin-bottom: 0;
  color: var(--text-light);
  line-height: 1.8;
  font-size: 1.1rem;
}

/* 联系方式 */
.contact-section {
  padding: 80px 0;
  background: var(--bg-light);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.contact-card {
  background: var(--bg-light);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.contact-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.contact-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.contact-card p {
  color: var(--text-light);
}

/* 项目详情页面 */
.project-detail-section {
  padding: 80px 0;
  background: var(--white);
}

.project-hero {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  max-width: 1200px;
  margin: 0 auto;
}

.project-image-wrapper {
  margin-right: 1.5rem;
}

.project-info-wrapper {
  margin-left: 1.5rem;
}

/* Modern browsers with gap support */
@supports (gap: 3rem) {
  .project-hero {
    gap: 3rem;
  }

  .project-image-wrapper {
    margin-right: 0;
  }

  .project-info-wrapper {
    margin-left: 0;
  }
}

.project-image-wrapper {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  min-height: 0;
}

.project-hero-image {
  width: 100%;
  height: 100%;
  -webkit-object-fit: contain;
  object-fit: contain;
  object-position: center;
  border-radius: 15px;
  box-shadow: var(--shadow);
  display: block;
}

.project-info-wrapper {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  min-height: 0;
}

.project-info {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  background: var(--bg-light);
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: var(--shadow);
}

.project-info h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
  text-align: left;
  font-weight: 600;
}

.project-info-content {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.project-info-content p {
  margin-bottom: 1.5rem;
  color: var(--text-light);
  line-height: 1.9;
  font-size: 1.1rem;
  text-align: left;
  text-indent: 2em;
}

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

.project-info-section {
  padding: 80px 0;
  background: var(--bg-light);
}

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

.info-item {
  background: var(--white);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.info-label {
  font-weight: 600;
  color: var(--primary-color);
  font-size: 1.1rem;
}

.info-value {
  color: var(--text-light);
  font-size: 1rem;
}

.project-gallery {
  padding: 80px 0;
  background: var(--white);
}

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

.gallery-item {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s;
}

.gallery-item:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-hover);
}

.gallery-item img {
  width: 100%;
  height: 300px;
  -webkit-object-fit: cover;
  object-fit: cover;
}

.cta-section {
  padding: 80px 0;
  background: var(--gradient-1);
  text-align: center;
  color: var(--white);
}

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

/* 招募页面 */
.recruitment-hero {
  padding: 40px 0;
  background: var(--white);
}

.recruitment-banner-large {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.recruitment-banner-large img {
  width: 100%;
  height: 400px;
  -webkit-object-fit: cover;
  object-fit: cover;
}

.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.7));
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-overlay h2 {
  color: var(--white);
  font-size: 3rem;
  text-align: center;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.recruitment-info {
  padding: 80px 0;
  background: var(--bg-light);
}

.info-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.info-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: all 0.3s;
}

.info-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.card-icon-large {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

.info-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.info-card p {
  color: var(--text-light);
  line-height: 1.8;
}

.characters-section {
  padding: 80px 0;
  background: var(--white);
}

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

.character-card {
  background: var(--bg-light);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: var(--shadow);
  transition: all 0.3s;
}

.character-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.character-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.character-age {
  color: var(--accent-color);
  font-weight: 600;
  margin-bottom: 1rem;
}

.character-card p {
  color: var(--text-light);
  line-height: 1.8;
}

.character-note {
  text-align: center;
  margin-top: 2rem;
  padding: 1.5rem;
  background: var(--gradient-1);
  border-radius: 15px;
  color: var(--white);
}

.character-note p {
  font-size: 1.2rem;
  font-weight: 600;
}

.selection-info {
  padding: 80px 0;
  background: var(--bg-light);
}

.selection-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3rem;
}

.selection-details .detail-item {
  background: var(--white);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: var(--shadow);
  margin-bottom: 2rem;
}

.detail-item h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.detail-item ul {
  list-style: none;
  padding-left: 0;
}

.detail-item li {
  margin-bottom: 0.8rem;
  color: var(--text-light);
  line-height: 1.8;
  padding-left: 1.5rem;
  position: relative;
}

.detail-item li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-weight: bold;
}

.selection-contact {
  background: var(--white);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: var(--shadow);
}

.selection-contact h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-method h4 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.contact-location {
  margin-bottom: 1.5rem;
}

.contact-location h5 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--accent-color);
}

.contact-location p {
  color: var(--text-light);
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.qr-code {
  text-align: center;
}

.qr-code img {
  max-width: 200px;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.wechat-section {
  padding: 80px 0;
  background: var(--white);
}

.wechat-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  background: var(--bg-light);
  padding: 3rem;
  border-radius: 15px;
  box-shadow: var(--shadow);
}

.wechat-text {
  text-align: center;
}

.wechat-text h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.wechat-text p {
  color: var(--text-light);
  font-size: 1.1rem;
}

.wechat-qr img {
  max-width: 200px;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

/* 新闻中心页面 */
.news-hero {
  padding: 40px 0;
  background: var(--white);
}

.news-banner-large {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.news-banner-large img {
  width: 100%;
  height: 400px;
  -webkit-object-fit: cover;
  object-fit: cover;
}

.news-content {
  padding: 80px 0;
  background: var(--bg-light);
}

.news-article {
  background: var(--white);
  border-radius: 15px;
  box-shadow: var(--shadow);
  padding: 3rem;
  max-width: 900px;
  margin: 0 auto;
}

.news-header {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--bg-light);
}

.news-title {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.news-meta {
  display: flex;
  gap: 2rem;
  color: var(--text-light);
  font-size: 0.95rem;
}

.news-date,
.news-category {
  position: relative;
  padding-left: 1.5rem;
}

.news-date::before {
  content: '📅';
  position: absolute;
  left: 0;
}

.news-category::before {
  content: '🏷️';
  position: absolute;
  left: 0;
}

.news-body {
  line-height: 1.8;
}

.news-intro {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: var(--bg-light);
  border-left: 4px solid var(--accent-color);
  border-radius: 5px;
}

.news-image-wrapper {
  margin: 2.5rem 0;
  text-align: center;
}

.news-image {
  width: 100%;
  max-width: 700px;
  height: auto;
  border-radius: 15px;
  box-shadow: var(--shadow);
  margin-bottom: 1rem;
}

.image-caption {
  color: var(--text-light);
  font-size: 0.95rem;
  font-style: italic;
  margin-top: 0.5rem;
}

.news-text {
  color: var(--text-color);
}

.news-text h2 {
  font-size: 1.8rem;
  color: var(--primary-color);
  margin: 2rem 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--bg-light);
}

.news-text p {
  margin-bottom: 1.5rem;
  color: var(--text-light);
  line-height: 1.8;
  font-size: 1.05rem;
}

.news-footer {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 2px solid var(--bg-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.news-source {
  color: var(--text-light);
  font-size: 0.95rem;
}

.project-info-list {
  background: var(--bg-light);
  padding: 1.5rem;
  border-radius: 10px;
  margin: 1.5rem 0;
}

.project-info-list p {
  margin-bottom: 0.8rem;
  padding-left: 1rem;
  position: relative;
}

.project-info-list p::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-weight: bold;
}

.character-list {
  margin: 1.5rem 0;
}

.character-list p {
  margin-bottom: 1rem;
  padding: 1rem;
  background: var(--bg-light);
  border-left: 3px solid var(--accent-color);
  border-radius: 5px;
}

.character-note-text {
  text-align: center;
  font-weight: 600;
  color: var(--accent-color);
  font-size: 1.1rem;
  margin: 1.5rem 0;
  padding: 1rem;
  background: var(--bg-light);
  border-radius: 10px;
}

.recruitment-requirements {
  margin: 1.5rem 0;
}

.recruitment-requirements p {
  margin-bottom: 1rem;
  padding-left: 1rem;
  position: relative;
}

.recruitment-requirements p::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-weight: bold;
}

.registration-info {
  background: var(--bg-light);
  padding: 1.5rem;
  border-radius: 10px;
  margin: 1.5rem 0;
}

.registration-info p {
  margin-bottom: 0.8rem;
}

/* 页脚 */
.footer {
  background: var(--primary-color);
  color: var(--white);
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--accent-color);
}

.footer-section p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.5rem;
  line-height: 1.8;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
}

/* 动画 */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 响应式设计 */
@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background: var(--primary-color);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    padding: 2rem 0;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-toggle {
    display: flex;
  }

  .hero {
    min-height: 50vh;
  }

  .carousel-container {
    min-height: 50vh;
  }

  .carousel-slides {
    min-height: 50vh;
  }

  .carousel-slide {
    min-height: 50vh;
  }

  .carousel-slide img {
    max-height: 50vh;
  }

  .carousel-content h1 {
    font-size: 2rem;
  }

  .carousel-content p {
    font-size: 1rem;
  }

  .carousel-btn {
    width: 40px;
    height: 40px;
    font-size: 2rem;
  }

  .carousel-btn.prev {
    left: 10px;
  }

  .carousel-btn.next {
    right: 10px;
  }

  .intro-content,
  .about-content,
  .recruitment-banner,
  .selection-content {
    grid-template-columns: 1fr;
  }

  .news-article {
    padding: 1.5rem;
  }

  .news-title {
    font-size: 1.8rem;
  }

  .news-intro {
    font-size: 1.05rem;
    padding: 1rem;
  }

  .news-text h2 {
    font-size: 1.4rem;
  }

  .news-text p {
    font-size: 1rem;
  }

  .news-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .news-banner-large img {
    height: 250px;
  }

  .project-hero {
    flex-direction: column;
  }

  .project-image-wrapper,
  .project-info-wrapper {
    width: 100%;
  }

  .project-hero-image {
    height: auto;
    max-height: 500px;
    -webkit-object-fit: contain;
  object-fit: contain;
  }

  .project-info {
    padding: 2rem;
  }

  .project-info h2 {
    font-size: 1.75rem;
  }

  .project-info-content p {
    font-size: 1rem;
    text-indent: 0;
  }

  .page-header h1 {
    font-size: 2rem;
  }

  .section-title {
    font-size: 2rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .section-subtitle {
    display: block;
    font-size: 1rem;
    margin-left: 0;
    margin-top: 0.5rem;
    white-space: normal;
  }

  .about-text .section-title {
    font-size: 2rem;
  }

  .about-text .section-subtitle {
    display: block;
    font-size: 1rem;
    margin-left: 0;
    margin-top: 0.5rem;
  }

  .values-text .section-title,
  .responsibility-text .section-title {
    font-size: 2rem;
  }

  .values-text .section-subtitle,
  .responsibility-text .section-subtitle {
    display: block;
    font-size: 1rem;
    margin-left: 0;
    margin-top: 0.5rem;
  }

  .value-item,
  .responsibility-item {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
  }

  .value-item h3,
  .responsibility-item h3 {
    font-size: 1.3rem;
  }

  .value-details p,
  .responsibility-details p {
    font-size: 1rem;
  }

  .value-point,
  .responsibility-point {
    font-size: 1rem;
  }

  .project-grid,
  .characters-grid,
  .info-grid {
    grid-template-columns: 1fr;
  }

  .wechat-content {
    flex-direction: column;
  }

  /* 移动端视频优化 */
  .video-wrapper {
    aspect-ratio: 16 / 9;
  }

  .video-player {
    width: 100%;
    height: auto;
    max-height: 100%;
  }

  .video-loading p,
  .video-error p {
    font-size: 0.95rem;
    padding: 0 20px;
    text-align: center;
  }

  .error-icon {
    font-size: 2rem;
  }

  .loading-spinner {
    width: 40px;
    height: 40px;
    border-width: 3px;
  }
}

/* 新闻中心区域 */
.news-center-section {
  padding: 80px 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.news-center-header {
  margin-bottom: 3rem;
}

.news-center-title {
  display: flex;
  align-items: baseline;
  gap: 0.8rem;
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--primary-color);
  margin: 0;
  flex-wrap: wrap;
}

.news-brand {
  font-size: 2.2rem;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
  font-style: italic;
}

.news-english {
  font-size: 1.8rem;
  color: var(--accent-color);
  font-weight: 700;
  letter-spacing: 3px;
  font-family: 'Arial', sans-serif;
}

.news-chinese {
  font-size: 1.8rem;
  color: var(--text-color);
  font-weight: 500;
}

.news-center-content {
  position: relative;
  z-index: 2;
}

.news-cards-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

.news-card {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s;
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.news-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.news-card-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
  background: var(--bg-light);
}

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

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

.news-card-info {
  padding: 1.5rem;
}

.news-card-date {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 0.8rem;
  font-weight: 500;
}

.news-card-title {
  font-size: 1.2rem;
  color: var(--primary-color);
  line-height: 1.6;
  margin: 0;
  font-weight: 600;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.news-card:hover .news-card-title {
  color: var(--accent-color);
}

.news-center-footer {
  margin-top: 2rem;
}

.btn-more-news {
  display: inline-block;
  padding: 12px 40px;
  background: var(--accent-color);
  color: var(--white);
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s;
  box-shadow: var(--shadow);
}

.btn-more-news:hover {
  background: #d6364f;
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.news-center-decoration {
  position: absolute;
  right: -150px;
  top: 0;
  width: 400px;
  height: 100%;
  background: radial-gradient(circle, var(--accent-color) 0%, transparent 70%);
  opacity: 0.08;
  z-index: 1;
  pointer-events: none;
}

/* 新闻中心响应式设计 */
@media (max-width: 768px) {
  .news-center-title {
    font-size: 1.8rem;
    flex-wrap: wrap;
  }

  .news-brand {
    font-size: 1.8rem;
  }

  .news-english,
  .news-chinese {
    font-size: 1.5rem;
  }

  .news-cards-wrapper {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .news-card-image {
    height: 200px;
  }

  .news-card-title {
    font-size: 1.1rem;
  }

  .news-center-decoration {
    display: none;
  }
}
