/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: Oct 31 2025 | 08:14:18 */
/* 分隔线样式 */
hr.divider-premium {
  border: none;
  border-top: 1px solid #ccc;
  margin: 40px 0;
  opacity: 0.5;
}

/* 会员 CTA 模块 */
.premium-cta {
  text-align: center;
  background: #f8f9fb;
  border: 1px solid #e0e4ea;
  border-radius: 8px;
  padding: 40px 20px;
  margin: 40px 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.premium-cta .cta-text {
  font-size: 18px;
  font-weight: 600;
  color: #222;
  margin-bottom: 20px;
}

.premium-cta .cta-button {
  display: inline-block;
  background: #0055A5; /* Bloomberg 深蓝 */
  color: white;
  font-weight: 500;
  padding: 12px 30px;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.premium-cta .cta-button:hover {
  background: #003E7E;
  transform: translateY(-2px);
}

/* 会员内容区 */
.premium-content {
  background: #ffffff;
  border-left: 4px solid #0055A5;
  padding: 20px 25px;
  line-height: 1.8;
}