.markdown-content {
  line-height: 1.6;
}
.markdown-content.simple-text {
  white-space: pre-wrap;
  word-break: break-word;
}
.markdown-content p {
  margin: 0 0 8px 0;
}
.markdown-content p:last-child {
  margin-bottom: 0;
}
.markdown-content strong,
.markdown-content b {
  font-weight: 600;
  color: #1f2329;
}
.markdown-content em,
.markdown-content i {
  font-style: italic;
  color: #1f2329;
}
.markdown-content del,
.markdown-content s {
  text-decoration: line-through;
  color: #999;
}
.markdown-content mark {
  background-color: #fff3cd;
  padding: 2px 4px;
  border-radius: 2px;
}
.markdown-content sub,
.markdown-content sup {
  font-size: 0.8em;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
.markdown-content sub {
  bottom: -0.25em;
}
.markdown-content sup {
  top: -0.5em;
}
.markdown-content kbd {
  background-color: #f1f3f4;
  border: 1px solid #ccc;
  border-radius: 3px;
  padding: 2px 6px;
  font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
  font-size: 0.9em;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}
.markdown-content code {
  background-color: #f1f3f4;
  padding: 2px 4px;
  border-radius: 3px;
  font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
  font-size: 0.9em;
}
.markdown-content pre {
  background-color: #f8f9fa;
  padding: 12px;
  border-radius: 6px;
  overflow-x: auto;
  margin: 8px 0;
}
.markdown-content pre code {
  background: none;
  padding: 0;
}
.markdown-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 12px 0;
  font-size: 14px;
}
.markdown-content table th,
.markdown-content table td {
  border: 1px solid #e1e8ed;
  padding: 8px 12px;
  text-align: left;
  vertical-align: top;
}
.markdown-content table th {
  background-color: #f8f9fa;
  font-weight: 600;
  color: #1f2329;
}
.markdown-content table td {
  background-color: #ffffff;
}
.markdown-content table tbody tr:hover {
  background-color: #f5f5f5;
}
@media (max-width: 768px) {
  .markdown-content table {
    font-size: 12px;
  }
  .markdown-content table th,
  .markdown-content table td {
    padding: 6px 8px;
  }
}
.markdown-content a {
  color: #525CFF;
  text-decoration: none;
}
.markdown-content a:hover {
  text-decoration: underline;
}
.markdown-content ul {
  margin: 8px 0;
  padding-left: 20px;
  list-style-type: disc;
}
.markdown-content ul ul {
  list-style-type: circle;
}
.markdown-content ul ul ul {
  list-style-type: square;
}
.markdown-content ul.task-list {
  list-style: none;
  padding-left: 0;
}
.markdown-content ul.task-list li.task-list-item {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  margin: 4px 0;
}
.markdown-content ul.task-list li.task-list-item input[type="checkbox"] {
  margin-right: 8px;
  margin-top: 2px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.markdown-content ol {
  margin: 8px 0;
  padding-left: 20px;
  list-style-type: decimal;
}
.markdown-content li {
  margin: 4px 0;
}
.markdown-content li p {
  margin: 0;
}
.markdown-content li p:not(:last-child) {
  margin-bottom: 4px;
}
.markdown-content blockquote {
  border-left: 4px solid #e1e8ed;
  margin: 8px 0;
  padding-left: 16px;
  color: #536471;
  font-style: italic;
}
.markdown-content hr {
  border: none;
  border-top: 2px solid #e1e8ed;
  margin: 20px 0;
  background: none;
}
.markdown-content h1,
.markdown-content h2,
.markdown-content h3,
.markdown-content h4,
.markdown-content h5,
.markdown-content h6 {
  margin: 16px 0 8px 0;
  font-weight: 600;
}
.markdown-content h1:first-child,
.markdown-content h2:first-child,
.markdown-content h3:first-child,
.markdown-content h4:first-child,
.markdown-content h5:first-child,
.markdown-content h6:first-child {
  margin-top: 0;
}
.markdown-content h1 {
  font-size: 1.5em;
}
.markdown-content h2 {
  font-size: 1.3em;
}
.markdown-content h3 {
  font-size: 1.1em;
}
.markdown-content h4,
.markdown-content h5,
.markdown-content h6 {
  font-size: 1em;
}
.markdown-content small {
  font-size: 0.875em;
  color: #666;
}
.markdown-content cite {
  font-style: italic;
  color: #666;
}
.markdown-content q {
  quotes: '"' '"' "'" "'";
}
.markdown-content q:before {
  content: open-quote;
}
.markdown-content q:after {
  content: close-quote;
}
.markdown-content img {
  width: 100%;
  height: auto;
  max-height: 60vh;
  border-radius: 8px;
  margin: 8px 0;
  object-fit: contain;
  display: block;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@-webkit-keyframes blink {
  50% {
    opacity: 0;
  }
}
@keyframes blink {
  50% {
    opacity: 0;
  }
}
@-webkit-keyframes typing-blink {
  0%,
  50% {
    opacity: 1;
  }
  51%,
  100% {
    opacity: 0;
  }
}
@keyframes typing-blink {
  0%,
  50% {
    opacity: 1;
  }
  51%,
  100% {
    opacity: 0;
  }
}
.bubble-list-container {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  grid-gap: 20px;
  gap: 20px;
  padding: 16px;
}
.bubble-item {
  display: -ms-flexbox;
  display: flex;
}
.bubble-item.user {
  max-width: 80%;
  -ms-flex-item-align: end;
      align-self: flex-end;
}
.bubble-item.user .bubble-content {
  background-color: #525CFF;
  color: white;
  border-radius: 8px;
}
.bubble-item.assistant {
  max-width: 100%;
  -ms-flex-item-align: stretch;
      align-self: stretch;
}
.bubble-item.assistant .bubble-content {
  background-color: #ffffff;
  color: #1f2329;
  border-radius: 12px 12px 12px 0;
}
.bubble-item .bubble-content {
  padding: 10px 14px;
  font-size: 14px;
  line-height: 1.5;
  word-break: break-all;
  width: 100%;
  /* 保留换行 */
  /* Loading光标：保留但不在loading状态使用 */
}
.bubble-item .bubble-content .loading-container {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  grid-gap: 8px;
  gap: 8px;
}
.bubble-item .bubble-content .error-container {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}
.bubble-item .bubble-content .loading-spinner {
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 2px solid #e5e6eb;
  border-top: 2px solid #525cff;
  border-radius: 50%;
  -webkit-animation: spin 0.8s linear infinite;
          animation: spin 0.8s linear infinite;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.bubble-item .bubble-content .bubble-link {
  color: #0052ff;
  text-decoration: underline;
}
.bubble-item .bubble-content .bubble-link:hover {
  text-decoration: none;
}
.bubble-item .bubble-content .bubble-image {
  width: 100%;
  height: auto;
  max-height: 60vh;
  border-radius: 8px;
  margin: 8px 0;
  object-fit: contain;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  display: block;
}
.bubble-item .bubble-content .error-text {
  color: #ff4d4f;
  font-style: normal;
  font-weight: 400;
}
.bubble-item .bubble-content .loading-cursor {
  display: inline-block;
  width: 2px;
  height: 1em;
  background-color: currentColor;
  margin-left: 2px;
  -webkit-animation: blink 1s infinite;
          animation: blink 1s infinite;
}
.bubble-feedback {
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid #eeeeee;
}
.bubble-feedback .feedback-options {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  grid-gap: 16px;
  gap: 16px;
}
.bubble-feedback .feedback-options .feedback-action {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  grid-gap: 4px;
  gap: 4px;
  width: 58px;
  height: 20px;
  color: #8c8c8c;
  cursor: pointer;
  transition: opacity 0.2s ease;
}
.bubble-feedback .feedback-options .feedback-action img {
  width: 58px;
  height: 20px;
}
.bubble-feedback .feedback-options .feedback-action.active {
  color: #525cff;
}
.bubble-feedback .feedback-options.submitted .feedback-action {
  cursor: default;
}
.bubble-feedback .feedback-options.submitted .feedback-action:not(.active) {
  color: #b2b2b2;
}
.bubble-feedback .feedback-options.submitted .feedback-action:not(.active) img {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
}
.bubble-feedback .feedback-options:not(.submitted) .feedback-action:hover {
  opacity: 0.7;
}
.bubble-feedback .feedback-options.loading .feedback-action {
  pointer-events: none;
  opacity: 0.6;
  cursor: not-allowed;
}
.bubble-feedback .feedback-action.disabled {
  cursor: not-allowed;
  opacity: 0.6;
  pointer-events: none;
}
.bubble-feedback .feedback-thanks {
  margin-top: 8px;
  font-size: 12px;
  color: #b2b2b2;
}
.bubble-feedback .feedback-loading {
  margin-top: 8px;
  font-size: 12px;
  color: #525cff;
  text-align: center;
  -webkit-animation: pulse 1.5s ease-in-out infinite;
          animation: pulse 1.5s ease-in-out infinite;
}
@-webkit-keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.conversations-panel {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 550px;
  background-color: #ffffff;
  border-radius: 20px;
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.1);
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  overflow: hidden;
  z-index: 10;
  transition: height 0.3s ease;
}
.conversations-panel.is-expanded {
  height: 624px;
}
.conversations-header {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
  padding: 20px 20px 14px;
  font-size: 16px;
  font-weight: 600;
  color: #1f2329;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.conversations-header .close-icon {
  width: 12px;
  height: 12px;
  cursor: pointer;
}
.conversations-header .close-icon:hover {
  opacity: 0.7;
}
.conversations-list {
  -ms-flex-positive: 1;
      flex-grow: 1;
  overflow-y: auto;
  padding: 0;
}
.conversations-list::-webkit-scrollbar {
  width: 6px;
}
.conversations-list::-webkit-scrollbar-thumb {
  background: #e5e6eb;
  border-radius: 3px;
}
.date-group {
  padding: 0 0px;
  margin-bottom: 20px;
}
.date-title {
  font-size: 12px;
  padding: 0 20px;
  color: #86909c;
}
.history-item {
  font-size: 14px;
  color: #1f2329;
  padding: 8px 0px 8px 20px;
  cursor: pointer;
  line-height: 20px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 400;
}
.history-item:hover {
  background-color: #f6f7ff;
}
.loading-indicator {
  text-align: center;
  padding: 16px;
  color: #86909c;
  font-size: 14px;
}
.empty-state {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  height: 100%;
  padding: 40px 20px;
  text-align: center;
}
.empty-title {
  font-size: 16px;
  font-weight: 500;
  color: #4E5969;
  margin-bottom: 12px;
  line-height: 24px;
}
.empty-subtitle {
  font-size: 14px;
  color: #86909C;
  line-height: 20px;
  max-width: 280px;
}
.loading-indicator {
  text-align: center;
  padding: 20px 16px;
  color: #86909c;
  font-size: 14px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  grid-gap: 8px;
  gap: 8px;
}
.loading-indicator::before {
  content: '';
  width: 16px;
  height: 16px;
  border: 2px solid #E5E6EB;
  border-top: 2px solid #165DFF;
  border-radius: 50%;
  -webkit-animation: spin 1s linear infinite;
          animation: spin 1s linear infinite;
}
.no-more-indicator {
  text-align: center;
  padding: 20px 16px;
  color: #86909C;
  font-size: 14px;
  opacity: 0.8;
}
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

.chat-panel__function-bar {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  padding: 12px 16px;
  grid-gap: 8px;
  gap: 8px;
}
.chat-panel__function-bar-item {
  height: 24px;
  width: 100px;
  border-radius: 22px;
  display: -ms-flexbox;
  display: flex;
  padding: 2px 12px 2px 6px;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: justify;
      justify-content: space-between;
  background: #FFFFFF;
  cursor: pointer;
}
.chat-panel__function-bar-item-selected {
  border: 1px solid transparent;
  background-image: linear-gradient(#EFF0FF, #EFF0FF), linear-gradient(282deg, #e9b2ff 0%, #0f37ff 98%);
  background-origin: border-box;
  background-clip: padding-box, border-box;
}
.chat-panel__function-bar-item-icon {
  width: 16px;
  height: 16px;
}
.chat-panel__function-bar-item-title {
  font-size: 14px;
  color: #222222;
}

.greeting-wrapper {
  margin: 0 16px 12px;
}
.greeting-wrapper .prologue {
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  color: #1f2329;
  margin-bottom: 12px;
}
.greeting-wrapper .prologue strong {
  font-weight: 500;
}
.greeting-wrapper .greeting-error {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-align: center;
      align-items: center;
  grid-gap: 12px;
  gap: 12px;
  padding: 20px;
  color: #86909C;
  text-align: center;
}
.greeting-wrapper .greeting-error .retry-btn {
  padding: 6px 16px;
  background: #525CFF;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 12px;
  transition: all 0.2s ease;
}
.greeting-wrapper .greeting-error .retry-btn:hover {
  background: #3d47e6;
  -webkit-transform: translateY(-1px);
      -ms-transform: translateY(-1px);
          transform: translateY(-1px);
}
.greeting-wrapper .greeting-error .retry-btn:active {
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}
.greeting-wrapper .suggestion-section {
  padding: 12px;
  margin-right: 22px;
  background-color: #EAEBFF;
  border-radius: 12px;
}
.greeting-wrapper .suggestion-section .title {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
  margin-bottom: 12px;
}
.greeting-wrapper .suggestion-section .title span {
  font-size: 14px;
  color: #666666;
}
.greeting-wrapper .suggestion-section .title .refresh-btn {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  font-size: 12px;
  color: #525CFF;
  cursor: pointer;
  transition: all 0.2s ease;
  -webkit-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.greeting-wrapper .suggestion-section .title .refresh-btn::before {
  content: '';
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-right: 4px;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACIAAAAiCAYAAAA6RwvCAAAAAXNSR0IArs4c6QAAAARzQklUCAgICHwIZIgAAALsSURBVFiFzZjRcdpAEIa/FRo/kw6UDpQKgiswxvjFlseigoQKMBXgDlDGJJOZ2FipIKIC00FUggpA2jwgwQkLAgPB+d+kG919t7da/SthBzV9rddmNFQ4E8UB6goOAEIiSqzCVJRJahOFgSTbzi1bAjhWSg/F3wVcIBLoP44k2gvkLwCJQAwkACo4KHWgXgWU2nTCQGJzbnuGU0CuBbnwtKkwNCcWmKrypaZEP77JtOq5yyt1U6EhwplCwwS34PxxJFG+wV8oTmbzPgwkrgRpeXoH9IwtxUB//CDBOvAqtT1tKPRKQMI90ETz3FK6469y/wqkda2fEQbGrf54JHe7ALya80YHKJ+rxgTCp5GcW6s7KEEo3X0hAMYP0gX6VWNFtBYRafrqWDNeKHJC6Ox6FOtk5kTVeC3jwyIiVkqPZWLunA+btAkCIBUaFuRHUryiQnyI41hRSP6aV0mEjxaAGm+IpXQODMH4Qbrjkbyz4BSlKxCZYCq40vS1bs34DdQFoqeRnB4aZJ3anjYyxcUise0ZbpbnhsLkWBAAeVWNACwVbouBE5vgmCCmLCObk+/Gt+DoICrLz/hbQcA8InUAUeK3BflPZOWeAip8xFFBKIwN60vwUUBUlhG5vFL3zUBE+VlcpFJyVMcFSe15ZQMQo7gdHSQMJEHmFVXBbd2o/68XbfrqXHj6klvSOQhAViu5p97qg4dWbcazgmuuZQGEgcRFVFAck/TQat3oIIcgtwNLEFhEpSjzvda1VprdPSF8w0Qnqb30PguQvLdYmiJhcMh8ySGGxvxds+EqlfinkYSYblsZHuKYWp7elSAqPHF1g7Xa2wixpXS26WFNtT1tZMJwxThX9klrW862p40Mnim3nJHC5MQmWOddLq/UTWu4onwqkrLYDBu6g72a8OJXRHEjX/j1x1MIshr9cIPx2uq3hNHDVi+0fvIwtctJuRdIoaavdXuGq8ItilP6FSHEoiQqTIFJViPaBqDQH/bfQivsuh1BAAAAAElFTkSuQmCC);
  background-size: contain;
  background-repeat: no-repeat;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}
.greeting-wrapper .suggestion-section .title .refresh-btn:hover {
  opacity: 0.8;
}
.greeting-wrapper .suggestion-section .title .refresh-btn:hover::before {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}
.greeting-wrapper .suggestion-section .question-list {
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.1);
  border: 1px solid #EEEEEE;
  position: relative;
}
.greeting-wrapper .suggestion-section .question-list::before {
  content: '';
  position: absolute;
  left: 20px;
  top: -8px;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid #ffffff;
  z-index: 2;
}
.greeting-wrapper .suggestion-section .question-list .question-item {
  padding: 5px 16px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.greeting-wrapper .suggestion-section .question-list .question-item:last-child {
  border-bottom: none;
}
.greeting-wrapper .suggestion-section .question-list .question-item:hover {
  color: #525cff;
}

.guide-page {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #f8f4ff 0%, #e8f4fd 100%);
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  padding: 40px 20px;
  box-sizing: border-box;
}
.guide-page__content {
  max-width: 800px;
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-align: center;
      align-items: center;
}
.guide-page__avatar-image {
  width: 140px;
  height: 140px;
}
.guide-page__assistant-section {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-align: center;
      align-items: center;
  text-align: center;
  grid-gap: 30px;
  gap: 30px;
}
.guide-page__welcome-text {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  grid-gap: 8px;
  gap: 8px;
}
.guide-page__main-title {
  font-size: 20px;
  font-weight: 600;
  color: #222222;
  margin: 0;
  line-height: 1.4;
}
.guide-page__sub-title {
  font-size: 14px;
  color: #999999;
  margin: 0;
  line-height: 1.5;
}
.guide-page__section-title {
  margin-top: 6px;
  font-size: 14px;
  color: #999999;
  margin-bottom: 8px;
}
.guide-page__questions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-row-gap: 10px;
  row-gap: 10px;
  grid-column-gap: 8px;
  -webkit-column-gap: 8px;
          column-gap: 8px;
  max-width: 600px;
  margin: 0 auto;
}
.guide-page__question-card {
  background: #fff;
  border-radius: 12px;
  border: none;
  transition: all 0.3s ease;
  cursor: pointer;
  padding: 0;
}
.guide-page__question-card:hover {
  -webkit-transform: translateY(-2px);
      -ms-transform: translateY(-2px);
          transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
}
.guide-page__card-content {
  padding: 12px 16px;
}
.guide-page__card-header {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  grid-gap: 7px;
  gap: 7px;
  margin: 0 0 8px 0;
}
.guide-page__card-icon {
  width: 3px;
  height: 10px;
  border-radius: 2px;
  font-size: 20px;
  background: linear-gradient(90deg, #0F37FF 0%, #E9B0FF 100%), #D8D8D8;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.guide-page__card-title {
  font-size: 14px;
  color: #222222;
  margin: 0;
  line-height: 1.4;
}
.guide-page__card-example {
  font-size: 12px;
  color: #999999;
  margin: 4px 0 0 0;
  line-height: 1.5;
}

.sender-wrapper {
  position: relative;
  border-radius: 20px;
  transition: background-color 0.2s ease-in-out;
}
.sender-wrapper.active {
  background-color: #ffffff;
  box-shadow: 0px 4px 40px 0px rgba(0, 0, 0, 0.2);
}
.suggestion-box {
  bottom: calc(100% + 8px);
  /* 位于输入框上方8px */
  left: 0;
  right: 0;
  max-height: 140px;
  overflow-y: auto;
  background: #F6F7FF;
  border-radius: 20px;
  z-index: 10;
  padding: 8px;
  margin: 16px 16px 12px 16px;
  /* 自定义滚动条样式 */
}
.suggestion-box::-webkit-scrollbar {
  width: 6px;
  /* 滚动条宽度 */
}
.suggestion-box::-webkit-scrollbar-track {
  background: transparent;
  /* 轨道背景透明 */
  /* 添加垂直边距，使滚动条轨道不与圆角重叠 */
  margin-block: 12px;
}
.suggestion-box::-webkit-scrollbar-thumb {
  background-color: #d8d8d8;
  /* 滑块颜色 */
  border-radius: 2px;
  /* 滑块圆角 */
  border: none;
  /* 无边框 */
}
.suggestion-item {
  padding: 10px 12px;
  font-size: 14px;
  cursor: pointer;
  border-radius: 4px;
}
.suggestion-item:hover {
  background-color: #ffffff;
}
.suggestion-item strong {
  color: #0052ff;
  font-weight: 500;
}
.suggestion-loading {
  text-align: center;
  padding: 10px;
  color: #86909c;
}
.sender-container {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  background: #ffffff;
  position: relative;
  border-radius: 12px;
  min-height: 103px;
  margin: 0px 16px 16px 16px;
  border: 1px solid #cccccc;
  box-shadow: 0px 4px 10px 0px rgba(15, 55, 255, 0.15);
  transition: border-color 0.2s ease-in-out;
}
.sender-container:focus-within {
  border-color: transparent;
  background-image: linear-gradient(white, white), linear-gradient(282deg, #e9b2ff 0%, #0f37ff 98%);
  background-origin: border-box;
  background-clip: padding-box, border-box;
}
.sender-container textarea {
  -ms-flex-positive: 1;
      flex-grow: 1;
  border: none;
  background: transparent;
  padding: 0;
  margin: 16px 0px 16px 16px;
  padding-right: 40px;
  font-size: 14px;
  line-height: 22px;
  resize: none;
  overflow-y: hidden;
  min-height: 22px;
  /* 初始高度 (line-height) */
  box-sizing: border-box;
  font-family: inherit;
  outline: none;
  /* 自定义滚动条样式 */
}
.sender-container textarea::-webkit-input-placeholder {
  color: #c9cdd4;
}
.sender-container textarea:-ms-input-placeholder {
  color: #c9cdd4;
}
.sender-container textarea::placeholder {
  color: #c9cdd4;
}
.sender-container textarea::-webkit-scrollbar {
  width: 6px;
  /* 滚动条宽度 */
}
.sender-container textarea::-webkit-scrollbar-track {
  background: transparent;
  /* 轨道背景透明 */
}
.sender-container textarea::-webkit-scrollbar-thumb {
  background-color: #d8d8d8;
  /* 滑块颜色 */
  border-radius: 2px;
  /* 滑块圆角 */
  border: none;
  /* 无边框 */
}
.sender-container .send-button {
  width: 30px;
  height: 30px;
  cursor: pointer;
  position: absolute;
  right: 15px;
  bottom: 15px;
}
.sender-container .send-button:hover {
  opacity: 0.8;
}

.chat-panel {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  font-family: PingFang SC, sans-serif;
  background-color: #ffffff;
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.1);
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
}
.chat-panel__guide {
  background: linear-gradient(135deg, #f8f4ff 0%, #e8f4fd 100%);
}
.chat-panel__blur-shape {
  position: absolute;
  left: 104.07px;
  top: -10.7px;
  width: 378px;
  height: 232px;
  -webkit-transform: rotate(-22.38deg);
      -ms-transform: rotate(-22.38deg);
          transform: rotate(-22.38deg);
  background: #ffffff;
  -webkit-filter: blur(61px);
          filter: blur(61px);
  z-index: 1;
  transition: all 0.3s ease;
}
.chat-panel__blur-shape.is-expanded {
  left: 170.51px;
  top: -10.7px;
  width: 654.58px;
  height: 268.45px;
  -webkit-transform: rotate(-12.7deg);
      -ms-transform: rotate(-12.7deg);
          transform: rotate(-12.7deg);
}
.chat-panel__content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  background: transparent;
}
.chat-panel__header {
  position: relative;
  overflow: hidden;
  height: 70px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background: linear-gradient(180deg, rgba(37, 67, 255, 0.17) 0%, rgba(212, 164, 255, 0) 100%);
}
.chat-panel__header-main {
  position: relative;
  z-index: 2;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
  padding: 12px 16px 12px 12px;
}
.chat-panel__header-left {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  grid-gap: 8px;
  gap: 8px;
}
.chat-panel__logo {
  width: 44px;
  height: 44px;
}
.chat-panel__title {
  font-size: 16px;
  font-weight: 600;
  color: #1f2329;
}
.chat-panel__action-enlarge {
  width: 11.9px;
  height: 11.87px;
  cursor: pointer;
}
.chat-panel__header-right {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  grid-gap: 24px;
  gap: 24px;
  color: #4e5969;
  font-size: 14px;
}
.chat-panel__action-history,
.chat-panel__action-new-topic {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  cursor: pointer;
  grid-gap: 4px;
  gap: 4px;
}
.chat-panel__action-history img,
.chat-panel__action-new-topic img {
  width: 18px;
  height: 18px;
}
.chat-panel__action-history:hover,
.chat-panel__action-new-topic:hover {
  color: #0052ff;
}
.chat-panel__action-close {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  cursor: pointer;
}
.chat-panel__action-close img {
  width: 12px;
  height: 12px;
}
.chat-panel__action-close:hover {
  opacity: 0.7;
}
.chat-panel .history-loader {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  color: #9e9e9e;
  font-size: 12px;
  padding: 0px 0px 16px 0px;
  text-align: center;
}
.chat-panel .history-loader::before,
.chat-panel .history-loader::after {
  content: '';
  -ms-flex-positive: 1;
      flex-grow: 1;
  height: 1px;
  background-color: #eeeeee;
}
.chat-panel .history-loader::before {
  margin-right: 12px;
}
.chat-panel .history-loader::after {
  margin-left: 12px;
}
.chat-panel .scroll-placeholder {
  min-height: 100vh;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-direction: column;
      flex-direction: column;
  padding: 40px 20px;
}
.chat-panel .chat-panel__body {
  -ms-flex: 1;
      flex: 1;
  padding: 0;
  overflow-y: scroll;
  scrollbar-gutter: stable;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
}
.chat-panel .chat-panel__body::-webkit-scrollbar {
  width: 6px;
}
.chat-panel .chat-panel__body::-webkit-scrollbar-track {
  background: transparent;
}
.chat-panel .chat-panel__body::-webkit-scrollbar-thumb {
  background-color: #d8d8d8;
  border-radius: 2px;
}
.conversations-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(34, 34, 34, 0.6);
  z-index: 9;
}
.scroll-placeholder {
  min-height: calc(100vh - 200px);
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-direction: column;
      flex-direction: column;
  padding: 20px;
}
.scroll-placeholder::after {
  content: "向上滑动查看历史消息";
  color: #9e9e9e;
  font-size: 12px;
  text-align: center;
}
.bubble-list-container {
  width: 100%;
  box-sizing: border-box;
}

.ai-chat-view {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  padding-top: 8vh;
  padding-right: 20px;
}
.ai-chat-view__panel-wrapper {
  width: 30vw;
  min-width: 500px;
  height: 80vh;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: width 0.3s ease, height 0.3s ease;
}
.ai-chat-view__panel-wrapper--expanded {
  width: 60vw;
  height: 90vh;
}
.ai-chat-view__page-header {
  margin-bottom: 20px;
}

.ai-assistant-trigger {
  position: fixed;
  right: 20px;
  top: 360px;
  z-index: 999;
  width: 60px;
  height: 60px;
  cursor: pointer;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.ai-assistant-trigger:hover {
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}
.ai-assistant-trigger__content {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
}
.ai-assistant-trigger__gif {
  width: 80px;
  height: 80px;
  object-fit: contain;
  position: absolute;
  bottom: 8px;
}

.home-forced-modal .home-forced-modal__announcement {
  padding: 24px;
}
.home-forced-modal .home-forced-modal__announcement .home-forced-modal__announcement-title {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  text-align: center;
  margin-bottom: 24px;
}
.home-forced-modal .home-forced-modal__announcement .home-forced-modal__announcement-content {
  font-size: 14px;
  line-height: 1.8;
}
.home-forced-modal .home-forced-modal__announcement .home-forced-modal__announcement-content p {
  margin-bottom: 16px;
}
.home-forced-modal .home-forced-modal__announcement .home-forced-modal__announcement-content p:has(strong) {
  text-indent: 2em;
}
.home-forced-modal .home-forced-modal__announcement .home-forced-modal__announcement-content strong {
  font-weight: 600;
}
.home-forced-modal .home-forced-modal__announcement .home-forced-modal__announcement-content .home-forced-modal__link {
  color: #ffc300;
  text-decoration: none;
}
.home-forced-modal .home-forced-modal__announcement .home-forced-modal__announcement-content .home-forced-modal__link:hover {
  text-decoration: underline;
}
.home-forced-modal .home-forced-modal__announcement .home-forced-modal__announcement-actions {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  margin-top: 32px;
}
.home-forced-modal .home-forced-modal__form .home-forced-modal__form-title {
  font-size: 16px;
  font-weight: 500;
  color: #333;
  padding: 24px;
}
.home-forced-modal .home-forced-modal__form .home-forced-modal__form-actions {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-align: center;
      align-items: center;
  padding: 24px;
  margin-top: 24px;
}
.home-forced-modal .home-forced-modal__form .home-forced-modal__form-actions .home-forced-modal__form-tip {
  margin-top: 16px;
  font-size: 12px;
  color: #999;
  text-align: center;
  line-height: 1.6;
}
.home-forced-modal .home-forced-modal__form .home-forced-modal__input-wrapper {
  width: 100%;
}
.home-forced-modal .home-forced-modal__form .home-forced-modal__field-tip {
  margin-top: 8px;
  font-size: 12px;
  color: #999;
}

.error-page-wrapper {
  width: 100%;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
}
.error-page-wrapper .error-tip {
  font-size: 18px;
}

.svg-icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  vertical-align: -0.15em;
  /* 调整纵轴位置，方便对齐 */
  fill: currentColor;
  overflow: hidden;
}

.feedback-entry.feedback-text {
  display: -ms-flexbox;
  display: flex;
  cursor: pointer !important;
  -ms-flex-align: center;
      align-items: center;
}
.feedback-entry.feedback-text .title {
  display: -ms-flexbox;
  display: flex;
  color: #222426;
  font-family: PingFang SC;
  font-weight: 400;
  font-size: 14px;
  line-height: 26px;
  letter-spacing: 0px;
  -webkit-text-decoration: NONE;
          text-decoration: NONE;
}
.feedback-entry.feedback-text .divider-vertical {
  margin: auto 16px;
  color: #cccccc;
}
.feedback-entry.feedback-text .icon-question {
  display: block;
  color: #999999;
  margin-right: 5px;
  font-size: 26px;
}
.feedback-entry.popup-content {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: center;
      justify-content: center;
  border-radius: 2px;
  background: #ffffff;
}
.feedback-entry.popup-content .qrcode-image {
  margin-top: 9px;
  width: 120px;
  height: 120px;
}
.feedback-entry.popup-content .qrcode-h3 {
  width: 122px;
  height: 40px;
  padding-top: 9px;
  color: #222222;
  font-family: 'PingFang SC', 'Helvetica Neue', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: normal;
  letter-spacing: 0px;
  text-align: center;
}
.feedback-entry.popup-content .qrcode-p {
  padding-top: 10px;
  padding-bottom: 8px;
  color: #999999;
  font-family: 'PingFang SC', 'Helvetica Neue', sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: normal;
  letter-spacing: 0px;
  text-align: center;
}
.feedback-entry.popup-content a {
  color: blue;
  font-weight: bold;
}
.feedback-entry-pop-confirm .feedback-entry-pop-confirm-content {
  color: #000;
}
.feedback-entry-pop-confirm .roo-tooltip-inner {
  padding: 18px 30px 12px 16px;
  background-color: #ffcc33 !important;
  border-radius: 8px !important;
}
.feedback-entry-pop-confirm .roo-tooltip-arrow {
  border-bottom-color: #ffcc33 !important;
}
.feedback-entry-pop-confirm .roo-tooltip-arrow::after {
  border-bottom-color: #ffcc33 !important;
}
.feedback-entry-pop-confirm .feedback-entry-pop-confirm-close {
  cursor: pointer;
  color: #6a6969;
  position: absolute;
  right: 10px;
  top: 27px;
  font-size: 16px;
  font-weight: 700;
}

.custom-guide-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  background: transparent;
  pointer-events: none;
}
.custom-guide-modal-overlay.with-mask {
  background: rgba(0, 0, 0, 0.45);
  pointer-events: auto;
}
.custom-guide-modal {
  background: #FFD700;
  border-radius: 12px;
  padding: 20px 16px 20px 20px;
  width: 277px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  position: relative;
  pointer-events: auto;
}
.custom-guide-modal::before {
  content: '';
  position: absolute;
  left: -12px;
  top: 40px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-right: 12px solid #FFD700;
}
.custom-guide-modal .guide-header {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
}
.custom-guide-modal .guide-header .header-left {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  grid-gap: 4px;
  gap: 4px;
}
.custom-guide-modal .guide-header .header-left .info-icon {
  width: 20px;
  height: 20px;
}
.custom-guide-modal .guide-header .header-left .guide-title {
  font-size: 16px;
  font-weight: 600;
  color: #333;
}
.custom-guide-modal .guide-header .close-btn {
  margin-top: -8px;
  width: 16px;
  height: 16px;
  cursor: pointer;
}
.custom-guide-modal .guide-header .close-btn:hover {
  background: rgba(0, 0, 0, 0.1);
  color: #333;
}
.custom-guide-modal .guide-description {
  color: #666;
  font-size: 12px;
  margin-bottom: 20px;
}
.custom-guide-modal .guide-content {
  background: white;
  border-radius: 8px;
  margin-bottom: 12px;
}
.custom-guide-modal .guide-footer {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: end;
      justify-content: flex-end;
}
.custom-guide-modal .guide-footer .know-btn {
  padding: 4px 8px;
  border: 1px solid #333;
  border-radius: 6px;
  background: transparent;
  color: #333;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.2s;
}
.custom-guide-modal .guide-footer .know-btn:hover {
  background: #333;
  color: white;
}

.common-menu-content .common-menu-item .item-content {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  width: 100%;
  position: relative;
}
.common-menu-content .common-menu-item .item-text {
  padding: 2px 4px;
  border-radius: 4px;
}
.common-menu-content .common-menu-item .item-text:hover,
.common-menu-content .common-menu-item .item-text.selected {
  font-weight: 500;
  background: #FF6A0019;
  color: #ff6a00;
}
.common-menu-content .common-menu-item .add-icon {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  left: 2px;
  border: none;
  background: none;
  cursor: pointer;
  width: 12px;
  height: 12px;
}

.common-menu {
  margin-left: 4px;
  background: #f9f9f9;
  border-radius: 8px;
  margin-bottom: 10px;
}
.common-menu .common-menu-header {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
  margin-top: 12px;
  margin-bottom: 12px;
}
.common-menu .common-menu-header .common-menu-title {
  font-weight: bold;
  font-size: 14px;
  color: #222;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  grid-gap: 8px;
  gap: 8px;
}
.common-menu .common-menu-header .common-menu-title .common-menu-count {
  font-weight: normal;
  font-size: 12px;
}
.common-menu .common-menu-header .common-menu-title .common-menu-count .count-current {
  color: #ff6a00;
}
.common-menu .common-menu-header .common-menu-title .common-menu-count .count-separator {
  color: #999;
}
.common-menu .common-menu-header .common-menu-title .common-menu-count .count-max {
  color: #999;
}
.common-menu .common-menu-header .common-menu-manage {
  font-size: 12px;
  color: #999;
  cursor: pointer;
}
.common-menu .common-menu-header .common-menu-manage:hover {
  color: #666;
}
.common-menu .common-menu-header .common-menu-actions {
  display: -ms-flexbox;
  display: flex;
  grid-gap: 8px;
  gap: 8px;
}
.common-menu .common-menu-header .common-menu-actions .common-menu-save {
  font-size: 12px;
  color: #ff6a00;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.common-menu .common-menu-header .common-menu-actions .common-menu-save:hover {
  color: #e55a00;
}
.common-menu .common-menu-header .common-menu-actions .common-menu-cancel {
  font-size: 12px;
  color: #999;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.common-menu .common-menu-header .common-menu-actions .common-menu-cancel:hover {
  color: #666;
}
.common-menu .common-menu-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 8px;
  gap: 8px;
  margin-left: -4px;
}
.common-menu .common-menu-empty {
  font-size: 12px;
  color: #888;
  padding-bottom: 12px;
}
.common-menu .common-menu-item {
  font-size: 12px;
  color: #666;
  cursor: pointer;
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}
.common-menu .common-menu-item .common-menu-item-text {
  padding: 2px 4px;
  border-radius: 4px;
}
.common-menu .common-menu-item .common-menu-item-text:hover,
.common-menu .common-menu-item .common-menu-item-text.selected {
  color: #ff6a00;
  background: #FF6A0019;
  font-weight: 500;
}

.sidebar {
  height: calc(100vh - 70px);
  width: 200px;
  padding: 8px 16px 0px;
  overflow-y: auto;
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  transition: width 0.3s ease;
}
.sidebar::-webkit-scrollbar {
  width: 0;
}
.sidebar .sidebar-menu {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: justify;
      justify-content: space-between;
  padding: 0;
  border: none;
  box-shadow: none;
  font-size: 15px;
}
.sidebar .sidebar-menu .menu-icon-height {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  color: #ff6a00;
  border-radius: 509px;
  background: linear-gradient(90deg, #ffd9bc 0%, #ffffff00 100%);
  padding-left: 4px;
}
.sidebar .sidebar-menu .menu-icon-height .menu-title {
  font-weight: 500;
}
.sidebar .sidebar-menu .menu-custom-item {
  color: #222;
  font-size: 12px;
}
.sidebar .sidebar-menu .menu-custom-item .title-container {
  margin-right: 4px;
}
.sidebar .sidebar-menu .menu-custom-item .menu-title {
  font-weight: 500;
}
.sidebar .sidebar-menu .menu-custom-item.rc-menu-item-selected {
  color: #ff6a00;
}
.sidebar .sidebar-menu .menu-custom-item.rc-menu-item-selected .title-container {
  background: #f9f9f9;
}
.sidebar .sidebar-menu .menu-custom-item.rc-menu-item-active .title-container:hover {
  background: #f9f9f9;
  color: #ff6a00 !important;
}
.sidebar .sidebar-menu .menu-custom-item.menu-home-page {
  font-size: 14px;
}
.sidebar .rc-menu-item,
.sidebar .rc-menu-submenu-title {
  margin-left: 4px;
  padding-left: 0px !important;
  color: #666;
  background: #f9f9f9;
  cursor: pointer;
}
.sidebar .rc-menu-item .menu-title-gray,
.sidebar .rc-menu-submenu-title .menu-title-gray {
  color: #999999;
}
.sidebar .rc-menu-submenu .rc-menu {
  background: #f9f9f9;
}
.sidebar .rc-menu-submenu .rc-menu-inline {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 10px;
}
.sidebar .rc-menu-submenu .rc-menu-inline.rc-menu-hidden {
  display: none;
}
.sidebar .rc-menu-sub .rc-menu-item {
  min-width: 72px;
  font-size: 12px;
  padding: 0 !important;
  margin: 4px 0 !important;
  border-radius: 4px;
  box-sizing: border-box;
}
.sidebar .rc-menu-sub .rc-menu-item .title-container {
  border-radius: 4px;
  padding: 2px 4px !important;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}
.sidebar .rc-menu-vertical > .rc-menu-item,
.sidebar .rc-menu-vertical-left > .rc-menu-item,
.sidebar .rc-menu-vertical-right > .rc-menu-item,
.sidebar .rc-menu-inline > .rc-menu-item,
.sidebar .rc-menu-vertical > .rc-menu-submenu > .rc-menu-submenu-title,
.sidebar .rc-menu-vertical-left > .rc-menu-submenu > .rc-menu-submenu-title,
.sidebar .rc-menu-vertical-right > .rc-menu-submenu > .rc-menu-submenu-title,
.sidebar .rc-menu-inline > .rc-menu-submenu > .rc-menu-submenu-title {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}
.sidebar .sidebar-secondary-submenu {
  width: 100%;
}
.sidebar .sidebar-secondary-submenu .pre-icon {
  display: none;
}
.sidebar .sidebar-secondary-submenu.sidebar-secondary-submenu-disabled .rc-menu-submenu-title {
  display: none;
}
.sidebar .sidebar-secondary-submenu.rc-menu-submenu-disabled {
  cursor: default;
}
.sidebar .sidebar-secondary-submenu.rc-menu-submenu-disabled .rc-menu-submenu-title {
  cursor: default;
  color: #222;
  font-size: 12px;
  font-weight: 600;
  padding-top: 6px;
  padding-bottom: 6px;
}
.sidebar .sidebar-secondary-submenu.rc-menu-submenu-disabled .rc-menu-submenu-title:hover {
  background: transparent;
}
.sidebar .rc-menu-submenu-open {
  background: #f9f9f9;
}
.sidebar .rc-menu-item-active,
.sidebar .rc-menu-submenu-active > .rc-menu-item {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}
.sidebar .rc-menu-item-active .title-container:hover,
.sidebar .rc-menu-submenu-active > .rc-menu-item .title-container:hover {
  background-color: #ff6a0019;
  color: #ff6a00;
  font-weight: 500;
}
.sidebar .rc-menu-item-active .pre-icon,
.sidebar .rc-menu-submenu-active > .rc-menu-item .pre-icon {
  color: #666;
}
.sidebar .rc-menu-item-selected {
  font-weight: 500;
  color: #ff6a00;
  border-radius: 4px;
}
.sidebar .rc-menu-item-selected .title-container {
  background: #ff6a0019;
}
.sidebar .roo-badge-wrap {
  float: right;
  top: 50%;
  right: 10px;
}
.sidebar .pre-icon {
  font-size: 16px;
  color: #999999;
  margin-right: 8px;
}
.sidebar .menu-icon-img {
  width: 20px;
  height: 20px;
  margin-right: 8px;
}
.sidebar .badge-container {
  width: 70px;
}
.sidebar .badge-img {
  margin-top: -2px;
  height: 10px;
  width: 12px;
}
.sidebar .GXTBadgeDefault {
  padding: 0 4px;
  line-height: 18px;
  background-color: #eeeeee;
  font-size: 12px;
  color: #6c6c6c;
  border-radius: 1000px;
  float: left;
  margin-left: 4px;
}
.sidebar .GXTBadgeAdvanceTemp {
  background-color: #222;
  color: #ffffff;
}
.sidebar .GXTBadgeAdvance {
  background-color: #222;
  color: #ead7ae;
}
.sidebar .badgeSpan {
  position: relative;
  left: -4px;
  top: -10px;
  line-height: 16px;
  font-weight: 400;
  padding: 0 4px;
  background-color: #ff192d;
  font-size: 10px;
  color: #fff;
  min-width: 20px;
  border-radius: 1000px;
  border-bottom-left-radius: 0;
}
.sidebar .newSpan {
  float: right;
  margin-right: 19px;
  margin-bottom: 12px;
  padding: 0 4px;
  min-width: 20px;
  line-height: 18px;
  font-size: 12px;
  background-color: #ff192d;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 1000px;
}
.sidebar .arrow-icon {
  position: absolute;
  right: 4px;
  top: 16px;
}
.sidebar .add-to-common-btn {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  left: 2px;
  border: none;
  background: none;
  cursor: pointer;
}
.sidebar .add-to-common-btn .add-icon {
  width: 12px;
  height: 12px;
}
.sidebar .add-to-common-btn.added .add-icon,
.sidebar .add-to-common-btn.disabled .add-icon {
  opacity: 0.4;
}
.sidebar.collapsed {
  width: 72px;
  transition: all 0.3s ease;
}
.sidebar.collapsed .sidebar-menu {
  position: absolute;
  z-index: -1000;
  display: none;
  width: 72px;
}
.sidebar.collapsed.hovered {
  overflow: visible;
}
.sidebar.collapsed.hovered .sidebar-menu {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 220px;
  transition: width 0.3s ease;
  z-index: 999;
  box-shadow: 2px 0 8px rgba(0, 0, 0, 0.1);
  border-radius: 0 8px 8px 0;
  background-color: #f9f9f9;
  padding: 8px 20px 0px;
  height: calc(100vh - 70px);
  overflow-y: auto;
}
.sidebar.collapsed.hovered .collapse-button {
  height: 50px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.sidebar .collapse-button {
  position: sticky;
  bottom: 0;
  background-color: #f9f9f9;
  border-top: #ebebeb solid 1px;
  width: 100%;
  height: 50px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  grid-gap: 12px;
  gap: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 1000;
}
.sidebar .collapse-button img {
  width: 20px;
  height: 20px;
}
.sidebar .collapse-button .collapse-text {
  font-size: 14px;
  color: #222;
  white-space: nowrap;
}
.sidebar .menu-fold {
  background: #f9f9f9;
  border-radius: 8px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-align: center;
      align-items: center;
  grid-gap: 8px;
  gap: 8px;
  color: #999;
  font-size: 14px;
  -ms-flex-positive: 1;
      flex-grow: 1;
}
.sidebar .menu-fold img {
  width: 28px;
  height: 28px;
}

.yyfe-react-render .react-draggable {
  right: 35px !important;
}

.status-mask {
  position: relative;
}
.status-mask .mask {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 7;
}
.status-mask .mask-loading {
  background-color: rgba(255, 255, 255);
}
.status-mask .center,
.status-mask .empty {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.data-analysis-card {
  cursor: pointer;
  position: relative;
  height: 132px;
  background: #ffffff;
  border-radius: 4px;
  padding: 12px;
  border: 1px solid #eeeeee;
}
.data-analysis-card .hanr {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}
.data-analysis-card .hanr .coarse {
  color: #222222;
  font-family: PingFang SC;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
}
.data-analysis-card .hanr .roo-icon {
  width: 12px;
  height: 12px;
  color: #999696;
}
.data-analysis-card .hanr a.up {
  width: 18px;
  height: 16px;
  font-family: MicrosoftYaHei;
  font-size: 12px;
  color: #f76c6c;
  text-align: justify;
  line-height: 16px;
  text-decoration: none;
}
.data-analysis-card .hanr a.down {
  width: 18px;
  height: 16px;
  font-family: MicrosoftYaHei;
  font-size: 12px;
  color: #00bf7f;
  text-align: justify;
  line-height: 16px;
  text-decoration: none;
}
.data-analysis-card .hanr-main {
  font-weight: 700;
  color: #222222;
  font-family: HelveticaNeue-Bold;
  font-size: 30px;
  height: 36px;
  line-height: 36px;
  margin-top: 4px;
}
.data-analysis-card .hanr-main .front-aitimes {
  padding-right: 4px;
  font-size: 16px;
  line-height: 36px;
}
.data-analysis-card .hanr-main .aitimes {
  font-size: 16px;
  color: #474646;
  padding: 0px 0px 0px 5px;
}
.data-analysis-card .hanr-bottom {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
.data-analysis-card .hanr-bottom .hanr-bottom-quota {
  color: #999999;
  font-family: PingFang SC;
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  margin-top: 4px;
}
.data-analysis-card .hanr-bottom .hanr-bottom-table {
  width: 70px;
}
.data-analysis-card .card-arrow {
  position: absolute;
  bottom: -3px;
  background: #fffcf5;
  left: 50%;
  margin-left: -6px;
  width: 12px;
  height: 12px;
  -webkit-transform: rotate(45deg) translateX(50%);
      -ms-transform: rotate(45deg) translateX(50%);
          transform: rotate(45deg) translateX(50%);
  border-bottom: 1px solid #ffc61a;
  border-right: 1px solid #ffc61a;
  border-bottom-right-radius: 2px;
}
.data-analysis-card-activate {
  background: #fffcf5;
  border: 1px solid #ffc61a;
}

.show-title {
  margin-right: 8px;
}
.show-num {
  width: 18px;
  height: 16px;
  font-family: MicrosoftYaHei;
  font-size: 14px;
  text-align: justify;
  line-height: 16px;
  text-decoration: none;
  font-weight: bolder;
}
.show-num .up {
  color: #FF192D;
}
.show-num .down {
  color: #00BF7F;
}
.show-num .icon-tend {
  margin-right: 2px;
  width: 8px;
  height: 10px;
}

.data-bar {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 12px;
}
.data-bar .data-bar-wrap {
  -ms-flex: 0 1 calc(25% - 8px);
      flex: 0 1 calc(25% - 8px);
}
@media (max-width: 1440px) {
  .data-bar .data-bar-wrap {
    -ms-flex: 0 1 calc(50% - 6px);
        flex: 0 1 calc(50% - 6px);
    /* 项目宽度调整为50% */
    margin-bottom: 12px;
  }
}

.trade-empty {
  height: 411px;
  position: relative;
}
.trade-empty .trade-empty-img-left {
  background-image: url(//awp-assets.meituan.net/set/online_shangou_medicine_brand/images/background-left-32bf40b532.png);
  width: 100%;
  height: 100%;
  background-size: 100% 100%;
}
.trade-empty .trade-empty-img-right {
  position: absolute;
  background-image: url(//awp-assets.meituan.net/set/online_shangou_medicine_brand/images/background-right-be2ef234a3.png);
  width: 354px;
  height: 177px;
  right: 0;
  top: 0;
  background-size: 100% 100%;
}
.trade-empty .trade-empty-img-lightning {
  position: absolute;
  background-image: url(//awp-assets.meituan.net/set/online_shangou_medicine_brand/images/img-lightning-277cee3c68.png);
  width: 250px;
  height: 200px;
  left: -82px;
  top: -66px;
  background-size: 100% 100%;
}
.trade-empty .trade-empty-header-bar {
  position: absolute;
  width: 100%;
  top: 0;
  padding: 45px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
}
.trade-empty .trade-empty-header-bar .trade-empty-img-title {
  background-image: url(//awp-assets.meituan.net/set/online_shangou_medicine_brand/images/background-title-f071667c2e.png);
  background-size: 100% 100%;
  width: 531px;
  height: 34px;
}
.trade-empty .trade-empty-header-bar .trade-empty-header-subtitle {
  margin-top: 3px;
  color: #666666;
  font-family: PingFang SC;
  font-weight: 400;
  font-size: 14px;
}
.trade-empty .trade-empty-bottom-wrap {
  position: absolute;
  width: calc(100% - 22px);
  height: 252px;
  bottom: 11px;
  margin: 0 11px 0;
  border-radius: 8px;
  background: #ffffff;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-align: center;
      align-items: center;
}
.trade-empty .trade-empty-bottom-wrap .trade-empty-bottom {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  width: 100%;
}
.trade-empty .trade-empty-bottom-wrap .trade-empty-bottom .step-item {
  width: 120px;
  padding-top: 10px;
}
.trade-empty .trade-empty-bottom-wrap .trade-empty-bottom .step-item .step-item-icon {
  width: 70px;
  height: 70px;
}
.trade-empty .trade-empty-bottom-wrap .trade-empty-bottom .step-item .step-item-title {
  color: #222222;
  font-family: PingFang SC;
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
}
.trade-empty .trade-empty-bottom-wrap .trade-empty-bottom .step-item .step-item-desc {
  margin-top: 5px;
  color: #999999;
  font-family: PingFang SC;
  font-weight: 400;
  font-size: 12px;
}
.trade-empty .trade-empty-bottom-wrap .trade-empty-bottom .step-item-arrow {
  margin: 63px 5% auto 2%;
  width: 54px;
  height: 9px;
}
.trade-empty .trade-empty-bottom-wrap .trade-empty-btn {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  margin-top: 20px;
  height: 40px;
  width: 150px;
}
.trade-empty .trade-empty-bottom-wrap .trade-empty-btn .trade-empty-btn-text {
  font-size: 14px;
}
.trade-empty .trade-empty-bottom-wrap .trade-empty-btn .trade-empty-btn-icon {
  margin-left: 4px;
  width: 16px;
  height: 16px;
}

.home-card {
  background-color: #fff;
  border-radius: 8px;
  padding: 20px;
}
.home-card .header-card-header {
  margin-bottom: 20px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
.home-card .header-card-header .home-card-main-content {
  display: inline-block;
  font-weight: 600;
  color: #3D3D3D;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0px;
  text-align: left;
}
.home-card .header-card-header .home-card-sub-content {
  margin-left: 8px;
  display: inline-block;
  font-weight: 400;
  color: #999999;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0px;
  text-align: left;
}
.home-card .header-card-header .home-card-hightlight {
  cursor: pointer;
  color: #FF6A00;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0px;
  text-align: left;
}
.home-card .header-card-header .home-card-hightlight:hover {
  opacity: 0.7;
}
.home-card .header-card-header .home-card-btn-disable {
  color: #CCCCCC !important;
  cursor: not-allowed;
}
.home-card .home-card-btn-purview {
  margin-top: -4px;
}

.learning-warp {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
.learning-warp .learning-item-warp {
  margin-right: 12px;
  width: 33%;
}
.learning-warp .learning-item-warp .learning-item-img-box {
  cursor: pointer;
  position: relative;
  width: 100%;
  padding-top: 55.5%;
  /* 设定高度与宽度比例一致，此处约为 55.5/100 */
  overflow: hidden;
  /* 隐藏超出部分 */
}
.learning-warp .learning-item-warp .learning-item-img-box .learning-item-img {
  height: 100%;
  width: 100%;
  border-radius: 6px;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.learning-warp .learning-item-warp .learning-item-title {
  cursor: pointer;
  margin-top: 12px;
  color: #222222;
  font-family: PingFang SC;
  font-weight: 500;
  font-size: 14px;
  line-height: 16px;
}
.learning-warp .learning-item-warp .learning-item-sub-title {
  margin-top: 8px;
  color: #666666;
  font-family: PingFang SC;
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
}
.learning-warp .learning-item-warp:last-child {
  margin-right: 0;
}

.message-board-item {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
.message-board-item .message-board-item-left-container {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}
.message-board-item .message-board-item-icon {
  display: inline-block;
  background: #FF192D;
  border-radius: 3px;
  width: 6px;
  height: 6px;
}
.message-board-item .message-board-item-icon-read {
  background: #CCCCCC;
}
.message-board-item .message-board-item-text {
  width: 202px;
  cursor: pointer;
  display: inline-block;
  margin-left: 8px;
  color: #222222;
  font-size: 14px;
  line-height: 20px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.message-board-item .message-board-item-text:hover {
  opacity: 0.7;
}
.message-board-item .message-board-item-right-text {
  font-weight: 400;
  color: #999999;
  font-size: 12px;
  line-height: 20px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.wallet-board .wallet-board-main-img {
  background-image: url(//awp-assets.meituan.net/set/online_shangou_medicine_brand/images/walletBackground-be514a8a9e.png);
  background-size: 100% 100%;
}
.wallet-board .wallet-board-main {
  background-color: #f7f8fa;
  width: 270px;
  height: 160px;
  border-radius: 12px;
  margin-bottom: 16px;
  padding: 25px 20px 20px;
}
.wallet-board .wallet-board-main .wallet-board-main-amount {
  color: #222222;
  font-weight: bold;
  font-family: Helvetica Neue;
  font-size: 24px;
  line-height: 38px;
  margin-top: 2px;
}
.wallet-board .wallet-board-main .wallet-board-main-bottom {
  margin-top: 18px;
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
.wallet-board .wallet-board-main .wallet-board-main-bottom .wallet-board-main-bottom-right {
  min-width: 80px;
}
.wallet-board .wallet-board-main .wallet-board-main-bottom .wallet-board-main-subtitle {
  color: #3A3A3A;
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  margin-bottom: 2px;
}
.wallet-board .wallet-board-main .wallet-board-main-bottom .wallet-board-main-divide {
  position: absolute;
  left: 50%;
  height: 100%;
  width: 1px;
  background-color: #cccccc;
}
.wallet-board .wallet-board-btn-warp {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  margin-bottom: 20px;
}
.wallet-board .wallet-board-btn-warp .wallet-board-btn {
  width: 125px;
}
.wallet-board .wallet-board-text {
  font-family: PingFang SC;
  color: #222222;
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  text-align: left;
  -webkit-text-decoration: NONE;
          text-decoration: NONE;
}
.wallet-board .wallet-board-text-money {
  color: #222222;
  font-family: Helvetica Neue;
  font-size: 14px;
  line-height: 18px;
  letter-spacing: 0px;
  text-align: left;
  -webkit-text-decoration: NONE;
          text-decoration: NONE;
}
.wallet-board .wallet-item-container {
  margin-top: 12px;
  overflow: hidden;
}
.wallet-board .wallet-item-container .wallet-item {
  margin-bottom: 8px;
  padding: 11px 20px;
  background-color: #F7F8FA;
  border-radius: 6px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
}
.wallet-board .wallet-item-container .wallet-item .wallet-item-left {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}
.wallet-board .wallet-item-container .wallet-item .wallet-item-left .wallet-item-icon {
  width: 18px;
  height: 18px;
  margin-right: 8px;
}
.wallet-board .wallet-item-container .wallet-item-child {
  margin: 8px 20px 8px 46px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
}
.wallet-board .wallet-item-container .wallet-item-child .wallet-item-child-name {
  color: #999999;
  font-family: PingFang SC;
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
}
.wallet-board .wallet-item-container .wallet-item-child:first-child {
  margin-top: 16px;
}
.wallet-board .wallet-item-container .wallet-item:last-child {
  margin-bottom: 0;
}

.home-v2 {
  display: -ms-flexbox;
  display: flex;
  width: 1030px;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.home-v2 .home-card-margin-bottom {
  margin-bottom: 12px;
}
.home-v2 .left-bar {
  -ms-flex: 1 1 auto;
      flex: 1 1 auto;
  width: calc(100% - 322px);
}
.home-v2 .right-bar {
  margin-left: 12px;
  width: 310px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.home-alert {
  margin: 0 0 10px 0 !important;
}
body ul {
  margin-bottom: 0;
}
@media (min-width: 1280px) {
  .home-v2 {
    width: 1030px;
  }
}
@media (min-width: 1280px) and (max-width: 1920px) {
  .home-v2 {
    width: 100%;
  }
}
@media (min-width: 1920px) {
  .home-v2 {
    margin: auto;
    width: 1678px;
  }
}

.login-wrap {
  text-align: center;
  padding-top: 100px;
}
.login-wrap #brandAdminLogin {
  width: 370px;
  height: 500px;
  margin-top: 30px;
}

.roo-pagination > .active > a,
.roo-pagination > .active > a:hover,
.roo-pagination > .active > a:focus,
.roo-pagination > .active > span,
.roo-pagination > .active > span:hover,
.roo-pagination > .active > span:focus {
  background-color: #222222;
  border-color: #222222;
}
.roo-pagination > li > a:hover,
.roo-pagination > li > a:focus,
.roo-pagination > li > span:hover,
.roo-pagination > li > span:focus {
  background-color: #222222;
  border-color: #222222;
}
.dropdown-item.active-highlight,
.roo-dropdown-menu a.active-highlight {
  color: #222222;
}
.roo-tabs-pointer {
  background: #222222;
}
.roo-tabs-line .tab-item.active a {
  font-weight: bold;
}
.roo-tabs-line .roo-tabs-container {
  background: #fff;
}
.roo-steps-vertical li.roo-steps-item.roo-steps-active .roo-steps-icon .roo-steps-icon-content {
  background-color: #222222;
}
.roo-steps-vertical li.roo-steps-item.roo-steps-finish .roo-steps-icon .roo-steps-icon-content,
.roo-steps-vertical li.roo-steps-item.roo-steps-active .roo-steps-icon .roo-steps-icon-content {
  border-color: #222222;
}
.roo-steps-vertical li.roo-steps-item.roo-steps-active .roo-steps-item-content .roo-steps-title {
  color: #222222;
  font-weight: 500;
}
.roo-checkbox input:checked + .custom-checkbox {
  background-color: #222222;
  border-color: #222222 !important;
}
.roo-switch input[type="checkbox"]:checked ~ .roo-switch-checkbox {
  background: #222222;
}
.loading-box .loading-tip {
  color: #222222;
  font-weight: bold;
  font-size: 14px;
}
.backdrop {
  background: rgba(255, 255, 255, 0.9);
}
.loading-icon .loading-item0::after,
.loading-icon .loading-item1::after {
  border-top-color: #222222;
}
@font-face {
  font-family: "roo-icon";
  src: url(//awp-assets.meituan.net/set/online_shangou_medicine_brand/fonts/iconfont-024ff7cef5.eot);
  /* IE9*/
  src: url(//awp-assets.meituan.net/set/online_shangou_medicine_brand/fonts/iconfont-024ff7cef5.eot#iefix) format('embedded-opentype'),  url(//awp-assets.meituan.net/set/online_shangou_medicine_brand/fonts/iconfont-bc822db72a.woff) format('woff'),  url(//awp-assets.meituan.net/set/online_shangou_medicine_brand/fonts/iconfont-7e00e04d35.ttf) format('truetype'),  url(//awp-assets.meituan.net/set/online_shangou_medicine_brand/images/iconfont-72596da1db.svg#iconfont) format('svg');
  /* iOS 4.1- */
}
.roo-icon-shop-cart:before {
  content: "\e000";
}
/* 购物车*/
.roo-icon-order:before {
  content: "\e001";
}
/* 订单*/
.roo-icon-pieces-of-cargo:before {
  content: "\e002";
}
/* 商品件数*/
.roo-icon-customer:before {
  content: "\e003";
}
/* 用户*/
.roo-icon-aggregate-amount:before {
  content: "\e004";
}
/* 金额*/
* {
  margin: 0;
  padding: 0;
}
html {
  height: 100%;
}
body {
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  background-color: #f9f9f9;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* rsuite 会覆盖 normalize.css 的 ul 样式 */
}
body ul,
body ol {
  margin-bottom: 0;
}
.app-root {
  height: 100%;
  background: #f9f9f9;
}
.header {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  padding: 0 20px;
  height: 60px;
  background: #f9f9f9;
  z-index: 1;
}
.header .header-title {
  -ms-flex: 1;
      flex: 1;
  color: #333333;
}
.header .header-logo {
  cursor: pointer;
  height: 24px;
}
.header .notice-icon {
  position: relative;
  display: inline-block;
  padding: 0 5px;
  margin-left: 5px;
  cursor: pointer;
}
.header .notice-icon .icon-lingdang2-svg {
  font-size: 16px;
  color: #999;
}
.header .notice-icon .notice-num {
  position: absolute;
  top: 0;
  right: 0;
  -webkit-transform: translate(50%, -50%);
      -ms-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
  padding: 0 4px;
  background-color: red;
  border-radius: 10px;
  border: 1px solid #fff;
  font-size: 12px;
  color: #fff;
}
.header .notice-icon-top {
  top: 3px;
}
.header .dropmenu-item {
  display: inline-block;
}
.header .header-operation {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  text-align: right;
}
.main {
  display: -ms-flexbox;
  display: flex;
}
.main .main-content {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex: 1;
      flex: 1;
  padding: 0 20px 20px 0;
  height: calc(100vh - 60px);
  overflow-y: auto;
}
.main .main-content .empty-container {
  background: #fff;
}
.main .app-body {
  text-align: center;
}
.main .app-intro {
  margin-top: 20px;
  color: #888;
}
.main .app-logo {
  width: 150px;
}
.main .app-title {
  color: #666;
}
.sidebar {
  width: 210px;
  background: #f9f9f9;
}
.commonNoCopy {
  user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}
.roo-table-header {
  overflow: hidden !important;
}
.icon-colorful {
  width: 12px;
  height: 12px;
  vertical-align: -0.15em;
  /* 调整纵轴位置，方便对齐 */
  fill: currentColor;
  overflow: hidden;
}
.boc-ui-roo-tooltip-permission .roo-icon::before {
  display: none;
}


/*# sourceMappingURL=//awp-assets.sankuai.com/set/online_shangou_medicine_brand/sourcemap/css/index.191aff83b92377e41530.css.map*/