.luxiang-cover-wrap {
  position: relative;
  max-width: 720px;
  margin: 0 auto 24px;
  border-radius: 10px;
  overflow: hidden;
  background: #111;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.luxiang-cover-wrap img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.luxiang-cover-wrap.is-placeholder {
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.luxiang-cover-play {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: rgba(0, 0, 0, 0.35);
  text-decoration: none;
  transition: background 0.2s ease;
}

.luxiang-cover-play:hover {
  background: rgba(0, 0, 0, 0.5);
}

.luxiang-cover-play .play-btn {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s ease;
}

.luxiang-cover-play .play-btn::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin-left: 6px;
  border-style: solid;
  border-width: 14px 0 14px 24px;
  border-color: transparent transparent transparent #e74c3c;
}

.luxiang-cover-play:hover .play-btn {
  transform: scale(1.08);
}

.luxiang-cover-play .play-btn .iconfont {
  display: none;
}

.luxiang-cover-play .play-label {
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  padding: 0 16px;
  line-height: 1.4;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.luxiang-summary {
  margin: 0 0 20px;
  padding: 14px 16px;
  background: #f7f8fa;
  border-radius: 8px;
  color: #444;
  font-size: 14px;
  line-height: 1.7;
}

.luxiang-source-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.luxiang-source-list li {
  margin-bottom: 10px;
}

.luxiang-source-list a {
  display: block;
  padding: 12px 16px;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  color: #333;
  text-decoration: none;
  font-size: 14px;
  line-height: 1.5;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.luxiang-source-list a:hover {
  border-color: #e74c3c;
  box-shadow: 0 2px 8px rgba(231, 76, 60, 0.12);
  color: #e74c3c;
}

.luxiang-source-list .source-type {
  display: inline-block;
  margin-right: 8px;
  padding: 2px 8px;
  background: #e74c3c;
  color: #fff;
  border-radius: 4px;
  font-size: 12px;
  vertical-align: middle;
}

.luxiang-source-list .source-type.is-jijin {
  background: #3498db;
}
