* {
	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: 16%;
}


.content{
    position: absolute;
    width: 720px;
    text-align: center;
    top: 72%;
    z-index: 99;
}
.content img{
	padding: 20px;
}
.content2{
    position: absolute;
    width: 720px;
    text-align: center;
    top: 65%;
}
.content2 img{
	padding: 20px;
}


.inputcode {
	width: 78%;
	height: 8%;
	border-radius: 1rem;
	border: 2px solid rgba(78, 147, 234, 1);
	margin-top: 1rem;
	padding: 1rem 2rem;
	text-align: center;
	font-size: 23px;
	background: rgb(255 255 255 / 80%);
	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 {
	display: none;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 20px;
    position: fixed;
    display: none;
    right: 0px;
    left: 0px;
    top: 0px;
    bottom: 0px;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.7);
    color: white;
}

/* 分析进度容器 */
.pro-box {
  background: rgba(9, 76, 137, 0.85);
  border-radius: 16px;
  padding: 36px 22px;
  max-width: 720px;
  margin: 60px auto;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 25px rgba(0, 220, 244, 0.2);
  animation: fadeIn 0.6s ease;
}

.pro-box .title .word {
  font-size: 30px;
  font-weight: bold;
  color: #fff;
  text-align: center;
  margin-bottom: 20px;
  text-shadow: 0 0 8px rgba(0, 220, 244, 0.6);
}

.progress-box .item {
  margin-bottom: 20px;
  width: 500px;
}

.i-title {
  font-size: 22px;
  margin-bottom: 8px;
  color: #fff;
  text-shadow: 0 0 5px rgba(255,255,255,0.3);
}

/* 进度条轨道 */
.progress-track {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  height: 18px;
  overflow: hidden;
  position: relative;
}

/* 进度条 */
.progress-bar {
  height: 100%;
  width: 0%;
  border-radius: 10px;
  background: linear-gradient(90deg, #00dcf4, #15a223);
  box-shadow: 0 0 15px rgba(0, 220, 244, 0.7);
  transition: width 0.4s ease;
}

.result-box {
  background: rgba(9, 76, 137, 0.85);
  border-radius: 16px;
  padding: 36px 22px;
  margin: 40px auto;
  max-width: 720px;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 25px rgba(21, 162, 35, 0.3);
  animation: fadeInUp 0.6s ease;
}

.result-box .word {
  font-size: 28px;
  font-weight: bold;
  color: #0bf523;
  text-shadow: 0 0 8px rgba(21, 162, 35, 0.6);
}

.result-con .con {
  font-size: 22px;
  margin: 20px 0;
  color: #fff;
}

#chat-btn {
  background: linear-gradient(90deg, #15a223, #00dcf4);
  color: #fff;
  padding: 14px 0;
  border-radius: 10px;
  text-align: center;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 0 auto;
  font-size: 22px;
  font-weight: bold;
  box-shadow: 0 0 15px rgba(21, 162, 35, 0.5);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

#chat-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 25px rgba(0, 220, 244, 0.8);
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
