* {
  box-sizing: border-box;
}

body {
  background-color: #f4f7ff;
}

.content {
  padding-top: 126px;
}

.service {
  background-color: #f4f7ff;
  height: 575px;
  width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.title {
  font-weight: 600;
  font-size: 31px;
  color: #000000;
  text-align: center;
  margin-bottom: 72px;
}

.list {
  display: flex;
  justify-content: space-between;
}

.list_item {
  width: 250px;
  height: 240px;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
}

.list_item img {
  width: 75px;
  height: 75px;
}

.textBox {
  display: flex;
  width: 100%;
  padding: 0 45px;
  justify-content: space-between;
}

.item_title {
  font-weight: 600;
  font-size: 19px;
  color: #000000;
  margin-bottom: 18px;
  margin-top: 13px;
}

.text_item {
  font-weight: 600;
  font-size: 13px;
  color: #777777;
  position: relative;
  margin-bottom: 6px;
}

.text_item::before {
  content: '';
  display: block;
  width: 5px;
  height: 5px;
  background-color: #397BE8;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -10px;
  border-radius: 50%;
}