/* 
 * index.css - 首页样式
 * 
 * 默认设计宽度�?440px
 * 适配：PC端和移动�? */

/* 通用样式 */
html, body {
  overflow-x: hidden;
}

/* 全局链接样式 - 移除所有下划线 */
a {
  text-decoration: none !important;
}

a:hover {
  text-decoration: none !important;
}

.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
}

.mobile-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 15px;
}

.animate-section {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-section.animate-visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-delay-200 {
  transition-delay: 0.2s;
}

.animate-delay-300 {
  transition-delay: 0.3s;
}

section {
  padding: 50px 0;
  position: relative;
}

.section-header {
  margin-bottom: 30px;
}

.section-header h2 {
  font-size: 32px;
  font-weight: 600;
  color: #222;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-header h2:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: #0056b3;
}

.section-header p {
  font-size: 16px;
  color: #666;
  max-width: 700px;
  margin: 15px auto 0;
}

.btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s;
  font-weight: 500;
  border: none;
  cursor: pointer;
  text-align: center;
}

.btn-primary {
  background-color: #0056b3;
  color: #fff;
}

.btn-primary:hover {  background-color: #004b9e;  color: #fff;}

.btn-secondary {
  background-color: transparent;
  color: #0056b3;
  border: 1px solid #0056b3;
}

.btn-secondary:hover {
  background-color: #f0f7ff;
}

.btn-sm {
  padding: 8px 15px;
  font-size: 14px;
}

.text-center {
  text-align: center;
}

.mt-3 {
  margin-top: 15px;
}

/* 英雄区域 */
.hero {
  height: 420px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  border-bottom: none;
  text-align: left;
  background: none;
  margin-bottom: 20px;
}

.hero::before {
  content: none;
}

.hero .container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
  box-shadow: none;
  background: none;
}

/* 两栏布局 */
.hero-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-content {
  flex: 0 0 45%;
  position: relative;
  padding: 0;
  margin: 0;
  border: none;
  background: none;
  box-shadow: none;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  font-weight: 700;
  color: #0056b3;
  line-height: 1.2;
  position: relative;
  display: inline-block;
}

.hero-title-line {
  display: inline-block;
}

.hero h1::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  transform: none;
  width: 70px;
  height: 3px;
  background: linear-gradient(to right, #0056b3, #0056b3);
  border-radius: 3px;
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 25px;
  color: #555;
  font-style: italic;
}

.hero-buttons {
  margin-top: 30px;
  display: flex;
  justify-content: flex-start;
  gap: 15px;
}

.hero .btn {
  display: inline-block;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  text-align: center;
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: none;
}

.hero .btn-primary {
  background-color: #0056b3;
  color: white;
  border: 2px solid #0056b3;
}

.hero .btn-primary:hover {
  background-color: #004494;
  border-color: #004494;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 86, 179, 0.3);
}

.hero .btn-secondary {
  background-color: transparent;
  color: #0056b3;
  border: 2px solid #0056b3;
}

.hero .btn-secondary:hover {
  background-color: rgba(0, 86, 179, 0.05);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 86, 179, 0.1);
}

/* 右侧图形区域 */
.hero-graphic {
  flex: 0 0 50%;
  height: 340px;
  position: relative;
}

.graphic-container {
  width: 100%;
  height: 100%;
  position: relative;
}

.graphic-item {
  position: absolute;
  width: 75px;
  height: 75px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 0.5s ease;
  cursor: pointer;
  z-index: 2;
}

.graphic-item:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  z-index: 4;
}

.graphic-item i {
  font-size: 22px;
  color: #0056b3;
  margin-bottom: 4px;
}

.graphic-item span {
  font-size: 12px;
  font-weight: 600;
  color: #333;
}

/* 中心图标 */
.graphic-center {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 95px;
  height: 95px;
  background: #0056b3;
  z-index: 3;
  animation: pulse 2s infinite;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.graphic-center:hover {
  background: #004494;
  box-shadow: 0 0 15px rgba(0, 86, 179, 0.6);
  transform: translate(-50%, -50%) scale(1.05);
}

.graphic-center i,
.graphic-center span {
  color: white;
  text-align: center;
  transition: all 0.3s ease;
}

.graphic-center:hover i,
.graphic-center:hover span {
  transform: scale(1.1);
}

.graphic-center i {
  font-size: 30px;
}

.graphic-center span {
  font-size: 13px;
}

/* 8个业务图标布局 - 圆形排列 */
.graphic-item-1 {
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  animation: float 3s ease-in-out infinite;
}

.graphic-item-2 {
  top: 23%;
  right: 20%;
  animation: float 3.5s ease-in-out infinite;
}

.graphic-item-3 {
  top: 50%;
  right: 5%;
  animation: float 4s ease-in-out infinite;
}

.graphic-item-4 {
  bottom: 23%;
  right: 20%;
  animation: float 3.8s ease-in-out infinite;
}

.graphic-item-5 {
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  animation: float 3.3s ease-in-out infinite;
}

.graphic-item-6 {
  bottom: 23%;
  left: 20%;
  animation: float 3.6s ease-in-out infinite;
}

.graphic-item-7 {
  top: 50%;
  left: 5%;
  animation: float 4.2s ease-in-out infinite;
}

.graphic-item-8 {
  top: 23%;
  left: 20%;
  animation: float 3.4s ease-in-out infinite;
}

.connection-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.connection-lines::before,
.connection-lines::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 220px;
  height: 220px;
  border: 2px dashed rgba(0, 86, 179, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.connection-lines::before {
  animation: rotate 30s linear infinite;
}

.connection-lines::after {
  width: 160px;
  height: 160px;
  animation: rotate 20s linear infinite reverse;
}

/* 动画效果 */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 86, 179, 0.4);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(0, 86, 179, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 86, 179, 0);
  }
}

@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(5px);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes rotate {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* 服务集市 */
.service-market-section {
  background-color: #fff;
  padding: 50px 0;
  overflow: hidden;
}

.service-tabs {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.service-tab {
  padding: 10px 25px;
  background-color: #f5f5f5;
  border-radius: 30px;
  color: #555;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s;
}

.service-tab:hover {
  background-color: #e6e6e6;
  color: #333;
}

.service-tab.active {
  background-color: #0056b3;
  color: #fff;
}

.service-tab-content {
  display: none;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.service-tab-content.active {
  display: grid;
  width: 100%;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  width: 100%;
}

.service-card {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding: 30px 20px;
  text-align: center;
  transition: all 0.3s;
  border: 1px solid #eaeaea;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-icon {
  width: 60px;
  height: 60px;
  background-color: #f0f7ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.service-icon i {
  font-size: 26px;
  color: #0056b3;
}

.service-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin-bottom: 15px;
}

.service-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 15px;
}

.service-items a {
  display: block;
  padding: 8px 5px;
  background-color: #f9f9f9;
  border-radius: 4px;
  color: #555;
  text-decoration: none;
  font-size: 13px;
  transition: all 0.3s;
}

.service-items a:hover {
  background-color: #f0f7ff;
  color: #0056b3;
}

/* 公司运作流程 */
.company-process-section {
  background-color: #f8faff;
  padding: 50px 0;
  position: relative;
  overflow: hidden;
}

.company-process-section:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: repeating-linear-gradient(to right, #ddd 0, #ddd 8px, transparent 8px, transparent 16px);
  z-index: 1;
  opacity: 0.5;
}

.process-slider {
  position: relative;
  z-index: 2;
  margin: 0 auto;
  max-width: 1440px;
  width: 100%;
  overflow: visible;
}

.process-nav {
  display: flex;
  justify-content: space-between;
  position: absolute;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  padding: 0 20px;
  pointer-events: none;
}

.process-prev,
.process-next {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #fff;
  border: 1px solid #eaeaea;
  color: #555;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
  pointer-events: auto;
  position: relative;
  z-index: 10;
}

.process-prev:hover,
.process-next:hover {
  background-color: #0056b3;
  color: #fff;
  border-color: #0056b3;
}

.process-track {
  display: flex;
  overflow-x: auto;
  padding: 20px 40px;
  scroll-behavior: smooth;
  width: 100%;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
  box-sizing: border-box;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch; /* 增强iOS的滚动性能 */
}

.process-track::-webkit-scrollbar {
  display: none; /* Chrome, Safari and Opera */
}

.process-item {
  flex: 0 0 300px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding: 30px 20px;
  text-align: center;
  margin: 0 10px;
  border: 1px solid #eaeaea;
  transition: all 0.3s;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  scroll-snap-align: center;
  box-sizing: border-box;
  will-change: transform; /* 提高渲染性能 */
}

.process-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.process-icon {
  margin-bottom: 20px;
  display: inline-block;
}

.process-item h4 {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin-bottom: 15px;
}

.process-item p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  flex-grow: 1;
}

.process-indicators {
  display: flex;
  justify-content: center;
  margin-top: 30px;
  gap: 10px;
  flex-wrap: wrap;
}

.indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #ddd;
  cursor: pointer;
  transition: all 0.3s;
}

.indicator.active {
  background-color: #0056b3;
  transform: scale(1.2);
}

.compact-indicators {
  display: none;
}

/* 服务工具 */
.service-tools {
  background-color: #fff;
  padding: 50px 0;
}

.tool-tabs {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.tool-card {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding: 30px 20px;
  text-align: center;
  transition: all 0.3s;
  border: 1px solid #eaeaea;
}

.tool-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.tool-icon {
  width: 60px;
  height: 60px;
  background-color: #f0f7ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.tool-icon i {
  font-size: 26px;
  color: #0056b3;
}

.tool-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin-bottom: 15px;
}

.tool-card p {
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
  height: 40px;
  overflow: hidden;
}

/* 企业待办 */
.company-todos-section {
  background-color: #f8faff;
  padding: 50px 0;
  position: relative;
}

.todos-container {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding: 30px;
  border: 1px solid #eaeaea;
}

.todos-layout {
  display: flex;
  gap: 30px;
}

/* 左侧和右侧列结构 */
.todos-left-column {
  flex: 0 0 55%;
  display: flex;
  flex-direction: column;
}

.todos-right-column {
  flex: 0 0 40%;
  display: flex;
  flex-direction: column;
  border-left: 1px solid #eaeaea;
  padding-left: 25px;
}

/* 栏目标题 */
.column-header {
  margin-bottom: 20px;
}

.column-header h3 {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  margin: 0 0 5px 0;
}

.column-header p {
  font-size: 14px;
  color: #666;
  margin: 0;
}

.month-tabs-column {
  margin-bottom: 20px;
}

.month-contents-column {
  flex: 1;
  overflow: hidden;
}

.month-tabs {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 10px;
}

.month-tab {
  padding: 8px 12px;
  background-color: #f5f5f5;
  border-radius: 4px;
  color: #555;
  cursor: pointer;
  font-weight: 500;
  text-align: center;
  transition: all 0.3s;
  flex: 0 0 auto;
  min-width: 50px;
  font-size: 14px;
}

.month-tab:hover {
  background-color: #e6e6e6;
  color: #333;
}

.month-tab.active {
  background-color: #0056b3;
  color: #fff;
}

.month-content {
  display: none;
  height: 100%;
}

.month-content.active {
  display: block;
  height: 100%;
}

.todos-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  height: 320px;
  overflow-y: auto;
  padding-right: 10px;
  margin-bottom: 10px;
  scrollbar-width: thin;
  scrollbar-color: #ddd #f5f5f5;
}

/* 自定义滚动条样式 */
.todos-list::-webkit-scrollbar {
  width: 6px; /* 滚动条宽�?*/
}

.todos-list::-webkit-scrollbar-track {
  background: #f5f5f5; /* 轨道背景�?*/
  border-radius: 3px;
}

.todos-list::-webkit-scrollbar-thumb {
  background-color: #ddd; /* 滑块颜色 */
  border-radius: 3px;
  border: 1px solid #f5f5f5;
}

.todos-list::-webkit-scrollbar-thumb:hover {
  background-color: #bbb; /* 悬停时的滑块颜色 */
}

.todo-description {
  padding: 12px 15px;
  background-color: #f9f9f9;
  border-radius: 4px;
  border-left: 3px solid #0056b3;
  transition: all 0.3s;
}

.todo-description:hover {
  background-color: #f0f7ff;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
}

.todo-description a {
  color: #333;
  text-decoration: none;
  display: block;
  font-size: 14px;
}

.todo-description a:hover {
  color: #0056b3;
}

/* 创业学院微博风格 */
.startup-academy {
  background-color: #fff;
  border-radius: 8px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.startup-academy-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid #f0f0f0;
}

.startup-academy-header h3 {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  margin: 0;
}

/* 栏目查看更多按钮 */
.column-view-more {
  text-align: center;
  margin-top: auto;
  margin-bottom: 15px;
  padding-top: 20px;
  align-self: center;
  width: 100%;
  position: relative;
  z-index: 2;
  background-color: #fff;
}

.column-btn {
  display: inline-block;
  padding: 10px 25px;
  background: linear-gradient(45deg, #0056b3, #0066d6);
  color: #fff;
  border-radius: 50px;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  box-shadow: 0 3px 8px rgba(0, 86, 179, 0.3);
  position: relative;
  overflow: hidden;
}

.column-btn:hover {
  background: linear-gradient(45deg, #004b9e, #0056b3);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 5px 12px rgba(0, 86, 179, 0.4);
}

.column-btn::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 18px;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4px 0 4px 5px;
  border-color: transparent transparent transparent rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
  opacity: 0;
}

.column-btn:hover::after {
  right: 12px;
  opacity: 1;
}

.startup-feed {
  display: flex;
  flex-direction: column;
  gap: 15px;
  overflow-y: auto;
  height: 320px;
  padding-right: 10px;
  margin-right: -10px;
  margin-bottom: 10px;
  scrollbar-width: thin;
  scrollbar-color: #ddd #f5f5f5;
  flex: 1;
}

/* 自定义滚动条样式 */
.startup-feed::-webkit-scrollbar {
  width: 6px; /* 滚动条宽�?*/
}

.startup-feed::-webkit-scrollbar-track {
  background: #f5f5f5; /* 轨道背景�?*/
  border-radius: 3px;
}

.startup-feed::-webkit-scrollbar-thumb {
  background-color: #ddd; /* 滑块颜色 */
  border-radius: 3px;
  border: 1px solid #f5f5f5;
}

.startup-feed::-webkit-scrollbar-thumb:hover {
  background-color: #bbb; /* 悬停时的滑块颜色 */
}

.startup-feed-item {
  border-bottom: 1px solid #f0f0f0;
  padding-bottom: 15px;
}

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

.feed-author {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 10px;
  flex-shrink: 0;
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-info {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-size: 14px;
  font-weight: 600;
  color: #333;
}

.post-time {
  font-size: 12px;
  color: #999;
}

.feed-content {
  margin-bottom: 5px;
}

.feed-excerpt {
  font-size: 14px;
  color: #333;
  margin: 0;
  line-height: 1.6;
}

.feed-excerpt a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s;
}

.feed-excerpt a:hover {
  color: #ff8200;
}

/* 移动端响应式布局 */
@media (max-width: 991px) {
  .todos-layout {
    flex-direction: column;
  }
  
  .todos-left-column,
  .todos-right-column {
    flex: 0 0 100%;
  }
  
  .todos-right-column {
    border-left: none;
    border-top: 1px solid #eaeaea;
    padding-left: 0;
    padding-top: 25px;
    margin-top: 10px;
  }
  
  .column-header {
    text-align: center;
  }
  
  .startup-academy-header {
    justify-content: center;
  }
  
  .column-view-more {
    margin-top: 15px;
  }

  /* 移动端创业学院滚动区域高度调�?*/
  .startup-feed {
    max-height: 300px; /* 移动端适当减小高度 */
  }
}

@media (max-width: 767px) {
  .todos-layout {
    flex-direction: column;
    gap: 20px;
  }
  
  .todos-right-column {
    height: auto;
    padding-top: 15px;
    border-left: none;
    border-top: 1px solid #eaeaea;
    padding-left: 0;
    margin-top: 15px;
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  }

  /* 移动端创业学院滚动区域高度调�?*/
  .startup-feed {
    max-height: 280px; /* 更小屏幕进一步减小高�?*/
    padding-right: 5px; /* 减小右侧内边�?*/
    margin-right: -5px;
  }
  
  /* 手机端滚动条微调 */
  .startup-feed::-webkit-scrollbar {
    width: 4px; /* 更细的滚动条 */
  }
}

.view-more-button {
  text-align: center;
  margin-top: 30px;
}

.btn-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 25px;
  background-color: #f8f9fa;
  color: #0056b3;
  border: 1px solid #0056b3;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.btn-more i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.btn-more:hover {
  background-color: #0056b3;
  color: #fff;
  box-shadow: 0 5px 15px rgba(0, 86, 179, 0.2);
}

.btn-more:hover i {
  transform: translateX(5px);
}

@media (max-width: 576px) {
  .btn-more {
    padding: 8px 20px;
    font-size: 14px;
  }
  
  .view-more-button {
    margin-top: 20px;
  }
}

/* 手机端的水平滚动月份标签容器 */
.mobile-month-tabs-wrapper {
  display: none;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 10px;
  margin-bottom: 15px;
}

.mobile-month-tabs-wrapper::-webkit-scrollbar {
  display: none;
}

.mobile-month-tabs {
  display: inline-flex;
  gap: 10px;
  padding: 0 5px;
  min-width: max-content;
}

/* 移动端响应式布局 */
@media (max-width: 991px) {
  .todos-layout {
    flex-direction: column;
  }
  
  .todos-left-column,
  .todos-right-column {
    flex: 0 0 100%;
  }
  
  .todos-right-column {
    border-left: none;
    border-top: 1px solid #eaeaea;
    padding-left: 0;
    padding-top: 25px;
    margin-top: 10px;
  }
  
  .column-header {
    text-align: center;
  }
  
  .startup-academy-header {
    justify-content: center;
  }
  
  .column-view-more {
    margin-top: 15px;
  }
}

@media (max-width: 767px) {
  .todos-layout {
    flex-direction: column;
    gap: 20px;
  }
  
  .month-tabs-column {
    display: none;
  }
  
  .mobile-month-tabs-wrapper {
    display: block;
    margin-top: 10px;
    order: 2;
    width: 100%;
    overflow-x: auto;
    padding-bottom: 10px;
  }
  
  .todos-left-column {
    height: auto;
    display: flex;
    flex-direction: column;
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  }
  
  .todos-right-column {
    height: auto;
    padding-top: 15px;
    border-left: none;
    border-top: 1px solid #eaeaea;
    padding-left: 0;
    margin-top: 15px;
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  }
  
  .column-header {
    text-align: center;
    order: 1; /* 新增：调整顺?*/
  }
  
  .month-tabs {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 10px;
    justify-content: flex-start;
  }
  
  .month-contents-column {
    order: 3; /* 新增：调整顺序，内容放在月份下方 */
  }
  
  .column-header h3 {
    font-size: 18px;
  }
  
  .column-header p {
    font-size: 13px;
  }
  
  .startup-academy-header h3 {
    font-size: 18px;
  }
  
  .column-btn {
    width: 100%;
    max-width: 200px;
  }
  
  /* 企业待办模块的查看更多按钮样?*/
  .todos-left-column .column-view-more,
  .todos-right-column .column-view-more {
    order: 4; /* 移动端查看更多按钮调整顺?*/
    align-self: center; /* 移动端按钮居中对?*/
    margin-top: 15px;
    margin-bottom: 15px; /* 增加底部间距 */
  }
}

@media (max-width: 480px) {
  .author-avatar {
    width: 32px;
    height: 32px;
  }
  
  .feed-excerpt {
    font-size: 13px;
  }
  
  .column-header {
    margin-bottom: 15px;
  }
  
  .startup-academy-header {
    margin-bottom: 12px;
  }
  
  .column-view-more {
    margin-top: 10px;
    text-align: center;
  }
  
  .column-btn {
    padding: 8px 20px;
    font-size: 13px;
    max-width: 180px;
    width: 100%;
    background: linear-gradient(45deg, #0056b3, #0066d6);
    color: #fff;
    border-radius: 50px;
    box-shadow: 0 3px 8px rgba(0, 86, 179, 0.3);
  }
}

/* 企业补贴 */
.company-subsidies-section {
  background: linear-gradient(135deg, #e8f5fe 0%, #f0f8ff 50%, #e6f3ff 100%);
  padding: 50px 0;
  position: relative;
  overflow: hidden;
}

/* 添加背景装饰元素 */
.company-subsidies-section::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -150px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 86, 179, 0.1) 0%, rgba(0, 86, 179, 0) 70%);
  z-index: 0;
}

.company-subsidies-section::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 86, 179, 0.08) 0%, rgba(0, 86, 179, 0) 70%);
  z-index: 0;
}

.company-subsidies-section .container {
  position: relative;
  z-index: 1;
}

/* 企业补贴政策模块样式 */

/* 模块容器 */
.subsidy-policy-container {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 86, 179, 0.1);
    max-width: 1600px;
    margin: 0 auto 2rem;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(66, 133, 244, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

/* 提示文字 */
.subsidy-policy-hint {
    text-align: center;
    color: #888;
    font-size: 14px;
    margin-top: 5px;
    margin-bottom: 15px;
    font-style: italic;
}

/* 便签容器 */
.notes-container {
    position: relative;
    height: 500px; /* 固定高度 */
    background: rgba(240, 248, 255, 0.5);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: inset 0 0 20px rgba(0, 86, 179, 0.1);
    padding: 20px;
    border: 1px solid rgba(66, 133, 244, 0.1);
}

/* 便签样式 */
.note {
    position: absolute;
    width: 250px; /* 增加便签宽度 */
    min-height: 100px;
    padding: 18px; /* 增加内边?*/
    border-radius: 10px; /* 增加圆角 */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* 增强阴影 */
    cursor: move;
    z-index: 1;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    overflow: hidden;
    user-select: none; /* 防止文本被选中 */
    -webkit-user-select: none;
    will-change: transform, box-shadow; /* 优化渲染性能 */
    touch-action: none; /* 确保触摸事件不被浏览器处�?*/
    -webkit-tap-highlight-color: transparent; /* 移除iOS上的点击高亮 */
    border: 1px solid rgba(0, 0, 0, 0.05);
    -webkit-font-smoothing: antialiased; /* 增强文字渲染 */
    -moz-osx-font-smoothing: grayscale;
    backface-visibility: hidden; /* 防止文字模糊 */
}

.note:hover {
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
}

/* 正在拖动的便签样�?*/
.note.dragging {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    opacity: 0.95;
    transform: scale(1.02);
    z-index: 1100 !important; /* 确保拖动中的便签始终在最上层 */
}

/* 便签标题 */
.note-title {
    font-weight: 600; /* 加粗字体 */
    font-size: 18px;
    margin-bottom: 14px; /* 增加间距 */
    color: #111; /* 加深颜色提高对比�?*/
    word-break: break-word;
    line-height: 1.4; /* 增加行间�?*/
    letter-spacing: 0.2px; /* 轻微增加字间距以提高可读�?*/
}

/* 便签描述 */
.note-desc {
    font-size: 16px;
    color: #222; /* 加深颜色提高对比�?*/
    word-break: break-word;
    line-height: 1.6; /* 增加行间�?*/
    letter-spacing: 0.1px; /* 轻微增加字间�?*/
}

/* 便签颜色变量 - 增加更多颜色选项 */
.note-color-1 { background: #fff9c4; } /* 浅黄�?*/
.note-color-2 { background: #ffccbc; } /* 浅橙�?*/
.note-color-3 { background: #c8e6c9; } /* 浅绿�?*/
.note-color-4 { background: #bbdefb; } /* 浅蓝�?*/
.note-color-5 { background: #e1bee7; } /* 浅紫�?*/
.note-color-6 { background: #f8bbd0; } /* 浅粉�?*/
.note-color-7 { background: #ffcdd2; } /* 红色 */
.note-color-8 { background: #f48fb1; } /* 深粉�?*/
.note-color-9 { background: #b2dfdb; } /* 淡绿�?*/
.note-color-10 { background: #ffecb3; } /* 黄色 */

/* 便签颜色的补充样�?*/
.note-color-1, .note-color-2, .note-color-3, .note-color-4, 
.note-color-5, .note-color-6, .note-color-7, .note-color-8, 
.note-color-9, .note-color-10 {
    cursor: move;
    cursor: grab;
}

.note.dragging {
    cursor: grabbing;
}

/* 响应式布局 */
@media (max-width: 768px) {
    .notes-container {
        height: 450px !important;
    }
    
    .note {
        width: 220px !important; /* 增大宽度 */
        min-height: 100px !important;
        padding: 16px !important;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25) !important;
        border-radius: 8px !important;
    }
    
    .note:active, .note.dragging {
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3) !important;
        transform: scale(1.03) !important;
    }
    
    .note-title {
        font-size: 16px !important;
        margin-bottom: 12px !important;
        line-height: 1.4 !important;
        font-weight: 600 !important;
        color: #000 !important;
    }
    
    .note-desc {
        font-size: 15px !important;
        line-height: 1.5 !important;
        color: #111 !important;
    }
}

/* 更小屏幕的适配 */
@media (max-width: 480px) {
    .note {
        width: 140px; /* 更小的宽�?*/
        min-height: 70px;
        padding: 8px;
    }
    
    .note-title {
        font-size: 13px;
        margin-bottom: 6px;
    }
    
    .note-desc {
        font-size: 11px;
        line-height: 1.3;
    }
}

/* 平台动�?*/
.platform-news-section {
  background-color: #f8faff;
  padding: 50px 0;
}

/* 使用Flexbox确保左右两侧高度一致且底部对齐 */
.news-container {
  display: flex;
  gap: 30px;
  align-items: stretch;
}

/* 左右两列都设置为flex容器 */
.news-column, .sidebar-column {
  display: flex;
  flex-direction: column;
}

.news-column {
  flex: 2;
}

.sidebar-column {
  flex: 1;
}

/* 标题样式 */
.section-header-with-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  border-bottom: 1px solid #eaeaea;
  padding-bottom: 10px;
  flex-shrink: 0; /* 不参与空间收�?*/
  clear: both;
  width: 100%;
}

.section-header-with-link .news-title {
  flex: 1;
}

.section-header-with-link .section-more-link,
.section-header-with-link .mobile-more-link {
  margin-left: auto;
  float: none;
}

.news-title {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin: 0;
}

.section-more-link {
  font-size: 14px;
  font-weight: normal;
  color: #0056b3;
  margin-left: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  vertical-align: middle;
}

.section-more-link i {
  margin-left: 5px;
  font-size: 12px;
  transition: transform 0.3s ease;
}

.section-more-link:hover {
  color: #004b9e;
}

.section-more-link:hover i {
  transform: translateX(3px);
}

@media (max-width: 576px) {
  .section-more-link {
    display: block;
    margin: 10px auto 0;
    font-size: 13px;
  }
}

/* 新闻列表撑满剩余空间 */
.news-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
  flex-grow: 1; /* 填充可用空间 */
}

/* 右侧侧边栏区�?*/
.sidebar-section {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding: 20px;
  border: 1px solid #eaeaea;
  flex-shrink: 0; /* 不参与空间收�?*/
}

/* 新闻卡片样式 */
.news-card {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: all 0.3s;
  border: 1px solid #eaeaea;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.news-card-link {
  display: flex;
  color: inherit;
  text-decoration: none;
  height: 100%;
  align-items: flex-start; /* 顶部对齐 */
}

/* 全局图片修复 - 解决缩略图显示不协调的问�?*/
img {
  max-width: 100%;
  height: auto;
}

/* 更强大的新闻图片容器样式 - 长方形黄色风格（16:9比例�?*/
.news-card .news-img-wrapper,
.news-img-wrapper {
  flex: 0 0 220px !important;
  height: 120px !important; /* 略微调整高度 */
  overflow: hidden !important;
  position: relative !important;
  background-color: #f8f9fa !important; /* 淡灰色背景，更加中�?*/
  border-radius: 4px !important;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1) !important;
  margin-right: 15px !important;
  border: none !important; /* 移除黑色边框 */
  position: relative !important;
  z-index: 1 !important;
  display: flex !important; /* 使用flexbox实现居中 */
  align-items: center !important; /* 垂直居中 */
  justify-content: center !important; /* 水平居中 */
}

.news-card:hover .news-img-wrapper {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15) !important;
  transform: translateY(-2px) !important;
}

/* 更强大的新闻图片样式 */
.news-card .news-img-wrapper img,
.news-img-wrapper img,
.news-img {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important; /* 修改为cover以填充整个容�?*/
  object-position: center !important;
  display: block !important;
  transition: transform 0.3s ease !important;
  image-rendering: -webkit-optimize-contrast !important;
  backface-visibility: hidden !important;
  -webkit-backface-visibility: hidden !important;
  image-rendering: crisp-edges !important;
}

/* 添加缩略图悬停效�?*/
/* PC端保留缩略图悬停效果 */
@media (min-width: 768px) {
  .news-card:hover .news-img {
    transform: scale(1.08) !important;
  }
}

/* 移动端不缩放图片 */
@media (max-width: 767px) {
  .news-card:hover .news-img {
    transform: none !important;
  }
}

.news-info {
  flex: 1;
  padding: 15px;
}

.news-card-title {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin: 0 0 10px;
  line-height: 1.4;
}

.news-meta {
  display: flex;
  gap: 15px;
  margin-bottom: 10px;
  font-size: 12px;
  color: #999;
}

.news-meta span {
  display: flex;
  align-items: center;
}

.news-meta i {
  margin-right: 5px;
}

.news-desc {
  font-size: 13px;
  color: #666;
  line-height: 1.6;
  margin: 0;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

/* 第一个sidebar-section */
.sidebar-section:first-child {
  margin-bottom: 20px;
}

/* 最后一个sidebar-section填充所有剩余空�?*/
.sidebar-section:last-child {
  flex-grow: 1;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
}

.policy-list,
.random-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.policy-item,
.random-item {
  border-bottom: 1px dashed #eaeaea;
  padding: 10px 0;
}

.policy-item:last-child,
.random-item:last-child {
  border-bottom: none;
}

.policy-date {
  display: inline-block;
  background-color: #f0f7ff;
  padding: 3px 8px;
  border-radius: 3px;
  font-size: 12px;
  color: #0056b3;
  margin-right: 10px;
}

.policy-link,
.random-link {
  color: #333;
  text-decoration: none;
  transition: color 0.3s;
  font-size: 14px;
  display: inline-block;
}

.policy-link:hover,
.random-link:hover {
  color: var(--primary-color);
  text-decoration: none;
}

.random-number {
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  text-align: center;
  line-height: 20px;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  margin-right: 10px;
}

/* Add different colors for each number */
.random-number-1 {
  background-color: #0056b3; /* Blue */
}

.random-number-2 {
  background-color: #ea4335; /* Red */
}

.random-number-3 {
  background-color: #fbbc05; /* Yellow - with darker text for contrast */
  color: #333;
}

.random-number-4 {
  background-color: #34a853; /* Green */
}

.random-number-5 {
  background-color: #8d44ad; /* Purple */
}

.random-title {
  display: inline-block;
}

/* 企业资料模板 */
.company-templates-section {
  background-color: #fff;
  padding: 50px 0;
  position: relative;
  overflow: hidden;
}

.template-tabs-container {
  overflow-x: auto;
  margin-bottom: 40px;
  -webkit-overflow-scrolling: touch; /* 增强移动端滚动体�?*/
}

.template-tabs {
  display: flex;
  justify-content: center;
  gap: 20px;
  white-space: nowrap;
  padding: 5px 0;
}

.templates-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.template-card-link {
  text-decoration: none;
  color: inherit;
  height: 100%;
  display: block;
}

.template-card {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding: 20px;
  transition: all 0.3s;
  border: 1px solid #eaeaea;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.template-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.title-icon-container {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  justify-content: flex-start; /* 添加：确保标题在左侧对齐 */
}

.template-icon {
  width: 40px;
  height: 40px;
  background-color: #f0f7ff;
  border-radius: 50%;
  display: none !important; /* 修改：隐藏图标并添加 !important 确保优先�?*/
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
}

.template-icon i {
  font-size: 20px;
  color: #0056b3;
}

.template-title {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin: 0;
  width: 100%; /* 修改：使标题占满宽度 */
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.template-info {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.template-desc-wrapper {
  margin-bottom: 15px;
  height: 42px; /* Fixed height for 2 lines at font-size 13px and line-height 1.6 */
  overflow: hidden;
}

.template-desc {
  font-size: 13px;
  color: #666;
  line-height: 1.6;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.template-meta {
  font-size: 12px;
  color: #999;
  margin-top: auto;
}

.mobile-templates-grid {
  display: none;
}

/* 企业资料模板内容区域 */
.template-content {
  display: none;
}

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

.sidebar-section:last-child {
  flex-grow: 1;
  margin-bottom: 0;
}

/* 响应式适配 */
@media (max-width: 1199px) {
  .container {
    max-width: 1140px;
  }
  
  .hero-content h1 {
    font-size: 38px;
  }
  
  .graphic-container {
    width: 500px;
  }
  
  .graphic-item-1 { top: 0; left: 120px; }
  .graphic-item-2 { top: 50px; right: 80px; }
  .graphic-item-3 { top: 150px; right: 20px; }
  .graphic-item-4 { bottom: 50px; right: 80px; }
  .graphic-item-5 { bottom: 0; left: 120px; }
  .graphic-item-6 { top: 150px; left: 20px; }
  .graphic-item-7 { top: 50px; left: 80px; }
  .graphic-item-8 { bottom: 50px; left: 80px; }
}

@media (max-width: 991px) {
  .container {
    max-width: 940px;
    padding: 0 20px;
  }
  
  section {
    padding: 40px 0;
  }
  
  .hero {
    padding: 70px 0;
  }
  
  .hero-row {
    flex-direction: column;
    gap: 20px;
  }
  
  .hero-content {
    flex: 0 0 100%;
    text-align: center;
    margin-bottom: 0;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .services-grid,
  .tools-grid {
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
    margin: 0 auto;
  }
  
  .service-tab-content.active {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    width: 100%;
  }
  
  .news-container {
    flex-direction: column;
  }
  
  .templates-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .process-track {
    padding: 20px 30px;
  }
  
  .process-item {
    flex: 0 0 280px;
    min-height: 260px;
    padding: 25px 15px;
  }
}

@media (max-width: 767px) {
  .container {
    max-width: 720px;
  }
  
  section {
    padding: 30px 0;
  }
  
  .section-header {
    margin-bottom: 20px;
  }
  
  .section-header h2 {
    font-size: 28px;
  }
  
  .hero {
    padding: 60px 0;
  }
  
  .hero-content h1 {
    font-size: 32px;
  }
  
  .hero-content p {
    font-size: 16px;
  }
  
  .graphic-container {
    width: 350px;
    height: 350px;
  }
  
  .graphic-item {
    width: 65px;
    height: 65px;
  }
  
  .graphic-center {
    width: 80px;
    height: 80px;
  }
  
  .graphic-item-1 { top: 0; left: 100px; }
  .graphic-item-2 { top: 30px; right: 60px; }
  .graphic-item-3 { top: 120px; right: 10px; }
  .graphic-item-4 { bottom: 30px; right: 60px; }
  .graphic-item-5 { bottom: 0; left: 100px; }
  .graphic-item-6 { top: 120px; left: 10px; }
  .graphic-item-7 { top: 30px; left: 60px; }
  .graphic-item-8 { bottom: 30px; left: 60px; }
  
  .service-tabs,
  .tool-tabs {
    gap: 10px;
    flex-wrap: wrap;
  }
  
  .service-tab,
  .tool-tab {
    padding: 8px 15px;
    font-size: 14px;
  }
  
  .services-grid,
  .service-tab-content.active {
    grid-template-columns: 1fr;
    width: 100%;
    margin: 0 auto;
  }
  
  .tools-grid {
    grid-template-columns: 1fr;
  }
  
  .todos-layout {
    flex-direction: column;
    gap: 20px;
  }
  
  .month-tabs-column {
    display: none;
  }
  
  .mobile-month-tabs-wrapper {
    display: block;
    margin-top: 10px; /* 新增：增加顶部间�?*/
    order: 2; /* 新增：调整顺序，放在标题下方 */
  }
  
  .todos-left-column {
    height: auto; /* 新增：移动端取消固定高度 */
    display: flex;
    flex-direction: column;
  }
  
  .todos-right-column {
    height: auto; /* 新增：移动端取消固定高度 */
    padding-top: 15px;
  }
  
  .column-header {
    text-align: center;
    order: 1; /* 新增：调整顺�?*/
  }
  
  .month-tabs {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 10px;
    justify-content: flex-start;
  }
  
  .month-contents-column {
    order: 3; /* 新增：调整顺序，内容放在月份下方 */
  }
  
  .column-header h3 {
    font-size: 18px;
  }
  
  .column-header p {
    font-size: 13px;
  }
  
  .startup-academy-header h3 {
    font-size: 18px;
  }
  
  .column-btn {
    width: 100%;
    max-width: 200px;
  }
  
  /* 企业待办模块的查看更多按钮样�?*/
  .todos-left-column .column-view-more,
  .todos-right-column .column-view-more {
    order: 4; /* 移动端查看更多按钮调整顺�?*/
    align-self: center; /* 移动端按钮居中对�?*/
    margin-top: 15px;
    margin-bottom: 15px; /* 增加底部间距 */
  }
}

@media (max-width: 576px) {
  /* 通用设置 */
  body {
    overflow-x: hidden;
  }

  .container,
  .mobile-container {
    max-width: 100%;
    padding: 0 6px;
    width: 100%;
    box-sizing: border-box;
  }
  
  .hero-content h1 {
    font-size: 28px;
  }
  
  .hero-buttons {
    flex-direction: row;
    gap: 15px;
    justify-content: center;
    width: auto;
  }
  
  .btn {
    width: auto;
    padding: 8px 16px;
    font-size: 0.9rem;
    white-space: nowrap;
    border-radius: 5px;
  }
  
  /* 优化小屏幕上的新闻图�?- 保持长方形风�?*/
  .news-card .news-img-wrapper,
  .news-card[class] .news-img-wrapper,
  .news-img-wrapper {
    height: 162px !important; /* 调整为更接近750:390的比�?*/
    width: 100% !important; /* 占满宽度 */
    max-width: 310px !important; /* 调整最大宽度与比例匹配 */
    border-radius: 4px !important;
    overflow: hidden !important;
    position: relative !important;
    margin: 15px auto !important;
    border: none !important; /* 移除黑色边框 */
    background-color: #FFDE35 !important;
    box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.2) !important;
    display: flex !important; /* 使用flexbox实现居中 */
    align-items: center !important; /* 垂直居中 */
    justify-content: center !important; /* 水平居中 */
  }
  
  /* 增强小屏幕上的图片样�?*/
  .news-card .news-img-wrapper img.news-img,
  .news-img-wrapper img.news-img,
  img.news-img,
  .news-img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
  }
  
  .news-card {
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1) !important;
  }
  
  .news-info {
    padding: 12px !important;
  }
  
  .news-card-title {
    font-size: 15px !important;
    margin-bottom: 8px !important;
  }
  
  .news-desc {
    font-size: 13px !important;
    -webkit-line-clamp: 2 !important;
  }
  
  /* 服务集市特定修复 */
  .service-market-section,
  .service-tools {
    padding: 20px 0 15px;
    width: 100vw;
    max-width: 100vw;
    margin-left: -1px;
    margin-right: -1px;
    overflow-x: hidden;
    box-sizing: border-box;
  }

  .service-market-section .container,
  .service-market-section .mobile-container,
  .service-tools .container,
  .service-tools .mobile-container {
    padding: 0 4px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  
  .service-tabs {
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 15px;
    gap: 8px;
  }
  
  .service-tab {
    padding: 6px 12px;
    font-size: 13px;
  }
  
  /* 卡片布局修复 */
  .service-tab-content,
  .service-tab-content.active {
    width: 100%;
    padding: 0;
    margin: 0;
    display: block;
  }
  
  .services-grid,
  .tools-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
    width: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  .service-card,
  .tool-card {
    padding: 8px 4px;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    margin: 0;
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }
  
  /* 卡片内容修复 */
  .service-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 10px;
    box-sizing: border-box;
    max-width: 100%;
  }
  
  .service-icon i {
    font-size: 18px;
  }
  
  .service-card h3 {
    font-size: 14px;
    margin-bottom: 8px;
  }
  
  .service-items {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 10px;
    box-sizing: border-box;
    max-width: 100%;
  }
  
  .service-items a {
    padding: 4px 2px;
    font-size: 12px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    box-sizing: border-box;
  }
  
  .service-card .btn {
    padding: 4px 8px;
    font-size: 12px;
  }
  
  .tool-icon {
    box-sizing: border-box;
    max-width: 100%;
  }
  
  /* 其他代码 */
  .process-track {
    padding: 10px 40px;
    scroll-snap-type: x mandatory;
    gap: 0;
    scroll-padding: 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  
  .process-item {
    flex: 0 0 calc(100% - 16px);
    min-height: 200px;
    margin: 0 8px;
    padding: 15px 10px;
    scroll-snap-align: center;
    transform: translateZ(0); /* 开启硬件加速，减少抖动 */
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transition: none; /* 移动端禁用过渡效果，减少卡顿 */
  }
  
  .process-item:hover {
    transform: none; /* 移动端禁用悬停效�?*/
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  }
  
  .process-icon {
    margin-bottom: 10px;
  }
  
  .process-icon svg {
    width: 50px;
    height: 50px;
  }
  
  .process-item h4 {
    font-size: 16px;
    margin-bottom: 8px;
  }
  
  .process-item p {
    font-size: 13px;
    line-height: 1.5;
  }
  
  .process-nav {
    padding: 0 5px;
  }
  
  .process-prev, 
  .process-next {
    width: 36px;
    height: 36px;
  }
  
  .process-indicators {
    gap: 6px;
    flex-wrap: wrap;
    margin-top: 15px;
  }
  
  .indicator {
    width: 8px;
    height: 8px;
  }
  
  .notes-container {
    gap: 15px;
  }
  
  .note {
    width: 100%;
    min-height: 180px;
  }
  
  .news-card-link {
    flex-direction: column;
  }
  
  .news-img-wrapper {
    height: 180px;
    flex: none;
    width: 100%;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .news-img {
    object-fit: contain;
    max-height: 100%;
    max-width: 100%;
  }
  
  /* 工具卡片样式 */
  .section-header {
    margin-bottom: 15px;
  }
  
  .section-header h2 {
    font-size: 22px;
    margin-bottom: 6px;
  }
  
  .section-header p {
    font-size: 14px;
    margin-bottom: 0;
  }
  
  .tool-tabs {
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 20px;
  }
  
  .tool-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 10px;
    box-sizing: border-box;
  }
  
  .tool-icon i {
    font-size: 18px;
  }
  
  .tool-card h3 {
    font-size: 14px;
    margin-bottom: 8px;
  }
  
  .tool-card p {
    font-size: 12px;
    margin-bottom: 8px;
  }
  
  .tool-card .btn {
    padding: 4px 8px;
    font-size: 12px;
  }
  
  /* 手机端服务集市专用样�?*/
  .mobile-tab-content {
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    box-sizing: border-box;
  }
  
  .mobile-tab-content.active {
    display: block;
  }
  
  .mobile-tab-content:not(.active) {
    display: none;
  }
  
  .mobile-services-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
    width: 100% !important;
    margin: 0 auto !important;
    padding: 0 !important;
    box-sizing: border-box;
    max-width: 100%;
  }
  
  .mobile-service-card {
    padding: 10px 8px !important;
    border-radius: 8px !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08) !important;
    margin: 0 !important;
    width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
    max-width: 100%;
  }
  
  .mobile-service-card .service-items {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    grid-template-rows: repeat(2, auto) !important;
    gap: 5px !important;
    margin-bottom: 10px !important;
    padding: 0 !important;
  }
  
  .mobile-service-card .service-items a {
    padding: 4px 2px !important;
    font-size: 12px !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
    text-align: center !important;
    background-color: #f8f9fa !important;
    border-radius: 4px !important;
    transition: all 0.2s ease !important;
  }
  
  .mobile-service-card .service-items a:hover {
    background-color: #e9ecef !important;
    color: #0056b3 !important;
  }
  
  .mobile-service-card .btn {
    padding: 5px 8px !important;
    font-size: 12px !important;
    margin-top: 8px !important;
    display: block !important;
    width: 100% !important;
    text-align: center !important;
  }
  
  .view-more-button {
    margin-top: 20px;
  }
  
  .view-more-button .btn {
    padding: 8px 20px;
    font-size: 14px;
  }
  
  /* 企业资料模板在小屏幕下的优化 */
  .company-templates-section {
    padding: 30px 0 15px;
    overflow-x: hidden;
  }
  
  .template-tabs-container {
    margin-bottom: 20px;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  
  .template-tabs {
    gap: 10px;
    min-width: max-content;
    padding: 0 5px;
  }
  
  .service-tab {
    padding: 6px 12px;
    font-size: 13px;
    border-radius: 20px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  }
  
  .template-card {
    padding: 15px 10px;
    display: flex;
    flex-direction: column;
    height: 100%;
  }
  
  .title-icon-container {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: flex-start; /* 添加：确保标题在左侧对齐 */
  }
  
  .template-icon {
    width: 32px;
    height: 32px;
    margin-right: 10px;
    flex-shrink: 0;
  }
  
  .template-icon i {
    font-size: 16px;
  }
  
  .template-title {
    font-size: 14px;
    max-width: calc(100% - 42px);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  
  .template-desc-wrapper {
    margin-bottom: 10px;
    height: 38px;
    overflow: hidden;
  }
  
  .template-desc {
    font-size: 12px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  
  .template-meta {
    font-size: 11px;
    margin-top: auto;
  }
  
  .mobile-templates-grid {
    padding: 0 5px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    width: 100%;
  }
  
  .view-more-button {
    margin-top: 20px;
    text-align: center;
  }
  
  .view-more-button .btn {
    padding: 8px 20px;
    font-size: 14px;
    width: 85%;
    max-width: 250px;
  }
  
  .service-card,
  .mobile-service-card {
    padding: 15px;
    margin-bottom: 15px;
    width: 100%;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
    border-radius: 12px;
    background-color: #ffffff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
  }
  
  .service-card:hover,
  .mobile-service-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  }
  
  .service-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
    margin-left: auto;
    margin-right: auto;
    background: linear-gradient(135deg, #eef6ff 0%, #e6f0fd 100%);
  }
  
  .service-icon i {
    font-size: 24px;
    color: #0056b3;
  }
  
  .service-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
    text-align: center;
  }
  
  .service-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
    margin-bottom: 15px;
    padding: 0 5px;
  }
  
  .service-items a {
    font-size: 13px;
    padding: 8px 5px;
    margin-bottom: 0;
    background-color: #f8f9fa;
    text-align: center;
    border-radius: 6px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
  }
  
  .service-card .btn {
    margin: 0 auto;
    display: block;
  }
  
  .mobile-tab-content {
    padding: 0;
  }
  
  .mobile-tab-content.active {
    padding: 15px 0;
  }
  
  .mobile-services-grid {
    grid-template-columns: 1fr;
    gap: 15px;
    width: 100%;
    padding: 0 5px;
  }
  
  .mobile-service-card {
    padding: 18px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .tool-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 10px;
    gap: 8px;
    margin-bottom: 15px;
    justify-content: flex-start;
  }
  
  .service-tab {
    padding: 8px 15px;
    font-size: 14px;
    white-space: nowrap;
    min-width: auto;
    flex: 0 0 auto;
  }
  
  .view-more-button {
    margin-top: 20px;
    text-align: center;
  }
  
  .view-more-button .btn {
    min-width: 180px;
    padding: 10px 20px;
  }
}

@media (max-width: 360px) {
    .hero {
        padding: 20px 0;
        text-align: left;
    }
    
    .hero .container,
    .hero .mobile-container {
        padding: 0 15px;
        margin: 0 auto;
        width: 100%;
        box-sizing: border-box;
        align-items: flex-start;
    }
    
    .hero-content {
        padding: 0;
        text-align: left;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .hero h1 {
        font-size: 1.3rem;
        line-height: 1.3;
        margin-bottom: 12px;
        text-align: left;
    }
    
    .hero-title-line {
        font-size: 1.3rem;
        letter-spacing: -0.3px;
    }
    
    .hero p {
        font-size: 0.85rem;
        margin-bottom: 15px;
        text-align: left;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .hero-buttons {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: flex-start;
        gap: 10px;
        margin-top: 15px;
        width: 100%;
    }
    
    .hero .btn {
        padding: 7px 14px;
        font-size: 0.8rem;
        width: auto;
        max-width: none;
        min-width: 90px;
    }
}

/* 响应式调�?*/
@media (max-width: 992px) {
    .hero-row {
        flex-direction: column;
    }
    
    .hero-content {
        flex: 0 0 100%;
        text-align: center;
        margin-bottom: 20px;
    }
    
    .hero h1::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-graphic {
        flex: 0 0 100%;
        height: 320px;
    }
}

@media (max-width: 768px) {
    .hero {
        height: auto;
        padding: 50px 0 40px;
    }
    
    .hero h1 {
        font-size: 1.9rem;
    }
    
    .hero p {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    
    .hero-buttons {
        margin-top: 25px;
    }
    
    .hero-graphic {
        height: 300px;
    }
    
    .graphic-item {
        width: 60px;
        height: 60px;
    }
    
    .graphic-center {
        width: 80px;
        height: 80px;
    }
    
    .graphic-item i {
        font-size: 18px;
    }
    
    .graphic-center i {
        font-size: 24px;
    }
    
    .connection-lines::before {
        width: 200px;
        height: 200px;
    }
    
    .connection-lines::after {
        width: 140px;
        height: 140px;
    }
}

/* 响应式调�?- 手机端图标宽度和间距修复 */
@media (max-width: 480px) {
    .hero {
        padding: 30px 0;
        margin-bottom: 0;
        background-color: #f8faff;
        text-align: left;
    }
    
    .hero .container,
    .hero .mobile-container {
        padding: 0 15px;
        margin: 0 auto;
        width: 100%;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .hero h1 {
        font-size: 1.6rem;
        line-height: 1.5;
        margin-bottom: 15px;
        white-space: normal;
        letter-spacing: -0.2px;
        color: #0056b3;
        text-align: left;
        width: 100%;
    }
    
    .hero-title-line {
        display: inline-block;
        white-space: nowrap;
    }
    
    .hero h1::after {
        left: 0;
        transform: none;
        bottom: -10px;
        width: 60px;
    }
    
    .hero p {
        font-size: 1rem;
        margin-bottom: 20px;
        line-height: 1.5;
        text-align: left;
        color: #555;
        width: 100%;
        padding: 0;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .hero-buttons {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: flex-start;
        gap: 15px;
        margin-top: 25px;
        width: 100%;
        margin-left: 0;
        margin-right: auto;
    }
    
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding: 0;
        width: 100%;
        margin-bottom: 15px;
    }
    
    .hero .btn {
        width: auto;
        max-width: none;
        padding: 10px 20px;
        font-size: 0.9rem;
        white-space: nowrap;
        border-radius: 6px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
    }
    
    .hero-row {
        flex-direction: column;
        gap: 25px;
        align-items: flex-start;
        width: 100%;
    }
    
    /* 移动端图形区�?*/
    .hero-graphic {
        height: auto;
        margin-top: 10px;
        margin-bottom: 15px;
        position: relative;
        display: grid !important;
        grid-template-columns: 1fr !important;
        grid-template-rows: auto !important;
        gap: 8px !important;
        padding: 0 !important;
        width: 100% !important;
    }
    
    /* 网格布局容器 */
    .graphic-container {
        position: static !important;
        width: 100% !important;
        height: auto !important;
        display: grid !important;
        grid-template-columns: repeat(4, 1fr) !important;
        grid-template-rows: auto auto auto !important; 
        gap: 8px !important;
        padding: 5px !important;
    }
    
    /* 调整图标样式 */
    .graphic-item {
        position: static !important;
        width: 100% !important;
        height: auto !important;
        min-height: 65px !important;
        border-radius: 10px !important;
        transform: none !important;
        animation: none !important;
        margin: 0 !important;
        padding: 8px 3px !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08) !important;
        transition: transform 0.3s ease, box-shadow 0.3s ease !important;
    }
    
    .graphic-item:hover {
        transform: translateY(-3px) !important;
        box-shadow: 0 5px 12px rgba(0, 0, 0, 0.12) !important;
    }
    
    /* 调整图标和文字大�?*/
    .graphic-item i {
        font-size: 24px !important;
        margin-bottom: 6px !important;
    }
    
    .graphic-item span {
        font-size: 12px !important;
        white-space: nowrap !important;
    }
    
    /* 顶部中心图标 */
    .graphic-center {
        grid-area: 1 / 1 / 2 / 5 !important;
        background: #0056b3 !important;
        color: white !important;
        height: auto !important;
        min-height: 70px !important;
        width: 100% !important;
        margin: 0 auto 10px auto !important;
        border-radius: 12px !important;
        box-shadow: 0 4px 12px rgba(0, 86, 179, 0.25) !important;
    }
    
    .graphic-center i {
        font-size: 26px !important;
        margin-bottom: 5px !important;
    }
    
    .graphic-center span {
        font-size: 14px !important;
        font-weight: 600 !important;
    }
    
    /* 图标位置设置 - 保持与中心图标的关联 */
    .graphic-item-1 { grid-area: 2 / 1 / 3 / 2 !important; background-color: #f1f8ff !important; }
    .graphic-item-2 { grid-area: 2 / 2 / 3 / 3 !important; background-color: #f1f8ff !important; }
    .graphic-item-3 { grid-area: 2 / 3 / 3 / 4 !important; background-color: #f1f8ff !important; }
    .graphic-item-4 { grid-area: 2 / 4 / 3 / 5 !important; background-color: #f1f8ff !important; }
    .graphic-item-5 { grid-area: 3 / 1 / 4 / 2 !important; background-color: #f1f8ff !important; }
    .graphic-item-6 { grid-area: 3 / 2 / 4 / 3 !important; background-color: #f1f8ff !important; }
    .graphic-item-7 { grid-area: 3 / 3 / 4 / 4 !important; background-color: #f1f8ff !important; }
    .graphic-item-8 { grid-area: 3 / 4 / 4 / 5 !important; background-color: #f1f8ff !important; }
    
    /* 简化连接线，让界面更清�?*/
    .connection-lines {
        display: none !important;
    }
}

/* 针对更小屏幕设备额外优化 */
@media (max-width: 360px) {
    .hero {
        padding: 20px 0;
        text-align: center;
    }
    
    .hero .container,
    .hero .mobile-container {
        padding: 0 15px;
        margin: 0 auto;
        width: 100%;
        box-sizing: border-box;
    }
    
    .hero-content {
        padding: 0;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero h1 {
        font-size: 1.3rem;
        line-height: 1.3;
        margin-bottom: 12px;
        text-align: center;
    }
    
    .hero-title-line {
        font-size: 1.3rem;
        letter-spacing: -0.3px;
    }
    
    .hero p {
        font-size: 0.85rem;
        margin-bottom: 15px;
        text-align: center;
        white-space: normal;
        overflow: visible;
        text-overflow: clip;
    }
    
    .hero-buttons {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: center;
        gap: 10px;
        margin-top: 15px;
        width: 100%;
    }
    
    .hero .btn {
        padding: 7px 14px;
        font-size: 0.8rem;
        width: auto;
        max-width: none;
        min-width: 90px;
    }
}

/* 模板内容区域 - 优化切换体验 */
.template-contents {
  position: relative;
  width: 100%;
  min-height: 200px; /* 添加最小高度，防止内容切换时页面跳�?*/
  overflow: hidden; /* 确保内容不会溢出 */
}

.template-content {
  display: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  width: 100%;
  position: absolute; /* 绝对定位 */
  top: 0;
  left: 0;
  transform: translateX(0); /* 确保一开始没有偏�?*/
}

.template-content.active {
  display: block;
  opacity: 1;
  visibility: visible;
  position: relative; /* 活动内容使用相对定位 */
  left: 0; /* 明确设置左边距为0 */
  transform: translateX(0); /* 消除可能的偏�?*/
}

/* 标签容器通用样式 - 适用于所有设�?*/
.template-tabs-container {
  overflow-x: auto;
  margin-bottom: 40px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* 隐藏滚动�?*/
  -ms-overflow-style: none;
}

.template-tabs-container::-webkit-scrollbar {
  display: none; /* 隐藏滚动�?*/
}

/* 手机端适配优化 */
@media (max-width: 767px) {
  /* ... existing code ... */
  
  /* 优化模板标签在移动端的显�?*/
  .template-tabs-container {
    width: 100%;
    margin-bottom: 25px;
    padding-bottom: 5px;
  }
  
  .template-tabs {
    justify-content: flex-start;
    gap: 12px;
    min-width: max-content;
    padding: 0 5px;
  }
  
  /* 确保移动端模板内容能够正确显�?*/
  .templates-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  /* 优化模板内容的切换效�?*/
  .template-contents {
    min-height: 300px; /* 移动端内容区域最小高�?*/
  }
  
  /* 修复PC/移动网格显示问题 */
  .pc-templates-grid {
    display: none !important;
  }
  
  .mobile-templates-grid {
    display: grid !important;
    grid-template-columns: 1fr;
    gap: 12px;
    width: 100%;
  }
}

/* 性能优化相关样式 */
/* 延迟加载元素初始状�?*/
.lazy-load {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.lazy-load.loaded {
    opacity: 1;
    transform: translateY(0);
}

/* 图片懒加载样�?*/
.lazy-img {
    opacity: 0;
    transition: opacity 0.5s ease;
}

.lazy-img.loaded {
    opacity: 1;
}

/* 骨架屏效�?*/
.skeleton-loading {
    position: relative;
    overflow: hidden;
    background-color: #f0f0f0;
}

.skeleton-loading::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0));
    animation: skeleton-shine 1.5s infinite;
}

@keyframes skeleton-shine {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

/* 内容可见性管�?*/
.content-visibility-auto {
    content-visibility: auto;
    contain-intrinsic-size: 0 500px; /* 预估高度 */
}

/* 优化图片加载 */
.news-img-wrapper {
    background-color: #f5f5f5; /* 图片加载前的背景�?*/
    min-height: 120px; /* 预留图片空间 */
    display: flex; /* 使用flexbox实现居中 */
    align-items: center; /* 垂直居中 */
    justify-content: center; /* 水平居中 */
}

/* 针对低端设备的优�?*/
@media (prefers-reduced-motion: reduce) {
    .animate-section {
        transition: none !important;
    }
    
    .skeleton-loading::before {
        animation: none !important;
    }
    
    .process-item:hover {
        transform: none !important;
    }
    
    .service-card:hover,
    .news-card:hover,
    .template-card:hover {
        transform: none !important;
    }
}

/* 首屏内容优先渲染 */
.hero-content,
.hero-graphic {
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
}

/* 提高移动端滚动性能 */
@media (max-width: 767px) {
    .process-track,
    .template-tabs-container,
    .mobile-month-tabs-wrapper {
        -webkit-overflow-scrolling: touch; /* 增强iOS滚动性能 */
        overscroll-behavior-x: contain; /* 防止滚动�?*/
    }
    
    .template-card,
    .service-card,
    .process-item {
        transform: translateZ(0); /* 开启硬件加�?*/
        backface-visibility: hidden;
        transform-style: preserve-3d;
    }
}

/* 移动端基础优化 */
@media (max-width: 767px) {
  /* 平滑滚动效果 */
  html {
    scroll-behavior: smooth;
  }
  
  /* 改善触摸体验 */
  a, button, .btn, .service-tab, .month-tab, .template-card, .service-card, .tool-card {
    -webkit-tap-highlight-color: transparent;
  }
  
  /* 适应小屏幕的容器内边�?*/
  .container, .mobile-container {
    padding-left: 15px;
    padding-right: 15px;
  }
  
  /* 增强可读性和间距 */
  section {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  
  section + section {
    padding-top: 30px;
  }
  
  /* 优化各区块底部间�?*/
  .section-header {
    margin-bottom: 25px;
  }
  
  /* 优化按钮触摸区域 */
  .btn {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  
  /* 优化小标题样�?*/
  .section-header h2 {
    font-size: 1.6rem;
    margin-bottom: 10px;
  }
  
  .section-header p {
    font-size: 0.95rem;
    line-height: 1.5;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
  
  /* 改善触摸反馈 */
  .service-card:active,
  .tool-card:active,
  .template-card:active {
    transform: scale(0.98);
  }
  
  /* 适应性间�?*/
  .service-tabs, .tool-tabs, .template-tabs {
    margin-bottom: 20px;
  }
  
  /* 平滑过渡效果 */
  .service-tab, .tool-tabs, .month-tab {
    transition: all 0.25s ease;
  }
}

/* 确保各种屏幕尺寸下都有良好的显示效果 */
@media (max-width: 360px) {
  .hero h1 {
    font-size: 1.4rem;
    text-align: left;
  }
  
  .hero p {
    font-size: 0.9rem;
    text-align: left;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  
  .hero-buttons {
    flex-direction: row;
    gap: 10px;
    justify-content: flex-start;
  }
  
  .hero .btn {
    width: auto;
    max-width: none;
    padding: 8px 15px;
    font-size: 0.8rem;
  }
  
  .graphic-item {
    min-height: 55px !important;
  }
  
  .graphic-item i {
    font-size: 20px !important;
  }
  
  .graphic-item span {
    font-size: 11px !important;
  }
  
  .graphic-center {
    min-height: 60px !important;
  }
  
  .service-items {
    grid-template-columns: 1fr;
  }
  
  .section-header h2 {
    font-size: 1.4rem;
  }
  
  .service-tab, .tool-tab {
    padding: 6px 12px;
    font-size: 13px;
  }
}

/* 平板和大型手机设备的优化 */
@media (min-width: 577px) and (max-width: 767px) {
  .mobile-services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  
  .hero-buttons {
    justify-content: flex-start;
    flex-direction: row;
    gap: 15px;
    width: auto;
  }
  
  .hero .btn {
    width: auto;
    max-width: none;
  }
  
  .todos-layout {
    flex-direction: column;
  }
  
  .graphic-container {
    max-width: 500px;
    margin: 0 auto;
  }
}

/* 为特定设备优化断�?*/
@media (min-width: 375px) and (max-width: 413px) {
  .hero h1 {
    font-size: 1.5rem;
    text-align: left;
  }
  
  .hero p {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: left;
  }
  
  .hero-buttons {
    flex-direction: row;
    gap: 12px;
    justify-content: flex-start;
    width: auto;
  }
  
  .hero .btn {
    width: auto;
    padding: 8px 18px;
    font-size: 0.85rem;
  }
  
  .graphic-item {
    min-height: 60px !important;
  }
}

/* 企业智能服务中枢文字在移动端的专门样�?*/
.hero-slogan-text {
  display: inline-block;
  white-space: nowrap !important;
  overflow: visible !important;
  text-overflow: clip !important;
  font-size: 1rem;
  text-align: left;
  width: auto !important;
  max-width: none !important;
  letter-spacing: -0.2px;
  /* 提高文字渲染清晰�?*/
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

@media (max-width: 480px) {
  .hero p {
    font-size: 0.9rem !important;
    line-height: 1.5;
    text-align: left; /* 从center改回left */
    color: #555;
    width: 100%;
    padding: 0;
    margin-bottom: 20px;
    overflow-x: visible;
    max-width: none;
    /* 提高文字清晰度 */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  
  .hero-slogan-text {
    font-size: 0.83rem !important;
    letter-spacing: -0.6px;
    /* 移除缩放，避免文字模糊 */
    /* transform: scale(0.95); */
    /* transform-origin: left center; */
    display: inline-block;
    margin-left: -4px; /* 恢复为-4px */
    width: auto !important; /* 恢复为auto */
    min-width: max-content;
    text-align: left; /* 从center改为left */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
  }
}

@media (max-width: 360px) {
  .hero p {
    font-size: 0.85rem !important;
    white-space: normal;
    margin-bottom: 15px;
    text-align: left; /* 从center改回left */
    width: auto !important;
    overflow-x: visible;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  
  .hero-slogan-text {
    font-size: 0.78rem !important;
    letter-spacing: -0.7px;
    /* 移除缩放，避免文字模糊 */
    /* transform: scale(0.85); */
    display: inline-block !important;
    width: auto !important; /* 恢复为auto */
    margin-left: -4px; /* 恢复为-4px */
    min-width: max-content;
    text-align: left; /* 从center改为left */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    backface-visibility: hidden;
  }
}

/* 针对更极端的小屏设备 */
@media (max-width: 320px) {
  .hero-slogan-text {
    font-size: 0.74rem !important;
    letter-spacing: -0.95px;
    /* 移除缩放，避免文字模�?*/
    /* transform: scale(0.8); */
    margin-left: -6px;
    width: 120% !important;
    min-width: max-content;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
  }
}

/* 确保hero区域p标签允许足够的宽�?*/
.hero p {
  width: auto;
  max-width: none;
  overflow-x: visible;
}

/* 修复可能的文本截断问�?*/
@media (max-width: 480px) {
  .hero-content {
    width: 100%;
    max-width: none;
    overflow: visible;
    text-align: left; /* 从center改回left */
    align-items: flex-start; /* 从center改回flex-start */
  }
}

/* 确保所有情况下的文本完整显�?- 兜底样式 */
@supports (-webkit-overflow-scrolling: touch) {
  /* 针对iOS设备的特殊处�?*/
  .hero-slogan-text {
    width: auto !important;
    min-width: max-content !important;
    display: inline-block !important;
    text-align: left !important;
    overflow: visible !important;
    white-space: nowrap !important;
    /* iOS设备上的文字清晰度优�?*/
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
    text-rendering: optimizeLegibility !important;
    /* 确保iOS上不会使用transform */
    transform: none !important;
    /* 增强iOS文字渲染 */
    letter-spacing: -0.3px;
    /* 防止iOS上的子像素渲�?*/
    will-change: opacity;
    /* 删除iOS文本阴影 */
    text-shadow: none !important;
  }
  
  .hero p {
    overflow: visible !important;
    max-width: none !important;
    width: auto !important;
    /* iOS文字优化 */
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
  }
}

@media (max-width: 400px) {
  .hero-slogan-text {
    font-size: 0.8rem !important;
    /* 移除缩放，避免文字模�?*/
    /* transform: scale(0.9); */
    letter-spacing: -0.65px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
  }
}

/* 移动端创业学院样式优�?*/
.mobile-startup-header {
  display: none;
}

.mobile-startup-header h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #333;
}

.mobile-startup-header p {
  font-size: 14px;
  color: #666;
  margin: 0;
}

@media (max-width: 991px) {
  .startup-academy .column-header {
    display: block !important;
  }
  
  .mobile-startup-header {
    display: none;
  }
}

@media (max-width: 767px) {
  .todos-right-column {
    height: auto;
    border-left: none;
    border-top: 1px solid #eaeaea;
    padding-left: 0;
    margin-top: 15px;
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  }
  
  .startup-academy {
    background-color: transparent;
    display: flex;
    flex-direction: column;
  }
  
  /* 确保标题显示在顶部，与待办事项一�?*/
  .startup-academy .column-header {
    order: -1 !important;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eaeaea;
    text-align: center;
    display: block !important;
    background-color: transparent;
  }
  
  /* 修改内容区域样式与待办事项一�?*/
  .startup-feed {
    order: 0;
    background-color: #fff;
    border-radius: 8px;
    padding: 10px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    max-height: 280px;
  }
  
  /* 创业学院内部的文章项样式 */
  .startup-feed-item {
    margin-bottom: 10px;
    padding-bottom: 10px;
  }
  
  .startup-feed-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
  }
  
  /* 查看更多按钮样式统一 */
  .todos-right-column .column-view-more {
    order: 1;
    align-self: center;
    margin-top: 15px;
    margin-bottom: 5px;
  }
}

/* 针对移动端服务工具标签居中显示的样式 */
@media (max-width: 767px) {
  .service-tools .tool-tabs {
    display: flex;
    justify-content: center !important;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 10px;
    gap: 8px;
    margin-bottom: 15px;
    width: 100%;
  }

  .service-tools .service-tab {
    flex: 0 0 auto;
    white-space: nowrap;
  }
}

/* 企业待办 */

/* 移动端企业待办和创业学院优化 */
@media (max-width: 767px) {
  /* 减小整体边距，增大内容区�?*/
  .company-todos-section .container {
    padding: 0 10px;
  }
  
  .todos-container {
    padding: 20px 15px;
  }
  
  /* 优化左侧企业待办模块 */
  .todos-left-column {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 12px !important;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  }
  
  /* 优化月份标签显示 */
  .month-tabs {
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px;
    padding: 8px 0;
  }
  
  .month-tab {
    padding: 8px 12px !important;
    font-size: 15px !important; /* 增大月份字体 */
    border-radius: 6px;
    min-width: 45px;
    font-weight: 500;
  }
  
  .month-tab.active {
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0, 86, 179, 0.2);
  }
  
  /* 优化月份内容区域 */
  .month-contents-column {
    margin-top: 10px;
  }
  
  .month-content.active {
    background-color: #fff;
    border-radius: 8px;
    padding: 10px;
  }
  
  .todos-list {
    gap: 8px;
    max-height: 250px !important; /* 设置移动端最大高�?*/
    overflow-y: auto !important; /* 确保可以滚动 */
    padding-right: 8px; /* 为滚动条留出空间 */
  }
  
  .todo-description {
    padding: 10px 12px;
    border-radius: 6px;
  }
  
  .todo-description a {
    font-size: 14px;
    line-height: 1.5;
  }
  
  /* 移动端滚动条样式优化 */
  .todos-list::-webkit-scrollbar {
    width: 4px !important; /* 移动端滚动条更窄 */
  }
  
  .todos-list::-webkit-scrollbar-track {
    background: rgba(245, 245, 245, 0.6) !important;
  }
  
  .todos-list::-webkit-scrollbar-thumb {
    background-color: rgba(200, 200, 200, 0.8) !important;
  }
  
  /* 优化右侧创业学院模块 */
  .todos-right-column {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 12px !important;
    margin-top: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  }
  
  .startup-feed {
    background-color: #fff;
    border-radius: 8px;
    padding: 12px;
    margin-top: 10px;
    max-height: 300px;
  }
  
  .startup-feed-item {
    padding-bottom: 12px;
    margin-bottom: 12px;
  }
  
  .feed-excerpt {
    font-size: 14px;
    line-height: 1.6;
  }
  
  /* 优化查看更多按钮 */
  .column-view-more {
    margin-top: 12px;
    text-align: center;
  }
  
  .column-btn {
    width: auto;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    background: linear-gradient(45deg, #0056b3, #0066d6);
    color: #fff;
    box-shadow: 0 3px 8px rgba(0, 86, 179, 0.3);
    border: none;
    position: relative;
    overflow: hidden;
  }
}

/* 小屏幕手机进一步优�?*/
@media (max-width: 480px) {
  .month-tab {
    padding: 6px 10px !important;
    font-size: 14px !important;
  }
  
  .todos-container {
    padding: 15px 10px;
  }
  
  .todos-left-column,
  .todos-right-column {
    padding: 10px !important;
  }
  
  .column-header h3 {
    font-size: 17px;
  }
  
  .column-header p {
    font-size: 13px;
  }
}

@media (max-width: 767px) {
  .news-card-link {
    flex-direction: column;
    align-items: center; /* 居中显示 */
  }
  
  /* 优化移动端图片容�?- 维持长方形比�?*/
  .news-card .news-img-wrapper,
  .news-card[class] .news-img-wrapper,
  .news-img-wrapper {
    height: 160px !important; /* 恢复适当的高�?*/
    flex: none !important;
    width: 100% !important; /* 占满宽度 */
    max-width: 320px !important; /* 恢复原来的最大宽�?*/
    margin: 15px auto !important; /* 居中显示 */
    border-radius: 4px !important;
    overflow: hidden !important;
    position: relative !important;
    border: none !important; /* 确保移除边框 */
    background-color: #f8f9fa !important; /* 保持与PC端一致的淡灰色背�?*/
  }
  
  /* 优化移动端图�?- 使用高优先级选择�?*/
  .news-card .news-img-wrapper img.news-img,
  .news-img-wrapper img.news-img,
  img.news-img,
  .news-img {
    object-fit: cover !important; /* 使用cover模式填充整个容器 */
    width: 100% !important;
    height: 100% !important;
    object-position: center center !important;
    transition: transform 0.3s ease !important;
    display: block !important;
    max-width: none !important;
    max-height: none !important;
  }
  
  /* 移除移动端缩略图悬停效果 */
  .news-card:hover .news-img {
    transform: none; /* 移动端不缩放 */
  }
  
  /* 优化信息区域 */
  .news-info {
    padding: 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
  }
}

/* 重置任何内联样式的长方形缩略图样�?*/
div[class].news-img-wrapper img[class].news-img,
div.news-img-wrapper img.news-img,
img[alt].news-img,
div.news-img-wrapper > img,
.news-img-wrapper img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important; /* 使用cover填充整个容器，覆盖背�?*/
  object-position: center !important;
  display: block !important;
  max-width: none !important;
  max-height: none !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
}

/* 添加卡通小图标的底部阴影效�?*/
.news-card .news-img-wrapper::after {
  content: '' !important;
  position: absolute !important;
  bottom: -5px !important;
  right: -5px !important;
  width: 100% !important;
  height: 100% !important;
  background-color: rgba(0, 0, 0, 0.05) !important;
  z-index: -1 !important;
  border-radius: 4px !important;
}

/* 确保PC端图片垂直居�?*/
.news-card-link {
  display: flex;
  align-items: center;
}

/* 修改图标内容区的样式 */
.news-info {
  padding-top: 5px !important;
}

/* 修改新闻卡片的整体布局 */
.news-card {
  padding: 10px !important;
  transition: transform 0.2s ease !important;
}

/* 增强新闻标题样式 */
.news-card-title {
  font-weight: 600 !important;
  margin-top: 5px !important;
  line-height: 1.5 !important;
}

/* 在线预约区域样式 */
.online-booking-section {
  background-color: #f8f9fa;
  padding: 50px 0;
  position: relative;
  overflow: hidden;
}

.online-booking-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0,86,179,0.05) 0%, rgba(0,172,193,0.05) 100%);
  z-index: 0;
}

.booking-form-container {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  margin: 0 auto;
  padding: 25px 30px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.booking-form {
  width: 100%;
  display: flex;
  align-items: flex-end;
}

.booking-form-row {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  width: 100%;
  align-items: flex-end;
}

.booking-form-group {
  width: 18%;
  margin: 0 10px;
  position: relative;
  box-sizing: border-box;
}

.booking-form-content {
  width: 40%;
  margin: 0 10px;
}

.booking-form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #333;
  white-space: nowrap;
}

.booking-form-group label i {
  color: #0056b3;
  margin-right: 5px;
}

/* 错误提示样式 */
.error-message {
  display: none;
  color: #f44336;
  font-size: 12px;
  margin-top: 5px;
  position: absolute;
  width: 100%;
  text-align: left;
}

.booking-input,
.booking-textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  background-color: #f9f9f9;
  transition: all 0.3s ease;
  font-size: 15px;
  box-sizing: border-box;
}

.booking-input:focus,
.booking-textarea:focus {
  border-color: #0056b3;
  box-shadow: 0 0 0 2px rgba(0,86,179,0.1);
  background-color: #fff;
  outline: none;
}

.booking-textarea {
  height: 45px;
  resize: vertical;
  font-family: inherit;
}

.booking-form-submit {
  width: 15%;
  text-align: center;
  margin: 0 10px;
}

.booking-submit-btn {
  width: 100%;
  padding: 12px 15px;
  font-size: 16px;
  font-weight: 500;
  border-radius: 5px;
  background-color: #0056b3;
  border: none;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
  height: 45px;
}

.booking-submit-btn:hover {
  background-color: #004094;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,86,179,0.2);
}

/* 移动端适配 */
@media (max-width: 991px) {
  .booking-form-group {
    width: calc(50% - 20px);
  }
}

@media (max-width: 767px) {
  .online-booking-section {
    padding: 40px 0;
  }
  
  .booking-form-container {
    padding: 20px;
  }
  
  .booking-form-row {
    display: block;
    margin: 0;
  }
  
  .booking-form-group,
  .booking-form-content {
    width: 100%;
    margin: 0 0 15px;
  }
  
  .booking-input, 
  .booking-textarea {
    padding: 10px;
    font-size: 15px;
  }
  
  .booking-form-submit {
    width: 100%;
    margin: 0 0 15px;
  }
  
  .booking-submit-btn {
    width: 100%;
    padding: 12px 15px;
    height: auto;
    min-height: 45px;
    font-size: 16px;
    white-space: nowrap;
    overflow: visible;
  }
}

/* 自定义弹窗样式 */
.custom-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}
.modal-content {
    background-color: #fff;
    width: 90%;
    max-width: 400px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    animation: modalFadeIn 0.3s;
    overflow: hidden;
}
@keyframes modalFadeIn {
    from {transform: translateY(-30px); opacity: 0;}
    to {transform: translateY(0); opacity: 1;}
}
.modal-header {
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.modal-header h3 {
    margin: 0;
    color: #333;
    font-size: 18px;
}
.close-modal {
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    color: #999;
}
.close-modal:hover {
    color: #333;
}
.modal-body {
    padding: 20px;
    text-align: center;
}
.modal-body p {
    margin: 0;
    font-size: 16px;
    color: #333;
    line-height: 1.6;
}
.modal-footer {
    padding: 15px 20px;
    text-align: center;
    border-top: 1px solid #eee;
}
.modal-footer button {
    min-width: 100px;
}

/* 服务集市模块"了解更多"按钮美化 - 仅限移动端 */
@media (max-width: 767px) {
  /* 服务集市模块按钮专用样式 */
  .service-market-section .service-card .btn,
  .service-market-section .mobile-service-card .btn {
    background: linear-gradient(135deg, #0056b3 0%, #0066d6 50%, #0074e8 100%) !important;
    color: #fff !important;
    border: none !important;
    border-radius: 20px !important;
    padding: 10px 20px !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: auto !important;
    min-width: 100px !important;
    max-width: 140px !important;
    margin: 12px auto 0 auto !important;
    box-shadow: 0 4px 12px rgba(0, 86, 179, 0.25) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    position: relative !important;
    overflow: hidden !important;
    text-align: center !important;
    white-space: nowrap !important;
    letter-spacing: 0.5px !important;
  }
  
  /* 按钮悬停效果 */
  .service-market-section .service-card .btn:hover,
  .service-market-section .mobile-service-card .btn:hover {
    background: linear-gradient(135deg, #004494 0%, #0056b3 50%, #0066d6 100%) !important;
    transform: translateY(-2px) scale(1.02) !important;
    box-shadow: 0 6px 16px rgba(0, 86, 179, 0.35) !important;
    color: #fff !important;
  }
  
  /* 按钮点击效果 */
  .service-market-section .service-card .btn:active,
  .service-market-section .mobile-service-card .btn:active {
    transform: translateY(-1px) scale(0.98) !important;
    box-shadow: 0 3px 8px rgba(0, 86, 179, 0.3) !important;
    transition: all 0.1s ease !important;
  }
  
  /* 添加微光效果 */
  .service-market-section .service-card .btn::before,
  .service-market-section .mobile-service-card .btn::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: -100% !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent) !important;
    transition: left 0.5s ease !important;
    z-index: 1 !important;
  }
  
  .service-market-section .service-card .btn:hover::before,
  .service-market-section .mobile-service-card .btn:hover::before {
    left: 100% !important;
  }
  
  /* 确保按钮文字在最上层 */
  .service-market-section .service-card .btn span,
  .service-market-section .mobile-service-card .btn span {
    position: relative !important;
    z-index: 2 !important;
  }
  
  /* 添加右箭头图标 */
  .service-market-section .service-card .btn::after,
  .service-market-section .mobile-service-card .btn::after {
    content: "\f105" !important; /* Font Awesome 右箭头 */
    font-family: "Font Awesome 5 Free" !important;
    font-weight: 900 !important;
    margin-left: 6px !important;
    font-size: 11px !important;
    opacity: 0.8 !important;
    transition: all 0.3s ease !important;
    position: relative !important;
    z-index: 2 !important;
  }
  
  .service-market-section .service-card .btn:hover::after,
  .service-market-section .mobile-service-card .btn:hover::after {
    transform: translateX(2px) !important;
    opacity: 1 !important;
  }
}

/* 超小屏幕设备优化 */
@media (max-width: 480px) {
  .service-market-section .service-card .btn,
  .service-market-section .mobile-service-card .btn {
    padding: 8px 16px !important;
    font-size: 12px !important;
    min-width: 90px !important;
    max-width: 120px !important;
    border-radius: 18px !important;
  }
  
  .service-market-section .service-card .btn::after,
  .service-market-section .mobile-service-card .btn::after {
    font-size: 10px !important;
    margin-left: 4px !important;
  }
}

/* 极小屏幕设备优化 */
@media (max-width: 360px) {
  .service-market-section .service-card .btn,
  .service-market-section .mobile-service-card .btn {
    padding: 7px 14px !important;
    font-size: 11px !important;
    min-width: 80px !important;
    max-width: 110px !important;
    border-radius: 16px !important;
    letter-spacing: 0.3px !important;
  }
}

/* 服务工具模块"立即使用"按钮美化 - 仅限移动端 */
@media (max-width: 767px) {
  /* 服务工具模块按钮专用样式 */
  .service-tools .tool-card .btn,
  .service-tools .mobile-service-card .btn {
    background: linear-gradient(135deg, #004494 0%, #0056b3 40%, #6f42c1 100%) !important;
    color: #fff !important;
    border: none !important;
    border-radius: 25px !important;
    padding: 10px 18px !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: auto !important;
    min-width: 100px !important;
    max-width: 140px !important;
    margin: 12px auto 0 auto !important;
    box-shadow: 0 4px 15px rgba(0, 68, 148, 0.3) !important;
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
    position: relative !important;
    overflow: hidden !important;
    text-align: center !important;
    white-space: nowrap !important;
    letter-spacing: 0.6px !important;
    text-transform: uppercase !important;
    border: 2px solid transparent !important;
  }
  
  /* 按钮悬停效果 */
  .service-tools .tool-card .btn:hover,
  .service-tools .mobile-service-card .btn:hover {
    background: linear-gradient(135deg, #003366 0%, #004494 40%, #5a32a3 100%) !important;
    transform: translateY(-3px) scale(1.03) !important;
    box-shadow: 0 8px 20px rgba(0, 68, 148, 0.4) !important;
    color: #fff !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
  }
  
  /* 按钮点击效果 */
  .service-tools .tool-card .btn:active,
  .service-tools .mobile-service-card .btn:active {
    transform: translateY(-1px) scale(0.97) !important;
    box-shadow: 0 4px 10px rgba(0, 68, 148, 0.35) !important;
    transition: all 0.15s ease !important;
  }
  
  /* 添加闪烁脉冲效果 */
  .service-tools .tool-card .btn::before,
  .service-tools .mobile-service-card .btn::before {
    content: '' !important;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    width: 0 !important;
    height: 0 !important;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%) !important;
    border-radius: 50% !important;
    transform: translate(-50%, -50%) !important;
    transition: width 0.6s ease, height 0.6s ease !important;
    z-index: 1 !important;
  }
  
  .service-tools .tool-card .btn:hover::before,
  .service-tools .mobile-service-card .btn:hover::before {
    width: 120px !important;
    height: 120px !important;
  }
  
  /* 确保按钮文字在最上层 */
  .service-tools .tool-card .btn span,
  .service-tools .mobile-service-card .btn span {
    position: relative !important;
    z-index: 2 !important;
  }
  
  /* 添加工具图标 */
  .service-tools .tool-card .btn::after,
  .service-tools .mobile-service-card .btn::after {
    content: "\f0e7" !important; /* Font Awesome 闪电图标 */
    font-family: "Font Awesome 5 Free" !important;
    font-weight: 900 !important;
    margin-left: 6px !important;
    font-size: 11px !important;
    opacity: 0.9 !important;
    transition: all 0.3s ease !important;
    position: relative !important;
    z-index: 2 !important;
    animation: sparkle 2s infinite alternate !important;
  }
  
  .service-tools .tool-card .btn:hover::after,
  .service-tools .mobile-service-card .btn:hover::after {
    transform: rotate(15deg) scale(1.1) !important;
    opacity: 1 !important;
    animation: sparkle 0.8s infinite alternate !important;
  }
  
  /* 闪烁动画 */
  @keyframes sparkle {
    0% {
      opacity: 0.7;
      transform: scale(1);
    }
    100% {
      opacity: 1;
      transform: scale(1.05);
    }
  }
  
  /* 添加边框光效 */
  .service-tools .tool-card .btn:hover {
    animation: borderGlow 1.5s ease-in-out infinite alternate !important;
  }
  
  @keyframes borderGlow {
    0% {
      border-color: rgba(255, 255, 255, 0.3);
      box-shadow: 0 8px 20px rgba(0, 68, 148, 0.4), 0 0 0 0 rgba(0, 86, 179, 0.4);
    }
    100% {
      border-color: rgba(255, 255, 255, 0.6);
      box-shadow: 0 8px 20px rgba(0, 68, 148, 0.4), 0 0 0 4px rgba(111, 66, 193, 0.3);
    }
  }
}

/* 超小屏幕设备优化 */
@media (max-width: 480px) {
  .service-tools .tool-card .btn,
  .service-tools .mobile-service-card .btn {
    padding: 8px 16px !important;
    font-size: 12px !important;
    min-width: 90px !important;
    max-width: 120px !important;
    border-radius: 22px !important;
    letter-spacing: 0.4px !important;
  }
  
  .service-tools .tool-card .btn::after,
  .service-tools .mobile-service-card .btn::after {
    font-size: 10px !important;
    margin-left: 4px !important;
  }
}

/* 极小屏幕设备优化 */
@media (max-width: 360px) {
  .service-tools .tool-card .btn,
  .service-tools .mobile-service-card .btn {
    padding: 7px 14px !important;
    font-size: 11px !important;
    min-width: 85px !important;
    max-width: 110px !important;
    border-radius: 20px !important;
    letter-spacing: 0.3px !important;
  }
  
  .service-tools .tool-card .btn::after,
  .service-tools .mobile-service-card .btn::after {
    font-size: 9px !important;
    margin-left: 3px !important;
  }
}

/* 服务集市模块服务项目标题优化 - 仅限移动端 */
@media (max-width: 767px) {
  /* 服务集市模块服务项目容器 */
  .service-market-section .service-items {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 8px !important;
    margin-bottom: 15px !important;
    padding: 0 5px !important;
  }
  
  /* 服务集市模块服务项目链接 */
  .service-market-section .service-items a {
    padding: 12px 6px !important;
    font-size: 14px !important;
    background-color: #f8f9fa !important;
    border-radius: 8px !important;
    color: #333 !important;
    text-decoration: none !important;
    display: flex !important;
    text-align: center !important;
    border: 1px solid #e9ecef !important;
    transition: all 0.3s ease !important;
    min-height: 44px !important; /* 确保足够的点击区域 */
    align-items: center !important;
    justify-content: center !important;
    font-weight: 500 !important;
    line-height: 1.3 !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05) !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
  }
  
  /* 悬停效果 */
  .service-market-section .service-items a:hover {
    background-color: #e3f2fd !important;
    color: #0056b3 !important;
    border-color: #0056b3 !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 3px 8px rgba(0, 86, 179, 0.15) !important;
  }
  
  /* 点击效果 */
  .service-market-section .service-items a:active {
    transform: translateY(0) !important;
    background-color: #bbdefb !important;
    box-shadow: 0 1px 3px rgba(0, 86, 179, 0.2) !important;
  }
  
  /* 内部span样式 */
  .service-market-section .service-items a span {
    font-size: inherit !important;
    color: inherit !important;
    font-weight: inherit !important;
    line-height: inherit !important;
    display: block !important;
    width: 100% !important;
    text-align: center !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
  }
}

/* 超小屏幕设备优化 */
@media (max-width: 480px) {
  .service-market-section .service-items a {
    padding: 10px 4px !important;
    font-size: 13px !important;
    min-height: 42px !important;
    border-radius: 6px !important;
  }
}

/* 极小屏幕设备优化 */
@media (max-width: 360px) {
  .service-market-section .service-items a {
    padding: 8px 3px !important;
    font-size: 12px !important;
    min-height: 40px !important;
    border-radius: 6px !important;
  }
}

/* 移动端按钮样式优化 */
@media (max-width: 480px) {
    .hero .btn {
        width: auto;
        max-width: none;
        padding: 10px 20px;
        font-size: 0.9rem;
        white-space: nowrap;
        border-radius: 30px; /* 改为椭圆形 */
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
        display: flex;
        align-items: center; /* 垂直居中 */
        justify-content: center; /* 水平居中 */
        height: 38px; /* 固定高度 */
        line-height: 1; /* 重置行高 */
    }
    
    /* 按钮容器样式优化 */
    .hero-buttons {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: flex-start;
        gap: 15px;
        margin-top: 25px;
        width: 100%;
        margin-left: 0;
        margin-right: auto;
        align-items: center; /* 确保按钮垂直对齐 */
    }
}

@media (max-width: 360px) {
    .hero .btn {
        padding: 8px 16px;
        font-size: 0.85rem;
        height: 36px; /* 更小屏幕上稍微减小高度 */
  }
}

/* 特色服务模块 */
.featured-services-section {
  padding: 60px 0;
  background-color: #fff;
  position: relative;
}

.featured-services-section .section-header h2 {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.featured-services-slider-container {
  position: relative;
  margin: 30px 0;
  overflow: hidden;
}

.featured-services-slider {
  position: relative;
  overflow: hidden;
  padding: 10px 0;
}

.featured-services-track {
  display: flex;
  transition: transform 0.5s ease;
  gap: 20px;
}

.featured-service-card {
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.featured-service-image {
  height: 180px;
  overflow: hidden;
  position: relative;
}

.featured-service-content {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.featured-service-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #333;
}

.featured-service-desc {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
  margin-bottom: 0;
  flex-grow: 1;
}

/* 响应式调整 */
@media (max-width: 991px) {
  .featured-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .featured-services-section {
    padding: 40px 0;
  }
  
  .featured-services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .featured-service-image {
    height: 160px;
  }
  
  .featured-service-content {
    padding: 15px;
  }
  
  .featured-service-title {
    font-size: 16px;
  }
}

/* 添加到现有的view-more-button样式中 */
.featured-services-section .view-more-button {
  margin-top: 20px;
}

.featured-service-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
  transition: all 0.3s ease;
}

.featured-service-card-link:hover {
  transform: translateY(-5px);
}

.featured-service-card-link:hover .featured-service-card {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.featured-service-card {
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* 修改原有的悬停效果，移到链接上 */
.featured-service-card-link:hover .featured-service-image img {
  transform: scale(1.05);
}

/* 特色服务滑块样式 */
.featured-services-slider-container {
  position: relative;
  margin-bottom: 30px;
  overflow: hidden;
}

.featured-services-slider {
  position: relative;
  overflow: hidden;
  padding: 10px 0;
}

.featured-services-track {
  display: flex;
  transition: transform 0.5s ease;
  gap: 20px;
}

.slider-nav {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  z-index: 10;
  padding: 0 10px;
  pointer-events: none;
}

.slider-prev,
.slider-next {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.9);
  border: none;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  pointer-events: auto;
  color: #0056b3;
}

.slider-prev:hover,
.slider-next:hover {
  background-color: #0056b3;
  color: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.slider-prev:focus,
.slider-next:focus {
  outline: none;
}

.slider-prev {
  left: 10px;
}

.slider-next {
  right: 10px;
}

.slider-indicators {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.slider-indicator {
  width: 30px;
  height: 4px;
  border-radius: 2px;
  background-color: #ddd;
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-indicator.active {
  background-color: #0056b3;
  width: 40px;
}

.featured-service-card-link {
  flex: 0 0 calc(25% - 15px);
  min-width: calc(25% - 15px);
  text-decoration: none;
  color: inherit;
  display: block;
  transition: all 0.3s ease;
}

@media (max-width: 1200px) {
  .featured-service-card-link {
    flex: 0 0 calc(33.333% - 14px);
    min-width: calc(33.333% - 14px);
  }
}

@media (max-width: 991px) {
  .featured-service-card-link {
    flex: 0 0 calc(50% - 10px);
    min-width: calc(50% - 10px);
  }
}

@media (max-width: 576px) {
  .featured-service-card-link {
    flex: 0 0 calc(100% - 10px);
    min-width: calc(100% - 10px);
  }
  
  .slider-prev,
  .slider-next {
    width: 36px;
    height: 36px;
  }
}

.featured-service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.featured-service-card-link:hover .featured-service-image img {
  transform: scale(1.05);
}

/* 移动端查看更多按钮样式优化 */
.mobile-more-link {
  font-size: 12px;
  padding: 3px 12px;
  border-radius: 20px;
  background-color: #f0f7ff;
  color: #0056b3;
  white-space: nowrap;
  border: 1px solid #0056b3;
  float: right;
  transition: all 0.3s ease;
}

.mobile-more-link:hover {
  background-color: #e0f0ff;
  color: #004b9e;
}

.mobile-more-link i {
  font-size: 10px;
}

/* 统一PC端查看更多按钮样式 */
.section-more-link {
  font-size: 14px;
  font-weight: normal;
  color: #0056b3;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  vertical-align: middle;
  padding: 4px 15px;
  border-radius: 20px;
  border: 1px solid #0056b3;
}

.section-more-link i {
  margin-left: 5px;
  font-size: 12px;
  transition: transform 0.3s ease;
}

.section-more-link:hover {
  color: #004b9e;
  background-color: #f0f7ff;
}

.section-more-link:hover i {
  transform: translateX(3px);
}

/* 标题样式 */
.section-header-with-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  border-bottom: 1px solid #eaeaea;
  padding-bottom: 10px;
  flex-shrink: 0; /* 不参与空间收缩 */
  clear: both;
  width: 100%;
}

.section-header-with-link .news-title {
  flex: 1;
}

.section-header-with-link .section-more-link,
.section-header-with-link .mobile-more-link {
  margin-left: auto;
  float: none;
}

/* 统一PC端查看更多按钮样式 */
.section-more-link {
  font-size: 14px;
  font-weight: normal;
  color: #0056b3;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  vertical-align: middle;
  padding: 4px 15px;
  border-radius: 20px;
  border: 1px solid #0056b3;
}

.section-more-link i {
  margin-left: 5px;
  font-size: 12px;
  transition: transform 0.3s ease;
}

.section-more-link:hover {
  color: #004b9e;
  background-color: #f0f7ff;
}

.section-more-link:hover i {
  transform: translateX(3px);
}

@media (max-width: 576px) {
  .section-more-link {
    font-size: 13px;
    padding: 3px 12px;
  }
  
  .mobile-more-link {
    padding: 2px 10px;
    font-size: 11px;
  }
}

/* 手机端平台动态优化 */
@media (max-width: 767px) {
  .news-container {
    flex-direction: column;
  }
  
  .sidebar-column {
    margin-top: 20px;
  }
  
  .news-card-link {
    flex-direction: column;
  }
  
  .news-card .news-img-wrapper {
    width: 100% !important;
    margin-right: 0 !important;
    margin-bottom: 10px !important;
  }
  
  .policy-item, .random-item {
    padding: 8px 0;
  }
  
  .policy-link, .random-link {
    font-size: 13px;
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
    max-width: calc(100% - 30px);
    vertical-align: middle;
    line-height: 1.4;
    display: inline-block;
  }
  
  .policy-date {
    padding: 2px 6px;
    font-size: 11px;
    margin-right: 6px;
  }
  
  .random-number {
    width: 18px;
    height: 18px;
    line-height: 18px;
    font-size: 11px;
    margin-right: 6px;
    float: left;
    margin-top: 2px;
  }
  
  .random-title {
    display: block;
    padding-left: 24px;
  }
}

/* 小屏幕手机进一步优化 */
@media (max-width: 480px) {
  .policy-link, .random-link {
    max-width: calc(100% - 25px);
    font-size: 12px;
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
  }
  
  .policy-date {
    padding: 1px 5px;
    font-size: 10px;
  }
  
  .random-number {
    width: 16px;
    height: 16px;
    line-height: 16px;
    font-size: 10px;
    margin-top: 1px;
  }
  
  .news-title {
    font-size: 16px;
  }
  
  .random-item {
    padding: 10px 0;
  }
}
