* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
body{
   
	text-align: center;
}
section{
	margin: 0;
	padding: 0;
	line-height: 0;
}
.container{
	position: relative;
	max-width: 720px;
	left: 50%;
	transform: translateX(-50%);
}
.head{
	position: absolute;
	width: 720px;
	text-align: center;
	top: 1%;
}


.content{
	position: absolute;
	width: 720px;
	text-align: center;
	top: 67%;
}
.content img{
	padding: 20px;
}
.content2{
	position: absolute;
	width: 720px;
	text-align: center;
	top: 34%;
}
.content2 img{
	padding: 20px;
}

.content3{
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    position: absolute;
    width: 80%;
    text-align: center;
    top: 55%;
    font-size: 30px;
    background: rgb(27 50 42);
    height: 365px;
    line-height: 40px;
    border: solid 5px #36c88f;
    border-radius: 25px;
    padding: 6px;
    padding-top: 20px;
}


.inputcode {
	width: 78%;
    height: 8%;
    border-radius: 1rem;
    border: 0px solid rgba(78, 147, 234, 1);
    margin-top: 1rem;
    padding: 1rem 2rem;
    text-align: center;
    font-size: 26px;
    background: rgb(255 255 255);
    color: black;
}

.error {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: flex;
	z-index: 99999;
	align-items: center;
	justify-content: center;
	background: rgba(0, 0, 0, 0.7);
}

.error-content {
	padding: 30px;
	line-height: 1.5;
	word-break: break-all;
	overflow: auto;
	font-size: 35px;
	color: #fff;
	background: rgba(0, 0, 0, 0.8);
	border-radius: 10px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
	max-width: 750px;
	text-align: center;
	width: 100%;
	box-sizing: border-box;
}
.anniu{
	-webkit-animation: pulse2 1s linear infinite;
	-moz-animation: pulse2 1s linear infinite;
	animation: pulse2 1s linear infinite;
}
@-webkit-keyframes pulse2 {
	0% {
	  -webkit-transform: scale(0.9);
	}
	50% {
	  -webkit-transform: scale(1);
	}
	100% {
	  -webkit-transform: scale(0.9);
	}
}
@keyframes pulse2 {
	0% {
	  -webkit-transform: scale(0.9);
	}
	50% {
	  -webkit-transform: scale(1);
	}
	100% {
	  -webkit-transform: scale(0.9);
	}
}

.ai-modal{
	position: fixed;
	display: none;
	right: 0px;
	left: 0px;
	top: 0px;
	bottom: 0px;
	justify-content: center;
	width: 100vw;
	height: 100vh;
	z-index: 9999;
	align-items: center;
	background: rgba(0, 0, 0, 0.7);
	color: white;
}