.article-banner-container-detail {
  padding: 78px 100px 60px;
}
/* 通用容器样式 */
.detail-section-container {
  padding: 80px;
  background-color: var(--bg-color-light);
}
.detail-content-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  gap: 32px;
  align-items: flex-start;
}
.detail-content {
  flex: 1;
  padding: 32px;
  border-radius: 12px;
  background-color: var(--bg-color);
  overflow: auto;
}

.detail-content img{
  max-width: 100%;
  height: auto !important;
}
.detail-section-container h1 {
  font-weight: 700;
  font-size: 30px;
  line-height: 37.5px;
  min-height: 38px;
}
.detail-content-title {
  box-sizing: border-box;
  border-bottom: 1px solid var(--bg-color-light);
  height: 37px;
  margin-top: 16px;
  margin-bottom: 16px;
  padding: 0 0 16px;
}
.detail-content-title span {
  color: var(--text-light1);
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
}

.detail-other-article{
  width: 470px;
  padding: 24px;
  border-radius: 12px;
  background-color: var(--bg-color);
  /* 确保高度由内容撑开 */
  height: auto;
  min-height: 0;
  flex-shrink: 0;
}
.detail-section-container h3 {
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 24px;
}
.article-item a {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: var(--primary-color);
  margin-bottom: 4px;
  display: block;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.article-item p {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: var(--text-light1);
  margin-bottom: 16px;
}

@media (max-width: 1200px) {
  /* 案例部分撑满 */
  .detail-content {
    width: 100%;
  }
  /* 隐藏其他案例 */
  .detail-other-article{
    display: none;
  }
}

/* 加载中动画 */
.loading-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  gap: 16px;
}
.loading-spinner {
  width: 40px;
  height: 40px;
  border: 4px solid #f3f3f3;
  border-top: 4px solid #3498db;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.loading-icon p {
  color: #666;
  font-size: 14px;
  margin: 0;
}
