.content {
  background-color: #fff;
  height: 100vh;
  width: 100vw;
  overflow: hidden;
}

.title {
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  height: 56px;
  line-height: 56px;
  background-color: #fff;
}

.box {
  display: flex;
}

.nav {
  width: 25vw;
  height: calc(100vh - 56px);
  overflow-y: scroll;
  box-sizing: content-box;
  background-color: #fff;
}

.city {
  display: flex;
  background-color: #f1f3f5;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-size: 14px;
  padding: 0 16px;
  height: 56px;
  text-align: center;
  white-space: normal;
  word-break: break-all;
}

.city.activebefore {
  border-bottom-right-radius: 16px;
}

.city.active {
  color: #0A59F7;
  background-color: #fff;
}

.city.activeafter {
  border-top-right-radius: 16px;
}

.text {
  width: 75vw;
  height: calc(100vh - 48px);
  overflow-y: scroll;
  padding: 0 16px 0 24px;
}

.textitem {
  padding: 10px 0 11px 0;
  border-bottom: 1px solid #f1f3f5;
}

.text-city {
  font-size: 16px;
  font-weight: 500;
}

.text-msg {
  color: rgba(0, 0, 0, 0.6);
  font-size: 14px;
  margin-top: 2px;
}

.textitem:last-child {
  border-bottom: none;
  margin-bottom: 12px;
}

.tip {
  background-color: #f1f3f5;
  padding: 16px 24px 24px;
  border-bottom-left-radius: 24px;
  border-bottom-right-radius: 24px;
}

.tiptitle {
  font-size: 14px;
  font-weight: bold;
  text-align: center;
}

.tipq {
  margin-top: 6px;
  margin-bottom: 2px;
  font-size: 13px;
  font-weight: 500;
}

.tipa {
  color: rgba(0, 0, 0, 0.7);
}

.circle {
  height: 12px;
  width: 12px;
  position: absolute;
  left: 0px;
  top: 2px;
}

.circle2 {
  top: 3px;
}

.blue {
  color: #0A59F7;
}

.greyColor {
  color: rgba(143, 143, 143, 0.6);
}

.hide {
  display: none;
}

.tipa_idx {
  font-size: 12px;
}

.tipq-last {
  position: relative;
}

.tipq-last-text {
  margin-left: 15px;
}

.darkTheme {
  color: #fff;
  background: #000;
}

.darkTheme .content,
.darkTheme .title,
.darkTheme .nav,
.darkTheme .city.active {
  background-color: #000;
}

.darkTheme .city,
.darkTheme .tip,
.darkTheme .inp  {
  background-color: #202224;
}

.darkTheme .text-msg {
  color: rgba(255, 255, 255, 0.6);
}

.darkTheme .tipa, .darkTheme .inp {
  color: rgba(255, 255, 255, 0.7);
}

.darkTheme .textitem {
  border-bottom: 1px solid #202224;
}

.darkTheme .blue, .darkTheme .city.active {
  color: #5291FF
}

.inp{
  border-radius: 10px;
  background-color: #eff2f1;
  height: 40px;
  width: 100%;
  border: 0px;
  box-sizing: border-box;
  padding: 0px 35px;
  font-size: 16px;
}
.inputBox{
  width: 90%;
  position: relative;
  height: 40px;
  margin: 16px auto 0;
}
.search-img{
  position: absolute;
  left: 8px;
  top: 10px;
  width: 20px;
  height: 20px;
}
input:focus{
  outline: none;
}

.boxErr {
  display: none;
  font-size: 16px;
  text-align: center;
  margin: 60px auto;
}

.fs-12 {
  font-size: 12px;
}