::-webkit-scrollbar {
    display: none;
}

body::-webkit-scrollbar {
    display: none;
}

html {
    background: #fff;
    height: 100%;
    overflow: hidden;
    flex: 1;
}

* {
    margin: 0;
    padding: 0;
}

em,
i {
    font-style: normal;
}

img {
    border: none;
    vertical-align: top;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
    outline: none;
}

body {
    font-family: 'Microsoft YaHei', 'Helvetica Neue', Arial, HelveticaNeue, Helvetica, 'BBAlpha Sans', sans-serif;
    /* background: #ededed; */
    background: #fff;
    font-size: 0.64rem;
    height: 100%;
    overflow: hidden;
    padding: constant(safe-area-inset-top) constant(safe-area-inset-right) constant(safe-area-inset-bottom)
        constant(safe-area-inset-left);
    padding: env(safe-area-inset-top) env(safe-area-inset-right) env(safe-area-inset-bottom) env(safe-area-inset-left);
}

#app {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0 auto;
    padding-bottom: 0;
    width: 100%;
    /** 若修改最大宽度，需要修改index.html APP_WIDTH_MAX  */
    max-width: 1280px;
    height: 100%;
    overflow: hidden;
    background: #ececec;
}

.page-container {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.root-spin-container {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.root-spin {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    color: rgba(0, 0, 0, 0.85);
    font-size: 14px;
    font-variant: tabular-nums;
    line-height: 1.5715;
    list-style: none;
    -webkit-font-feature-settings: 'tnum';
    font-feature-settings: 'tnum';
    position: absolute;
    display: none;
    color: #1890ff;
    text-align: center;
    vertical-align: middle;
    opacity: 0;
    -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86);
    transition: -webkit-transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86);
    transition: transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86);
    transition:
        transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86),
        -webkit-transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86);
}

.root-spin-spinning {
    position: static;
    display: inline-block;
    opacity: 1;
}

.root-spin-nested-loading {
    position: relative;
}

.root-spin-nested-loading > div > .root-spin {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 4;
    display: block;
    width: 100%;
    height: 100%;
    max-height: 400px;
}

.root-spin-nested-loading > div > .root-spin .root-spin-dot {
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -10px;
}

.root-spin-nested-loading > div > .root-spin .root-spin-text {
    position: absolute;
    top: 50%;
    width: 100%;
    padding-top: 5px;
    text-shadow: 0 1px 2px #fff;
}

.root-spin-nested-loading > div > .root-spin.root-spin-show-text .root-spin-dot {
    margin-top: -20px;
}

.root-spin-nested-loading > div > .root-spin-sm .root-spin-dot {
    margin: -7px;
}

.root-spin-nested-loading > div > .root-spin-sm .root-spin-text {
    padding-top: 2px;
}

.root-spin-nested-loading > div > .root-spin-sm.root-spin-show-text .root-spin-dot {
    margin-top: -17px;
}

.root-spin-nested-loading > div > .root-spin-lg .root-spin-dot {
    margin: -16px;
}

.root-spin-nested-loading > div > .root-spin-lg .root-spin-text {
    padding-top: 11px;
}

.root-spin-nested-loading > div > .root-spin-lg.root-spin-show-text .root-spin-dot {
    margin-top: -26px;
}

.root-spin-blur {
    clear: both;
    overflow: hidden;
    opacity: 0.5;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    pointer-events: none;
}

.root-spin-blur::after {
    opacity: 0.4;
    pointer-events: auto;
}

.root-spin-tip {
    color: rgba(0, 0, 0, 0.45);
}

.root-spin-dot {
    position: relative;
    display: inline-block;
    font-size: 20px;
    width: 1.5em;
    height: 1.5em;
}

.root-spin-dot-item {
    position: absolute;
    display: block;
    width: 12px;
    height: 12px;
    background-color: #1890ff;
    border-radius: 100%;
    -webkit-transform: scale(0.75);
    transform: scale(0.75);
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    opacity: 0.3;
    -webkit-animation: antSpinMove 1s infinite linear alternate;
    animation: antSpinMove 1s infinite linear alternate;
}

.root-spin-dot-item:nth-child(1) {
    top: 0;
    left: 0;
}

.root-spin-dot-item:nth-child(2) {
    top: 0;
    right: 0;
    -webkit-animation-delay: 0.4s;
    animation-delay: 0.4s;
}

.root-spin-dot-item:nth-child(3) {
    right: 0;
    bottom: 0;
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s;
}

.root-spin-dot-item:nth-child(4) {
    bottom: 0;
    left: 0;
    -webkit-animation-delay: 1.2s;
    animation-delay: 1.2s;
}

.root-spin-dot-spin {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-animation: antRotate 1.2s infinite linear;
    animation: antRotate 1.2s infinite linear;
}

.root-spin-sm .root-spin-dot {
    font-size: 14px;
}

.root-spin-sm .root-spin-dot i {
    width: 6px;
    height: 6px;
}

.root-spin-lg .root-spin-dot {
    font-size: 32px;
}

.root-spin-lg .root-spin-dot i {
    width: 20px;
    height: 20px;
}

.root-spin.root-spin-show-text .root-spin-text {
    display: block;
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
    .root-spin-blur {
        background: #fff;
        opacity: 0.5;
    }
}

@-webkit-keyframes antSpinMove {
    to {
        opacity: 1;
    }
}

@keyframes antSpinMove {
    to {
        opacity: 1;
    }
}

@-webkit-keyframes antRotate {
    to {
        -webkit-transform: rotate(405deg);
        transform: rotate(405deg);
    }
}

@keyframes antRotate {
    to {
        -webkit-transform: rotate(405deg);
        transform: rotate(405deg);
    }
}

.root-spin-rtl {
    direction: rtl;
}

.root-spin-rtl .root-spin-dot-spin {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-animation-name: antRotateRtl;
    animation-name: antRotateRtl;
}

@-webkit-keyframes antRotateRtl {
    to {
        -webkit-transform: rotate(-405deg);
        transform: rotate(-405deg);
    }
}

@keyframes antRotateRtl {
    to {
        -webkit-transform: rotate(-405deg);
        transform: rotate(-405deg);
    }
}

.header-right-box {
    position: absolute;
    top: 50%;
    right: 0.15rem;
    transform: translateY(-50%);
    display: inline-block;
}

.icon-close {
    /* color: #333; */
    vertical-align: middle;
    z-index: 9;
}

/* 语言选择器样式 */
.language-select {
    background-color: rgba(255, 255, 255, 0.8);
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    padding: 0.2rem 0.5rem;
    font-size: 0.5rem;
    color: #333;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.language-select:after {
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid #666;
    margin-left: 3px;
}

.language-select:hover {
    background-color: rgba(255, 255, 255, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* 阿拉伯语言从右到左显示 */
.arabic-theme {
    direction: rtl;
}

.chatHeader {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 1.8rem;
    line-height: 1.8rem;
    border-bottom: 0.02rem solid #d3d3d3;
    background: #ececec;
    color: #131313;
    text-align: center;
    font-weight: bold;
    font-size: 0.8rem;
}

.artificialAvatarImg {
    width: 1.2rem;
    border-radius: 50%;
    height: 1.2rem;
    margin-top: 0.3rem;
    object-fit: cover;
    margin-right: 0.3rem;
}

.chatPost {
    position: relative;
    z-index: 3;
    margin: 0 auto;
    width: 100%;
    max-width: 1280px;
    min-height: 2rem;
    background: #f6f6f6;
    color: #333;
    font-size: 0;
    border-top: 0.01rem solid #e7e7e7;
}

.tipsBox {
    position: absolute;
    top: -1.9rem;
    display: flex;
    align-items: center;
    justify-content: start;
    height: 1.8rem;
    margin: 0 0.2rem;
    left: 0;
    right: 0;
    width: calc(100% - 0.4rem);
    overflow-x: auto;
    overflow-y: hidden;
    flex-wrap: nowrap;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}
.tipsBox::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}
.tipsBox .tipsCom {
    /* max-width: 33%; */
    padding: 0.2rem 0.5rem;
    font-size: 0.5rem;
    border: 1px solid #02b0f2;
    border-radius: 2rem;
    color: #097af5;
    background-color: #eef2f7;
    z-index: 1;
    white-space: nowrap;
    flex-shrink: 0;
    margin-bottom: unset;
    margin-right: 0.3rem;
}

.chatPostWrapper {
    position: relative;
    padding: 0.3rem 0.3rem 0.45rem;
}

.chatPostWrapper-gm {
    background-color: #eaf2f4;
}
.chatPostWrapper-gm #chatPostTextarea {
    background-color: #dee5e9;
    border-radius: 0.36rem;
    padding-left: 0.5rem;
}
.chatPostWrapper-gm textarea::placeholder {
    color: #333;
}

.chatPostWrapperTop {
    display: flex;
    align-items: center;
}
.AITips {
    height: 1.2rem;
    line-height: 1.5rem;
    width: auto;
    font-size: 0.5rem;
    text-align: center;
    color: #bbbbbb;
}
.txtInputWarp {
    flex: 1;
    margin-right: 0.2rem;
}

/* Rich text editor styles */
.rich-editor-container {
    flex: 1;
    display: none; /* Hidden by default, will be shown for PC devices */
    border-radius: 0.25rem;
    background-color: #fff;
    margin-right: 0.2rem;
}

.ql-editor {
    min-height: 1.6rem;
    max-height: 6rem;
    overflow-y: auto;
    font-size: 0.7rem;
    line-height: 1.5;
}

/* 限制富文本编辑器中的图片最大宽度 */
.ql-snow .ql-editor img {
    max-width: 4rem !important;
    height: auto;
    vertical-align: middle;
    cursor: pointer;
}

.ql-editor::after {
    content: 'Enter 发送 | Ctrl+Enter 或 Shift+Enter 换行';
    display: block;
    position: absolute;
    bottom: 0.2rem;
    right: 0.5rem;
    font-size: 0.55rem;
    color: #999;
    opacity: 0.7;
    pointer-events: none;
}

.ql-editor:focus::after {
    display: none;
}

.ql-container {
    font-size: inherit !important;
}

.ql-toolbar {
    padding: 0.2rem !important;
}
.ql-toolbar.ql-snow {
    display: none;
}
.rich-editor-container .ql-container.ql-snow {
    border: none;
}

/* 图片预览区域样式 */
.image-preview-area {
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem;
    padding: 0.3rem;
    background: #f9f9f9;
    border-radius: 0.15rem;
    margin-bottom: 0.3rem;
}

.image-preview-item {
    position: relative;
    width: 2.6rem;
    height: 2.6rem;
    border: 1px solid #e0e0e0;
    border-radius: 0.2rem;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.image-preview-item:hover {
    transform: scale(1.05);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.image-preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-preview-remove {
    position: absolute;
    top: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    width: 1rem;
    height: 1rem;
    line-height: 1rem;
    text-align: center;
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: bold;
    transition: background-color 0.2s ease;
}

.image-preview-remove:hover {
    background-color: rgba(255, 0, 0, 0.8);
}

.image-upload-progress {
    position: relative;
    margin: 0.5rem 0;
    padding: 0.3rem;
    background-color: #f5f5f5;
    border-radius: 4px;
    font-size: 0.7rem;
    color: #666;
    text-align: center;
}

#textareaTxt,
#chatPostTextarea {
    display: block;
    padding: 0.3rem;
    width: 100%;
    height: 1.6rem;
    max-height: 5.4rem;
    min-height: 1.6rem;
    /* line-height: 1rem; */
    overflow-y: auto;
    background: #fff;
    border-radius: 0.15rem;
    font-size: 0.64rem;
    color: #131313;
    outline: none;
    border: none;
    box-sizing: border-box;
    resize: none;
    word-wrap: break-word;
    caret-color: rgb(3, 121, 3);
}

#textareaTxt {
    position: absolute;
    top: 0;
    z-index: -1;
    height: auto;
    font-family: monospace;
    font-weight: 400;
    font-size: 0.8rem;
}

.sendingBtn {
    display: inline-block;
    background: #07c060;
    color: #fff;
    height: 1.5rem !important;
    line-height: 1.5rem !important;
    text-align: center;
    border-radius: 0.3rem !important;
    font-size: 0.7rem !important;
    vertical-align: bottom;
    padding: 0 0.5rem !important;
    border: unset !important;
}

.sendingBtn.disabled {
    cursor: no-drop;
    background-color: #ccc;
}

.emojIcon {
    margin-right: 0.2rem;
}

.imgBtn span,
.videoBtn span,
.fileBtn span {
    display: flex;
    align-items: center;
    justify-content: center;
}

.imgBtn span svg,
.videoBtn span svg,
.fileBtn span svg {
    width: 100%;
    height: 100%;
    color: #666;
    transition: color 0.3s ease;
}

.imgBtn:hover span svg {
    color: #07c060;
}

.videoBtn:hover span svg {
    color: #07c060;
}

.fileBtn:hover span svg {
    color: #07c060;
}

.emojBtn,
.circleBtn,
.circleBtnClose,
.emojBtnClose {
    display: inline-block;
    vertical-align: bottom;
    line-height: 2rem;
    background-size: 100%;
    width: 1.35rem;
    height: 1.28rem;
}

.imgBtn span,
.videoBtn span,
.fileBtn span {
    width: 1.35rem;
    height: 1.28rem;
}

.emojBtn {
    background: url('../img/emojBtn.png') no-repeat center;
    background-size: 98%;
}

.circleBtn {
    margin-right: 0.2rem;
    background: url('../img/circleBtn.png') no-repeat center;
    background-size: 98%;
    transition: transform 0.3s ease;
    transform: rotate(0deg);
}

.circleBtnClose {
    margin-right: 0.2rem;
    /* background: url('../img/circleBtnClose.png') no-repeat center; */
    /* background-size: 98%; */
    transform: rotate(45deg);
}

.emojBtnClose {
    background: url('../img/emojBtnClose.png') no-repeat center;
    background-size: 98%;
}

.fileList {
    display: flex;
    align-items: center;
    /* margin-top: 0.12rem; */
}

.imgBtn,
.videoBtn,
.fileBtn {
    padding: 0.2rem;
    margin: 0.2rem;
    display: inline-block;
    background: #fff;
    border-radius: 0.3rem;
    position: relative;
    cursor: pointer;
}

.file-permission-tip {
    line-height: 0.75rem;
    font-size: 0.56rem;
    color: #999;
}

.imgBtn {
    margin-left: 0;
}

.uploadBtn {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    z-index: 1;
}

.service {
    position: relative;
    flex: 1;
    width: 100%;
    min-height: 1rem;
    overflow-y: auto;
    box-sizing: border-box;
    -webkit-overflow-scrolling: touch;
    background: #ededed;
    margin-bottom: 1.7rem;
}

.service .contentAreaBody {
    height: 100%;
}

#contentArea {
    color: #131313;
}

#contentArea .sculpture {
    width: 2rem;
    height: 2rem;
    overflow: hidden;
    border-radius: 50%;
}

#contentArea .contentAreaList {
    min-height: 1rem;
    line-height: 0.7rem;
    margin: 0.6rem 0.4rem;
    font-size: 0;
    padding: 0 0.2rem;
}

#contentArea .contentAreaList:after {
    content: '';
    clear: both;
    display: block;
}

.content {
    position: relative;
    display: inline-block;
    padding: 0.22rem 0.3rem;
    /* padding-top: 0.5rem; */
    max-width: 68%;
    max-width: calc(100% - 3.6rem);
    line-height: 1.12rem;
    min-height: 1.2rem;
    background: #fff;
    border-radius: 0.36rem;
    white-space: pre-line;
    word-wrap: break-word;
    font-size: 0.64rem;
    border: 0.1rem solid transparent;
    word-break: break-word;
}
.problemListBox {
    position: relative;
    display: inline-block;
    padding: 0.22rem 0.3rem;
    /* padding-top: 0.5rem; */
    max-width: 68%;
    max-width: calc(100% - 3.6rem);
    line-height: 1.12rem;
    min-height: 1.2rem;
    background: #fff;
    border-radius: 0.36rem;
    white-space: pre-line;
    word-wrap: break-word;
    font-size: 0.64rem;
    border: 0.1rem solid transparent;
}

.gmChatContent {
    margin-top: 0.2rem;
    width: auto;
}
.gm-avatar-wrapper {
    width: 2rem;
    height: 2rem;
    border-radius: 0.36rem;
    overflow: hidden;
}
.gm-avatar-wrapper .gm-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.serviceGm .gm-avatar-wrapper {
    float: left;
}
.player-avatar-wrapper {
    position: relative;
    width: 2rem;
    height: 2rem;
    float: right;
    margin-left: 0.2rem;
    border-radius: 0.3rem;
}
.player-avatar-img {
    width: 90%;
    height: 90%;
    object-fit: cover;
    border-radius: 0.3rem;
}
.player-avatar-frame {
    position: absolute;
    top: -28%;
    left: -28%;
    /* inset: 0; */
    width: 150%;
    height: 150%;
    object-fit: contain;
    pointer-events: none;
}
.serviceUser .player-info {
    color: #2d4263;
    font-size: 0.6rem;
    display: flex;
    justify-content: end;
}
.serviceUser .player-info .player-level {
    font-weight: 700;
    color: #2c7ef6;
    margin-right: 0.2rem;
}
.serviceUser .player-info .player-name {
    display: inline-block;
    max-width: 9rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin-right: 0.5rem;
}
.chat-content-wrapper {
    flex: 1;
    margin-left: 0.12rem;
}
.gmChatContent-title {
    display: flex;
    align-items: center;
    width: auto;
}
.gmChatContent-title .gmTitle-icon {
    width: 1.5rem;
    object-fit: contain;
    margin-left: 0.65rem;
}
.gmChatContent-title .gmTitle-text {
    font-size: 0.6rem;
    color: #e63838;
    margin-left: 0.2rem;
}

.content-box-gm {
    padding: unset;
    border: unset;
}
.content-box-gm .content-box-title {
    /* padding: 0.313rem; */
    /* padding-top: 0.5rem; */
    font-size: 0.7rem;
    color: #fff;
    font-weight: bold;
    text-align: center;
    height: 2.25rem;
    line-height: 1.5rem;
    background-color: #66b6f4;
    background: url('../img/gmTitle.png') no-repeat center top;
    background-size: 100%;
    /* border-bottom: 1px solid #3a74a2; */
    border-radius: 0.36rem 0.36rem 0 0;
    text-shadow: 0px 0px 6px rgba(0, 0, 0, 0.8);
}
.content-box-gm .content-box-content {
    padding: 0.313rem;
    padding-top: 0;
}
.content-box-gm .solve {
    margin-bottom: 0.5rem;
    margin-top: 0;
}
.content-box-gm .chatEvaluateTitle {
    color: #477ea9;
    font-weight: bold;
}

.content a {
    color: #4a70ff;
}

.content strong,
.problemListBox strong {
    font-weight: normal;
    display: block;
}

.problemList p {
    line-height: 0.8rem;
    cursor: pointer;
    color: #777;
}

.popup-form__item,
.problemListText,
.popover-guess-question__item {
    padding: 0.35rem 0;
    border-top: 0.02rem solid #f2f2f2;
    line-height: 0.8rem;
    cursor: pointer;
    color: #777;
}

.popup-form__item {
    word-break: break-all;
    word-wrap: break-word;
}

.popup-form__item:hover {
    color: #333;
}

.content .change,
.problemListBox .change {
    text-align: right;
    color: #7f7f7f;
    border-top: 1px solid #f2f2f2;
    line-height: 0.4rem;
    cursor: pointer;
    padding-top: 0.4rem;
}

.content .change span,
.problemListBox .change span {
    background: url(../img/change.png) no-repeat center;
    background-size: 98%;
    width: 0.8rem;
    height: 0.8rem;
    display: inline-block;
    margin-right: 0.1rem;
    vertical-align: sub;
}

.arrow {
    width: 0px;
    height: 0px;
    border: 0.36rem solid;
    border-left-color: transparent;
    border-right-color: #fff;
    border-top-color: transparent;
    border-bottom-color: transparent;
    display: inline-block;
    vertical-align: top;
    margin-top: 0.7rem;
    margin-left: -0.2rem;
}

.serviceUser .sculpture {
    float: right;
}

.serviceUser .content {
    float: right;
    background: #95ec69;
}

.serviceUser .arrow {
    margin-right: -0.24rem;
    margin-left: 0;
    float: right;
    transform: rotateY(180deg);
    border-right-color: #95ec69;
}
#contentArea .sculpture-gm {
    border-radius: 8%;
}
#contentArea .avatarFrame {
    background-size: 100%;
}

.serviceUser .content-box-revoke .content {
    background: #ccc;
}

.serviceUser .content-box-revoke .arrow {
    border-right-color: #ccc;
}

.previousQuestionUnresolved .line {
    border-top: 0.02rem solid #f2f2f2;
}

.previousQuestionUnresolved .line .isOnline {
    color: #999;
}

.serviceMessage {
    position: absolute;
    right: 0;
    top: -3rem;
    background: #fff;
    height: 1.2rem;
    padding: 0 0.2rem 0 0.4rem;
    border-radius: 0.6rem 0 0 0.6rem;
    line-height: 1.2rem;
    color: #36b653;
    font-size: 0.64rem;
}

.serviceMessage span {
    background: url(../img/messageArrow.png) no-repeat;
    width: 0.46rem;
    height: 0.46rem;
    display: inline-block;
    background-size: 100%;
    margin-right: 0.2rem;
}

.endChat {
    position: absolute;
    left: 0.06rem;
    top: -0.7rem;
    background: #fff;
    height: 0.5rem;
    padding: 0 0.2rem 0 0.2rem;
    border-radius: 0.3rem;
    line-height: 0.5rem;
    box-shadow: 0.1rem 0.1rem 0.1rem #e0e0e0;
    color: #333;
    font-size: 0.26rem;
}

.endChat span {
    background: url(../img/endBtn.png) no-repeat;
    width: 0.3rem;
    height: 0.3rem;
    display: inline-block;
    background-size: 100%;
    margin-right: 0.1rem;
    vertical-align: middle;
}

.serviceTime {
    font-size: 0.6rem;
    color: #939393;
    text-align: center;
    margin: 0.3rem 0;
}

.emojiList {
    margin-top: 0.4rem;
    overflow: hidden;
    zoom: 1;
    height: 5.7rem;
    overflow: hidden auto;
    display: flex;
    flex-flow: row wrap;
}

.emojItem {
    font-size: 1rem;
    text-align: center;
    padding: 0.22rem;
    /* flex: 1; */
}

.chatTips {
    z-index: 9999;
    position: fixed;
    top: 50%;
    left: 50%;
    overflow: hidden;
    max-width: 80%;
    transform: translateX(-50%) translateY(-50%);
    padding: 0.4rem 0.6rem;
    line-height: 1rem;
    border-radius: 0.3rem;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.6);
    color: #fff;
    font-size: 0.64rem;
}

.content img {
    max-width: 100%;
    width: 5rem !important;
    height: 5rem !important;
    margin-bottom: 0.15rem;
    cursor: pointer;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.content .solveBtm img:hover {
    transform: scale(1.02);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    border-radius: 0.75rem;
}

.content video {
    max-width: 100%;
    width: 5rem !important;
    height: 5rem !important;
}

.serviceGm .gmChatContent img,
.serviceGm .gmChatContent video {
    width: auto !important;
    height: auto !important;
    object-fit: contain;
}

.mask {
    background: #000;
    opacity: 0.8;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
}

.videoPopup {
    position: fixed;
    width: 100%;
    z-index: 4;
    top: 0;
    left: 0;
    height: 100%;
}

.videoPopup video {
    position: fixed;
    width: 100%;
    z-index: 5;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.videoPopup .close {
    width: 1.6rem;
    height: 1.6rem;
    background: url(../img/videoClose.png) no-repeat center top;
    background-size: 100%;
    position: absolute;
    top: 0.3rem;
    right: 0.3rem;
    z-index: 6;
}

.circleProcess {
    position: absolute;
    width: 1.7rem;
    height: 1.7rem;
    left: -0.1rem;
    top: 50%;
    transform: translate(0, -50%);
}

.circleProcessFile {
    left: 0.4rem;
}

.circleProcess .circleWrapper {
    width: 50%;
    height: 100%;
    position: absolute;
    top: 0;
    overflow: hidden;
}

.circleProcess .circleWrapperRight {
    right: 0;
}

.circleProcess .circleWrapperLeft {
    left: 0;
}

.circleProcess .circle {
    width: 1.7rem;
    height: 1.7rem;
    border: 0.2rem solid transparent;
    border-radius: 50%;
    position: absolute;
    top: 0;
    transform: rotate(-135deg);
    box-sizing: border-box;
}

.circleProcess .rightcircle {
    border-top: 0.2rem solid #48b0ef;
    border-right: 0.2rem solid #48b0ef;
    right: 0;
}

.circleProcess .leftcircle {
    border-bottom: 0.2rem solid #48b0ef;
    border-left: 0.2rem solid #48b0ef;
    left: 0;
}

.circleText {
    line-height: 1.6rem;
    text-align: center;
    font-size: 0.56rem;
    color: #48b0ef;
}

.chatEvaluate {
    width: 70%;
    padding: 0.3rem;
    background: #fff;
    margin: 0 auto;
    border-radius: 0.2rem;
    margin-bottom: 1rem;
    text-align: center;
    font-size: 0.64rem;
    position: fixed;
    z-index: 4;
    top: 3rem;
    left: 12%;
}

.chatEvaluateTitle {
    margin-bottom: 0.2rem;
    text-align: center;
    line-height: 0.8rem;
}

.chatEvaluateScore {
    display: flex;
    justify-content: center;
    width: 100%;
    /* flex-flow: row wrap; */
}

/* content-box-gm 类下使用自定义图片星星 */
.content-box-gm .chatEvaluateScore {
    align-items: center;
    gap: 0.2rem;
}

.content-box-gm .star-item {
    display: inline-block;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.content-box-gm .star-item:hover:not(.star-disabled) {
    transform: scale(1.1);
}

.content-box-gm .star-item.star-disabled {
    cursor: not-allowed;
    opacity: 0.6;
}

.content-box-gm .star-icon {
    width: 1.3rem !important;
    height: 1.3rem !important;
    display: block;
    object-fit: contain;
}

.chatEvaluateList {
    flex: 1;
    text-align: center;
    margin: 0 0.1rem;
    color: #f0f0f0;
}

.chatEvaluateList span {
    width: 1.66rem;
    height: 1.66rem;
    display: inline-block;
}

.chatEvaluateList p {
    line-height: 0.6rem;
}

/* .chatEvaluateList:nth-child(1) span {
    background: url(../img/satisfied.png) no-repeat;
    background-size: 100%;
}

.chatEvaluateList:nth-child(2) span {
    background: url(../img/same.png) no-repeat;
    background-size: 100%;
}

.chatEvaluateList:nth-child(3) span {
    background: url(../img/dissatisfied.png) no-repeat;
    background-size: 100%;
} */
.chatEvaluateList svg {
    width: 1.4rem;
}

.chatEvaluateList:nth-child(1).on svg {
    color: #ecd334;
}

.chatEvaluateList:nth-child(2).on svg {
    color: #ecd334;
}

.chatEvaluateList:nth-child(3).on svg {
    color: #ecd334;
}

.chatEvaluateList:nth-child(4).on svg {
    color: #ecd334;
}

.chatEvaluateList:nth-child(5).on svg {
    color: #ecd334;
}

.chatEvaluateList.on p {
    color: #ff8400;
}

.chatEvaluateText {
    width: 95%;
    height: 2rem;
    border: none;
    background: #f2f2f2;
    margin-top: 0.3rem;
    padding: 0.2rem;
    font-size: 0.64rem;
    border-radius: 0.2rem;
    resize: none;
    margin-top: 0.5rem;
}
.content-box-gm-textarea {
    display: flex;
    justify-content: center;
}
.content-box-gm-textarea .chatEvaluateText {
    background-color: #e0e4ec;
    font-size: 0.54rem;
    padding-left: 0.4rem;
    width: 93%;
}

.chatEvaluateSubmit {
    width: 70%;
    height: 1.7rem;
    background: #02b0f2;
    margin: 0.4rem auto;
    border-radius: 0.3rem;
    line-height: 1.7rem;
    color: #fff;
    text-align: center;
    cursor: pointer;
}

.content-box-gm .chatEvaluateSubmit {
    margin-top: 0.5rem;
    background: transparent;
    border: none;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.content-box-gm .submit-gm-btn {
    background: url('../img/submit_gm.png') no-repeat center;
    background-size: contain;
    width: 60%;
}

.content-box-gm .chatEvaluateSubmit .submit-icon {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    cursor: pointer;
}

.content-box-gm .chatEvaluateSubmit.prohibitSubmit .submit-icon {
    opacity: 0.6;
    cursor: not-allowed;
}

.content-box-gm .chatEvaluateSubmit span {
    /* display: none; */
}

.chatEvaluate .circleBtnClose {
    position: absolute;
    top: 0.1rem;
    right: 0.1rem;
}

.other {
    color: #4a70ff;
    display: block;
}

.other span {
    display: inline-block;
    vertical-align: bottom;
    line-height: 1.6rem;
    width: 1.6rem;
    height: 1.6rem;
    background: url(../img/fileBtn.png) no-repeat center;
    background-size: 100%;
    vertical-align: middle;
    margin-right: 0.2rem;
}

.other::after {
    color: #000;
}

.other[alt='.txt'] span {
    color: #000;
}

.solve {
    margin-top: 0.5rem;
    margin-bottom: 0.3rem;
}

.solveBtm {
    display: flex;
    justify-content: space-evenly;
}

.solveList {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.1rem 0.2rem;
    min-width: 34%;
    max-width: 48%;
    height: 0.9rem;
    line-height: 0.24;
    text-align: center;
    border: 1px solid #abb4c8;
    border-radius: 0.6rem;
    color: #abb4c8;
    font-size: 0.6rem;
    cursor: pointer;
}

.solveList span {
    vertical-align: sub;
    width: 0.8rem;
    height: 0.8rem;
    display: inline-block;
    margin-right: 0.2rem;
}

.solveList.on {
    color: #5ecbf5;
    border-color: #5ecbf5;
    font-weight: bold;
}

.solveList:nth-child(1) span {
    background: url(../img/praise.png) no-repeat;
    background-size: 100%;
}

.solveList:nth-child(2) span {
    background: url(../img/tread.png) no-repeat;
    background-size: 100%;
}

.solveList:nth-child(1).on span {
    background: url(../img/onPraise.png) no-repeat;
    background-size: 100%;
}

.solveList:nth-child(2).on span {
    background: url(../img/onTread.png) no-repeat;
    background-size: 100%;
}

/* content-box-gm 类下使用新图片 */
.content-box-gm .solveList {
    border: unset;
    height: auto;
}
.content-box-gm .solveList .solve-icon {
    vertical-align: middle;
    width: 4.2rem !important;
    height: 1.55rem !important;
    display: inline-block;
    margin-right: 0.2rem;
    object-fit: contain;
}

.content-box-gm .solveList span {
    display: none;
}

.chatEvaluateBody.content {
    display: block;
    margin: 0 auto;
    box-shadow: 0.1rem 0.1rem 0.2rem #ccc;
    max-width: 12rem;
}

.prohibitSubmit {
    pointer-events: none;
    background: #999;
}

.msgTips {
    font-size: 0.64rem;
    text-align: center;
    color: #666;
}

.msgCatch,
.msgError {
    position: absolute;
    width: 1rem;
    height: 1rem;
    left: -1.2rem;
    top: 0.2rem;
    background: url(../img/msgCatch.png) no-repeat center center;
    background-size: 100%;
}

.msgError {
    top: 0.5rem;
}

.loginError {
    padding-top: 2rem;
    line-height: 1rem;
    text-align: center;
    color: #666;
    font-size: 0.64rem;
}

.loginError img {
    width: 2.2rem;
    height: 2.2rem;
}

.loginError span {
    color: #999;
    cursor: pointer;
}

.chatVideo {
    position: relative;
}

.chatVideo span {
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    margin: -1rem 0 0 -1rem;
    width: 2rem;
    height: 2rem;
    background: url(../img/videoPlayBtn.png) no-repeat;
    background-size: 100%;
}

.chatPost-artificial {
    display: inline-block;
    flex-shrink: 0;
    white-space: nowrap;
}

.chatHeaderIcon,
.order,
.language-select,
.form-btn {
    display: inline-block;
    margin: 0 0.1rem 0.24rem 0;
    padding: 0.26rem 0.35rem;
    line-height: 0.6rem;
    font-size: 0.5rem;
    color: #000;
    background: #ffff;
    border-radius: 0.8rem;
    cursor: pointer;
}

.order span,
.form-btn span {
    background: url(../img/order.png) no-repeat;
    width: 0.6rem;
    height: 0.6rem;
    background-size: 100%;
    display: inline-block;
    vertical-align: middle;
    margin-right: 0.2rem;
}

.question-comment {
    border-top: 0.02rem solid #d3d3d3;
    margin-top: 0.2rem;
    text-align: right;
    padding-top: 0.1rem;
}

.question-comment-list {
    display: inline-block;
    color: #097af5;
    margin-left: 0.4rem;
}

.question-comment-list span {
    vertical-align: top;
    width: 0.6rem;
    height: 0.6rem;
    display: inline-block;
    margin-right: 0.2rem;
    margin-top: 0.3rem;
}

.question-comment-list.on {
    border-color: #5ecbf5;
    font-weight: bold;
}

.question-comment-list:nth-child(1) span {
    background: url(../img/praiseQuestion.png) no-repeat;
    background-size: 100%;
}

.question-comment-list:nth-child(2) span {
    background: url(../img/treadQuestion.png) no-repeat;
    background-size: 100%;
}

.question-comment-list:nth-child(1).on span {
    background: url(../img/onPraiseQuestion.png) no-repeat;
    background-size: 100%;
}

.question-comment-list:nth-child(2).on span {
    background: url(../img/onTreadQuestion.png) no-repeat;
    background-size: 100%;
}

.access-content {
    text-align: center;
    margin: 1.5rem 0;
}

/* 翻译图标 */
.translate-icon {
    width: 1rem;
    height: 1rem;
    margin-left: 0.3rem;
    align-self: flex-end;
    cursor: pointer;
    vertical-align: middle;
}

/* 翻译结果文案 */
.translated-content {
    margin-top: 0.2rem;
    padding-top: 0.2rem;
    border-top: 0.02rem dashed #d3d3d3;
    color: #333;
    font-size: 0.6rem;
    word-wrap: break-word;
    white-space: pre-line;
}

.chat-access {
    display: inline-block;
    margin: 0 auto;
    min-width: 8rem;
    background: #fff;
    font-size: 0.8rem;
    position: relative;
    padding: 1rem 0.3rem 0.3rem 0.3rem;
    box-shadow: 0.2rem 0.2rem 0.2rem #ccc;
    border-radius: 0.3rem;
    line-height: 1rem;
}

.chat-access img {
    width: 2rem;
    border-radius: 50%;
    height: 2rem;
    object-fit: cover;
    position: absolute;
    top: -0.9rem;
    left: 50%;
    margin-left: -0.75rem;
}

.chat-access h2 {
    font-size: 0.8rem;
    font-weight: normal;
    margin-top: 0.2rem;
}

.chat-access p {
    font-size: 0.6rem;
    color: #d7d7d7;
}

#artificial-btn {
    color: #097af5;
    cursor: pointer;
}

.serviceGm .stream-loading {
    display: inline-block;
    margin-left: 0.2rem;
    height: 0.9rem;
    width: 0.9rem;
    vertical-align: middle;
    background: url(../img/loading.gif) no-repeat center center/100%;
}

@keyframes dropShadow {
    0% {
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    }

    100% {
        box-shadow: 0 0 30px rgba(0, 0, 0, 0.4);
    }
}

.serviceGm .content-box {
    position: relative;
    display: flex;
    width: 100%;
}

.serviceGm .loading.content-box::after {
    content: '';
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
    box-shadow: 0 0 5px 0 rgb(3, 151, 236) inset;
    animation: waveMove 1s linear infinite;
}

@keyframes waveMove {
    0% {
        transform: scale(1);
        box-shadow: 0 0 10px 0 rgb(3, 151, 236) inset;
        opacity: 1;
    }

    100% {
        transform: scale(1.2);
        box-shadow: 0 0 40px 0 rgb(3, 151, 236) inset;
        opacity: 0;
    }
}

.popover-guess-question {
    position: absolute;
    z-index: 33;
    bottom: 3.2rem;
    left: 0;
    width: 100%;
    max-height: 48vh;
    background-color: #fff;
    word-break: break-all;
    font-size: 0.64rem;
    border: 1px solid #dfdfdf;
    box-sizing: border-box;
}

.popover-guess-question__contain {
    padding: 0 0.4rem;
}

.popover-guess-question__head {
    display: flex;
    justify-content: space-between;
    line-height: 1.5rem;
    font-size: 0.68rem;
}

.popover-guess-question__head__icon--close {
    position: relative;
    top: 0.14rem;
    right: -0.2rem;
    display: block;
    width: 1.2rem;
    height: 1.2rem;
    background: url(../img/close.png) no-repeat center center/80%;
}

.content.loading-content {
    border: 0.1rem solid transparent;
    background-clip: padding-box, border-box;
    background-origin: padding-box, border-box;
    background-image:
        linear-gradient(to right, #fff, #fff),
        linear-gradient(to left, #ffbaf5, #b9f0f8, #81c1ff, #deb4fa, #fde7fa, #81c1ff, #b9f0f8, #deb4fa, #ffbaf5);
    background-size: 200% auto;
    animation: backgroundPosition 2s linear infinite;
}

@keyframes backgroundPosition {
    to {
        background-position: 100% center;
    }
}

.content-box.loading .arrow {
    border-right-color: #ffbaf5;
}

.userIcon-hide {
    width: 0;
    height: 0;
    opacity: 0;
    background: url(../img/iconHead3.png) no-repeat center center;
}

.msgCatchIcon-hide {
    width: 0;
    height: 0;
    opacity: 0;
    background: url(../img/msgCatch.png) no-repeat center center;
}

.popup-form {
    position: absolute;
    z-index: 33;
    top: 0;
    left: 4rem;
    min-width: 5rem;
    max-width: calc(100% - 5rem);
    max-height: 50vh;
    background-color: #fff;
    word-break: break-all;
    font-size: 0.64rem;
    border: 1px solid #dfdfdf;
    box-shadow: 2px 2px 5px #0000000f;
    box-sizing: border-box;
}

.popup-form__contain {
    padding: 0 0.4rem;
}

.popup-form__head {
    display: flex;
    justify-content: space-between;
    line-height: 1.5rem;
    font-size: 0.68rem;
}

.popup-form__icon--close {
    position: relative;
    top: 0.14rem;
    right: -0.2rem;
    display: block;
    width: 1.2rem;
    height: 1.2rem;
    background: url(../img/close.png) no-repeat center center/80%;
}

.popup-form__contain__itemwarp {
    height: calc(80% - 1.5rem);
    min-height: 1rem;
    max-height: 30vh;
    overflow-y: auto;
    margin-bottom: 0.3rem;
}

.popup-form__contain__itemwarp::-webkit-scrollbar {
    display: block;
}

.popup-form__contain__itemwarp::-webkit-scrollbar {
    width: 0.4rem;
    /*对垂直流动条有效*/
    height: 0.4rem;
    /*对水平流动条有效*/
}

/*定义滚动条的轨道颜色、内阴影及圆角*/
.popup-form__contain__itemwarp::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 0.16rem rgba(0, 0, 0, 0.3);
    background-color: #fefefe;
    border-radius: 0.2rem;
}

/*定义滑块颜色、内阴影及圆角*/
.popup-form__contain__itemwarp::-webkit-scrollbar-thumb {
    border-radius: 0.2rem;
    -webkit-box-shadow: inset 0 0 0.16rem rgba(0, 0, 0, 0.3);
    background-color: #ccc;
}

.popover-arrow {
    position: absolute;
    display: block;
    width: 1rem;
    height: 1rem;
    overflow: hidden;
    background: 0 0;
    pointer-events: none;
}

.popover-arrow--bottom {
    top: 0;
    left: 1.5rem;
    transform: translateY(-100%) translate(-50%);
}

.popover-arrow--top {
    bottom: 0;
    left: 1.5rem;
    transform: translateY(100%) translate(-50%);
}

.popover-arrow-content {
    position: absolute;
    inset: 0;
    display: block;
    width: 0.5rem;
    height: 0.5rem;
    margin: auto;
    content: '';
    pointer-events: auto;
    border-radius: 0 0 2px;
    pointer-events: none;
    border: 1px solid #dfdfdf;
    box-shadow: 2px 2px 5px #0000000f;
    transform: translateY(0.5rem) rotate(-135deg);
}

.popover-arrow--top .popover-arrow-content {
    transform: translateY(-0.5rem) rotate(45deg);
}

.popover-arrow-content:before {
    position: absolute;
    top: -0.5rem;
    left: -0.5rem;
    width: 1.5rem;
    height: 1.5rem;
    background: #fff;
    background-repeat: no-repeat;
    background-position: -0.45rem -0.45rem;
    content: '';
    -webkit-clip-path: inset(33% 33%);
    clip-path: inset(33% 33%);
    -webkit-clip-path: path(
        'M 9.849242404917499 24.091883092036785 A 5 5 0 0 1 13.384776310850237 22.627416997969522 L 20.627416997969522 22.627416997969522 A 2 2 0 0 0 22.627416997969522 20.627416997969522 L 22.627416997969522 13.384776310850237 A 5 5 0 0 1 24.091883092036785 9.849242404917499 L 23.091883092036785 9.849242404917499 L 9.849242404917499 23.091883092036785 Z'
    );
    clip-path: path(
        'M 9.849242404917499 24.091883092036785 A 5 5 0 0 1 13.384776310850237 22.627416997969522 L 20.627416997969522 22.627416997969522 A 2 2 0 0 0 22.627416997969522 20.627416997969522 L 22.627416997969522 13.384776310850237 A 5 5 0 0 1 24.091883092036785 9.849242404917499 L 23.091883092036785 9.849242404917499 L 9.849242404917499 23.091883092036785 Z'
    );
}

.iframePopup {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 5;
    width: 100%;
    height: 100%;
    background: #ececec;
}

.iframe-popup-close {
    position: absolute;
    right: 0.64rem;
    top: 0.6rem;
    z-index: 3;
    display: block;
    width: 0.8rem;
    height: 0.8rem;
    background: url(/images/default/clear.png) no-repeat center center;
    background-size: 100%;
    cursor: pointer;
}

#aiiframe {
    position: absolute;
    left: 50%;
    top: 0;
    z-index: 1;
    display: block;
    max-width: 750px;
    width: 100%;
    height: 100%;
    transform: translate(-50%, 0);
}

.form-tips--ok {
    margin-top: -0.2rem;
    white-space: normal;
    line-height: 0.7rem;
    font-size: 0.6rem;
    color: #ccc;
}

.form-tips--0 {
    margin-top: -0.1rem;
}

.chatData-11-form-btn {
    cursor: pointer;
    word-wrap: break-word;
}

/* 富文本消息样式 */
.rich-text-content {
    max-width: 100%;
    overflow-x: auto;
}

.rich-text-content img {
    max-width: 100%;
    height: auto;
    margin: 5px 0;
    border-radius: 4px;
}

.rich-text-content p {
    margin: 5px 0;
}

.content .rich-text-content {
    word-break: break-word;
}

/* 身份证验证样式 */
.id-card-verify-box {
    padding: 0.5rem 0.6rem;
    background: #f8f9fa;
    border-radius: 0.3rem;
    margin: 0.3rem 0;
}

.id-card-verify-title {
    font-size: 0.6rem;
    color: #333;
    margin-bottom: 0.5rem;
    line-height: 1.3;
    text-align: center;
}

.id-card-verify-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
}

.id-card-verify-content .van-password-input {
    margin: 0 auto;
    width: 100%;
}

.id-card-verify-input {
    display: inline-block;
    width: 100%;
    height: 1.5rem;
    padding-left: 0.6rem;
    background-color: #ffe;
    border: aliceblue;
    box-sizing: border-box;
}

.id-card-submit-btn {
    width: 100%;
    max-width: 8rem;
    height: 1.5rem;
    border-radius: 0.75rem;
    font-size: 0.6rem;
    font-weight: 500;
}

.id-card-submit-btn.van-button--disabled {
    opacity: 0.5;
    background-color: #e0e0e0;
    border-color: #e0e0e0;
}
.id-card-submit-btn.van-button__text {
    line-height: 0.2;
}
.id-card-verify-content .van-password-input__security li {
    background-color: #ffe;
}
.id-card-verify-box .van-number-keyboard {
    padding-bottom: 0.5rem;
}
.van-number-keyboard .van-key__wrapper .van-key {
    height: 1.4rem;
    font-size: 0.8rem;
}
.van-number-keyboard .van-key__wrapper .van-key__delete-icon {
    width: 1.1rem;
}
.van-number-keyboard .van-number-keyboard__header {
    height: 1.1rem;
}
.page-container .isCardService {
    margin-bottom: 5.7rem;
}
.id-card-verify-content .id-card-submit-btn .van-button__text {
    height: 2rem;
    line-height: 1.4;
}

.invite-dialog {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

.invite-dialog .chatEvaluateBody {
    max-width: 14rem;
    max-height: 90vh;
    overflow: auto;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

/* 确保邀请弹窗中的评价组件内容正常显示 */
.invite-dialog .content-box-content {
    display: block;
    width: 100%;
}

.invite-dialog .skinType0EvaluateBody {
    min-width: 12rem;
    min-height: 11rem;
}

.invite-dialog .skinType1EvaluateBody {
    min-width: 14rem;
}

.invite-dialog .solveBtm,
.invite-dialog .chatEvaluateScore {
    display: flex !important;
}

.inviteReviewTips {
    padding: 0.4rem;
    font-size: 0.6rem;
    color: #333;
}

/* 强制评价底部弹出层（isEndedNotReviewed === true） */
.force-evaluate-popup {
    width: 100%;
    /* 抽屉高度自适应内容：仅展示评分模块时不再强撑半屏，评分后展开更多模块高度自然增长 */
    min-height: auto;
    max-height: 90vh;
    overflow: auto;
    background-color: #fff;
    box-sizing: border-box;
}

/* 强制评价态：消息滚动区底部留白随弹层高度动态变化（内联 style 设置），平滑过渡避免跳变 */
.service.forced-evaluate-scroll {
    transition: padding-bottom 0.2s ease;
}

.force-evaluate-popup .chatEvaluateBody {
    width: 100%;
    max-width: 100% !important;
    min-width: 0;
    min-height: 0;
    background-color: #fff;
    box-shadow: none;
    border-radius: 0;
    padding: 1rem 0.8rem 1.2rem;
    box-sizing: border-box;
    box-shadow: unset !important;
}

/* 顶部 GM 主题在底部弹层里不需要顶部背景图，避免视觉突兀 */
.force-evaluate-popup .content-box-gm {
    background: #fff;
}
.force-evaluate-popup .content-box-title {
    background: none;
    color: #333;
    height: auto;
    line-height: 1.4;
    margin: 0 0 0.6rem;
    padding: 0;
    text-shadow: none;
    font-size: 0.8rem;
    font-weight: bold;
    text-align: center;
    border-radius: 0;
}

/* 标题文案：放大、居中、留白 */
.force-evaluate-popup .chatEvaluateTitle {
    font-size: 0.76rem;
    font-weight: bold;
    color: #333;
    text-align: center;
    margin: 0.6rem 0 0.6rem;
    line-height: 1.4;
}
.force-evaluate-popup .chatEvaluateTitle.startTitle {
    margin-top: 0.8rem;
}

/* 解决 / 未解决 按钮一行展示，加大间距与命中区域 */
.force-evaluate-popup .solveBtm {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
    padding: 0 0.4rem;
}

.force-evaluate-popup .solveBtm .solveList {
    flex: 1;
    min-width: 0;
    max-width: none;
    height: 1.4rem !important;
    line-height: 1.7rem !important;
    border-radius: 1.4rem !important;
    font-size: 0.56rem !important;
}

/* skinType 1 中间机器人 icon 不挤压两侧按钮 */
.force-evaluate-popup .solveBtm .robot-icon {
    width: 1.6rem;
    height: 1.6rem;
    object-fit: contain;
}

/* 评分：扩大星星间距 */
.force-evaluate-popup .chatEvaluateScore {
    display: flex !important;
    justify-content: center;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 0.4rem;
}

/* GM 主题下的星星沿用原图，但弹层内统一稍微放大间距 */
.force-evaluate-popup .content-box-gm .chatEvaluateScore {
    gap: 0.3rem;
}

/* textarea 与提交按钮拆分，textarea 独占一行 */
.force-evaluate-popup .content-box-gm-textarea,
.force-evaluate-popup .skinType1Textarea {
    display: block;
    margin-top: 0.6rem;
}

.force-evaluate-popup .chatEvaluateText {
    width: 100% !important;
    height: 2.6rem !important;
    box-sizing: border-box !important;
    display: block !important;
    margin: 0 !important;
    padding: 0.4rem 0.5rem !important;
    background: #f5f6f8 !important;
    border-radius: 0.3rem !important;
    font-size: 0.6rem !important;
    color: #333 !important;
}

/* 提交按钮：独占一行、加大高度与圆角，撑满宽度 */
.force-evaluate-popup .chatEvaluateSubmit {
    width: 100% !important;
    height: 1.9rem !important;
    line-height: 1.9rem !important;
    margin: 0.8rem 0 0 !important;
    border-radius: 0.4rem !important;
    font-size: 0.7rem !important;
    box-sizing: border-box !important;
    background: #02b0f2 !important;
    color: #fff !important;
    position: unset !important;
    margin-left: 50% !important;
    transform: translateX(-50%) !important;

}

/* GM 主题里原本使用 submit_gm.png 背景，弹层内统一用纯色按钮，避免被裁切 */
.force-evaluate-popup .content-box-gm .chatEvaluateSubmit,
.force-evaluate-popup .content-box-gm .chatEvaluateSubmit.submit-gm-btn {
    background: #02b0f2;
    border: none;
    width: 100%;
    height: 1.9rem;
    line-height: 1.9rem;
    color: #fff;
    border-radius: 0.4rem;
    padding: 0;
    display: block;
    text-align: center;
}
.force-evaluate-popup .content-box-gm .chatEvaluateSubmit span {
    color: #fff;
    font-size: 0.7rem;
}
.force-evaluate-popup .chatEvaluateSubmit.prohibitSubmit {
    background: #b8d8e8;
    color: #fff;
}
