.area-title-bar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.area-title-bar::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: var(--color-primary);
}
.area-title-bar .tit {
  background-color: var(--color-primary);
  font-weight: 500;
  color: #fff;
  text-align: center;
}
.area-title-bar .more {
  font-weight: bold;
}
.area-title-bar .more.active {
  opacity: 0.6;
}
.area-title-bar .more.active .fa-angles-down {
  transform: rotate(180deg);
}

.web .left {
  width: 330px;
}
.web .cities {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}
.web .cities a {
  display: block;
  height: 48px;
  padding: 0 8px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  line-height: 48px;
  text-align: center;
  background-color: #fff;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition-duration: 300ms;
}
.web .cities a.active {
  color: #fff;
  background-color: var(--color-primary);
}
.web .cities a:not(.active):hover {
  background-color: #E2EBFF;
}
.web .cities + .cities {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(53, 54, 53, 0.04);
}
.web .area-title-bar::after {
  height: 3px;
}
.web .area-title-bar .tit {
  min-width: 150px;
  padding-right: 56px;
  border-top-right-radius: 60px;
  height: 40px;
  font-size: 20px;
  line-height: 40px;
}

.mobile .area-title-bar::after {
  height: 1px;
}
.mobile .area-title-bar .tit {
  min-width: 90px;
  padding-right: 26px;
  border-top-right-radius: 40px;
  height: 32px;
  font-size: 16px;
  line-height: 32px;
}
.mobile .cities {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}
.mobile .cities a {
  display: block;
  height: 40px;
  padding: 0 8px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  line-height: 40px;
  text-align: center;
  background-color: #E2EBFF;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.mobile .cities a.active {
  color: #fff;
  background-color: var(--color-primary);
}
.mobile .cities + .cities {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(53, 54, 53, 0.04);
}