<head>
  <style>.cta{position: fixed; bottom: 16px; left: 0; right: 0; margin: 0 auto; display: flex; align-self: center; align-items: center; justify-content: center; width: 88%; max-width: 708px; height: 48px; background-color: powderblue; color: #0d0d0d; z-index: 999999999; text-decoration: none; border-radius: 8px; font-weight: bold; font-size: 16px; transition: 300ms; -webkit-box-shadow: 0px 0px 4px 2px rgba(55, 53, 47, 0.4); -moz-box-shadow: 0px 0px 4px 2px rgba(55, 53, 47, 0.4); box-shadow: 0px 0px 4px 2px rgba(55, 53, 47, 0.4); font-family: 'inter', sans-serif;cursor: pointer;}.cta:hover{filter: brightness(88%);}</style>
	<script>
		function handleClick() {
      const queryString = window.location.search;
      const urlParams = new URLSearchParams(queryString);
      const paymentURL = urlParams.get('paymentURL');
      if (paymentURL == undefined) {
        window.alert(`결제 정보가 존재하지 않습니다.\\n 오르조 앱을 통해서 생성하신 결제 링크만 결제가 허용됩니다`);
        return;
      }
      window.open(paymentURL);
		}
	</script>
</head>

<body>
  <div class="cta" onclick='handleClick()'>2023 프리미엄 패스 결제하기</div>
</body>

4안.png