pre {
    line-height: 1;
}

.code-container {
    display: flex;
    margin: 0;
}

.van-multi-ellipsis--l3 .code-container {
    display: none;
}

.num-wrapper, .hljs {
    margin: 0;
    line-height: 18px;
}

.hljs {
    padding: 0 5px;
}

.num-wrapper {
    counter-reset: code-num;
    display: flex;
    flex-direction: column;
    background: #22272e;
    width: 27px;
}

.num-item {
    position: relative;
    height: 18px;
    color: #768390;
}

.num-item:before {
    counter-increment: code-num;
    content: counter(code-num);
    position: absolute;
    right: 5px;
}


@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}

@keyframes voicePopShake {
    0% {
        box-shadow: 0 5px 5px 2px #413cfc;
        opacity: 1;
    }

    100% {
        box-shadow: 0 5px 25px 15px #413cfc;
        opacity: .7;
    }
}

@keyframes voicePopSizeChange {
    0% {
        width: 18px;
        height: 24px;
    }

    100% {
        width: 27px;
        height: 36px;
    }
}

.spin {
    -webkit-animation: spin 1s linear infinite;
    animation: spin 1s linear infinite;
}

.chat-layout {
    width: 100vw;
    height: calc(100vh - 50px - env(safe-area-inset-bottom));
    overflow-x: hidden;
}

.chat-container {
    position: relative;
    width: 100vw;
    height: calc(100vh - 50px - env(safe-area-inset-bottom));
    background-color: #1d1d43;
    color: #ffffffd7;
}

.chat-container-pop {
    position: relative;
    text-align: center;
    border-radius: 50% 50% 0 0 !important;
    background-color: #423cfe !important;
    overflow-y: inherit !important;
}

.chat-container-pop.animation {
    animation: voicePopShake 1.3s infinite;
    -webkit-animation: voicePopShake 1.3s infinite;
}

.chat-container-pop > img {
    margin-top: 30px;
    width: 24px;
    height: 32px;
    animation: voicePopSizeChange 1.3s infinite;
    -webkit-animation: voicePopSizeChange 1.3s infinite;
}

.chat-container-pop-txt {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    color: #d8d8d9;
}

.chat-container-pop-cancel {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #27264e;
    top: -110px;
    left: 25%;
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
}

.chat-container-pop-cancel.voiceCancelEnter {
    background-color: red;
    box-shadow: 0 0 10px 2px red;
}

.chat-container-pop-cancel > img {
    width: 12px;
    height: 12px;
}

.chat-container-pop-text {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #27264e;
    top: -110px;
    left: 75%;
    transform: translateX(-50%);
    font-size: 16px;
    color: #fff;
    width: 80px;
    height: 80px;
    border-radius: 50%;
}

.chat-container-pop-text.translationText {
    background-color: #95ec69;
    box-shadow: 0 0 10px 2px #95ec69;
}

.chat-container-navbar {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #1d1d43;
    padding: 0 16px;
    color: #fff;
    border: 1px solid #39395b;
}

.chat-container-navbar-label {
    display: flex;
    align-items: center;
    font-size: 12px;
}

.chat-container-navbar-label > img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
}

.chat-container-navbar-value {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    width: 100%;
    font-size: 12px;
    background-color: #141332;
    border-radius: 20px;
}

.chat-container-navbar-value-txt {
    margin-left: 10px;
}

.chat-container-navbar-value-txt > img {
    margin-right: 10px;
    width: 16px;
    height: 16px;
}

.chat-container-navbar-value-txt span {
    color: #ff721d;
}

.chat-container-navbar-value-btn {
    background-color: #ff721d;
    padding: 10px 16px;
    border-radius: 20px;
}

.chat-container-navbar-value-btn.noIsLogin {
    background-color: #423cfe;
}

.chat-container-navbar-value > img {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    margin-left: 10px;
}

.chat-container-content {
    position: relative;
    overflow-y: scroll;
    padding: 10px 10px 20px;
    text-align: center;
    background-color: #1d1d43;
}

::-webkit-scrollbar { /* 滚动条整体样式 */
    --bar-width: 5px;
    width: var(--bar-width);
    height: var(--bar-width);
}

::-webkit-scrollbar-thumb {
    background-color: hsla(0, 0%, 100%, .2);
    border-radius: 20px;
    background-clip: content-box;
    border: 1px solid transparent;
}

::-webkit-scrollbar-track {
    background-color: transparent;
}


/*!* 需要滚动的地方加上这个class *!*/
/*.auto-scroll {*/
/*    overflow: overlay;*/
/*}*/

/*.auto-scroll::-webkit-scrollbar { !* 组件内滚动条不显示 *!*/
/*    display: none;*/
/*}*/

/*.auto-scroll:hover::-webkit-scrollbar { !* 悬停时滚动条才显示 *!*/
/*    display: block;*/
/*}*/

.chat-container-content-tips {
    font-weight: 500;
    font-size: 12px;
}

.chat-container-content-problem {
    display: flex;
    justify-content: left;
    align-items: center;
    font-weight: 500;
    font-size: 12px;
    margin: 0 0 10px 58px;
    color: #9d9dab;
}

.chat-container-content-problem-txt {
    display: flex;
    align-items: center;
    margin-left: 20px;
    color: #9bc9fb;
}

.chat-container-content-problem-txt > img {
    width: 20px;
    height: 20px;
    margin-left: 3px;
    color: #9bc9fb;
}

.chat-container-content-card {
    margin-left: 58px;
    margin-right: 15px;
    color: #fffc;
    text-align: left;
}

.chat-container-content-card-item {
    display: inline-block;
    font-size: 12px;
    border-radius: 24px;
    min-width: 100px;
    max-width: 100%;
    padding: 10px 20px;
    background-color: #27264e;
    margin-bottom: 16px;
}

@keyframes slide-in {
    0% {
        opacity: 0;
        transform: translateY(20px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.chat-container-content-prompt-search {
    position: sticky;
    top: 0;
    z-index: 99999;
    /*width: 100%;*/
}


/*.chat-container-content-prompt-search .van-cell {*/
/*    border-radius: 18px !important;*/
/*}*/

.chat-container-content-prompt {
    color: #bbb;
    padding: 6px 10px;
    cursor: pointer;
    animation: slide-in .3s ease;
    transition: all .3s ease;
    border: 1px solid #e1d0d030;
    margin: 4px;
    border-radius: 8px;
    text-align: left;
    position: relative;
}

.chat-container-content-prompt:hover {
    border-color: #1d93ab;
}

.chat-container-content-prompt-title {
    font-weight: bolder;
    color: #ffffffd7;
}

.chat-container-content-prompt-tip {
    display: flex;
    justify-content: space-between;
    color: #a6a6a6;
    font-size: 12px;
    margin-top: 4px;
}

/*.chat-container-content-prompt .van-button--small {*/
/*    height: 30px;*/
/*}*/

.chat-container-content-prompt .van-swipe-cell__right {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    align-items: center;
    min-height: 90px;
}


.chat-container-content-prompt-custom-header-name {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    border-top: 1px solid #d8dee4;
    border-bottom: 1px solid #d8dee4;
}

.chat-container-content-prompt-custom-header-body {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

/*.chat-container-content-card-item.active {*/
/*    background-color: #6a61fe;*/
/*}*/

/* 按钮阴影点击样式 */
.button3D {
    text-align: center;
    box-shadow: 1px 1px 0 0 #423cfe, 2px 2px 0 0 #423cfe, 3px 3px 0 0 #423cfe;
}

.button3D:hover {
    cursor: pointer;
    box-shadow: 1px 1px 0 0 #6a61fe, 2px 2px 0 0 #6a61fe, 3px 3px 0 0 #6a61fe, 4px 4px 0 0 #6a61fe;
}

.button3D:active {
    translate: 1px 1px;
    box-shadow: 1px 1px 0 0 #423cfe, 2px 2px 0 0 #423cfe;
}

.icon-style {
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    cursor: pointer;
    color: #b0b0bd;
}

.icon-style:hover {
    color: #1ab394;
    background-color: rgba(26, 179, 148, .1);
}


.chat-container-bottom {
    position: fixed;
    display: flex;
    align-items: flex-end;
    width: 100%;
    bottom: calc(50px + env(safe-area-inset-bottom));
    padding: 5px 0;
    background-color: #1d1d43;
    border-top: 1px solid #39395b;
}

.chat-container-bottom-search {
    position: relative;
}

.chat-container-bottom-search-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 1px solid #38385a;
    top: 14px;
    right: 26px;
    color: #fff;
    padding: 0 5px;
}

.chat-container-bottom-search .van-search__action:active {
    background-color: #1d1d43 !important;
}

.chat-container-bottom-phone {
    width: 70%;
    height: 100%;
}

.chat-container-bottom-settings {
    margin-left: 9px;
    margin-bottom: 10px;
    padding: 4px;
    border: 1px solid #38385a;
    width: 26px;
    height: 26px;
    border-radius: 50%;
}

.chat-container-bottom-settings.pop {
    position: absolute;
    bottom: -49px;
    left: -14px;
}

.chat-container-bottom .chat-container-bottom-keyboard {
    margin-left: 9px;
    margin-right: 9px;
    width: 26px;
    height: 26px;
    display: none;
}

.chat-container-bottom.isMicrophone {
    /*padding: 13px 0;*/
    align-items: center;
}

.chat-container-bottom.isMicrophone .van-cell.van-field {
    display: none;
}

.chat-container-bottom.isMicrophone .chat-container-bottom-settings {
    display: none
}

.chat-container-bottom.isMicrophone .chat-container-bottom-main {
    width: 0 !important;
    margin-left: 0 !important;
}

.chat-container-bottom.isMicrophone .chat-container-bottom-phone {
    display: none;
}

.chat-container-bottom.isMicrophone .chat-container-bottom-keyboard {
    display: block;
}

.chat-container-bottom.isMicrophone .chat-container-bottom-search {
    display: none !important;
}

.chat-container-bottom.isMicrophone .chat-container-bottom-phoneSearch {
    display: block;
}


.chat-container-bottom-phoneSearch {
    padding: 2px 0;
    display: none;
    text-align: center;
    width: 100%;
    line-height: 34px;
    border-radius: 20px;
    color: #bcc5ca;
    background-color: #423cfe;
    margin-right: 14px;
}

.chat-container-setting-pop {
    position: fixed;
    bottom: calc(130px + env(safe-area-inset-bottom));
    left: 14px;
    color: #fff;
    background-color: #27264e;
    border-radius: 10px;
}

.chat-container-setting-pop-card {
    position: relative;
    padding: 14px;
}

.chat-container-setting-pop-card-label {
    margin-bottom: 10px;
}

.chat-container-setting-pop-card-label span {
    font-size: 12px;
    color: #a8a8b5 !important;
    font-weight: bold;
}

.chat-container-setting-pop-card-label-inner {
    display: inline-block;
    text-align: center;
    line-height: 15px;
    background-color: #39395b;
    padding: 2px 10px;
    border-radius: 10px;
}

.chat-container-setting-pop-card-value {
    margin-bottom: 10px;
}

.chat-container-setting-pop-card-value-inner {
    background-color: #141332;
}

.chat-container-setting-pop-card-value .van-cell {
    padding: 2px 2px 2px 14px;
    color: #fff;
}

.chat-container-setting-pop-card-value .van-cell__value--alone {
    color: #fff !important;
}

.chat-container-setting-pop-card .van-picker {
    position: absolute;
    top: 80px !important;
    left: 18px !important;
}

.chat-records-title {
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #1d1d43;
    border-bottom: 1px solid #39395b;
    position: sticky;
    top: 0;
}

.chat-records-title.isDelete {
    justify-content: space-between;
}

.chat-records-title.isDelete .van-button {
    padding: 0 20px !important;
    margin-left: 10px;
}

.chat-records-title .van-checkbox__label {
    color: #fff !important;
}

.chat-records-title-input {
    width: 76%;
}

.chat-records-title-input .van-cell {
    border-radius: 18px !important;
}

.chat-records-title-input .chat-container-bottom-search-btn {
    width: 34px;
    height: 34px;
}

.chat-records-title-button {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid #333356;
    background-color: #1d1d43;
    margin-right: 10px;
}

.chat-records-title-button img {
    width: 16px;
    height: 16px;
}

.chat-records-title-button-dialog {
    padding: 0 15px 20px 15px;
}

.chat-records-title-button-dialog-title {
    margin-top: 20px;
}

.chat-records-title-button-dialog-value {
    display: flex;
    align-items: center;
    padding-top: 8px;
}

.chat-records-title-button-dialog-value-start {
    margin-right: 5px;
}

.chat-records-title-button-dialog-value-end {
    margin-left: 8px;
}

.chat-records-title-button-dialog-value-end .van-picker {
    left: 70px;
}

.chat-records-title-button-dialog-value .van-cell-group {
    background-color: #141332;
    border-radius: 10px;
}

.chat-records-title-button-dialog-value-is {
    /*border: 1px solid #39395b;*/
    padding: 10px 20px;
    margin-right: 20px;
    border-radius: 24px;
}

.chat-records-title-button-dialog-value-is.active,
.chat-records-title-button-dialog-value-the.active {
    border: 1px solid #423cfe;
    background-color: #423cfe;
}

.chat-records-title-button-dialog-value-the {
    border: 1px solid #39395b;
    border-radius: 24px;
    padding: 10px 20px;
}

.chat-records-title-button.showRecordsFilter {
    background-color: #423cfe;
}

.chat-records-title-button.showRecordsFilter .van-dialog__confirm {
    flex: 7;
    border-radius: 24px;
    background-color: #423cfe;
    margin: 20px 20px 10px 0;
}

.chat-records-title-button.showRecordsFilter .van-dialog__cancel {
    border-radius: 24px;
    flex: 5;
    border: 1px solid #38385a;
    margin: 20px 20px 10px 20px;
}

.chat-records-title-button .van-overlay {
    background-color: rgba(0, 0, 0, 0.2);
}

.bottomButton {
    position: fixed;
    bottom: calc(50px + env(safe-area-inset-bottom));
    height: 30px;
    display: flex;
    vertical-align: middle;
}

.van-overlay {
    position: relative;
}

.chat-home.weixin > .van-overlay::after {
    content: '转发或分享朋友圈...也可邀请哦~';
    position: absolute;
    top: 50px;
    right: 0;
    color: #fff;
    font-size: 16px;
}

.chat-home.weixin > .van-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    right: 10px;
    width: 50px;
    height: 50px;
    background-image: url('../imgs/icon/share.png');
    background-size: cover;
    background-repeat: no-repeat;
    /*-webkit-transform: rotate3d(1, 0, 1, -180deg);*/
    /*transform: rotate3d(1,-1,0,180deg);*/
}

.chat-records-title-button .van-dialog {
    position: absolute !important;
    top: 182px;
    left: -100px;
    width: 270px !important;
    background-color: #27264e;
    color: #fff;
    overflow: inherit;
}

.chat-records-title-button .van-picker {
    position: absolute !important;
    z-index: 1;
    min-width: 184px;
}

.chat-records-title-button .van-button {
    background-color: #27264e;
}

.chat-records-title-button .van-hairline--left::after {
    border-left-width: 0 !important;
}

.chat-records-content {
    min-height: calc(100vh - 105px - env(safe-area-inset-bottom));
    background-color: #1d1d43;
    padding: 20px 20px 20px 20px;
}

.chat-records-content-time {
    display: inline-block;
    padding: 0 10px;
    height: 20px;
    line-height: 20px;
    color: #a8a8b5;
    background-color: #39395b;
    font-size: 12px;
    border-radius: 12px;
    margin-bottom: 12px;
}

/*.chat-records-content-inner.container .chat-records-content-value {*/
/*    padding-bottom: 0;*/
/*}*/

/*.chat-records-content-inner .chat-records-content-inner-item {*/
/*    padding-bottom: 10px;*/
/*}*/
.chat-records-content-inner-gpt-header {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
}

.chat-records-content-inner-gpt-header-tabs {
    display: flex;
    align-items: center;
    padding: 4px 6px;
    border-radius: 12px;
    background-color: #08033a;
    color: #dadada;
    overflow-x: auto;
}

.chat-records-content-inner-gpt-header-tabs-box {
    width: 150px;
    padding: 8px 0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    line-height: 0;
}

.chat-records-content-inner-gpt-header-tabs-box.active {
    background-color: #374151;
    color: #fff;
    border: 1px solid #797878;
}

.gpt-icon {
    margin-right: 6px;
}

.active .gpt-icon1, .chat-records-content-inner-gpt-header-tabs-box:hover .gpt-icon1 {
    color: #1ab394;
}

.active .gpt-icon2, .chat-records-content-inner-gpt-header-tabs-box:hover .gpt-icon2 {
    color: #b31a94;
}

.active .gpt-icon3, .chat-records-content-inner-gpt-header-tabs-box:hover .gpt-icon3 {
    color: #ffce33;
}


.chat-records-content-inner-clear {
    width: 60px;
    height: 28px;
    border: 1px solid #b0b0bd;
    padding: 5px;
    color: #b0b0bd;
    font-size: 12px;
    border-radius: 14px;
}

.chat-records-content-inner-clear img {
    width: 12px;
    height: 12px;
}

.chat-records-none {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #adadba;
    margin: 20px 0;
}

.chat-records-none-line {
    width: 15%;
    border-bottom: 1px solid #adadba;
}

.chat-records-none-txt {
    margin: 0 10px;
}

.chat-records-none-txt.button3D {
    padding: 5px;
    border: 1px solid #404041;
    border-radius: 14px;
}

.chat-records-content-label {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 26px;
}

blockquote {
    display: block;
    padding: 16px;
    margin: 0 0 24px;
    font-size: 14px;
    border-left: 8px solid #404041;
    background: #2e2f30 !important;
    overflow: auto;
    word-break: break-word !important;
}

.chat-records-content-label-inner {
    max-width: 85%;
    padding: 12px 6px 4px 14px;
    background-color: #0f3d66;
    border-radius: 10px 0 10px 10px;
    text-align: left;
}

.chat-records-content-value {
    display: flex;
    align-items: start;
    margin: 26px;
}

.chat-records-content-label-inner img,
.chat-records-content-value img,
.chat-apply-details-inner-value-txt img {
    max-width: 640px;
    width: 99%;
}

.chat-records-content-value p,
.chat-records-content-value ul,
.chat-records-content-value ol,
.chat-apply-details-inner-value-txt p,
.chat-apply-details-inner-value-txt ul,
.chat-apply-details-inner-value-txt ol,
.chat-records-content-label-inner p,
.chat-records-content-label-inner ul,
.chat-records-content-label-inner ol {
    margin: 5px 0;
}

.chat-records-content-value .think-content p,
.chat-records-content-label-inner .think-content p {
    margin: 0 0 8px 0;
}

.chat-records-content-label-inner ul,
.chat-records-content-value ul,
.chat-apply-details-inner-value-txt ul,
.chat-records-content-label-inner ol,
.chat-records-content-value ol,
.chat-apply-details-inner-value-txt ol {
    padding-left: 25px;
}

ul.task-list {
    padding-left: 5px;
}

.chat-records-content-label-inner ul,
.chat-records-content-value ul,
.chat-apply-details-inner-value-txt ul {
    list-style-type: disc;
}

li.task-list-item {
    list-style-type: none;
}

.chat-records-content-label-inner ol,
.chat-records-content-value ol,
.chat-apply-details-inner-value-txt ol {
    list-style-type: decimal;
}

.chat-records-content-label-inner ul > li::marker,
.chat-records-content-value ul > li::marker {
    font-size: 19px;
    color: #b0b0bd;
}

/* 错误信息样式 */
.chat-records-content-value p.error,
.chat-apply-details-inner-value-txt p.error {
    color: red;
    height: auto;
    display: block;
    white-space: normal;
    word-break: break-all;
}

.chat-records-content-value .van-checkbox__icon {
    margin-top: 6px;
    margin-right: 10px;
}

.chat-records-content-value-icon {
    margin-right: 10px;
}

.chat-records-content-value-icon img {
    width: 32px;
    height: 32px;
}

.chat-records-content-value-txt {
    /*overflow: auto;*/
    width: 80vw;
    background-color: #27264e;
    line-height: 22px;
    border-radius: 0 10px 10px 10px;
}

.chat-records-content-label-inner,
.chat-records-content-value-txt {
    overflow-wrap: break-word;
    color: #ffffffd7;
    overflow: auto;
    text-align: left;
    position: relative;
    padding: 0 15px;
}

.chat-records-content-value-txt-card {
    color: #adadba;
    font-size: 12px;
    background-color: #1d1d43;
    padding: 8px 20px;
    border-radius: 6px;
    margin-bottom: 15px;
    line-height: 18px;
}

.chat-records-content-value-txt.container .loading-icon {
    color: #9bc9fb;
}

.chat-records-content-value-txt.container .chat-records-content-value-txt-title {
    font-size: 15px;
    font-weight: 700;
}

.chat-records-content-value-txt-tip {
    color: #b0b0bd;
    font-size: 13px;
    font-weight: 700;
    margin: 15px 0 0 0;
}

.chat-records-content-value-button {
    position: absolute;
    display: none;
    /*display: flex;*/
    color: #fff;
    opacity: 0.6;
    top: 0;
    right: 0;
    font-size: 14px;
}

.chat-records-content-value-button-copy,
.chat-records-content-value-button-refresh,
.chat-records-content-value-button-trash {
    position: relative;
    padding: 5px 6px 3px 6px;
    cursor: pointer;
    border: 1px solid #4a4a4a;
    margin-left: 8px;
    border-radius: 8px;
}

.chat-records-content-value-button-copy::after,
.chat-records-content-value-button-refresh::after,
.chat-records-content-value-button-trash::after {
    content: '';
    position: absolute;
    width: 28px;
    height: 16px;
    top: 40px;
    right: 0;
    left: 50%;
    transform: translate(-50%);
    color: #fff;
}

.chat-records-content-value-button-copy:hover,
.chat-records-content-value-button-refresh:hover,
.chat-records-content-value-button-trash:hover {
    background-color: #423cfe;
}

.chat-records-content-value-button-copy:hover::after {
    content: '复制';
}


.chat-records-content-value-button-refresh:hover::after {
    content: '重试';
}

.chat-records-content-value-button-trash:hover::after {
    content: '删除';
}

.chat-apply-title {
    color: #b0b0bd;
    padding: 20px 0 0 30px;
    background-color: #1d1d43;
}

.chat-apply-top-title {
    padding-bottom: 10px;
    color: #b0b0bd;
    background-color: #1d1d43;
    border-bottom: 1px solid #39395b;
    position: sticky;
    top: 0;
    z-index: 99999;
}

.chat-apply-tab {
    color: #fff;
    display: flex;
    flex-wrap: wrap;
    padding: 10px;
    background-color: #1d1d43;
}

.chat-apply-tab-card {
    background-color: #27264e;
    margin: 0 5px 15px;
    padding: 15px;
    border-radius: 15px;
    width: calc(100vw / 2 - 25px);
}

@media screen and (max-width: 2240px) {
    .chat-apply-tab-card {
        width: calc(100vw / 5 - 25px);
    }
}

@media screen and (max-width: 1792px) {
    .chat-apply-tab-card {
        width: calc(100vw / 4 - 25px);
    }
}

@media screen and (max-width: 1346px) {
    .chat-apply-tab-card {
        width: calc(100vw / 3 - 25px);
    }
}

@media screen and (max-width: 896px) {
    .chat-apply-tab-card {
        width: calc(100vw / 2 - 25px);
    }
}

.chat-apply-tab-img {
    margin-right: 6px;
    margin-bottom: 6px;
}

.chat-apply-tab-img > img {
    width: 40px;
    height: 40px;
}

.chat-apply-tab-title {
    display: flex;
    align-items: center;
    font-weight: 700;
    margin-bottom: 5px;
    color: #ffffffd7;
}

.chat-apply-tab-title-icon {
    display: flex;
    flex-wrap: wrap;
    width: 18px;
    height: 18px;
    line-height: 18px;
    border-radius: 5px;
    border: 2px solid #fff;
    padding: 3px 0 0 2px;
    margin-right: 5px;
}

.chat-apply-tab-title-icon-label {
    width: 10px;
    height: 1px;
    border-radius: 1px;
    border: 1px solid #fff;
}

.chat-apply-tab-title-icon-value {
    width: 6px;
    border-radius: 1px;
    height: 1px;
    border: 1px solid #fff;
}

.chat-apply-tab-txt {
    font-size: 12px;
    color: #b6b6bf;
}

.chat-apply-details {
    width: 100%;
    height: 100vh;
    background-color: #1d1d43;
    color: #fff;
    padding: 0 10px;
}

.chat-apply-details-title {
    position: relative;
    text-align: center;
    padding: 20px 0 10px;
}

.chat-apply-details-title-icon {
    width: 40px;
    height: 40px;
    margin-right: 10px;
}

.chat-apply-details-title-arrow {
    position: absolute;
    left: 10px;
    top: 26px;
    width: 17px;
    height: 31px;
}

.chat-apply-details-inner {
    margin-top: 20px;
    display: flex;
}

.chat-apply-details-inner-avatar > img {
    width: 40px;
    height: 40px;
}

.chat-apply-details-inner-value {
    width: 100%;
    padding: 10px;
    background-color: #27264e;
    border-radius: 6px;
    margin: 30px 0;
    overflow-x: auto;
}

.chat-apply-details-inner-value-txt {
    overflow-wrap: break-word
}

.chat-apply-details-inner-value-btn {
    text-align: right;
}

.chat-home {
    position: relative;
    width: 100vw;
    height: calc(100vh - 50px);
    background-color: #1d1d43;
    padding: 14px;
}

.chat-home-head {
    display: flex;
    margin-top: 10px;
}

.chat-home-head-login,
.chat-home-head-avatar {
    margin-left: 20px;
    margin-right: 12px;
    border: 1px solid #494968;
    border-radius: 50%;
    width: 46px;
    height: 46px;
    background-color: #141332;
    color: #AAA;
}

.chat-home-head-login {
    display: flex;
    justify-content: center;
    align-items: center;
}

.chat-home-head-inner {
    color: #fff;
}

.chat-home-head-inner-txt {
    font-size: 18px;
    font-weight: 700;
}

.chat-home-head-inner-txt span {
    font-size: 12px;
    font-weight: normal;
}

.chat-home-head-inner-tips {
    display: flex;
    align-items: center;
    background-color: #ff721d;
    font-size: 12px;
    border-radius: 12px;
    padding: 1px 7px;
}

.chat-home-head-inner-tips.isLogin {
    background-color: #1d1d43;
}

.chat-home-head-inner-tips-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background-color: #fff;
    margin-right: 4px;
}

.chat-home-head-inner-tips-icon > img {
    width: 12px;
    height: 12px;
}

.chat-home-content {
    display: flex;
    align-items: center;
    justify-content: space-around;
    color: #fff;
    margin-top: 26px;
}

.chat-home-content-item {
    text-align: center;
}

.chat-home-content-item-label {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.chat-home-content-item-label img {
    width: 20px;
    height: 20px;
    margin: 4px 0 2px;
}

.chat-home-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #423cfe;
    color: #fff;
    padding: 12px 20px;
    border-radius: 14px;
    margin-top: 26px;
}

.chat-home-card.isVip {
    background-color: #ff721d;
}

.chat-home-card-left {
    font-size: 18px;
}

.chat-home-card-left-value {
    font-size: 12px;
}

.chat-home-card-right {
    line-height: 20px;
    font-size: 14px;
    border: 1px solid #fff;
    border-radius: 12px;
    padding: 3px 8px;
}

.chat-home-list {
    color: #fff;
    font-size: 14px;
}

.chat-home-list-item {
    display: flex;
    align-items: center;
    position: relative;
    padding: 16px 4px;
}

.chat-home-list-item:active {
    background-color: #08033a;
}

.chat-home-list-item-label {
    margin-right: 14px;
}

.chat-home-list-item-label img {
    width: 16px;
    height: 16px;
}

.chat-home-list-item-arrow {
    position: absolute;
    top: 16px;
    right: 20px;
}

.chat-home-list-item-arrow img {
    width: 6px;
    height: 10px;
}

.chat-home-QrPop {
    position: relative;
    width: 85%;
    padding-top: 30px;
    color: #fff;
    background-color: #27264e !important;
    text-align: center;
}

/*.chat-home-QrPop-share {*/
/*    position: fixed !important;*/
/*    left: 230px;*/
/*    top: -180px;*/
/*    width: 140px;*/
/*    height: 40px;*/
/*    text-align: right;*/
/*}*/

/*.chat-home-QrPop-share-txt {*/
/*    font-size: 12px;*/
/*}*/
.chat-home-list > .van-popup {
    background-color: #f7f8fa;
}

.van-popup--center.van-popup--round {
    overflow: initial;
}

.chat-home-QrPop-back {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 14px;
    height: 14px;
}

.chat-home-QrPop-img {
    border-radius: 5px;
    background-image: url('/imgs/qrcode_mp.jpg');
    background-size: cover; /* 图片缩放以覆盖整个元素 */
    background-position: center; /* 背景图片居中对齐 */
    background-repeat: no-repeat; /* 不重复背景图片 */
    margin: 0 auto;
    width: 180px;
    height: 180px;
}

.chat-home-QrPop-img > div {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #141332d1;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    width: 180px;
    height: 180px;
}

.chat-home-QrPop-img img {
    width: 180px;
    height: 180px;
}

.chat-home-QrPop-txt {
    font-size: 16px;
    font-weight: 600;
    /*margin: 10px;*/
}

.chat-home-QrPop-tip {
    display: inline-block;
    font-size: 12px;
    margin: 10px 0;
    color: #a8a8b5;
    background-color: #39395b;
    border-radius: 12px;
    /*margin-top: 16px;*/
    /*margin-bottom: 16px;*/
}

.van-search.van-search--show-action {
    width: 100% !important;
}

.wrapper {
    display: flex;
    flex-direction: column-reverse;
    justify-content: end;
    height: 100%;
}

.block {
    width: 100%;
    height: 120px;
    background-color: #fff;
}

.van-nav-bar .van-icon,
.van-nav-bar__title {
    color: #fff !important;
}

.van-nav-bar__content {
    background-color: #000;
}

.van-tabbar {
    background-color: #1d1d43 !important;
}

.van-tabbar-item--active {
    background-color: #1d1d43 !important;
}

.van-hairline--top-bottom::after {
    border-color: #39395b !important;
}

.van-tabs__nav--card {
    border: 1px solid transparent !important;
    padding-left: 16px !important;
    margin-top: 16px !important;
    margin-right: 0 !important;
    margin-left: 0 !important;
    height: 36px !important;
    padding-bottom: 2px;
    background-color: #1d1d43 !important;
}

.van-tabs__nav--card .van-tab {
    padding: 15px 5px !important;
    border-radius: 20px;
    margin-right: 10px;
    color: #fff !important;
    border: 1px solid transparent !important;
    background-color: #141332;
}

.van-tabs__nav--card .van-tab.van-tab--active {
    background-color: #423cfe !important;
}

.van-tabs--card > .van-tabs__wrap {
    background-color: #1d1d43 !important;
    height: 50px !important;
}

.van-tabs__content {
    /*min-height: calc(100vh - 98px);*/
    background-color: #1d1d43 !important;
}

.chat-apply-details {
    min-height: calc(100vh - 70px);
    height: 100%;
    padding-bottom: 70px;
}

.chat-apply-details .van-field__body {
    display: block !important;
}

.van-field__button {
    text-align: right !important;
}

.van-button--small {
    /*border-radius: 16px !important;*/
    padding: 0 14px !important;
}

.van-button--small.reset {
    border: 1px solid #383859 !important;
}

.van-button--small.active {
    border: 1px solid transparent !important;
    background-color: #ff4545 !important;
}

.van-button--small.active2 {
    border: 1px solid transparent !important;
    background-color: #2b8eff !important;
}

.chat-container .van-cell,
.chat-records .van-cell,
.chat-apply .van-cell {
    border-radius: 18px !important;
    background-color: #141332 !important;
}

.van-cell::after {
    border-bottom: 0.5px solid #141332 !important;
}

.van-cell.van-field {
    margin-right: 9px;
}

.van-button--normal {
    padding: 0 56px !important;
    border-radius: 22px !important;
    height: 36px !important;
    font-size: 12px !important;
}

.chat-layout .van-field__control {
    color: #d4d4d7;
}

.chat-layout .van-search__content {
    background-color: #141332;
}

.wrap {
    width: 90%;
    height: 48px;
    border-radius: 24px;
    margin: 10px 20px;
    overflow: hidden;
    border-top: 1px solid #373759;
}

.box {
    height: 100%;
    background: -webkit-repeating-linear-gradient(30deg, #83a7cf 0, #83a7cf 10px, #93b3d6 10px, #93b3d6 20px);
    -webkit-animation: move 5s linear infinite;
}

.text {
    width: 100%;
    height: 100%;
    text-align: center;
    line-height: 48px;
    color: #ece8e8;
    font-family: arial, serif;
}

@-webkit-keyframes move {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: -200px 0;
    }
}

.van-switch__node {
    top: 4px !important;
    left: 4px !important;
    width: .7em !important;
    height: .7em !important;
    background-color: #27264e !important;
}

/*.van-switch.van-switch--on {*/
/*    background-color: #141332;*/

/*}*/

.van-switch.van-switch--on .van-switch__node {
    position: relative !important;
    background-color: #423cfe !important;
}

.van-switch.van-switch--on .van-switch__node::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 17px;
    height: 17px;
    border: 1px solid #fff;
    border-radius: 50%;
}

.van-slider__button {
    background-color: #423cfe !important;
    /*background-color: #ee0a24;*/
    /*background-color: #a8a8b5;*/
}

.van-slider__button::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 14px;
    height: 14px;
    border: 1px solid #fff;
    border-radius: 50%;
}

.chat-container-setting-pop-card-value .van-cell__value--alone {
    color: #a8a8b5 !important;
}

/*.van-field__right-icon {*/
/*     margin-right: 0 !important;*/
/*     padding: 0 !important;*/
/*}*/

.van-field__right-icon .van-icon {
    font-size: 25px !important;
    font-weight: bold;
}

.van-toast, .van-tabbar, .van-popup,
.button3D, .chat-records-content-time,
.chat-home-content-item,
.noSelect {
    -webkit-touch-callout: none; /* 禁用长按链接弹出菜单 */
    -webkit-user-select: none;
    user-select: none;
}

.chat-container-bottom,
.chat-records-content-inner-clear,
.chat-container-content-card-item,
.chat-container-content-problem-txt,
.chat-container-navbar-value-btn,
.chat-container-navbar-label,
.chat-apply-tab-card,
.chat-apply-details-title-arrow,
.chat-home-list-item,
.chat-home-card-right,
.chat-home-QrPop-back,
.chat-home-head img,
.chat-home-content-item.order,
.chat-records-title-button,
.chat-records-title-delete,
.chat-home-head-login,
.chat-records-content-inner-gpt-header,
.cursor-pointer {
    cursor: pointer;
}

pre {
    position: relative;
    color: #adbac7;
    background: #2b2a2a;
    border: 1px solid #ccccbb61;
}

pre.mermaid {
    background: #585858;
}

pre .copy-btn {
    position: absolute;
    top: 2px;
    right: 2px;
    opacity: 0.7;
    padding: 5px 10px;
    border: none;
    border-radius: 4px;
    background-color: #686666;
    color: #e2dfea;
    cursor: pointer;
}

pre .copy-btn:hover {
    display: block;
}

.chat-container-content-prompt .del-btn,
.chat-container-content-prompt .top-btn,
.chat-container-content-prompt .edit-btn {
    position: absolute;
    top: 2px;
    right: 2px;
    opacity: 0.4;
    padding: 2px 5px;
    border: none;
    border-radius: 4px;
    background-color: #686666;
    color: #e2dfea;
    cursor: pointer;
}

/*.chat-container-content-prompt .top-btn{*/
/*    top: px;*/
/*}*/

.chat-container-content-prompt .del-btn:hover,
.chat-container-content-prompt .top-btn:hover,
.chat-container-content-prompt .edit-btn:hover {
    opacity: 1;
}

code {
    color: #b4b4b4;
    background-color: #404041;
}

table {
    color: #c9d1d9;
    /*background-color: #e7f8ff;*/
    padding: 0;
    word-break: initial;
}

table thead {
    vertical-align: middle;
    border-color: inherit;
}

table tr {
    border-top: 1px solid #d8dee4;
}

table tr:nth-child(2n) {
    background-color: #30363d;
}

table th, table td {
    padding: 6px 13px;
    border: 1px solid #d0d7de;
}

table th {
    text-align: center;
    font-weight: bold;
    border-bottom: 0;
}


/*table th:first-child,*/
/*table td:first-child {*/
/*    margin-top: 0;*/
/*}*/

/*table th:last-child,*/
/*table td:last-child {*/
/*    margin-bottom: 0;*/
/*}*/


.think-toggle {
    cursor: pointer;
    color: #b0b0bd;
    font-size: 12px;
    line-height: 18px;
    background: #39395b;
    user-select: none;
    border-radius: 10px;
    display: flex;
}

.think-toggle:hover {
    background: #6a61fe;
}

.arrow {
    font-size: 0.8em;
    transition: transform 0.2s;
}

.arrow.expanded {
    transform: rotate(180deg);
    transition: transform 0.2s;
}

.think-content {
    font-size: 12px;
    border-left: 4px solid #404041;
    background: #2e2f30 !important;
    color: #b0b0bd;
    line-height: 15px;
    padding: 8px 10px;
}

/*.delete-dialog-content {*/
/*    padding: 15px;*/
/*}*/

/*.tip {*/
/*    color: #969799;*/
/*    font-size: 12px;*/
/*    margin-top: 8px;*/
/*}*/
.delete-dialog-content {
    padding: 16px;
}

/* 数量提示 */
.count-tip {
    text-align: center;
}

/* 输入行布局 */
.input-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 15px 0;
}

/* 输入标签 */
.input-label {
    font-size: 14px;
    color: #333;
    flex-shrink: 0;
    margin-right: 15px;
}


/* 删除提示 */
.delete-tip {
    color: #999;
    font-size: 12px;
    text-align: center;
    margin-top: 15px;
}

/* 高亮数字 */
.highlight {
    color: #f44;
    font-weight: bold;
    margin: 0 3px;
}

.param-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
