* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	word-break: break-all;
	overflow-wrap: break-word;
}

body,
html {
	height: 100vh;
}

.navigation {
	position: fixed;
	top: 0;
	width: 100%;
	background-color: #fff; /* 根据需求调整背景颜色 */
	z-index: 1000; /* 确保导航栏始终位于其他内容之上 */
	display: flex;
	margin-left: 20px;
	height: 60px; /* 设置一个固定的高度，根据实际情况调整 */
	transition: none; /* 禁止过渡效果 */
	overflow: hidden; /* 确保内容不会溢出 */
}

.slogan {
	display: flex;
	align-items: center;
	gap: 10px; /* 图标与文本之间的间距 */
}

.slogan .icon {
	height: 30px; /* 根据实际情况调整图标大小 */
}

.slogan .text {
	font-size: 0.4rem;
	color: #007bff;
	font-weight: bold;
}

.footer {
	position: fixed;
	bottom: 0;
	left: 50%;
	z-index: 900;
	transform: translateX(-50%);
	background-color: #f9fafc;
	padding-top: 0.2rem;
	/* background-color: #fff; */
}

.stopBtn {
	display: none;
	align-items: center;
	justify-content: center;
	border-radius: 0.3rem;
	border: 1px solid #191919;
	margin: 0 auto 0.2rem;
	width: 2rem;
	font-size: 0.24rem;
	padding: 0.08rem 0;
}

.stopBtn img {
	width: 0.3rem;
	margin-right: 0.1rem;
}

.footer .tabBox {
	height: 1.3rem;
	width: 100vw;
	display: flex;
	align-items: center;
	font-size: 0.3rem;
	color: #191919;
	padding: 0 0.3rem 0.3rem;
	/* max-width: 750px; */
	margin: 0 0 0.1rem 0;
}

.footer .tabBox .keyboard {
	height: 0.9rem;
	border-radius: 0.35rem;
	background: #FFFFFF;
	border-top: 1px solid #E8E8E8;
	width: 100%;
	display: flex;
	align-items: center;
	padding: 0 0.15rem;
	flex: 1;
}

.footer .tabBox .keyboard .icon {
	width: 0.45rem;
	margin-right: 0.2rem;
}

.footer .tabBox .keyboard input {
	flex: 1;
	height: 90%;
	border: 0;
	outline: 0;
	font-size: 0.35rem;
}
.footer .tabBox #submitLeft {
	width: 0.7rem;
	height: 0.7rem;
	margin-left: 0.2rem;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.footer .tabBox #submitLeft img {
	width: 60%;
}

.footer .tabBox #submit {
	width: 0.7rem;
	height: 0.7rem;
	margin-left: 0.2rem;
	background-color: #007BF9;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.footer .tabBox #submit img {
	width: 60%;
}

.footer .tabBox .keyboard .voice-button {
	position: absolute;
	right: 0.3rem;
	top: 50%;
	transform: translateY(-50%);
	width: 0.6rem;
	height: 0.6rem;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}

.footer .tabBox .keyboard .voice-button img {
	width: 70%;
}

.footer .tabBox .keyboard.voice-mode {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.footer .tabBox .keyboard.voice-mode .voice-record-button {
	width: 1.5rem;
	height: 1.5rem;
	border-radius: 50%;
	background-color: #FF4D4F;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	box-shadow: 0 0 10px rgba(255, 77, 79, 0.5);
}

.footer .tabBox .keyboard.voice-mode .voice-record-button img {
	width: 40%;
}

.footer .tabBox .keyboard .voice-record-button {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 2rem;
	height: 2rem;
	margin: 0.5rem auto;
	border-radius: 50%;
	background-color: #007BFF;
	cursor: pointer;
	box-shadow: 0 0 10px rgba(0, 123, 255, 0.5);
	transition: all 0.3s ease;
}

.footer .tabBox .keyboard .voice-record-button:hover {
	transform: scale(1.1);
	box-shadow: 0 0 15px rgba(0, 123, 255, 0.7);
}

.footer .tabBox .keyboard .voice-record-button img {
	width: 40%;
	height: 40%;
}

.footer .tabBox .keyboard.voice-mode .voice-hint {
	margin-top: 0.2rem;
	font-size: 0.24rem;
	color: #777;
	text-align: center;
}

/* 录音覆盖层样式 */
.voice-recording-overlay {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0, 123, 255, 0.9);
	z-index: 1000;
	display: none;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	transition: all 0.3s ease;
}

.voice-recording-overlay.active {
	display: flex;
}

.voice-recording-overlay .recording-icon {
	width: 3rem;
	height: 3rem;
	border-radius: 50%;
	background-color: #FFFFFF;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1rem;
	box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.voice-recording-overlay .recording-icon img {
	width: 40%;
}

.voice-recording-overlay .recording-text {
	color: #FFFFFF;
	font-size: 0.4rem;
	margin-bottom: 0.5rem;
}

.voice-recording-overlay .recording-time {
	color: #FFFFFF;
	font-size: 0.6rem;
	font-weight: bold;
	margin-bottom: 2rem;
}

.voice-recording-overlay .stop-recording-btn {
	width: 2rem;
	height: 2rem;
	border-radius: 50%;
	background-color: #FF4D4F;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	box-shadow: 0 0 10px rgba(255, 77, 79, 0.5);
	transition: all 0.3s ease;
}

.voice-recording-overlay .stop-recording-btn:hover {
	transform: scale(1.1);
	box-shadow: 0 0 15px rgba(255, 77, 79, 0.7);
}

.voice-recording-overlay .stop-recording-btn img {
	width: 40%;
}

.footer .tabBox a {
	height: 0.48rem;
	width: 0.48rem;
	display: block;
}

.footer .tabBox a img {
	height: 100%;
	width: 100%;
}

.footer .tabBox span {
	border-left: 1px solid #E0E0E0;
	padding-left: 0.4rem;
	margin-left: 0.35rem;
}
/*.footer .tabBox {*/
/*	height: auto; !* 动态高度 *!*/
/*	width: 100vw;*/
/*	display: flex;*/
/*	align-items: center; !* 垂直居中对齐 *!*/
/*	font-size: 0.3rem;*/
/*	color: #191919;*/
/*	padding: 0 0.3rem 0.3rem;*/
/*	max-width: 750px;*/
/*	margin: 0 0 0.1rem 0;*/
/*}*/

/*.footer .tabBox .keyboard {*/
/*	display: flex;*/
/*	align-items: center; !* 垂直居中 *!*/
/*	justify-content: space-between; !* 水平分布 *!*/
/*	background: #FFFFFF;*/
/*	border-top: 1px solid #E8E8E8;*/
/*	border-radius: 0.35rem;*/
/*	padding: 0 0.15rem;*/
/*	flex: 1;*/
/*	min-height: 44px;*/
/*	position: relative;*/
/*}*/

/*.footer .tabBox .keyboard .icon {*/
/*	width: 0.45rem;*/
/*	margin-right: 0.2rem;*/
/*}*/

/*.footer .tabBox .keyboard textarea {*/
/*	flex: 1;*/
/*	background: red;*/
/*	min-height: 30px;*/
/*	border: 0;*/
/*	outline: 0;*/
/*	font-size: 0.35rem;*/
/*	resize: none;*/
/*	padding: 0 10px;*/
/*	box-sizing: border-box;*/
/*	line-height: 1.5;*/
/*	overflow: hidden;*/
/*	vertical-align: middle;*/
/*	display: flex;*/
/*	align-items: center;*/
/*	justify-content: center; !* 水平居中 *!*/
/*	height: auto;*/
/*	transition: height 0.2s ease;*/
/*	max-height: calc(1.5em * 5 + 14px); !* 最大高度为5行加上内边距 *!*/
/*}*/

/*!* 当textarea有内容时，移除居中对齐 *!*/
/*.footer .tabBox .keyboard textarea:not(:placeholder-shown) {*/
/*	justify-content: flex-start;*/
/*	text-align: left;*/
/*	padding: 7px;*/
/*}*/

/*.footer .tabBox #submit {*/
/*	width: 0.7rem;*/
/*	height: 0.7rem;*/
/*	background-color: #007BF9;*/
/*	border-radius: 50%;*/
/*	display: flex;*/
/*	align-items: center;*/
/*	justify-content: center;*/
/*	margin-left: 0.2rem; !* 适当间距 *!*/
/*}*/

/*.footer .tabBox #submit img {*/
/*	width: 60%; !* 适当调整图标大小 *!*/
/*}*/

/*.footer .tabBox a {*/
/*	height: 0.48rem;*/
/*	width: 0.48rem;*/
/*	display: block;*/
/*}*/

/*.footer .tabBox a img {*/
/*	height: 100%;*/
/*	width: 100%;*/
/*}*/

/*.footer .tabBox span {*/
/*	border-left: 1px solid #E0E0E0;*/
/*	padding-left: 0.4rem;*/
/*	margin-left: 0.35rem;*/
/*}*/
.main {
	padding: 0.3rem 0.3rem 2.3rem;
	background-color: #f9fafc;
	min-height: calc(100vh - 80px);
	/* max-width: 750px; */
	margin: 60px 0 0 0;
	box-sizing: border-box;
}

.part1 {}

.part1 .card {
	width: 5.6rem;
	margin-top: 0.24rem;
	background-color: #F3F3F3;
	border-bottom-right-radius: 0.1rem;
	border-bottom-left-radius: 0.1rem;
}

.part1 .card .pic {
	position: relative;
	height: 2.2rem;
}

.part1 .card .pic p {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 0.6rem;
	line-height: 0.6rem;
	background-color: rgba(0, 31, 110, 0.4);
	color: #fff;
	font-size: 0.28rem;
	text-align: center;
}

.part1 .card .pic img {
	width: 100%;
	height: 100%;
}

.part1 .card .info {
	padding: 0.25rem 0.2rem;
	color: #191919;
	text-align: center;
}

.part1 .card .info .title {
	font-size: 0.34rem;
	margin-bottom: 0.1rem;
	font-weight: bold;
}

.part1 .card .info .content {
	font-size: 0.28rem;
	line-height: 1.45;
}

.part1 .card .info a {
	display: block;
	font-size: 0.3rem;
	width: 4.5rem;
	height: 0.75rem;
	border-radius: 0.12rem;
	background-color: #fff;
	text-decoration: none;
	/* margin-top: 0.15rem; */
	text-align: center;
	line-height: 0.75rem;
	color: #191919;
	margin: 0.15rem auto 0;
}

.part2 {
	/* margin-top: 0.3rem; */
	background-color: #ffffff;
	padding: 0.3rem;
	border-radius: 0.2rem;
}

.part2 .content .top {
	display: flex;
	align-items: center;
	margin-bottom: 0.5rem;
}

.part2 .content .top>div {
	width: 1.4rem;
	/* height: 1.76rem; */
	overflow: hidden;
	margin-right: 0.2rem;
}

.part2 .content .top img {
	width: 1.2rem;
	margin-right: 0.1rem;
	transform: scale(0.7);
}

.part2 .content .top .right {
	flex: 1;
}

.part2 .content .top .right .tt {
	font-size: 0.4rem;
	font-weight: bold;
}

.part2 .content .top .right .cc {
	font-size: 0.3rem;
	color: #77798B;
	margin-top: 0.1rem;
}

.part2 .content .bottom {}

.part2 .content .bottom .tip {
	display: flex;
	justify-content: space-between;
}

.part2 .content .bottom .tip span:first-child {
	font-size: 0.24rem;
	color: #77798B;
}

.part2 .content .bottom .tip .changeText {
	font-size: 0.24rem;
	color: #007BF9;
}

.part2 .content .bottom .questionList {
	background-color: #F5FAFF;
	border-radius: 0.15rem;
	margin-top: 0.2rem;
	padding: 0.2rem;
}

.part2 .content .bottom .questionList p {
	background-color: #F5FAFF;
	border-radius: 0.15rem;
	padding: 0.2rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-bottom: 1px solid #DCE9F8;
}

.part2 .content .bottom .questionList p img {
	width: 0.32rem;
}

.part2 .content .bottom .questionList p span {
	display: block;
	width: 90%;
	color: #646464;
	font-size: 0.27rem;
}

.tab {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	margin: 0.3rem 0;
}

.tab img {
	width: 0.7rem;
	height: 0.7rem;
}

.tab span {
	display: inline-block;
	font-size: 0.27rem;
	color: #191919;
	padding: 0.2rem;
	/* background-color: #ffffff; */
	background-color: #007BF9;
	color: #ffffff;
	border-radius: 0.2rem 0px 0.2rem 0.2rem;
	box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
}

.tab .avatar {
	width: 0.74rem;
	height: 0.74rem;
	margin-left: 0.2rem;
	border-radius: 50%;
}

.baseinfo {}

.baseinfo .tab {
	text-align: right;
	margin-bottom: 0.3rem;
}

.baseinfo .tab span {
	display: inline-block;
	font-size: 0.34rem;
	color: #191919;
	padding: 0.16rem 0.38rem;
	background-color: #D9E8FD;
	border-radius: 0.2rem 0px 0.2rem 0.2rem;
}

.baseinfo .content {
	border-radius: 0px 16px 16px 16px;
	background-color: #F3F3F3;
	padding: 0.2rem;
	width: 5rem;
	color: #191919;
	font-size: 0.28rem;
	line-height: 1.45;
	text-indent: 2em;
}

.footer .back {
	text-align: right;
	padding: 0.25rem 0.3rem;
}

.footer .back span {
	display: inline-block;
	width: 2.2rem;
	height: 0.64rem;
	line-height: 0.64rem;
	text-align: center;
	border: 1px solid #E0E0E0;
	border-radius: 0.32rem;
	color: #191919;
	font-size: 0.3rem;
}

.end .content {
	font-size: 0.34rem;
	color: #191919;
	text-indent: 2em;
	line-height: 1.6;
}

.poster {
	/* width: 6rem; */
	display: flex;
	align-items: flex-start;
}

.logoinfo {
	/* display: flex;
	align-items: center;
	font-size: 0.24rem;
	color: #191919;
	font-weight: bold;
	margin-bottom: 0.1rem; */
}

.logoinfo .pic {
	width: 0.74rem;
	height: 0.74rem;
	border-radius: 50%;
	margin-right: 0.2rem;
	/* overflow: hidden; */
}

.logoinfo .pic img {
	width: 100%;
	height: 100%;
}

.poster .content {
	width: 100%;
	border-radius: 0.1rem;
	overflow: hidden;
	/* background-color: #1183f9; */
	background-color: #ffffff;
	padding: 0.2rem;
	color: #000000;
	font-size: 0.28rem;
	line-height: 1.6;
	box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
	text-align: justify;
}

.poster .content .docs {
	margin-top: 0.15rem;
	border-top: 1px solid #eeeeee;
	padding-top: 0.15rem;
	line-height: 1.6;
	color: #1183f9;
	font-size: 0.25rem;
}

.poster .content .docs a {
	color: #1183f9 !important;
	text-decoration: none;
}

.poster .content .docs a p {
	margin-top: 0.1rem;
}

.poster .content .loading {
	width: 0.4rem;
	height: 0.4rem;
}

.loadText {
	color: #646464;
	font-size: 0.24rem;
	margin-top: 0.15rem;
}

.poster a {
	text-decoration: none;
}

.poster .content a {}

.poster .content>a img {
	width: 100%;
}

.poster .content .linkbtn {
	width: 100%;
	padding: 0.2rem 0.2rem 0.25rem;
	color: #191919;
	text-align: center;
}

.poster .content .linkbtn p {
	margin-bottom: 0.25rem;
}

.poster .content .linkbtn a {
	display: block;
	font-size: 0.3rem;
	width: 4.47rem;
	height: 0.75rem;
	border-radius: 0.12rem;
	background-color: #fff;
	text-decoration: none;
	margin-top: 0.15rem;
	text-align: center;
	line-height: 0.75rem;
	color: #191919;
}

/*.think {*/
/*	background-color: #f1f1f1; !* 灰色背景 *!*/
/*	color: #777; !* 灰色字体 *!*/
/*	padding: 10px;*/
/*	border-radius: 5px;*/
/*	margin-bottom: 10px;*/
/*	white-space: pre-line; !* 保持换行符 *!*/
/*}*/

/*.think .foldBtn {*/
/*	display: inline-block;*/
/*	margin-top: 10px;*/
/*	padding: 5px 10px;*/
/*	background-color: #ccc;*/
/*	border: none;*/
/*	border-radius: 5px;*/
/*	cursor: pointer;*/
/*}*/

/*.think .foldBtn.collapsed {*/
/*	background-color: #888;*/
/*}*/

/*.think.hidden {*/
/*	display: none; !* 隐藏think内容 *!*/
/*}*/
.think {
	background-color: #f1f1f1; /* 灰色背景 */
	color: #777; /* 灰色字体 */
	padding: 0 10px 0 10px;
	border-radius: 5px;
	margin-bottom: 10px;
	white-space: pre-line; /* 保持换行符 */
	overflow: hidden; /* 防止内容溢出 */
	transition: all 0.3s ease; /* 添加平滑过渡 */
}

.think .foldBtn {
	display: inline-block;
	padding: 5px 10px;
	background-color: #ccc;
	border: none;
	border-radius: 5px;
	cursor: pointer;
}

.think .foldBtn.collapsed {
	background-color: #888;
}

.think.hidden {
	display: none; /* 隐藏think内容 */
}

/* 默认展开 */
.think, .content-text, .info {
	display: block;
}

/* 在你的CSS文件中添加以下样式 */
@keyframes rotate360 {
	from {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(360deg);
	}
}

.loading-spinner {
	width: 24px;
	height: 24px;
	border-radius: 50%;
	border: 4px solid rgba(0, 0, 0, 0.1);
	border-top-color: #000;
	animation: rotate360 1s linear infinite;
}

/* 确保所有操作按钮容器在同一行并且靠右对齐 */
.operations {
	display: flex;
	justify-content: flex-end; /* 右对齐 */
	margin-top: 10px; /* 给卡片和操作按钮之间留一点间距 */
}

.operations button {
	background-color: transparent; /* 背景色透明 */
	cursor: pointer;
	color: #666666; /* 字体颜色 */
	border: none;
	font-size: 14px;
	padding: 5px 5px;
	margin: 5px;
	display: flex;
	align-items: center; /* 垂直居中对齐 */
	gap: 3px; /* 图标与文字之间的间距 */
}

/* 设置按钮中的图标 */
.operations button .icon {
	display: inline-block;
	width: 16px;
	height: 20px;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}

/* 定义每个按钮的图标 */
.reaskBtn .icon {
	background-image: url('../img/icon_refresh.png'); /* 替换为实际的图标路径 */
}

.copyBtn .icon {
	background-image: url('../img/icon_copy.png'); /* 替换为实际的图标路径 */
}

/* 可选：鼠标悬停时改变颜色 */
.operations button:hover {
	color: #333333; /* 悬停时字体颜色变深 */
}
