/**
 * EasyDecide 首页 · 跨境访问提示弹窗（仅 index 使用）
 * v=20260814access6
 */
.og-access-backdrop {
  position: fixed;
  inset: 0;
  z-index: 9200;
  background: rgba(6, 18, 31, 0.58);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.24s ease, visibility 0.24s ease;
}
.og-access-backdrop.is-open {
  opacity: 1;
  visibility: visible;
}
.og-access-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  z-index: 9201;
  width: min(440px, calc(100% - 48px));
  padding: 24px 24px 20px;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 28px 80px rgba(6, 18, 31, 0.28);
  transform: translate(-50%, -48%) scale(0.96);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.26s ease, transform 0.26s ease, visibility 0.26s ease;
}
.og-access-modal.is-open {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}
.og-access-modal__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}
.og-access-modal__head h2 {
  margin: 0;
  flex: 1;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.35;
  color: #0a100d;
  letter-spacing: -0.02em;
}
.og-access-modal__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: none;
}
.og-access-modal__close {
  flex: none;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 1px solid rgba(10, 16, 13, 0.12);
  border-radius: 10px;
  background: #fff;
  color: #334155;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}
.og-access-modal__close:hover {
  background: #f3f6f4;
}
.og-access-modal__body {
  margin: 0 0 18px;
  font-size: 14.5px;
  line-height: 1.72;
  color: #334155;
}
.og-access-modal__continue {
  display: block;
  width: 100%;
  padding: 14px 20px;
  border: none;
  border-radius: 999px;
  background: #0d1523;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  transition: background 0.18s ease, transform 0.18s ease;
}
.og-access-modal__continue:hover {
  background: #1a2438;
}
.og-access-modal__continue:active {
  transform: scale(0.985);
}
.og-access-modal__mute {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  font-size: 13.5px;
  color: #334155;
  cursor: pointer;
  user-select: none;
}
.og-access-modal__mute input {
  width: 16px;
  height: 16px;
  accent-color: #174a35;
}
body.ed-access-open {
  overflow: hidden;
}
@media (max-width: 640px) {
  .og-access-modal {
    width: calc(100% - 36px);
    padding: 22px 20px 18px;
  }
  .og-access-modal__head {
    flex-wrap: wrap;
    gap: 10px;
  }
  .og-access-modal__actions {
    width: 100%;
    justify-content: flex-end;
  }
}
