index.scss 811 Bytes
Newer Older
xuzhenghua committed
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 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50
.rule-popup__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .5);
  z-index: 999;

  .iconfont {
    margin: 16px 0 0;
    font-size: 24px;
    color: #fff;
    cursor: pointer;
  }
}

.rule-popup {
  width: 300px;
  height: 323px;
  padding: 20px 0 0;
  border-radius: 10px;
  box-sizing: border-box;
  text-align: center;
  background-color: #fff;
}

.rule-popup__title {
  margin: 0 0 15px;
  font-size: 16px;
  font-weight: 500;
  color: #525C65;
  text-align: center;
  line-height: 1;
}

.rule-popup__list {
  padding: 0 20px;
}

.rule-popup__item {
  font-size: 14px;
  color: rgba(82, 92, 101, .9);
  text-align: left;
  line-height: 21px;
}