/* 会议页面专用样式 */
.conference-page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 30px 15px 50px;
}

.conference-page-hero {
  text-align: center;
  margin-bottom: 48px;
}

.conference-page-hero h1 {
  font-size: 28px;
  color: #1a2a4a;
  font-weight: 700;
  margin: 0 0 12px;
  line-height: 1.4;
}

.conference-page-hero p {
  font-size: 16px;
  color: #5a6478;
  margin: 0;
  line-height: 1.7;
}

/* 列表页卡片：上图下文，图片完整展示 */
.conference-cards {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.conference-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(30, 77, 183, 0.08);
  border: 1px solid #e8edf5;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.conference-card:hover {
  box-shadow: 0 8px 32px rgba(30, 77, 183, 0.14);
  transform: translateY(-2px);
}

.conference-card--featured {
  border-color: #b8c9eb;
  box-shadow: 0 6px 28px rgba(30, 77, 183, 0.12);
}

.conference-card__image {
  position: relative;
  flex-shrink: 0;
  width: 100%;
  line-height: 0;
  background: #fff;
}

.conference-card__image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.conference-card__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  padding: 0 16px;
  background: #1e4db7;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  border-radius: 16px;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  white-space: nowrap;
  box-sizing: border-box;
}

.conference-card__badge--new {
  background: linear-gradient(135deg, #e63946, #c1121f);
}

.conference-card__body {
  padding: 22px 24px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* 电脑端：保持上图下文，避免左侧底部留白 */
@media (min-width: 769px) {
  .conference-card__body {
    padding: 24px 28px 28px;
  }

  .conference-card__title {
    font-size: 19px;
  }
}

.conference-card__edition {
  font-size: 22px;
  color: #1e4db7;
  font-weight: 700;
  margin: 0 0 10px;
  letter-spacing: 0.3px;
}

.conference-card__title {
  font-size: 18px;
  color: #1a2a4a;
  font-weight: 700;
  line-height: 1.5;
  margin: 0 0 14px;
}

.conference-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 14px;
  color: #5a6478;
}

.conference-card__meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.conference-card__meta svg {
  flex-shrink: 0;
  opacity: 0.7;
}

.conference-card__desc {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.7;
  margin: 0 0 22px;
}

.conference-card__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  background: #1e4db7;
  color: #fff !important;
  text-decoration: none !important;
  font-size: 15px;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 8px;
  transition: background 0.2s ease, transform 0.15s ease;
}

.conference-card__btn:hover {
  background: #143c8f;
  transform: translateX(3px);
}

.conference-card__btn svg {
  transition: transform 0.2s ease;
}

.conference-card__btn:hover svg {
  transform: translateX(4px);
}

/* 详情页 */
.conference-detail {
  max-width: 900px;
  margin: 0 auto;
  padding: 24px 15px 50px;
  text-align: left;
}

.conference-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  clear: both;
  float: none !important;
  background: #f0f4fa;
  color: #1e4db7 !important;
  border: 1px solid #c5d4ef;
  text-decoration: none !important;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 8px;
  margin-bottom: 28px;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
  box-sizing: border-box;
}

.conference-back:hover {
  background: #1e4db7;
  color: #fff !important;
  border-color: #1e4db7;
  text-decoration: none;
  transform: translateX(-2px);
}

.conference-back svg {
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.conference-back:hover svg {
  transform: translateX(-3px);
}

.conference-detail-banner {
  text-align: center;
  margin-bottom: 32px;
}

.conference-detail-banner img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.conference-detail h1 {
  text-align: center;
  float: none !important;
  display: block !important;
  clear: both;
  width: 100%;
  font-size: 24px;
  color: #1a2a4a;
  line-height: 1.5;
  margin: 0 0 24px;
}

.conference-detail h2 {
  font-size: 20px;
  color: #1a2a4a;
  margin: 36px 0 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid #e8edf5;
}

.conference-detail h3 {
  font-size: 17px;
  color: #333;
  margin: 28px 0 12px;
}

.conference-detail h4 {
  font-size: 15px;
  color: #444;
  margin: 20px 0 10px;
}

.conference-detail p {
  font-size: 15px;
  line-height: 1.8;
  color: #444;
  margin: 0 0 12px;
}

.conference-detail .info-block {
  background: #f7f9fc;
  border-left: 4px solid #1e4db7;
  padding: 16px 20px;
  border-radius: 0 8px 8px 0;
  margin-bottom: 24px;
}

.conference-detail .info-block p {
  margin: 0 0 6px;
}

.conference-detail .slogan {
  text-align: center;
  font-size: 22px;
  color: #1e4db7;
  font-weight: 600;
  margin: 32px 0;
}

.conference-detail .qr-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin: 24px 0;
}

.conference-detail .qr-item {
  text-align: center;
}

.conference-detail .qr-item img {
  max-width: 100%;
  max-height: 280px;
  height: auto;
}

.conference-detail .title-section h2 {
  border-bottom: none;
  text-align: left;
  margin-top: 40px;
}

.conference-detail .title-section + div,
.conference-detail .section-content {
  font-size: 15px;
  line-height: 1.8;
  color: #444;
}

.conference-detail .section-content img {
  max-width: 100%;
  height: auto;
}

.conference-detail .video-list a {
  color: #1e4db7;
  word-break: break-all;
}

.conference-detail .video-list a:hover {
  text-decoration: underline;
}

.conference-footer {
  margin-top: 50px;
  text-align: center;
  font-size: 14px;
  color: #666;
  padding-top: 24px;
  border-top: 1px solid #e8edf5;
}

/* 大会回顾（公众号报道） */
.conference-recap {
  margin-bottom: 40px;
}

.conference-recap__title {
  text-align: center;
  font-size: 24px;
  color: #1a2a4a;
  line-height: 1.5;
  margin: 0 0 20px;
  float: none !important;
  display: block !important;
}

.conference-recap__lead {
  font-size: 16px;
  font-weight: 600;
  color: #1e4db7;
  text-indent: 2em;
}

.conference-recap p {
  text-indent: 2em;
  font-size: 15px;
  line-height: 1.9;
  color: #444;
  margin: 0 0 14px;
}

.conference-recap__source {
  text-align: center;
  text-indent: 0 !important;
  font-size: 13px;
  color: #888;
  margin-top: 28px;
}

.conference-recap__source a {
  color: #1e4db7;
}

.recap-section-title {
  font-size: 18px;
  color: #1a2a4a;
  font-weight: 700;
  margin: 36px 0 16px;
  padding-left: 12px;
  border-left: 4px solid #1e4db7;
}

.recap-figure {
  margin: 20px auto 32px;
  max-width: 100%;
  text-align: center;
}

.recap-figure img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.recap-figure--banner img {
  box-shadow: 0 4px 20px rgba(30, 77, 183, 0.12);
}

.recap-figure figcaption {
  margin-top: 10px;
  font-size: 14px;
  color: #5a6478;
  line-height: 1.6;
  padding: 0 10px;
}

.conference-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 48px 0 40px;
  color: #888;
  font-size: 14px;
}

.conference-divider::before,
.conference-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, #c5d4ef, transparent);
}

.conference-divider span {
  white-space: nowrap;
  padding: 6px 16px;
  background: #f0f4fa;
  border-radius: 20px;
  color: #1e4db7;
  font-weight: 500;
}

.conference-notice__title {
  text-align: center;
  float: none !important;
  display: block !important;
  clear: both;
  width: 100%;
  font-size: 22px;
  color: #1a2a4a;
  line-height: 1.5;
  margin: 0 0 24px;
}

@media (max-width: 768px) {
  .conference-card__body {
    padding: 18px 18px 22px;
  }

  .conference-card__edition {
    font-size: 20px;
  }

  .conference-card__title {
    font-size: 16px;
  }

  .conference-card__meta span {
    font-size: 13px;
  }

  .conference-card__btn {
    width: 100%;
    justify-content: center;
  }

  .conference-page-hero h1 {
    font-size: 22px;
  }

  .conference-detail h1 {
    font-size: 20px;
  }
}
