/* 公共样式 */
.title {
  font-size: 50px;
  font-weight: bold;
  color: #1d58a9;
}

/* 联系我们 */
.content-box {
  background: #fff;
  width: 100%;
  height: auto;
}

.content-box h1 {
  font-size: 26px;
  color: #151515;
  font-weight: bold;
  padding-bottom: 20px;
  padding-left: 15px;
  position: relative;
  width: 100%;
  margin-top: 50px;
}
.content-box  h1::after {
  content: "";
  position: absolute;
  width: 3px;
  height: 22px;
  background: linear-gradient(to bottom, #71f3da, #4daef4);
  top: 8px;
  left: 2px;
  transform: translate(-50%, 0);
}

.content-box p{
  color: #151515;
  font-size: 20px; 
  line-height: 32px;
}
.content-box img {
	display: block;
	margin: 5px auto;
  margin-bottom: 30px;
}

.content-box ul li {
  padding-left: 20px;
  padding-bottom: 20px;
  line-height: 32px;
  color: #151515;
  font-size: 20px;
  position: relative;
  list-style: none;
}

.content-box ul li::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #9bdfff;
  top: 12px;
  left: 2px;
  transform: translate(-50%, 0);
}

