/* 团报优惠页面专属样式 */

/* Banner 特殊样式 */
.group-banner {
  background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 50%, #3b82f6 100%);
  position: relative;
  overflow: hidden;
}
.group-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(249,115,22,0.15) 0%, transparent 70%);
  border-radius: 50%;
}
.group-banner::after {
  content: '🎁';
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
  font-size: 120px;
  opacity: 0.15;
}

/* 政策说明区 */
.policy-intro {
  margin: -30px 0 40px;
  position: relative;
  z-index: 10;
}
.policy-banner {
  background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
  color: #fff;
  padding: 30px 40px;
  border-radius: 12px;
  text-align: center;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(249,115,22,0.3);
}
.policy-badge {
  position: absolute;
  top: 15px;
  right: -30px;
  background: #dc2626;
  color: #fff;
  padding: 5px 40px;
  font-size: 12px;
  font-weight: 600;
  transform: rotate(45deg);
}
.policy-banner h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 8px;
}
.policy-banner p {
  font-size: 15px;
  opacity: 0.95;
}

.policy-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.policy-card {
  background: #fff;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  padding: 30px 20px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}
.policy-card:hover {
  border-color: var(--primary-color);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(37,99,235,0.15);
}
.policy-card.highlight {
  border-color: var(--accent-color);
  background: linear-gradient(180deg, #fff7ed 0%, #fff 100%);
}
.policy-card .policy-icon {
  font-size: 48px;
  margin-bottom: 12px;
}
.policy-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 12px;
}
.policy-card .discount {
  font-size: 15px;
  color: #666;
  margin-bottom: 8px;
}
.policy-card .discount span {
  font-size: 36px;
  font-weight: 700;
  color: var(--accent-color);
  margin: 0 4px;
}
.policy-card p {
  font-size: 13px;
  color: #999;
  line-height: 1.5;
}
.hot-tag {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-color);
  color: #fff;
  padding: 4px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

/* 内容布局 */
.content-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 30px;
  margin-bottom: 50px;
}
.list-toolbar .section-title {
  font-size: 20px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--primary-color);
  display: inline-block;
}

/* 侧边栏 */
.sidebar-widget {
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 20px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  border: 1px solid #e5e7eb;
}
.sidebar-widget h4 {
  font-size: 17px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid #f0f0f0;
}
.apply-widget {
  background: linear-gradient(180deg, #eff6ff 0%, #fff 40%);
}
.apply-widget h4 {
  color: var(--primary-color);
  text-align: center;
  font-size: 18px;
}
.apply-widget > p {
  text-align: center;
  font-size: 13px;
  color: #666;
  margin-bottom: 16px;
}
.sidebar-form input,
.sidebar-form select {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
  transition: border-color 0.2s;
}
.sidebar-form input:focus,
.sidebar-form select:focus {
  border-color: var(--primary-color);
}
.btn-block {
  width: 100%;
  padding: 12px;
  font-size: 15px;
}
.form-tip {
  text-align: center;
  font-size: 12px;
  color: #999;
  margin-top: 10px;
}

.contact-widget {
  text-align: center;
}
.contact-widget .hotline {
  font-size: 24px;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 8px;
}
.contact-widget > p {
  font-size: 13px;
  color: #666;
  margin-bottom: 16px;
}
.sidebar-qrcode {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.sidebar-qrcode img {
  width: 110px;
  height: 110px;
  padding: 6px;
  border: 1px solid #eee;
  border-radius: 8px;
}
.sidebar-qrcode p {
  font-size: 13px;
  color: #666;
  text-align: center;
}

.tips-list li {
  padding: 8px 0;
  font-size: 13px;
  color: #666;
  line-height: 1.6;
  padding-left: 20px;
  position: relative;
}
.tips-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

/* 底部CTA */
.bottom-cta {
  background: linear-gradient(135deg, #1e40af 0%, #2563eb 100%);
  border-radius: 16px;
  padding: 50px 40px;
  text-align: center;
  color: #fff;
  margin-bottom: 50px;
  position: relative;
  overflow: hidden;
}
.bottom-cta::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}
.bottom-cta::after {
  content: '';
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 250px;
  height: 250px;
  background: rgba(249,115,22,0.1);
  border-radius: 50%;
}
.cta-content {
  position: relative;
  z-index: 2;
}
.bottom-cta h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 12px;
}
.bottom-cta p {
  font-size: 16px;
  opacity: 0.9;
  margin-bottom: 24px;
}
.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-lg {
  padding: 14px 32px;
  font-size: 16px;
}
.cta-outline {
  border-color: #fff;
  color: #fff;
  background: transparent;
}
.cta-outline:hover {
  background: #fff;
  color: var(--primary-color);
}

/* 响应式适配 */
@media (max-width: 1024px) {
  .content-layout {
    grid-template-columns: 1fr;
  }
  .group-banner::after {
    display: none;
  }
}

@media (max-width: 768px) {
  .policy-cards {
    grid-template-columns: 1fr;
  }
  .policy-banner {
    padding: 24px 20px;
  }
  .policy-banner h2 {
    font-size: 22px;
  }
  .policy-badge {
    display: none;
  }
  .bottom-cta {
    padding: 30px 20px;
  }
  .bottom-cta h2 {
    font-size: 22px;
  }
  .cta-buttons .btn {
    width: 100%;
  }
  .policy-card .discount span {
    font-size: 28px;
  }
}