body {
	background-color: #ffffff;
}
.page-tool {
	display: flex;
	justify-content: flex-end;
}

.bootbox-body {
    white-space: pre-line;
}

/* 模态框内容 */
.modal-content {
	background: #fff;
	padding: 20px;
	max-width: 800px;
	margin: 20px auto;
	border-radius: 8px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
	position: relative;
}
.modal-content h3 {
	margin-top: 0;
	text-align: center;
}
/* 模态框主体：左右两栏 */
.modal-body {
	display: flex;
	gap: 20px;
	margin-top: 15px;
}
/* 左侧分类区 */
#categoryTabs {
	flex: 0 0 30%;
	max-height: 500px;
	overflow-y: auto;
}
#categoryTabs ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
#categoryTabs li {
	padding: 10px;
	cursor: pointer;
	border-bottom: 1px solid #eee;
}
#categoryTabs li:hover,
#categoryTabs li.active {
	background: #f0f0f0;
}
/* 右侧提示词区 */
#keywordListContainer {
	flex: 1;
	max-height: 500px;
	overflow-y: auto;
	padding-left: 20px;
}
#keywordListContainer ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
#keywordListContainer li {
	padding: 10px;
	cursor: pointer;
	border-bottom: 1px solid #eee;
}
#keywordListContainer li:hover {
	background: #f9f9f9;
}
/* 关闭按钮 */
#closePromptModal {
	display: block;
	margin: 20px auto 0;
	cursor: pointer;
}
.cost-tip {
	color: #ff0000;
	font-style: normal;
}

.pos-l {
    position: absolute;
    z-index: 1000
}
.pos-r {
    position: absolute;
    right: 7px;
    top: 8px;
}

@media (min-width: 481px) {
	.show-block {
		display: none;
	}
}

@media screen and (max-width: 768px) {
	.mobile-flex {
		flex-direction: column;
        gap: 5px !important;
        align-items: flex-start !important;
	}
}

@media only screen and (max-width: 479px) {
    .navbar:not(.navbar-collapse) .ace-nav {
        position: absolute;
        top: 0;
        right: 0;
    }
}