/* xiangqing.css - 案例页面个性化样式 */
/* 修改整体背景颜色和文字颜色 */
body {
  background-color: #d82d01 !important;  /* 暖白背景，可改为任何颜色 */
  color: #969696 !important;            /* 深绿色文字 */
}

/* 页面主标题颜色 */
.case-detail h1 {
  color: #dcdcdc !important;
  font-size: 2.2rem;
  letter-spacing: 2px;
}

/* 展示区域的文字内容 */
.text-content {
  color: #c8c8c8 !important;
  font-size: 1rem;
  line-height: 1.6;
}

/* 下载按钮和文件列表样式调整 */
.dynamic-download-button,
.download-button {
  background-color: #9b6a3c !important;
  border: none;
}
.dynamic-download-button:hover,
.download-button:hover {
  background-color: #7a4c2a !important;
}

/* “返回首页”链接颜色 */
.back-link {
  color: #9b6a3c !important;
}
.back-link:hover {
  color: #dac1aa !important;
}

/* 媒体网格间距 */
.media-grid {
  gap: 24px;
}