.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;
  }