.opentxt {
	margin: -10px 0 10px 0;
	color: #946ce6;
}

.opentxt:hover {
	color: #5c4491;
}

.notification {
	box-shadow: inset -6px -6px 8px rgb(251 251 251 / 20%), inset -6px -6px 5px rgba(0, 0, 0, 0.1), 5px 5px 8px rgb(163 153 153 / 40%), -6px -6px 8px rgba(255, 255, 255, 0.1);
	display: flex;
	flex-direction: column;
	isolation: isolate;
	position: relative;
	width: 100%;
	height: auto;
	border-radius: 1rem;
	overflow: hidden;
	font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
	font-size: 16px;
	--gradient: linear-gradient(to bottom, #d3e5ef, #d0c7db, #cecae3);
	--color: #946ce6;
}

.notification:before {
	position: absolute;
	content: "";
	inset: 0.0625rem;
	border-radius: 0.9375rem;
	/* 背景色 */
	background: #ffffff;
	z-index: 2
}

.notification:after {
	position: absolute;
	content: "";
	width: 0.25rem;
	inset: 0.65rem auto 0.65rem 0.5rem;
	border-radius: 0.125rem;
	background: var(--gradient);
	transition: transform 300ms ease;
	z-index: 4;
}

.notification:hover:after {
	transform: translateX(0.15rem)
}

.notititle {
	color: var(--color);
	padding: 0.65rem 0.25rem 0.4rem 2rem;
	font-weight: 500;
	font-size: 1.5rem;
	transition: transform 300ms ease;
	z-index: 5;
}

.notification:hover .notititle {
	transform: translateX(0.15rem)
}

.notibody {
	font-weight: bold;
	color: #505050;
	padding: 0 1.25rem;
	transition: transform 300ms ease;
	z-index: 5;
	margin-bottom: 5px;
}

.notification:hover .notibody {
	transform: translateX(0.25rem)
}

.notiglow,
.notiborderglow {
	position: absolute;
	width: 20rem;
	height: 20rem;
	transform: translate(-50%, -50%);
	background: radial-gradient(circle closest-side at center, white, transparent);
	opacity: 0;
	transition: opacity 300ms ease;
}

.notiglow {
	z-index: 3;
}

.notiborderglow {
	z-index: 1;
}

.notification:hover .notiglow {
	opacity: 0.1
}

.notification:hover .notiborderglow {
	opacity: 0.1
}

.note {
	color: var(--color);
	position: fixed;
	top: 80%;
	left: 50%;
	transform: translateX(-50%);
	text-align: center;
	font-size: 0.9rem;
	width: 75%;
}

.notidata {
	margin: 10px 20px 20px 20px;
	z-index: 2;
	max-height: 150px;
	overflow: auto;
	overflow-x: hidden;
	overflow-y: scroll;
}

.notidata::-webkit-scrollbar {
	display: none;
	/* 隐藏滚动条 */
}

.btn {
	width: 170px;
	height: 60px;
	font-size: 18px;
	background: #fff;
	border: none;
	border-radius: 50px;
	color: #000;
	outline: none;
	cursor: pointer;
	transition: all 0.4s;
}

.btn:hover {
	box-shadow: inset 0 0 0 4px #ef476f,
		inset 0 0 0 8px #ffd166,
		inset 0 0 0 12px #118ab2;
	background: #073b4c;
	color: #fff;
}

#Messdiv {
	margin-bottom: 10px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-around;
}

#MessdivTop {
	width: 100%;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 10px;
}



#inputDiv {
	margin-bottom: 5px;
	background: #fff;
	border-radius: 1rem;
	width: 100%;
	min-height: 62px;
	border: 1px solid #ccc;
	padding: 8px;
	box-sizing: border-box;
	word-wrap: break-word;
	white-space: pre-wrap;
	overflow: hidden;
	outline: none;
	font-family: inherit;
	font-size: 14px;
	line-height: 1.5;
	color: rgb(24, 25, 28);
	resize: none;
}