.widget .wpo-support-btn {
    display: block;
    padding: 18px 40px;
    background: linear-gradient(to right, #3884f4, #07b4d4);
    font-size: 18px;
    font-family: "Futura PT Demi";
    text-transform: uppercase;
    border-radius: 6px;
    transition: all 0.3s;
}
.widget .wpo-support-btn  a{
    color: #ffffff;
}

/* 果岭智库banner模块 - insights- 前缀 */
.insights-section {
 padding: 60px 20px;
  background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 50%, #0f172a 100%);
  position: relative;
  overflow: hidden;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
} 

/* 背景光晕 */
.insights-bg-glow-1 {
  position: absolute;
  top: 80px;
  left: 25%;
  width: 256px;
  height: 256px;
  background: rgba(59, 130, 246, 0.5);
  border-radius: 50%;
  filter: blur(60px);
  animation: insights-pulse 4s infinite ease-in-out;
  z-index: 0;
}
.insights-bg-glow-2 {
  position: absolute;
  bottom: 80px;
  right: 25%;
  width: 320px;
  height: 320px;
  background: rgba(6, 182, 212, 0.5);
  border-radius: 50%;
  filter: blur(60px);
  animation: insights-pulse 4s infinite ease-in-out 1s;
  z-index: 0;
}
.insights-bg-glow-3 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 384px;
  height: 384px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  filter: blur(60px);
  z-index: 0;
}

@keyframes insights-pulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.1); }
}

.insights-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
  text-align: center;
}

/* 顶部品牌栏 */
.insights-brand-bar {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.insights-brand-icon {
  width: 40px;
  height: 40px;
  color: #60a5fa;
}
.insights-brand-text {
  font-size: 28px;
  font-weight: 600;
  color: #93c5fd;
  letter-spacing: 0.05em;
}

/* 主标题 */
.insights-title {
  font-size: 56px;
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 24px;
  line-height: 1.2;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* 描述文本 */
.insights-desc {
  font-size: 22px;
  color: #d1d5db;
  line-height: 1.8;
  max-width: 900px;
  margin: 0 auto 40px;
}

/* 分类标签组已删除 */

/* 搜索框 */
.insights-search-wrap {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 16px;
  padding: 8px 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.insights-search-wrap:hover {
  border-color: rgba(96, 165, 250, 0.4);
}
.insights-search-icon {
  width: 20px;
  height: 20px;
  color: #9ca3af;
  flex-shrink: 0;
  margin-right: 12px;
}
.insights-search-input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 12px 0;
  font-size: 16px;
  color: #1e293b;
  outline: none;
}
.insights-search-input::placeholder {
  color: #9ca3af;
}
.insights-search-btn {
  padding: 10px 24px;
  background: linear-gradient(135deg, #3b82f6, #06b6d4);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
  margin-left: 12px;
}
.insights-search-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}
.insights-search-btn:active {
  transform: translateY(0);
}

/* 响应式适配 */
@media (max-width: 1024px) {
  .insights-title {
    font-size: 42px;
  }
  .insights-desc {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .insights-section {
    padding: 40px 16px;
    min-height: auto;
  }
  .insights-title {
    font-size: 32px;
  }
  .insights-desc {
    font-size: 16px;
    line-height: 1.7;
  }
  .insights-search-wrap {
    padding: 6px 12px;
  }
  .insights-search-icon {
    width: 18px;
    height: 18px;
    margin-right: 10px;
  }
  .insights-search-input {
    padding: 10px 0;
    font-size: 14px;
  }
  .insights-search-btn {
    padding: 8px 18px;
    font-size: 14px;
    margin-left: 10px;
  }
}
/*=================左右结构=========================*/
/* 全局基础样式（确保Tailwind类正常生效，若项目已引入Tailwind可省略此部分核心重置） */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}
.py-16 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.bg-gray-50 {
  background-color: #f9fafb;
}
.lg\:col-span-3 {
  grid-column: span 3 / span 3;
}
.space-y-16 > * + * {
  margin-top: 4rem;
}

/* 行业纵深模块样式 */
#industry {
  margin-bottom: 4rem;
}
.relative {
  position: relative;
}
.h-64 {
  height: 16rem;
}
.rounded-2xl {
  border-radius: 1rem;
}
.overflow-hidden {
  overflow: hidden;
}
.shadow-lg {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.mb-6 {
  margin-bottom: 1.5rem;
}
.object-cover {
  object-fit: cover;
}
.w-full {
  width: 100%;
}
.h-full {
  height: 100%;
}
.bg-gradient-to-t {
  background-image: linear-gradient(to top, var(--tw-gradient-stops));
}
.from-black\/70 {
  --tw-gradient-from: rgba(0, 0, 0, 0.7);
  --tw-gradient-to: rgba(0, 0, 0, 0);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.via-black\/40 {
  --tw-gradient-stops: var(--tw-gradient-from), rgba(0, 0, 0, 0.4), var(--tw-gradient-to);
}
.absolute {
  position: absolute;
}
.inset-0 {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.p-6 {
  padding: 1.5rem;
}
.flex {
  display: flex;
}
.flex-col {
  flex-direction: column;
}
.justify-end {
  justify-content: flex-end;
}
.items-center {
  align-items: center;
}
.gap-3 {
  gap: 0.75rem;
}
.mb-2 {
  margin-bottom: 0.5rem;
}
.w-12 {
  width: 3rem;
}
.h-12 {
  height: 3rem;
}
.bg-gradient-to-br {
  background-image: linear-gradient(to bottom right, var(--tw-gradient-stops));
}
.from-blue-600 {
  --tw-gradient-from: #2563eb;
  --tw-gradient-to: #3b82f6;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.to-blue-500 {
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.rounded-xl {
  border-radius: 0.75rem;
}
.justify-center {
  justify-content: center;
}
.flex-shrink-0 {
  flex-shrink: 0;
}
.text-white {
  color: #ffffff;
}
.text-2xl {
  font-size: 1.5rem;
  line-height: 2rem;
}
.font-bold {
  font-weight: 700;
}
.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.text-blue-200 {
  color: #bfdbfe;
}
.text-white\/90 {
  color: rgba(255, 255, 255, 0.9);
}
.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* 分类标签网格 */
.grid {
  display: grid;
}
.grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.md\:grid-cols-5 {
  @media (min-width: 768px) {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}
.gap-3 {
  gap: 0.75rem;
}
.from-blue-50 {
  --tw-gradient-from: #eff6ff;
  --tw-gradient-to: #ecfeff;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.to-cyan-50 {
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.hover\:shadow-md:hover {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
.transition-all {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.cursor-pointer {
  cursor: pointer;
}
.group {
  position: relative;
}
.text-gray-900 {
  color: #111827;
}
.group-hover\:text-blue-600:hover {
  color: #2563eb;
}
.text-xs {
  font-size: 0.75rem;
  line-height: 1rem;
}
.text-gray-600 {
  color: #4b5563;
}

/* 文章列表 */
.space-y-4 > * + * {
  margin-top: 1rem;
}
article {
  background-color: #ffffff;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  cursor: pointer;
}
article:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.flex-col {
  flex-direction: column;
}
.md\:flex-row {
  flex-direction: column;
}

@media (min-width: 768px) {
  .md\:flex-row {
    flex-direction: row;
  }
}
.md\:w-1\/3 {
  width: 100%;
}

@media (min-width: 768px) {
  .md\:w-1\/3 {
    width: 33.333333%;
  }
}
.h-40 {
  height: 10rem;
}

.md\:h-auto {
  height: 10rem;
}

@media (min-width: 768px) {
  .md\:h-auto {
    height: auto;
    min-height: 100%;
  }
}
.group-hover\:scale-110:hover {
  transform: scale(1.1);
}
.duration-500 {
  transition-duration: 500ms;
}
.flex-1 {
  flex: 1 1 0%;
}
.p-5 {
  padding: 1.25rem;
}
.gap-2 {
  gap: 0.5rem;
}
.px-2 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.py-0\.5 {
  padding-top: 0.125rem;
  padding-bottom: 0.125rem;
}
.bg-blue-100 {
  background-color: #dbeafe;
}
.text-blue-700 {
  color: #1d4ed8;
}
.font-medium {
  font-weight: 500;
}
.rounded-full {
  border-radius: 9999px;
}
.bg-red-100 {
  background-color: #fee2e2;
}
.text-red-600 {
  color: #dc2626;
}
.text-base {
  font-size: 1rem;
  line-height: 1.5rem;
}
.text-gray-500 {
  color: #6b7280;
}
.mb-3 {
  margin-bottom: 0.75rem;
}
.justify-between {
  justify-content: space-between;
}
.text-gray-400 {
  color: #9ca3af;
}
.gap-1 {
  gap: 0.25rem;
}
.group-hover\:translate-x-1:hover {
  transform: translateX(0.25rem);
}

/* 查看全部按钮 */
.mt-6 {
  margin-top: 1.5rem;
}
.text-center {
  text-align: center;
}
.inline-flex {
  display: inline-flex;
}
.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.py-2\.5 {
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
}
.border-2 {
  border-width: 2px;
}
.border-blue-600 {
  border-color: #2563eb;
}
.hover\:bg-blue-600:hover {
  background-color: #2563eb;
  color: #ffffff;
}

/* 增长实战模块样式（仅差异部分，复用上方通用样式） */
#growth {
  margin-bottom: 4rem;
}
.from-purple-600 {
  --tw-gradient-from: #9333ea;
  --tw-gradient-to: #a855f7;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.to-purple-500 {
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.text-purple-200 {
  color: #e9d5ff;
}
.from-purple-50 {
  --tw-gradient-from: #faf5ff;
  --tw-gradient-to: #fdf2f8;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.to-pink-50 {
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.group-hover\:text-purple-600:hover {
  color: #9333ea;
}
.bg-purple-100 {
  background-color: #f3e8ff;
}
.text-purple-700 {
  color: #7e22ce;
}
.border-purple-600 {
  border-color: #9333ea;
}
.text-purple-600 {
  color: #9333ea;
}
.hover\:bg-purple-600:hover {
  background-color: #9333ea;
  color: #ffffff;
}

/* 侧边栏样式 */
.mobile-sidebar {
  max-width: 480px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* 通用卡片样式 */
.sidebar-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.card-title {
  font-size: 20px;
  font-weight: 700;
  color: #111827;
}

.icon-mail, .icon-flame, .icon-brain, .icon-book {
  width: 28px;
  height: 28px;
  color: #ffffff;
  stroke-width: 2;
  flex-shrink: 0;
}

/* 订阅智库简报 */
.subscribe-card {
  background: linear-gradient(135deg, #2563eb 0%, #0891b2 100%);
  color: #ffffff;
}

.subscribe-card .card-title {
  color: #ffffff;
  font-size: 24px;
}

.subscribe-card .card-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
  margin-bottom: 16px;
}

.email-input {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  color: #ffffff;
  font-size: 16px;
  margin-bottom: 12px;
  outline: none;
}

.email-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.subscribe-btn {
  width: 100%;
  padding: 14px;
  background: #ffffff;
  color: #2563eb;
  border: none;
  border-radius: 12px;
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.subscribe-btn:hover {
  background: #f3f4f6;
}

/* 文章精选 */
.article-card .card-header {
  justify-content: space-between;
}

.article-card .icon-flame {
  color: #2563eb;
}

.tab-group {
  display: flex;
  gap: 4px;
  background: #f3f4f6;
  border-radius: 8px;
  padding: 4px;
}

.tab-item {
  padding: 8px 12px;
  border-radius: 6px;
  border: none;
  background: transparent;
  color: #6b7280;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: all 0.2s ease;
}

.tab-item.active {
  background: #ffffff;
  color: #2563eb;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.tab-icon {
  width: 12px;
  height: 12px;
}

.article-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.article-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.article-item:hover {
  background: #eff6ff;
}

.article-index {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #dbeafe;
  color: #2563eb;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.article-content {
  flex: 1;
  min-width: 0;
}

.article-title {
  font-size: 16px;
  font-weight: 500;
  color: #111827;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.2s ease;
}

.article-item:hover .article-title {
  color: #2563eb;
}

.article-read {
  font-size: 14px;
  color: #9ca3af;
  margin-top: 6px;
}

/* 思想基石 */
.thought-card .icon-brain {
  color: #2563eb;
}

.thought-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.thought-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: 12px;
  background: linear-gradient(90deg, #eff6ff 0%, #f0f9ff 100%);
  text-decoration: none;
  transition: background 0.2s ease;
}

.thought-item:hover {
  background: linear-gradient(90deg, #dbeafe 0%, #e0f2fe 100%);
}

.thought-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.thought-icon svg {
  color: #2563eb;
}

.thought-content {
  flex: 1;
}

.thought-title {
  font-size: 16px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 4px;
}

.thought-desc {
  font-size: 14px;
  color: #6b7280;
}

.thought-arrow {
  width: 16px;
  height: 16px;
  color: #9ca3af;
  transition: all 0.2s ease;
}

.thought-item:hover .thought-arrow {
  color: #2563eb;
  transform: translateX(4px);
}

/* 咨询入口 */
.consult-card {
  display: block;
  background: linear-gradient(90deg, #2563eb 0%, #0891b2 100%);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  color: #ffffff;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.2s ease;
}

.consult-card:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.consult-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 12px;
}

.consult-title {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
}

.consult-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
  margin-bottom: 12px;
}

.consult-action {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 16px;
  font-weight: 600;
}
.consult-action:hover {
  color: rgba(255, 255, 255, 0.8);
}

/* 订阅 */
.subscribe-card {
}
.icon-arrow {
  width: 16px;
  height: 16px;
  transition: transform 0.2s ease;
}

.consult-card:hover .icon-arrow {
  transform: translateX(4px);
}

/* 内容区域和侧边栏的左右布局 */
.insights-layout {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}

.insights-content {
  flex: 6;
  min-width: 0;
}

.insights-sidebar {
  flex: 4;
  min-width: 0;
}

/* 分页控件样式 */
.pagination-wrapper {
  text-align: center;
  margin-top: 40px;
}

.pagination-controls {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.pagination-wrapper .pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 8px;
}

.pagination-wrapper .pagination li {
  display: inline-block;
}

.pagination-wrapper .pagination li a {
  display: flex !important;
  align-items: center;
  justify-content: center;
  min-width: 40px !important;
  height: 40px;
  padding: 0 12px !important;
  border-radius: 4px;
  background-color: #f5f7fa;
  color: #333;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  text-decoration: none;
  white-space: nowrap;
  width: auto !important;
}

.pagination-wrapper .pagination li.active a,
.pagination-wrapper .pagination li a:hover {
  background-color: #3757f7;
  color: #fff;
}

.pagination-wrapper .pagination li.disabled a {
  opacity: 0.5;
  cursor: not-allowed;
}

.pagination-options {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: nowrap;
}

.pagination-input,
.pagination-select {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #666;
}

.page-input {
  width: 60px;
  height: 36px;
  padding: 0 8px;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  text-align: center;
  font-size: 14px;
}

.page-size {
  height: 36px;
  padding: 0 8px;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  font-size: 14px;
  background-color: #fff;
}

@media (max-width: 991px) {
  .insights-layout {
    flex-direction: column;
  }
}