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