* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
body{

	text-align: center;
}
section{
	margin: 0;
	padding: 0;
	line-height: 0;
}
.container{
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
	position: relative;
	width: 100%;
	max-width: 750px;
	left: 50%;
	transform: translateX(-50%);
	overflow: hidden;
}


.content{
    width: 100%;
    text-align: center;
    top: 37%;
    position: absolute;
}

.content img{
	width: 90%;
}
.content_result{
    width: 100%;
    text-align: center;
    top: 37%;
    position: absolute;
	display : none;
}

.content_result img{
	width: 80%;
	margin: 10px;
}

.content2{
    width: 100%;
    text-align: center;
    top: 71%;
    position: absolute;
}

.content2 img{
	width: 90%;
	margin: 10px;
	margin-top: 30px;
}

.content3{
	display: none;
    width: 100%;
    text-align: center;
    top: 37%;
    position: absolute;
	color: black;
}

.content3 img{
	width: 90%;
	margin: 10px;
}

.word-box {
	position: absolute;
	top: 43%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 18px;
	font-weight: bold;
	text-align: center;
	line-height: 0.8;
	pointer-events: none;
	white-space: pre-line;
	width: 83%;
}
.title {
	font-size: clamp(14px, 5vw, 35px);
	text-align: center;
	font-weight: bold;
}
.con {
    font-size: clamp(12px, 3vw, 25px);
    line-height: clamp(12px, 4vw, 35px);
}
.addline{
    display: block;
    background-color: #1A6BFF;
    border-radius: 2rem;
    text-align: center;
    color: #ffffff;
    cursor: pointer;
    animation-name: moveButton;
    animation-duration: 1.5s;
    animation-iteration-count: infinite;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-top: 10px;
    width: 80%;
    margin-top: 10%;
    height: 60px;
    line-height: 60px;
    margin: 20 auto;
    font-size: 16px;
}
@keyframes moveButton {
	0% {
		transform: scale(1);
	}

	50% {
		transform: scale(1.1);
	}

	100% {
		transform: scale(1);
	}
}
#small-img{
	width: 100%;
	margin-top: 10%;
}
#small-img2{
	width: 100%;
	margin-top: 2%;
}

.inputbox {
  font-size: 17px;
  width: 90%;
  height: 53px;
  text-align: center;
  margin-top: 10px;
  border-radius: 15px;
  padding: 0 10px;

  /* 渐变边框核心 */
  border: 2px solid transparent;
  background-origin: border-box;
  background-clip: padding-box, border-box;
  background-image: 
    linear-gradient(#fff, #fff),  /* 输入框内部背景 */
    linear-gradient(135deg, #00f0ff, #8a2be2, #ff00cc); /* 边框渐变 */

  color: black;
}
.inputbox:focus {
  outline: none; /* 去掉默认黑边 */
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.6); /* 发光效果，科技感提升 */
}


.inputbox::-webkit-input-placeholder {
	color: #8e8d8f;;
}

.errorbox {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	height: 100vh;
	display: flex;
	z-index: 9999999;
	align-items: center;
	justify-content: center;
	display: none;
	z-index: 9999;
}

.error-content {
	padding: 20px;
	line-height: 18px;
	word-break: break-all;
	overflow: hidden;
	font-size: 18px;
	color: #fff;
	background: rgba(0, 0, 0, 0.8);
}

.fxbox {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	height: 100vh;
	display: flex;
	z-index: 9999999;
	align-items: center;
	justify-content: center;
	display: none;
	z-index: 9999;
	background: rgba(0, 0, 0, 0.8);
}

.fx-content {
	padding: 20px;
	line-height: 18px;
	word-break: break-all;
	overflow: hidden;
	font-size: 18px;
	color: #fff;
	border-radius: 10px;
    width: 90%;
	max-width: 700px;
}


.fxjieguobox {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	height: 100vh;
	display: flex;
	z-index: 9999999;
	align-items: center;
	justify-content: center;
	display: none;
	z-index: 9999;
	background: rgba(0, 0, 0, 0.8);
}

.fxjieguo-content {
	padding: 20px;
	line-height: 18px;
	word-break: break-all;
	overflow: hidden;
	font-size: 18px;
	color: #fff;
	border-radius: 10px;
    width: 90%;
	max-width: 700px;
}
.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);
	}
}
