.city-page {
  width: 100%;
  overflow: hidden;
  .list-wrap {
    height: 224px;
    .list {
      position: relative;
      display: flex;
      width: 400px;
      .title {
        margin-top: 5px;
        width: 10%;
      }
      .cities {
        position: relative;
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-start;
        width: 90%;
        .city-wrap {
          box-sizing: border-box;
          display: inline-block;
          width: 70px;
          line-height: 1.5em;
          overflow: hidden;
          text-overflow:ellipsis;
          white-space: nowrap;
          padding: 5px;
          font-size: 12px;
          &:hover {
            cursor: pointer;
              background-color: $theme;
              background-color: var(--theme);
              color: #fff;
          }
        }
      }
    }
  }
  .pagination {
    text-align: right;
  }
}