#body .sort-bar {
  width: 90vw;
  margin: 1rem auto 0;
  display: none;
  justify-content: flex-end;
}
#body .sort-bar.visible {
  display: flex;
}
#body .btn-sort-distance {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 14px;
  border: 1px solid #479ee2;
  background: #fff;
  color: #479ee2;
  border-radius: 16px;
  cursor: pointer;
  font-size: 0.8rem;
  transition: all 0.3s;
  white-space: nowrap;
}
#body .btn-sort-distance:hover {
  background: rgba(71, 158, 226, 0.08);
}
#body .btn-sort-distance.active {
  background: #479ee2;
  color: #fff;
  cursor: default;
}
#body .list {
  width: 90vw;
  margin: 1rem auto 0;
  padding-top: 2rem;
  padding-bottom: 2rem;
}
#body .list .item {
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  border-radius: 5px;
  padding: 1rem 0.5rem;
  padding-left: 1rem;
  margin-bottom: 1rem;
}
#body .list .item:last-child {
  margin-bottom: 0;
}
#body .list .item .item-title {
  font: "PingFangSC Medium";
  color: #479ee2;
  margin-bottom: 0.75rem;
}
#body .list .item .business-hours {
  display: flex;
  flex-direction: row;
  gap: 6px;
}
#body .list .item .business-hours svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  fill: #479ee2;
  margin-top: 4px;
}
#body .list .item .business-hours p {
  margin: 0;
  font: 0.75rem "PingFangSC Regular";
  color: #999999;
  line-height: 24px;
  flex: 1;
  white-space: pre-line;
}
#body .list .item .address-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
#body .list .item .address-wrapper br {
  display: none;
}
#body .list .item .address-wrapper svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  fill: #479ee2;
  margin-top: 4px;
}
#body .list .item .address-wrapper p {
  margin: 0;
  font: 0.75rem "PingFangSC Regular";
  color: #999;
  line-height: 24px;
  flex: 1;
  margin-left: 6px;
  white-space: pre-line;
}
#body .list .item .station-bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.75rem;
  padding-top: 0.5rem;
  border-top: 1px solid #f0f0f0;
  min-height: 32px;
  visibility: hidden;
}
#body .list .item .station-bottom-row.visible {
  visibility: visible;
}
#body .list .item .station-bottom-row .station-distance {
  font-size: 0.8rem;
  color: #ff6600;
  font-weight: bold;
  white-space: nowrap;
}
#body .list .item .station-bottom-row .btn-navigate {
  display: inline-flex;
  visibility: visible;
  align-items: center;
  gap: 4px;
  padding: 4px 12px;
  border: 1px solid #479ee2;
  background: #fff;
  color: #479ee2;
  border-radius: 15px;
  cursor: pointer;
  font-size: 0.75rem;
  text-decoration: none;
  transition: all 0.3s;
  white-space: nowrap;
}
