:root {
    --main-gradient: linear-gradient(to top, #D0ABFF, #3479FF);
    --secondary-gradient: linear-gradient(to right bottom, #f9fbff, #d6e3f5);
    --customer-gradient: linear-gradient(to top, #ffffff, rgb(227, 224, 255));
    --law-gradient: linear-gradient(to top, rgb(255, 255, 255), rgb(253, 242, 218));
    --button-gradient: linear-gradient(to right, #3479FF, #D0ABFF);
    --customer-color: #7465FF;
    --law-color: rgb(255, 175, 0);
    --default-color: rgba(255, 255, 255, 0);
    --primary-color: #5d3dff;
    --secondary-color: #666666;
    --text-color: #333333;
    --hover-shadow: 0 12px 24px rgba(149, 117, 205, 0.2);
    --active-shadow: 0 4px 16px rgba(149, 117, 205, 0.2);
    --scrollbar-color: rgba(136, 136, 136, 0.6);
    --scrollbar-hover-color: rgba(85, 85, 85, 0.8);
}

.no-user-select {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.el-drawer {
    height: 96%;
    top: 2%;
    position: fixed;
    visibility: visible;
    transform: translateX(0);
    transition: transform 0.3s ease-in-out, visibility 0.3s ease-in-out;
    background: var(--secondary-gradient);
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 10px -5px rgba(0, 0, 0, .2), 0 16px 24px 2px rgba(0, 0, 0, .14), 0 6px 30px 5px rgba(0, 0, 0, .12);
    overflow: hidden;
    outline: 0;
    z-index: 98;
    border-radius: 15px;
}

.el-drawer.open {
    visibility: visible;
    transform: translateX(0);
}

.el-drawer.right {
    width: 81%;
    right: 1%;
}

.el-drawer.left {
    width: 16%;
    left: 1%;
}

.el-drawer.left .his-title {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    border-bottom: 1px solid #dcdce0;
}

.el-drawer.left .xe-content-icon {
    margin: 10px;
}

.el-drawer.left .his-title .xe-content-btn {
    font-size: 20px;
}

.el-drawer.left .his-footer .xe-content-btn {
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex: 1;
    width: calc(100% - 50px);
}

.el-drawer.left .his-footer .xe-content-btn .nike-name {
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.el-drawer.left .xe-content-btn a {
    display: flex;
    align-items: center;
}

.el-drawer.left .his-chat-block {
    overflow-y: auto;
    height: calc(100%);
    scrollbar-width: thin;
    scrollbar-color: var(--scrollbar-color) transparent;
}

.el-drawer.left .his-block {
    height: 75px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.el-drawer.left .his-chat-block p {
    padding: 10px;
    border-bottom: 1px dashed #dcdce0;
    font-size: 16px;
    font-weight: bold;
}

.el-drawer.left .his-chat-block ul li {
    margin: 10px;
    padding: 10px;
    font-size: 13px;
    border-radius: 8px;

    span {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        display: inline-block;
        width: 90%;
    }
}

.el-drawer.left .his-chat-block ul li i {
    float: right;
}

.el-drawer.left .his-chat-block ul li:hover {
    cursor: pointer;
    color: rgba(1, 58, 246, 0.89);
}

.el-drawer.left .his-chat-block ul li.active {
    background: linear-gradient(to right, rgb(204 211 252), rgb(204 220 252 / 96%))
}

.el-drawer.left .his-footer > div {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    border-top: 1px solid #dcdce0;
}

.hide {
    display: none !important;
}

.hidden {
    display: none;
}

.show {
    display: flex !important;
}

.el-drawer.left .his-footer .login-no {
    padding: 10px;
    text-align: center;
}

/* 已登录状态布局 */
.el-drawer.left .his-footer .login-yes {
    flex-wrap: wrap;
    padding: 0;
}

/* 用户信息区 */
.footer-user-info {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 8px 10px;
}

/* 会员信息区 */
.footer-member-info {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 10px 10px;
    border-top: 1px solid #eee;
    font-size: 13px;
    color: #666;
    justify-content: space-between;
}

.footer-member-info i {
    margin-right: 4px;
    font-size: 14px;
}

.footer-member-info em {
    font-style: normal;
    color: #005EEC;
    font-weight: 500;
}

/* 积分样式 */
.member-points {
    display: flex;
    align-items: center;
}

.member-points i {
    color: #FFC327;
}

/* 到期时间样式 */
.member-expire {
    display: flex;
    align-items: center;
}

.member-expire i {
    color: #0088FF;
}

/* 功能按钮区 */
.footer-actions {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 6px 10px;
    gap: 8px;
}

.footer-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 6px 0;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9ff 100%);
    cursor: pointer;
    font-size: 13px;
    color: #333;
    transition: all 0.2s;
}

.footer-btn:hover {
    border-color: #005EEC;
    color: #005EEC;
    background: linear-gradient(180deg, #f0f4ff 0%, #e8eeff 100%);
}

.footer-btn i {
    font-size: 16px;
}

/* 活动按钮特殊样式 */
.activity-btn {
    border-color: #FF8F6B;
    color: #FF8F6B;
}

.activity-btn:hover {
    border-color: #FF6B3D;
    color: #FF6B3D;
    background: linear-gradient(180deg, #fff5f0 0%, #ffeee5 100%);
}

.activity-btn i {
    color: #FF8F6B;
}

/* 会员中心按钮 */
.member-btn i {
    color: #0088FF;
}

/* AI 内容样式 */
.ai-xe {
    z-index: 66;
    padding: 15px;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    justify-content: center;
    align-items: center;
}

/* 初始化界面样式 */
.initialization-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.xe-content-icon {
    text-align: center;
    margin-top: 10px;
    user-select: none;
}

.xe-content-icon .img-box {
    background: var(--main-gradient);
    border: 3px solid #ffffff;
    width: 50px;
    height: 50px;
    margin: 0 auto;
    padding: 3px;
    border-radius: 16px;
}

.xe-content-icon .img-box img {
    height: 40px;
    padding: 6px 0;
    vertical-align: middle;
}

.xe-content-icon .xe-content-icon-title {
    font-weight: bolder;
    font-size: 16px;
    margin: 10px 0;
}

.xe-content-icon .xe-content-icon-desc {
    color: var(--text-color);
    font-size: 14px;
}

.content-scenes-box {
    margin-top: 50px;
    display: flex;
    margin-bottom: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.content-scenes-box .content-scenes {
    flex-shrink: 0;
    margin: 10px;
    width: 180px;
    height: 260px;
    border-radius: 16px;
    border: 3px solid #ffffff;
    text-align: center;
    box-sizing: border-box;
    padding: 16px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    user-select: none;
}

.content-scenes-box .content-scenes:hover {
    transform: translateY(-6px) scale(1.02);
}

.content-scenes-box .content-scenes:active {
    transform: translateY(-2px) scale(0.99);
    transition: all 0.1s;
}

.content-scenes-box .content-scenes .scenes-icon {
    width: 50px;
    height: 50px;
    border: 3px solid #fffefe;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 30px auto 0 auto;
}

.content-scenes-box .content-scenes .scenes-icon img {
    height: 30px;
    width: 30px;
}

.content-scenes-box .content-scenes .scenes-title {
    margin: 20px 0;
    font-size: 16px;
    font-weight: bolder;
    color: var(--text-color);
}

.content-scenes-box .content-scenes .scenes-desc {
    color: var(--secondary-color);
    font-size: 14px;
}

.content-scenes-box .content-scenes[data-scene="customer"] {
    background: var(--customer-gradient);
}

.content-scenes-box .content-scenes[data-scene="customer"]:hover {
    background: linear-gradient(to top, #ffffff, #d4cffc);
    border-color: var(--customer-color);
    box-shadow: var(--hover-shadow);
}

.content-scenes-box .content-scenes[data-scene="customer"].active {
    border-color: var(--customer-color);
    box-shadow: var(--active-shadow);
    background: linear-gradient(to top, #ffffff, #d4cffc);
}

.content-scenes-box .content-scenes[data-scene="customer"] .scenes-icon {
    background: linear-gradient(to top, rgb(200, 194, 255), var(--customer-color));
}

.content-scenes-box .content-scenes[data-scene="law"] {
    background: var(--law-gradient);
}

.content-scenes-box .content-scenes[data-scene="law"]:hover {
    background: linear-gradient(to top, rgb(255, 255, 255), rgb(255, 230, 175));
    border-color: var(--law-color);
    box-shadow: var(--hover-shadow);
}

.content-scenes-box .content-scenes[data-scene="law"].active {
    border-color: var(--law-color);
    box-shadow: var(--active-shadow);
    background: linear-gradient(to top, rgb(255, 255, 255), rgb(255, 230, 175));
}

.content-scenes-box .content-scenes[data-scene="law"] .scenes-icon {
    background: linear-gradient(to top, rgb(255, 228, 168), var(--law-color));
}

.chat-container {
    flex: 1;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    width: calc(100% - 10px);
}

/* 滚动条样式 */
.chat-content-wrapper::-webkit-scrollbar {
    width: 6px;
}

.chat-content-wrapper::-webkit-scrollbar-track {
    background: transparent;
}

.chat-content-wrapper::-webkit-scrollbar-thumb {
    background: transparent;
    border-radius: 4px;
    transition: background 0.2s;
}

.chat-content-wrapper.scrolling::-webkit-scrollbar-thumb {
    background: var(--scrollbar-color);
}

.chat-content-wrapper:hover::-webkit-scrollbar-thumb {
    background: var(--scrollbar-color);
}

.chat-content-wrapper::-webkit-scrollbar-thumb:hover {
    background: var(--scrollbar-hover-color);
}

.chat-content-wrapper {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    padding-bottom: 10px;
    min-height: 100px;
}

.question-line {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    margin-bottom: 15px;
    font-size: 14px;
}

.head-ai {
    flex-shrink: 0;
    line-height: 32px;
    display: block;
    margin-right: 10px;
    border-right: 3px;
    text-align: center;
    font-weight: bold;
    background: var(--main-gradient);
    width: 36px;
    height: 36px;
    border-radius: 50%;
}

.head-ai img {
    width: 32px;
    padding: 4px 0;
}

.me-line-box {
    width: 100%;
    display: flex;
    justify-content: end;
}

.head-me {
    float: right;
    flex-shrink: 0;
    display: block;
    margin-right: 10px;
    border-right: 3px;
    text-align: center;
    font-weight: bold;
    width: 36px;
    height: 36px;
    border-radius: 50%;
}

.head-me img {
    width: 100%;
    height: 100%;
}

.meContent {
    display: inline-block;
    border-radius: 8px;
    padding: 10px;
    background-color: #E2ebff;
    margin-right: 16px;
}

.YIContent {
    display: inline-block;
    border-radius: 8px;
    background-color: #f0edff;
    padding: 10px;
    border: 1px dashed #dedede;
    line-height: 24px;
    color: var(--primary-color);
    font-size: 14px;
}

.YIContent-OK {
    font-weight: bold;
}

.YIContent-txt {
    display: block;
    flex-basis: 100%;
    margin: 10px 50px 0;
    background-color: #ffffff;
    border-radius: 6px;
    box-sizing: border-box;
    padding: 16px;
    width: 100%;
    font: 14px/2.0 "Microsoft YaHei", "微软雅黑", "Tahoma", "Arial", "宋体", "sans-serif";
}

.YIContent-txt span {
    font-weight: bold;
}

.YIContent-txt ol li {
    list-style: inherit;
}

.YIContent-txt img {
    width: 95%;
    display: block;
    margin: 4px;
}

.YIContent-txt think {
    color: #8b8b8b;
    font-size: 12px;
    display: inline-block;
    margin-bottom: 20px;
    position: relative;
    width: 95%;
}

.YIContent-txt think:before {
    content: "";
    border-left: 1px solid #e5e5e5;
    height: calc(100% - 20px);
    margin-top: 22px;
    position: absolute;
    top: 0;
    left: -8px;
}

.YIContent-txt a {
    color: blue;
}

YIContent-txt h1,h2 {
    font-size: 16px;
}

.chat-md-content-vue-md-html p {
    line-height: 32px;
}

.chat-md-content-vue-md-html p a {
    color: #0A70FF;
}

.chat-md-content-vue-md-html .vue-markdown-table {
    border-collapse: collapse;
    border-spacing: 0;
}

.chat-md-content-vue-md-html .vue-markdown-table th,
.chat-md-content-vue-md-html .vue-markdown-table td {
    border: 1px solid #ddd;
    padding: 6px 13px;
    margin: 0;
}

.chat-md-content-vue-md-html ul,
.chat-md-content-vue-md-html li,
.chat-md-content-vue-md-html p {
    line-height: 25px;
}

.chat-md-content-vue-md-html img {
    display: block;
    margin: 4px;
}

.clear-btn {
    width: 130px;
    text-align: center;
    position: sticky;
    z-index: 10;
    padding: 5px 0;
    font-size: 15px;
    margin: 0 auto -10px;
}

.clear-btn :hover {
    background-color: var(--primary-color);
    color: #ffffff;
    transform: scale(1.02);
}

.clear-btn div {
    padding: 5px 0;
    border-radius: 6px;
    cursor: pointer;
    margin: 0 auto;
    text-align: center;
    background-color: #eef0ff;
    color: var(--primary-color);
    line-height: 20px;
    transition: transform 0.2s ease;
    transform-origin: center;
}

/* 输入框样式 */
.ai-xe-input-box {
    width: calc(100% - 30px);
    /* 保持不收缩，确保 textarea 与底部按钮区始终可见；
       文件列表自身有 max-height 限制并内部滚动，不会无限撑高 */
    flex-shrink: 0;
}

.ai-xe-input-box .input-scene-box {
    display: flex;
    margin-bottom: 8px;
    margin-left: 6px;
}

.ai-xe-input-box .input-scene-box .input-scene {
    margin-right: 16px;
    display: flex;
    align-items: center;
    background-color: #ffffff;
    border-radius: 6px;
    border: 2px solid transparent;
    padding: 3px 16px;
    cursor: pointer;
    font-weight: 500;
    color: var(--text-color);
    font-size: 15px;
}

.ai-xe-input-box .input-scene-box .input-scene[data-scene="customer"]:hover {
    border: 2px solid var(--customer-color);
    color: var(--customer-color);
}

.ai-xe-input-box .input-scene-box .input-scene[data-scene="customer"].active {
    border-color: var(--customer-color);
    box-shadow: 0 2px 6px rgba(116, 101, 255, 0.2);
    color: var(--customer-color);
}

.ai-xe-input-box .input-scene-box .input-scene[data-scene="law"]:hover {
    border: 2px solid var(--law-color);
    color: var(--law-color);
}

.ai-xe-input-box .input-scene-box .input-scene[data-scene="law"].active {
    border-color: var(--law-color);
    box-shadow: 0 2px 6px rgba(220, 140, 0, 0.2);
    color: var(--law-color);
}

.ai-xe-input-box .input-scene-box .input-scene img {
    width: 20px;
    height: 20px;
    line-height: 17px;
    margin-right: 6px;
}

.ai-xe-input {
    width: 100%;
    background: #ffffff;
    border-radius: 7px;
    box-sizing: border-box;
    padding: 8px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
    border: 2px solid transparent;
}

.ai-xe-input .input-wrapper {
    position: relative;
    /*margin-bottom: 10px;*/
}

.ai-xe-input .ai-xe-textarea {
    width: 100%;
    border: none;
    border-radius: 6px;
    line-height: 18px;
    font-size: 14px;
    padding: 10px;
    resize: none;
    min-height: 50px;
    max-height: 50px;
    box-sizing: border-box;
}

.ai-xe-input .button-wrapper {
    display: flex;
    justify-content: end;
    align-items: center;
    /*margin-bottom: 10px;*/
}

.ai-xe-input .button-wrapper img {
    width: 15px;
    height: 10px;
}

.ai-button {
    display: inline-block;
    line-height: 1;
    white-space: nowrap;
    text-align: center;
    cursor: pointer;
    box-sizing: border-box;
    border: 1px solid transparent;
    border-radius: 20px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    background: var(--primary-color);
    color: #ffffff;
    outline: 0;
    margin: 0;
    transition: all 0.15s ease;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    box-shadow: 0 2px 4px rgba(93, 61, 255, 0.2);
    position: relative;
}

.ai-default-link {
    background: var(--default-color);
    color: #353535;
    box-shadow: none;
    font-weight: normal;
}

.ai-default-link:hover {
    background: #EEF0FF;
    color: var(--primary-color);
}

.ai-default-link.disabled,
.ai-default-link.disabled:hover {
    cursor: not-allowed;
    background: var(--default-color);
    color: #999;
}

.ai-default-link.disabled i,
.ai-default-link.disabled span {
    color: #999;
}

.ai-default-link.disabled .bubble-menu {
    color: #353535;
}

.ai-default-link.disabled .bubble-menu i,
.ai-default-link.disabled .bubble-menu span {
    color: #353535;
}

.button-wrapper-solid {
    width: 1px;
    height: 20px;
    background-color: #a3b5c5;
    margin: 0 15px;
}

#fileInput {
    position: absolute;
    left: 0;
    top: 0;
    width: 1px;
    height: 1px;
    opacity: 0;
}

.ai-xe-input .button-wrapper .send-button:hover {
    background-color: #4926fa;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(93, 61, 255, 0.3);
}

.ai-xe-input .button-wrapper .send-button:active {
    transform: translateY(0);
    box-shadow: 0 1px 2px rgba(93, 61, 255, 0.2);
}

textarea:focus {
    border: 1px solid #D3DCE6;
    outline: none;
    box-shadow: none;
}


.permission-alert {
    margin: 20px 0;
}

/* AI 按钮样式 */
.ai-xe-button {
    position: fixed;
    right: 0;
    bottom: 100px;
    z-index: 99;
    cursor: pointer;
    color: #fcfcfc;
    width: 40px;
    height: 108px;
    padding-top: 10px;
    font-size: 12px;
    text-align: center;
    border-radius: 12px 0 0 12px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    background: var(--button-gradient);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    transform-origin: right center;
}

.ai-xe-button:hover {
    width: 48px;
    box-shadow: 0 4px 12px rgba(52, 121, 255, 0.3);
    background: linear-gradient(to right, #4a87ff, #d8b6ff);
}

.ai-xe-button:active {
    transform: translateX(-2px);
    box-shadow: 0 2px 6px rgba(52, 121, 255, 0.3);
    background: linear-gradient(to right, #3070f0, #c89eff);
}

.ai-xe-button img {
    display: block;
    width: 28px;
    height: 24px;
}

.ai-xe-button p {
    width: 50%;
    font-weight: bolder;
    font-size: 16px;
    line-height: 19px;
    margin-top: 0;
}

.ai-xe-button.open {
    right: 1000px;
    border-radius: 12px 0 0 12px;
    transform: scale(0.9);
}

.pause-box {
    background-color: #f0edff;
    cursor: pointer;
    transition: background-color 0.3s ease;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    width: 110px;
    padding: 6px 10px;
    border-radius: 6px;
    margin-top: 10px;
    margin-left: 50px;
    font-size: 14px;
}

.pause-box:hover {
    background-color: #eae5ff;
}

.pause-box .pause-icon {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-right: 10px;
}

.pause-box .pause-icon .pause-icon-o {
    width: 7px;
    height: 7px;
    background-color: var(--primary-color);
}

.answer-oper-box {
    width: 100%;
    padding: 6px 10px;
    margin-left: 50px;
    font-size: 13px;
    display: flex;
    align-items: center;
    color: #999999;
    gap: 8px;
}

.answer-oper-box-me {
    justify-content: end;
    padding: 6px 50px;
}

.answer-oper-box > i {
    cursor: pointer;
}

.answer-oper-box > p {
    font-size: 12px;
    color: #959393;
}

.answer-oper-box .ri-thumb-up-line,
.answer-oper-box .ri-thumb-up-fill {
    margin: 0 10px;
}

.answer-oper-box .up-down-active {
    color: var(--primary-color);
}

.answer-oper-box .fa-refresh:hover,
.answer-oper-box .fa-thumbs-o-up:hover,
.answer-oper-box .fa-thumbs-o-down:hover,
.answer-oper-box .fa-upload:hover,
.answer-oper-box .fa-copy:hover{
    color: var(--primary-color);
}

.answer-oper-box-selected {
    color: var(--primary-color);
}

.el-avatar {
    background: var(--main-gradient);
    vertical-align: top;
    width: 36px;
    height: 36px;
    border-radius: 50%;
}

.el-avatar i {
    color: #dfe4f8;
    font-size: 22px;
    line-height: 35px;
}

.modal {
    z-index: 200 !important;
}

.login-modal .left {
    width: 400px;
    text-align: center;
    padding: 0px 30px 0px 30px;
    border-right: 1px solid #dcdfe6;
    margin-left: -500px;
    line-height: 1.75;
}

.form-modal .title {
    padding: 50px 0 30px 0;
    font-size: 2.5em;
}

.form-modal .title span {
    padding: 0 5px 0 5px;
    cursor: pointer;
}

.form-modal .title span.active {
    text-decoration: underline;
    text-decoration-color: #007bff;
    text-decoration-thickness: 3px;
    text-underline-offset: 8px;
}

.login-modal .form-modal {
    height: 450px;
}

.login-modal .left h2 {
    color: rgb(120 120 120);
    font-size: 1.3em;
}

.login-modal .left h3 {
    text-align: left;
    padding: 20px 0 0 40px;
    color: rgb(213 142 87);
}

.login-modal .left h3 i {
    padding-right: 10px;
}

.login-modal .right {
    margin-left: -100px;
}

.login-modal .right .title {
    padding-bottom: 10px;
    color: #929292;
    font-size: 1.5em;
    font-weight: bold;
}

.login-modal input:not([type="checkbox"]) {
    height: 50px !important;
    font-size: 16px !important;
}

.login-modal .error {
    left: 5px;
    font-size: 15px;
}

.form-modal .btn-default {
    line-height: 30px;
    background: rgb(231 243 255);
    color: rgb(78 162 247);
    border-radius: 4px;
    cursor: pointer;
    border: none;
    font-size: 14px;
    padding: 10px;
}

.login-modal .btn-primary {
    width: 300px;
    line-height: 40px;
    background: #005EEC;
    color: #fff;
    border-radius: 4px;
    cursor: pointer;
    border: none;
    display: block;
    font-size: 16px;
}

.protocol-modal .form-modal {
    width: 800px;
    height: 500px;
    padding: 30px;
    margin-left: -400px;
}

.protocol-modal .content {
    padding: 10px;
    overflow: scroll;
    height: 450px;
    font-size: 16px;
    font-weight: bold;
    line-height: 1.75;
    white-space: pre-wrap;
    word-wrap: break-word;
}

/* 气泡菜单样式 */
.bubble-menu {
    position: absolute;
    right: 10px;
    bottom: 45px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    padding: 10px;
    z-index: 1000;
    display: none;
    line-height: 20px;
    color: #353535 !important;
}

/* 显示状态 */
.bubble-menu.show {
    display: block !important;
}

/* 菜单项样式 */
.bubble-btn {
    position: relative !important;
    display: block;
    align-items: center;
    padding: 10px 0 !important;
    text-decoration: none;
    color: #333;
    font-size: 14px;
    transition: background-color 0.2s;
}

button i, a i {
    margin-right: 5px;
}

.form-item-title {
    display: flex;
    align-items: flex-start;
    align-content: center;
    justify-content: center;
    gap: 10px;
    font-size: 18px;
    width: 500px !important;
}

.eva-modal .form-modal {
    top: 40%;
    height: 600px;
}

.default-modal .form-modal {
    height: auto;
}

.default-modal .form-modal .modal-title,
.eva-modal .form-modal .modal-title,
.user-modal .form-modal .modal-title {
    padding-left: 24px;
    text-align: left;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.default-modal .modal-title h4,
.eva-modal .modal-title h4,
.user-modal .form-modal .modal-title h4 {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
}

/* ========== 用户信息弹窗整体优化 ========== */
.user-modal .form-modal {
    width: 480px;
    height: auto;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    margin-top: -260px;
    margin-left: -240px;
    padding-bottom: 20px;
}

/* 礼品横幅 */
.user-modal .form-item-title {
    width: auto !important;
    margin: 12px 24px 0 24px;
    padding: 0;
    background: none;
    border: none;
    border-radius: 0;
    display: flex;
    align-items: center;
    gap: 16px;
}

.user-modal .form-item-title img {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
}

.user-modal .form-item-title > div {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

/* 表单行 */
.user-modal .form-item {
    width: auto !important;
    margin: 0 24px;
    padding: 10px 0;
}

.user-modal .form-item .form-item-label {
    width: 70px;
    font-size: 14px;
    color: #555;
    font-weight: 500;
}

.user-modal .form-item input:not([type="checkbox"]),
.user-modal .form-item select {
    width: 340px;
    height: 40px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.user-modal .form-item input:focus,
.user-modal .form-item select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(93, 61, 255, 0.08);
    outline: none;
}

.user-modal .form-item .error {
    left: 85px;
    font-size: 12px;
}

/* 提交按钮 */
.user-modal .form-btn {
    margin-top: 8px;
    padding: 0 24px;
}

.user-modal .form-btn button {
    width: 100%;
    height: 44px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 10px;
    background: var(--primary-color);
    color: #fff;
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
}

.user-modal .form-btn button:hover {
    background: #4a2ce0;
}

.user-modal .form-btn button:active {
    transform: scale(0.98);
}

.eva-modal .form-item {
    width: 480px;
    display: flex;
    align-items: center;
    padding: 5px 0;
}

.eva-modal .form-item .title {
    color: rgb(114, 78, 255);
    font-size: 20px;
}

.eva-modal .form-item .title2 {
    color: rgb(114, 78, 255);
    font-size: 14px;
}

.eva-modal .form-item .form-item-label {
    text-align: right;
    font-weight: bold;
}

.eva-modal .form-item textarea {
    width: 480px;
    height: 200px;
    resize: none;
}

.eva-modal .form-item .char-counter {
    position: absolute;
    right: 10px;
    bottom: 10px;
    font-size: 12px;
    color: #999;
    background: rgba(255, 255, 255, 0.8);
    padding: 2px 6px;
    border-radius: 4px;
    z-index: 10;
    pointer-events: none;
}

.stars {
    display: flex;
    align-items: center;
    direction: rtl;
}

.star {
    padding: 10px;
    font-size: 2rem;
    color: #ddd;
    cursor: pointer;
    transition: color 0.2s;
}

.star:hover, .star:hover ~ .star {
    color: #f0c04a;
}

.star.selected {
    color: #f0c04a;
}

.rating-text {
    font-size: 13px;
}

.expand-btn-container {
    position: absolute;
    left: 0;
    top: 30px;
    z-index: 100;
}

.expand-btn {
    width: 35px;
    height: 65px;
    background: #5d3dff;
    border: none;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    box-shadow: 2px 0 8px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 15px;
    transition: all 0.3s ease;
}

.expand-btn:hover {
    background: #270acf;
}

.file-wrapper .img-wrapper {
    margin: 0px 8px;
    height: 40px;
    width: 80px;
    position: relative;
    display: none;
}

.file-wrapper .img-wrapper-line {
    display: none;
    color: #E7E7EA;
    background-color: #E7E7EA;
    border: none;
    height: 1px;
}

.file-wrapper .close-icon {
    position: absolute;
    top: -12px;
    right: -12px;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background-color: white;
    color: #5d3dff;
    text-align: center;
    cursor: pointer;
    font-style: normal;
    font-size: 15px;
    border: 2px solid #cccccc;
    box-sizing: border-box;
    display: none;
}

.file-wrapper .img-wrapper:hover .close-icon {
    display: block;
}

.file-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 1px solid #E7E7EA;
    border-radius: 4px;
}

.ai-related-problems {
    margin: 10px 0 0 0;
    width: 100%;
    background-color: #ffffff;
    border-radius: 6px;
    box-sizing: border-box;
}

.ai-related-problems .problems-title {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
    font-weight: 500;
    padding: 0;
    line-height: 1.4;
}

.ai-related-problems .problems-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
}

.ai-related-problems .problem-tag {
    padding: 8px 18px;
    background-color: #f0edff;
    color: #5d3dff;
    border-radius: 6px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s ease;
    width: fit-content;
    max-width: 100%;
    line-height: 1.4;
    box-sizing: border-box;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ai-related-problems .problem-tag:hover {
    background-color: #eae5ff;
    transform: translateX(2px);
    box-shadow: 0 2px 6px rgba(93, 61, 255, 0.08);
}

.ai-related-problems .problem-tag:active {
    transform: translateX(0);
    box-shadow: none;
}

/* =========================================
   全局作用域限制：.YIContent-txt
   ========================================= */

/* 分割线样式 */
.YIContent-txt hr {
    border: 0;
    border-bottom: 0.5px solid rgba(6, 10, 38, 0.06);
    margin-top: 16px;
    margin-bottom: 16px;
}

/* =========================================
   1. 基础重置 (去掉默认样式)
   ========================================= */
.YIContent-txt ul,
.YIContent-txt ol {
    list-style: none; /* 关键：彻底移除浏览器默认标记 */
    padding-left: 0;  /* 移除默认内边距，我们将手动控制 */
    margin: 1em 0;
}

.YIContent-txt li {
    position: relative; /* 为绝对定位的伪元素提供参照系 */
    margin-bottom: 0.6em; /* 行间距 */
    line-height: 1.6;     /* 行高，提升可读性 */
    padding-left: 1.8em;  /* 【关键】留出标记的空间 (根据字体大小调整) */
    word-wrap: break-word; /* 防止长单词撑破容器 */
}

/* 修复最后一个元素的边距 */
.YIContent-txt li:last-child {
    margin-bottom: 0;
}

/* =========================================
   2. 无序列表 (ul) 优化
   ========================================= */

/* 第一层：实心圆点 (品牌色 - 此处暂用黑色，如需品牌色请修改 color) */
.YIContent-txt ul > li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0; /* 可根据字体微调，如 2px */
    color: #333; /* 建议补充颜色，否则继承父元素 */
    font-size: 1.4em;     /* 圆点比文字稍大 */
    line-height: 1.2;     /* 垂直居中修正 */
    font-weight: bold;
}

/* 第二层嵌套：空心圆 */
.YIContent-txt ul ul > li::before {
    content: "◦";
    color: #666;
    font-size: 1.3em;
    top: 1px;
}

/* 第三层嵌套：小方块 */
.YIContent-txt ul ul ul > li::before {
    content: "▪";
    color: #999;
    font-size: 1.2em;
    top: 2px;
}

/* =========================================
   3. 有序列表 (ol) 优化 (兼容 IE11 计数器)
   ========================================= */

/* 初始化计数器 */
.YIContent-txt ol {
    counter-reset: item-counter; /* 自定义计数器名称 */
}

.YIContent-txt ol > li {
    counter-increment: item-counter; /* 每个 li 计数 +1 */
}

/* 数字样式 */
.YIContent-txt ol > li::before {
    content: counter(item-counter) "."; /* 显示 "1." "2." */
    position: absolute;
    left: 0;
    top: 0;
    color: #333; /* 建议补充颜色 */
    font-weight: bold;    /* 数字加粗 */
    font-variant-numeric: tabular-nums; /* 【高级】让数字等宽，对齐更整齐 */

    min-width: 1.2em;     /* 预留宽度，防止两位数时挤压文字 */
    text-align: right;    /* 数字右对齐，紧贴文字 */
}

/* 嵌套有序列表：切换为字母 (a. b. c.) */
.YIContent-txt ol ol {
    counter-reset: sub-counter;
    padding-left: 1em; /* 嵌套缩进 */
}

.YIContent-txt ol ol > li {
    counter-increment: sub-counter;
}

.YIContent-txt ol ol > li::before {
    content: counter(sub-counter, lower-alpha) "."; /* a. b. c. */
    color: #666;
    font-weight: normal;
}

/* =========================================
   4. 特殊场景优化
   ========================================= */

/* 场景：列表项内有代码块或图片时，增加间距 */
.YIContent-txt li > pre,
.YIContent-txt li > img {
    margin-top: 0.5em;
    margin-bottom: 0.5em;
}

/* =========================================
   5. 引用块 (blockquote) 优化
   ========================================= */

.YIContent-txt blockquote {
    /* 基础布局 */
    margin: 1.5em 0;
    padding: 0.5em 1em; /* 上下0.5em，左右1em */

    /* 核心样式：左侧竖线 */
    border-left: 4px solid #dfe2e5; /* 浅灰色竖线 */
    background-color: #f8f9fa; /* 极淡的背景色，增加层次感 */

    /* 文字样式 */
    color: #6a737d; /* 比正文稍浅的颜色，表示“引用” */
    font-style: italic; /* 可选：斜体强调引用语气 */
    line-height: 1.6;

    /* 清除默认边距干扰 */
    padding-left: 1em;
}

/* 修复子元素边距：第一个孩子 */
.YIContent-txt blockquote > :first-child {
    margin-top: 0;
}

/* 修复子元素边距：最后一个孩子 */
.YIContent-txt blockquote > :last-child {
    margin-bottom: 0;
}

/* 针对嵌套引用 (>) 的优化 */
.YIContent-txt blockquote blockquote {
    border-left-color: #cbd2d9; /* 嵌套层级深一点，颜色深一点 */
    margin-left: 0;
    background-color: #f1f3f5; /* 嵌套背景稍微深一点点以示区分 */
}

/* 如果里面有代码块，调整背景色避免冲突 */
.YIContent-txt blockquote pre {
    background-color: #f6f8fa;
    border: 1px solid #e1e4e8;
}

.sample-question {
    font-size: 13px;
    padding-bottom: 5px;
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 5px;
}
.sample-question-info-img{
    width: 14px;
    height: 14px;
}
.sample-question-upper-right-img {
    width: 8px;
    height: 8px;
}
#more-examples {
    font-size: 13px;
    color: #5D3DFF;
    cursor: pointer;
    user-select: none;
}
.example-problem-modal {
    display: none;
    width: 800px;
    height: 500px;
    padding: 24px;
    position: fixed;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    background: url('../images/exampleProblemBg.png') no-repeat center top;
    background-size: cover;
    border-radius: 16px;
    z-index: 99;
    box-shadow: 0px 0px 24px 0px rgba(93, 61, 255, 0.08);
}
.example-problem-modal-title {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 5px;
    padding-bottom: 15px;
}
.example-problem-modal-title-logo > img {
    width: 20px;
    height: 20px
}
.example-problem-modal-title-logo {
    width: 32px;
    height: 32px;
    background: linear-gradient(180deg, #FF9B4E 0%, #FFCDA6 100%);
    box-shadow: 0px 0px 12px 0px rgba(255, 203, 114, 0.24);
    border-radius: 8px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.example-problem-modal-close {
    width: 28px;
    height: 28px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-left: auto;
}
.example-problem-modal-close>.ri-close-fill {
    position: initial;
    color: #716A8B;
    font-size: 24px;
    cursor: pointer;
}
.example-problem-modal-title-content {
    font-size: 18px;
    font-weight: bold;
}
.dashed-line {
    border-top: 1px dashed rgba(0, 0, 0, 0.1);
}
.example-problem-modal-type-body {
    display: flex;
    flex-direction: row;
    padding: 0;
    gap: 12px;
    align-self: stretch;
    overflow: hidden;
}
.example-problem-modal-type-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 8px 16px;
    gap: 8px;
    background: #FFFFFF;
    border-radius: 6px;
    cursor: pointer;
    user-select: none;
    font-size: 14px;
    border: 1px solid #FFFFFF;
    flex-shrink: 0;
}
.example-problem-modal-type-item.active, .example-problem-modal-type-item:hover{
    background: linear-gradient(90deg, rgba(93, 61, 255, 0.1) 0%, rgba(223, 171, 255, 0.1) 100%);
    box-sizing: border-box;
    color: #5D3DFF;
    font-weight: 700;
}
.example-problem-list {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.example-problem-item-icon {
    background-image: url('../images/hollow.png');
    width: 16px;
    height: 16px;
}
.example-problem-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 12px;
    gap: 8px;
    align-self: stretch;
    background: linear-gradient(90deg, rgba(231, 228, 249, 0.4) 0%, rgba(255, 255, 255, 0.4) 100%);
    box-sizing: border-box;
    border: 1px solid #FFFFFF;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
}
.example-problem-item>div {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: calc(100% - 20px);
}
.example-problem-item.active>.example-problem-item-icon, .example-problem-item:hover>.example-problem-item-icon {
    background-image: url('../images/solid.png');
}
.example-problem-item.active, .example-problem-item:hover {
    color: #5D3DFF;
    background: linear-gradient(90deg, rgba(93, 61, 255, 0.1) 0%, rgba(223, 171, 255, 0.1) 100%);
    font-weight: bold;
    border: 1px solid transparent;
}
.example-problem-refresh {
    margin-top: 20px;
    color: #5D3DFF;
    font-size: 14px;
    cursor: pointer;
    user-select: none;
}
.example-problem-modal-type {
    display: flex;
    align-items: center;
    justify-content: start;
    margin-top: 20px;
    gap: 5px;
    #example-problem-type-left,#example-problem-type-right {
        font-size: 20px;
        cursor: pointer;
        display: none;
    }
}
.questionnaire-modal {
    .form-modal {
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
        width: 350px;
        height: 642px;
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        margin: 0;
    }
    .questionnaire-modal-close {
        position: absolute;
        top: 0;
        right: 0;
    }
    .questionnaire-modal-btn {
        position: absolute;
        bottom: 20px;
        text-align: center;
        width: 100%;
        a {
            display: inline-block;
            width: 250px;
            height: 30px;
            line-height: 30px;
            background-color: #2366FF;
            color: #ffffff;
            border: none;
            border-radius: 8px;
            font-weight: 500;
            cursor: pointer;
            text-decoration: none;
        }
    }
}

.questionnaire-btn {
    background-image: url(../images/questionnaire-btn.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 80px;
    height: 100px;
    z-index: 100;
    position: fixed;
    right: 2px;
    top: 40%;
    cursor: pointer;
    display: none;
}
.participation_activity {
    border-radius: 40px;
    background: #FF9B4E;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    width: calc(100% - 10px);
    margin-left: 5px;
    margin-right: 5px;
    margin-top: 8px;
    cursor: pointer;
}
.participation_activity_text {
    text-align: center;
    color: #FFFFFF;
    font-size: 12px;
    line-height: 16px;
}
#pointsValue {
    margin-left: 3px;
    color: #080605;
    font-size: 14px;
}
.member-level-free {
    padding-left: 10px;
    padding-right: 10px;
    height: 20px;
    border-radius: 4px;
    background: #D8D8D8;
    font-size: 12px;
    font-weight: 600;
    line-height: 20px;
    color: #979797;
}
.member-lever-vip {
    padding-left: 10px;
    padding-right: 10px;
    height: 20px;
    border-radius: 4px;
    background: #EDE6D6;
    font-size: 12px;
    font-weight: 600;
    line-height: 20px;
    color: #979797;
}
.member-info {
    background: #EDE6D6;
    width: calc(100% - 20px);
    height: 24px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    margin-left: 10px;
    margin-right: 10px;
    padding-left: 5px;
    padding-right: 5px;
    cursor: pointer;
}
#memberInfoText {
    margin-left: 10px;
}

/* 会员中心弹窗 */
.member-center-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 100;
  justify-content: center;
  align-items: center;
}

.member-center-modal.show {
  display: flex;
}

.member-center-content {
  background: #fff;
  border-radius: 12px;
  width: 900px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}

.member-center-close {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    font-size: 26px;
    color: #999;
    z-index: 10;
}

.member-center-close:hover {
  color: #333;
}

/* 会员中心标题 */
.member-center-title {
    text-align: left;
    font-size: 20px;
    font-weight: 500;
    line-height: 28px;
    color: #333;
    padding: 10px 15px 10px;
    margin: 0;
}

/* 会员信息区 */
.member-info-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 32px;
  background: linear-gradient(135deg, #FFF8E1 0%, #FFF3E0 100%);
  border-radius: 12px 12px 0 0;
}

.member-level-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 600;
  color: #FF8F00;
}

.member-level-badge .level-icon {
  font-size: 16px;
}

.member-expire {
  color: #666;
  font-size: 14px;
}

.points-display {
  text-align: center;
}

.points-value {
  font-size: 28px;
  font-weight: 600;
  color: #333;
  display: block;
}

.points-label {
  font-size: 12px;
  color: #999;
}

.member-actions {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.btn-renew {
  padding: 8px 24px;
  background: linear-gradient(127deg, #f9cd4d 8%, #fcdf7b 60%);
  color: #A07300;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  font-size: 14px;
}

.btn-renew:hover {
  background: linear-gradient(135deg, #E65100 0%, #FF8F00 100%);
}

.btn-points-detail {
  padding: 8px 16px;
  background: #fff;
  color: #333;
  border: 1px solid #ddd;
  border-radius: 2px;
  cursor: pointer;
  font-size: 14px;
}

.btn-points-detail:hover {
  border-color: #005EEC;
  color: #005EEC;
}

.member-links {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
  padding: 12px 32px;
  border-bottom: 1px solid #eee;
}

.member-links a {
  color: #666;
  text-decoration: none;
  font-size: 13px;
}

.member-links a:hover {
  color: #005EEC;
}

/* 套餐区 */
.package-section {
  padding: 24px 32px;
}

.package-tip {
  text-align: center;
  color: #999;
  font-size: 13px;
  margin-bottom: 20px;
}

.package-title {
  text-align: center;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #333;
}

.package-tabs {
  display: flex;
  justify-content: center;
    margin: 0 auto 20px auto;
    border-radius: 20px;
    background: #F1F5F9;
    padding: 3px 0;
    gap: 5px;
    width: 330px;
}

.package-tab {
  padding: 10px 24px;
  background: #f5f5f5;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  font-size: 14px;
  color: #666;
  position: relative;
  transition: all 0.3s;
    display: flex;
    align-items: center;
}

.package-tab:hover {
  background: #e8e8e8;
}

.package-tab.active {
    color: #000000;
    background: #FFFFFF;
    box-shadow: 0px 0.83px 3.31px 0px rgba(0, 0, 0, 0.08);
}
.package-tab-badge {
    background: #EEF2FF;
    border-radius: 4px;
    color: #6366F1;
    font-size: 12px;
    font-weight: 600;
    padding: 2px 3px 2px 3px;
    margin-left: 3px;
}

.package-cards {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.package-card {
  flex: 1;
  max-width: 280px;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 24px;
  position: relative;
  transition: all 0.3s;
}

.package-card:hover {
  border-color: #ccc;
}

.package-card.active {
    border: 2px solid transparent;
    border-radius: 12px;
    box-shadow: 0px 8px 30px 0px rgba(99, 102, 241, 0.12);
    position: relative;
    background: linear-gradient(#fff, #fff) padding-box,
                linear-gradient(180deg, #6366f1 0%, #393b8b00 100%) border-box;
}

.card-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 12px;
    background: #6366F1;
  color: #fff;
  font-size: 12px;
  border-radius: 12px;
  white-space: nowrap;
}

.card-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.card-icon {
  font-size: 20px;
}

.card-name {
  font-size: 16px;
  font-weight: 600;
  color: #333;
}

.card-badge-right {
    margin-left: auto;
    padding: 2px 8px;
    font-size: 11px;
    background: #EEF2FF;
    color: #6366F1;
    border: 1px solid #C7D2FE;
    border-radius: 15px;
}

.card-price {
  margin-bottom: 20px;
}

.price-value {
  font-size: 36px;
  font-weight: 700;
  color: #333;
}

.price-unit {
  font-size: 14px;
  color: #999;
}

.price-original {
  font-size: 14px;
  color: #bbb;
  text-decoration: line-through;
  margin-left: 4px;
}

.price-consult {
  font-size: 12px;
  color: #000;
  line-height: 2.3;
}

.card-btn {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
  margin-bottom: 20px;
  transition: all 0.3s;
}

.card-btn.current {
  background: #f5f5f5;
  color: #999;
  cursor: not-allowed;
}

.card-btn.buy {
    color: #fff;
    background: #000000;
    box-shadow: 0px 4px 14px 0px rgba(99, 102, 241, 0.3);
}

.card-btn.buy:hover {
  /*background: #004BC7;*/
    background: #333333;
}

.card-btn.contact {
  background: #fff;
  color: #333;
  border: 1px solid #ddd;
}

.card-btn.contact:hover {
  border-color: #005EEC;
  color: #005EEC;
}

.card-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.card-features li {
  padding: 6px 0;
  font-size: 13px;
  color: #666;
  line-height: 1.5;
}

/* 支付弹窗 */
.pay-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2000;
  justify-content: center;
  align-items: center;
}

.pay-modal.show {
  display: flex;
}

.pay-modal-content {
  background: #fff;
  border-radius: 12px;
  padding: 32px;
  width: 360px;
  text-align: center;
  position: relative;
}

.pay-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  cursor: pointer;
  font-size: 20px;
  color: #999;
}

.pay-modal-close:hover {
  color: #333;
}

.pay-modal-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 24px;
  color: #333;
}

.pay-qrcode {
  width: 200px;
  height: 200px;
  margin: 0 auto 16px;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pay-qrcode img {
  max-width: 100%;
  max-height: 100%;
}

.pay-modal-tip {
  font-size: 13px;
  color: #999;
  margin-bottom: 24px;
}

.pay-modal-actions {
  display: flex;
  justify-content: center;
}

.btn-check-pay {
  padding: 10px 32px;
  background: #005EEC;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
}

.btn-check-pay:hover {
  background: #004BC7;
}

/* 购买记录和积分明细弹窗样式 */
.detail-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2000;
  justify-content: center;
  align-items: center;
}

.detail-modal.show {
  display: flex;
}

.detail-modal .modal-content {
  background: #fff;
  border-radius: 12px;
  width: 700px;
  max-height: 80vh;
  overflow: auto;
  padding: 24px;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid #eee;
}

.modal-header h3 {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin: 0;
}

.modal-close {
  cursor: pointer;
  font-size: 24px;
  color: #999;
  line-height: 1;
}

.modal-close:hover {
  color: #333;
}

.detail-table {
  width: 100%;
  border-collapse: collapse;
}

.detail-table th,
.detail-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid #eee;
}

.detail-table th {
  background: #f5f7fa;
  font-weight: 600;
  color: #333;
}

.detail-table tbody tr:nth-child(even) {
  background: #fafafa;
}

.detail-table tbody tr:hover {
  background: #f0f5ff;
}

.empty-row {
  text-align: center !important;
  color: #999;
  padding: 40px 0;
}

.points-positive {
  color: #52c41a;
  font-weight: 600;
}

.points-negative {
  color: #ff4d4f;
  font-weight: 600;
}

.points-summary {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 16px;
}

.points-summary .label {
    color: #1F2937
}

.points-summary .value {
    font-weight: 600;
    font-size: 14px;
    color: #3183FF;
}

.points-page-btn {
  padding: 4px 12px;
  border: 1px solid #DCDFE6;
  border-radius: 4px;
  background: #fff;
  font-size: 13px;
  color: #606266;
  cursor: pointer;
}
.points-page-btn:hover:not(:disabled) {
  color: #005EEC;
  border-color: #005EEC;
}
.points-page-btn:disabled {
  color: #C0C4CC;
  cursor: not-allowed;
}

.member-info-block {
    width: 100%;
    height: 160px;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.001), rgba(0, 0, 0, 0.001)), #F5F5F0;
    box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
}
.member-info-block-level-badge {
    width: 350px;
    background: #FFFFFF;
    border-radius: 8px;
    padding: 16px;
}
#freeMemberInfo div:nth-child(1){
    padding: 4px 8px;
    background: #EDEDED;
    font-size: 12px;
    line-height: 18px;
    border-radius: 4px;
}
#freeMemberInfo div:nth-child(2){
    font-size: 18px;
    font-weight: bold;
    line-height: 40px;
}
#freeMemberInfo div:nth-child(3){
    font-size: 14px;
    line-height: 20px;
    color: #6B7280;
}
#paidMemberInfo {
    display: flex;
    flex-direction: column;
    gap: 40px;
}
#paidMemberInfo div:nth-child(1) {
    color: #F49D13;
    font-size: 20px;
    font-weight: bold;
    line-height: 120%;
    display: flex;
    align-items: center;
    gap: 3px;
}
#paidMemberInfo div:nth-child(2) {
    font-size: 16px;
    line-height: 120%;
    color: #A6881C;
}
.member-info-block-right {

}

.member-info-block-right div:nth-child(1) {
    font-size: 24px;
    font-weight: bold;
    line-height: 32px;
    color: #1F2937;
}

.member-info-block-right div:nth-child(2) {
    color: #9CA3AF;
    font-size: 12px;
}
.member-info-block-btn-actions {
    text-align: right;
    padding-top: 20px;
}
.member-info-block-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

/* 加载锁屏 */
.loading-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 2000;
  justify-content: center;
  align-items: center;
}

.loading-overlay.show {
  display: flex;
}

.loading-spinner {
  text-align: center;
  color: #fff;
}

.spinner {
  width: 50px;
  height: 50px;
  border: 4px solid rgba(255, 255, 255, 0.3);
  border-top: 4px solid #fff;
  border-radius: 50%;
  margin: 0 auto 16px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.loading-text {
  font-size: 16px;
  color: #fff;
  margin: 0;
}

/* 支付成功提示框 */
.success-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2000;
  justify-content: center;
  align-items: center;
}

.success-modal.show {
  display: flex;
}

.success-modal-content {
  background: #fff;
  border-radius: 16px;
  padding: 40px 50px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: successFadeIn 0.3s ease;
}

@keyframes successFadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.success-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
  color: #fff;
  font-size: 36px;
  line-height: 70px;
  margin: 0 auto 20px;
  box-shadow: 0 8px 20px rgba(76, 175, 80, 0.4);
}

.success-title {
  font-size: 24px;
  font-weight: 600;
  color: #333;
  margin: 0 0 12px;
}

.success-text {
  font-size: 16px;
  color: #666;
  margin: 0 0 30px;
}

.success-btn {
  background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
  color: #fff;
  border: none;
  padding: 12px 60px;
  font-size: 16px;
  font-weight: 500;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.success-btn:hover {
  background: linear-gradient(135deg, #45a049 0%, #3d8b40 100%);
  box-shadow: 0 4px 12px rgba(76, 175, 80, 0.4);
  transform: translateY(-2px);
}

/* 揪错弹窗 */
.wrong-modal .form-modal {
  height: auto;
  max-height: 90vh;
  overflow-y: auto;
  padding: 0 30px 20px 30px;
}
.wrong-modal .form-modal .modal-title {
  text-align: left;
  border-bottom: 1px solid #dcdce0;
  padding: 15px 0 15px 0;
  margin-bottom: 10px;
}
.wrong-modal .form-modal .modal-title h4 {
  font-size: 17px;
  line-height: 1;
  margin: 0;
}
.wrong-modal .form-item {
  width: 100%;
  display: flex;
  align-items: flex-start;
  padding: 8px 0;
  position: relative;
}
.wrong-modal .form-item .form-item-label {
  width: 90px;
  flex-shrink: 0;
  text-align: right;
  line-height: 36px;
  font-size: 14px;
  color: #333;
  margin-right: 10px;
}
.wrong-modal .form-item .form-item-label i {
  color: #ff0000;
  font-style: normal;
  margin-right: 2px;
}
.wrong-modal .form-item input[type="text"] {
  flex: 1;
  height: 36px;
  border: 1px solid #D7D8D9;
  border-radius: 4px;
  padding: 0 12px;
  font-size: 14px;
}
.wrong-modal .form-item textarea {
  flex: 1;
  min-height: 80px;
  border: 1px solid #D7D8D9;
  border-radius: 4px;
  padding: 8px 12px;
  font-size: 14px;
  resize: vertical;
  line-height: 1.6;
}
.wrong-modal .form-item .wrong-upload-area {
  flex: 1;
}
.wrong-modal .form-item .error {
  position: absolute;
  color: #ff0000;
  font-size: 12px;
  bottom: -8px;
  left: 100px;
}
/* 揪错弹窗上传区域 */
.wrong-upload-box {
  border: 2px dashed #D1D5DB;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  cursor: pointer;
  position: relative;
  background: #FAFAFA;
  transition: border-color 0.3s;
}
.wrong-upload-box:hover,
.wrong-upload-box.drag-over {
  border-color: #409EFF;
  background: #ECF5FF;
}
.wrong-upload-box input[type="file"] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  z-index: 1;
}
.wrong-preview {
  position: relative;
  display: inline-block;
}
.wrong-preview img {
  max-width: 100%;
  max-height: 200px;
  border-radius: 4px;
}
.package-item-icon {
    width: 12px;
    height: 12px;
    margin-right: 3px;
}
.package-item-icon-check {
    width: 10px;
    height: 10px;
    margin-right: 3px;
}

/* 公告弹窗样式 */
.announcement-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
}

.announcement-modal .modal-mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.announcement-popup {
  position: relative;
  margin: 10vh auto;
  width: 400px;
  max-width: 90%;
}

.announcement-close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    color: #000;
    cursor: pointer;
    z-index: 10;
}

.announcement-close-btn:hover {
  color: #333;
}

.announcement-bg {
  width: 100%;
  aspect-ratio: 3 / 4.5;
  background-image: url('../images/h5Publicity.png');
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: top center;
  position: relative;
}

.announcement-content-area {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px;
  background: linear-gradient(transparent, rgba(255, 255, 255, 0.9) 30%);
  border-radius: 0 0 8px 8px;
}

.announcement-buttons {
  display: flex;
  gap: 12px;
  width: 100%;
  justify-content: center;
  margin-bottom: 12px;
}

.btn-join,.btn-skip {
    padding: 10px 32px;
    border-radius: 28px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
}

.btn-join {
    color: #fff;
    background: linear-gradient(0deg, #ffc36e 0%, #e78f12 100%);
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0px 12px 12px 0px rgba(255, 201, 124, 0.5),0px 0px 48px 0px rgba(255, 150, 0, 0.15);
}

.btn-skip {
    color: #666;
    background: #fff;
    border: 1px solid #ddd;
}

.btn-skip:hover {
    border-color: #bbb;
    color: #333;
}


.checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  color: #666;
  font-size: 12px;
  margin-top: 12px;
}

.checkbox-label input[type="checkbox"] {
  width: 12px;
  height: 12px;
  cursor: pointer;
}

.btn-primary {
  padding: 8px 24px;
  background: #3479ff;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
}

.btn-primary:hover {
  background: #2860e0;
}

/* ========== 文件列表 wrapper ========== */
.file-list-wrapper {
    position: relative;
}

.file-list {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    padding: 10px 8px 0 8px;
    margin: 0 4px;
    max-height: 130px;
    overflow-x: auto;
    overflow-y: visible;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.file-list::-webkit-scrollbar {
    display: none;
}

/* 左右箭头 */
.file-list-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #666;
    cursor: pointer;
    z-index: 5;
    transition: all 0.2s;
}

.file-list-arrow:hover {
    background: #fff;
    color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
}

.file-list-arrow-left {
    left: 0;
}

.file-list-arrow-right {
    right: 0;
}

.file-list-wrapper.has-overflow .file-list-arrow {
    display: flex;
}

/* 图片文件项 */
.file-item-image .img-wrapper {
    margin: 0;
    height: 60px;
    width: 80px;
    position: relative;
    display: block;
}

.file-item-image .img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 1px solid #E7E7EA;
    border-radius: 4px;
}

.file-item-image .img-wrapper .close-icon {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: white;
    color: #5d3dff;
    text-align: center;
    cursor: pointer;
    font-style: normal;
    font-size: 12px;
    line-height: 18px;
    border: 2px solid #cccccc;
    box-sizing: border-box;
    display: none;
}

.file-item-image .img-wrapper:hover .close-icon {
    display: block;
}

/* 文档文件项 */
.file-item-doc {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: #F5F7FA;
    border: 1px solid #E4E7ED;
    border-radius: 6px;
    font-size: 13px;
    position: relative;
    max-width: 280px;
    transition: border-color 0.2s;
}

.file-item-doc:hover {
    border-color: var(--primary-color);
}

.file-doc-icon {
    font-size: 24px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.file-doc-info {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    flex: 1;
    min-width: 0;
}

.file-doc-name {
    color: #303133;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.4;
}

.file-doc-size {
    font-size: 12px;
    line-height: 1.4;
}

.file-item-doc .file-remove {
    position: absolute;
    top: -6px;
    right: -6px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #fff;
    color: #909399;
    border: 1px solid #DCDFE6;
    font-size: 12px;
    line-height: 16px;
    text-align: center;
    cursor: pointer;
    display: none;
    font-style: normal;
}

.file-item-doc:hover .file-remove {
    display: block;
}

.file-item-doc .file-remove:hover {
    color: #F56C6C;
    border-color: #F56C6C;
}

/* ========== 文档上传按钮 ========== */
#docUploadBtn {
    position: relative;
}

#docUploadBtn i.ri-file-upload-line {
    font-size: 16px;
    transition: color 0.2s;
}

#docUploadBtn:hover i.ri-file-upload-line {
    color: var(--primary-color);
}

#docUploadBtn span {
    font-size: 14px;
}

#docUploadLoading {
    position: absolute;
    right: 4px;
    top: 50%;
    margin-top: -7px;
    font-size: 14px;
    color: var(--primary-color);
}

/* ========== 拖拽提示覆盖层 ========== */
.drag-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(93, 61, 255, 0.08);
    border: 2px dashed #5d3dff;
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    pointer-events: none;
}

.drag-overlay span {
    font-size: 16px;
    color: #5d3dff;
    font-weight: 500;
}

/* ai-xe-input 需要 position: relative 以支持 overlay 绝对定位 */
.ai-xe-input {
    position: relative;
}

/* 拖拽高亮时显示 overlay */
#ai-xe-input.drag-over .drag-overlay {
    display: flex !important;
}

/* 拖拽高亮时仅显示 overlay，不改变输入框自身背景，避免输入区半边变色 */

/* 消息通知按钮样式 */
.footer-actions {
    display: flex;
    align-items: center;
    justify-content: end;
    width: 65px;
}

.notification-btn {
    position: relative;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    border-radius: 4px;
    transition: background-color 0.2s;
}


.notification-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: #ff4d4f;
    color: #fff;
    font-size: 12px;
    min-width: 14px;
    height: 14px;
    line-height: 14px;
    text-align: center;
    border-radius: 8px;
    padding: 0 4px;
}

/* 消息通知弹窗样式 */
.notification-modal {
    position: fixed;
    z-index: 1000;
    left: 16%;
    bottom: 60px;
    display: none;
}

.notification-modal.show {
    display: block;
}

.notification-modal-content {
    width: 400px;
    max-height: 500px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    display: flex;
    flex-direction: column;
}

.notification-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
}

.notification-header h3 {
    margin: 0;
    font-size: 16px;
    color: #333;
}

.notification-header-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.notification-read-all {
    color: #005EEC;
    cursor: pointer;
    font-size: 14px;
}

.notification-close-btn {
    color: #999;
    cursor: pointer;
    font-size: 20px;
}

.notification-close-btn:hover {
    color: #333;
}

.notification-divider {
    height: 1px;
    background: #f0f0f0;
}

.notification-list {
    flex: 1;
    overflow-y: auto;
    max-height: 400px;
}

.notification-item {
    padding: 12px 16px;
    margin: 8px 12px;
    background: #fff;
    border-radius: 8px;
    border: 1px solid #e8e8e8;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    transition: box-shadow 0.2s;
}

.notification-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.notification-item.unread {
    background: #f0f7ff;
}

.notification-item-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.notification-item-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: radial-gradient(134% 134% at 43% 30%, #1677ff 0%, #83ade9 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
}

.notification-item-icon .unread-dot {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ff4d4f;
}

.notification-item-icon i {
    color: #fff;
    font-size: 14px;
}

.notification-item-header .title {
    font-weight: 500;
    color: #333;
    font-size: 14px;
}

.notification-item-header .time {
    color: #999;
    font-size: 12px;
    margin-left: auto;
}

.notification-item-content {
    color: #333;
    font-size: 14px;
    line-height: 1.5;
}

.notification-item-divider {
    height: 1px;
    background: #f0f0f0;
    margin: 8px 0;
}

.notification-item-action {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.notification-item-action .action-text {
    color: #333;
    font-size: 13px;
}

.notification-item-action .action-arrow {
    color: #999;
    font-size: 14px;
}

.notification-load-more {
    text-align: center;
    padding: 12px 16px;
    color: #005EEC;
    cursor: pointer;
    font-size: 14px;
}

.notification-load-more:hover {
    background: #f5f7fa;
}

.notification-loading {
    text-align: center;
    padding: 16px;
    color: #999;
}

.notification-footer {
    text-align: center;
    padding: 16px;
    color: #999;
    font-size: 13px;
}

.objection-btn button {
  display: block;
  margin-top: 10px;
  background-color: #f0edfe;
  color: #5d3dff;
  line-height: 32px;
  border: none;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
}

.scene-btn.active {
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
}

.download-oc-btn {
  margin-top: 10px;
  padding: 6px 8px;
}

.objection-tip {
  border-bottom: #d8d8d8 dashed 1px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.objection-tip i {
  font-size: 22px;color: #5d3dff;
  padding-right: 5px;
}

.objection-tip .tip {
  white-space: nowrap;
  overflow: hidden;
  max-width: 50em;
  text-overflow: ellipsis;
 }
