SelectCampus.scss 1.62 KB
Newer Older
姜雷 committed
1 2
.Location {
  background-color: #fff;
3
  height: 100%;
姜雷 committed
4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
  .searchBox {
    display: flex;
    height: 90px;
  }
  .searchInput {
    box-sizing: border-box;
    flex: 1;
    padding-left: 20px;
    height: 80px;
    line-height: 80px;
    border: 2px solid #f0f0f0;
    border-radius: 8px;
    word-break: break-all;
    margin-top: 16px;
    margin-left: 40px;
    width: 550px;
    height: 56px;
  }
  .searchBtn {
    height: 90px;
    line-height: 90px;
    margin-left: 24px;
    margin-right: 40px;
    font-size: 30px;
    color: #456beb;
  }
  .searchIcon {
    width: 30px;
    height: 30px;
    margin-right: 10px;
    vertical-align: middle;
  }
  .infoBar {
    position: fixed;
38
    z-index: 2;
姜雷 committed
39 40 41 42 43 44 45 46 47 48 49 50 51
    top: 262px;
    right: 30px;
    width: 40px;
    text-align: center;
    font-size: 26px;
    color: #666;
  }
  .infoItem {
    height: 50px;
    line-height: 50px;
  }
  .infoToast {
    position: fixed;
52
    z-index: 2;
姜雷 committed
53 54 55
    width: 180px;
    height: 180px;
    line-height: 180px;
56 57
    background-color: #a2b5f5;
    border-radius: 8px;
姜雷 committed
58 59 60 61 62 63 64 65 66 67 68 69 70 71
    left: 9999px;
    top: 480px;
    margin-left: -90px;
    text-align: center;
    font-size: 116px;
    color: #fff;
    opacity: 0;
    transition: opacity 500ms;
  }
  .show {
    opacity: 1;
    left: 50%;
  }
  .locationList {
72
    height: calc(100vh - 90rpx);
姜雷 committed
73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91
  }
  .locationTitle {
    padding: 0 40px;
    height: 70px;
    line-height: 70px;
    background-color: #ebebeb;
    font-size: 26px;
    color: #999;
  }
  .locationItem {
    width: 530px;
    line-height: 80px;
    margin: 0 auto;
    font-size: 30px;
    color: #444;
    border-bottom: 2px solid #ebebeb;
    word-break: break-all;
  }
}