:root {
  --bs-body-bg: #fff;
}
.news {
  max-width: var(--maxWidth);
  margin: auto;
  padding: 100px 0;
}
.news .title {
  font-size: 26px;
  font-weight: 600;
  color: #000000;
  line-height: 37px;
}
.news .detail {
  margin-bottom: 40px;
}
.news .detail p {
  font-size: 16px;
  color: #434247;
  line-height: 32px;
  margin-top: 20px;
}
.news .detail p a {
  color: #007DBA;
  text-decoration: underline;
}
.news .detail .imgCon {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 30px;
}
.news .detail .imgCon img {
  width: 48%;
}
.news .detail .imgCon img:only-child {
  margin: auto;
}
.news .detail img {
  max-width: 100%;
}
@media (max-width: 768px) {
  .news {
    padding: 40px 15px;
  }
  .news .title {
    font-size: 18px;
    line-height: 30px;
  }
  .news .detail {
    margin-bottom: 20px;
  }
  .news .detail p {
    font-size: 14px;
    margin-top: 10px;
  }
  .news .detail .imgCon {
    margin-top: 15px;
  }
}
