<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">
@keyframes succeed_box_an {
	0% {
	  transform: translateY(-100%);
   
	}
	100% {
	  transform: translateY(0);
	
	}
  }
.succeed_box{
	background-color: #fff;
	position: fixed;
	z-index: 999;
	left: 0;
	top: 0;
	transform: translateY(-100%);
	width: 100%;
	height: 100%;
	display: none;
  }
  .succeed_box_an{
	animation: succeed_box_an 300ms forwards;
  }
  .succeed_box_warp{
	display: flex;
	flex-direction: column;
	height: 100%;
	min-height: 0;
  }
  .succeed_box_content{
	flex: 1;
	min-height: 0;
	overflow-y: auto;
	display: flex;
	align-items: center;
	flex-direction: column;
	text-align: center;
	padding: 60px 16px 16px;
	color:#494851;
  
  }
  
  .succeed_box_affirm{
	margin-bottom: 20px;
  }
  
  
  .succeed_box_h2{
	font-size: 35px;
	color: #13121B;
  }
  .succeed_box_h2_1{
	margin-bottom: 10px;
  }
  
  .succeed_box_p{
	font-size: 16px;
  }
  .succeed_box_p_1{
	margin-bottom: 30px;
  }
  .succeed_box_p_2{
	margin-bottom: 10px;
  }
  .succeed_box_h2_2{
	margin-bottom: 30px;
  }
  .succeed_box_appstore{
	margin-inline-end: 20px;
  }
  .succeed_box_btn{
	border: none;
	background: var(--modaleRegBtbg);
    /* background-image: linear-gradient(300deg, #ff6770 17.81%, #ff4b55 81.86%); */
	min-height: 60px;
	border-radius: 10px;
	font-size: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--modaleRegBtColor,#fff);
	width: 100%;
	max-width: 80%;
  }
  .succeed_box_btn img{
	margin-right: 6px;
  }
  .succeed_box_imgs{
	display: flex;
	justify-content: center;
	align-items: center;
	max-width: 70%;
	width: 100%;
  }
  .succeed_box_imgs img{
	flex: 1;
	width: 0;
  }
  .succeed_box_pdf{
	font-size: 12px;
	margin: 14px 0 10px;
	color:inherit;
  }
  .succeed_box_log{
	display: flex;
	justify-content: center;
	padding: 16px 0;
  }
  .succeed_box_log_img{
	width: 180px;
  }</pre></body></html>