body, html {
	margin: 0;
	padding: 0;
	height: 100%;
	width: 100%;
	position: relative;
	display: flex;
}

#top {
	background-color: #0069a5;
	width: 100%;
	height: 6%;
	display: flex;
	align-items: center;
	color: white;
	font-weight: bold;
}

#title {
	margin-left: 30px;
}

#left {
	height: 92%;
	width: 37%;
	left: 3%;
	top: 7%;
	position: absolute;
	border: 1px solid #dadada;
	border-radius: 5px 0 0 5px;
	/* text-align: center; */
}

#right {
	height: 92%;
	width: 57%;
	top: 7%;
	right: 3%;
	position: absolute;
	border-top: 1px solid #dadada;
	border-right: 1px solid #dadada;
	border-bottom: 1px solid #dadada;
	border-radius: 0 5px 5px 0;
}

#input {
	border: 1px solid #dadada;
	border-radius: 5px 0 0 5px;
	width: 90%;
	height: 7.5%;
	margin: 0 auto;
	margin-bottom: 2.5%;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

#input1 {
	border: 1px solid #dadada;
	border-radius: 5px 0 0 5px;
	width: 90%;
	height: 8%;
	margin: 0 auto;
	margin-bottom: 3%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	margin-top: 2%;
}

#input1 input {
	width: 90%;
	height: 35%;
	margin: 0 auto;
	border-radius: 2px;
	display: flex;
	border: 1px solid #9e9e9e;
	/* border-color: #dadada; */
}

label {
	margin-left: 4%;
	margin-bottom: 1%;
	font-family: '华文楷体';
	font-size: 20px;
}

#predict {
	background-color: #0077cc;
	color: white; 
	border: none; 
	padding: 3% 9%;
	font-size: 16px;
	cursor: pointer;
	border-radius: 5px;
	outline: none;
	transition: transform 0.3s, background-color 0.3s;
	position: absolute;
	/* left: 60%; */
	right: 15%;
}
		
#predict:hover {
	background-color: #005fa3;
	transform: scale(1.2);
}
		
#predict:focus,#reset:hover {
	outline: none;
}
		
#reset {
	background-color: white;
	color: black; 
	border: none; 
	padding: 3% 9%;
	font-size: 16px;
	cursor: pointer;
	border-radius: 5px;
	border: 1px solid black;
	transition: transform 0.3s, background-color 0.3s;
	position: absolute;
	left: 15%;
}

#reset:hover {
	transform: scale(1.2);
}

#image p {
	position: absolute;
	top: 3%;
	left: 50%;
	z-index: 10;
}

#image img {
	width: 90%;
	object-fit: contain;
	position: absolute;
	left: 7%;
	top: 9%;
	display: flex;
}

#result {
	position: absolute;
	bottom: 5%;
	border: 1px solid #dadada;
	width: 85%;
	height: 15%;
	left: 8%;
	border-radius: 10px;
}

#result h3 {
	margin-top: 3%;
	margin-left: 2%;
}

#result p {
	margin-left: 2%;
}

.inline-p {
	display: inline-block;
	margin: 0;
}

.radio-group {
	display: flex;
	margin-top: 0.5%;
	/* align-items: center; */
	/* gap: 150px; */
}
.radio-group label {
	display: flex;
	align-items: center;
	font-size: 20px;
	color: #333;
	/* width: 80px; */
}

#label2 {
	left: 46%;
	position: absolute;
}

.radio-group input[type="radio"] {
	margin-right: 10px;
	appearance: none;
	width: 20px;
	height: 20px;
	border: 2px solid #ccc;
	border-radius: 50%;
	outline: none;
	cursor: pointer;
	position: relative;
}
.radio-group input[type="radio"]:checked {
	border-color: #007bff;
}
.radio-group input[type="radio"]:checked::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 10px;
	height: 10px;
	background: #007bff;
	border-radius: 50%;
}
