.consult-qa-err {
    position: absolute !important;
    bottom: -48px;
    left: 105px !important;
    font-size: 1.4rem !important;
    color: #FF1010 !important;
    letter-spacing: 1.4px !important;
    line-height: 20px !important;
    height: 20px !important;
    text-align: left !important;
}
.popup-box-flex {
    margin: 14px 0 34px 0 !important;
}
label {
    font-weight: 500;
}
.type-edit-txt-qa {
    border: none;
    border-bottom: 1px solid #CCCCCC;
    padding: 0 0 8px;
    font-weight: 400;
    font-size: 1.6rem;
    color: #333333;
    letter-spacing: 0;
    width: 100%;
    position: relative;
    background-image: url(/images/arrow-d.svg?811f289…);
    background-repeat: no-repeat;
    background-size: 12px 12px;
    background-position: right 10px center;
    cursor: pointer;
    overflow: hidden;
    text-overflow: ellipsis;
    padding-right: 24px;
}

@media screen and (min-width: 320px) and (max-width: 767px){
    .consul-select-ty{
        margin-left:15px;
    }
    .item-label-attachment{
        flex-wrap: wrap;
    }
}
.form-item-attachment{
    display: none;
}
.item-label-attachment{
    display: flex;
}
.consul-download-attachment{
    margin-top: 20px;
}
.form-item-attachment .consul-upload{
    position: relative;
}
.form-item-attachment .four-close {
    width: 36px;
    height: 36px;
    position: absolute;
    top: -2px;
    right: 6px;
}
.form-item-attachment .file-show{
    display: none;
}
.form-item-attachment .file-text{
    width: auto;
    font-size: 1.3rem;
    margin-bottom:0px;
    text-overflow: ellipsis;
    overflow: hidden;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}



/* ai助手新增 */
.chatModal {
	width: 396px;
	/* max-width: 396px; */
	height: 100%;
	background-color: #ffffff;
	position: fixed;
	top: 0;
	right: 0;
	transition: transform 0.3s ease-in-out;
	z-index: 1000;
}
.chatModal-phone {
	width: 100%;
	height: 100%;
	background-color: #ffffff;
	position: fixed;
	top: 0;
	right: 0;
	transition: transform 0.3s ease-in-out;
	z-index: 1000;
}
.chatModal-content {
	display: flex;
	flex-direction: column;
	position: relative;
	width: 100%;
	height: 100%;
	padding: 7px 10px  ;
	box-sizing: border-box;
	/* border-radius: 16px 0 0 16px; */
	/* display: flex; */
	box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1),
		/* 上阴影 */
	0 -5px 10px rgba(0, 0, 0, 0.1),
		/* 下阴影 */
	-5px 0 10px rgba(0, 0, 0, 0.1),
		/* 左阴影 */
	5px 0 10px rgba(0, 0, 0, 0.1);
	/* 右阴影 */
}
.chatModal-content>.content_left {
	flex: 1;
	height: 100%;
}
.chatModal-content>.content_right {
	padding-top: 12px;
	width: 40px;
	height: 100%;
	background: #F1F0FD;
	box-shadow: -2px 0 0 0 #EEEEEE;
	text-align: center;
}

/* iframe */
.iframeBox {
	height: 100%;
	width: 100%;
	background-image: linear-gradient(156deg, #4469fd08 0%, #6c2efd08 95%);
}


.role_change{
	margin-bottom: 6px;
	position: relative;
	cursor: pointer;
}

.role_change_btn{
	width: 50%;
	font-family: PingFangSC-SNaNpxibold;
	font-weight: 600;
	font-size: 14px;
	color: #2B2B2B;
}

.role_change_list{
	display: none;
	position: absolute;
	top: 20px;
	left: 0;
	padding: 6px 20px 6px 2px;
	background: #FFFFFF;
	border-radius: 12px;
}

.role_change_item{
	font-family: PingFangSC-SNaNpxibold;
	font-weight: 600;
	font-size: 14px;
	color: #2B2B2B;
	padding: 6px 0 ;
}

.side_btn {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-top: 16px;
}
.side_btn_img {
	width: 23px;
	height: 23px;

}
.side_btn_text {
	margin-top: 4px;
	font-family: PingFangSC-Regular;
	font-weight: 400;
	font-size: 12px;
	color: #666666;
}

/* 遮罩层样式 */
.overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #FFFFFF;
	/* border-radius: 8px 0 0 8px; */
	display: none;
	/* 初始时隐藏 */
	z-index: 999;
	/* 使遮罩层在最顶层 */
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

/* 加载图片 */
.loading-img {
	width: 64px;
	height: 64px;
}

/* 加载中文字提示样式 */
.loading-text {
	margin-top: 32px;
	font-family: PingFangSC-Regular;
	font-weight: 400;
	font-size: 14px;
	color: #666666;
}
.contantBox {
	margin-top: 48px;
	width: 160px;
	height: 12px;
	border: 1px solid #5856D6;
	border-radius: 9px;
	position: relative;
}
.contantBox::before {
	content: "";
	position: absolute;
	margin: 2px;
	inset: 0 100% 0 0;
	border-radius: inherit;
	background: #5856D6;
	animation: cartoon 2s infinite;
	-webkit-animation: cartoon 2s infinite;
}

/* 定义动画 */
@keyframes cartoon {
	100% {
		inset: 0;
	}
}
@-webkit-keyframes cartoon {
	100% {
		inset: 0;
	}
}

/* .chatModal-top{

} */

.chatModal-bottom{
	margin-top: 7px;
}

.chatModal-bottom-text{
	color: #2b2b2b;
	font-size: 14px;
	font-family: PingFangSC;
	font-weight: 400;
	line-height: 22px;
}
.chatModal-bottom-textlink{
	color: #0099ff;
	font-size: 14px;
	font-family: PingFangSC;
	font-weight: 400;
	line-height: 22px;
	margin-left: -10px;
}


.chatModal-top{
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.chatModal-top-title >img{
	width: 20px;
	height: 20px;
}

.chatModal-top-title >span {
	width: 84px;
	height: 22px;
	font-family: PingFangSC-SNaNpxibold;
	font-weight: 600;
}

.chatModal-top-close-btn {
	font-size: 28px;
	cursor: pointer;
	/* margin-bottom: 24px; */
	/* position: absolute;
	top: -6px;
	right: 10px; */
}


