index.scss 1.21 KB
Newer Older
1 2 3 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

body {
  height: 100%;
}
#root {
  height: 100%;
  // background-color: #F5F5F5;
}
.page-body {
  height: 100%;
  // background-color: #F5F5F5;
}

.country-header {
  margin: 0;
  padding: 0 13px;
  font-size: 15px;
  font-family: Hiragino Sans GB;
  font-weight: normal;
  color: #3E3E3E;
  line-height: 28px;
  background-color: #F5F5F5;
}

.country-list {

  .country-item {

    &:nth-child(n+2) {
      border-top: 1px solid #ECECEC;
    }
  }
}

.country-item {
zhanghaozhe committed
36 37
  margin-left: 12px;
  padding-right: 22px;
38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61
}

.country-item__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 50px;
}

.country-name {
  font-size: 15px;
  font-family: Hiragino Sans GB;
  color: #3E3E3E;
}

.country-num {
  font-size: 15px;
  font-family: Hiragino Sans GB;
  color: #555;
}

// NAV
.letter-nav {
  position: fixed;
62 63
  top: 44px;
  bottom: 0;
64
  right: 2px;
65 66 67
  height: 468px;
  margin: auto;
  z-index: 999;
68 69 70 71 72 73 74 75 76 77 78
}

.letter-nav__item {
  width: 12px;
  // height: 12px;
  margin-bottom: 6px;
  font-size: 10px;
  font-family: Hiragino Sans GB;
  color: #0099FF;
  text-align: center;
  line-height: 12px;
79
  cursor: pointer;
80 81 82 83 84 85 86
}

.letter-nav__item--active {
  border-radius: 50%;
  color: #fff;
  background-color: #0099FF;
}