/* ============================================================
 * resources.css
 * 上海禹亮信息科技有限公司 - 资源中心 / 行业洞察 / 技术干货 共用样式
 * 设计语言对齐 service.css / contact.css / news.css —— 青蓝高亮 + 现代渐变
 * ============================================================ */

#resources_page {
  --rsc-bg: #ffffff;
  --rsc-bg-2: #f8fafc;
  --rsc-bg-3: #f1f5f9;
  --rsc-surface: #ffffff;
  --rsc-border: #e2e8f0;
  --rsc-border-strong: rgba(0,212,255,0.4);
  --rsc-text: #1e293b;
  --rsc-text-2: #334155;
  --rsc-text-3: #475569;
  --rsc-text-4: #94a3b8;

  /* 行业洞察 - 青蓝主色 */
  --rsc-insights: #00d4ff;
  --rsc-insights-2: #0ea5e9;
  --rsc-insights-soft: rgba(0,212,255,0.08);

  /* 技术干货 - 紫色辅色（区分行业洞察）*/
  --rsc-tech: #8b5cf6;
  --rsc-tech-2: #6d28d9;
  --rsc-tech-soft: rgba(139,92,246,0.08);

  /* 通用强调色（保持与全站一致）*/
  --rsc-accent: #00d4ff;
  --rsc-accent-2: #0ea5e9;
  --rsc-accent-soft: rgba(0,212,255,0.08);

  --rsc-radius: 12px;
  --rsc-radius-lg: 16px;
  --rsc-shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.05);
  --rsc-shadow-md: 0 4px 16px rgba(15, 23, 42, 0.08);
  --rsc-shadow-lg: 0 12px 32px rgba(15, 23, 42, 0.10);
  --rsc-shadow-glow: 0 8px 28px rgba(0, 212, 255, 0.16);

  background: var(--rsc-bg);
  color: var(--rsc-text);
  font-family: -apple-system, BlinkMacSystemFont, "PingFang SC",
               "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.7;
  letter-spacing: 0.01em;
}

#resources_page .containe {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* 通用 eyebrow */
#resources_page .svc_eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.25em;
  color: var(--rsc-accent);
  font-weight: 600;
  margin-bottom: 14px;
  padding: 6px 14px;
  background: var(--rsc-accent-soft);
  border-radius: 4px;
}

/* 通用 svc_head */
#resources_page .svc_head {
  text-align: center;
  margin-bottom: 48px;
}
#resources_page .svc_head h2 {
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 700;
  margin: 0 0 12px;
  color: var(--rsc-text);
  letter-spacing: -0.01em;
}
#resources_page .svc_head p {
  font-size: 15.5px;
  color: var(--rsc-text-3);
  max-width: 720px;
  margin: 0 auto;
}


/* ============================================================
 * 汇总页 Section 1: 引子
 * ============================================================ */
#resources_page .rsc_intro {
  padding: 80px 0 60px;
  background: linear-gradient(180deg, var(--rsc-bg) 0%, var(--rsc-bg-2) 100%);
  border-bottom: 1px solid var(--rsc-border);
}
#resources_page .rsc_intro_inner {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}
#resources_page .rsc_intro_inner h1 {
  font-size: clamp(30px, 4.5vw, 46px);
  font-weight: 700;
  margin: 0 0 24px;
  color: var(--rsc-text);
  line-height: 1.3;
  letter-spacing: -0.01em;
}
#resources_page .rsc_intro_inner p {
  font-size: 16.5px;
  color: var(--rsc-text-3);
  max-width: 760px;
  margin: 0 auto;
  line-height: 1.85;
}


/* ============================================================
 * 汇总页 Section 2: 两个子栏目大卡片
 * ============================================================ */
#resources_page .rsc_nav {
  padding: 70px 0 70px;
  background: var(--rsc-bg);
}
#resources_page .rsc_nav_grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

#resources_page .rsc_nav_card {
  position: relative;
  display: block;
  padding: 48px 44px 44px;
  border-radius: var(--rsc-radius-lg);
  text-decoration: none;
  color: var(--rsc-text);
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.4s ease,
              border-color 0.4s ease;
  border: 1px solid var(--rsc-border);
}
#resources_page .rsc_nav_card.rsc_card_insights {
  background: linear-gradient(135deg, #ffffff 0%, rgba(0,212,255,0.04) 100%);
  color: var(--rsc-insights-2);
}
#resources_page .rsc_nav_card.rsc_card_tech {
  background: linear-gradient(135deg, #ffffff 0%, rgba(139,92,246,0.04) 100%);
  color: var(--rsc-tech-2);
}
#resources_page .rsc_nav_card:hover {
  transform: translateY(-6px);
  box-shadow: var(--rsc-shadow-lg);
}
#resources_page .rsc_nav_card.rsc_card_insights:hover {
  border-color: var(--rsc-border-strong);
}
#resources_page .rsc_nav_card.rsc_card_tech:hover {
  border-color: rgba(139,92,246,0.4);
}

/* 卡片右上角装饰 */
#resources_page .rsc_nav_decor {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 240px;
  height: 240px;
  pointer-events: none;
  opacity: 0.6;
  transition: opacity 0.4s ease, transform 0.4s ease;
}
#resources_page .rsc_nav_decor svg {
  width: 100%;
  height: 100%;
}
#resources_page .rsc_nav_card:hover .rsc_nav_decor {
  opacity: 0.85;
  transform: scale(1.08);
}

#resources_page .rsc_nav_inner {
  position: relative;
  z-index: 1;
  max-width: 70%;
}

#resources_page .rsc_nav_eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.25em;
  font-weight: 600;
  margin-bottom: 16px;
  padding: 6px 14px;
  border-radius: 4px;
}
#resources_page .rsc_card_insights .rsc_nav_eyebrow {
  color: var(--rsc-insights-2);
  background: var(--rsc-insights-soft);
}
#resources_page .rsc_card_tech .rsc_nav_eyebrow {
  color: var(--rsc-tech-2);
  background: var(--rsc-tech-soft);
}

#resources_page .rsc_nav_title {
  font-size: 32px;
  font-weight: 700;
  margin: 0 0 16px;
  color: var(--rsc-text);
  letter-spacing: -0.01em;
  line-height: 1.3;
}
#resources_page .rsc_nav_desc {
  font-size: 15px;
  color: var(--rsc-text-3);
  line-height: 1.75;
  margin: 0 0 24px;
}

/* 关键词标签 */
#resources_page .rsc_nav_topics {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
#resources_page .rsc_nav_topics li {
  display: inline-block;
  padding: 4px 12px;
  font-size: 12.5px;
  background: var(--rsc-bg-2);
  border: 1px solid var(--rsc-border);
  border-radius: 999px;
  color: var(--rsc-text-3);
}

/* CTA */
#resources_page .rsc_nav_more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 0;
  font-size: 14.5px;
  font-weight: 600;
  border-bottom: 1.5px solid currentColor;
  transition: gap 0.25s ease;
}
#resources_page .rsc_card_insights .rsc_nav_more {
  color: var(--rsc-insights-2);
}
#resources_page .rsc_card_tech .rsc_nav_more {
  color: var(--rsc-tech-2);
}
#resources_page .rsc_nav_more svg {
  width: 16px;
  height: 16px;
  transition: transform 0.25s ease;
}
#resources_page .rsc_nav_card:hover .rsc_nav_more {
  gap: 10px;
}
#resources_page .rsc_nav_card:hover .rsc_nav_more svg {
  transform: translateX(2px);
}


/* ============================================================
 * 汇总页 Section 3: 最新内容预览
 * ============================================================ */
#resources_page .rsc_latest {
  padding: 70px 0 80px;
  background: linear-gradient(180deg, var(--rsc-bg-2) 0%, var(--rsc-bg-3) 100%);
  border-top: 1px solid var(--rsc-border);
}
#resources_page .rsc_latest_grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
#resources_page .rsc_latest_col {
  background: var(--rsc-surface);
  border: 1px solid var(--rsc-border);
  border-radius: var(--rsc-radius-lg);
  padding: 28px 28px 24px;
  box-shadow: var(--rsc-shadow-sm);
}

#resources_page .rsc_latest_head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--rsc-border);
}
#resources_page .rsc_latest_tag {
  display: inline-block;
  padding: 4px 12px;
  font-size: 12.5px;
  font-weight: 600;
  border-radius: 999px;
  letter-spacing: 0.02em;
}
#resources_page .rsc_latest_tag.insights {
  background: var(--rsc-insights-soft);
  color: var(--rsc-insights-2);
  border: 1px solid rgba(0,212,255,0.2);
}
#resources_page .rsc_latest_tag.tech {
  background: var(--rsc-tech-soft);
  color: var(--rsc-tech-2);
  border: 1px solid rgba(139,92,246,0.2);
}
#resources_page .rsc_latest_more {
  font-size: 13px;
  color: var(--rsc-text-3);
  text-decoration: none;
  transition: color 0.2s ease;
}
#resources_page .rsc_latest_more:hover {
  color: var(--rsc-accent);
}

#resources_page .rsc_latest_list {
  list-style: none;
  margin: 0;
  padding: 0;
}
#resources_page .rsc_latest_list li {
  border-bottom: 1px dashed var(--rsc-border);
}
#resources_page .rsc_latest_list li:last-child {
  border-bottom: 0;
}
#resources_page .rsc_latest_list li a {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 14px 0;
  text-decoration: none;
  color: inherit;
  transition: padding-left 0.25s ease;
}
#resources_page .rsc_latest_list li a:hover {
  padding-left: 6px;
}
#resources_page .rsc_latest_list .latest_date {
  font-size: 12.5px;
  color: var(--rsc-text-4);
  flex-shrink: 0;
  width: 80px;
  font-variant-numeric: tabular-nums;
  padding-top: 1px;
}
#resources_page .rsc_latest_list .latest_title {
  font-size: 14px;
  color: var(--rsc-text-2);
  line-height: 1.6;
  flex: 1;
  min-width: 0;
  transition: color 0.25s ease;
}
#resources_page .rsc_latest_list li a:hover .latest_title {
  color: var(--rsc-accent);
}
#resources_page .rsc_latest_list .latest_empty {
  padding: 28px 0;
  text-align: center;
  font-size: 13.5px;
  color: var(--rsc-text-4);
}


/* ============================================================
 * 列表页（行业洞察 / 技术干货）共用样式
 * ============================================================ */

/* 列表页背景 */
#resources_page.rsc_listpage {
  background: var(--rsc-bg-2);
  padding-bottom: 80px;
}

/* 面包屑 */
#resources_page .rsc_crumb {
  background: var(--rsc-bg);
  border-bottom: 1px solid var(--rsc-border);
  padding: 18px 0;
  font-size: 13.5px;
}
#resources_page .rsc_crumb a {
  color: var(--rsc-text-3);
  text-decoration: none;
  transition: color 0.2s ease;
}
#resources_page .rsc_crumb a:hover {
  color: var(--rsc-accent);
}
#resources_page .rsc_crumb .sep {
  margin: 0 10px;
  color: var(--rsc-text-4);
}
#resources_page .rsc_crumb .current {
  color: var(--rsc-text);
  font-weight: 500;
}

/* 列表页布局 */
#resources_page .rsc_main {
  padding: 48px 0 0;
}
#resources_page .rsc_layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 36px;
  align-items: flex-start;
}

#resources_page .rsc_content {
  background: var(--rsc-surface);
  border: 1px solid var(--rsc-border);
  border-radius: var(--rsc-radius-lg);
  padding: 40px 40px 32px;
  box-shadow: var(--rsc-shadow-sm);
}

/* 列表页 - section head */
#resources_page .rsc_section_head {
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--rsc-border);
}
#resources_page .rsc_section_title {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  margin: 0 0 8px;
  color: var(--rsc-text);
  letter-spacing: -0.01em;
}
#resources_page .rsc_section_desc {
  font-size: 14.5px;
  color: var(--rsc-text-3);
  margin: 0;
}

/* 技术干货页 eyebrow 用紫色 */
#resources_page.rsc_listpage_tech .svc_eyebrow {
  color: var(--rsc-tech-2);
  background: var(--rsc-tech-soft);
}


/* ============ 列表 item ============ */
#resources_page .rsc_list {
  list-style: none;
  margin: 0;
  padding: 0;
}
#resources_page .rsc_item {
  border-bottom: 1px solid var(--rsc-border);
  transition: background 0.25s ease;
}
#resources_page .rsc_item:last-child {
  border-bottom: 0;
}
#resources_page .rsc_item:hover {
  background: var(--rsc-bg-2);
}

#resources_page .rsc_item_link {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 28px;
  padding: 24px 0;
  text-decoration: none;
  color: inherit;
}

#resources_page .rsc_item_thumb {
  width: 220px;
  height: 140px;
  border-radius: var(--rsc-radius);
  overflow: hidden;
  background: var(--rsc-bg-3);
  position: relative;
}
#resources_page .rsc_item_thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
#resources_page .rsc_item:hover .rsc_item_thumb img {
  transform: scale(1.06);
}
#resources_page .rsc_thumb_placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rsc-text-4);
}
#resources_page .rsc_thumb_placeholder svg {
  width: 50%;
  height: 50%;
}

#resources_page .rsc_item_body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 0;
}

#resources_page .rsc_item_meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
  font-size: 13px;
  color: var(--rsc-text-4);
}
#resources_page .rsc_item_date {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
#resources_page .rsc_item_date i.iconfont {
  font-size: 13px;
}
#resources_page .rsc_item_tag {
  display: inline-block;
  padding: 2px 10px;
  font-size: 12px;
  border-radius: 999px;
  font-weight: 500;
}
#resources_page .rsc_item_tag.insights {
  color: var(--rsc-insights-2);
  background: var(--rsc-insights-soft);
}
#resources_page .rsc_item_tag.tech {
  color: var(--rsc-tech-2);
  background: var(--rsc-tech-soft);
}

#resources_page .rsc_item_title {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 8px;
  color: var(--rsc-text);
  line-height: 1.5;
  letter-spacing: -0.005em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.25s ease;
}
#resources_page .rsc_item:hover .rsc_item_title {
  color: var(--rsc-accent);
}
#resources_page.rsc_listpage_tech .rsc_item:hover .rsc_item_title {
  color: var(--rsc-tech-2);
}

#resources_page .rsc_item_desc {
  font-size: 14px;
  color: var(--rsc-text-3);
  line-height: 1.7;
  margin: 0 0 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

#resources_page .rsc_item_more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--rsc-accent);
  transition: gap 0.25s ease;
}
#resources_page.rsc_listpage_tech .rsc_item_more {
  color: var(--rsc-tech-2);
}
#resources_page .rsc_item_more svg {
  width: 14px;
  height: 14px;
  transition: transform 0.25s ease;
}
#resources_page .rsc_item:hover .rsc_item_more {
  gap: 10px;
}


/* ============ 分页 ============ */
#resources_page .rsc_pagination {
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--rsc-border);
  text-align: center;
}
#resources_page .rsc_pagination .page {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: center;
}
#resources_page .rsc_pagination a,
#resources_page .rsc_pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 12px;
  font-size: 14px;
  color: var(--rsc-text-2);
  background: var(--rsc-surface);
  border: 1px solid var(--rsc-border);
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s ease;
}
#resources_page .rsc_pagination a:hover {
  color: var(--rsc-accent);
  border-color: var(--rsc-border-strong);
}
#resources_page .rsc_pagination .pageinfo,
#resources_page .rsc_pagination strong,
#resources_page .rsc_pagination .current {
  background: linear-gradient(135deg, var(--rsc-accent) 0%, var(--rsc-accent-2) 100%);
  color: #ffffff;
  border-color: transparent;
}


/* ============ 右侧侧边栏 ============ */
#resources_page .rsc_sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: sticky;
  top: 80px;
}

#resources_page .rsc_widget {
  background: var(--rsc-surface);
  border: 1px solid var(--rsc-border);
  border-radius: var(--rsc-radius);
  padding: 24px 22px;
  box-shadow: var(--rsc-shadow-sm);
}
#resources_page .rsc_widget_head {
  display: flex;
  align-items: center;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--rsc-border);
}
#resources_page .rsc_widget_head h4 {
  font-size: 16px;
  font-weight: 700;
  margin: 0;
  color: var(--rsc-text);
  position: relative;
  padding-left: 12px;
}
#resources_page .rsc_widget_head h4::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 16px;
  background: linear-gradient(180deg, var(--rsc-accent) 0%, var(--rsc-accent-2) 100%);
  border-radius: 2px;
}

/* 侧边栏 - 资源中心导航 */
#resources_page .rsc_widget_nav {
  list-style: none;
  margin: 0;
  padding: 0;
}
#resources_page .rsc_widget_nav li {
  border-bottom: 1px solid var(--rsc-border);
}
#resources_page .rsc_widget_nav li:last-child {
  border-bottom: 0;
}
#resources_page .rsc_widget_nav li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 4px;
  font-size: 14.5px;
  color: var(--rsc-text-2);
  text-decoration: none;
  transition: all 0.25s ease;
}
#resources_page .rsc_widget_nav li a .arr {
  font-style: normal;
  color: var(--rsc-text-4);
  font-size: 14px;
  transition: transform 0.25s ease, color 0.25s ease;
}
#resources_page .rsc_widget_nav li a:hover {
  color: var(--rsc-accent);
  padding-left: 8px;
}
#resources_page .rsc_widget_nav li a:hover .arr {
  color: var(--rsc-accent);
  transform: translateX(4px);
}
#resources_page .rsc_widget_nav li.active a {
  color: var(--rsc-accent);
  font-weight: 600;
}
#resources_page .rsc_widget_nav li.active a .arr {
  color: var(--rsc-accent);
}
/* 技术干货页：active 项用紫色 */
#resources_page.rsc_listpage_tech .rsc_widget_nav li.active a {
  color: var(--rsc-tech-2);
}
#resources_page.rsc_listpage_tech .rsc_widget_nav li.active a .arr {
  color: var(--rsc-tech-2);
}
#resources_page.rsc_listpage_tech .rsc_widget_nav li a:hover {
  color: var(--rsc-tech-2);
}
#resources_page.rsc_listpage_tech .rsc_widget_nav li a:hover .arr {
  color: var(--rsc-tech-2);
}

/* 侧边栏 - 精选 */
#resources_page .rsc_widget_hot {
  list-style: none;
  margin: 0;
  padding: 0;
}
#resources_page .rsc_widget_hot li {
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px dashed var(--rsc-border);
}
#resources_page .rsc_widget_hot li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}
#resources_page .rsc_widget_hot li a {
  text-decoration: none;
  color: inherit;
  display: block;
  transition: transform 0.25s ease;
}
#resources_page .rsc_widget_hot li a:hover {
  transform: translateX(2px);
}
#resources_page .rsc_widget_hot h5 {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--rsc-text);
  margin: 0 0 6px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.25s ease;
}
#resources_page .rsc_widget_hot li a:hover h5 {
  color: var(--rsc-accent);
}
#resources_page .rsc_widget_hot .hot_date {
  font-size: 12px;
  color: var(--rsc-text-4);
  font-variant-numeric: tabular-nums;
}
#resources_page .rsc_widget_hot .hot_empty {
  padding: 16px 0;
  text-align: center;
  font-size: 13px;
  color: var(--rsc-text-4);
  border-bottom: 0;
}

/* 侧边栏 - 联系咨询 CTA */
#resources_page .rsc_widget_cta {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  border-color: transparent;
  color: #ffffff;
  position: relative;
  overflow: hidden;
  border-radius: var(--rsc-radius);
}
#resources_page .rsc_widget_cta::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -40%;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(0,212,255,0.22) 0%, rgba(0,212,255,0) 60%);
  pointer-events: none;
  z-index: 0;
}
#resources_page .rsc_widget_cta .rsc_cta_eyebrow {
  position: relative;
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.25em;
  color: var(--rsc-accent);
  font-weight: 600;
  margin-bottom: 12px;
  padding: 4px 10px;
  background: rgba(0,212,255,0.12);
  border-radius: 4px;
}
#resources_page .rsc_widget_cta h4 {
  position: relative;
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 10px;
  color: #ffffff;
}
#resources_page .rsc_widget_cta p {
  position: relative;
  font-size: 13.5px;
  color: rgba(255,255,255,0.72);
  margin: 0 0 18px;
  line-height: 1.7;
}
#resources_page .rsc_cta_btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px 20px;
  background: linear-gradient(135deg, var(--rsc-accent) 0%, var(--rsc-accent-2) 100%);
  color: #ffffff;
  border-radius: 8px;
  font-size: 14.5px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 212, 255, 0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-sizing: border-box;
}
#resources_page .rsc_cta_btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 212, 255, 0.32);
}
#resources_page .rsc_cta_btn i.iconfont {
  font-size: 16px;
}


/* ============================================================
 * 响应式
 * ============================================================ */

/* 平板 */
@media (max-width: 1024px) {
  #resources_page .rsc_nav_grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  #resources_page .rsc_nav_card {
    padding: 36px 32px 32px;
  }
  #resources_page .rsc_nav_inner {
    max-width: 100%;
  }
  #resources_page .rsc_nav_decor {
    width: 180px;
    height: 180px;
    opacity: 0.3;
  }

  #resources_page .rsc_latest_grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* 列表页两栏改单栏 */
  #resources_page .rsc_layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  #resources_page .rsc_sidebar {
    position: static;
  }
  #resources_page .rsc_content {
    padding: 32px 28px 28px;
  }
}

/* 移动端 */
@media (max-width: 768px) {
  #resources_page .rsc_intro {
    padding: 56px 0 40px;
  }
  #resources_page .rsc_intro_inner h1 {
    font-size: 26px;
  }
  #resources_page .rsc_intro_inner p {
    font-size: 14.5px;
  }
  #resources_page .rsc_intro_inner p br {
    display: none;
  }

  #resources_page .rsc_nav {
    padding: 48px 0;
  }
  #resources_page .rsc_nav_card {
    padding: 32px 24px 28px;
  }
  #resources_page .rsc_nav_title {
    font-size: 26px;
  }
  #resources_page .rsc_nav_decor {
    width: 140px;
    height: 140px;
  }

  #resources_page .rsc_latest {
    padding: 48px 0 56px;
  }
  #resources_page .svc_head {
    margin-bottom: 32px;
  }
  #resources_page .rsc_latest_col {
    padding: 22px 22px 18px;
  }
  #resources_page .rsc_latest_list .latest_date {
    width: 70px;
    font-size: 12px;
  }
  #resources_page .rsc_latest_list .latest_title {
    font-size: 13.5px;
  }

  /* 列表页移动端 */
  #resources_page.rsc_listpage {
    padding-bottom: 56px;
  }
  #resources_page .rsc_main {
    padding: 32px 0 0;
  }
  #resources_page .rsc_content {
    padding: 24px 20px 24px;
    border-radius: var(--rsc-radius);
  }
  #resources_page .rsc_section_head {
    margin-bottom: 24px;
    padding-bottom: 20px;
  }

  /* 列表 item 移动端图文上下堆叠 */
  #resources_page .rsc_item_link {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 20px 0;
  }
  #resources_page .rsc_item_thumb {
    width: 100%;
    height: 200px;
  }
  #resources_page .rsc_item_title {
    font-size: 16px;
  }

  #resources_page .rsc_widget {
    padding: 20px 18px;
  }
}

@media (max-width: 480px) {
  #resources_page .rsc_intro_inner h1 {
    font-size: 24px;
  }
  #resources_page .rsc_pagination a,
  #resources_page .rsc_pagination span {
    min-width: 34px;
    height: 34px;
    padding: 0 10px;
    font-size: 13px;
  }
}
