* {
  box-sizing: border-box;
}
.agency-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 37px;
  padding: 20px 18px;
}
.agency-list .agency-line {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 180px;
  color: #2b2b2b;
  cursor: pointer;
}
.agency-list .agency-line img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
}
.agency-list .agency-line span {
  margin-top: 10px;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
}
.base-list {
  width: 870px;
  margin-top: 20px;
}
.base-list .base-line {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 16px 12px;
  border-bottom: 1px solid hsla(0, 0%, 0%, 0.1);
}
.base-list .base-line:hover {
  text-decoration: none !important;
  cursor: pointer;
}
.base-list .base-line:hover .has-href {
  text-decoration: underline;
  color: #c01639 !important;
}
.base-list .base-line img {
  width: 140px;
  height: 79px;
  background: #fefefe;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.15);
}
.base-list .base-line .base-info {
  width: 320px;
}
.base-list .base-line .base-info .base-name {
  font-weight: bold;
  font-size: 16px;
  color: #000000;
  line-height: 22px;
}
.base-list .base-line .base-info .base-location {
  display: flex;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.5);
  line-height: 20px;
}
.base-list .base-line .base-info .base-location span {
  min-width: 50px;
  margin-top: 10px;
}
.base-list .base-line .base-intro {
  width: 268px;
  height: 100%;
  font-size: 14px;
  color: #000000;
  line-height: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}
