/*==================================================================================
    Custom Stylesheet (Any custom styling you want to apply should be defined here).
====================================================================================*/

.header {
  margin-bottom: 0px; /* 增加顶部菜单和标题之间的间距 */
  background-color: #fff; /* 确保菜单背景色为白色 */
}

#about-us {
  position: relative;
  color: #333;
  padding-top: 40px; /* 减少顶部内边距 */
  padding-bottom: 40px; /* 减少底部内边距 */
  background-image: url('static/images/beijing.png'); /* 添加背景图片 */
  background-size: cover;
  background-position: center;
  background-color: white; /* 设置背景颜色为白色 */
}

#about-us .section-title {
  margin-top: 30px; /* 向上移动标题 */
}

#about-us .section-title h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #333;
}

#about-us .content-box {
  background-color: rgba(255, 255, 255, 0.8); /* 浅灰色背景 */
  padding: 20px;
  border-radius: 10px;
  max-width: 100%; /* 确保框架宽度最大化 */
  text-align: left; /* 整体靠左显示 */
  border: 1px solid #ccc; /* 添加描边 */
  margin-top: 20px; /* 向上移动框架 */
}

#about-us .content-box p {
  font-size: 16px; /* 调整字体大小 */
  color: #333;
  text-align: left; /* 整体靠左显示 */
  text-indent: 2em; /* 首行缩进2个字符 */
}

#new-section .content-box p {
  font-size: 1.25rem;
  color: #333;
  text-align: left; /* 整体靠左显示 */
  text-indent: 2em; /* 首行缩进2个字符 */
}

.d-flex {
  display: flex;
}

.justify-content-center {
  justify-content: center;
}

.partner-logo {
  max-width: 100%;
  height: 100px; /* 统一高度 */
  object-fit: contain; /* 保持图片比例 */
  margin-bottom: 20px;
}

.row text-center {
  text-align: center;
}

.profit-box {
  height: 100%; /* 确保框架高度一致 */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}