#util .popCenter {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s linear;
  z-index: -1;
}
#util .popCenter .body {
  background-color: #FFFFFF;
  width: 80%;
  height: 80%;
  border-radius: 10px;
  padding: 30px;
  box-sizing: border-box;
  overflow: hidden;
}
#util .popCenter .body .title {
  font-weight: bold;
  font-size: 30px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#util .popCenter .body .title .close {
  width: 20px;
}
#util .popCenter .body .subtit {
  color: gray;
  margin: 20px 0;
  display: flex;
  align-items: center;
}
#util .popCenter .body .subtit span {
  margin-right: 10px;
}
#util .popCenter .body .subtit img {
  margin-right: 10px;
}
#util .popCenter .body .subtit div {
  display: flex;
  flex-direction: column;
}
#util .popCenter .body .content {
  overflow-y: scroll;
  height: 85%;
}
#util .Tips {
  background-color: rgba(0, 0, 0, 0.6) !important;
  padding: 20px 30px;
  color: #fff;
  border-radius: 10px !important;
  width: 300px;
  position: fixed;
  top: calc(50% - 13px);
  left: calc(50% - 150px);
  text-align: center;
  font-size: 24px;
  transition: opacity 0.5s;
  opacity: 0;
  z-index: -1;
}

/*# sourceMappingURL=util.css.map */
