/* 城市详情页面样式 - 深蓝+橙色主题设计 */

/* ===== 基础样式重置 ===== */
* {
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: #1f2937;
  margin: 0;
  padding: 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* ===== 英雄区域样式 ===== */
.hero-section {
  background: #1e40af;
  color: #ffffff;
  padding: 4rem 0;
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.hero-section h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 10;
}

.hero-section p {
  font-size: 1.25rem;
  color: #e0e7ff;
  margin-bottom: 2rem;
  font-weight: 300;
  position: relative;
  z-index: 10;
}

@media (min-width: 768px) {
  .hero-section h1 {
    font-size: 4rem;
  }
  .hero-section p {
    font-size: 1.5rem;
  }
}

/* ===== 导航标签样式 ===== */
.nav-tabs {
  background: #ffffff;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid #e5e7eb;
}

.nav-tabs .flex {
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.nav-tabs .flex::-webkit-scrollbar {
  display: none;
}

.nav-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #6b7280;
  font-weight: 500;
  min-width: 120px;
  position: relative;
  white-space: nowrap;
}

.nav-tab::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: #1e40af;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.nav-tab:hover {
  color: #1e40af;
  background-color: #f8fafc;
}

.nav-tab.active {
  color: #1e40af;
  font-weight: 600;
}

.nav-tab.active::after {
  transform: scaleX(1);
}

.nav-tab .icon {
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}

.nav-tab .text {
  font-size: 0.875rem;
}

@media (max-width: 768px) {
  .nav-tab {
    min-width: 100px;
    padding: 0.75rem 1rem;
  }
  .nav-tab .icon {
    font-size: 1.25rem;
  }
  .nav-tab .text {
    font-size: 0.75rem;
  }
}

/* ===== 内容区域样式 ===== */
.content-sections {
  background: #f8fafc;
  /* min-height: 100vh; */
}

.content-section {
  display: none;
  animation: fadeIn 0.5s ease-in-out;
}

.content-section.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e40af;
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: #1e40af;
  border-radius: 2px;
}

/* ===== 卡片样式 ===== */
.info-card {
  background: #ffffff;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  border: 1px solid #e5e7eb;
}

.info-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  border-color: #1e40af;
}

.card-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1e40af;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* ===== 网格布局 ===== */
.grid {
  display: grid;
}

.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.gap-6 {
  gap: 1.5rem;
}

.gap-8 {
  gap: 2rem;
}

@media (min-width: 1024px) {
  .lg\\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 768px) {
  .md\\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* ===== 信息项样式 ===== */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.info-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid #f3f4f6;
}

.info-item:last-child {
  border-bottom: none;
}

.info-item .label {
  font-weight: 500;
  color: #6b7280;
}

.info-item .value {
  font-weight: 600;
  color: #1f2937;
}

/* ===== 统计数据样式 ===== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
}

.stat-item {
  text-align: center;
  padding: 1.5rem;
  background: #f8fafc;
  border-radius: 0.75rem;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
}

.stat-item:hover {
  border-color: #1e40af;
  transform: translateY(-1px);
}

.stat-value {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.875rem;
  color: #6b7280;
  font-weight: 500;
}

/* ===== 标签样式 ===== */
.tags-container {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.tag {
  background: #1e40af;
  color: #ffffff;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 500;
}

/* ===== 排名样式 ===== */
.ranking-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.ranking-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: #f8fafc;
  border-radius: 0.75rem;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
}

.ranking-item:hover {
  background: #fff7ed;
  border-color: #f97316;
  transform: translateY(-1px);
}

.ranking-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
}

.ranking-info {
  flex: 1;
}

.ranking-value {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.ranking-label {
  font-size: 0.75rem;
  color: #6b7280;
  font-weight: 500;
}

@media (max-width: 768px) {
  .ranking-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 0.75rem;
  }
  
  .ranking-item {
    padding: 0.75rem;
    gap: 0.5rem;
  }
  
  .ranking-icon {
    font-size: 1rem;
  }
  
  .ranking-value {
    font-size: 0.875rem;
  }
  
  .ranking-label {
    font-size: 0.7rem;
  }
}

/* ===== 排行榜入口样式 ===== */
.rankings-entrance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.ranking-entrance-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: #f8fafc;
  border-radius: 0.75rem;
  border: 1px solid #e5e7eb;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

.ranking-entrance-item:hover {
  background: #fff7ed;
  border-color: #f97316;
  transform: translateY(-1px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  color: inherit;
}

.entrance-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.entrance-content {
  flex: 1;
}

.entrance-content h4 {
  font-size: 0.875rem;
  font-weight: 600;
  color: #1e40af;
  margin: 0 0 0.25rem 0;
}

.entrance-content p {
  font-size: 0.75rem;
  color: #6b7280;
  margin: 0;
  line-height: 1.3;
}

@media (max-width: 768px) {
  .rankings-entrance-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 0.75rem;
  }
  
  .ranking-entrance-item {
    padding: 0.75rem;
    gap: 0.5rem;
  }
  
  .entrance-icon {
    font-size: 1.25rem;
  }
  
  .entrance-content h4 {
    font-size: 0.8rem;
  }
  
  .entrance-content p {
    font-size: 0.7rem;
  }
}

/* ===== 排行榜导航样式 ===== */
.rankings-nav {
  margin-bottom: 2rem;
}

.ranking-nav-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  text-decoration: none;
  color: #374151;
  font-weight: 500;
  transition: all 0.3s ease;
}

.ranking-nav-item:hover {
  background: #1e40af;
  border-color: #1e40af;
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  text-decoration: none;
}

.ranking-nav-item .nav-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
}

.ranking-nav-item span {
  font-size: 0.875rem;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .ranking-nav-item {
    padding: 0.5rem 0.75rem;
    gap: 0.375rem;
  }
  
  .ranking-nav-item .nav-icon {
    font-size: 1rem;
  }
  
  .ranking-nav-item span {
    font-size: 0.8rem;
  }
}

/* ===== 快速导航样式 ===== */
.quick-nav-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.quick-nav-item {
  background: #ffffff;
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid #e5e7eb;
}

.quick-nav-item:hover {
  border-color: #1e40af;
  transform: translateY(-2px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.nav-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.quick-nav-item h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1e40af;
  margin-bottom: 0.5rem;
}

.quick-nav-item p {
  color: #6b7280;
  font-size: 0.875rem;
}

/* ===== 图表容器样式 ===== */
.chart-container {
  position: relative;
  height: 300px;
  margin: 1rem 0;
  background: #f8fafc;
  border-radius: 0.5rem;
  padding: 1rem;
  border: 1px solid #e5e7eb;
}

/* ===== 图例样式 ===== */
.industry-legend,
.age-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
  justify-content: center;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
}

.legend-color {
  width: 1rem;
  height: 1rem;
  border-radius: 0.25rem;
}

/* ===== 财政数据样式 ===== */
.fiscal-item {
  text-align: center;
  padding: 2rem;
  background: #f8fafc;
  border-radius: 1rem;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
}

.fiscal-item:hover {
  border-color: #1e40af;
  transform: translateY(-1px);
}

.fiscal-value {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.fiscal-label {
  font-size: 1rem;
  color: #6b7280;
  font-weight: 500;
}

/* ===== 人口变化样式 ===== */
.rate-item {
  text-align: center;
  padding: 2rem;
  background: #f8fafc;
  border-radius: 1rem;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
}

.rate-item:hover {
  border-color: #1e40af;
  transform: translateY(-1px);
}

.rate-value {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.rate-label {
  font-size: 1rem;
  color: #6b7280;
  font-weight: 500;
}

/* ===== 气候和历史样式 ===== */
.climate-info {
  margin-bottom: 1.5rem;
}

.climate-desc {
  font-size: 1rem;
  color: #4b5563;
  line-height: 1.6;
  padding: 1rem;
  background: #f8fafc;
  border-radius: 0.5rem;
  border-left: 4px solid #f97316;
}

.resources-section {
  margin-top: 1.5rem;
}

.resources-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1e40af;
  margin-bottom: 1rem;
}

.resources-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.resource-tag {
  background: #e0e7ff;
  color: #1e40af;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 500;
}

.history-content {
  padding: 1.5rem;
  background: #f8fafc;
  border-radius: 0.75rem;
  border-left: 4px solid #1e40af;
}

.history-content p {
  color: #4b5563;
  line-height: 1.7;
  margin: 0;
}

/* ===== 文化遗产样式 ===== */
.heritage-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.heritage-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: #f8fafc;
  border-radius: 0.5rem;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
}

.heritage-item:hover {
  background: #f8fafc;
  border-color: #1e40af;
}

.heritage-icon {
  font-size: 1.25rem;
}

.heritage-name {
  font-weight: 500;
  color: #1f2937;
}

/* ===== 交通设施样式 ===== */
.transport-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1rem;
}

.transport-item {
  text-align: center;
  padding: 1.5rem 1rem;
  background: #f8fafc;
  border-radius: 0.75rem;
  border: 2px solid #e5e7eb;
  transition: all 0.3s ease;
}

.transport-item:hover {
  border-color: #f97316;
  background: #fff7ed;
  transform: translateY(-2px);
}

.transport-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.transport-info {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.transport-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e40af;
  margin-bottom: 0.25rem;
}

.transport-label {
  font-size: 0.75rem;
  color: #6b7280;
  font-weight: 500;
}

/* ===== 服务设施样式 ===== */
.service-grid,
.public-service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1rem;
}

.service-item {
  text-align: center;
  padding: 1.5rem 1rem;
  background: #f8fafc;
  border-radius: 0.75rem;
  border: 2px solid #e5e7eb;
  transition: all 0.3s ease;
}

.service-item:hover {
  border-color: #f97316;
  background: #fff7ed;
  transform: translateY(-2px);
}

.service-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.service-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e40af;
  margin-bottom: 0.25rem;
}

.service-label {
  font-size: 0.75rem;
  color: #6b7280;
  font-weight: 500;
}

/* ===== 项目列表样式 ===== */
.projects-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.project-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: #f8fafc;
  border-radius: 0.5rem;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
}

.project-item:hover {
  background: #fff7ed;
  border-color: #f97316;
}

.project-icon {
  font-size: 1.25rem;
}

.project-name {
  font-weight: 500;
  color: #1f2937;
}

/* ===== 旅游数据样式 ===== */
.tourism-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
}

.attractions-list,
.specialties-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.attraction-item,
.specialty-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: #f8fafc;
  border-radius: 0.5rem;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
}

.attraction-item:hover,
.specialty-item:hover {
  background: #fff7ed;
  border-color: #f97316;
}

.attraction-icon,
.specialty-icon {
  font-size: 1.25rem;
}

.attraction-name,
.specialty-name {
  font-weight: 500;
  color: #1f2937;
}

/* ===== 响应式设计 ===== */
@media (max-width: 768px) {
  .container {
    padding: 0 0.75rem;
  }
  
  .hero-section {
    padding: 3rem 0;
    min-height: 50vh;
  }
  
  .hero-section h1 {
    font-size: 2rem;
  }
  
  .hero-section p {
    font-size: 1rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .info-card {
    padding: 1.5rem;
  }
  
  .card-title {
    font-size: 1.25rem;
  }
  
  .quick-nav-item {
    padding: 1.5rem;
  }
  
  .nav-icon {
    font-size: 2rem;
  }
  
  .chart-container {
    height: 250px;
  }
}

/* ===== 工具类 ===== */
.text-blue-600 { color: #2563eb; }
.text-green-600 { color: #16a34a; }
.text-orange-600 { color: #ea580c; }
.text-purple-600 { color: #9333ea; }
.text-red-600 { color: #dc2626; }

.bg-blue-500 { background-color: #3b82f6; }
.bg-orange-500 { background-color: #f97316; }
.bg-green-500 { background-color: #22c55e; }

.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.mt-4 { margin-top: 1rem; }

.py-12 { padding-top: 3rem; padding-bottom: 3rem; }

/* ===== 滚动条样式 ===== */
.scrollbar-hide {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.scrollbar-hide::-webkit-scrollbar {
  display: none;
}

/* ===== 动画效果 ===== */
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-slide-up {
  animation: slideUp 0.6s ease-out;
}

/* ===== 加载状态 ===== */
.loading {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 200px;
}

.spinner {
  width: 40px;
  height: 40px;
  border: 4px solid #e5e7eb;
  border-top: 4px solid #f97316;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* ===== 数字化应用网格样式 ===== */
.digital-apps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.app-item {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border: 2px solid #e2e8f0;
  border-radius: 1rem;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.app-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(30, 64, 175, 0.1), transparent);
  transition: left 0.5s ease;
}

.app-item:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: #1e40af;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

.app-item:hover::before {
  left: 100%;
}

.app-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
  transition: transform 0.3s ease;
}

.app-item:hover .app-icon {
  transform: scale(1.1) rotate(5deg);
}

.app-value {
  font-size: 2.25rem;
  font-weight: 700;
  color: #1e40af;
  margin-bottom: 0.5rem;
  line-height: 1.2;
  transition: color 0.3s ease;
}

.app-item:hover .app-value {
  color: #1d4ed8;
}

.app-label {
  font-size: 0.875rem;
  color: #64748b;
  font-weight: 500;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.app-item:hover .app-label {
  color: #475569;
}

/* ===== 消费水平网格样式 ===== */
.consumption-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.consumption-item {
  background: linear-gradient(135deg, #fef7ed 0%, #fed7aa 100%);
  border: 2px solid #fed7aa;
  border-radius: 1rem;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.consumption-item::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(251, 146, 60, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.4s ease;
}

.consumption-item:hover {
  transform: translateY(-6px);
  border-color: #fb923c;
  box-shadow: 0 20px 25px -5px rgba(251, 146, 60, 0.2), 0 10px 10px -5px rgba(251, 146, 60, 0.1);
  background: linear-gradient(135deg, #ffffff 0%, #fef7ed 100%);
}

.consumption-item:hover::after {
  width: 200px;
  height: 200px;
}

.consumption-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
  transition: transform 0.3s ease;
}

.consumption-item:hover .consumption-icon {
  transform: scale(1.15) rotate(-5deg);
}

.consumption-value {
  font-size: 1.875rem;
  font-weight: 700;
  color: #ea580c;
  margin-bottom: 0.5rem;
  line-height: 1.2;
  transition: color 0.3s ease;
}

.consumption-item:hover .consumption-value {
  color: #dc2626;
}

.consumption-label {
  font-size: 0.875rem;
  color: #92400e;
  font-weight: 500;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.consumption-item:hover .consumption-label {
  color: #78350f;
}

/* ===== 人才吸引力网格样式 ===== */
.talent-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.talent-item {
  background: linear-gradient(135deg, #f0f9ff 0%, #dbeafe 100%);
  border: 2px solid #bfdbfe;
  border-radius: 1rem;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.talent-item::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: linear-gradient(to top, rgba(59, 130, 246, 0.1), transparent);
  transition: height 0.4s ease;
}

.talent-item:hover {
  transform: translateY(-5px) scale(1.01);
  border-color: #3b82f6;
  box-shadow: 0 20px 25px -5px rgba(59, 130, 246, 0.15), 0 10px 10px -5px rgba(59, 130, 246, 0.1);
  background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
}

.talent-item:hover::before {
  height: 100%;
}

.talent-icon {
  font-size: 2.75rem;
  margin-bottom: 1rem;
  display: block;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
  transition: transform 0.3s ease;
}

.talent-item:hover .talent-icon {
  transform: scale(1.1) translateY(-2px);
}

.talent-value {
  font-size: 2rem;
  font-weight: 700;
  color: #1d4ed8;
  margin-bottom: 0.5rem;
  line-height: 1.2;
  transition: color 0.3s ease;
  position: relative;
  z-index: 1;
}

.talent-item:hover .talent-value {
  color: #1e40af;
}

.talent-label {
  font-size: 0.875rem;
  color: #1e40af;
  font-weight: 500;
  line-height: 1.4;
  transition: color 0.3s ease;
  position: relative;
  z-index: 1;
}

.talent-item:hover .talent-label {
  color: #1e3a8a;
}

/* ===== 城市发展指标网格样式 ===== */
.development-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.development-item {
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
  border: 2px solid #bbf7d0;
  border-radius: 1rem;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.development-item::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: conic-gradient(from 0deg, transparent, rgba(34, 197, 94, 0.1), transparent);
  border-radius: 50%;
  transform: rotate(0deg);
  transition: transform 0.6s ease;
}

.development-item:hover {
  transform: translateY(-6px);
  border-color: #22c55e;
  box-shadow: 0 20px 25px -5px rgba(34, 197, 94, 0.15), 0 10px 10px -5px rgba(34, 197, 94, 0.1);
  background: linear-gradient(135deg, #ffffff 0%, #f0fdf4 100%);
}

.development-item:hover::after {
  transform: rotate(180deg);
}

.development-icon {
  font-size: 2.75rem;
  margin-bottom: 1rem;
  display: block;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
  transition: transform 0.3s ease;
  position: relative;
  z-index: 1;
}

.development-item:hover .development-icon {
  transform: scale(1.1) rotate(10deg);
}

.development-value {
  font-size: 2rem;
  font-weight: 700;
  color: #16a34a;
  margin-bottom: 0.5rem;
  line-height: 1.2;
  transition: color 0.3s ease;
  position: relative;
  z-index: 1;
}

.development-item:hover .development-value {
  color: #15803d;
}

.development-label {
  font-size: 0.875rem;
  color: #166534;
  font-weight: 500;
  line-height: 1.4;
  transition: color 0.3s ease;
  position: relative;
  z-index: 1;
}

.development-item:hover .development-label {
  color: #14532d;
}

/* ===== 响应式设计 ===== */
@media (max-width: 768px) {
  .digital-apps-grid,
  .consumption-grid,
  .talent-grid,
  .development-grid {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
  }
  
  .app-item,
  .consumption-item,
  .talent-item,
  .development-item {
    padding: 1.5rem 1rem;
  }
  
  .app-icon,
  .consumption-icon,
  .talent-icon,
  .development-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
  }
  
  .app-value,
  .consumption-value,
  .talent-value,
  .development-value {
    font-size: 1.5rem;
  }
  
  .app-label,
  .consumption-label,
  .talent-label,
  .development-label {
    font-size: 0.75rem;
  }
}

@media (max-width: 480px) {
  .digital-apps-grid,
  .consumption-grid,
  .talent-grid,
  .development-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
  
  .app-item,
  .consumption-item,
  .talent-item,
  .development-item {
    padding: 1.25rem 0.75rem;
  }
  
  .app-icon,
  .consumption-icon,
  .talent-icon,
  .development-icon {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
  }
  
  .app-value,
  .consumption-value,
  .talent-value,
  .development-value {
    font-size: 1.25rem;
  }
  
  .app-label,
  .consumption-label,
  .talent-label,
  .development-label {
    font-size: 0.7rem;
    line-height: 1.3;
  }
}

/* ===== 动画增强 ===== */
@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(30, 64, 175, 0.4);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(30, 64, 175, 0);
  }
}

.app-item:focus,
.consumption-item:focus,
.talent-item:focus,
.development-item:focus {
  animation: pulse-glow 2s infinite;
  outline: none;
}

/* ===== 可访问性增强 ===== */
@media (prefers-reduced-motion: reduce) {
  .app-item,
  .consumption-item,
  .talent-item,
  .development-item {
    transition: none;
  }
  
  .app-item::before,
  .consumption-item::after,
  .talent-item::before,
  .development-item::after {
    display: none;
  }
}