/* components/popup/popup.wxss */
.popup {
  z-index: 9;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.popup-container {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 80%;
  max-width: 600rpx;
  border: 2rpx solid #ccc;
  border-radius: 20rpx;
  box-sizing: bordre-box;
  transform: translate(-50%, -50%);
  overflow: hidden;
  background: rgba(250, 250, 250, 1);
}

.popup-title {
  width: 100%;
  padding: 20rpx;
  text-align: center;
  font-size: 40rpx;
  border-bottom: 2rpx solid red;
}

.popup-con {
  margin: 36rpx 10rpx;
  text-align: center;
}

.popup-con image {
  width: 196rpx;
  height: 196rpx;
}

.popup-btn {
  display: flex;
  justify-content: space-around;
}

.popup-btn text {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50%;
  height: 106rpx;
  border-top: 2rpx solid #ededed;
}
.popup-btn .btn-no {
  border-right: 2rpx solid #ededed;
}
