.popup-cover {
  display: none;
  background: rgba(128, 128, 128, 0.43);
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 55;
}
.popup .popup-container {
  min-height: 200px;
  background: #fff;
  box-shadow: 8px 8px 16px 0px rgba(0, 0, 0, 0.08);
  border-radius: 20px;
  overflow: hidden;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  z-index: 60;
  opacity: 1;
  transition: all 0.3s ease-in-out;
}
.popup .popup-container.show {
  transform: translate(-50%, -50%) scale(1);
}
.popup .popup-container .close {
  display: block;
  width: 28px;
  height: 28px;
  line-height: 28px;
  font-size: 22px;
  color: #ccc;
  text-align: center;
  cursor: pointer;
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 65;
}
.popup .popup-container .btns {
  display: flex;
  justify-content: center;
  gap: 0 26px;
}
.popup .popup-container .btns .btn {
  width: 140px;
  background: #1259F0;
  line-height: 38px;
  font-size: 14px;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  cursor: pointer;
}
.popup .popup-container .btns .btn.cancel {
  background-color: #ccc;
  color: #333;
}
.popup.coming .close {
  color: #87AAEB;
  font-size: 28px;
}
.popup.coming .popup-content {
  width: 643px;
  height: 100%;
  background: url(/assets/images/medical/activity/bg-activity-coming.png) no-repeat center center;
  background-size: 100% auto;
  padding-top: 55px;
  padding-bottom: 49px;
  font-size: 0;
  text-align: center;
  position: relative;
}
.popup.coming .popup-content .popup-title {
  line-height: 44px;
  font-size: 40px;
  font-family: YouShe;
  color: #1B1B1B;
  text-shadow: 1px 1px 2px rgba(201, 100, 7, 0.4);
  position: relative;
}
.popup.coming .popup-content .popup-title span {
  color: #1259F0;
}
.popup.coming .popup-content .popup-title.icon {
  display: inline-block;
  margin-bottom: 38px;
}
.popup.coming .popup-content .popup-title.icon::after {
  content: '';
  width: 45px;
  height: 56px;
  background: url(/assets/images/medical/activity/icon-up.png) no-repeat center center;
  background-size: 100%;
  position: absolute;
  top: 4px;
  right: -29px;
}
.popup.coming .popup-content .text {
  line-height: 24px;
  font-size: 18px;
  color: #4D4D4D;
  margin-bottom: 14px;
}
.popup.coming .popup-content .text span {
  font-weight: bold;
  color: #FF8311;
}
.popup.coming .popup-content .tip {
  line-height: 21px;
  font-size: 16px;
  color: #1259F0;
  margin-top: 37px;
}
.popup.coming .popup-content .tip .iconfont {
  margin-left: 11px;
  font-size: 12px;
  vertical-align: top;
}
.popup.coming .popup-content .code {
  width: 88px;
  height: 88px;
  background: rgba(243, 248, 254, 0.8);
  box-shadow: 3px 3px 6px 0px rgba(43, 67, 188, 0.06);
  padding: 9px;
  position: absolute;
  right: 24px;
  bottom: 24px;
}
.popup.coming .popup-content .code img {
  width: 100%;
}
.popup.result .popup-content,
.popup.buy .popup-content,
.popup.change .popup-content {
  width: 430px;
  padding-top: 40px;
}
.popup.result .popup-content .content-text,
.popup.buy .popup-content .content-text,
.popup.change .popup-content .content-text {
  height: 164px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.popup.result .popup-content .content-text .text1,
.popup.buy .popup-content .content-text .text1,
.popup.change .popup-content .content-text .text1 {
  line-height: 21px;
  font-size: 16px;
  color: #1A1A1A;
  text-align: center;
}
.popup.result .popup-content .content-text .text1 span,
.popup.buy .popup-content .content-text .text1 span,
.popup.change .popup-content .content-text .text1 span {
  font-weight: bold;
  color: #FF8311;
}
.popup.result .popup-content .content-text .text2,
.popup.buy .popup-content .content-text .text2,
.popup.change .popup-content .content-text .text2 {
  display: none;
  line-height: 18px;
  font-size: 14px;
  color: #808080;
  text-align: center;
  margin-top: 17px;
}
.popup.change .popup-content .content-text .text1:last-child {
  margin-top: 28px;
}
.popup.list .popup-content {
  width: 430px;
  max-height: 526px;
  padding: 42px 0;
  display: flex;
  flex-direction: column;
}
.popup.list .popup-content .title {
  line-height: 24px;
  font-size: 18px;
  font-weight: bold;
  color: #1A1A1A;
  text-align: center;
}
.popup.list .popup-content .no-data {
  display: none;
  height: auto;
  padding: 0;
}
.popup.list .popup-content .no-data .img {
  width: 230px;
  height: 270px;
  background: url(/assets/images/common/no-data-new.png) no-repeat center center;
  background-size: 230px auto;
  margin: 0 auto;
}
.popup.list .popup-content .no-data .tips {
  line-height: 18px;
  font-size: 14px;
  color: #808080;
  text-align: center;
}
.popup.list .popup-content .list-content {
  flex: 1;
  overflow-y: auto;
  padding: 0 16px;
  margin-top: 30px;
}
.popup.list .popup-content .list-content .list-item {
  padding: 18px 26px;
  position: relative;
}
.popup.list .popup-content .list-content .list-item:nth-child(2n-1) {
  background: #F3F7FE;
  border-radius: 6px;
}
.popup.list .popup-content .list-content .list-item .name {
  line-height: 18px;
  font-size: 14px;
  color: #1A1A1A;
}
.popup.list .popup-content .list-content .list-item .name .status {
  display: inline-block;
  vertical-align: text-bottom;
  background: #FF8311;
  line-height: 16px;
  font-size: 12px;
  color: #fff;
  padding: 0 12px;
  margin-left: 8px;
  border-radius: 6px;
}
.popup.list .popup-content .list-content .list-item .name .status.success {
  background: #0ABBA8;
}
.popup.list .popup-content .list-content .list-item .name .status.fail {
  background: #ccc;
}
.popup.list .popup-content .list-content .list-item .time {
  line-height: 18px;
  font-size: 14px;
  color: #4D4D4D;
  margin-top: 8px;
}
.popup.list .popup-content .list-content .list-item .tip {
  line-height: 18px;
  font-size: 14px;
  color: #808080;
  margin-top: 12px;
  padding-left: 14px;
  position: relative;
}
.popup.list .popup-content .list-content .list-item .tip::before {
  content: '';
  width: 5px;
  height: 5px;
  background: #ccc;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 7px;
}
.popup.list .popup-content .list-content .list-item .result {
  line-height: 18px;
  font-size: 14px;
  color: #1A1A1A;
  position: relative;
  position: absolute;
  right: 15px;
  top: 31px;
}
.popup.list .popup-content .list-content .list-item .result span {
  color: #FF8311;
}
.popup.reservation {
  background: #FFFFFF;
  border-radius: 4px 4px 4px 4px;
}
.popup.reservation .popup-container {
  width: 464px;
  height: 647px;
  border-radius: 4px;
}
.popup.reservation .popup-container .popup-content {
  width: auto;
  height: auto;
  padding-top: 32px;
}
.popup.reservation .popup-container .popup-content .content-text {
  height: auto;
}
.popup.reservation .popup-container .popup-content .content-text .reservation-title {
  height: 32px;
  font-weight: 400;
  font-size: 24px;
  color: #080B31;
  line-height: 32px;
}
.popup.reservation .treservation-title {
  height: 32px;
  font-weight: 400;
  font-size: 24px;
  color: #080B31;
  text-align: center;
  line-height: 32px;
}
.popup.reservation img.reservation {
  display: block;
  width: 400px;
  height: 527px;
  margin: 32px auto 0;
}
.popup.reservation.file {
  background: #FFFFFF;
  border-radius: 4px 4px 4px 4px;
}
.popup.reservation.file .popup-container {
  width: 622px;
  height: 356px;
  background: url('/assets/images/common/Frame 3467113@2x.png') no-repeat left center;
  background-color: #fff;
  background-size: 100% 100%;
}
.popup.reservation.file .popup-container .popup-content .content-text .text2 {
  width: 462px;
  height: 32px;
  font-weight: 400;
  font-size: 12px;
  color: #77798E;
  text-align: center;
  margin: 12px auto 0;
}
.popup.reservation.file .popup-container .popup-content .url-code {
  padding: 32px 64px 48px;
}
.popup.reservation.file .popup-container .popup-content .url-code .li {
  display: flex;
  margin-bottom: 16px;
}
.popup.reservation.file .popup-container .popup-content .url-code .li .label {
  width: 70px;
  height: 19px;
  font-weight: 300;
  font-size: 14px;
  color: #393C5A;
  text-align: left;
}
.popup.reservation.file .popup-container .popup-content .url-code .li .value {
  width: 376px;
  line-height: 19px;
  font-weight: 400;
  font-size: 14px;
  color: #393C5A;
  padding-left: 16px;
}
.popup.reservation.file .popup-container .popup-content .btns .btn {
  width: 290px;
  height: 45px;
  line-height: 45px;
  background: #4282FF;
  border-radius: 4px 4px 4px 4px;
}
.popup.reservation.no-login {
  background: #FFFFFF;
  border-radius: 4px 4px 4px 4px;
}
.popup.reservation.no-login .popup-container {
  width: 500px;
  height: 279px;
  background: #FFFFFF;
}
.popup.reservation.no-login .popup-container .popup-content {
  display: flex;
  flex-direction: column;
}
.popup.reservation.no-login .popup-container .popup-content .content-text .text1 {
  width: 290px;
  height: 24px;
  font-weight: 400;
  font-size: 14px;
  color: #393C5A;
  line-height: 24px;
  text-align: center;
  margin: 46px auto 48px;
}
.popup.reservation.no-login .popup-container .popup-content .btns .btn {
  width: 290px;
  height: 45px;
  line-height: 45px;
  background: #4282FF;
  border-radius: 4px 4px 4px 4px;
}
