pop_up.wxss 784 Bytes
/* components/resources/pop_up/pop_up.wxss */

.pop_up {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.pop_content {
  width: 70%;
  position: relative;
}


.pop_bd {
  width: 100%;
  background-color: #fff;
  border-radius: 15rpx;
  text-align: center;
  box-sizing: border-box;
  overflow: hidden;
  padding-top: 40rpx;
}

.linView {
  margin-top: 20rpx;
  background-color: #e0e0e0;
  height: 2rpx;
}
.okBtn {
  background-color: #fff;
  margin: 0;
  padding: 0;
}
.okBtn::after {
  border-radius: 0;
  border: 0;
}


.pop_title {
    font-size: 36rpx;
}
.pop_btn {
  text-align: center;
}

.hide {
    display: none;
}