/* 行业资讯页面专属样式 */

/* Banner背景 */
.page35-banner {
  background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 50%, #3b82f6 100%);
  position: relative;
  overflow: hidden;
}

.page35-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('https://images.unsplash.com/photo-1456513080510-7bf3a84b82f8?w=1920&h=400&fit=crop') center/cover;
  opacity: 0.1;
}

.page35-banner .container {
  position: relative;
  z-index: 2;
}

/* 主内容布局：两栏 */
.content-layout {
  display: flex;
  gap: 30px;
  padding: 40px 0;
}

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

.sidebar {
  width: 300px;
  flex-shrink: 0;
}

/* 侧边栏卡片样式 */
.sidebar-card {
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  margin-bottom: 24px;
  overflow: hidden;
  border: 1px solid var(--border-color);
}

.sidebar-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-color);
  position: relative;
  margin: 0;
  background: var(--secondary-color);
}

.sidebar-title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--primary-color);
}

/* 咨询卡片 */
.consult-card .consult-info {
  padding: 20px;
  text-align: center;
}

.consult-desc {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.consult-phone-item {
  font-size: 16px;
  font-weight: 600;
  color: var(--accent-color);
  margin-bottom: 8px;
}

.consult-time {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 16px;
}

.sidebar-btn {
  width: 100%;
  padding: 12px !important;
}

/* 热门资讯列表 */
.hot-news-list {
  padding: 12px 0;
}

.hot-news-list .hot-news-item {
  display: flex;
  gap: 12px;
  padding: 12px 20px;
  transition: background 0.2s ease;
  cursor: pointer;
}

.hot-news-list .hot-news-item:hover {
  background: var(--secondary-color);
}

.hot-news-list .hot-rank {
  width: 22px;
  height: 22px;
  border-radius: 4px;
  background: #e5e7eb;
  color: #666;
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.hot-news-list .hot-news-item:nth-child(1) .hot-rank,
.hot-news-list .hot-news-item:nth-child(2) .hot-rank,
.hot-news-list .hot-news-item:nth-child(3) .hot-rank {
  background: var(--accent-color);
  color: #fff;
}

.hot-news-list .hot-text {
  flex: 1;
  min-width: 0;
}

.hot-news-list .hot-text a {
  display: block;
  font-size: 14px;
  color: var(--text-primary);
  line-height: 1.5;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  transition: color 0.2s ease;
}

.hot-news-list .hot-text a:hover {
  color: var(--primary-color);
}

.hot-news-list .hot-date {
  font-size: 12px;
  color: var(--text-light);
  margin-top: 4px;
}

/* 二维码卡片 */
.qrcode-card {
  text-align: center;
}

.qrcode-card .sidebar-qrcode {
  padding: 20px 0 12px;
  display: flex;
  justify-content: center;
}

.qrcode-card .sidebar-qrcode img {
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 8px;
  background: #fff;
}

.qrcode-tip {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 8px;
}

.wechat-num {
  font-size: 13px;
  color: var(--primary-color);
  padding-bottom: 20px;
  font-weight: 500;
}

/* 响应式适配 */
@media (max-width: 992px) {
  .content-layout {
    flex-direction: column;
  }
  .sidebar {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .content-layout {
    padding: 24px 0;
    gap: 20px;
  }
  .sidebar-card {
    margin-bottom: 16px;
  }
}