/* 公共样式 */
.title {
  font-size: 50px;
  font-weight: bold;
  color: #1d58a9;
}

/* 联系我们 */
.blh-box {
  background: #fff;
  width: 100%;
  height: auto;
}
.blh-box .contact-list {
  background: #f5f8fa;
  padding: 30px;
  border-radius: 20px;
}

.blh-box .contact-list .contact-list-item {
  width: 100%;
  height: 200px;
  padding: 30px;
  border-radius: 12px;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  border-bottom: 2px solid #ebf0f3;
}
.blh-box .contact-list .contact-list-item:last-child {
  border: none;
}

.blh-box .contact-list .contact-list-item h4 {
  font-size: 22px;
  color: #151515;
  font-weight: bold;
  padding-bottom: 12px;
  position: relative;
  width: 100%;
}
.blh-box .contact-list .contact-list-item h4::after {
  content: "";
  position: absolute;
  width: 36px;
  border-radius: 3px;
  height: 4px;
  background-color: #4d97f8;
  bottom: 2px;
  left: 20px;
  transform: translate(-50%, 0);
}
.blh-box .contact-list .contact-list-item div {
  width: 35%;
	margin-top: 30px;
	padding-left: 70px;
	position: relative;
}
.blh-box .contact-list .contact-list-item div::before {
  content: "";
  width: 56px;
  height: 56px;
  background: url(../images/concat.png);
  background-size: 55px 130px;
  background-position: 1px -1px;
  position: absolute;
  left: 0;
  top: 28px;
  transform: translate(0, -50%);
}
.blh-box .contact-list .contact-list-item div.email::before {
	background-position: 1px -70px;
}

.blh-box .contact-list .contact-list-item div p {
	color: #151515;
	font-size: 20px;
	font-weight: bold;
	padding-bottom: 5px;
}
.blh-box .contact-list .contact-list-item div span {
	font-size: 18px;
	color: #151515;
}
