/* 关于我们 */
.ComponentBox {
  display: flex;
  width: 1280px;
}

.Component {
  width: 1280px;
  margin-top: 20px;
}

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

.Nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #666;
}

.Nav a:hover {
  color: #3848a0;
  font-weight: bold;
}

.NavIcon {
  display: flex;
}

.NavIcon svg {
  width: 20px;
  height: 20px;
}

.NavTitle h1 {
  font-size: 20px;
  font-weight: inherit;
}

.AboutUsBox {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
}

.AboutUsBox h1,
.AboutUsBox h2 {
  color: #3848a0;
}

.AboutUsBox p {
  margin: 10px 0;
  font-size: 20px;
  text-indent: 2em;
  line-height: 2em;
  text-align: justify;
  color: #000;
}

.Contents {
  background: #deeaf6;
  border-left: 5px solid #3b82f6;
  padding: 1rem;
  margin: 10px 0;
  border-radius: 5px;
}

.Contents h2 {
  color: #3848a0;
}