/* 統一 alertMsg 彈窗（全站 common.css 已載入後覆寫） */
.alertPopup.popup {
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
  position: relative;
  box-sizing: border-box;
  padding: 0;
}
.alertPopup .popupContent.alert-popup-reset {
  padding: 0;
  background: transparent;
  max-width: none;
  margin: 0;
}
.alert-popup-box {
  background: #fff;
  border-radius: 12px;
  padding: 24px 28px;
  max-width: 360px;
  margin: 0 auto;
  text-align: left;
  box-sizing: border-box;
}
.alert-popup-title {
  color: #00a0e8;
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 16px;
  line-height: 1.35;
}
.alert-popup-body {
  color: #333;
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 20px;
}
.alert-popup-body a {
  color: #00a0e8;
  text-decoration: underline;
}
.alert-popup-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.alert-popup-btn-ok {
  display: block;
  width: 100%;
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  text-align: center;
  background: linear-gradient(180deg, #6fc9f5 0%, #00a0e8 100%);
  color: #fff;
}
.alert-popup-btn-ok:hover {
  opacity: 0.92;
}
@media (max-width: 767px) {
  .alert-popup-box {
    padding: 20px 20px;
  }
}

.flex-lg-row {
    -ms-flex-direction: row!important;
    flex-direction: row!important;
    flex-grow: wrap!important;
    flex-wrap: wrap!important;
}