:root {
    --primary-color: #6366f1;
    --background-color: #FCFCFC;
    --card-background: #FEFEFE;
    --text-color: #333333;
    --border-color: #e5e7eb;
    --sidebar-width: 60px;
    --icon-bg: #1a1a1a;
    --tooltip-bg: #ffffff;
    /* 更新为白色背景 */
    --hover-bg: #f4f4f5;
    /* Added hover background color */
    --active-bg: #000000;
    /* Added active background color */
    --active-icon-color: #ffffff;
    /* Added active icon color */
    --sticky-header-bg: #ffffff;
    /* Added sticky header background color */
    --logo-height: 48px;
    /* Added logo height */
}

/* 字体 */
@font-face {
    font-family: 'alibaba-light';
    src:
        url('../fonts/alibaba-puhuiti-light.woff2') format('woff2'),
        url('../fonts/alibaba-puhuiti-light.woff') format('woff');
    font-display: fallback;
}

@font-face {
    font-family: 'alibaba-regular';
    src:
        url('../fonts/alibaba-puhuiti-regular.woff2') format('woff2'),
        url('../fonts/alibaba-puhuiti-regular.woff') format('woff');
    font-display: fallback;
}

@font-face {
    font-family: 'alibaba-medium';
    src:
        url('../fonts/alibaba-puhuiti-medium.woff2') format('woff2'),
        url('../fonts/alibaba-puhuiti-medium.woff') format('woff');
}

@font-face {
    font-family: 'alibaba-bold';
    src:
        url('../fonts/alibaba-puhuiti-bold.woff2') format('woff2'),
        url('../fonts/alibaba-puhuiti-bold.woff') format('woff');
    font-display: fallback;
}

@font-face {
    font-family: 'alibaba-heavy';
    src:
        url('../fonts/alibaba-puhuiti-heavy.woff2') format('woff2'),
        url('../fonts/alibaba-puhuiti-heavy.woff') format('woff');
    font-display: fallback;
}

/* 全局样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: alibaba-regular, sans-serif;
    display: flex;
    flex-direction: column;
    height: 100vh;
}

/* 顶部固定区域 */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background-color: #fff;
    color: white;
    display: flex;
    align-items: center;
    padding: 0 20px;
    border-bottom: 1px solid var(--border-color);
    z-index: 1001;
    /* 确保在 sidebar 之上 */
}

.header .logo {
    font-size: 1.5rem;
}

.logo {
    height: 95%;
    width: auto;
}

/* 页面主内容布局 */
.main {
    display: flex;
    flex: 1;
    margin-top: 60px;
    /* 给顶部留出空间 */
}

/* 左侧菜单 */
.sidebar {
    position: fixed;
    top: 60px;
    /* 与 header 高度一致 */
    left: 0;
    width: var(--sidebar-width);
    height: calc(100vh - 60px);
    /* 减去 header 的高度 */
    background: #ffffff;
    border-right: 1px solid hsl(var(--border, 0, 0%, 90%));
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.5rem;
}

.sidebar .contact-us {
    margin-top: auto;
    /* 自动占用剩余空间 */
    cursor: auto;
}

.sidebar .contact-us:hover {
    background-color: #E4E4E7;
}

/* 默认隐藏 tooltip */
.tooltip {
    display: none;
    position: absolute;
    background-color: #FEFEFE;
    color: #000;
    padding: 10px;
    border-radius: 5px;
    font-size: 14px;
    /* white-space: nowrap; */
    width: 200px;
    height: 100px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    left: 100%;
    transform: translateY(-50%);
    /* 垂直居中 */
    margin-left: 10px;
    /* 与图标的间距 */
}

/* 鼠标悬停时显示 tooltip */
.nav-item:hover .tooltip {
    display: block;
}

/* 图片样式 */
.tooltip-image {
    width: 50px;
    /* 根据需要调整图片大小 */
    height: auto;
    margin-right: 10px;
    vertical-align: middle;
}

/* 文字样式 */
.tooltip-text {
    vertical-align: middle;
}

.nav-item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background-color: transparent;
    color: #000000;
    text-decoration: none;
    margin-bottom: 0.8rem;
    transition: background-color 0.2s;
    border: 1px solid var(--border-color);
}

.nav-item:hover {
    background-color: var(--hover-bg);
}

.nav-item.active {
    background-color: var(--active-bg);
    border-color: var(--active-bg);
}

.nav-item .icon {
    width: 18px;
    height: 18px;
    stroke: #000000;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
    transition: stroke 0.2s;
}

.nav-item.active .icon {
    stroke: var(--active-icon-color);
}

.nav-item span {
    display: none;
    position: absolute;
    left: calc(100% + 8px);
    background-color: var(--tooltip-bg);
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 14px;
    color: #000000;
    /* 更新为黑色文字 */
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    /* 添加阴影 */
}

.nav-item:hover span {
    display: block;
}

/* 右侧内容 */
.content {
    flex: 1;
    padding: 20px;
    background-color: var(--background-color);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-left: var(--sidebar-width);
    box-sizing: border-box;
}

/* 右侧内容 */
.as-content {
    flex: 1;
    /* padding: 20px; */
    /* background-color: var(--background-color); */
    height: calc(100vh - 140px);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    /* 使 blog-card 垂直排列 */
    align-items: center;
    /* 使 blog-card 水平居中 */
    /* margin-left: var(--sidebar-width); */
    /* 给 sidebar 留出空间 */
    box-sizing: border-box;
    /* 确保 padding 和 border 不会影响宽度 */
}

/* 通用样式 */
.card {
    background-color: var(--card-background);
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin-bottom: 20px;
    width: 100%;
}

/* AI对话样式 */
.ai-chat-content {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    overflow: hidden;
    /* 隐藏滚动条 */
}

/* 上云服务样式 */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
    display: flex;            /* 核心：开启 Flex 布局，子元素默认水平排列 */
    align-items: flex-start;  /* 图标和内容顶部对齐（可根据需求调整，比如 center） */
    gap: 12px;                /* 图标和内容之间的间距，替代 margin 更简洁 */
    background-color: #fff;  
    border: 1px solid #E4E4E7;
    border-radius: 8px;
    padding: 16px;            /* 内边距适度调整，保证移动端也有呼吸感 */
    text-decoration: none;
    color: inherit;
    transition: 
      border-color 0.3s ease,
      box-shadow 0.3s ease,
      transform 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
  transform: translateY(-4px); /* 向上浮动4px */
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12); /* 悬停时阴影加深 */
}

/* 右上角关注人数样式 */
.follow-count.top-right {
  position: absolute;
  top: -10px;
  right: -10px;
  padding: 4px 8px;
  background-color: #f0f7ff; /* 淡蓝色不透明背景 */
  color: #4285f4;
  font-size: 12px;
  border-radius: 4px;
  z-index: 10;
}

/* 数字脉冲动画
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.2); color: #4285f4; }
  100% { transform: scale(1); }
}

.pulse {
  animation: pulse 0.5s;
} */

/* 左侧图标容器 */
.icon-wrapper {
    flex-shrink: 0;
    height: 72px;
    width: 72px;
}

.icon-wrapper img{
    height: 100%;
    width: 100%;
    object-fit: contain; 
}

/* 图标 SVG 样式 */
.service-icon {
  width: 100%; /* 宽度占满容器 */
  height: 100%; /* 高度占满容器（即48px） */
  object-fit: contain; /* 关键：保持图片宽高比，内容适应容器 */
}

/* 右侧内容容器（标题+描述） */
.content-wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* 标题样式 */
.service-card h2 {
  font-family: alibaba-light;
  font-size: 18px;
  color: #09090B;
  margin: 0;
}

/* 描述样式 */
.service-card p {
  font-size: 14px;
  color: #949494;
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

/* 上云服务详情页样式 */
.services-container {
    display: flex;
    gap: 30px;
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    align-items: flex-start;
}

.services-content {
    width: 900px;
    flex-shrink: 0;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
    line-height: 2;
}
  
.services-content p {
    margin-bottom: 10px;
}

/* 右侧侧边栏（保持原有样式） */
.sidebar-right {
    width: 340px;
    flex-shrink: 0;
    line-height: 2;
}
  
.sidebar-right-block {
  width: 100%;
  background-color: #fff;
  margin-bottom: 40px;
  padding: 20px;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
}

.sidebar-right-block:last-child {
  margin-bottom: 0;
}

.sidebar-right-block-title {
  font-family: alibaba-light;
  font-size: 24px;
  letter-spacing: 0;
  color: #4A73B1;
  border-bottom: 0.005rem dashed rgba(0, 0, 0, 0.2);
  padding: 0px 0px 20px;
  margin-bottom: 10px;
}

.sidebar-right-article-link {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 8px 0;
  text-decoration: none;
}

.sidebar-right-article-icon {
  flex-shrink: 0;
  font-size: 16px;
  color: #666;
  transition: color 0.2s;
}

.sidebar-right-article-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sidebar-right-article-title {
  font-family: alibaba-light;
  margin: 0;
  color: #333;
  font-size: 16px;
  transition: color 0.2s;
}

.sidebar-right-article-time {
  font-size: 12px;
  color: #999;
}

.sidebar-right-article-link:hover .sidebar-right-article-icon,
.sidebar-right-article-link:hover .sidebar-right-article-title {
  color: #2196F3;
}

.sidebar-right-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  color: #666;
  text-decoration: none;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  transition: all 0.2s;
  margin-bottom: 12px;
}

.sidebar-right-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
}

.sidebar-right-card-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.sidebar-right-card-title {
  flex: 1;
  line-height: 1.5;
}


/* 表格样式 */
.services-content table {
    width: 100%;
    /* 表格宽度占满父容器 */
    border-collapse: collapse;
    /* 合并边框 */
    margin: 20px 0;
    /* 上下外边距 */
    font-size: 14px;
    /* 设置字体大小 */
}

/* 表格样式 */
.services-content table {
    width: 100%;
    /* 表格宽度占满父容器 */
    border-collapse: collapse;
    /* 合并边框 */
    margin: 20px 0;
    /* 上下外边距 */
    font-size: 14px;
    /* 设置字体大小 */
}

.services-content table th,
.services-content table td {
    padding: 10px;
    /* 单元格内边距 */
    border: 1px solid #ddd;
    /* 单元格边框 */
    text-align: left;
    /* 文本左对齐 */
}

.services-content table th {
    background-color: #f4f4f4;
    /* 表头背景色 */
    font-weight: bold;
    /* 表头字体加粗 */
}

/* 图片样式 */
.services-content img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 20px 0;
}

.m365-service-item {
    display: inline-block;
    border: 1px solid #111;
    height: auto;
    width: 49%;
    box-sizing: border-box;
}

.m365-service-item span {
    font-family: 'alibaba-bold';
    font-size: 16px;
}

/* 关于我们页样式 */
.aboutus-content {
    width: 100%;
    max-width: 900px;
    /* 设置最大宽度 */
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
    line-height: 2;
    /* 设置行距为2倍 */
}

.aboutus-content p {
    margin-bottom: 10px;
}

/* 表格样式 */
.aboutus-content table {
    width: 100%;
    /* 表格宽度占满父容器 */
    border-collapse: collapse;
    /* 合并边框 */
    margin: 20px 0;
    /* 上下外边距 */
    font-size: 14px;
    /* 设置字体大小 */
}

/* 表格样式 */
.aboutus-content table {
    width: 100%;
    /* 表格宽度占满父容器 */
    border-collapse: collapse;
    /* 合并边框 */
    margin: 20px 0;
    /* 上下外边距 */
    font-size: 14px;
    /* 设置字体大小 */
}

.aboutus-content table th,
.aboutus-content table td {
    padding: 10px;
    /* 单元格内边距 */
    border: 1px solid #ddd;
    /* 单元格边框 */
    text-align: left;
    /* 文本左对齐 */
}

.aboutus-content table th {
    background-color: #f4f4f4;
    /* 表头背景色 */
    font-weight: bold;
    /* 表头字体加粗 */
}

.customer-cases {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    /* 图片之间的间距 */
}

.customer-cases img {
    width: 100%;
    height: auto;
    border: 1px solid #ccc;
    /* 灰色边框 */
    box-sizing: border-box;
    /* 确保边框宽度包含在元素的总宽度内 */
    border-radius: 8px;
    /* 可选：给图片添加圆角 */
}

/* 图片样式 */
.aboutus-content img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 20px 0;
}

/* 上云资讯和解决方案样式 */
.blog-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* 卡片链接样式 */
.blog-card-link {
    text-decoration: none;
    /* 去除默认的下划线 */
    color: inherit;
    /* 继承父元素的颜色 */
    display: block;
    /* 使链接占据整个卡片区域 */
}

.blog-card {
    background-color: var(--card-background);
    border: 1px solid #E4E4E7;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    width: 800px;
    box-sizing: border-box;
    transition: border-color 0.3s ease;
    /* 添加过渡效果 */
    min-height: 150px;
    /* 设置最小高度 */
    flex-shrink: 0;
    /* 禁止缩小 */
    flex-grow: 0;
    /* 禁止扩展 */
}

.blog-card:hover {
    border-color: black;
    background-color: #fefefe;
}

.blog-card h2 {
    font-family: alibaba-light;
    font-size: 18px;
    margin-bottom: 10px;
    color: #09090B;
}

.blog-card p.created-at {
    font-size: 12px;
    color: #949494;
    margin-bottom: 10px;
}

.blog-card p.summary {
    font-size: 14px;
    color: #949494;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    /* 限制为两行 */
    -webkit-box-orient: vertical;
    margin-bottom: 0;
}

.blog-card p.summary.placeholder {
    color: transparent;
    height: 34px;
    background-color: rgba(0, 0, 0, 0.05);
    /* 可选：调试用背景 */
}

/* 容器样式 */
.content-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 水平居中 */
    width: 100%;
    max-width: 1200px;
    /* 设置最大宽度 */
    margin: 0 auto;
    /* 居中对齐 */
    padding: 20px;
    box-sizing: border-box;
}

/* 文章信息样式 */
.article-info {
    text-align: center;
    /* 文本居中 */
    margin-bottom: 20px;
}

.article-info h1 {
    font-size: 24px;
    margin-bottom: 10px;
}

.article-info p {
    font-size: 16px;
    color: #333;
}

/* 文章内容样式 */
.article-content {
    width: 800px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
    line-height: 2;
    /* 设置行距为2倍 */
}

.article-content p {
    margin-bottom: 10px;
}

/* 确保图片和视频等媒体内容在卡片内 */
.article-content img,
.article-content video {
    max-width: 100%;
    /* 图片和视频的最大宽度为卡片的宽度 */
    height: auto;
    /* 保持原始宽高比 */
    display: block;
    /* 去除默认的 inline 间距 */
    margin: 20px auto;
    /* 居中显示 */
    border: 1px solid #E4E4E7;
    border-radius: 10px;
}

/* 调整 pre 标签的样式 */
.article-content pre {
    overflow-x: auto;
    /* 如果内容超过宽度，添加水平滚动条 */
    white-space: pre-wrap;
    /* 保留空白符序列，但是正常地进行换行 */
    word-wrap: break-word;
    /* 在长单词或 URL 地址内部进行换行 */
    padding: 10px;
    background-color: #f4f4f4;
    border-radius: 4px;
    margin: 20px 0;
}

/* 表格样式 */
.article-content table {
    width: 100%;
    /* 表格宽度占满父容器 */
    border-collapse: collapse;
    /* 合并边框 */
    margin: 20px 0;
    /* 上下外边距 */
    font-size: 14px;
    /* 设置字体大小 */
}

/* 表格样式 */
.article-content table {
    width: 100%;
    /* 表格宽度占满父容器 */
    border-collapse: collapse;
    /* 合并边框 */
    margin: 20px 0;
    /* 上下外边距 */
    font-size: 14px;
    /* 设置字体大小 */
}

.article-content table th,
.article-content table td {
    padding: 10px;
    /* 单元格内边距 */
    border: 1px solid #ddd;
    /* 单元格边框 */
    text-align: left;
    /* 文本左对齐 */
}

.article-content table th {
    background-color: #f4f4f4;
    /* 表头背景色 */
    font-weight: bold;
    /* 表头字体加粗 */
}

/* 面包屑导航样式 */
#breadcrumb {
    margin-bottom: 20px;
}

.breadcrumb-list {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
}

.breadcrumb-list li {
    display: inline-block;
    margin-right: 5px;
}

.breadcrumb-list a {
    text-decoration: none;
    color: inherit;
    /* 不显示蓝色 */
}

.breadcrumb-list a:hover {
    text-decoration: underline;
}

/* Footer 样式 */
.footer {
    padding: 10px 0;
    text-align: center;
    font-size: 14px;
    margin-top: 20px;
    margin-left: 60px;
}

.footer-content a {
    color: #6c757d;
    text-decoration: none;
}

.footer-content a:hover {
    text-decoration: underline;
}

.page-turning {
    display: flex;
    align-items: center;
}

.page-turning button,
.page-turning input {
    font-family: alibaba-regular;
    font-size: 14px;
    background-color: #fff;
    margin: 5px;
    border: 1px solid #ccc;
    /* 添加边框以更好地分离元素 */
    border-radius: 5px;
    /* 添加圆角 */
    padding: 5px 10px;
    /* 添加内边距以更好地排布 */
}

.page-turning input {
    width: 30px;
    box-sizing: border-box;
    /* 确保宽度包含内边距和边框 */
}

/* 确保按钮的高度与输入框一致 */
.page-turning button {
    height: 30px;
    /* 调整高度以匹配输入框 */
    cursor: pointer;
}

/* 添加悬停效果 */
.page-turning button:hover {
    border-color: #E4E4E7;
    background-color: #fafafa;
}

#backToTopBtn {
    font-family: alibaba-regular;
    display: none;
    /* 初始状态下隐藏按钮 */
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 99;
    /* 确保按钮显示在其他内容之上 */
    border: 1px solid #E4E4E7;
    background-color: white;
    cursor: pointer;
    padding: 15px;
    border-radius: 5px;
    font-size: 14px;
}

#backToTopBtn:hover {
    /* border-color: black; */
    background-color: #fefefe;
}


/* 移动端响适配 */
@media (max-width: 768px) {
    .service-card {
        padding: 16px; /* 减少内边距节省空间 */
        gap: 12px; /* 减少图标和内容之间的间距 */
    }
    
    .icon-wrapper {
        height: 48px; /* 减小图标大小 */
        width: 48px;
    }
    
    .service-card h2 {
        font-size: 16px; /* 减小标题字体大小 */
    }
    
    .service-card p {
        font-size: 13px; /* 减小描述字体大小 */
        -webkit-line-clamp: 3; /* 增加描述显示行数 */
    }

  .content {
    margin-left: 0;
    margin-bottom: 60px;
  }

  .content a {
    display: inline-block;
    max-width: 100%;
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .sidebar {
    position: fixed;
    bottom: 0;
    top: auto;
    width: 100%;
    height: auto;
    flex-direction: row;
    justify-content: space-around;
    border-right: none;
    border-top: 1px solid var(--border-color);
  }

  .nav-item {
    margin-bottom: 0;
    margin-right: 0.8rem;
  }

  .nav-item span {
    display: none;
  }

  .as-content {
    flex: 1;
    height: calc(100vh - 140px);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
  }

  .blog-card,
  .service-card {
    min-width: auto;
    margin-bottom: 10px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .responsive-iframe {
    height: 100%;
    overflow: hidden;
  }

  .nav-item:hover span {
    display: none;
  }

  .article-info p {
    font-size: 13px;
  }

  .article-content {
    padding: 20px;
    margin-bottom: 50px;
    max-width: 100%;
    box-sizing: border-box;
  }

  .article-content p {
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
  }

  .article-content table {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
  }

  .article-content table th,
  .article-content table td {
    padding: 8px;
    border: 1px solid #ddd;
    word-wrap: break-word;
  }

  .article-content img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }

  .article-content table {
    width: 100%;
    overflow-x: auto;
    display: block;
  }

  .article-content table.overflow {
    overflow-x: auto;
    display: block;
  }

  #breadcrumb {
    font-size: 12px;
  }

  .breadcrumb-list p {
    display: inline-block;
    max-width: 48ch;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  #backToTopBtn {
    display: none !important;
  }

  .tooltip {
    left: auto;
    right: 100%;
    top: -110px;
    transform: none;
    margin-left: 0;
    margin-right: 0px;
  }

  .customer-cases img {
    width: 100%;
  }
}

@media (min-width: 768px) {
  .customer-cases img {
    width: calc(25% - 10px);
  }
}


@media (max-width: 768px) { /* 小屏幕断点（如手机） */
    .content {
      padding: 12px; /* 缩小页面内边距，适配小屏幕 */
      margin-left: 0; /* 移除左侧边栏的margin（假设原布局有左侧导航，移动端可能隐藏） */
    }
    .services-container {
      flex-direction: column; /* 关键：改为垂直排列 */
      gap: 20px; /* 调整内容与侧边栏的间距 */
    }
    /* 主要内容区域：宽度适配移动端 */
    .services-content {
      width: 100% !important; /* 覆盖PC端固定宽度900px */
      padding: 20px; /* 缩小内边距（原30px→20px） */
    }
    /* 右侧边栏：宽度适配移动端，显示在主要内容下方 */
    .sidebar-right {
      width: 100% !important; /* 覆盖PC端固定宽度340px */
    }
    /* 侧边栏内的块间距调整 */
    .sidebar-right-block {
      margin-bottom: 20px; /* 原40px→20px */
    }
    /* 标题字体缩小，适配小屏幕 */
    .services-content h2 {
      font-size: 18px; /* 原可能为24px，根据实际调整 */
    }
    /* 正文字体缩小，行高更紧凑 */
    .cloud-service-text {
      font-size: 14px;
      line-height: 1.7; /* 原line-height: 2可能过松 */
    }
    /* 图片适配（确保不溢出） */
    .services-content img {
      width: 100% !important; /* 强制图片宽度占满容器 */
      height: auto !important;
    }
  }