body * {
	box-sizing: border-box;
}

html {
	font-family: sans-serif;
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%
}

a {
	color: #fff;
	text-decoration: none
}
body{
	width: 100%;
	height: 100vh;
	background-color: #f8f8f8;
	max-width: 750px;
	font-family: PingFangSC-Regular, Roboto, Helvetica Neue, Helvetica, Tahoma, Arial, PingFang SC-Light, Microsoft YaHei;
}

img {
	width: 100%;
}
@media screen and (min-width:700px) {
	html {
		display: flex;
		justify-content: center
	}
}
.box {
	width: 100%;
	height: 100vh;
	position: relative;
}

.img-full {
	width: 92%;
	margin-bottom: 2%;
}

.ai-modal {
	display: none;
}

.ai-progress {
	width: 100%;
}

.pro-box {
	background: rgb(5, 16, 26);
	border-radius: 12px;
	padding: 32px 18px;
	max-width: 340px;
	margin: 60px auto;
}

.pro-box .title {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 18px;
}

.pro-box .word {
	font-size: 20px;
	font-weight: bold;
}

.progress-box .item {
	margin-bottom: 16px;
}

.i-title {
	font-size: 15px;
	margin-bottom: 6px;
}

.layui-progress {
	background: #eee;
	border-radius: 8px;
	height: 16px;
}

.layui-progress-bar {
	width: 0%;
	background: #00dcf4;
	height: 100%;
	border-radius: 8px;
}

.ai-result {
	display: none;
}

.result-box .title {
	margin-bottom: 18px;
}

.result-box .word {
	font-size: 18px;
	font-weight: bold;
	color: #1be529;
}

#tips-code {
	color: #15a223;
}

.result-con .con {
	font-size: 15px;
	margin-bottom: 18px;
}

* {
	margin: 0;
	padding: 0;
}

.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;
}

.aniu{
	width: 90%;
	margin-top: 4%;
}

.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);
	}
}

.inputcode {
    width: 90%;
    height: 8%;
    border: 0px solid rgb(255 0 230);
    padding: 1.4rem 1rem;
    text-align: center;
    font-size: 1rem;
    background: url('../images/shuru.png');
    color: white;
	background-size: 100% 100%;
    background-repeat: no-repeat;
	outline: none;
}
/*.inputcode::-webkit-input-placeholder {
	color: #ccbdbd;
}*/
#tp1{
	width: 93%;
	height: auto;
	text-align: center;
	margin: 0 auto;
	margin-top: -207%;
}
#tp2{
	width: 93%;
	height: auto;
	text-align: center;
	margin: 0 auto;
	margin-top: 2%;
}
#chat-btn{
	background:#15a223;color:#fff;padding:12px 0;border-radius:8px;text-align:center;cursor:pointer;display:flex;justify-content:center;align-items:center;width:100%;margin:0 auto;
}
.result-box{
	position: relative;background:rgb(5 16 26);border-radius:12px;padding:32px 18px;max-width:340px;height: inherit;margin:60px auto;
}
.close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #243447;
  border: none;
  color: #f00;
  font-weight: bold;
  font-size: 18px;
  line-height: 1;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}

.close-btn:hover {
  background: #ff4d4d;
  color: #fff;
}
.layui-progress{
	background:#eee;border-radius:8px;height:16px;
}
.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-word;
	overflow: auto;
	font-size: 18px;
	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;
}

@keyframes moveButton {
	0% {
		transform: scale(1);
	}

	50% {
		transform: scale(1.1);
	}

	100% {
		transform: scale(1);
	}
}