/* ---------- 会员投稿优惠广告位（期刊详情 / 查重等页面通用） ---------- */
.detailVipAd {
  display: flex;
  align-items: center;
  box-sizing: border-box;
  width: 1200px;
  height: 80px;
  margin: 20px auto 0;
  padding: 0 30px 0 45px;
  border: 1px solid #f7e6cf;
  border-radius: 5px;
  background: url('/res/images/member/ad-bg.png') center/cover no-repeat;
  background-color: #ffedd2;
}
.detailVipAdIcon {
  flex: none;
  width: 67px;
  height: 50px;
  object-fit: contain;
  display: block;
  margin-right: 22px;
}
.detailVipAdInfo {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.detailVipAdTitle {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 36px;
  background: linear-gradient(90deg, #4b2d1f, #99680e);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #4b2d1f;
}
.detailVipAdDesc {
  margin: 0;
  font-size: 16px;
  color: #333;
  line-height: 24px;
}
.detailVipAdBtn {
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-left: auto;
  padding: 12px 22px;
  border-radius: 999px;
  background: #fffdfb;
  color: #4b2d1f;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  cursor: pointer;
  transition: box-shadow 0.2s, transform 0.2s;
}
.detailVipAdBtn::after {
  content: '';
  width: 16px;
  height: 16px;
  background: url('/res/images/member/ad-arrow.png') center/contain no-repeat;
}
.detailVipAdBtn:hover {
  /* 保持原文字色，避免被页面级 a:hover 规则覆盖为白色 */
  color: #4b2d1f;
  box-shadow: 0 8px 18px rgba(205, 132, 6, 0.22);
  transform: translateY(-1px);
}
