@charset "UTF-8";.global-modal-mask {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.2s ease-in-out;
}

.global-modal {
  position: relative;
  width: 420px;
}

.global-modal-content {
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
}

.global-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 24px;
  height: 24px;
  border: none;
  background: none;
  cursor: pointer;
  color: #999;
  font-size: 20px;
  line-height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: all 0.2s ease;
  z-index: 1;
}
@media (hover: hover) {
  .global-modal-close:hover {
    background-color: #f5f5f5;
    color: #333;
  }
}
.global-modal-close:active {
  background-color: #e8e8e8;
}

.global-modal-header {
  padding: 20px 24px 16px;
  box-sizing: border-box;
  border-bottom: 1px solid #f0f0f0;
}

.global-modal-title {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  color: #262626;
  line-height: 1.4;
  padding-right: 40px;
  box-sizing: border-box;
}

.global-modal-body {
  padding: 20px 24px;
  box-sizing: border-box;
  color: #595959;
  font-size: 14px;
  line-height: 1.6;
  min-height: 40px;
}

.global-modal-footer {
  padding: 12px 24px 24px;
  box-sizing: border-box;
  text-align: right;
  display: flex;
  gap: 8px;
  justify-content: flex-end;
}

.global-modal-btn {
  min-width: 64px;
  height: 32px;
  padding: 0 16px;
  box-sizing: border-box;
  border-radius: 6px;
  border: 1px solid #d9d9d9;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
@media (hover: hover) {
  .global-modal-btn:hover {
    opacity: 0.8;
  }
}
.global-modal-btn:active {
  transform: translateY(1px);
}
.global-modal-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.global-modal-btn-cancel {
  background: #ffffff;
  color: #595959;
}
@media (hover: hover) {
  .global-modal-btn-cancel:hover {
    background: #fafafa;
  }
}

.global-modal-btn-primary {
  background: linear-gradient(65deg, #FE59FD 3%, #F202B0 26%, #5151FF 49%, #0E5BF2 72%, #1FCEEC 96%);
  color: #fff;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideIn {
  from {
    opacity: 0;
    transform: scale(0.7) translateY(-20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}
@media (max-width: 768px) {
  .global-modal {
    width: calc(100vw - 32px);
    max-width: none;
  }
  .global-modal-content {
    border-radius: 6px;
  }
  .global-modal-header {
    padding: 16px 20px 12px;
    box-sizing: border-box;
  }
  .global-modal-title {
    font-size: 15px;
    padding-right: 36px;
    box-sizing: border-box;
  }
  .global-modal-body {
    padding: 16px 20px;
    box-sizing: border-box;
    font-size: 14px;
  }
  .global-modal-footer {
    padding: 8px 20px 20px;
    box-sizing: border-box;
    flex-direction: column;
    gap: 8px;
  }
  .global-modal-footer .global-modal-btn {
    width: 100%;
    height: 40px;
    font-size: 14px;
  }
  .global-modal-close {
    top: -3px;
    right: 8px;
    width: 28px;
    height: 28px;
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .global-modal {
    width: calc(100vw - 24px);
  }
  .global-modal-header {
    padding: 12px 16px 8px;
    box-sizing: border-box;
  }
  .global-modal-title {
    font-size: 16px;
    padding-right: 32px;
    box-sizing: border-box;
  }
  .global-modal-body {
    padding: 12px 16px;
    box-sizing: border-box;
    font-size: 16px;
  }
  .global-modal-footer {
    padding: 6px 16px 16px;
    box-sizing: border-box;
  }
  .global-modal-footer .global-modal-btn {
    height: 36px;
    font-size: 16px;
  }
}
@media (hover: none) and (pointer: coarse) {
  .global-modal-btn {
    min-height: 44px;
  }
  .global-modal-btn:active {
    transform: scale(0.98);
    transition: transform 0.1s ease;
  }
  .global-modal-close {
    min-width: 44px;
    min-height: 44px;
  }
  .global-modal-close:active {
    transform: scale(0.95);
  }
}
@media (orientation: landscape) and (max-height: 600px) {
  .global-modal {
    max-height: 90vh;
  }
  .global-modal-body {
    max-height: calc(90vh - 160px);
    overflow-y: auto;
  }
}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .global-modal-content {
    border: 0.5px solid rgba(0, 0, 0, 0.06);
  }
  .global-modal-header {
    border-bottom: 0.5px solid #f0f0f0;
  }
}
@media (prefers-color-scheme: dark) {
  .global-modal-mask {
    background-color: rgba(0, 0, 0, 0.7);
  }
  .global-modal-content {
    background: #1f1f1f;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  }
  .global-modal-title {
    color: #ffffff;
  }
  .global-modal-body {
    color: #d9d9d9;
  }
  .global-modal-header {
    border-bottom-color: #303030;
  }
  .global-modal-close {
    color: #aaa;
  }
}
@media (prefers-color-scheme: dark) and (hover: hover) {
  .global-modal-close:hover {
    background-color: #333;
    color: #fff;
  }
}
@media (prefers-color-scheme: dark) {
  .global-modal-close:active {
    background-color: #444;
  }
  .global-modal-btn-cancel {
    background: #333;
    border-color: #555;
    color: #d9d9d9;
  }
}
@media (prefers-color-scheme: dark) and (hover: hover) {
  .global-modal-btn-cancel:hover {
    background: #444;
    border-color: #FDC959;
    color: #FDC959;
  }
}
@media (prefers-color-scheme: dark) {
  .global-modal-btn-primary {
    background: #FDC959;
    border-color: #FDC959;
  }
}
@media (prefers-color-scheme: dark) and (hover: hover) {
  .global-modal-btn-primary:hover {
    background: #FDC959;
    border-color: #FDC959;
  }
}
@media (prefers-color-scheme: dark) {
  .global-modal-btn-primary:active {
    background: #FDC959;
    border-color: #FDC959;
  }
}.challenge-banner {
  width: 100%;
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 24px;
  box-sizing: border-box;
  background: linear-gradient(88deg, #fe59fd 0%, #f202b0 24%, #5151ff 54%, #0e5bf2 74%, #1fceec 99%);
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  text-decoration: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}
.challenge-banner:focus, .challenge-banner:active, .challenge-banner:visited {
  color: #fff;
}
@media (hover: hover) {
  .challenge-banner:hover {
    color: #fff;
  }
}
@media (hover: hover) {
  .challenge-banner:hover {
    opacity: 0.92;
  }
}
.challenge-banner .anticon {
  flex-shrink: 0;
  font-size: 14px;
}

.challenge-banner-highlight {
  background: linear-gradient(90deg, #FFF3B0 0%, #FFD029 52%, #FFA800 100%);
  background-clip: text;
  -webkit-background-clip: text;
  font-weight: 800;
  -webkit-text-fill-color: transparent;
}

.challenge-banner-action {
  margin-left: 14px;
}

@media screen and (max-width: 768px) {
  .challenge-banner {
    min-height: 72px;
    padding: 16px 20px;
    font-size: 18px;
  }
  .challenge-banner-action {
    margin-left: 10px;
  }
}
.layout-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 40px 0;
  box-sizing: border-box;
  font-size: 16px;
  color: #222;
  margin-top: auto;
  background: #FAFAFA;
}
.layout-footer p {
  margin: 2px 0;
}
.layout-footer a {
  color: #222;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 1.6;
  text-align: center;
}
.footer-content a {
  text-decoration: underline;
  text-underline-offset: 5px;
}
@media (hover: hover) {
  .footer-content a:hover {
    color: #444;
  }
}

.footer-service-line {
  font-weight: 700;
  color: #222;
}

.footer-slogan {
  color: #666;
}

.footer-legal-line {
  color: #222;
}

.foot-gap-line {
  border-left: 1px solid #ccc;
  margin: 3px 10px 0 10px;
  display: inline-block;
  height: 20px;
  vertical-align: top;
}
.foot-gap-line a {
  text-underline-offset: 3px;
}

@media screen and (max-width: 1024px) {
  .layout-footer {
    text-align: center;
    padding: 15px 10px;
    box-sizing: border-box;
  }
}
@media screen and (max-width: 767px) {
  .layout-footer {
    font-size: 12px;
    color: #888;
  }
  .layout-footer a {
    color: #888;
  }
  /* .footer-content 自己声明了 font-size: 16px，会盖过从 .layout-footer 继承来的值，
     所以小屏字号必须在这里显式改它，只改 .layout-footer 是不生效的 */
  .footer-content {
    font-size: 13px;
    line-height: 1.5;
  }
  /* 分隔线在小屏上按字号等比收一档 */
  .foot-gap-line {
    height: 16px;
    margin: 2px 8px 0 8px;
  }
}
@media screen and (max-width: 480px) {
  .layout-footer {
    padding: 15px 20px;
    box-sizing: border-box;
    font-size: 12px;
    font-weight: normal;
    line-height: 18px;
  }
  .layout-footer p {
    margin: 0;
  }
  .footer-content {
    font-size: 12px;
    line-height: 18px;
  }
  .foot-gap-line {
    height: 14px;
    margin: 2px 6px 0 6px;
  }
}.base-input-area {
  position: relative;
  padding: 15px 20px 15px 20px;
  box-sizing: border-box;
  border-radius: 20px;
  border: 1px solid #DDE2E9;
  background: #fff;
}
.base-input-area .attachment-preview-area {
  margin-bottom: 10px;
}
.base-input-area .attachment-preview-area .ant-upload,
.base-input-area .attachment-preview-area .ant-upload-btn,
.base-input-area .attachment-preview-area .ant-upload-drag,
.base-input-area .attachment-preview-area .ant-attachment-drop-area,
.base-input-area .attachment-preview-area .ant-attachment-list-upload-btn,
.base-input-area .attachment-preview-area [class*=upload] {
  display: none !important;
}
.base-input-area .attachment-preview-area .ant-attachment .ant-attachment-list {
  padding-block: 0;
  box-sizing: border-box;
  padding-inline: 0;
}
.base-input-area.is-touch .attachment-preview-area .ant-attachment-list-card .ant-attachment-list-card-remove {
  display: block;
  opacity: 1;
  font-size: 16px;
  padding: 5px;
}
.base-input-area .base-input-top-slot {
  margin-bottom: 20px;
}
.base-input-area .base-input {
  width: 100%;
  border: none;
  outline: none;
  resize: none;
  font-size: 16px;
  margin-bottom: 0;
}
.base-input-area .base-input::placeholder {
  color: #999;
}
.base-input-area .base-input.ant-input {
  padding: 0;
  box-sizing: border-box;
}
.base-input-area .base-input:disabled, .base-input-area .base-input.ant-input-disabled {
  background: transparent;
  color: inherit;
  cursor: not-allowed;
}
@media (hover: hover) {
  .base-input-area .base-input:disabled:hover, .base-input-area .base-input.ant-input-disabled:hover {
    background: transparent;
  }
}
.base-input-area .base-input:disabled::placeholder, .base-input-area .base-input.ant-input-disabled::placeholder {
  color: #999;
}
.base-input-area .base-input:focus, .base-input-area .base-input:focus-within, .base-input-area .base-input.ant-input-focused {
  border: none;
  outline: none;
  box-shadow: none;
}
.base-input-area .base-input textarea {
  border: none;
  outline: none;
  box-shadow: none;
}
.base-input-area .base-input textarea:focus, .base-input-area .base-input textarea:focus-within {
  border: none;
  outline: none;
  box-shadow: none;
}
.base-input-area .base-input .ant-input-affix-wrapper:focus,
.base-input-area .base-input .ant-input-affix-wrapper-focused {
  border-color: #d9d9d9;
  box-shadow: none;
  outline: none;
}
.base-input-area .base-input-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  box-sizing: border-box;
  gap: 12px;
}
.base-input-area .control-buttons {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  margin-left: auto;
  gap: 20px;
}
.base-input-area .left-control-buttons {
  display: flex;
  align-items: center;
  flex: 0 1 auto;
  min-width: 0;
  gap: 20px;
}

.control-btn {
  width: 40px;
  height: 40px;
  background-color: transparent;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}
.control-btn:disabled {
  cursor: not-allowed;
}
@media (hover: hover) {
  .control-btn:hover {
    background: #EAEEF7;
  }
}
.control-btn.active {
  background: #1890ff;
  color: white;
}

.control-btn-icon {
  font-size: 30px;
}

.send-btn {
  cursor: pointer;
  border-radius: 12px;
  width: 60px;
  background: linear-gradient(65deg, #FE59FD 3%, #F202B0 26%, #5151FF 49%, #0E5BF2 72%, #1FCEEC 96%);
}
@media (hover: hover) {
  .send-btn:hover {
    opacity: 0.8;
    background: linear-gradient(65deg, #FE59FD 3%, #F202B0 26%, #5151FF 49%, #0E5BF2 72%, #1FCEEC 96%);
  }
}
.send-btn[disabled] {
  opacity: 0.5;
}
.send-btn .send-btn-loading {
  color: #fff;
  font-size: 20px;
}.quick-search-tabs {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.quick-search-tab-active-label {
  margin: 0;
  text-align: center;
  color: #171923;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
}

.quick-search-tab {
  padding: 12px 21px;
  box-sizing: border-box;
  font-size: 16px;
  background: #FFF;
  border: 1px solid #E2E2E2;
  border-radius: 151px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 6px;
}
.quick-search-tab .quick-search-tab-icon {
  width: 18px;
  height: 16px;
  flex: none;
  filter: brightness(0);
  transition: none;
}
.quick-search-tab.active .quick-search-tab-icon {
  filter: brightness(0) invert(1);
}
@media (hover: hover) {
  .quick-search-tab:hover {
    border-color: #5949EB;
    color: #5949EB;
  }
  .quick-search-tab:hover .quick-search-tab-icon {
    filter: brightness(0) saturate(100%) invert(34%) sepia(88%) saturate(2960%) hue-rotate(235deg) brightness(94%) contrast(96%);
  }
}
.quick-search-tab.active {
  background: linear-gradient(135deg, #A875F7 0%, #7D35EE 55%, #5E18D8 100%);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 4px 14px rgba(98, 84, 254, 0.16);
}
@media (hover: hover) {
  .quick-search-tab.active:hover .quick-search-tab-icon {
    filter: brightness(0) invert(1);
  }
}.config-trigger-area {
  display: flex;
  align-items: center;
  min-width: 0;
  padding: 4px 12px;
  box-sizing: border-box;
  background: #F8F7FF;
  border-radius: 10px;
  border: 1px solid #ECE8F4;
  gap: 8px;
  transition: all 0.2s;
  cursor: pointer;
}
@media (hover: hover) {
  .config-trigger-area:hover {
    background: rgba(124, 58, 237, 0.08);
    border-color: #DDD6FE;
  }
}
.config-trigger-area .selected-region-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}
.config-trigger-area .selected-region-icon img {
  width: 24px;
  height: 18px;
  object-fit: cover;
  border-radius: 3px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}
.config-trigger-area .selected-region-icon .region-flag-emoji {
  font-size: 18px;
  line-height: 18px;
  display: block;
  width: 24px;
  height: 18px;
  text-align: center;
}
.config-trigger-area .selected-datasource-box {
  display: block;
  flex: 0 1 auto;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 3px 8px;
  box-sizing: border-box;
  background: rgba(124, 58, 237, 0.1);
  border-radius: 8px;
  line-height: 16px;
  color: #7C3AED;
}
.config-trigger-area .selected-datasource-box .selected-datasource-icon {
  display: inline-block;
  vertical-align: middle;
}
.config-trigger-area .selected-datasource-box .selected-datasource-icon + .config-trigger-area .selected-datasource-box .selected-datasource-icon {
  margin-left: 3px;
}
.config-trigger-area .selected-datasource-box .selected-datasource-icon img {
  display: block;
  width: 16px;
  height: 16px;
  object-fit: contain;
}
.config-trigger-area .config-edit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  margin-left: 4px;
}
.config-trigger-area .config-edit-btn .dropdown-icon {
  font-size: 12px;
  color: #7C3AED;
}.session-config-modal {
  max-width: calc(100vw - 24px);
}
.session-config-modal .ant-modal-header {
  border-bottom: none;
  padding: 0;
  box-sizing: border-box;
  display: none;
}
.session-config-modal .ant-modal-content {
  border-radius: 16px;
  padding: 0;
  box-sizing: border-box;
  box-shadow: 0 8px 32px rgba(124, 58, 237, 0.15);
}
.session-config-modal .ant-modal-body {
  padding: 0;
  box-sizing: border-box;
}
.session-config-modal .ant-modal-close {
  top: 16px;
  right: 20px;
}
.session-config-modal .ant-modal-close .ant-modal-close-x {
  font-size: 18px;
  color: #999;
}

.session-config-content {
  padding: 22px;
  box-sizing: border-box;
}
.session-config-content .config-error-msg {
  color: #E53935;
  font-size: 13px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.session-config-content .config-header {
  margin-bottom: 20px;
}
.session-config-content .config-header .config-title {
  font-size: 24px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 8px;
}
.session-config-content .config-header .config-subtitle {
  font-size: 15px;
  color: #666;
  line-height: 1.5;
}
.session-config-content .config-divider {
  height: 1px;
  background: #E8EBF0;
  margin: 24px 0;
}
.session-config-content .config-section {
  margin-bottom: 20px;
}
.session-config-content .config-section:last-of-type {
  margin-bottom: 24px;
}
.session-config-content .config-section .section-title {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.session-config-content .config-section .section-title .section-icon {
  font-size: 18px;
  color: #7C3AED;
}
.session-config-content .region-list {
  display: flex;
  gap: 8px;
}
.session-config-content .region-list .region-item {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 12px 6px;
  box-sizing: border-box;
  border-radius: 12px;
  background: #f8f7ff;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 2px solid transparent;
}
@media (hover: hover) {
  .session-config-content .region-list .region-item:hover {
    background: rgba(124, 58, 237, 0.08);
    transform: translateY(-1px);
  }
}
.session-config-content .region-list .region-item img {
  width: 40px;
  height: 30px;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.session-config-content .region-list .region-item .region-flag-emoji {
  font-size: 35px;
  line-height: 30px;
  display: block;
  width: 40px;
  height: 30px;
  text-align: center;
}
.session-config-content .region-list .region-item .region-label {
  font-size: 12px;
  color: #555;
  font-weight: 500;
  text-align: center;
}
.session-config-content .region-list .region-item.region-item-active {
  background: rgba(124, 58, 237, 0.1);
  border-color: #7C3AED;
}
.session-config-content .region-list .region-item.region-item-active .region-label {
  color: #7C3AED;
  font-weight: 600;
}
.session-config-content .datasource-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  min-height: 102px;
  align-content: flex-start;
}
.session-config-content .datasource-grid .datasource-image-container {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 10px 38px 10px 12px;
  box-sizing: border-box;
  background: #fff;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.session-config-content .datasource-grid .datasource-image-container img {
  width: 24px;
  height: 24px;
}
@media (hover: hover) {
  .session-config-content .datasource-grid .datasource-image-container:hover {
    transform: translateY(-1px);
    background: #fafafa;
    border-color: #d8d3e8;
    box-shadow: 0 2px 8px rgba(17, 24, 39, 0.04);
  }
}
.session-config-content .datasource-grid .datasource-image-container .datasource-icon-img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}
.session-config-content .datasource-grid .datasource-image-container .datasource-name {
  min-width: 0;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 13px;
  color: #374151;
  font-weight: 500;
}
.session-config-content .datasource-grid .datasource-image-container.datasource-selected {
  background: #fbfaff;
  border-color: #9f7aea;
  box-shadow: 0 0 0 2px rgba(124, 58, 237, 0.08);
}
.session-config-content .datasource-grid .datasource-compare-add {
  position: absolute;
  top: 50%;
  right: 13px;
  transform: translateY(-50%);
  z-index: 2;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1.5px solid #cbd5e1;
  background: #fff;
  color: transparent;
  font-size: 0;
  line-height: 0;
  cursor: pointer;
  opacity: 1;
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: none;
}
@media (hover: hover) {
  .session-config-content .datasource-grid .datasource-image-container:hover .datasource-compare-add:not(.added) {
    border-color: #8b5cf6;
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.08);
  }
}
@media (hover: hover) {
  .session-config-content .datasource-grid .datasource-compare-add:hover {
    border-color: #8b5cf6;
  }
}
.session-config-content .datasource-grid .datasource-compare-add.added {
  border-color: #8b5cf6;
  background: #8b5cf6;
}
.session-config-content .datasource-grid .datasource-compare-add.added::after {
  content: "";
  width: 4px;
  height: 8px;
  margin-top: -2px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
@media (hover: hover) {
  .session-config-content .datasource-grid .datasource-compare-add.added:hover {
    background: #7c3aed;
    border-color: #7c3aed;
  }
}
.session-config-content .config-actions {
  padding-top: 10px;
  box-sizing: border-box;
  border-top: 1px solid #E8EBF0;
}
.session-config-content .config-actions .action-btns {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}
.session-config-content .config-actions .action-btn {
  height: 38px;
  padding: 0 18px;
  box-sizing: border-box;
  border-radius: 10px;
  font-size: 15px;
  line-height: 20px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}
.session-config-content .config-actions .cancel-btn {
  background: #fff;
  border: 1px solid #d9dde5;
  color: #263238;
}
@media (hover: hover) {
  .session-config-content .config-actions .cancel-btn:hover {
    border-color: #b8beca;
    background: #f5f5f5;
  }
}
.session-config-content .config-actions .confirm-btn {
  min-width: 100px;
  background: linear-gradient(83deg, #FE59FD 0%, #F202B0 24%, #5151FF 50%, #0E5BF2 74%, #1FCEEC 99%);
  border: 0;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 8px 18px rgba(123, 92, 255, 0.28);
}
@media (hover: hover) {
  .session-config-content .config-actions .confirm-btn:hover {
    background: linear-gradient(83deg, #FE59FD 0%, #F202B0 24%, #5151FF 50%, #0E5BF2 74%, #1FCEEC 99%);
    filter: brightness(0.96);
    box-shadow: 0 10px 22px rgba(123, 92, 255, 0.36);
  }
}
.session-config-content .config-actions .confirm-btn:active {
  transform: translateY(1px);
}
/*一行省略号*/
/*多行省略号(默认两行)*/
/*水平垂直居中 不固定宽高*/
/*animate*/
/*Scrollbar*/
/*更改svg图片颜色 父级样式要加overflow: hidden;*/
.quick-search-example-slot {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 80px;
  padding: 10px 20px;
  border: 1px solid rgba(168, 85, 247, 0.22);
  border-radius: 16px;
  background: rgba(250, 244, 255, 0.74);
  box-shadow: none;
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  text-align: left;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
@media (hover: hover) {
  .quick-search-example-slot:hover {
    border-color: rgba(138, 34, 255, 0.34);
    background: rgba(250, 244, 255, 0.9);
    box-shadow: 0 8px 18px rgba(98, 84, 254, 0.08);
    transform: translateY(-1px);
  }
  .quick-search-example-slot:hover .quick-search-example-arrow {
    transform: translateX(3px);
    color: #8a22ff;
  }
}
.quick-search-example-slot:active {
  transform: translateY(0);
}
.quick-search-example-slot:focus-visible {
  outline: 2px solid rgba(138, 34, 255, 0.28);
  outline-offset: 2px;
}

.quick-search-example-icon {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(168, 85, 247, 0.12);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 8px 18px rgba(126, 34, 206, 0.12);
  color: #8a22ff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  font-size: 18px;
}

.quick-search-example-copy {
  min-width: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.quick-search-example-label {
  display: inline-block;
  width: fit-content;
  max-width: 100%;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  color: #8a22ff;
  font-size: 14px;
  line-height: 18px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.quick-search-example-text {
  color: #0f172a;
  font-size: 16px;
  line-height: 24px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.quick-search-example-arrow {
  width: 32px;
  height: 32px;
  background: transparent;
  flex: none;
  color: #8a22ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: transform 0.2s ease, color 0.2s ease;
}
/*一行省略号*/
/*多行省略号(默认两行)*/
/*水平垂直居中 不固定宽高*/
/*animate*/
/*Scrollbar*/
/*更改svg图片颜色 父级样式要加overflow: hidden;*/
@keyframes quickSearchFadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.quick-search-section {
  position: relative;
  width: 100%;
  padding: 80px 0 80px;
  box-sizing: border-box;
}
.quick-search-section .quick-search-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
  /* 宽度交给使用方约束：首页由 .landing-sections 管，
     对话页的 Welcome 态由 .welcome-view .quick-search-section 的 max-width 管 */
  width: 100%;
}
.quick-search-section .quick-search-title {
  width: 100%;
  background: linear-gradient(90deg, #d200e8 0%, #8b1dff 50%, #4b4cff 100%);
  background-clip: text;
  color: transparent;
  font-size: 50px;
  font-weight: 800;
  line-height: 1.5;
  text-align: center;
  animation: quickSearchFadeUp 0.6s ease-out 0.1s both;
}
.quick-search-section .quick-search-subtitle {
  font-size: 20px;
  font-weight: 500;
  color: #888;
  text-align: center;
  line-height: 34px;
  margin-bottom: 40px;
  animation: quickSearchFadeUp 0.6s ease-out 0.2s both;
}
.quick-search-section .quick-search-tabs {
  animation: quickSearchFadeUp 0.6s ease-out 0.3s both;
}
.quick-search-section .quick-search-tab-active-label {
  animation: quickSearchFadeUp 0.6s ease-out 0.35s both;
}
.quick-search-section .quick-search-input {
  width: 100%;
  margin-bottom: 30px;
  animation: quickSearchFadeUp 0.6s ease-out 0.4s both;
}
.quick-search-section .quick-search-input .base-input-area {
  border: 1px solid transparent;
  background: linear-gradient(#fff, #fff) padding-box, linear-gradient(90deg, #F61EC9 0%, #5949EB 48%, #2657F6 80%, #1CBAED 100%) border-box;
  box-shadow: 0 4px 24px rgba(98, 84, 254, 0.15);
}
.quick-search-section .quick-search-cards {
  animation: quickSearchFadeUp 0.6s ease-out 0.5s both;
}

@media (max-width: 1440px) {
  .quick-search-section .quick-search-title {
    font-size: 44px;
  }
}
@media (max-width: 900px) {
  .quick-search-section .quick-search-title {
    font-size: 34px;
  }
  .quick-search-section .quick-search-subtitle {
    font-size: 20px;
    line-height: 30px;
  }
}
.why-section {
  width: 100%;
  background: transparent;
  box-sizing: border-box;
  position: relative;
  z-index: 1;
}
.why-section .why-content {
  /* 宽度由页面级的 .landing-sections 约束，这里只铺满 */
  width: 100%;
  display: block;
  text-align: left;
}
.why-section .why-feature-list {
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.why-section .why-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 0 36px;
  text-align: center;
}
.why-section .why-heading-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 34px;
  padding: 0 16px;
  border: 1px solid rgba(168, 85, 247, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 30px -20px rgba(126, 34, 206, 0.45);
  color: #3f3f46;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
}
.why-section .why-heading-badge .anticon {
  color: #a855f7;
  font-size: 16px;
}
.why-section .why-heading-badge strong {
  background: linear-gradient(90deg, #d946ef 0%, #6366f1 52%, #06b6d4 100%);
  background-clip: text;
  color: transparent;
  font-weight: 800;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.why-section .why-heading h2 {
  margin: 18px 0 0;
  color: #18181b;
  font-size: 42px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0;
}
.why-section .why-feature-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 1fr);
  min-height: 312px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.09);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 44px -30px rgba(15, 23, 42, 0.28);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
@media (hover: hover) {
  .why-section .why-feature-card:hover {
    border-color: rgba(15, 23, 42, 0.14);
    box-shadow: 0 18px 52px -30px rgba(15, 23, 42, 0.34);
    transform: translateY(-2px);
  }
}
.why-section .why-feature-card.is-reversed {
  grid-template-columns: minmax(380px, 1fr) minmax(0, 1fr);
}
.why-section .why-feature-card.is-reversed .why-copy {
  order: 2;
}
.why-section .why-feature-card.is-reversed .why-visual {
  order: 1;
}
.why-section .why-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 44px 52px;
}
.why-section .why-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 28px;
  padding: 0 12px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.why-section .why-label .anticon {
  font-size: 14px;
}
.why-section .why-feature-title {
  max-width: 520px;
  margin: 20px 0 0;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.2;
  color: #18181b;
}
.why-section .why-feature-desc {
  max-width: 520px;
  margin: 16px 0 0;
  font-size: 16px;
  line-height: 1.6;
  color: #52525b;
}
.why-section .why-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  margin-top: 28px;
  padding: 0 18px;
  border: none;
  border-radius: 999px;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
@media (hover: hover) {
  .why-section .why-action:hover {
    opacity: 0.9;
    transform: translateY(-1px);
  }
}
.why-section .why-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 36px 48px;
  background: transparent;
}
.why-section .why-visual-frame {
  width: min(100%, 450px);
  padding: 14px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 24px 64px -30px rgba(15, 23, 42, 0.32);
}
.why-section .why-visual-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 16px;
  object-fit: contain;
}
.why-section .why-tone-purple .why-label {
  background: #faf5ff;
  color: #7e22ce;
}
.why-section .why-tone-purple .why-action {
  background: linear-gradient(90deg, #d946ef 0%, #6366f1 100%);
}
.why-section .why-tone-blue .why-label {
  background: #eff6ff;
  color: #2563eb;
}
.why-section .why-tone-blue .why-action {
  background: linear-gradient(90deg, #2563eb 0%, #06b6d4 100%);
}
.why-section .why-tone-green .why-label {
  background: #ecfdf5;
  color: #059669;
}
.why-section .why-tone-green .why-action {
  background: linear-gradient(90deg, #10b981 0%, #14b8a6 100%);
}
.why-section .why-tone-orange .why-label {
  background: #fff1f2;
  color: #e11d48;
}
.why-section .why-tone-orange .why-action {
  background: linear-gradient(90deg, #f43f5e 0%, #f97316 100%);
}

@media (max-width: 1200px) {
  .why-section {
    /* 原来这里给 .why-content 设 calc(100% - 48px) 留窄屏边距，
       现在这件事由页面级 .landing-sections 的 max-width 统一负责 */
  }
  .why-section .why-feature-card,
  .why-section .why-feature-card.is-reversed {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 1fr);
  }
  .why-section .why-feature-card.is-reversed {
    grid-template-columns: minmax(320px, 1fr) minmax(0, 1fr);
  }
  .why-section .why-copy {
    padding: 40px;
  }
  .why-section .why-feature-title {
    font-size: 26px;
  }
  .why-section .why-heading h2 {
    font-size: 38px;
  }
  .why-section .why-feature-desc {
    font-size: 16px;
  }
}
@media (max-width: 900px) {
  .why-section {
    padding: 32px 0 64px;
  }
  .why-section .why-feature-list {
    gap: 24px;
  }
  .why-section .why-heading {
    margin-bottom: 28px;
  }
  .why-section .why-heading h2 {
    font-size: 28px;
  }
  .why-section .why-feature-card,
  .why-section .why-feature-card.is-reversed {
    grid-template-columns: 1fr;
  }
  .why-section .why-feature-card.is-reversed .why-copy,
  .why-section .why-feature-card.is-reversed .why-visual {
    order: initial;
  }
  .why-section .why-copy {
    padding: 32px 28px 24px;
  }
  .why-section .why-visual {
    padding: 24px 28px 32px;
  }
  .why-section .why-feature-title {
    font-size: 24px;
  }
}
.landing-dark .why-section .why-heading-badge {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(27, 27, 44, 0.72);
  color: #d8d5df;
}
.landing-dark .why-section .why-heading h2 {
  color: #fff;
}
.demo-section {
  width: 100%;
  padding: 80px 0;
  box-sizing: border-box;
}
.demo-section .demo-content {
  /* 宽度由页面级的 .landing-sections 约束，这里只铺满 */
  width: 100%;
  text-align: center;
}
.demo-section .demo-title {
  font-size: 48px;
  font-weight: bold;
  line-height: 64px;
  margin-bottom: 10px;
}
.demo-section .demo-subtitle {
  font-size: 18px;
  line-height: 28px;
  font-weight: normal;
  text-align: center;
  color: #888;
  margin-bottom: 40px;
}
.demo-section .demo-video-outer {
  background: rgba(255, 255, 255, 0.76);
  padding: 20px;
  box-sizing: border-box;
  border-radius: 16px;
  margin: 0 60px;
}
.demo-section .demo-video-wrapper {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 1040/585;
  position: relative;
}
.demo-section .demo-video-iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.solutions-role-section {
  width: 100%;
}
.solutions-role-section .solutions-role-content {
  /* 宽度由页面级的 .landing-sections 约束，这里只铺满 */
  width: 100%;
  text-align: center;
}
.solutions-role-section .solutions-role-title {
  font-size: 48px;
  font-weight: bold;
  line-height: 64px;
  margin-bottom: 10px;
}
.solutions-role-section .solutions-role-subtitle {
  font-size: 18px;
  font-weight: normal;
  line-height: 28px;
  color: #888;
  margin-bottom: 60px;
}
.solutions-role-section .solutions-role-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 50px;
  text-align: left;
}
.solutions-role-section .role-card {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 6;
}
.solutions-role-section .role-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  overflow: hidden;
}
.solutions-role-section .role-avatar img {
  margin-top: 10px;
}
.solutions-role-section .role-name {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
}
.solutions-role-section .role-subtitle {
  font-size: 20px;
  font-weight: normal;
  margin-bottom: 20px;
}
.solutions-role-section .role-quote {
  font-size: 14px;
  line-height: 20px;
  color: #888;
  margin-bottom: 15px;
}
.solutions-role-section .role-highlight {
  font-size: 14px;
  color: #888;
  line-height: 20px;
  margin-bottom: 15px;
}
.solutions-role-section .role-highlight .role-highlight-bold {
  color: #222;
}
.solutions-role-section .role-highlight:last-child {
  margin-bottom: 0;
}
.landing-cta-section {
  width: 100%;
  padding: 80px 0;
  box-sizing: border-box;
}
.landing-cta-section .cta-content {
  /* 宽度由页面级的 .landing-sections 约束，这里只铺满 */
  width: 100%;
  text-align: center;
}
.landing-cta-section .cta-title {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 10px;
  line-height: 64px;
}
.landing-cta-section .cta-subtitle {
  font-size: 16px;
  line-height: 24px;
  font-weight: normal;
  color: #888;
  margin-bottom: 40px;
}
.landing-cta-section .cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 97px;
  box-sizing: border-box;
  font-size: 18px;
  font-weight: bold;
  line-height: 28px;
  color: #fff;
  background: linear-gradient(83deg, #FE59FD 0%, #F202B0 24%, #5151FF 50%, #0E5BF2 74%, #1FCEEC 99%);
  border-radius: 77px;
  border: none;
  cursor: pointer;
}
@media (hover: hover) {
  .landing-cta-section .cta-btn:hover {
    opacity: 0.8;
  }
}.letter-avatar {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  color: #fff;
  background: radial-gradient(circle at 32% 24%, rgba(255, 255, 255, 0.38) 0 10%, rgba(255, 255, 255, 0) 24%), linear-gradient(135deg, #E879F9 0%, #A855F7 46%, #6366F1 100%);
  width: 22px;
  height: 22px;
  font-size: 12px;
  font-weight: 700;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}.common-logout-confirm-modal .ant-modal-content {
  padding: 30px 40px;
  border-radius: 20px;
}
.common-logout-confirm-modal .logout-modal-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.common-logout-confirm-modal .logout-title {
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 700;
  line-height: 32px;
  color: #222;
}
.common-logout-confirm-modal .logout-text {
  margin-bottom: 40px;
  font-size: 16px;
  line-height: 24px;
  color: #444;
}
.common-logout-confirm-modal .logout-buttons {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.common-logout-confirm-modal .logout-btn-common {
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
}
.common-logout-confirm-modal .logout-btn-confirm {
  border: none;
  color: #fff;
  background: linear-gradient(83deg, #FE59FD 0%, #F202B0 24%, #5151FF 50%, #0E5BF2 74%, #1FCEEC 99%);
}
.common-logout-confirm-modal .logout-btn-confirm:focus, .common-logout-confirm-modal .logout-btn-confirm:active {
  color: #fff;
  background: linear-gradient(83deg, #FE59FD 0%, #F202B0 24%, #5151FF 50%, #0E5BF2 74%, #1FCEEC 99%) !important;
  opacity: 0.82;
}
@media (hover: hover) {
  .common-logout-confirm-modal .logout-btn-confirm:hover {
    color: #fff;
    background: linear-gradient(83deg, #FE59FD 0%, #F202B0 24%, #5151FF 50%, #0E5BF2 74%, #1FCEEC 99%) !important;
    opacity: 0.82;
  }
}
.common-logout-confirm-modal .logout-btn-cancel {
  border: 1px solid #222;
  color: #222;
  background: #fff;
}
@media (hover: hover) {
  .common-logout-confirm-modal .logout-btn-cancel:hover {
    border-color: #222 !important;
    color: #222 !important;
    background: #F7F7F7 !important;
  }
}
/* 基础样式 */
.country-dropdown {
  position: relative;
  width: 240px;
  font-size: 14px;
  color: #333;
}

/* 下拉触发按钮 */
.dropdown-trigger {
  display: flex;
  align-items: center;
  padding: 10px 12px;
  box-sizing: border-box;
  border: 1px solid #dcdfe6;
  border-radius: 4px;
  cursor: pointer;
  background: #FAFAFA;
  transition: border-color 0.3s;
}

@media (hover: hover) {
  .dropdown-trigger:hover {
    border-color: #c0c4cc;
  }
}
.placeholder {
  color: #c0c4cc;
}

/* 国旗图标 */
.flag {
  display: inline-block;
  width: 20px;
  height: 15px;
  margin-right: 8px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

/* 下拉箭头 */
.arrow {
  margin-left: auto;
  font-size: 12px;
  transition: transform 0.3s;
  color: #c0c4cc;
}

.arrow.open {
  transform: rotate(180deg);
}

/* 下拉菜单 */
.dropdown-menu {
  position: absolute;
  left: 0;
  width: 100%;
  margin-top: 5px;
  border: 1px solid #dcdfe6;
  border-radius: 4px;
  background-color: #fff;
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

/* 搜索框 */
.search-box {
  padding: 8px;
  box-sizing: border-box;
  border-bottom: 1px solid #e6e6e6;
}

.search-box input {
  width: 100%;
  padding: 8px 10px;
  box-sizing: border-box;
  border: 1px solid #dcdfe6;
  border-radius: 3px;
  outline: none;
}

.search-box input:focus {
  border-color: #FDC959;
}

.search-box input::placeholder {
  color: #c0c4cc;
}

/* 国家列表 */
.country-list {
  max-height: 250px;
  overflow-y: auto;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
}

.country-list li {
  display: flex;
  align-items: center;
  padding: 10px 16px;
  box-sizing: border-box;
  cursor: pointer;
  transition: background-color 0.3s;
}

@media (hover: hover) {
  .country-list li:hover {
    background-color: #f5f7fa;
  }
}
.country-list li.selected {
  background-color: #FFEFCD;
  color: #333;
}

.no-results {
  color: #999;
  text-align: center;
  padding: 10px 0;
  box-sizing: border-box;
}
/*
最新国旗组件样式 请使用它
*/
.ai-flag {
  width: 21px;
  height: 14px;
  display: inline-block;
  margin-right: 5px;
  position: relative;
}

.ai-flag:before {
  content: "";
  display: block;
  background: url(https://ai.micstatic.com/aim/sourcingx-msr/dist/assets/ft-flags-BFG4xLVY.jpg) no-repeat;
  position: absolute;
  width: 42px;
  height: 28px;
  transform: scale(0.5);
  top: -7px;
  left: -10px;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
}

.ai-flag.ai-flag-af:before {
  background-position: 0 0;
}

.ai-flag.ai-flag-ax:before {
  background-position: -44px 0;
}

.ai-flag.ai-flag-al:before {
  background-position: -88px 0;
}

.ai-flag.ai-flag-dz:before {
  background-position: -132px 0;
}

.ai-flag.ai-flag-as:before {
  background-position: -176px 0;
}

.ai-flag.ai-flag-ad:before {
  background-position: -220px 0;
}

.ai-flag.ai-flag-ao:before {
  background-position: -264px 0;
}

.ai-flag.ai-flag-ai:before {
  background-position: -308px 0;
}

.ai-flag.ai-flag-ag:before {
  background-position: -352px 0;
}

.ai-flag.ai-flag-ar:before {
  background-position: -396px 0;
}

.ai-flag.ai-flag-am:before {
  background-position: -440px 0;
}

.ai-flag.ai-flag-aw:before {
  background-position: -484px 0;
}

.ai-flag.ai-flag-au:before {
  background-position: -528px 0;
}

.ai-flag.ai-flag-at:before {
  background-position: -572px 0;
}

.ai-flag.ai-flag-az:before {
  background-position: -616px 0;
}

.ai-flag.ai-flag-bs:before {
  background-position: 0 -30px;
}

.ai-flag.ai-flag-bh:before {
  background-position: -44px -30px;
}

.ai-flag.ai-flag-bd:before {
  background-position: -88px -30px;
}

.ai-flag.ai-flag-bb:before {
  background-position: -132px -30px;
}

.ai-flag.ai-flag-by:before {
  background-position: -176px -30px;
}

.ai-flag.ai-flag-be:before {
  background-position: -220px -30px;
}

.ai-flag.ai-flag-bz:before {
  background-position: -264px -30px;
}

.ai-flag.ai-flag-bj:before {
  background-position: -308px -30px;
}

.ai-flag.ai-flag-bm:before {
  background-position: -352px -30px;
}

.ai-flag.ai-flag-bt:before {
  background-position: -396px -30px;
}

.ai-flag.ai-flag-bo:before {
  background-position: -440px -30px;
}

.ai-flag.ai-flag-ba:before {
  background-position: -484px -30px;
}

.ai-flag.ai-flag-bw:before {
  background-position: -528px -30px;
}

.ai-flag.ai-flag-bv:before {
  background-position: -572px -30px;
}

.ai-flag.ai-flag-br:before {
  background-position: -616px -30px;
}

.ai-flag.ai-flag-io:before {
  background-position: 0 -60px;
}

.ai-flag.ai-flag-bn:before {
  background-position: -44px -60px;
}

.ai-flag.ai-flag-bg:before {
  background-position: -88px -60px;
}

.ai-flag.ai-flag-bf:before {
  background-position: -132px -60px;
}

.ai-flag.ai-flag-bi:before {
  background-position: -176px -60px;
}

.ai-flag.ai-flag-kh:before {
  background-position: -220px -60px;
}

.ai-flag.ai-flag-cm:before {
  background-position: -264px -60px;
}

.ai-flag.ai-flag-ca:before {
  background-position: -308px -60px;
}

.ai-flag.ai-flag-es:before {
  background-position: -352px -60px;
}

.ai-flag.ai-flag-cv:before {
  background-position: -396px -60px;
}

.ai-flag.ai-flag-ky:before {
  background-position: -440px -60px;
}

.ai-flag.ai-flag-cf:before {
  background-position: -484px -60px;
}

.ai-flag.ai-flag-td:before {
  background-position: -528px -60px;
}

.ai-flag.ai-flag-cl:before {
  background-position: -572px -60px;
}

.ai-flag.ai-flag-cn:before {
  background-position: -616px -60px;
}

.ai-flag.ai-flag-cx:before {
  background-position: 0 -90px;
}

.ai-flag.ai-flag-cc:before {
  background-position: -44px -90px;
}

.ai-flag.ai-flag-co:before {
  background-position: -88px -90px;
}

.ai-flag.ai-flag-km:before {
  background-position: -132px -90px;
}

.ai-flag.ai-flag-cg:before {
  background-position: -176px -90px;
}

.ai-flag.ai-flag-ck:before {
  background-position: -220px -90px;
}

.ai-flag.ai-flag-cr:before {
  background-position: -264px -90px;
}

.ai-flag.ai-flag-ci:before {
  background-position: -308px -90px;
}

.ai-flag.ai-flag-hr:before {
  background-position: -352px -90px;
}

.ai-flag.ai-flag-cu:before {
  background-position: -396px -90px;
}

.ai-flag.ai-flag-cw:before {
  background-position: -440px -90px;
}

.ai-flag.ai-flag-cy:before {
  background-position: -484px -90px;
}

.ai-flag.ai-flag-cz:before {
  background-position: -528px -90px;
}

.ai-flag.ai-flag-dk:before {
  background-position: -572px -90px;
}

.ai-flag.ai-flag-dj:before {
  background-position: -616px -90px;
}

.ai-flag.ai-flag-dm:before {
  background-position: 0 -120px;
}

.ai-flag.ai-flag-do:before {
  background-position: -44px -120px;
}

.ai-flag.ai-flag-tl:before {
  background-position: -88px -120px;
}

.ai-flag.ai-flag-ec:before {
  background-position: -132px -120px;
}

.ai-flag.ai-flag-eg:before {
  background-position: -176px -120px;
}

.ai-flag.ai-flag-sv:before {
  background-position: -220px -120px;
}

.ai-flag.ai-flag-gq:before {
  background-position: -264px -120px;
}

.ai-flag.ai-flag-er:before {
  background-position: -308px -120px;
}

.ai-flag.ai-flag-ee:before {
  background-position: -352px -120px;
}

.ai-flag.ai-flag-et:before {
  background-position: -396px -120px;
}

.ai-flag.ai-flag-fk:before {
  background-position: -440px -120px;
}

.ai-flag.ai-flag-fo:before {
  background-position: -484px -120px;
}

.ai-flag.ai-flag-fj:before {
  background-position: -528px -120px;
}

.ai-flag.ai-flag-fi:before {
  background-position: -572px -120px;
}

.ai-flag.ai-flag-fr:before {
  background-position: -616px -120px;
}

.ai-flag.ai-flag-gf:before {
  background-position: 0 -150px;
}

.ai-flag.ai-flag-pf:before {
  background-position: -44px -150px;
}

.ai-flag.ai-flag-tf:before {
  background-position: -88px -150px;
}

.ai-flag.ai-flag-ga:before {
  background-position: -132px -150px;
}

.ai-flag.ai-flag-gm:before {
  background-position: -176px -150px;
}

.ai-flag.ai-flag-ge:before {
  background-position: -220px -150px;
}

.ai-flag.ai-flag-de:before {
  background-position: -264px -150px;
}

.ai-flag.ai-flag-gh:before {
  background-position: -308px -150px;
}

.ai-flag.ai-flag-gi:before {
  background-position: -352px -150px;
}

.ai-flag.ai-flag-gr:before {
  background-position: -396px -150px;
}

.ai-flag.ai-flag-gl:before {
  background-position: -440px -150px;
}

.ai-flag.ai-flag-gd:before {
  background-position: -484px -150px;
}

.ai-flag.ai-flag-gp:before {
  background-position: -528px -150px;
}

.ai-flag.ai-flag-gu:before {
  background-position: -572px -150px;
}

.ai-flag.ai-flag-gt:before {
  background-position: -616px -150px;
}

.ai-flag.ai-flag-gg:before {
  background-position: 0 -180px;
}

.ai-flag.ai-flag-gn:before {
  background-position: -44px -180px;
}

.ai-flag.ai-flag-gw:before {
  background-position: -88px -180px;
}

.ai-flag.ai-flag-gy:before {
  background-position: -132px -180px;
}

.ai-flag.ai-flag-ht:before {
  background-position: -176px -180px;
}

.ai-flag.ai-flag-hm:before {
  background-position: -220px -180px;
}

.ai-flag.ai-flag-hn:before {
  background-position: -264px -180px;
}

.ai-flag.ai-flag-hk:before {
  background-position: -308px -180px;
}

.ai-flag.ai-flag-hu:before {
  background-position: -352px -180px;
}

.ai-flag.ai-flag-is:before {
  background-position: -396px -180px;
}

.ai-flag.ai-flag-in:before {
  background-position: -440px -180px;
}

.ai-flag.ai-flag-id:before {
  background-position: -484px -180px;
}

.ai-flag.ai-flag-ir:before {
  background-position: -528px -180px;
}

.ai-flag.ai-flag-iq:before {
  background-position: -572px -180px;
}

.ai-flag.ai-flag-ie:before {
  background-position: -616px -180px;
}

.ai-flag.ai-flag-im:before {
  background-position: 0 -210px;
}

.ai-flag.ai-flag-il:before {
  background-position: -44px -210px;
}

.ai-flag.ai-flag-it:before {
  background-position: -88px -210px;
}

.ai-flag.ai-flag-jm:before {
  background-position: -132px -210px;
}

.ai-flag.ai-flag-jp:before {
  background-position: -176px -210px;
}

.ai-flag.ai-flag-je:before {
  background-position: -220px -210px;
}

.ai-flag.ai-flag-jo:before {
  background-position: -264px -210px;
}

.ai-flag.ai-flag-kz:before {
  background-position: -308px -210px;
}

.ai-flag.ai-flag-ke:before {
  background-position: -352px -210px;
}

.ai-flag.ai-flag-ki:before {
  background-position: -396px -210px;
}

.ai-flag.ai-flag-kw:before {
  background-position: -440px -210px;
}

.ai-flag.ai-flag-kg:before {
  background-position: -484px -210px;
}

.ai-flag.ai-flag-la:before {
  background-position: -528px -210px;
}

.ai-flag.ai-flag-lv:before {
  background-position: -572px -210px;
}

.ai-flag.ai-flag-lb:before {
  background-position: -616px -210px;
}

.ai-flag.ai-flag-ls:before {
  background-position: 0 -240px;
}

.ai-flag.ai-flag-lr:before {
  background-position: -44px -240px;
}

.ai-flag.ai-flag-ly:before {
  background-position: -88px -240px;
}

.ai-flag.ai-flag-li:before {
  background-position: -132px -240px;
}

.ai-flag.ai-flag-lt:before {
  background-position: -176px -240px;
}

.ai-flag.ai-flag-lu:before {
  background-position: -220px -240px;
}

.ai-flag.ai-flag-mo:before {
  background-position: -264px -240px;
}

.ai-flag.ai-flag-mk:before {
  background-position: -308px -240px;
}

.ai-flag.ai-flag-mg:before {
  background-position: -352px -240px;
}

.ai-flag.ai-flag-mw:before {
  background-position: -396px -240px;
}

.ai-flag.ai-flag-my:before {
  background-position: -440px -240px;
}

.ai-flag.ai-flag-mv:before {
  background-position: -484px -240px;
}

.ai-flag.ai-flag-ml:before {
  background-position: -528px -240px;
}

.ai-flag.ai-flag-mt:before {
  background-position: -572px -240px;
}

.ai-flag.ai-flag-mh:before {
  background-position: -616px -240px;
}

.ai-flag.ai-flag-mq:before {
  background-position: 0 -270px;
}

.ai-flag.ai-flag-mr:before {
  background-position: -44px -270px;
}

.ai-flag.ai-flag-mu:before {
  background-position: -88px -270px;
}

.ai-flag.ai-flag-yt:before {
  background-position: -132px -270px;
}

.ai-flag.ai-flag-mx:before {
  background-position: -176px -270px;
}

.ai-flag.ai-flag-fm:before {
  background-position: -220px -270px;
}

.ai-flag.ai-flag-md:before {
  background-position: -264px -270px;
}

.ai-flag.ai-flag-mc:before {
  background-position: -308px -270px;
}

.ai-flag.ai-flag-mn:before {
  background-position: -352px -270px;
}

.ai-flag.ai-flag-me:before {
  background-position: -396px -270px;
}

.ai-flag.ai-flag-ms:before {
  background-position: -440px -270px;
}

.ai-flag.ai-flag-ma:before {
  background-position: -484px -270px;
}

.ai-flag.ai-flag-mz:before {
  background-position: -528px -270px;
}

.ai-flag.ai-flag-mm:before {
  background-position: -572px -270px;
}

.ai-flag.ai-flag-na:before {
  background-position: -616px -270px;
}

.ai-flag.ai-flag-nr:before {
  background-position: 0 -300px;
}

.ai-flag.ai-flag-np:before {
  background-position: -44px -300px;
}

.ai-flag.ai-flag-nl:before {
  background-position: -88px -300px;
}

.ai-flag.ai-flag-an:before {
  background-position: -132px -300px;
}

.ai-flag.ai-flag-nc:before {
  background-position: -176px -300px;
}

.ai-flag.ai-flag-nz:before {
  background-position: -220px -300px;
}

.ai-flag.ai-flag-ni:before {
  background-position: -264px -300px;
}

.ai-flag.ai-flag-ne:before {
  background-position: -308px -300px;
}

.ai-flag.ai-flag-ng:before {
  background-position: -352px -300px;
}

.ai-flag.ai-flag-nu:before {
  background-position: -396px -300px;
}

.ai-flag.ai-flag-nf:before {
  background-position: -440px -300px;
}

.ai-flag.ai-flag-kp:before {
  background-position: -484px -300px;
}

.ai-flag.ai-flag-mp:before {
  background-position: -528px -300px;
}

.ai-flag.ai-flag-no:before {
  background-position: -572px -300px;
}

.ai-flag.ai-flag-om:before {
  background-position: -616px -300px;
}

.ai-flag.ai-flag-pk:before {
  background-position: 0 -330px;
}

.ai-flag.ai-flag-pw:before {
  background-position: -44px -330px;
}

.ai-flag.ai-flag-ps:before {
  background-position: -88px -330px;
}

.ai-flag.ai-flag-pa:before {
  background-position: -132px -330px;
}

.ai-flag.ai-flag-pg:before {
  background-position: -176px -330px;
}

.ai-flag.ai-flag-py:before {
  background-position: -220px -330px;
}

.ai-flag.ai-flag-pe:before {
  background-position: -264px -330px;
}

.ai-flag.ai-flag-ph:before {
  background-position: -308px -330px;
}

.ai-flag.ai-flag-pn:before {
  background-position: -352px -330px;
}

.ai-flag.ai-flag-pl:before {
  background-position: -396px -330px;
}

.ai-flag.ai-flag-pt:before {
  background-position: -440px -330px;
}

.ai-flag.ai-flag-pr:before {
  background-position: -484px -330px;
}

.ai-flag.ai-flag-qa:before {
  background-position: -528px -330px;
}

.ai-flag.ai-flag-re:before {
  background-position: -572px -330px;
}

.ai-flag.ai-flag-ro:before {
  background-position: -616px -330px;
}

.ai-flag.ai-flag-ru:before {
  background-position: 0 -360px;
}

.ai-flag.ai-flag-rw:before {
  background-position: -44px -360px;
}

.ai-flag.ai-flag-bl:before {
  background-position: -88px -360px;
}

.ai-flag.ai-flag-mf:before {
  background-position: -132px -360px;
}

.ai-flag.ai-flag-ws:before {
  background-position: -176px -360px;
}

.ai-flag.ai-flag-sm:before {
  background-position: -220px -360px;
}

.ai-flag.ai-flag-st:before {
  background-position: -264px -360px;
}

.ai-flag.ai-flag-sa:before {
  background-position: -308px -360px;
}

.ai-flag.ai-flag-sn:before {
  background-position: -352px -360px;
}

.ai-flag.ai-flag-rs:before {
  background-position: -396px -360px;
}

.ai-flag.ai-flag-rs:before {
  background-position: -440px -360px;
}

.ai-flag.ai-flag-sc:before {
  background-position: -484px -360px;
}

.ai-flag.ai-flag-sl:before {
  background-position: -528px -360px;
}

.ai-flag.ai-flag-sg:before {
  background-position: -572px -360px;
}

.ai-flag.ai-flag-sx:before {
  background-position: -616px -360px;
}

.ai-flag.ai-flag-sk:before {
  background-position: 0 -390px;
}

.ai-flag.ai-flag-si:before {
  background-position: -44px -390px;
}

.ai-flag.ai-flag-sb:before {
  background-position: -88px -390px;
}

.ai-flag.ai-flag-so:before {
  background-position: -132px -390px;
}

.ai-flag.ai-flag-za:before {
  background-position: -176px -390px;
}

.ai-flag.ai-flag-gs:before {
  background-position: -220px -390px;
}

.ai-flag.ai-flag-kr:before {
  background-position: -264px -390px;
}

.ai-flag.ai-flag-ss:before {
  background-position: -308px -390px;
}

.ai-flag.ai-flag-es:before {
  background-position: -352px -390px;
}

.ai-flag.ai-flag-lk:before {
  background-position: -396px -390px;
}

.ai-flag.ai-flag-sh:before {
  background-position: -440px -390px;
}

.ai-flag.ai-flag-kn:before {
  background-position: -484px -390px;
}

.ai-flag.ai-flag-lc:before {
  background-position: -528px -390px;
}

.ai-flag.ai-flag-pm:before {
  background-position: -572px -390px;
}

.ai-flag.ai-flag-vc:before {
  background-position: -616px -390px;
}

.ai-flag.ai-flag-sd:before {
  background-position: 0 -420px;
}

.ai-flag.ai-flag-sr:before {
  background-position: -44px -420px;
}

.ai-flag.ai-flag-sj:before {
  background-position: -88px -420px;
}

.ai-flag.ai-flag-sz:before {
  background-position: -132px -420px;
}

.ai-flag.ai-flag-se:before {
  background-position: -176px -420px;
}

.ai-flag.ai-flag-ch:before {
  background-position: -220px -420px;
}

.ai-flag.ai-flag-sy:before {
  background-position: -264px -420px;
}

.ai-flag.ai-flag-tw:before {
  background-position: -308px -420px;
}

.ai-flag.ai-flag-tj:before {
  background-position: -352px -420px;
}

.ai-flag.ai-flag-tz:before {
  background-position: -396px -420px;
}

.ai-flag.ai-flag-th:before {
  background-position: -440px -420px;
}

.ai-flag.ai-flag-tg:before {
  background-position: -484px -420px;
}

.ai-flag.ai-flag-tk:before {
  background-position: -528px -420px;
}

.ai-flag.ai-flag-to:before {
  background-position: -572px -420px;
}

.ai-flag.ai-flag-tt:before {
  background-position: -616px -420px;
}

.ai-flag.ai-flag-tn:before {
  background-position: 0 -450px;
}

.ai-flag.ai-flag-tr:before {
  background-position: -44px -450px;
}

.ai-flag.ai-flag-tm:before {
  background-position: -88px -450px;
}

.ai-flag.ai-flag-tc:before {
  background-position: -132px -450px;
}

.ai-flag.ai-flag-tv:before {
  background-position: -176px -450px;
}

.ai-flag.ai-flag-ug:before {
  background-position: -220px -450px;
}

.ai-flag.ai-flag-ua:before {
  background-position: -264px -450px;
}

.ai-flag.ai-flag-ae:before {
  background-position: -308px -450px;
}

.ai-flag.ai-flag-gb:before {
  background-position: -352px -450px;
}

.ai-flag.ai-flag-us:before {
  background-position: -396px -450px;
}

.ai-flag.ai-flag-um:before {
  background-position: -440px -450px;
}

.ai-flag.ai-flag-uy:before {
  background-position: -484px -450px;
}

.ai-flag.ai-flag-uz:before {
  background-position: -528px -450px;
}

.ai-flag.ai-flag-vu:before {
  background-position: -572px -450px;
}

.ai-flag.ai-flag-va:before {
  background-position: -616px -450px;
}

.ai-flag.ai-flag-ve:before {
  background-position: 0 -480px;
}

.ai-flag.ai-flag-vn:before {
  background-position: -44px -480px;
}

.ai-flag.ai-flag-vg:before {
  background-position: -88px -480px;
}

.ai-flag.ai-flag-vi:before {
  background-position: -132px -480px;
}

.ai-flag.ai-flag-wf:before {
  background-position: -176px -480px;
}

.ai-flag.ai-flag-eh:before {
  background-position: -220px -480px;
}

.ai-flag.ai-flag-ye:before {
  background-position: -264px -480px;
}

.ai-flag.ai-flag-zr:before {
  background-position: -308px -480px;
}

.ai-flag.ai-flag-zm:before {
  background-position: -352px -480px;
}

.ai-flag.ai-flag-zw:before {
  background-position: -396px -480px;
}

.ai-flag.ai-flag-unknown:before, .ai-flag.ai-flag-undefined:before, .ai-flag.ai-flag-null:before {
  background: url(https://ai.micstatic.com/aim/sourcingx-msr/dist/assets/ft-flags-BFG4xLVY.jpg) no-repeat;
}
/*一行省略号*/
/*多行省略号(默认两行)*/
/*水平垂直居中 不固定宽高*/
/*animate*/
/*Scrollbar*/
/*更改svg图片颜色 父级样式要加overflow: hidden;*/
.buyer-account-modal .ant-modal-content {
  padding: 0;
  box-sizing: border-box;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.18);
}
.buyer-account-modal .ant-modal-close {
  top: 26px;
  right: 28px;
  border-radius: 8px;
}
@media (hover: hover) {
  .buyer-account-modal .ant-modal-close:hover {
    background: #F4F6F8;
  }
}
.buyer-account-modal .buyer-account-content {
  max-height: calc(100vh - 96px);
  padding: 34px 40px 40px;
  box-sizing: border-box;
  overflow-y: auto;
  font-size: 16px;
  line-height: 24px;
}
.buyer-account-modal .buyer-account-header {
  display: flex;
  align-items: center;
  margin-bottom: 18px;
  padding-right: 48px;
  box-sizing: border-box;
}
.buyer-account-modal .buyer-account-header .buyer-account-title {
  font-size: 20px;
  font-weight: bold;
  line-height: 30px;
  color: #222;
}
.buyer-account-modal .buyer-account-edit-btn,
.buyer-account-modal .buyer-account-actions .ant-btn {
  height: 38px;
  padding: 8px 14px;
  box-sizing: border-box;
  border-radius: 8px;
  border: 1px solid #DDE2E9;
  font-size: 14px;
  line-height: 20px;
}
@media (hover: hover) {
  .buyer-account-modal .buyer-account-edit-btn:hover,
  .buyer-account-modal .buyer-account-actions .ant-btn:hover {
    border-color: #DDE2E9 !important;
    color: #222 !important;
    background: #F7F7F7 !important;
  }
}
.buyer-account-modal .buyer-account-actions .ant-btn-primary {
  border: none !important;
  color: #fff !important;
  background: linear-gradient(65deg, #FE59FD 3%, #F202B0 26%, #5151FF 49%, #0E5BF2 72%, #1FCEEC 96%) !important;
  box-shadow: none;
}
@media (hover: hover) {
  .buyer-account-modal .buyer-account-actions .ant-btn-primary:hover {
    color: #fff !important;
    background: linear-gradient(65deg, #FE59FD 3%, #F202B0 26%, #5151FF 49%, #0E5BF2 72%, #1FCEEC 96%) !important;
    opacity: 0.86;
  }
}
.buyer-account-modal .buyer-account-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 20px;
}
.buyer-account-modal .buyer-account-profile {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 0 20px 0;
  box-sizing: border-box;
}
.buyer-account-modal .buyer-account-profile .profile-main {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  flex: 1;
}
.buyer-account-modal .buyer-account-profile .letter-avatar {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  font-size: 20.17px;
  font-weight: 700;
  line-height: 20.17px;
}
.buyer-account-modal .buyer-account-profile .user-info {
  min-width: 0;
}
.buyer-account-modal .buyer-account-profile .buyer-account-edit-btn {
  flex-shrink: 0;
}
.buyer-account-modal .buyer-account-profile .profile-name,
.buyer-account-modal .buyer-account-profile .profile-email {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.buyer-account-modal .buyer-account-profile .profile-name {
  margin-bottom: 4px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  color: #222;
}
.buyer-account-modal .buyer-account-profile .profile-email {
  font-size: 12px;
  line-height: 16px;
  color: #888;
}
.buyer-account-modal .buyer-account-tabs .ant-tabs-nav {
  margin-bottom: 24px;
}
.buyer-account-modal .buyer-account-tabs .ant-tabs-nav::before {
  border-bottom-color: #EEF0F3;
}
.buyer-account-modal .buyer-account-tabs .ant-tabs-tab {
  padding: 10px 0;
  font-size: 15px;
  line-height: 22px;
  color: #888;
}
.buyer-account-modal .buyer-account-tabs .ant-tabs-tab + .ant-tabs-tab {
  margin-left: 32px;
}
@media (hover: hover) {
  .buyer-account-modal .buyer-account-tabs .ant-tabs-tab:hover {
    color: #222;
  }
}
.buyer-account-modal .buyer-account-tabs .ant-tabs-tab-active .ant-tabs-tab-btn {
  color: #222 !important;
  font-weight: 700;
}
.buyer-account-modal .buyer-account-tabs .ant-tabs-ink-bar {
  background: var(--primary);
}
.buyer-account-modal .buyer-profile-view {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.buyer-account-modal .preferences-hint,
.buyer-account-modal .buyer-profile-form .ant-form-item-extra {
  margin: 8px 0 0;
  font-size: 12px;
  line-height: 18px;
  color: #888;
}
.buyer-account-modal .profile-section {
  width: 100%;
}
.buyer-account-modal .profile-section-title {
  margin-bottom: 12px;
  font-size: 15px;
  line-height: 22px;
  font-weight: 700;
  color: #222;
}
.buyer-account-modal .profile-view-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.buyer-account-modal .profile-view-item {
  min-height: 76px;
  padding: 14px 16px;
  box-sizing: border-box;
  border: 1px solid #EEF0F3;
  border-radius: 8px;
  background: #FBFCFE;
}
.buyer-account-modal .profile-view-item .view-label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  line-height: 20px;
  color: #888;
}
.buyer-account-modal .profile-view-item .view-value {
  display: block;
  min-width: 0;
  font-size: 16px;
  line-height: 24px;
  color: #222;
  font-weight: 500;
  overflow-wrap: anywhere;
  white-space: pre-wrap;
}
.buyer-account-modal .buyer-profile-form {
  padding: 22px 24px 24px;
  box-sizing: border-box;
  border: 1px solid #EEF0F3;
  border-radius: 8px;
  background: #FBFCFE;
}
.buyer-account-modal .buyer-profile-form .form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 20px;
}
.buyer-account-modal .buyer-profile-form .ant-form-item-label > label {
  color: #222;
  font-weight: 600;
}
.buyer-account-modal .buyer-profile-form .ant-form-item {
  margin-bottom: 20px;
}
.buyer-account-modal .buyer-profile-form .ant-input,
.buyer-account-modal .buyer-profile-form .ant-select-selector {
  background: #FFF !important;
  border-radius: 8px !important;
}
@media (hover: hover) {
  .buyer-account-modal .buyer-profile-form .ant-input:hover,
  .buyer-account-modal .buyer-profile-form .ant-select:hover .ant-select-selector {
    border-color: var(--primary) !important;
  }
}
.buyer-account-modal .buyer-profile-form .ant-input:focus,
.buyer-account-modal .buyer-profile-form .ant-input-focused,
.buyer-account-modal .buyer-profile-form .ant-select-focused .ant-select-selector {
  border-color: var(--primary) !important;
  box-shadow: 0 0 0 2px rgba(108, 92, 231, 0.14) !important;
}
.buyer-account-modal .buyer-profile-form .ant-input,
.buyer-account-modal .buyer-profile-form .ant-select-single {
  min-height: 40px;
}
.buyer-account-modal .buyer-profile-form .country-dropdown {
  width: 100%;
}
.buyer-account-modal .buyer-profile-form .country-dropdown .dropdown-trigger {
  min-height: 40px;
  padding: 8px 12px;
  box-sizing: border-box;
  border-color: #d9d9d9;
  border-radius: 8px;
  background: #fff;
}
.buyer-account-modal .buyer-profile-form .country-dropdown .dropdown-menu {
  border-radius: 8px;
}
.buyer-account-modal .buyer-profile-form .country-dropdown .search-box input:focus {
  border-color: var(--primary);
}
@media (hover: hover) {
  .buyer-account-modal .buyer-profile-form .country-dropdown .country-list li:hover {
    background-color: var(--primary-bg);
  }
}
.buyer-account-modal .buyer-profile-form .country-dropdown .country-list li.selected {
  color: var(--primary);
  background-color: var(--primary-bg);
}

.buyer-account-select-dropdown .ant-select-item-option-active:not(.ant-select-item-option-disabled) {
  background-color: var(--primary-bg) !important;
}
.buyer-account-select-dropdown .ant-select-item-option-selected:not(.ant-select-item-option-disabled) {
  color: var(--primary) !important;
  background-color: var(--primary-bg) !important;
  font-weight: 600;
}

@media screen and (max-width: 900px) {
  .buyer-account-modal {
    width: calc(100vw - 20px) !important;
    max-width: calc(100vw - 20px);
  }
  .buyer-account-modal .ant-modal-close {
    top: 18px;
    right: 18px;
  }
  .buyer-account-modal .buyer-account-content {
    padding: 26px 18px 24px;
    box-sizing: border-box;
  }
  .buyer-account-modal .buyer-account-header {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 20px;
    padding-right: 42px;
    box-sizing: border-box;
  }
  .buyer-account-modal .buyer-profile-form .form-grid,
  .buyer-account-modal .profile-view-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .buyer-account-modal .buyer-profile-form {
    padding: 18px 16px 18px;
    box-sizing: border-box;
  }
  .buyer-account-modal .buyer-account-tabs .ant-tabs-tab + .ant-tabs-tab {
    margin-left: 20px;
  }
}.credits-detail-modal .ant-modal-content {
  padding: 0;
  box-sizing: border-box;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(15, 23, 42, 0.14);
}
.credits-detail-modal .ant-modal-close {
  top: 18px;
  right: 18px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: #a3adbf;
  transition: background 0.15s, color 0.15s;
}
@media (hover: hover) {
  .credits-detail-modal .ant-modal-close:hover {
    background: #f4f5f9;
    color: #5f6676;
  }
}
.credits-detail-modal .credits-detail-content {
  max-height: calc(100vh - 96px);
  box-sizing: border-box;
  overflow-y: auto;
  background: #fff;
}
.credits-detail-modal .credits-detail-content::-webkit-scrollbar {
  width: 6px;
}
.credits-detail-modal .credits-detail-content::-webkit-scrollbar-thumb {
  border-radius: 3px;
  background: #e3e7f0;
}
.credits-detail-modal .credits-detail-header {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 30px;
  box-sizing: border-box;
  border-bottom: 1px solid #f0f1f6;
}
.credits-detail-modal .credits-total-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #9a8ff5 0%, #7466e9 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 22px;
}
.credits-detail-modal .credits-total-copy {
  flex: 1;
  min-width: 0;
}
.credits-detail-modal .credits-total-title {
  color: #8c93a5;
  font-size: 15px;
  line-height: 22px;
  font-weight: 600;
}
.credits-detail-modal .credits-total-value {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.credits-detail-modal .credits-total-value span {
  font-size: 38px;
  line-height: 48px;
  font-weight: 800;
  color: #000;
  letter-spacing: -0.5px;
}
.credits-detail-modal .credits-total-value em {
  font-style: normal;
  font-size: 15px;
  font-weight: 600;
  color: #9aa3b5;
}
.credits-detail-modal .credits-section {
  padding: 22px 30px 26px;
  box-sizing: border-box;
}
.credits-detail-modal .credits-section-title {
  margin: 0 0 16px;
  color: #1e2638;
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
}
.credits-detail-modal .credits-earn-list {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  list-style: none;
}
.credits-detail-modal .credits-earn-list-free {
  margin-top: 22px;
  padding-top: 22px;
  box-sizing: border-box;
  border-top: 1px solid #eceef3;
}
.credits-detail-modal .credits-earn-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 16px;
  box-sizing: border-box;
  border-radius: 18px;
  background: #f8f7fc;
}
.credits-detail-modal .credits-earn-row.is-highlight {
  background: #e9e7fb;
}
.credits-detail-modal .credits-earn-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #fff;
  color: #1a1d26;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 19px;
}
.credits-detail-modal .credits-earn-main {
  min-width: 0;
  flex: 1;
}
.credits-detail-modal .credits-earn-name {
  margin: 0;
  color: #1a1d26;
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
}
.credits-detail-modal .credits-earn-desc {
  margin: 0;
  color: #8b90a0;
  font-size: 13px;
  line-height: 20px;
  font-weight: 400;
}
.credits-detail-modal .credits-earn-btn-wrap {
  display: inline-flex;
  flex-shrink: 0;
}
.credits-detail-modal .credits-earn-btn {
  width: 132px;
  height: 38px;
  padding: 0;
  box-sizing: border-box;
  border: none;
  border-radius: 19px;
  background: #fff;
  box-shadow: 0 1px 2px rgba(16, 24, 40, 0.06);
  color: #1a1d26;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.15s, box-shadow 0.15s, transform 0.15s;
}
@media (hover: hover) {
  .credits-detail-modal .credits-earn-btn:hover:not(:disabled):not(.is-static) {
    box-shadow: 0 6px 14px rgba(16, 24, 40, 0.1);
    transform: translateY(-1px);
  }
}
.credits-detail-modal .credits-earn-btn:active:not(:disabled):not(.is-static) {
  box-shadow: none;
  transform: translateY(0);
}
.credits-detail-modal .credits-earn-btn:focus-visible {
  outline: 2px solid rgba(123, 114, 232, 0.3);
  outline-offset: 2px;
}
.credits-detail-modal .credits-earn-btn.is-solid {
  background: var(--primary);
  color: #fff;
  box-shadow: none;
}
@media (hover: hover) {
  .credits-detail-modal .credits-earn-btn.is-solid:hover:not(:disabled) {
    background: #6a5ee0;
    box-shadow: 0 8px 18px rgba(111, 95, 230, 0.25);
  }
}
.credits-detail-modal .credits-earn-btn.is-static, .credits-detail-modal .credits-earn-btn:disabled {
  background: #eef0f4;
  box-shadow: none;
  color: #a4aab6;
  cursor: default;
}
.credits-detail-modal .credits-earn-btn:disabled {
  cursor: not-allowed;
}
.credits-detail-modal .credits-history-section {
  padding: 6px 22px 14px;
  box-sizing: border-box;
  border-top: 1px solid #f0f1f6;
}
.credits-detail-modal .credits-history-entry {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px;
  box-sizing: border-box;
  border: none;
  border-radius: 14px;
  background: transparent;
  color: #8c93a5;
  font-size: 16px;
  line-height: 24px;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
@media (hover: hover) {
  .credits-detail-modal .credits-history-entry:hover {
    background: #f6f7fa;
    color: #5f6676;
  }
  .credits-detail-modal .credits-history-entry:hover .credits-history-arrow {
    color: #8c93a5;
    transform: translateX(2px);
  }
}
.credits-detail-modal .credits-history-entry:focus-visible {
  outline: 2px solid rgba(123, 114, 232, 0.3);
  outline-offset: 2px;
}
.credits-detail-modal .credits-history-icon {
  font-size: 17px;
}
.credits-detail-modal .credits-history-label {
  flex: 1;
  text-align: left;
}
.credits-detail-modal .credits-history-arrow {
  flex-shrink: 0;
  font-size: 14px;
  color: #a9b2c3;
  transition: color 0.15s, transform 0.15s;
}
.credits-detail-modal .credits-history-page-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.credits-detail-modal .credits-history-back {
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 50%;
  background: #f4f5f9;
  color: #5f6676;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
@media (hover: hover) {
  .credits-detail-modal .credits-history-back:hover {
    background: #e6e3fa;
    color: var(--primary);
  }
}
.credits-detail-modal .credits-history-back:focus-visible {
  outline: 2px solid rgba(123, 114, 232, 0.3);
  outline-offset: 2px;
}
.credits-detail-modal .credits-history-page-title {
  margin: 0;
  color: #1e2638;
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
}
.credits-detail-modal .credits-history-panel {
  min-height: 320px;
  box-sizing: border-box;
}
.credits-detail-modal .credits-history-panel .ant-empty {
  padding: 80px 0;
}
.credits-detail-modal .credits-record-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.credits-detail-modal .credits-record-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 18px;
  box-sizing: border-box;
  border-radius: 16px;
  background: #f8f7fc;
}
.credits-detail-modal .credits-record-icon {
  width: 34px;
  height: 34px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 15px;
}
.credits-detail-modal .credits-record-icon.market {
  color: #4f46e5;
  background: #eef2ff;
}
.credits-detail-modal .credits-record-icon.search {
  color: #0891b2;
  background: #ecfeff;
}
.credits-detail-modal .credits-record-icon.compare {
  color: #7c3aed;
  background: #f3e8ff;
}
.credits-detail-modal .credits-record-icon.check {
  color: #0f766e;
  background: #ccfbf1;
}
.credits-detail-modal .credits-record-icon.generated {
  color: #ca8a04;
  background: #fef9c3;
}
.credits-detail-modal .credits-record-icon.none {
  color: #64748b;
  background: #eef1f7;
}
.credits-detail-modal .credits-record-main {
  min-width: 0;
  flex: 1;
}
.credits-detail-modal .credits-item-title {
  color: #1e2638;
  font-size: 15px;
  line-height: 22px;
  font-weight: 700;
}
.credits-detail-modal .credits-item-subtitle {
  color: #98a2b7;
  font-size: 13px;
  line-height: 18px;
  font-weight: 500;
}
.credits-detail-modal .credits-item-amount {
  margin-left: auto;
  flex-shrink: 0;
  font-size: 16px;
  line-height: 24px;
  font-weight: 800;
}
.credits-detail-modal .credits-item-amount.negative {
  color: #5f6676;
}
.credits-detail-modal .credits-record-pagination {
  display: flex;
  justify-content: flex-end;
  margin-top: 18px;
}

.credits-redeem-modal .ant-modal-content {
  padding: 28px 26px 22px;
  box-sizing: border-box;
  border-radius: 20px;
  box-shadow: 0 24px 64px rgba(15, 23, 42, 0.14);
}
.credits-redeem-modal .ant-modal-close {
  top: 16px;
  right: 16px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: #a3adbf;
  transition: background 0.15s, color 0.15s;
}
@media (hover: hover) {
  .credits-redeem-modal .ant-modal-close:hover {
    background: #f4f5f9;
    color: #5f6676;
  }
}
.credits-redeem-modal .credits-redeem-title {
  margin: 0;
  color: #1a1d26;
  font-size: 18px;
  line-height: 26px;
  font-weight: 700;
}
.credits-redeem-modal .credits-redeem-tip {
  margin: 6px 0 0;
  color: #8b90a0;
  font-size: 13px;
  line-height: 20px;
  font-weight: 500;
}
.credits-redeem-modal .credits-redeem-input {
  width: 100%;
  height: 44px;
  margin-top: 18px;
  padding: 0 18px;
  box-sizing: border-box;
  border: 1px solid #e6eaf2;
  border-radius: 22px;
  background: #fff;
  color: #33405a;
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  outline: none;
  transition: border-color 0.15s;
}
.credits-redeem-modal .credits-redeem-input::placeholder {
  color: #aeb6c5;
  font-weight: 500;
}
.credits-redeem-modal .credits-redeem-input:focus {
  border-color: #c3bbf5;
}
.credits-redeem-modal .credits-redeem-footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 20px;
}
.credits-redeem-modal .credits-redeem-cancel,
.credits-redeem-modal .credits-redeem-submit {
  min-width: 100px;
  height: 40px;
  padding: 0 20px;
  box-sizing: border-box;
  border: none;
  border-radius: 20px;
  flex-shrink: 0;
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.15s, box-shadow 0.15s, color 0.15s;
}
.credits-redeem-modal .credits-redeem-cancel:disabled,
.credits-redeem-modal .credits-redeem-submit:disabled {
  cursor: not-allowed;
}
.credits-redeem-modal .credits-redeem-cancel:focus-visible,
.credits-redeem-modal .credits-redeem-submit:focus-visible {
  outline: 2px solid rgba(123, 114, 232, 0.3);
  outline-offset: 2px;
}
.credits-redeem-modal .credits-redeem-cancel {
  background: #f0f1f5;
  color: #5f6676;
}
@media (hover: hover) {
  .credits-redeem-modal .credits-redeem-cancel:hover:not(:disabled) {
    background: #e7e9ef;
  }
}
.credits-redeem-modal .credits-redeem-submit {
  background: var(--primary);
  color: #fff;
}
@media (hover: hover) {
  .credits-redeem-modal .credits-redeem-submit:hover:not(:disabled) {
    background: #6a5ee0;
    box-shadow: 0 8px 18px rgba(111, 95, 230, 0.25);
  }
}
.credits-redeem-modal .credits-redeem-submit:disabled {
  background: #eef0f4;
  color: #a4aab6;
}

@media screen and (max-width: 720px) {
  .credits-detail-modal {
    max-width: calc(100vw - 24px);
  }
  .credits-detail-modal .credits-detail-header {
    padding: 22px 18px 20px;
    box-sizing: border-box;
    gap: 14px;
  }
  .credits-detail-modal .credits-total-icon {
    width: 46px;
    height: 46px;
    font-size: 20px;
  }
  .credits-detail-modal .credits-total-value span {
    font-size: 30px;
    line-height: 40px;
  }
  .credits-detail-modal .credits-section {
    padding: 18px 18px 22px;
    box-sizing: border-box;
  }
  .credits-detail-modal .credits-history-section {
    padding: 4px 12px 12px;
    box-sizing: border-box;
  }
  .credits-detail-modal .credits-earn-row {
    gap: 12px;
    padding: 10px 12px;
  }
  .credits-detail-modal .credits-earn-icon {
    width: 38px;
    height: 38px;
    font-size: 17px;
  }
  .credits-detail-modal .credits-earn-btn {
    width: 108px;
    height: 34px;
    border-radius: 17px;
    font-size: 13px;
  }
  .credits-detail-modal .credits-history-panel {
    min-height: 260px;
  }
  .credits-redeem-modal {
    max-width: calc(100vw - 40px);
  }
}.global-feedback-modal {
  top: 28px;
}
.global-feedback-modal .ant-modal-content {
  padding: 0;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.2);
}
.global-feedback-modal .ant-modal-body {
  padding: 0;
}
.global-feedback-modal .ant-form-item {
  margin-bottom: 0;
}
.global-feedback-modal .ant-form-item-control-input,
.global-feedback-modal .ant-form-item-explain {
  min-height: auto;
}
.global-feedback-modal .ant-form-item-explain-error {
  color: #ff4d4f;
  font-size: 13px;
  line-height: 18px;
}

.global-feedback-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 24px 28px 22px;
  border-bottom: 1px solid #eeeeee;
}
.global-feedback-header h2 {
  margin: 0 0 4px;
  color: #1f1f1f;
  font-size: 24px;
  line-height: 30px;
  font-weight: 800;
  letter-spacing: 0;
}
.global-feedback-header p {
  margin: 0;
  color: #747474;
  font-size: 17px;
  line-height: 24px;
}

.global-feedback-close {
  width: 32px;
  height: 32px;
  margin-top: 1px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: #666;
  font-size: 17px;
  cursor: pointer;
}
@media (hover: hover) {
  .global-feedback-close:hover {
    background: #f4f4f4;
    color: #222;
  }
}

.global-feedback-body {
  padding: 20px 28px 19px;
}

.global-feedback-success {
  position: relative;
  min-height: 320px;
  padding: 62px 42px 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-sizing: border-box;
  overflow: hidden;
}
.global-feedback-success h2 {
  margin: 0 0 10px;
  color: #202124;
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;
}
.global-feedback-success p {
  max-width: 390px;
  margin: 0;
  color: #70757d;
  font-size: 16px;
  line-height: 24px;
}

.global-feedback-success-close {
  position: absolute;
  top: 18px;
  right: 20px;
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #7b7f89;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 16px;
  transition: background 0.15s ease, color 0.15s ease;
}
@media (hover: hover) {
  .global-feedback-success-close:hover {
    background: #f4f4f6;
    color: #2f3137;
  }
}

.global-feedback-success-icon {
  width: 74px;
  height: 74px;
  margin-bottom: 24px;
  border-radius: 50%;
  background: #f7f1ff;
  border: 1px solid #eadbff;
  color: #7f39d4;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 26px rgba(127, 57, 212, 0.12);
}
.global-feedback-success-icon .anticon {
  font-size: 34px;
}

.global-feedback-success-countdown {
  margin-top: 18px;
  color: #7f39d4;
  font-size: 13px;
  line-height: 18px;
  font-weight: 500;
}

.global-feedback-question {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  margin-bottom: 10px;
  color: #222;
  font-size: 17px;
  line-height: 24px;
  font-weight: 700;
}
.global-feedback-question .required {
  margin-left: 2px;
  color: #ff4d4f;
}
.global-feedback-question .hint {
  margin-left: 6px;
  color: #999;
  font-weight: 400;
}

.global-feedback-issues {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 8px;
  margin-bottom: 8px;
}

.global-feedback-pill {
  height: 34px;
  padding: 0 16px;
  border: 1px solid #dedede;
  border-radius: 999px;
  background: #fff;
  color: #3d3d3d;
  font-size: 16px;
  line-height: 22px;
  white-space: nowrap;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}
@media (hover: hover) {
  .global-feedback-pill:hover {
    border-color: #cfc3f7;
    background: #fff;
    color: #5f42b9;
  }
}
.global-feedback-pill.active {
  border-color: #d28cff;
  background: #f9edff;
  color: #7f39d4;
}
@media (hover: hover) {
  .global-feedback-pill.active:hover {
    border-color: #c578f5;
    background: #f9edff;
    color: #7f39d4;
  }
}

.global-feedback-pill-close {
  color: currentColor;
  font-size: 11px;
  opacity: 0.8;
}

.global-feedback-issues-item + .global-feedback-textarea-wrap {
  margin-top: 13px;
}

.global-feedback-textarea-wrap textarea {
  display: block;
  width: 100%;
  height: 130px;
  padding: 13px 16px;
  border: 1px solid #dedede;
  border-radius: 18px;
  resize: none;
  outline: none;
  color: #333;
  font-size: 18px;
  line-height: 27px;
  font-family: inherit;
  box-sizing: border-box;
}
.global-feedback-textarea-wrap textarea::placeholder {
  color: #a5a5a5;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
}
.global-feedback-textarea-wrap textarea:focus {
  border-color: #d28cff;
  box-shadow: 0 0 0 2px rgba(210, 140, 255, 0.14);
}

.global-feedback-count {
  margin-top: 11px;
  color: #999;
  font-size: 16px;
  line-height: 22px;
  text-align: right;
}

.global-feedback-upload-wrap {
  display: block;
  margin-top: 20px;
}
.global-feedback-upload-wrap .ant-upload {
  display: block;
  width: 100%;
}

.global-feedback-upload {
  width: 100%;
  min-height: 70px;
  margin: 0;
  padding: 12px 14px;
  border: 1px dashed #d9d5ea;
  border-radius: 16px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfaff 100%);
  color: #333;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  box-sizing: border-box;
  text-align: left;
  transition: border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}
@media (hover: hover) {
  .global-feedback-upload:hover {
    border-color: #b99cff;
    background: #fbf8ff;
    box-shadow: 0 8px 20px rgba(123, 92, 255, 0.08);
  }
}

.global-feedback-upload-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: #f1edff;
  color: #6f46e8;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.global-feedback-upload-icon .anticon {
  font-size: 22px;
}

.global-feedback-upload-copy {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.global-feedback-upload-copy strong {
  color: #2f2f35;
  font-size: 16px;
  line-height: 22px;
  font-weight: 700;
}
.global-feedback-upload-copy em {
  color: #8a8f99;
  font-size: 13px;
  line-height: 18px;
  font-style: normal;
  font-weight: 400;
}

.global-feedback-upload-limit {
  height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  background: #f4f5f7;
  color: #747985;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 12px;
  line-height: 18px;
  font-weight: 700;
}

.global-feedback-file-list {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.global-feedback-file {
  min-height: 44px;
  padding: 8px 10px;
  border: 1px solid #ececf1;
  border-radius: 12px;
  background: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
  box-sizing: border-box;
}
@media (hover: hover) {
  .global-feedback-file:hover {
    border-color: #ded8f4;
    background: #fcfbff;
  }
}
.global-feedback-file button {
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #9aa0aa;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  cursor: pointer;
}
@media (hover: hover) {
  .global-feedback-file button:hover {
    background: #f4f2fb;
    color: #6f46e8;
  }
}

.global-feedback-file-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: #f6f4ff;
  color: #7b5cff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 15px;
}

.global-feedback-file-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.global-feedback-file-info strong {
  overflow: hidden;
  color: #3c4048;
  font-size: 13px;
  line-height: 18px;
  font-weight: 600;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.global-feedback-file-info em {
  color: #9aa0aa;
  font-size: 12px;
  line-height: 16px;
  font-style: normal;
}

.global-feedback-file-size {
  color: #8f95a1;
  font-size: 12px;
  line-height: 16px;
  text-align: right;
}

.global-feedback-footer {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  min-height: 72px;
  padding: 14px 28px;
  border-top: 1px solid #eeeeee;
  background: #fff;
  box-sizing: border-box;
}

.global-feedback-footer-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.global-feedback-reward-note {
  text-align: right;
}

.global-feedback-reward-note-main {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  color: var(--primary);
  font-size: 13px;
  line-height: 18px;
  font-weight: 600;
}

.global-feedback-reward-note-icon {
  flex-shrink: 0;
  font-size: 14px;
}

.global-feedback-reward-note-sub {
  margin-top: 2px;
  color: #7d8591;
  font-size: 12px;
  line-height: 16px;
}

.global-feedback-cancel,
.global-feedback-submit {
  height: 42px;
  padding: 0 22px;
  border-radius: 12px;
  font-size: 16px;
  line-height: 22px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}
.global-feedback-cancel:active,
.global-feedback-submit:active {
  transform: translateY(1px);
}

.global-feedback-cancel {
  border: 1px solid #d9dde5;
  background: #fff;
  color: #4b5563;
}
@media (hover: hover) {
  .global-feedback-cancel:hover {
    border-color: #b8beca;
    background: #f6f7f9;
    color: #1f2937;
  }
}

.global-feedback-submit {
  min-width: 108px;
  border: 0;
  color: #fff;
  background: linear-gradient(83deg, #FE59FD 0%, #F202B0 24%, #5151FF 50%, #0E5BF2 74%, #1FCEEC 99%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  box-shadow: 0 8px 18px rgba(123, 92, 255, 0.28);
}
@media (hover: hover) {
  .global-feedback-submit:hover {
    background: linear-gradient(83deg, #FE59FD 0%, #F202B0 24%, #5151FF 50%, #0E5BF2 74%, #1FCEEC 99%);
    filter: brightness(0.96);
    box-shadow: 0 10px 22px rgba(123, 92, 255, 0.36);
  }
}
.global-feedback-submit:disabled {
  cursor: not-allowed;
  background: #d7d9e0;
  box-shadow: none;
  color: #fff;
  transform: none;
}

.global-feedback-submit-loading {
  font-size: 15px;
}

@media screen and (max-width: 767px) {
  .global-feedback-modal {
    width: calc(100vw - 28px) !important;
    max-width: calc(100vw - 28px);
  }
  .global-feedback-modal .ant-modal-content {
    border-radius: 18px;
  }
  .global-feedback-header,
  .global-feedback-body,
  .global-feedback-footer {
    padding-left: 18px;
    padding-right: 18px;
  }
  .global-feedback-header h2 {
    font-size: 21px;
    line-height: 27px;
  }
  .global-feedback-header p {
    font-size: 15px;
    line-height: 21px;
  }
  .global-feedback-question,
  .global-feedback-pill,
  .global-feedback-upload span,
  .global-feedback-cancel,
  .global-feedback-submit {
    font-size: 15px;
  }
  .global-feedback-upload {
    align-items: flex-start;
    gap: 10px;
  }
  .global-feedback-upload-limit {
    display: none;
  }
}.product-centent {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}
.product-centent .img-mask {
  border-radius: 8px;
  overflow: hidden;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.05);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  pointer-events: none;
}

.product-a {
  padding-bottom: 100%;
  box-sizing: border-box;
  width: 100%;
  border-radius: 8px;
  position: relative;
  display: block;
}

.product-img-content {
  position: absolute;
  margin: auto;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  max-width: 100%;
  max-height: 100%;
}
/* 产品详情内容样式 */
.sourcing-product-detail-content {
  font-size: 16px;
  display: flex;
  flex-direction: column;
  height: 100%;
  /* 可滚动的内容区域 */
}
.sourcing-product-detail-content .detail-content-scroll {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 24px;
  box-sizing: border-box;
}
.sourcing-product-detail-content {
  /* 产品头部：图片 + 信息 两列布局 */
}
.sourcing-product-detail-content .product-header-section {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
}
.sourcing-product-detail-content .product-header-section .product-image-section {
  width: 200px;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f7ff;
}
.sourcing-product-detail-content .product-header-section .product-image-section .product-centent,
.sourcing-product-detail-content .product-header-section .product-image-section .product-a {
  width: 100%;
  height: 100%;
  border-radius: 8px;
}
.sourcing-product-detail-content .product-header-section .product-image-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sourcing-product-detail-content .product-header-section .product-info-section {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.sourcing-product-detail-content .product-header-section .product-info-section .product-name-row {
  display: flex;
  align-items: center;
  gap: 8px;
}
.sourcing-product-detail-content .product-header-section .product-info-section .product-name-row .product-name {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a2e;
}
.sourcing-product-detail-content .product-header-section .product-info-section .product-name-row .open-link-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  box-sizing: border-box;
  border: none;
  background: transparent;
  color: #6b7280;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.15s;
}
@media (hover: hover) {
  .sourcing-product-detail-content .product-header-section .product-info-section .product-name-row .open-link-btn:hover {
    color: #7c3aed;
    background: #f3f0ff;
  }
}
.sourcing-product-detail-content .product-header-section .product-info-section .price-moq-row {
  display: flex;
  align-items: center;
  gap: 16px;
}
.sourcing-product-detail-content .product-header-section .product-info-section .price-moq-row .product-price {
  font-size: 20px;
  font-weight: 700;
  color: #7c3aed;
}
.sourcing-product-detail-content .product-header-section .product-info-section .price-moq-row .product-moq {
  font-size: 16px;
  color: #6b7280;
}
.sourcing-product-detail-content {
  /* 属性匹配表格 */
}
.sourcing-product-detail-content .hit-attributes-section {
  margin-bottom: 16px;
}
.sourcing-product-detail-content .hit-attributes-section .section-title {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.sourcing-product-detail-content .hit-attributes-section .section-title svg {
  color: #7c3aed;
}
.sourcing-product-detail-content .hit-attributes-section .attributes-table {
  border: 1px solid #e8e5f0;
  border-radius: 8px;
  overflow: hidden;
  margin-top: 8px;
}
.sourcing-product-detail-content .hit-attributes-section .attributes-table .attr-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  box-sizing: border-box;
  border-bottom: 1px solid #e8e5f0;
}
.sourcing-product-detail-content .hit-attributes-section .attributes-table .attr-row:last-child {
  border-bottom: none;
}
.sourcing-product-detail-content .hit-attributes-section .attributes-table .attr-row.hit {
  background: #f8f7ff;
}
.sourcing-product-detail-content .hit-attributes-section .attributes-table .attr-row.hit .attr-status {
  color: #7c3aed;
}
.sourcing-product-detail-content .hit-attributes-section .attributes-table .attr-row.miss {
  background: transparent;
}
.sourcing-product-detail-content .hit-attributes-section .attributes-table .attr-row.miss .attr-status {
  color: #9ca3af;
}
.sourcing-product-detail-content .hit-attributes-section .attributes-table .attr-row .attr-status {
  font-size: 14px;
  font-weight: 600;
}
.sourcing-product-detail-content .hit-attributes-section .attributes-table .attr-row .attr-key {
  font-size: 16px;
  font-weight: 500;
  color: #1a1a2e;
  min-width: 100px;
}
.sourcing-product-detail-content .hit-attributes-section .attributes-table .attr-row .attr-value {
  font-size: 16px;
  color: #374151;
}
.sourcing-product-detail-content {
  /* 产品属性表格 */
}
.sourcing-product-detail-content .prod-attributes-section {
  margin-bottom: 16px;
}
.sourcing-product-detail-content .prod-attributes-section .section-title {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.sourcing-product-detail-content .prod-attributes-section .section-title svg {
  color: #7c3aed;
}
.sourcing-product-detail-content .prod-attributes-section .prod-attributes-table {
  border: 1px solid #e8e5f0;
  border-radius: 8px;
  overflow: hidden;
}
.sourcing-product-detail-content .prod-attributes-section .prod-attributes-table .prod-attr-row {
  display: flex;
  border-bottom: 1px solid #e8e5f0;
}
.sourcing-product-detail-content .prod-attributes-section .prod-attributes-table .prod-attr-row:last-child {
  border-bottom: none;
}
.sourcing-product-detail-content .prod-attributes-section .prod-attributes-table .prod-attr-row .prod-attr-key {
  width: 180px;
  padding: 12px 16px;
  box-sizing: border-box;
  background: #f8f7ff;
  color: #6b7280;
  font-size: 16px;
  font-weight: 500;
}
.sourcing-product-detail-content .prod-attributes-section .prod-attributes-table .prod-attr-row .prod-attr-value {
  flex: 1;
  padding: 12px 16px;
  box-sizing: border-box;
  color: #1a1a2e;
  font-size: 16px;
}
.sourcing-product-detail-content .section-title {
  font-size: 20px;
  font-weight: 600;
  color: #374151;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.sourcing-product-detail-content .section-title svg {
  color: #7c3aed;
}
.sourcing-product-detail-content .hit-badge {
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  box-sizing: border-box;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 600;
}
.sourcing-product-detail-content .hit-badge.hit-badge-full {
  background: #f3e8ff;
  color: #6d28d9;
}
.sourcing-product-detail-content .hit-badge.hit-badge-partial {
  background: #fef3c7;
  color: #92400e;
}
.sourcing-product-detail-content .hit-badge.hit-badge-none {
  background: transparent;
  color: #9ca3af;
}
.sourcing-product-detail-content {
  /* 统一的 info-table 样式（产品属性和供应商信息共用） */
}
.sourcing-product-detail-content .info-table {
  border: 1px solid #e8e5f0;
  border-radius: 8px;
  overflow: hidden;
}
.sourcing-product-detail-content .info-table .info-row {
  display: flex;
  border-bottom: 1px solid #e8e5f0;
}
.sourcing-product-detail-content .info-table .info-row:last-child {
  border-bottom: none;
}
.sourcing-product-detail-content .info-table .info-row .info-label {
  width: 180px;
  padding: 12px 16px;
  box-sizing: border-box;
  background: #f8f7ff;
  color: #6b7280;
  font-size: 16px;
  font-weight: 500;
}
.sourcing-product-detail-content .info-table .info-row .info-value {
  flex: 1;
  padding: 12px 16px;
  box-sizing: border-box;
  color: #1a1a2e;
  font-size: 16px;
}
.sourcing-product-detail-content .product-supplier-section {
  margin-bottom: 16px;
}
.sourcing-product-detail-content .product-supplier-section .section-title {
  font-size: 20px;
  font-weight: 600;
  color: #374151;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.sourcing-product-detail-content .product-supplier-section .section-title svg {
  color: #7c3aed;
}
.sourcing-product-detail-content .product-supplier-section .supplier-info-table .supplier-name-row {
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.sourcing-product-detail-content .product-supplier-section .supplier-info-table .supplier-name-row .supplier-name-content {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a2e;
}
.sourcing-product-detail-content .product-supplier-section .supplier-info-table .supplier-name-row .open-link-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  box-sizing: border-box;
  border: none;
  background: transparent;
  color: #6b7280;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.15s;
}
@media (hover: hover) {
  .sourcing-product-detail-content .product-supplier-section .supplier-info-table .supplier-name-row .open-link-btn:hover {
    color: #7c3aed;
    background: #f3f0ff;
  }
}
.sourcing-product-detail-content .detail-actions {
  padding: 16px 24px;
  box-sizing: border-box;
  border-top: 1px solid #e8e5f0;
  background: #fff;
  flex-shrink: 0;
}
.sourcing-product-detail-content .detail-actions .compare-action-btn {
  width: 100%;
  padding: 12px 16px;
  box-sizing: border-box;
  border: 1px solid #ddd6fe;
  border-radius: 8px;
  background: #fff;
  font-size: 16px;
  font-weight: 500;
  color: #6d28d9;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.15s;
}
.sourcing-product-detail-content .detail-actions .compare-action-btn svg, .sourcing-product-detail-content .detail-actions .compare-action-btn .ai-icon {
  width: 18px;
  height: 18px;
}
@media (hover: hover) {
  .sourcing-product-detail-content .detail-actions .compare-action-btn:hover {
    border-color: #c4b5fd;
    background: #f8f7ff;
    box-shadow: 0 2px 8px rgba(124, 58, 237, 0.08);
  }
}
.sourcing-product-detail-content .detail-actions .compare-action-btn.selected {
  border-color: #c4b5fd;
  background: #f8f7ff;
  color: #6d28d9;
}
@media (hover: hover) {
  .sourcing-product-detail-content .detail-actions .compare-action-btn.selected:hover {
    border-color: #a78bfa;
    background: #f3f0ff;
  }
}
.sourcing-product-detail-content .detail-actions .compare-action-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  color: #9ca3af;
  border-color: #e5e7eb;
}
@media (hover: hover) {
  .sourcing-product-detail-content .detail-actions .compare-action-btn:disabled:hover {
    background: #fff;
    box-shadow: none;
  }
}

@media screen and (max-width: 768px) {
  .sourcing-product-detail-drawer .ant-drawer-content-wrapper {
    width: 100vw;
    max-width: 100vw;
  }
  .sourcing-product-detail-drawer .ant-drawer-body {
    padding: 0;
    box-sizing: border-box;
    overflow-x: hidden;
  }
  .sourcing-product-detail-content {
    min-width: 0;
  }
  .sourcing-product-detail-content .detail-content-scroll {
    padding: 20px;
    box-sizing: border-box;
    overflow-x: hidden;
  }
  .sourcing-product-detail-content .product-header-section {
    flex-direction: column;
    gap: 16px;
  }
  .sourcing-product-detail-content .product-header-section .product-image-section {
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
  }
  .sourcing-product-detail-content .product-header-section .product-info-section {
    min-width: 0;
  }
  .sourcing-product-detail-content .product-header-section .product-info-section .product-name-row {
    align-items: flex-start;
  }
  .sourcing-product-detail-content .product-header-section .product-info-section .product-name-row .product-name {
    min-width: 0;
    overflow-wrap: anywhere;
    word-break: break-word;
    font-size: 20px;
    line-height: 1.35;
  }
  .sourcing-product-detail-content .product-header-section .product-info-section .product-name-row .open-link-btn {
    flex-shrink: 0;
  }
  .sourcing-product-detail-content .product-header-section .product-info-section .price-moq-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }
  .sourcing-product-detail-content .product-header-section .product-info-section .price-moq-row .product-price {
    overflow-wrap: anywhere;
    word-break: break-word;
    font-size: 20px;
    line-height: 1.3;
  }
  .sourcing-product-detail-content .prod-attributes-section .prod-attributes-table .prod-attr-row .prod-attr-key {
    width: 42%;
    min-width: 0;
    padding: 10px 12px;
    box-sizing: border-box;
    overflow-wrap: anywhere;
    word-break: break-word;
  }
  .sourcing-product-detail-content .prod-attributes-section .prod-attributes-table .prod-attr-row .prod-attr-value {
    min-width: 0;
    padding: 10px 12px;
    box-sizing: border-box;
    overflow-wrap: anywhere;
    word-break: break-word;
  }
  .sourcing-product-detail-content .info-table .info-row .info-label {
    width: 42%;
    min-width: 0;
    padding: 10px 12px;
    box-sizing: border-box;
    overflow-wrap: anywhere;
    word-break: break-word;
  }
  .sourcing-product-detail-content .info-table .info-row .info-value {
    min-width: 0;
    padding: 10px 12px;
    box-sizing: border-box;
    overflow-wrap: anywhere;
    word-break: break-word;
  }
}
@media screen and (max-width: 480px) {
  .sourcing-product-detail-content .detail-content-scroll {
    padding: 16px;
    box-sizing: border-box;
  }
  .sourcing-product-detail-content .section-title,
  .sourcing-product-detail-content .product-supplier-section .section-title,
  .sourcing-product-detail-content .prod-attributes-section .section-title {
    font-size: 18px;
  }
  .sourcing-product-detail-content .product-header-section .product-info-section .product-name-row .product-name {
    font-size: 18px;
  }
  .sourcing-product-detail-content .product-header-section .product-info-section .price-moq-row .product-price {
    font-size: 18px;
  }
  .sourcing-product-detail-content .product-header-section .product-info-section .price-moq-row .product-moq {
    font-size: 14px;
  }
  .sourcing-product-detail-content .prod-attributes-section .prod-attributes-table .prod-attr-row .prod-attr-key,
  .sourcing-product-detail-content .prod-attributes-section .prod-attributes-table .prod-attr-row .prod-attr-value {
    font-size: 14px;
  }
  .sourcing-product-detail-content .info-table .info-row .info-label,
  .sourcing-product-detail-content .info-table .info-row .info-value {
    font-size: 14px;
  }
}
/* ── 产品卡片 ── */
.sourcing-product-card {
  position: relative;
  border: 1px solid #ece8f4;
  border-radius: 10px;
  overflow: visible;
  background: #fff;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  width: 220px;
  flex-shrink: 0;
}
@media (hover: hover) {
  .sourcing-product-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(109, 86, 196, 0.08);
    border-color: #ddd6fe;
  }
}
.sourcing-product-card {
  /* 已选中状态 */
}
.sourcing-product-card.compare-selected {
  border: 1.5px solid #7c3aed;
  box-shadow: 0 0 0 2px rgba(124, 58, 237, 0.25), 0 4px 12px rgba(124, 58, 237, 0.12);
}

@media (max-width: 1680px) {
  .sourcing-product-card {
    width: 200px;
  }
}
@media (max-width: 1440px) {
  .sourcing-product-card {
    width: 180px;
  }
  .product-name {
    font-size: 12.5px;
  }
}
@media (max-width: 1280px) {
  .sourcing-product-card {
    width: 160px;
  }
  .product-info {
    padding: 8px;
    box-sizing: border-box;
  }
  .product-name {
    font-size: 12px;
  }
  .product-price {
    font-size: 12px;
  }
  .product-moq {
    font-size: 11px;
  }
}
/* ── 产品图片容器 ── */
.product-image-container {
  position: relative;
  width: 100%;
  background: #f8f7ff;
  overflow: hidden;
  border-radius: 10px 10px 0 0;
  /* 整图即"加入比较"的点击区；只读模式和跑任务时不带这个类，保持默认光标 */
}
.product-image-container.is-clickable {
  cursor: pointer;
}
.product-image-container {
  /* 键盘聚焦态。只在键盘导航时出现，鼠标点击不会留下描边 */
}
.product-image-container:focus-visible {
  outline: 2px solid #7c3aed;
  outline-offset: -2px;
}
.product-image-container {
  /* 覆盖 CommendImgCard 样式 */
}
.product-image-container .product-centent {
  width: 100%;
  border-radius: 10px 10px 0 0;
}
.product-image-container .product-a {
  border-radius: 10px 10px 0 0;
}
.product-image-container {
  /* hover 图片放大效果 */
}
@media (hover: hover) {
  .sourcing-product-card:hover .product-image-container .product-img-content {
    transform: scale(1.05);
  }
}

.product-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
@media (hover: hover) {
  .sourcing-product-card:hover .product-image {
    transform: scale(1.05);
  }
}

.product-image-placeholder {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #c4b5fd;
}
.product-image-placeholder svg {
  width: 32px;
  height: 32px;
}

/* ── 比较 + 按钮（hover 显示） ── */
.product-compare-add {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  z-index: 2;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(124, 58, 237, 0.85);
  color: #fff;
  font-size: 22px;
  line-height: 36px;
  text-align: center;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.25s, transform 0.25s;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
}

@media (hover: hover) {
  .product-image-container:hover .product-compare-add {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}
@media (hover: hover) {
  .product-image-container:hover::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.18);
    border-radius: 10px 10px 0 0;
    pointer-events: none;
    transition: background 0.25s;
  }
}
@media (hover: hover) {
  .product-compare-add:hover {
    background: rgba(109, 40, 217, 0.95);
    box-shadow: 0 4px 14px rgba(124, 58, 237, 0.4);
  }
}
.product-compare-add.added {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  background: rgba(124, 58, 237, 0.85);
}

@media (hover: hover) {
  .product-compare-add.added:hover {
    background: rgba(109, 40, 217, 0.95);
    box-shadow: 0 4px 14px rgba(124, 58, 237, 0.4);
  }
}
.product-compare-add:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  background: rgba(156, 163, 175, 0.7);
}
@media (hover: hover) {
  .product-compare-add:disabled:hover {
    background: rgba(156, 163, 175, 0.7);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
  }
}

/* 触屏没有 hover，居中那颗 + 永远不会出现，整图可点也就没了任何暗示。
   这里改成常显，并从图片正中挪到右上角：36px 紫圆钮压在产品图主体上太挡图，
   右上角的小勾选钮也更贴近"卡片多选"的通用直觉。整图仍可点，这颗钮只作视觉提示 */
@media (hover: none) and (pointer: coarse) {
  .product-compare-add {
    top: 8px;
    right: 8px;
    left: auto;
    transform: none; /* 覆盖桌面端居中定位的位移与缩放 */
    width: 28px;
    height: 28px;
    font-size: 18px;
    line-height: 28px;
    opacity: 1;
    background: rgba(255, 255, 255, 0.92);
    color: #7c3aed;
    border: 1px solid rgba(124, 58, 237, 0.35);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.12);
  }
  /* 选中态：实心紫底白勾，和卡片的紫色描边呼应。
     :not(:disabled) 是保住上面禁用态的灰色，否则跑任务时选中的卡片仍显示可用的紫色 */
  .product-compare-add.added:not(:disabled) {
    transform: none;
    background: #7c3aed;
    color: #fff;
    border-color: #7c3aed;
  }
}
/* ── 产品信息 ── */
.product-info {
  padding: 8px 10px 34px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-name {
  font-size: 16px;
  color: #1a1a2e;
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-height: 1.35;
  min-height: 2.7em;
  margin-bottom: 4px;
}
@media (hover: hover) {
  .product-name:hover {
    color: #7c3aed;
  }
}

.product-price-row {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 5px;
}

.product-price {
  font-size: 16px;
  font-weight: 700;
  color: #7c3aed;
}

.product-moq {
  font-size: 14px;
  color: #8b8ba0;
  padding: 1px 5px;
  box-sizing: border-box;
  border-radius: 3px;
}

/* ── 属性匹配徽章 ── */
.hit-badge-row {
  position: absolute;
  right: 10px;
  bottom: 9px;
  z-index: 1;
}

.hit-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 2px 8px;
  box-sizing: border-box;
  border-radius: 10px;
  font-size: 11px;
  font-weight: 600;
  cursor: default;
}

.hit-badge-full {
  background: #d1fae5;
  color: #065f46;
}

.hit-badge-partial {
  background: #fef3c7;
  color: #92400e;
}

.hit-badge-none {
  background: #fee2e2;
  color: #991b1b;
}

/* ── Popover 样式 ── */
.hit-badge-popover .ant-popover-inner {
  background: #fff;
  color: #374151;
  font-size: 12px;
  padding: 10px 14px;
  box-sizing: border-box;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  border: 1px solid #e5e7eb;
}
.hit-badge-popover .ant-popover-arrow::before {
  background: #fff;
  border: 1px solid #e5e7eb;
}

.hit-badge-popover-content {
  line-height: 1.6;
  min-width: 200px;
  max-width: 300px;
}
.hit-badge-popover-content > div {
  margin-bottom: 2px;
}

/* ── 产品详情 Drawer 样式 ── */
.sourcing-product-detail-drawer .ant-drawer-body {
  display: flex;
  flex-direction: column;
  padding: 0;
  box-sizing: border-box;
}
.sourcing-product-detail-drawer .ant-drawer-header .ant-drawer-title {
  font-size: 20px;
  font-weight: 600;
  text-align: left;
}
/*一行省略号*/
/*多行省略号(默认两行)*/
/*水平垂直居中 不固定宽高*/
/*animate*/
/*Scrollbar*/
/*更改svg图片颜色 父级样式要加overflow: hidden;*/
/* 供应商详情内容样式 */
.sourcing-supplier-detail-content {
  font-size: 16px;
  display: flex;
  flex-direction: column;
  height: 100%;
  /* 可滚动的内容区域 */
}
.sourcing-supplier-detail-content .detail-content-scroll {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 24px;
  box-sizing: border-box;
}
.sourcing-supplier-detail-content .supplier-detail-header {
  margin-bottom: 16px;
}
.sourcing-supplier-detail-content .supplier-detail-header .supplier-name-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.sourcing-supplier-detail-content .supplier-detail-header .supplier-name-row .platform-badge {
  flex-shrink: 0;
}
.sourcing-supplier-detail-content .supplier-detail-header .supplier-name-row .supplier-name-title {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a2e;
}
.sourcing-supplier-detail-content .supplier-detail-header .supplier-name-row .open-link-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  box-sizing: border-box;
  border: none;
  background: transparent;
  color: #6b7280;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.15s;
}
@media (hover: hover) {
  .sourcing-supplier-detail-content .supplier-detail-header .supplier-name-row .open-link-btn:hover {
    color: #7c3aed;
    background: #f3f0ff;
  }
}
.sourcing-supplier-detail-content .supplier-detail-header .company-type-tag {
  display: inline-block;
  padding: 2px 8px;
  box-sizing: border-box;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  background: #eff6ff;
  color: #2563eb;
  border: 1px solid #bfdbfe;
}
.sourcing-supplier-detail-content {
  /* 供应商图片轮播 */
}
.sourcing-supplier-detail-content .supplier-images-carousel {
  margin-bottom: 16px;
  border-radius: 8px;
  overflow: hidden;
  width: 100%;
}
.sourcing-supplier-detail-content .supplier-images-carousel .images-carousel-inner {
  width: 100%;
}
.sourcing-supplier-detail-content .supplier-images-carousel .images-carousel-inner .carousel-image-wrapper {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.sourcing-supplier-detail-content .supplier-images-carousel .images-carousel-inner .carousel-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sourcing-supplier-detail-content .supplier-images-carousel .ant-carousel-dots {
  bottom: 12px;
}
.sourcing-supplier-detail-content .supplier-images-carousel .ant-carousel-dots .ant-carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.5);
}
.sourcing-supplier-detail-content .supplier-images-carousel .ant-carousel-dots .ant-carousel-dot.active {
  background: #7c3aed;
}
.sourcing-supplier-detail-content .supplier-images-carousel {
  /* 轮播箭头样式 */
}
.sourcing-supplier-detail-content .supplier-images-carousel .ant-carousel-arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.8);
  color: #1a1a2e;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
@media (hover: hover) {
  .sourcing-supplier-detail-content .supplier-images-carousel .ant-carousel-arrow:hover {
    background: #fff;
    color: #7c3aed;
  }
}
.sourcing-supplier-detail-content .section-title {
  font-size: 16px;
  font-weight: 600;
  color: #374151;
  margin-bottom: 8px;
}
.sourcing-supplier-detail-content .supplier-profile {
  margin-bottom: 16px;
}
.sourcing-supplier-detail-content .supplier-profile .profile-text {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-size: 16px;
  line-height: 1.6;
}
@media (hover: hover) {
  .sourcing-supplier-detail-content .supplier-profile .profile-text:hover {
    color: #374151;
  }
}
.sourcing-supplier-detail-content {
  /* Popover 样式 */
}
.sourcing-supplier-detail-content .profile-popover .ant-popover-inner {
  background: #fff;
  width: 400px;
  padding: 12px 16px;
  box-sizing: border-box;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}
.sourcing-supplier-detail-content .profile-popover .ant-popover-content {
  max-width: 400px;
}
.sourcing-supplier-detail-content .profile-popover-content {
  font-size: 16px;
  line-height: 1.6;
  color: #374151;
}
.sourcing-supplier-detail-content .supplier-basic-info {
  margin-bottom: 16px;
}
.sourcing-supplier-detail-content .supplier-basic-info .info-table {
  border: 1px solid #e8e5f0;
  border-radius: 8px;
  overflow: hidden;
}
.sourcing-supplier-detail-content .supplier-basic-info .info-table .info-row {
  display: flex;
  border-bottom: 1px solid #e8e5f0;
}
.sourcing-supplier-detail-content .supplier-basic-info .info-table .info-row:last-child {
  border-bottom: none;
}
.sourcing-supplier-detail-content .supplier-basic-info .info-table .info-row .info-label {
  width: 200px;
  padding: 12px 16px;
  box-sizing: border-box;
  background: #f8f7ff;
  color: #6b7280;
  font-size: 16px;
  font-weight: 500;
}
.sourcing-supplier-detail-content .supplier-basic-info .info-table .info-row .info-value {
  flex: 1;
  padding: 12px 16px;
  box-sizing: border-box;
  color: #1a1a2e;
  font-size: 16px;
}
.sourcing-supplier-detail-content .related-products {
  margin-bottom: 16px;
}
.sourcing-supplier-detail-content .related-products .products-scroll {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 12px;
}
.sourcing-supplier-detail-content .related-products .products-scroll .product-item {
  border: 1px solid #ece8f4;
  border-radius: 10px;
  overflow: visible;
  background: #fff;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  width: 100%;
  cursor: pointer;
}
@media (hover: hover) {
  .sourcing-supplier-detail-content .related-products .products-scroll .product-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(109, 86, 196, 0.08);
    border-color: #ddd6fe;
  }
  .sourcing-supplier-detail-content .related-products .products-scroll .product-item:hover .product-name {
    color: #7c3aed;
  }
}
.sourcing-supplier-detail-content .related-products .products-scroll .product-item .product-img {
  position: relative;
  width: 100%;
  background: #f8f7ff;
  overflow: hidden;
  border-radius: 10px 10px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sourcing-supplier-detail-content .related-products .products-scroll .product-item .product-img .product-centent,
.sourcing-supplier-detail-content .related-products .products-scroll .product-item .product-img .product-a {
  width: 100%;
  height: 100%;
  border-radius: 10px 10px 0 0;
}
.sourcing-supplier-detail-content .related-products .products-scroll .product-item .product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sourcing-supplier-detail-content .related-products .products-scroll .product-item .product-info {
  padding: 8px 10px 10px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}
.sourcing-supplier-detail-content .related-products .products-scroll .product-item .product-info .product-name {
  font-size: 16px;
  color: #1a1a2e;
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-height: 1.35;
  min-height: 2.7em;
  margin-bottom: 4px;
}
.sourcing-supplier-detail-content .related-products .products-scroll .product-item .product-info .product-price {
  font-size: 16px;
  font-weight: 700;
  color: #7c3aed;
}
.sourcing-supplier-detail-content .related-products .products-scroll .product-item .product-info .product-moq {
  font-size: 14px;
  color: #8b8ba0;
  padding: 1px 5px;
  box-sizing: border-box;
  border-radius: 3px;
}
.sourcing-supplier-detail-content .detail-actions {
  padding: 16px 24px;
  box-sizing: border-box;
  border-top: 1px solid #e8e5f0;
  background: #fff;
  flex-shrink: 0;
}
.sourcing-supplier-detail-content .detail-actions .deep-dive-btn {
  width: 100%;
  padding: 12px 16px;
  box-sizing: border-box;
  border: 1px solid #ddd6fe;
  border-radius: 8px;
  background: #fff;
  font-size: 16px;
  font-weight: 500;
  color: #6d28d9;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all 0.15s;
}
.sourcing-supplier-detail-content .detail-actions .deep-dive-btn svg {
  width: 18px;
  height: 18px;
}
@media (hover: hover) {
  .sourcing-supplier-detail-content .detail-actions .deep-dive-btn:hover {
    border-color: #c4b5fd;
    background: #f8f7ff;
    box-shadow: 0 2px 8px rgba(124, 58, 237, 0.08);
  }
}
.sourcing-supplier-detail-content .detail-actions .deep-dive-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  color: #9ca3af;
  border-color: #e5e7eb;
}
@media (hover: hover) {
  .sourcing-supplier-detail-content .detail-actions .deep-dive-btn:disabled:hover {
    background: #fff;
    box-shadow: none;
  }
}

@media screen and (max-width: 768px) {
  .sourcing-supplier-detail-drawer .ant-drawer-content-wrapper {
    width: 100% !important;
  }
  .sourcing-supplier-detail-drawer .ant-drawer-header {
    padding: 12px 16px;
    box-sizing: border-box;
  }
  .sourcing-supplier-detail-drawer .ant-drawer-body {
    padding: 0;
    box-sizing: border-box;
  }
  .sourcing-supplier-detail-content {
    font-size: 14px;
  }
  .sourcing-supplier-detail-content .detail-content-scroll {
    padding: 16px;
    box-sizing: border-box;
  }
  .sourcing-supplier-detail-content .supplier-detail-header .supplier-name-row {
    align-items: flex-start;
    gap: 6px;
  }
  .sourcing-supplier-detail-content .supplier-detail-header .supplier-name-row .supplier-name-title {
    min-width: 0;
    font-size: 18px;
    line-height: 1.35;
    word-break: break-word;
  }
  .sourcing-supplier-detail-content .supplier-detail-header .supplier-name-row .open-link-btn {
    flex-shrink: 0;
    margin-top: 1px;
  }
  .sourcing-supplier-detail-content .supplier-detail-header .company-type-tag {
    font-size: 12px;
    line-height: 18px;
  }
  .sourcing-supplier-detail-content .supplier-images-carousel {
    border-radius: 6px;
  }
  .sourcing-supplier-detail-content .supplier-images-carousel .images-carousel-inner .carousel-image-wrapper {
    aspect-ratio: 4/3;
  }
  .sourcing-supplier-detail-content .supplier-images-carousel .ant-carousel-arrow {
    display: none;
  }
  .sourcing-supplier-detail-content .section-title {
    font-size: 15px;
  }
  .sourcing-supplier-detail-content .supplier-basic-info .info-table .info-row {
    display: block;
  }
  .sourcing-supplier-detail-content .supplier-basic-info .info-table .info-row .info-label,
  .sourcing-supplier-detail-content .supplier-basic-info .info-table .info-row .info-value {
    display: block;
    width: 100%;
    box-sizing: border-box;
    padding: 8px 10px;
    font-size: 14px;
  }
  .sourcing-supplier-detail-content .supplier-basic-info .info-table .info-row .info-label {
    border-bottom: 1px solid #f0edf7;
  }
  .sourcing-supplier-detail-content .supplier-basic-info .info-table .info-row .info-value {
    word-break: break-word;
  }
  .sourcing-supplier-detail-content .supplier-profile .profile-text {
    font-size: 14px;
    line-height: 1.55;
  }
  .sourcing-supplier-detail-content .profile-popover .ant-popover-inner,
  .sourcing-supplier-detail-content .profile-popover .ant-popover-content {
    max-width: calc(100vw - 32px);
    width: calc(100vw - 32px);
  }
  .sourcing-supplier-detail-content .profile-popover-content {
    font-size: 14px;
  }
  .sourcing-supplier-detail-content .related-products .products-scroll {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  .sourcing-supplier-detail-content .related-products .products-scroll .product-item {
    border-radius: 8px;
  }
  .sourcing-supplier-detail-content .related-products .products-scroll .product-item .product-img {
    border-radius: 8px 8px 0 0;
  }
  .sourcing-supplier-detail-content .related-products .products-scroll .product-item .product-info {
    padding: 8px;
    box-sizing: border-box;
  }
  .sourcing-supplier-detail-content .related-products .products-scroll .product-item .product-info .product-name,
  .sourcing-supplier-detail-content .related-products .products-scroll .product-item .product-info .product-price {
    font-size: 13px;
  }
  .sourcing-supplier-detail-content .related-products .products-scroll .product-item .product-info .product-moq {
    padding: 0;
    box-sizing: border-box;
    font-size: 12px;
  }
  .sourcing-supplier-detail-content .detail-actions {
    padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
    box-sizing: border-box;
  }
  .sourcing-supplier-detail-content .detail-actions .deep-dive-btn {
    padding: 11px 14px;
    box-sizing: border-box;
    font-size: 15px;
  }
}
@media screen and (max-width: 360px) {
  .sourcing-supplier-detail-content .related-products .products-scroll {
    grid-template-columns: 1fr;
  }
}
/* ── 供应商卡片 ── */
.sourcing-supplier-card {
  border: 1px solid #e8e5f0;
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow 0.15s;
  width: 100%;
  max-width: 100%;
  padding: 20px;
  box-sizing: border-box;
}
@media (hover: hover) {
  .sourcing-supplier-card:hover {
    box-shadow: 0 2px 12px rgba(124, 58, 237, 0.08);
  }
}
.sourcing-supplier-card {
  /* 其他供应商区域：白色背景 */
}
.alt-suppliers-section .sourcing-supplier-card {
  background: #fff;
}

/* AI 推荐供应商卡片：渐变背景 */
.supplier-section .sourcing-supplier-card {
  background: linear-gradient(180deg, #f0f3ff 5%, #fbfcff 41%, #fff 98%);
}

.sourcing-supplier-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.supplier-info {
  flex: 1;
  min-width: 0;
}

.supplier-name {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  max-width: 100%;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  color: #1a1a2e;
}
@media (hover: hover) {
  .supplier-name:hover {
    color: #7c3aed;
  }
}
.supplier-name .platform-badge {
  flex-shrink: 0;
}
.supplier-name a, .supplier-name span:not(.platform-badge) {
  flex: 1;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.supplier-name a {
  color: inherit;
  text-decoration: none;
}
@media (hover: hover) {
  .supplier-name a:hover {
    text-decoration: underline;
    color: #7c3aed;
  }
}

.supplier-meta {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 4px;
  font-size: 11.5px;
  color: #6b7280;
}

.company-type-tag {
  display: inline-block;
  padding: 1px 6px;
  box-sizing: border-box;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 600;
  line-height: 18px;
  background: #eff6ff;
  color: #2563eb;
  border: 1px solid #bfdbfe;
}

.platform-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  box-sizing: border-box;
  background: transparent;
  border: none;
  flex-shrink: 0;
}
.platform-badge img {
  width: 22px;
  height: 22px;
}

.btn-deep-dive {
  padding: 5px 12px;
  box-sizing: border-box;
  border: 1px solid #ddd6fe;
  border-radius: 8px;
  background: #fff;
  font-size: 14px;
  font-weight: 500;
  color: #6d28d9;
  cursor: pointer;
  transition: all 0.15s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  white-space: nowrap;
}
.btn-deep-dive svg {
  width: 13px;
  height: 13px;
}
@media (hover: hover) {
  .btn-deep-dive:hover {
    border-color: #c4b5fd;
    background: #f8f7ff;
    box-shadow: 0 2px 6px rgba(124, 58, 237, 0.08);
  }
}
.btn-deep-dive:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  color: #9ca3af;
  border-color: #e5e7eb;
}
@media (hover: hover) {
  .btn-deep-dive:disabled:hover {
    background: #fff;
    box-shadow: none;
  }
}

/* ── 产品网格（水平滚动） ── */
.sourcing-product-grid {
  display: flex;
  gap: 12px;
  padding: 10px 0;
  box-sizing: border-box;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: thin;
  scrollbar-color: #ddd6fe transparent;
  max-width: 100%;
}
.sourcing-product-grid::-webkit-scrollbar {
  height: 4px;
}
.sourcing-product-grid::-webkit-scrollbar-track {
  background: transparent;
}
.sourcing-product-grid::-webkit-scrollbar-thumb {
  background: #ddd6fe;
  border-radius: 4px;
}
@media (hover: hover) {
  .sourcing-product-grid::-webkit-scrollbar-thumb:hover {
    background: #c4b5fd;
  }
}

@media (max-width: 1280px) {
  .sourcing-product-grid {
    gap: 6px;
  }
}
/* ── 供应商详情 Drawer 样式 ── */
.sourcing-supplier-detail-drawer .ant-drawer-body {
  display: flex;
  flex-direction: column;
  padding: 0;
  box-sizing: border-box;
}
.sourcing-supplier-detail-drawer .ant-drawer-header .ant-drawer-title {
  font-size: 20px;
  font-weight: 600;
  text-align: left;
}
/* Loading 页面样式 */
.product-loading-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
  padding: 40px 20px;
  box-sizing: border-box;
  background: linear-gradient(180deg, rgba(124, 58, 237, 0.02) 0%, transparent 100%);
}

.loading-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  width: 100%;
  max-width: 600px;
}

/* ===== 搜索图标 ===== */
.search-icon-box {
  position: relative;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.search-icon-box .search-svg {
  color: #7c3aed;
  animation: icon-bounce 1.2s ease-in-out infinite;
  z-index: 2;
}
.search-icon-box .icon-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 2px solid #7c3aed;
  border-radius: 50%;
  animation: ring-pulse 1.5s ease-out infinite;
  opacity: 0;
}
.search-icon-box .ring-1 {
  animation-delay: 0s;
}
.search-icon-box .ring-2 {
  animation-delay: 0.75s;
  border-color: #a78bfa;
}

@keyframes icon-bounce {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08);
  }
}
@keyframes ring-pulse {
  0% {
    transform: scale(0.8);
    opacity: 0.6;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}
/* ===== 文字和打字动画 ===== */
.loading-text-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

.loading-text {
  font-size: 18px;
  font-weight: 600;
  color: #7c3aed;
  animation: text-pulse 1.5s ease-in-out infinite;
}

@keyframes text-pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.02);
  }
}
.loading-wave {
  display: flex;
  align-items: center;
  gap: 3px;
  height: 18px;
}
.loading-wave span {
  width: 3px;
  height: 100%;
  background: #7c3aed;
  border-radius: 3px;
  animation: wave-scale 1s ease-in-out infinite;
}
.loading-wave span:nth-child(1) {
  animation-delay: 0s;
}
.loading-wave span:nth-child(2) {
  animation-delay: 0.1s;
}
.loading-wave span:nth-child(3) {
  animation-delay: 0.2s;
}
.loading-wave span:nth-child(4) {
  animation-delay: 0.3s;
}

@keyframes wave-scale {
  0%, 100% {
    transform: scaleY(0.4);
    opacity: 0.5;
  }
  50% {
    transform: scaleY(1);
    opacity: 1;
  }
}
/* ===== 产品卡片骨架 ===== */
.card-skeletons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  width: 100%;
  padding: 0 40px;
  box-sizing: border-box;
}

.skeleton-card {
  background: white;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  padding: 12px;
  box-sizing: border-box;
  animation: card-float 2.5s ease-in-out infinite;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.card-1 {
  animation-delay: 0s;
}

.card-2 {
  animation-delay: 0.4s;
}

.card-3 {
  animation-delay: 0.8s;
}

@keyframes card-float {
  0%, 100% {
    transform: translateY(0);
    opacity: 0.6;
  }
  50% {
    transform: translateY(-6px);
    opacity: 0.9;
  }
}
.skeleton-image {
  width: 100%;
  height: 80px;
  background: linear-gradient(90deg, #f3f4f6 25%, #e5e7eb 50%, #f3f4f6 75%);
  background-size: 200% 100%;
  border-radius: 8px;
  animation: shimmer 1.5s linear infinite;
}

.skeleton-lines {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.skeleton-line {
  height: 10px;
  background: linear-gradient(90deg, #f3f4f6 25%, #e5e7eb 50%, #f3f4f6 75%);
  background-size: 200% 100%;
  border-radius: 5px;
  animation: shimmer 1.5s linear infinite;
}
.skeleton-line.short {
  width: 60%;
  height: 8px;
}

@keyframes shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}
/* ===== 进度指示 ===== */
.progress-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 0 40px;
  box-sizing: border-box;
}

.progress-track {
  position: relative;
  width: 100%;
  max-width: 400px;
  height: 5px;
  background: #e5e7eb;
  border-radius: 5px;
  overflow: hidden;
}

.progress-glow {
  position: absolute;
  width: 50px;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(124, 58, 237, 0.5), transparent);
  animation: glow-slide 2s ease-in-out infinite;
}

@keyframes glow-slide {
  0% {
    left: -50px;
  }
  100% {
    left: 100%;
  }
}
.progress-fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 25%;
  height: 100%;
  background: linear-gradient(90deg, #7c3aed, #a78bfa);
  border-radius: 5px;
  animation: fill-expand 2.5s ease-in-out infinite;
}

@keyframes fill-expand {
  0%, 100% {
    width: 15%;
    opacity: 0.7;
  }
  50% {
    width: 45%;
    opacity: 1;
  }
}
.progress-label {
  font-size: 13px;
  color: #9ca3af;
  font-style: italic;
}

/* ===== 深色模式 ===== */
.dark .product-loading-page {
  background: linear-gradient(180deg, rgba(167, 139, 250, 0.04) 0%, transparent 100%);
}

.dark .search-svg {
  color: #a78bfa;
}

.dark .icon-ring {
  border-color: #a78bfa;
}

.dark .icon-ring.ring-2 {
  border-color: #c4b5fd;
}

.dark .loading-text {
  color: #e5e7eb;
}

.dark .loading-wave span {
  background: #a78bfa;
}

.dark .skeleton-card {
  background: rgba(30, 30, 40, 0.8);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.dark .skeleton-image,
.dark .skeleton-line {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.05) 25%, rgba(255, 255, 255, 0.08) 50%, rgba(255, 255, 255, 0.05) 75%);
  background-size: 200% 100%;
}

.dark .progress-track {
  background: rgba(255, 255, 255, 0.1);
}

.dark .progress-glow {
  background: linear-gradient(90deg, transparent, rgba(167, 139, 250, 0.4), transparent);
}

.dark .progress-fill {
  background: linear-gradient(90deg, #a78bfa, #c4b5fd);
}

.dark .progress-label {
  color: #6b7280;
}.supplier-search-progress {
  container-type: inline-size;
  position: relative;
  overflow: hidden;
  padding: 14px 15px;
  box-sizing: border-box;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 6px 18px rgba(17, 24, 39, 0.04);
}

.supplier-progress-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
}

.supplier-progress-eyebrow {
  margin-bottom: 4px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9ca3af;
}

.supplier-progress-title {
  font-size: 15px;
  line-height: 1.35;
  font-weight: 700;
  color: #111827;
}

.supplier-progress-track {
  width: 100%;
  height: 5px;
  overflow: hidden;
  border-radius: 999px;
  background: #edf0f4;
}

.supplier-progress-bar {
  position: relative;
  overflow: hidden;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #7c3aed, #8b5cf6 52%, #10b981);
  box-shadow: 0 0 10px rgba(16, 185, 129, 0.18);
  transition: width 0.3s ease;
}
.supplier-progress-bar::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.45), 0 0 12px rgba(16, 185, 129, 0.55);
  transform: translate(45%, -50%);
  z-index: 1;
}
.supplier-progress-bar::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, transparent 34%, rgba(255, 255, 255, 0.42) 46%, transparent 58%, transparent 100%);
  transform: translateX(-100%);
  animation: supplier-progress-flow 1.35s linear infinite;
}

.supplier-progress-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 6px;
  font-size: 11px;
  font-weight: 700;
  color: #9ca3af;
}

.supplier-progress-steps {
  display: flex;
  margin-top: 11px;
  overflow-x: auto;
  padding: 6px 0 7px;
  box-sizing: border-box;
}

.supplier-progress-step {
  position: relative;
  display: flex;
  flex: 1 0 118px;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  min-width: 0;
  padding: 0 8px;
  box-sizing: border-box;
  color: #9ca3af;
}
.supplier-progress-step::before {
  content: "";
  position: absolute;
  top: 9px;
  left: calc(-50% + 17px);
  right: calc(50% + 17px);
  height: 1px;
  border-radius: 99px;
  background-color: #e8ecf2;
  z-index: 0;
}
.supplier-progress-step:first-child::before {
  display: none;
}
.supplier-progress-step.completed {
  color: #047857;
}
.supplier-progress-step.completed::before {
  background-color: #9fe7ce;
}
.supplier-progress-step.completed .supplier-progress-node {
  background: #10b981;
  border-color: #10b981;
  color: #ffffff;
}
.supplier-progress-step.running {
  color: #6d28d9;
}
.supplier-progress-step.running::before {
  background-color: #9fe7ce;
}
.supplier-progress-step.running .supplier-progress-node {
  background: #8b5cf6;
  border-color: #8b5cf6;
  color: #ffffff;
  box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.1);
  animation: supplier-progress-pulse 1.4s ease-in-out infinite;
}

.supplier-progress-node {
  display: flex;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border: 1px solid #e5e7eb;
  border-radius: 50%;
  background: #ffffff;
  font-size: 10px;
  font-weight: 700;
  color: #6b7280;
  z-index: 1;
}

.supplier-progress-step-label {
  position: relative;
  z-index: 1;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-align: center;
  font-size: 11px;
  font-weight: 500;
  color: currentColor;
}

@keyframes supplier-progress-pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.18);
  }
}
@keyframes supplier-progress-flow {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}
@media (max-width: 1450px) {
  .supplier-progress-step-label {
    width: 72px;
    overflow: visible;
    text-overflow: clip;
    white-space: normal;
    line-height: 1.2;
  }
}
@media (max-width: 1280px) {
  .supplier-progress-step {
    flex-basis: 104px;
    padding: 0 6px;
    box-sizing: border-box;
  }
  .supplier-progress-step-label {
    font-size: 10px;
  }
}
@container (max-width: 520px) {
  .supplier-progress-header {
    gap: 10px;
  }
  .supplier-progress-title {
    font-size: 14px;
  }
}
.sourcing-supplier-list {
  padding: 12px 12px 30px 12px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: 100%;
}

/* ── 推荐摘要 ── */
.supplier-summary {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 700;
  padding: 12px 16px;
  box-sizing: border-box;
  background: linear-gradient(135deg, #f8fffe, #f0fdf4);
  border-radius: 10px;
  border: 1px solid #d1fae5;
}

/* ── 区域标题 ── */
.supplier-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: 100%;
}

.supplier-section-header {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
}

.section-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
}

.found-badge {
  font-size: 12px;
  font-weight: 500;
  padding: 2px 10px;
  box-sizing: border-box;
  border-radius: 99px;
  background: #f3f4f6;
  color: #6b7280;
}

/* ── 其他供应商（折叠区域） ── */
.alt-suppliers-section {
  width: 100%;
  max-width: 100%;
}

.alt-suppliers-title {
  width: 100%;
  font-size: 18px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  user-select: none;
  padding: 10px 14px;
  box-sizing: border-box;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  background: #f9fafb;
  transition: all 0.2s;
  color: var(--text);
  font-family: inherit;
  text-align: left;
}
@media (hover: hover) {
  .alt-suppliers-title:hover {
    background: #f3f0ff;
    border-color: #ddd6fe;
    color: #6d28d9;
  }
}
.alt-suppliers-title .collapse-chevron {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  color: #9ca3af;
}
@media (hover: hover) {
  .alt-suppliers-title:hover .collapse-chevron {
    color: #7c3aed;
  }
}
.alt-suppliers-title.expanded .collapse-chevron {
  transform: rotate(90deg);
}
.alt-suppliers-title .alt-count-badge {
  margin-left: auto;
  font-size: 12px;
  font-weight: 500;
  padding: 2px 10px;
  box-sizing: border-box;
  border-radius: 99px;
  background: #f3f4f6;
  color: #6b7280;
}
@media (hover: hover) {
  .alt-suppliers-title:hover .alt-count-badge {
    background: #ede9fe;
    color: #7c3aed;
  }
}

.alt-suppliers-body {
  padding-top: 12px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: 100%;
}

.supplier-list-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 60px 20px;
  box-sizing: border-box;
  background: #faf9ff;
  min-height: calc(100vh - 200px);
}
.supplier-list-empty img {
  width: 400px;
  /* 小于1800px时图片变小 */
}
@media (max-width: 1800px) {
  .supplier-list-empty img {
    width: 300px;
  }
}
.supplier-list-empty .empty-text {
  font-size: 16px;
  color: #6b7280;
  font-weight: 500;
}
/**
 * 产品搜索结果列表样式（实时检索）
 */
.realtime-product-list {
  padding: 16px;
  box-sizing: border-box;
}

/* 推荐摘要 */
.product-summary {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 700;
  padding: 12px 16px;
  box-sizing: border-box;
  background: linear-gradient(135deg, #f8fffe, #f0fdf4);
  border-radius: 10px;
  border: 1px solid #d1fae5;
}

/* 产品网格（响应式：1-6列） */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  /* ≤768：1列。窄屏（触屏端详情抽屉全屏，可用宽度约 330px）3 列每列不到 100px，图和标题都看不清 */
}
@media (max-width: 768px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
}
.product-grid {
  /* 1500-2100：4列 */
}
@media (min-width: 1800px) {
  .product-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.product-grid {
  /* 2100-2400：5列 */
}
@media (min-width: 2100px) {
  .product-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}
.product-grid {
  /* >2400：6列 */
}
@media (min-width: 2400px) {
  .product-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

/* 单个产品卡片 */
.realtime-product-card {
  background: #fff;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  overflow: hidden;
  transition: all 0.2s ease;
}
@media (hover: hover) {
  .realtime-product-card:hover {
    border-color: #d1d5db;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
  }
}

/* 产品图片区域 */
.realtime-product-image {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  background: #f9fafb;
  overflow: hidden;
  /* 图片撑满，保持比例裁剪 */
}
.realtime-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* LIVE 标签 */
.live-badge {
  position: absolute;
  top: 6px;
  left: 6px;
  display: flex;
  align-items: center;
  gap: 3px;
  padding: 2px 6px;
  box-sizing: border-box;
  background: linear-gradient(135deg, #22c55e 0%, #4ade80 100%);
  color: #fff;
  font-size: 9px;
  font-weight: 600;
  border-radius: 10px;
  box-shadow: 0 2px 4px rgba(34, 197, 94, 0.3);
  z-index: 1;
}
.live-badge svg {
  width: 6px;
  height: 6px;
  animation: live-pulse 1.5s ease-in-out infinite;
}

@keyframes live-pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}
/* 来源平台标识 */
.source-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 24px;
  height: 24px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* 产品信息区域 */
.realtime-product-info {
  padding: 12px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-height: 120px;
}

/* 价格 */
.realtime-product-price {
  font-size: 18px;
  font-weight: 600;
  color: #7c3aed;
  min-height: 27px;
}

/* MOQ */
.realtime-product-moq {
  font-size: 14px;
  color: #6b7280;
  min-height: 20px;
}

/* 产品名称 */
.realtime-product-name {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #374151;
  text-decoration: none;
  display: block;
}

@media (hover: hover) {
  a.realtime-product-name:hover {
    cursor: pointer;
    color: #7c3aed;
    text-decoration: underline;
  }
}
/* 公司名称 */
.realtime-product-company {
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #374151;
  margin-top: auto;
  /* 文字部分单独省略 */
}
.realtime-product-company .company-name-text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  flex: 1;
  min-width: 0;
  color: #374151;
  text-decoration: none;
}

@media (hover: hover) {
  a.company-name-text:hover {
    cursor: pointer;
    color: #7c3aed;
    text-decoration: underline;
  }
}
/* 来源平台标识（公司名称前面） */
.source-badge-inline img {
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* 国家/地区 */
.realtime-product-location {
  font-size: 14px;
  color: #9ca3af;
  display: flex;
  align-items: center;
  gap: 4px;
}
.realtime-product-location svg {
  flex-shrink: 0;
}

/* 空状态 */
.product-list-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  min-height: calc(100vh - 200px);
  padding: 60px 20px;
  box-sizing: border-box;
}
.product-list-empty img {
  width: 400px;
  /* 小于1800px时图片变小 */
}
@media (max-width: 1800px) {
  .product-list-empty img {
    width: 300px;
  }
}
.product-list-empty .empty-text {
  font-size: 16px;
  color: #6b7280;
  font-weight: 500;
}.markdown-body {
  font-size: 16px;
  line-height: 1.5;
  word-break: normal;
  overflow-wrap: break-word;
}
.markdown-body h1,
.markdown-body h2,
.markdown-body h3,
.markdown-body h4,
.markdown-body h5,
.markdown-body h6 {
  margin: 20px 0 10px;
  line-height: 1.3;
  font-weight: 700;
}
.markdown-body h1 {
  font-size: 24px;
}
.markdown-body h2 {
  font-size: 20px;
}
.markdown-body h3 {
  font-size: 17px;
}
.markdown-body h4,
.markdown-body h5,
.markdown-body h6 {
  font-size: 15px;
}
.markdown-body p {
  margin-bottom: 10px;
}
.markdown-body > :first-child {
  margin-top: 0;
}
.markdown-body > :last-child {
  margin-bottom: 0;
}
.markdown-body a {
  text-decoration: none;
}
@media (hover: hover) {
  .markdown-body a:hover {
    text-decoration: underline;
  }
}
.markdown-body .source-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  margin: 0 2px;
  color: #6366f1;
  background: rgba(99, 102, 241, 0.1);
  border-radius: 4px;
  font-size: 12px;
  vertical-align: middle;
  transition: all 0.2s ease;
  text-decoration: none;
}
@media (hover: hover) {
  .markdown-body .source-link:hover {
    color: #4f46e5;
    background: rgba(99, 102, 241, 0.2);
    transform: scale(1.1);
    text-decoration: none;
  }
}
.markdown-body ul,
.markdown-body ol {
  margin: 8px 0;
  padding-left: 20px;
  box-sizing: border-box;
  list-style: revert;
}
.markdown-body li {
  margin-bottom: 5px;
}
.markdown-body code {
  padding: 2px 6px;
  border-radius: 4px;
  background: rgba(99, 102, 241, 0.08);
  color: #4f46e5;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
  font-size: 13px;
}
.markdown-body pre {
  margin: 10px 0;
  padding: 12px 14px;
  overflow-x: auto;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: #f8fafc;
}
.markdown-body pre code {
  padding: 0;
  background: transparent;
  color: inherit;
  line-height: 1.6;
}
.markdown-body hr {
  margin: 16px 0;
  border: none;
  border-top: 1px solid #e5e7eb;
}
.markdown-body blockquote {
  margin: 10px 0;
  padding: 2px 0 2px 12px;
  border-left: 3px solid #e5e7eb;
  color: #64748b;
}
.markdown-body .markdown-img-root {
  display: inline-block;
  max-width: 100%;
}
.markdown-body .markdown-img {
  max-width: 300px;
  border-radius: 8px;
}
.markdown-body .markdown-table-scroll {
  margin: 10px 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.markdown-body table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.markdown-body th,
.markdown-body td {
  border: 1px solid #e5e7eb;
  padding: 8px 12px;
  box-sizing: border-box;
  min-width: 140px;
  text-align: left;
}
.markdown-body th {
  background: #f3f4f6;
  font-weight: 600;
}
.markdown-body tbody tr:nth-child(even) {
  background: #f9fafb;
}

@media screen and (max-width: 768px) {
  .markdown-body {
    font-size: 14px;
  }
  .markdown-body h1,
  .markdown-body h2,
  .markdown-body h3,
  .markdown-body h4,
  .markdown-body h5,
  .markdown-body h6 {
    margin: 16px 0 8px;
  }
  .markdown-body h1 {
    font-size: 20px;
  }
  .markdown-body h2 {
    font-size: 18px;
  }
  .markdown-body h3 {
    font-size: 16px;
  }
  .markdown-body h4,
  .markdown-body h5,
  .markdown-body h6 {
    font-size: 14px;
  }
  .markdown-body ul,
  .markdown-body ol {
    padding-left: 18px;
  }
  .markdown-body table {
    font-size: 13px;
  }
  .markdown-body th,
  .markdown-body td {
    padding: 6px 8px;
  }
  .markdown-body pre {
    padding: 10px 12px;
  }
  .markdown-body pre code {
    font-size: 12px;
  }
}
/* ── ReportView 样式 ── */
.report-view {
  --report-bg: #f7f8fa;
  --report-surface: #ffffff;
  --report-surface-soft: #f3f4f6;
  --report-border: #e5e7eb;
  --report-border-strong: #d1d5db;
  --report-text: #1f2933;
  --report-heading: #1f2937;
  --report-muted: #6b7280;
  --report-accent: #4b5563;
  --report-accent-hover: #374151;
  --report-accent-soft: rgba(75, 85, 99, 0.08);
  --report-accent-softer: rgba(75, 85, 99, 0.04);
  padding: 16px 20px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  max-width: 100%;
  overflow-y: auto;
  background: var(--report-bg);
  /* 小屏收窄内边距，正文可用宽度不够时 20px 侧边距太浪费 */
}
@media (max-width: 768px) {
  .report-view {
    padding: 10px;
  }
}

/* ── 加载状态 ── */
.report-view-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 60px 20px;
  color: var(--text-muted, #94a3b8);
  font-size: 14px;
  background: #f7f8fa;
}

/* ── 空状态 ── */
.report-view-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  background: #f7f8fa;
  height: 100%;
  min-height: 400px;
}
.report-view-empty img {
  max-width: 400px;
  max-height: 400px;
  object-fit: contain;
}

/* ── 图表容器 ── */
.report-chart-wrapper {
  width: 100%;
  max-width: 100%;
  margin: 16px 0;
  padding: 16px;
  box-sizing: border-box;
  border-radius: 12px;
  background: var(--white, #ffffff);
  border: 1px solid var(--report-border, #e3ece9);
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
  flex-shrink: 0;
  overflow: visible;
  /* ECharts 容器防止溢出 */
}
.report-chart-wrapper .echarts-for-react,
.report-chart-wrapper .echarts-container {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: visible;
}

/* 图表标题：完整显示 */
.report-chart-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--report-heading, #16232e);
  text-align: center;
  line-height: 24px;
  min-height: 40px;
  overflow: visible;
  display: block;
  word-break: break-word;
  cursor: default;
}

/* ── 图表错误提示 ── */
.report-chart-error {
  width: 100%;
  padding: 40px 20px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 8px;
  color: #dc2626;
  font-size: 14px;
  margin: 16px 0;
}

/* ── Summary 摘要区域 ── */
.report-summary-section {
  width: 100%;
  padding: 16px 20px;
  box-sizing: border-box;
  border-radius: 12px;
  background: linear-gradient(180deg, #fbf9ff 0%, #f7f3ff 100%);
  border: 1px solid #e9ddff;
  box-shadow: 0 1px 4px rgba(124, 58, 237, 0.06);
  margin-bottom: 8px;
}
.report-summary-section .report-summary-label {
  font-size: 20px;
  font-weight: 700;
  color: var(--report-accent-hover, #374151);
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid #e6dcff;
}
/* ── DashboardView 样式 ── */
.dashboard-view {
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
  max-width: 100%;
  overflow-y: auto;
  background: #f6f7f9;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
}

/* ── 空状态 ── */
.dashboard-view-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  background: #f6f7f9;
  height: 100%;
  min-height: 400px;
}
.dashboard-view-empty img {
  max-width: 400px;
  max-height: 400px;
  object-fit: contain;
}

/* ── Dashboard Section (HTML 内容区域) ── */
.dashboard-section {
  width: 100%;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  /* CSS 变量 */
  --primary: #4b5563;
  --primary-light: #f3f4f6;
  --success: #059669;
  --warning: #d97706;
  --danger: #dc2626;
  --text: #1e293b;
  --text-secondary: #475569;
  --text-muted: #94a3b8;
  --border: #e5e7eb;
  --border-soft: #f1f5f9;
  --bg: #f6f7f9;
  --bg-soft: #f9fafb;
  --card-bg: #ffffff;
  --radius: 10px;
  --shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}
.dashboard-section * {
  box-sizing: border-box;
}
.dashboard-section {
  /* ── 图片：统一限制尺寸、靠左，点击放大预览 ── */
}
.dashboard-section img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 160px;
  height: auto;
  border-radius: 8px;
  object-fit: contain;
  cursor: zoom-in;
}
.dashboard-section {
  /* 图片包裹层：收缩到图片大小，作为 hover 蒙层的定位父级 */
}
.dashboard-section .dashboard-img-preview {
  position: relative;
  display: inline-block;
  max-width: 100%;
  line-height: 0; /* 去掉行内图片底部空隙 */
  cursor: pointer;
  border-radius: 8px;
  overflow: hidden;
  /* 覆盖 img 基础规则的 zoom-in，统一为手型 */
}
.dashboard-section .dashboard-img-preview img {
  cursor: pointer;
}
.dashboard-section .dashboard-img-preview {
  /* hover 蒙层：默认隐藏，悬停时淡入，只覆盖图片 */
}
.dashboard-section .dashboard-img-preview .dashboard-img-mask {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: #fff;
  font-size: 14px;
  line-height: 1;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.2s ease;
}
.dashboard-section .dashboard-img-preview .dashboard-img-mask svg {
  font-size: 16px;
}
@media (hover: hover) {
  .dashboard-section .dashboard-img-preview:hover .dashboard-img-mask {
    opacity: 1;
  }
}
.dashboard-section {
  /* 站点图片组：多图靠左横向排列，超出换行 */
}
.dashboard-section .site-photos {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-start;
  margin-top: 8px;
}
.dashboard-section {
  /* ── Header ── */
}
.dashboard-section .dash-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 12px;
  flex-wrap: wrap;
  gap: 12px;
}
.dashboard-section .dash-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
}
.dashboard-section .dash-subtitle {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.dashboard-section .dash-subtitle .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
}
.dashboard-section .dash-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}
.dashboard-section .dash-badge.green {
  background: #f0fdf4;
  color: #059669;
  border: 1px solid #a7f3d0;
}
.dashboard-section .dash-badge.yellow {
  background: #fffbeb;
  color: #d97706;
  border: 1px solid #fde68a;
}
.dashboard-section .dash-badge.red {
  background: #fef2f2;
  color: #dc2626;
  border: 1px solid #fecaca;
}
.dashboard-section .dash-badge.purple {
  background: var(--primary-light);
  color: var(--primary);
  border: 1px solid #d1d5db;
}
.dashboard-section {
  /* ── Grid Layout ── */
}
.dashboard-section .dash-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr;
  min-width: 0; /* 防止子项内容撑开 grid 列 */
}
.dashboard-section .dash-grid.cols-2 {
  grid-template-columns: repeat(2, 1fr);
}
.dashboard-section .dash-grid.cols-3 {
  grid-template-columns: repeat(3, 1fr);
}
.dashboard-section .dash-grid.cols-4 {
  grid-template-columns: repeat(4, 1fr);
}
.dashboard-section .span-full {
  grid-column: 1/-1;
}
.dashboard-section .span-2 {
  grid-column: span 2;
}
.dashboard-section {
  /* ── Cards ── */
}
.dashboard-section .dash-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow);
  min-width: 0; /* 防止卡片内容撑破 grid 列 */
  overflow: hidden; /* 裁剪超出内容 */
}
.dashboard-section .dash-card-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}
.dashboard-section {
  /* ── Metric Cards ── */
}
.dashboard-section .dash-metric {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow);
  min-width: 0; /* 防止指标卡片内容撑破 grid 列 */
  overflow: hidden;
}
.dashboard-section .dash-metric-label {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.dashboard-section .dash-metric-value {
  font-size: 26px;
  font-weight: 800;
  color: var(--text);
  margin-top: 4px;
}
.dashboard-section .dash-metric-change {
  font-size: 12px;
  font-weight: 600;
  margin-top: 4px;
}
.dashboard-section .dash-metric-change.up {
  color: var(--success);
}
.dashboard-section .dash-metric-change.down {
  color: var(--danger);
}
.dashboard-section .dash-metric-change.flat {
  color: var(--text-muted);
}
.dashboard-section .dash-metric-change.warn {
  color: var(--warning);
}
.dashboard-section {
  /* ── Chart Container ── */
}
.dashboard-section .dash-chart {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  flex-shrink: 0;
  min-width: 0; /* 防止图表容器撑破 grid 列 */
  box-shadow: var(--shadow);
}
.dashboard-section {
  /* 图表标题：超出两行显示省略号，hover 显示完整内容 */
}
.dashboard-section .dash-chart-title {
  font-size: 15px;
  font-weight: 600;
  color: #1e293b;
  text-align: center;
  padding: 0 16px;
  box-sizing: border-box;
  line-height: 24px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  word-break: break-word;
  cursor: default;
}
.dashboard-section {
  /* ── Info List Cards ── */
}
.dashboard-section .dash-info-item {
  padding: 10px 12px;
  background: var(--bg-soft);
  border: 1px solid var(--border-soft);
  border-radius: 8px;
  margin-bottom: 8px;
}
.dashboard-section .dash-info-item:last-child {
  margin-bottom: 0;
}
.dashboard-section .dash-info-item .label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.dashboard-section .dash-info-item .value {
  font-size: 12px;
  color: #64748b;
  line-height: 1.5;
}
.dashboard-section .dash-info-item.warn {
  background: #fffbeb;
  border-color: #fde68a;
}
.dashboard-section .dash-info-item.danger {
  background: #fef2f2;
  border-color: #fecaca;
}
.dashboard-section .dash-info-item.success {
  background: #f0fdf4;
  border-color: #bbf7d0;
}
.dashboard-section {
  /* ── Tables ── */
}
.dashboard-section .dash-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  table-layout: fixed; /* 固定表格布局，防止内容撑开列 */
}
.dashboard-section .dash-table th {
  text-align: left;
  padding: 9px 12px;
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  background: var(--bg-soft);
}
.dashboard-section .dash-table td {
  padding: 9px 12px;
  border-bottom: 1px solid var(--border-soft);
  color: var(--text);
}
@media (hover: hover) {
  .dashboard-section .dash-table tr:hover td {
    background: var(--bg-soft);
  }
}
.dashboard-section {
  /* ── Tags / Badges ── */
}
.dashboard-section .tag {
  display: inline-flex;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
}
.dashboard-section .tag.green {
  background: #f0fdf4;
  color: #059669;
}
.dashboard-section .tag.yellow {
  background: #fffbeb;
  color: #d97706;
}
.dashboard-section .tag.red {
  background: #fef2f2;
  color: #dc2626;
}
.dashboard-section .tag.purple {
  background: var(--primary-light);
  color: var(--primary);
}
.dashboard-section .tag.blue {
  background: #eff6ff;
  color: #2563eb;
}
.dashboard-section {
  /* ── Progress Bars ── */
}
.dashboard-section .progress-bar {
  height: 6px;
  background: #e5e7eb;
  border-radius: 4px;
  overflow: hidden;
}
.dashboard-section .progress-bar .fill {
  height: 100%;
  border-radius: 4px;
  transition: width 0.6s ease;
}
.dashboard-section .progress-bar .fill.green {
  background: #10b981;
}
.dashboard-section .progress-bar .fill.purple {
  background: #6b7280;
}
.dashboard-section .progress-bar .fill.blue {
  background: #64748b;
}
.dashboard-section {
  /* ── Summary Banner ── */
}
.dashboard-section .dash-summary {
  display: flex !important;
  align-items: flex-start !important;
  gap: 10px;
  background: #ffffff !important;
  border: 1px solid #e5e7eb !important;
  border-radius: var(--radius);
  padding: 14px 16px;
  margin-bottom: 12px;
  width: 100%;
}
.dashboard-section .dash-summary-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: #f3f4f6 !important;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  box-shadow: none;
}
.dashboard-section .dash-summary-body {
  flex: 1;
  min-width: 0;
}
.dashboard-section .dash-summary-label {
  font-size: 14px;
  font-weight: 700;
  color: #374151;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.dashboard-section .dash-summary-label::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  background: #6b7280;
  border-radius: 50%;
  box-shadow: none;
}
.dashboard-section .dash-summary-text {
  font-size: 13px;
  color: #4b5563 !important;
  line-height: 1.6;
}
.dashboard-section .dash-summary-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}
.dashboard-section {
  /* ── AI Insight Tags ── */
}
.dashboard-section .ai-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
}
.dashboard-section .ai-tag.warn {
  background: #fffbeb;
  color: #b45309;
  border: 1px solid #fde68a;
}
.dashboard-section .ai-tag.danger {
  background: #fef2f2;
  color: #dc2626;
  border: 1px solid #fecaca;
}
.dashboard-section .ai-tag.info {
  background: #f3f4f6;
  color: #4b5563;
  border: 1px solid #d1d5db;
}
.dashboard-section .ai-tag.success {
  background: #f0fdf4;
  color: #059669;
  border: 1px solid #a7f3d0;
}
.dashboard-section {
  /* ── AI 批注标记 ── */
}
.dashboard-section .ai-insight {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  background: #f3f4f6;
  color: #4b5563;
  font-size: 11px;
  font-weight: 600;
  padding: 1px 7px;
  box-sizing: border-box;
  border-radius: 4px;
  margin-right: 4px;
  border: 1px solid #d1d5db;
  vertical-align: middle;
  white-space: nowrap;
}
.dashboard-section {
  /* ── Watchout 风险分级列表 ── */
}
.dashboard-section .watchout-list {
  list-style: none;
  padding-left: 0;
  box-sizing: border-box;
  margin: 0;
}
.dashboard-section .watchout-list li::marker,
.dashboard-section .watchout-item::marker {
  display: none;
  content: "";
  font-size: 0;
}
.dashboard-section .watchout-item {
  list-style: none;
  padding: 8px 10px;
  border-radius: 8px;
  margin-bottom: 6px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-secondary);
}
.dashboard-section .watchout-item:last-child {
  margin-bottom: 0;
}
.dashboard-section .watchout-item.high {
  background: #fef2f2;
  border-left: 2px solid #ef4444;
}
.dashboard-section .watchout-item.medium {
  background: #fffbeb;
  border-left: 2px solid #f59e0b;
}
.dashboard-section .watchout-item.low {
  background: var(--bg-soft);
  border-left: 2px solid #cbd5e1;
}
.dashboard-section {
  /* ── Highlight 列表 ── */
}
.dashboard-section .highlight-list {
  list-style: none;
  padding-left: 0;
  box-sizing: border-box;
  margin: 0;
}
.dashboard-section .highlight-list li::marker,
.dashboard-section .highlight-item::marker {
  display: none;
  content: "";
  font-size: 0;
}
.dashboard-section .highlight-item {
  list-style: none;
  padding: 8px 12px;
  box-sizing: border-box;
  border-radius: 8px;
  margin-bottom: 6px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-secondary);
  background: #f0fdf4;
  border-left: 2px solid #22c55e;
}
.dashboard-section .highlight-item:last-child {
  margin-bottom: 0;
}
.dashboard-section {
  /* ── Metric accent top borders ── */
}
.dashboard-section .dash-metric {
  border-top: 2px solid var(--border);
}
.dashboard-section .dash-metric.accent-purple {
  border-top-color: #6b7280;
}
.dashboard-section .dash-metric.accent-green {
  border-top-color: #10b981;
}
.dashboard-section .dash-metric.accent-blue {
  border-top-color: #64748b;
}
.dashboard-section .dash-metric.accent-orange {
  border-top-color: #f59e0b;
}
.dashboard-section .dash-metric.accent-red {
  border-top-color: #ef4444;
}
.dashboard-section .dash-metric-sub {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.dashboard-section {
  /* ── stripe-item — colored left-bar list ── */
}
.dashboard-section .stripe-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.dashboard-section .stripe-item {
  display: flex;
  align-items: stretch;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.15s ease;
}
@media (hover: hover) {
  .dashboard-section .stripe-item:hover {
    transform: translateX(2px);
  }
}
.dashboard-section .stripe-bar {
  width: 4px;
  flex-shrink: 0;
}
.dashboard-section .stripe-bar.red {
  background: #dc2626;
}
.dashboard-section .stripe-bar.amber {
  background: #d97706;
}
.dashboard-section .stripe-bar.green {
  background: #059669;
}
.dashboard-section .stripe-bar.blue {
  background: #64748b;
}
.dashboard-section .stripe-bar.gray {
  background: #9ca3af;
}
.dashboard-section .stripe-bar.purple {
  background: #6b7280;
}
.dashboard-section .stripe-content {
  flex: 1;
  padding: 11px 12px;
  font-size: 13px;
  color: #4b5563;
  line-height: 1.5;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
}
.dashboard-section .stripe-item.red .stripe-content {
  background: rgba(220, 38, 38, 0.06);
}
.dashboard-section .stripe-item.amber .stripe-content {
  background: rgba(217, 119, 6, 0.06);
}
.dashboard-section .stripe-item.green .stripe-content {
  background: rgba(5, 150, 105, 0.06);
}
.dashboard-section .stripe-item.blue .stripe-content {
  background: var(--bg-soft);
}
.dashboard-section .stripe-item.gray .stripe-content {
  background: #f9fafb;
}
.dashboard-section .stripe-item.purple .stripe-content {
  background: #f9fafb;
}
.dashboard-section .stripe-content strong {
  color: #111827;
  font-weight: 700;
}
.dashboard-section {
  /* ── profile-tag — two-col key/value rows ── */
}
.dashboard-section .profile-tags {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.dashboard-section .profile-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  background: #f9fafb;
  border: 1px solid var(--border-soft);
  border-radius: 8px;
  transition: background 0.15s;
}
@media (hover: hover) {
  .dashboard-section .profile-tag:hover {
    background: #f3f4f6;
  }
}
.dashboard-section .profile-tag-label {
  font-size: 12px;
  font-weight: 700;
  color: #111827;
  min-width: 110px;
  flex-shrink: 0;
}
.dashboard-section .profile-tag-value {
  font-size: 13px;
  color: #4b5563;
}
.dashboard-section {
  /* ── kpi-badge — pill chip for metric sub ── */
}
.dashboard-section .kpi-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 9px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}
.dashboard-section .kpi-badge.blue {
  background: #f1f5f9;
  color: #475569;
}
.dashboard-section .kpi-badge.green {
  background: #f0fdf4;
  color: #059669;
}
.dashboard-section .kpi-badge.amber {
  background: #fffbeb;
  color: #d97706;
}
.dashboard-section .kpi-badge.red {
  background: #fef2f2;
  color: #dc2626;
}
.dashboard-section .kpi-badge.purple {
  background: #f3f4f6;
  color: #4b5563;
}
.dashboard-section {
  /* ── card-icon-header — SVG icon + title ── */
}
.dashboard-section .card-icon-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.dashboard-section .card-icon-box {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.dashboard-section .card-icon-box.red {
  background: #fef2f2;
  color: #dc2626;
}
.dashboard-section .card-icon-box.green {
  background: #f0fdf4;
  color: #059669;
}
.dashboard-section .card-icon-box.blue {
  background: #f1f5f9;
  color: #475569;
}
.dashboard-section .card-icon-box.purple {
  background: #f3f4f6;
  color: #4b5563;
}
.dashboard-section .card-icon-box.amber {
  background: #fffbeb;
  color: #d97706;
}
.dashboard-section .card-icon-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
}
.dashboard-section {
  /* ── stage-track — lifecycle progress bar ── */
}
.dashboard-section .stage-track {
  display: flex;
  gap: 3px;
  margin-top: 8px;
  width: 100%;
}
.dashboard-section .stage-seg {
  flex: 1;
  text-align: center;
  font-size: 10px;
  font-weight: 700;
  padding: 5px 4px;
  border-radius: 6px;
  color: #94a3b8;
  background: #f1f5f9;
  letter-spacing: 0.03em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.dashboard-section .stage-seg.past {
  background: #e5e7eb;
  color: #4b5563;
}
.dashboard-section .stage-seg.active {
  background: #4b5563;
  color: #fff;
  box-shadow: 0 2px 8px rgba(75, 85, 99, 0.22);
}
.dashboard-section .stage-seg.future {
  background: #f1f5f9;
  color: #cbd5e1;
}
.dashboard-section {
  /* ── status-chip — glowing dot pill ── */
}
.dashboard-section .status-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}
.dashboard-section .status-chip::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.dashboard-section .status-chip.open {
  background: #f0fdf4;
  color: #047857;
}
.dashboard-section .status-chip.open::before {
  background: #10b981;
  box-shadow: none;
}
.dashboard-section .status-chip.watch {
  background: #fffbeb;
  color: #b45309;
}
.dashboard-section .status-chip.watch::before {
  background: #f59e0b;
  box-shadow: none;
}
.dashboard-section .status-chip.closed {
  background: #fef2f2;
  color: #b91c1c;
}
.dashboard-section .status-chip.closed::before {
  background: #ef4444;
  box-shadow: none;
}
.dashboard-section {
  /* ── ranked-list — numbered badge + name ── */
}
.dashboard-section .ranked-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.dashboard-section .ranked-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid var(--border-soft);
}
.dashboard-section .ranked-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.dashboard-section .rank-badge {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  border: 1px solid #d1d5db;
  font-size: 10px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.dashboard-section .rank-badge.gold {
  background: #fef9c3;
  color: #92400e;
}
.dashboard-section .rank-badge.silver {
  background: #f1f5f9;
  color: #475569;
}
.dashboard-section .rank-badge.bronze {
  background: #ffedd5;
  color: #c2410c;
}
.dashboard-section .ranked-body {
  flex: 1;
}
.dashboard-section .ranked-name {
  font-size: 13px;
  font-weight: 600;
  color: #1e293b;
}
.dashboard-section .ranked-note {
  font-size: 11px;
  color: #94a3b8;
  margin-top: 2px;
  line-height: 1.4;
}
.dashboard-section {
  /* ── entity-row ── */
}
.dashboard-section .entity-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.dashboard-section .entity-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 0;
  border-bottom: 1px solid var(--border-soft);
  gap: 10px;
}
.dashboard-section .entity-row:last-child {
  border-bottom: none;
}
.dashboard-section .entity-name {
  font-size: 13px;
  font-weight: 600;
  color: #1e293b;
}
.dashboard-section .entity-note {
  font-size: 11px;
  color: #94a3b8;
  text-align: right;
  max-width: 55%;
  line-height: 1.4;
}
.dashboard-section {
  /* ── kv-row ── */
}
.dashboard-section .kv-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.dashboard-section .kv-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--border-soft);
  gap: 12px;
  font-size: 13px;
}
.dashboard-section .kv-row:last-child {
  border-bottom: none;
}
.dashboard-section .kv-key {
  color: #64748b;
}
.dashboard-section .kv-val {
  font-weight: 600;
  color: #1e293b;
  text-align: right;
}
.dashboard-section {
  /* ── stat-band ── */
}
.dashboard-section .stat-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 10px;
  border-radius: 8px;
  margin-bottom: 6px;
  background: var(--bg-soft);
  border: 1px solid var(--border-soft);
  gap: 10px;
}
.dashboard-section .stat-band:last-child {
  margin-bottom: 0;
}
.dashboard-section .stat-band:nth-child(even) {
  background: #f3f4f6;
}
.dashboard-section .stat-band-key {
  font-size: 12px;
  color: #64748b;
}
.dashboard-section .stat-band-val {
  font-size: 13px;
  font-weight: 700;
  color: #1e293b;
  display: flex;
  align-items: center;
  gap: 6px;
}
.dashboard-section {
  /* ── Dividers ── */
}
.dashboard-section .dash-divider {
  height: 1px;
  background: var(--border);
  margin: 16px 0;
}
.dashboard-section {
  /* ── Responsive ── */
}
@media (max-width: 640px) {
  .dashboard-section .dash-grid.cols-2,
  .dashboard-section .dash-grid.cols-3,
  .dashboard-section .dash-grid.cols-4 {
    grid-template-columns: 1fr;
  }
  .dashboard-section .span-2 {
    grid-column: span 1;
  }
}

/* ── 图表容器（顶层） ── */
.dash-chart {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  overflow: visible;
  box-sizing: border-box;
  contain: layout paint;
  /* ECharts 容器防止溢出 */
}
.dash-chart .echarts-for-react,
.dash-chart .echarts-container {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: visible;
}

/* 图表标题（顶层）：超出两行显示省略号，hover 显示完整内容 */
.dash-chart-title {
  font-size: 15px;
  font-weight: 600;
  color: #1e293b;
  text-align: center;
  margin-bottom: 10px;
  padding: 14px 14px 0;
  line-height: 24px;
  min-height: 40px;
  overflow: visible;
  display: block;
  word-break: break-word;
  cursor: default;
}

/* ── 图表容器 ── */
.dashboard-chart-wrapper {
  width: 100%;
  margin: 0;
  padding: 0;
  border-radius: 10px;
  background: var(--white, #ffffff);
  border: 1px solid var(--border, #e5e7eb);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
  flex-shrink: 0;
}

/* ── 图表错误提示 ── */
.dashboard-chart-error {
  width: 100%;
  padding: 40px 20px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 10px;
  color: #dc2626;
  font-size: 14px;
  margin: 16px 0;
}

/* ── echarts-chart loading 占位 ── */
echarts-chart {
  display: block;
  width: 100%;
  min-height: 200px;
}

echarts-chart.echarts-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg, #f6f7f9 25%, #e5e7eb 50%, #f6f7f9 75%);
  background-size: 200% 100%;
  animation: loading-shimmer 1.5s infinite;
  border-radius: 10px;
  min-height: 300px;
  color: #94a3b8;
  font-size: 14px;
}

echarts-chart.echarts-loading::after {
  content: "Loading chart...";
}

@keyframes loading-shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}
/* ── ECharts 渲染容器 ── */
.echarts-container {
  border-radius: 10px;
}.dashboard-spec-view {
  --ds-card-bg: #fff;
  --ds-card-border: #eceef2;
  --ds-card-radius: 12px;
  --ds-card-shadow: 0 1px 2px rgba(17, 24, 39, 0.04), 0 1px 3px rgba(17, 24, 39, 0.03);
  --ds-card-shadow-hover: 0 8px 24px rgba(17, 24, 39, 0.08);
  padding: 24px;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .dashboard-spec-view {
    padding: 10px;
  }
}
.dashboard-spec-view .ds-header {
  padding-bottom: 18px;
  border-bottom: 1px solid #e8eaee;
}
.dashboard-spec-view .ds-header .ds-header-title {
  color: #1a2233;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.02em;
}
.dashboard-spec-view .ds-header .ds-header-subtitle {
  margin-top: 7px;
  color: #6b7280;
  font-size: 14px;
  line-height: 1.5;
}
.dashboard-spec-view .ds-header .ds-header-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}
.dashboard-spec-view .ds-header .ds-header-tags .ds-header-tag {
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  color: #6d5bd0;
  background: #f0edfb;
}
.dashboard-spec-view .ds-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}
.dashboard-spec-view .ds-cell {
  min-width: 0;
  display: flex;
}
.dashboard-spec-view .ds-cell > * {
  flex: 1 1 auto;
  min-width: 0;
}
.dashboard-spec-view .ds-cell.is-quarter {
  grid-column: span 3;
}
.dashboard-spec-view .ds-cell.is-third {
  grid-column: span 4;
}
.dashboard-spec-view .ds-cell.is-half {
  grid-column: span 6;
}
.dashboard-spec-view .ds-cell.is-full {
  grid-column: span 12;
}
@media (max-width: 768px) {
  .dashboard-spec-view .ds-cell.is-quarter, .dashboard-spec-view .ds-cell.is-third, .dashboard-spec-view .ds-cell.is-half, .dashboard-spec-view .ds-cell.is-full {
    grid-column: 1/-1;
  }
}
.dashboard-spec-view .ds-chart,
.dashboard-spec-view .ds-table,
.dashboard-spec-view .ds-list,
.dashboard-spec-view .ds-keywords,
.dashboard-spec-view .ds-photos,
.dashboard-spec-view .ds-prose,
.dashboard-spec-view .ds-gallery {
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
@media (hover: hover) {
  .dashboard-spec-view .ds-chart:hover,
  .dashboard-spec-view .ds-table:hover,
  .dashboard-spec-view .ds-list:hover,
  .dashboard-spec-view .ds-keywords:hover,
  .dashboard-spec-view .ds-photos:hover,
  .dashboard-spec-view .ds-prose:hover,
  .dashboard-spec-view .ds-gallery:hover {
    border-color: #e2e4ea;
    box-shadow: var(--ds-card-shadow-hover);
  }
}
.dashboard-spec-view .ds-verdict {
  padding: 20px 22px;
  border-radius: 14px;
  border: 1px solid #eae7f4;
  background: #f7f5fc;
}
.dashboard-spec-view .ds-verdict .ds-verdict-label {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
  color: #7c6bd9;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
}
.dashboard-spec-view .ds-verdict .ds-verdict-label .ds-verdict-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
}
.dashboard-spec-view .ds-verdict .ds-verdict-headline {
  color: #2c2a45;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: -0.01em;
}
.dashboard-spec-view .ds-verdict .ds-verdict-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.dashboard-spec-view .ds-verdict .ds-verdict-tags .ds-verdict-tag {
  padding: 5px 12px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
}
.dashboard-spec-view .ds-verdict .ds-verdict-tags .ds-verdict-tag.tone-green {
  color: #15803d;
  background: #edfaf0;
}
.dashboard-spec-view .ds-verdict .ds-verdict-tags .ds-verdict-tag.tone-purple {
  color: #6d5bd0;
  background: #f0edfb;
}
.dashboard-spec-view .ds-verdict .ds-verdict-tags .ds-verdict-tag.tone-yellow {
  color: #b45309;
  background: #fdf5e6;
}
.dashboard-spec-view .ds-verdict .ds-verdict-tags .ds-verdict-tag.tone-red {
  color: #dc2626;
  background: #fdeeee;
}
.dashboard-spec-view .ds-verdict.is-alert {
  border-color: #f7e3cf;
  background: #fdf8f2;
}
.dashboard-spec-view .ds-verdict.is-alert .ds-verdict-label {
  color: #ea7317;
}
.dashboard-spec-view .ds-metric {
  display: flex;
  flex-direction: column;
  height: 100%;
  box-sizing: border-box;
  padding: 18px 20px;
  border-radius: var(--ds-card-radius);
  background: var(--ds-card-bg);
  border: 1px solid var(--ds-card-border);
  box-shadow: var(--ds-card-shadow);
  transition: box-shadow 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
@media (hover: hover) {
  .dashboard-spec-view .ds-metric:hover {
    border-color: #e0e2ea;
    box-shadow: var(--ds-card-shadow-hover);
    transform: translateY(-2px);
  }
}
.dashboard-spec-view .ds-metric .ds-metric-label {
  color: #9aa1ad;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.dashboard-spec-view .ds-metric .ds-metric-value {
  margin-top: 10px;
  color: #1a2233;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  word-break: break-word;
}
.dashboard-spec-view .ds-metric .ds-metric-change {
  align-self: flex-start;
  margin-top: 12px;
  padding: 3px 10px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
}
.dashboard-spec-view .ds-metric .ds-metric-change.dir-up {
  color: #15803d;
  background: #edfaf0;
}
.dashboard-spec-view .ds-metric .ds-metric-change.dir-down {
  color: #dc2626;
  background: #fdeeee;
}
.dashboard-spec-view .ds-metric .ds-metric-change.dir-flat {
  color: #4b5563;
  background: #f3f4f6;
}
.dashboard-spec-view .ds-metric .ds-metric-change.dir-warn {
  color: #ea7317;
  background: #fdf5e9;
}
.dashboard-spec-view .ds-metric .ds-metric-sub {
  margin-top: 10px;
  color: #9aa1ad;
  font-size: 13px;
  line-height: 1.4;
}
.dashboard-spec-view .ds-metric.accent-blue .ds-metric-label {
  color: #2563eb;
}
.dashboard-spec-view .ds-metric.accent-green .ds-metric-label {
  color: #16a34a;
}
.dashboard-spec-view .ds-metric.accent-purple .ds-metric-label {
  color: #7c3aed;
}
.dashboard-spec-view .ds-metric.accent-orange .ds-metric-label {
  color: #ea7317;
}
.dashboard-spec-view .ds-metric.accent-red .ds-metric-label {
  color: #dc2626;
}
.dashboard-spec-view .ds-chart {
  box-sizing: border-box;
  padding: 16px;
  border-radius: var(--ds-card-radius);
  background: var(--ds-card-bg);
  border: 1px solid var(--ds-card-border);
  box-shadow: var(--ds-card-shadow);
}
.dashboard-spec-view .ds-chart .ds-chart-title {
  margin: 0 0 8px;
  color: #1e293b;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
}
.dashboard-spec-view .ds-chart iframe {
  border-radius: 8px;
}
.dashboard-spec-view .ds-block-title {
  color: #2c2a45;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 14px;
}
.dashboard-spec-view .ds-table {
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  padding: 18px 20px;
  border-radius: var(--ds-card-radius);
  background: var(--ds-card-bg);
  border: 1px solid var(--ds-card-border);
  box-shadow: var(--ds-card-shadow);
}
.dashboard-spec-view .ds-table .ds-table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.dashboard-spec-view .ds-table table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
.dashboard-spec-view .ds-table th,
.dashboard-spec-view .ds-table td {
  box-sizing: border-box;
  min-width: 120px;
}
.dashboard-spec-view .ds-table th {
  text-align: left;
  font-weight: 600;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 11px;
  padding: 10px 14px;
  background: #f7f8fa;
  border-bottom: 1px solid #eceef2;
  white-space: nowrap;
}
.dashboard-spec-view .ds-table th:first-child {
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}
.dashboard-spec-view .ds-table th:last-child {
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
}
.dashboard-spec-view .ds-table td {
  padding: 11px 14px;
  color: #3b4252;
  line-height: 1.5;
  vertical-align: top;
  transition: background 0.15s ease;
}
.dashboard-spec-view .ds-table tbody tr:nth-child(even) td {
  background: #fafbfc;
}
@media (hover: hover) {
  .dashboard-spec-view .ds-table tbody tr:hover td {
    background: #f0f1f4;
  }
}
.dashboard-spec-view .ds-table .ds-cell-link {
  color: #6d5bd0;
  text-decoration: none;
}
@media (hover: hover) {
  .dashboard-spec-view .ds-table .ds-cell-link:hover {
    text-decoration: underline;
  }
}
.dashboard-spec-view .ds-table .ds-source-link {
  text-decoration: none;
  font-size: 14px;
}
.dashboard-spec-view .ds-table .ds-status {
  display: inline-block;
  padding: 2px 9px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
}
.dashboard-spec-view .ds-table .ds-status.green {
  color: #15803d;
  background: #edfaf0;
}
.dashboard-spec-view .ds-table .ds-status.amber {
  color: #b45309;
  background: #fdf5e6;
}
.dashboard-spec-view .ds-table .ds-status.red {
  color: #dc2626;
  background: #fdeeee;
}
.dashboard-spec-view .ds-table .ds-table-note {
  margin: 0;
  padding-top: 12px;
  margin-top: auto;
  color: #9aa1ad;
  font-size: 12px;
  line-height: 1.5;
}
.dashboard-spec-view .ds-list {
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  padding: 18px 20px;
  border-radius: var(--ds-card-radius);
  background: var(--ds-card-bg);
  border: 1px solid var(--ds-card-border);
  box-shadow: var(--ds-card-shadow);
}
.dashboard-spec-view .ds-list .ds-list-items {
  display: flex;
  flex-direction: column;
}
.dashboard-spec-view .ds-list .ds-list-item {
  display: flex;
  gap: 10px;
  padding: 10px 0;
  font-size: 13px;
  line-height: 1.55;
  color: #4b5563;
}
.dashboard-spec-view .ds-list .ds-list-item + .dashboard-spec-view .ds-list .ds-list-item {
  border-top: 1px solid #f2f3f6;
}
.dashboard-spec-view .ds-list .ds-list-dot {
  flex: 0 0 auto;
  width: 6px;
  height: 6px;
  margin-top: 7px;
  border-radius: 50%;
  background: #cbd0d8;
}
.dashboard-spec-view .ds-list .ds-list-label {
  margin-right: 6px;
  color: #2c2a45;
  font-weight: 600;
}
.dashboard-spec-view .ds-list .tone-red .ds-list-dot {
  background: #ef4444;
}
.dashboard-spec-view .ds-list .tone-amber .ds-list-dot {
  background: #f59e0b;
}
.dashboard-spec-view .ds-list .tone-green .ds-list-dot {
  background: #22c55e;
}
.dashboard-spec-view .ds-list .tone-blue .ds-list-dot {
  background: #3b82f6;
}
.dashboard-spec-view .ds-list .tone-purple .ds-list-dot {
  background: #7c3aed;
}
.dashboard-spec-view .ds-list .tone-gray .ds-list-dot {
  background: #cbd0d8;
}
.dashboard-spec-view .ds-keywords {
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  padding: 18px 20px;
  border-radius: var(--ds-card-radius);
  background: var(--ds-card-bg);
  border: 1px solid var(--ds-card-border);
  box-shadow: var(--ds-card-shadow);
}
.dashboard-spec-view .ds-keywords .ds-keywords-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.dashboard-spec-view .ds-keywords .ds-keyword {
  padding: 5px 12px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  color: #8b80c9;
  background: #f7f5fc;
}
.dashboard-spec-view .ds-photos {
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  padding: 18px 20px;
  border-radius: var(--ds-card-radius);
  background: var(--ds-card-bg);
  border: 1px solid var(--ds-card-border);
  box-shadow: var(--ds-card-shadow);
}
.dashboard-spec-view .ds-photos .ds-photos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 10px;
}
.dashboard-spec-view .ds-photos .ds-photo-item {
  margin: 0;
}
.dashboard-spec-view .ds-photos .ds-photo-imgwrap {
  width: 100%;
  display: block;
}
.dashboard-spec-view .ds-photos .ds-photo-imgwrap .ant-image-img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  background: #f5f6f9;
}
.dashboard-spec-view .ds-photos .ds-photo-cap {
  margin: 6px 0 0;
  font-size: 12px;
  line-height: 1.4;
  color: #9aa1ad;
}
.dashboard-spec-view .ds-photos .ds-maps-btn {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  padding: 7px 14px;
  border-radius: 8px;
  border: 1px solid #e2e4ea;
  background: #fff;
  color: #4b5563;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.dashboard-spec-view .ds-photos .ds-maps-btn svg {
  color: #ea4335;
}
@media (hover: hover) {
  .dashboard-spec-view .ds-photos .ds-maps-btn:hover {
    background: #f7f8fa;
    border-color: #d5d8e0;
  }
}
.dashboard-spec-view .ds-product-cards {
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  padding: 18px 20px;
  border-radius: var(--ds-card-radius);
  background: var(--ds-card-bg);
  border: 1px solid var(--ds-card-border);
  box-shadow: var(--ds-card-shadow);
}
.dashboard-spec-view .ds-product-cards .ds-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 12px;
}
.dashboard-spec-view .ds-product-cards .ds-product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid #eceef2;
  background: #fff;
  color: inherit;
  text-decoration: none;
  transition: box-shadow 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.dashboard-spec-view .ds-product-cards .ds-product-card.is-link {
  cursor: pointer;
}
@media (hover: hover) {
  .dashboard-spec-view .ds-product-cards .ds-product-card.is-link:hover {
    border-color: #e0e2ea;
    box-shadow: var(--ds-card-shadow-hover);
    transform: translateY(-2px);
  }
}
.dashboard-spec-view .ds-product-cards .ds-product-img {
  width: 100%;
  height: 130px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 8px;
  background: #f5f6f9;
}
.dashboard-spec-view .ds-product-cards .ds-product-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.dashboard-spec-view .ds-product-cards .ds-product-title {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  color: #2c2a45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.dashboard-spec-view .ds-product-cards .ds-product-meta {
  margin-top: 6px;
  font-size: 12px;
  color: #9aa1ad;
}
.dashboard-spec-view .ds-prose {
  box-sizing: border-box;
  padding: 18px 20px;
  border-radius: var(--ds-card-radius);
  background: var(--ds-card-bg);
  border: 1px solid var(--ds-card-border);
  box-shadow: var(--ds-card-shadow);
}
.dashboard-spec-view .ds-prose .ds-block-title {
  margin-bottom: 8px;
}
.dashboard-spec-view .ds-prose .ds-prose-text {
  margin: 0;
  color: #4b5563;
  font-size: 14px;
  line-height: 1.65;
}
.dashboard-spec-view .ds-gallery {
  box-sizing: border-box;
  padding: 18px 20px;
  border-radius: var(--ds-card-radius);
  background: var(--ds-card-bg);
  border: 1px solid var(--ds-card-border);
  box-shadow: var(--ds-card-shadow);
}
.dashboard-spec-view .ds-gallery .ds-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
}
.dashboard-spec-view .ds-gallery .ds-gallery-grid .ds-gallery-item {
  margin: 0;
}
.dashboard-spec-view .ds-gallery .ds-gallery-grid .ds-gallery-imgwrap {
  width: 100%;
  display: block;
}
.dashboard-spec-view .ds-gallery .ds-gallery-grid .ds-gallery-imgwrap .ant-image-img {
  width: 100%;
  height: 180px;
  object-fit: contain;
  border-radius: 8px;
  background: #f5f6f9;
  cursor: pointer;
}
.dashboard-spec-view .ds-gallery .ds-gallery-cap {
  margin: 8px 0 0;
  font-size: 13px;
  line-height: 1.5;
  color: #4b5563;
}
.dashboard-spec-view .ds-gallery .ds-gallery-note {
  margin: 12px 0 0;
  font-size: 12px;
  line-height: 1.5;
  color: #9aa1ad;
}
/*一行省略号*/
/*多行省略号(默认两行)*/
/*水平垂直居中 不固定宽高*/
/*animate*/
/*Scrollbar*/
/*更改svg图片颜色 父级样式要加overflow: hidden;*/
.share-link-modal {
  max-width: calc(100vw - 32px);
}
.share-link-modal .ant-modal-content {
  padding: 24px;
  border-radius: 16px;
}
.share-link-modal {
  /* 标题与右上角关闭按钮同一行，去掉 antd 默认的下边距改由文案自己控制 */
}
.share-link-modal .ant-modal-header {
  margin-bottom: 12px;
}
.share-link-modal .ant-modal-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 26px;
  color: #1e293b;
}
.share-link-modal .ant-modal-close {
  top: 26px;
  inset-inline-end: 20px;
  color: #94a3b8;
}
@media (hover: hover) {
  .share-link-modal .ant-modal-close:hover {
    color: #1e293b;
    background: transparent;
  }
}
.share-link-modal .share-link-modal-desc {
  margin: 0 0 20px;
  font-size: 14px;
  line-height: 22px;
  color: #64748b;
}
.share-link-modal {
  /* 复制失败提示：紧跟在描述下方，负 margin 抵掉描述那 20px 里的一截，与描述贴近成一组 */
}
.share-link-modal .share-link-modal-error {
  margin: -12px 0 20px;
  font-size: 13px;
  line-height: 20px;
  color: #ff4d4f;
}
.share-link-modal {
  /* 未创建态：整宽主按钮 */
}
.share-link-modal .share-link-modal-create {
  border: none;
  outline: none;
  width: 100%;
  height: 46px;
  border-radius: 12px;
  background: linear-gradient(65deg, #FE59FD 3%, #F202B0 26%, #5151FF 49%, #0E5BF2 72%, #1FCEEC 96%);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.15s ease;
}
@media (hover: hover) {
  .share-link-modal .share-link-modal-create:hover {
    opacity: 0.82;
  }
}
.share-link-modal {
  /* 已复制态：灰底胶囊里左边放链接，右边放复制按钮 */
}
.share-link-modal .share-link-modal-result {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 5px 5px 16px;
  border-radius: 999px;
  background: #f1f5f9;
}
.share-link-modal .share-link-modal-url {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  flex: 1;
  min-width: 0;
  font-size: 14px;
  line-height: 22px;
  color: #475569;
}
.share-link-modal {
  /* 复制失败态：不再渲染 Copy 按钮，胶囊里只剩链接。
     横排那行省略号手动也选不全，这里让链接整段换行铺开，方便直接选中复制 */
}
.share-link-modal .share-link-modal-result.is-failed {
  padding: 12px 16px;
  border-radius: 12px;
}
.share-link-modal .share-link-modal-result.is-failed .share-link-modal-url {
  flex: none;
  width: 100%;
  white-space: normal; /* 以下三条覆盖 cutxt 的一行省略号 */
  overflow: visible;
  text-overflow: clip;
  word-break: break-all; /* 链接里没有空格，只能允许任意位置断行 */
  -webkit-user-select: all; /* 点一下（触屏长按）即可整段选中，省去拖选 */
  user-select: all;
}
.share-link-modal {
  /* 「Copy」/「Copied」共用一个按钮，min-width 固定住宽度避免两种文案切换时胶囊跳动 */
}
.share-link-modal .share-link-modal-copy {
  border: none;
  outline: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-shrink: 0;
  min-width: 96px;
  height: 36px;
  padding: 0 18px;
  border-radius: 999px;
  background: linear-gradient(65deg, #FE59FD 3%, #F202B0 26%, #5151FF 49%, #0E5BF2 72%, #1FCEEC 96%);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.15s ease;
}
@media (hover: hover) {
  .share-link-modal .share-link-modal-copy:hover {
    opacity: 0.82;
  }
}
.share-link-modal .share-link-modal-copy {
  /* 「Copied」提示态：禁点鼠标 + 半透明，hover 不再额外变化 */
}
.share-link-modal .share-link-modal-copy:disabled {
  cursor: not-allowed;
  opacity: 0.7;
}
@media (hover: hover) {
  .share-link-modal .share-link-modal-copy:disabled:hover {
    opacity: 0.7;
  }
}
/* ── Welcome View ── */
.welcome-view {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  overflow-x: hidden;
  overflow-y: auto;
  background: radial-gradient(circle at 24% 22%, rgba(245, 40, 225, 0.07) 0, rgba(245, 40, 225, 0.07) 14%, transparent 31%), radial-gradient(circle at 92% 58%, rgba(2, 176, 251, 0.07) 0, rgba(2, 176, 251, 0.07) 16%, transparent 36%), radial-gradient(circle at 50% 92%, rgba(2, 176, 251, 0.06) 0, transparent 28%), #fff;
  padding: 40px;
  box-sizing: border-box;
}
.welcome-view .quick-search-section {
  flex: 0 0 auto;
  width: 100%;
  max-width: min(1600px, 100vw - 160px);
  position: relative;
  z-index: 1;
  margin: auto 0;
  transform: translateY(-80px);
}
.welcome-view .quick-search-bg {
  display: none;
}
.welcome-view {
  /* 原来这里要写 .quick-search-content { width: 100% } 去抵消 QuickSearch 组件内的
     var(--content-width)。那条约束已经移交给使用方，组件内部本身就是 100%，不必再抵消。 */
}
.welcome-view .quick-search-title {
  font-size: 48px;
  font-weight: bold;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 10px;
}
.welcome-view .quick-search-subtitle {
  font-size: 18px;
  font-weight: normal;
  color: #888;
  text-align: center;
  line-height: 28px;
  margin-bottom: 40px;
}
.welcome-view .quick-search-input {
  width: 100%;
  max-width: 100%;
}
.welcome-view .quick-search-cards {
  width: 100%;
  max-width: 100%;
}

@media screen and (max-width: 1600px) {
  .welcome-view {
    padding: 80px;
    box-sizing: border-box;
  }
  .welcome-view .quick-search-section {
    max-width: calc(100vw - 160px);
    transform: translateY(-24px);
  }
  .welcome-view .quick-search-title {
    font-size: 40px;
  }
  .welcome-view .quick-search-subtitle {
    font-size: 16px;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 1440px) {
  .welcome-view .quick-search-title {
    font-size: 38px;
  }
}
@media screen and (max-width: 1350px) {
  .welcome-view .quick-search-title {
    font-size: 34px;
  }
}.loop-feedback {
  width: 80%;
  margin-top: 2px;
}

.app-layout.has-detail .loop-feedback {
  width: 100%;
}

.loop-feedback-rate-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  min-height: 30px;
  color: #202124;
  font-size: 14px;
  line-height: 20px;
}
.loop-feedback-rate-row .ant-rate {
  color: #ffb000;
  font-size: 20px;
  line-height: 1;
}
.loop-feedback-rate-row .ant-rate-star {
  margin-inline-end: 4px;
}

.loop-feedback-label {
  font-weight: 700;
}

.loop-feedback-rate-wrap {
  display: inline-flex;
  align-items: center;
}

.loop-feedback-reward-tooltip {
  max-width: 300px;
}
.loop-feedback-reward-tooltip .ant-tooltip-inner {
  padding: 12px 14px;
  border: 1px solid #e7e7ea;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.1);
}

.loop-feedback-reward-tip-title {
  color: #050505;
  font-size: 13px;
  line-height: 18px;
  font-weight: 700;
}

.loop-feedback-reward-tip-desc {
  margin-top: 6px;
  color: #6b7280;
  font-size: 12px;
  line-height: 17px;
  font-weight: 500;
}

.loop-feedback-score {
  color: #4b5563;
  font-size: 14px;
  line-height: 18px;
}

.loop-feedback-panel {
  position: relative;
  margin-top: 12px;
  padding: 20px 22px 18px;
  border: 1px solid #e7e7ea;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.08);
  box-sizing: border-box;
  scroll-margin-bottom: 100px;
}
.loop-feedback-panel h3 {
  margin: 0;
  color: #050505;
  font-size: 19px;
  line-height: 25px;
  font-weight: 750;
}
.loop-feedback-panel .ant-form-item {
  margin-bottom: 0;
}
.loop-feedback-panel .ant-form-item-control-input,
.loop-feedback-panel .ant-form-item-explain {
  min-height: auto;
}
.loop-feedback-panel .ant-form-item-explain-error {
  margin-top: 8px;
  color: #ff4d4f;
  font-size: 13px;
  line-height: 18px;
}

.loop-feedback-modal .ant-modal {
  max-width: calc(100vw - 32px);
}
.loop-feedback-modal .ant-modal-content {
  border-radius: 22px;
}
@media screen and (max-width: 767px) {
  .loop-feedback-modal .ant-modal-content {
    border-radius: 18px;
  }
}
.loop-feedback-modal .ant-modal-title {
  color: #050505;
  font-size: 17px;
  line-height: 23px;
  font-weight: 750;
}
.loop-feedback-modal .ant-modal-body {
  display: flex;
  flex-direction: column;
  max-height: 65vh;
  overflow: hidden;
  margin-right: -24px;
}
.loop-feedback-modal .loop-feedback-modal-rate {
  flex: 0 0 auto;
  margin-right: 24px;
}
.loop-feedback-modal .ant-form {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  min-height: 0;
}
.loop-feedback-modal .loop-feedback-body {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  padding-right: 24px;
}
.loop-feedback-modal .ant-form-item {
  margin-bottom: 0;
}
.loop-feedback-modal .ant-form-item-control-input,
.loop-feedback-modal .ant-form-item-explain {
  min-height: auto;
}
.loop-feedback-modal .ant-form-item-explain-error {
  margin-top: 8px;
  color: #ff4d4f;
  font-size: 13px;
  line-height: 18px;
}
.loop-feedback-modal .loop-feedback-footer {
  flex: 0 0 auto;
  margin-right: 24px;
  padding: 12px 0 2px;
  border-top: 1px solid #f0f0f0;
  background: #fff;
}
.loop-feedback-modal .loop-feedback-footer .loop-feedback-actions {
  margin-top: 0;
}

.loop-feedback-modal-rate {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
}
.loop-feedback-modal-rate .ant-rate {
  color: #ffb000;
  font-size: 22px;
  line-height: 1;
  white-space: nowrap;
}
.loop-feedback-modal-rate .ant-rate-star {
  margin-inline-end: 4px;
}

.loop-feedback-modal-rate-text {
  color: #4c5562;
  font-size: 14px;
  line-height: 20px;
  white-space: nowrap;
}

.loop-feedback-close {
  position: absolute;
  top: 16px;
  right: 18px;
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 7px;
  background: transparent;
  color: #9a9a9a;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 16px;
}
@media (hover: hover) {
  .loop-feedback-close:hover {
    background: #f5f5f5;
    color: #333;
  }
}

.loop-feedback-stars {
  margin-top: 2px;
  color: #4c5562;
  font-size: 14px;
  line-height: 20px;
}

.loop-feedback-question {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  margin-top: 16px;
  margin-bottom: 8px;
  color: #050505;
  font-size: 15px;
  line-height: 21px;
  font-weight: 750;
}
.loop-feedback-question .required {
  margin-left: 3px;
  color: #ff4d4f;
}
.loop-feedback-question .hint {
  margin-left: 5px;
  color: #8d949e;
  font-weight: 400;
}

.loop-feedback-reasons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.loop-feedback-pill {
  padding: 5px 10px;
  box-sizing: border-box;
  border: 1px solid #e1e1e1;
  border-radius: 999px;
  background: #fff;
  color: #222;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  cursor: pointer;
  font-size: 14px;
  line-height: 20px;
  transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
}
@media (hover: hover) {
  .loop-feedback-pill:hover {
    border-color: #d8c7ff;
    color: #6b36c8;
  }
}
.loop-feedback-pill.active {
  border-color: #d28cff;
  background: #f9edff;
  color: #7f39d4;
}

.loop-feedback-pill-close {
  font-size: 11px;
}

.loop-feedback-textarea-wrap {
  margin-top: 16px;
}
.loop-feedback-textarea-wrap textarea {
  display: block;
  width: 100%;
  height: 96px;
  padding: 12px 14px;
  border: 1px solid #e1e1e1;
  border-radius: 12px;
  resize: none;
  outline: none;
  color: #333;
  font-family: inherit;
  font-size: 15px;
  line-height: 22px;
  box-sizing: border-box;
}
.loop-feedback-textarea-wrap textarea::placeholder {
  color: #9da3ad;
  font-size: 15px;
}
.loop-feedback-textarea-wrap textarea:focus {
  border-color: #d28cff;
  box-shadow: 0 0 0 2px rgba(210, 140, 255, 0.13);
}

.loop-feedback-count {
  margin-top: 8px;
  color: #7d8591;
  font-size: 12px;
  line-height: 16px;
  text-align: right;
}

.loop-feedback-upload-wrap {
  display: block;
  margin-top: 16px;
}
.loop-feedback-upload-wrap .ant-upload {
  display: block;
}

.loop-feedback-upload {
  width: 100%;
  min-height: 44px;
  padding: 0 14px;
  border: 1px dashed #dddddd;
  border-radius: 12px;
  background: #fff;
  color: #222;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-size: 14px;
}
.loop-feedback-upload span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.loop-feedback-upload em {
  color: #8d949e;
  font-size: 12px;
  font-style: normal;
}
@media (hover: hover) {
  .loop-feedback-upload:hover {
    border-color: #d8c7ff;
    background: #fcfbff;
  }
}

.loop-feedback-file-list {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.loop-feedback-file {
  min-height: 36px;
  padding: 6px 9px;
  border: 1px solid #eeeeee;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.loop-feedback-file button {
  width: 26px;
  height: 26px;
  border: 0;
  border-radius: 7px;
  background: transparent;
  color: #999;
  cursor: pointer;
}
@media (hover: hover) {
  .loop-feedback-file button:hover {
    background: #f4f2fb;
    color: #7f39d4;
  }
}

.loop-feedback-file-name {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  color: #3c4048;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.loop-feedback-file-size {
  color: #9aa0aa;
  font-size: 12px;
}

.loop-feedback-actions {
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.loop-feedback-reward-note {
  margin-top: 10px;
  text-align: right;
}

.loop-feedback-reward-note-main {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 5px;
  color: var(--primary);
  font-size: 13px;
  line-height: 18px;
  font-weight: 600;
}

.loop-feedback-reward-note-icon {
  flex-shrink: 0;
  font-size: 14px;
}

.loop-feedback-reward-note-sub {
  margin-top: 2px;
  color: #7d8591;
  font-size: 12px;
  line-height: 16px;
}

.loop-feedback-cancel,
.loop-feedback-submit {
  height: 38px;
  padding: 0 18px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 15px;
  line-height: 20px;
  font-weight: 600;
}

.loop-feedback-cancel {
  border: 1px solid #d9dde5;
  background: #fff;
  color: #263238;
}
@media (hover: hover) {
  .loop-feedback-cancel:hover {
    border-color: #b8beca;
    background: #f5f5f5;
  }
}

@media screen and (max-width: 900px) {
  .loop-feedback {
    width: 100%;
  }
}
.loop-feedback-submit {
  min-width: 100px;
  border: 0;
  background: linear-gradient(83deg, #FE59FD 0%, #F202B0 24%, #5151FF 50%, #0E5BF2 74%, #1FCEEC 99%);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 8px 18px rgba(123, 92, 255, 0.28);
}
@media (hover: hover) {
  .loop-feedback-submit:hover {
    background: linear-gradient(83deg, #FE59FD 0%, #F202B0 24%, #5151FF 50%, #0E5BF2 74%, #1FCEEC 99%);
    filter: brightness(0.96);
    box-shadow: 0 10px 22px rgba(123, 92, 255, 0.36);
  }
}
.loop-feedback-submit:active {
  transform: translateY(1px);
}
.loop-feedback-submit:disabled {
  cursor: not-allowed;
  background: #d7d9e0;
  box-shadow: none;
  filter: none;
  transform: none;
}
.ask-card {
  width: 100%;
  box-sizing: border-box;
  container-type: inline-size;
  scroll-margin-bottom: 200px;
}

/* 通用分区标题（Summary / Recommended Next Steps） */
.ask-card-section-title {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  font-size: 13px;
  font-weight: 700;
  color: #9ca3af;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.ask-card-section-title svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: #7c3aed;
  opacity: 0.85;
}

/* ── 1. Summary ── */
.ask-card-summary {
  margin-bottom: 20px;
}

.ask-card-body {
  font-size: 16px;
  line-height: 1.8;
  color: #374151;
}
.ask-card-body p:first-child {
  margin-top: 0;
}
.ask-card-body p:last-child {
  margin-bottom: 0;
}
.ask-card-body p:last-of-type {
  display: inline;
}
.ask-card-body strong {
  color: #111827;
  font-weight: 700;
}

.ask-card-cursor {
  display: inline-block;
  width: 2px;
  height: 1em;
  background: var(--primary, #6c5ce7);
  animation: askCursorBlink 1s step-end infinite;
  vertical-align: text-bottom;
}

@keyframes askCursorBlink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}
/* ── 2. 结果卡片 ── */
.ask-card-results {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 22px;
}

.ask-result-card {
  position: relative;
  max-width: 700px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-areas: "icon head   view" "icon entity view" "icon tags   tags";
  align-items: start;
  column-gap: 16px;
  padding: 15px;
  box-sizing: border-box;
  background: #fff;
  border: 1px solid #efe9fb;
  border-radius: 18px;
  box-shadow: 0 1px 2px rgba(17, 24, 39, 0.04), 0 10px 30px -12px rgba(88, 28, 180, 0.14);
  overflow: hidden;
  transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}
.ask-result-card > * {
  position: relative;
  z-index: 1;
}
.ask-result-card::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 100%;
  background: linear-gradient(180deg, rgba(214, 46, 150, 0.12) 0%, rgba(152, 16, 250, 0.11) 14%, rgba(152, 16, 250, 0.04) 45%, transparent 74%);
  pointer-events: none;
}
@media (hover: hover) {
  .ask-result-card:hover {
    border-color: #e6ddfa;
    transform: translateY(-2px);
    box-shadow: 0 2px 4px rgba(17, 24, 39, 0.05), 0 18px 40px -14px rgba(88, 28, 180, 0.22);
  }
}

.ask-result-card-icon {
  grid-area: icon;
  align-self: start;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 13px;
  background: #fff;
  color: #9810fa;
}
.ask-result-card-icon svg {
  width: 30px;
  height: 30px;
}

.ask-result-card-head {
  grid-area: head;
  min-width: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 5px;
}

.ask-result-card-type {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #9810fa;
}

.ask-result-card-entity {
  grid-area: entity;
  min-width: 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  color: #111827;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ask-result-card-tags {
  grid-area: tags;
  display: flex;
  flex-wrap: wrap;
  row-gap: 4px;
  column-gap: 8px;
  margin-top: 10px;
}

.ask-result-card-tag {
  padding: 5px 14px;
  box-sizing: border-box;
  max-width: 200px;
  border: 1px solid #e7e5ec;
  border-radius: 999px;
  background: #fff;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
  color: #4b5563;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ask-result-card-view {
  grid-area: view;
  align-self: start;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 38px;
  padding: 0 18px;
  box-sizing: border-box;
  border: 1px solid #e0d4f7;
  border-radius: 999px;
  background: #fff;
  color: #9810fa;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(88, 28, 180, 0.1);
  transition: box-shadow 0.2s ease, transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
.ask-result-card-view svg {
  width: 15px;
  height: 15px;
  transition: transform 0.2s ease;
}
@media (hover: hover) {
  .ask-result-card-view:hover {
    border-color: #cbb4ee;
    box-shadow: 0 4px 12px rgba(88, 28, 180, 0.16);
    transform: translateY(-1px);
  }
  .ask-result-card-view:hover svg {
    transform: translateX(2px);
  }
}
.ask-result-card-view:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(152, 16, 250, 0.12);
}
.ask-result-card-view:disabled {
  background: #f3f4f6;
  border-color: #e5e7eb;
  color: #9ca3af;
  box-shadow: none;
  cursor: not-allowed;
  transform: none;
}
.ask-result-card-view:disabled svg {
  transform: none;
}

/* 详情页打开（窄）：图标居左，右侧「类型 + 标题」上下排列；标签、按钮各占整行 */
.ask-result-card--compact {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.ask-result-card--compact .ask-result-card-top {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  width: 100%;
}
.ask-result-card--compact .ask-result-card-headings {
  flex: 1;
  min-width: 0;
}
.ask-result-card--compact .ask-result-card-entity {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ask-result-card--compact .ask-result-card-tags {
  margin-top: 0;
}
.ask-result-card--compact .ask-result-card-view {
  width: 100%;
  justify-content: center;
}

/* ── 3. Choice（推荐选项） ── */
/* 评分反馈：与上下分区留出间隙 */
.ask-card .loop-feedback {
  margin-top: 20px;
  margin-bottom: 20px;
}

.ask-card-steps {
  margin: 0;
}

.ask-card-steps-list {
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ask-step-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
  padding: 10px 16px;
  box-sizing: border-box;
  border: 1px solid #eceaf3;
  border-radius: 11px;
  background: #fff;
  cursor: pointer;
  font-size: 13.5px;
  color: #374151;
  font-family: inherit;
  line-height: 1.5;
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  opacity: 0;
  transform: translateY(6px);
  animation: askChoiceSlideIn 0.3s ease-out forwards;
}
@media (hover: hover) {
  .ask-step-btn:hover {
    background: #faf8ff;
    border-color: #cfc2f6;
  }
}
.ask-step-btn:active {
  background: #f5f0ff;
}
.ask-step-btn:disabled {
  background: #f5f5f7;
  border-color: #ececf0;
  box-shadow: none;
  color: #9ca3af;
  cursor: not-allowed;
  transform: none;
}

@keyframes askChoiceSlideIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.ask-step-text {
  flex: 1;
  font-weight: 500;
}

.ask-step-arrow {
  flex-shrink: 0;
  display: inline-flex;
  color: #c4b5fd;
  transition: transform 0.2s ease, color 0.2s ease;
}
@media (hover: hover) {
  .ask-step-btn:hover .ask-step-arrow {
    color: #7c3aed;
    transform: translateX(3px);
  }
}

/* 兼容旧数据：Summary 后的查看结果链接（下划线文字链，参考 ask-realtime-search-adjust） */
.ask-card-view-link {
  display: inline;
  margin-left: 8px;
  padding: 0;
  box-sizing: border-box;
  border: none;
  background: transparent;
  color: #9b59b6;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color 0.2s;
}
@media (hover: hover) {
  .ask-card-view-link:hover {
    color: #7c3aed;
  }
}
.ask-card-view-link:disabled {
  color: #999;
  cursor: not-allowed;
  text-decoration: none;
}
/* ── ToolProgress 组件 ── */
/* 可点击行的 hover 反馈：不铺底色，只把该行的文字调深一档（见各行的 &:hover 规则） */
.tools-group {
  width: 550px;
  max-width: 100%;
  border-radius: 10px;
  background: transparent;
  overflow: hidden;
  margin: 6px 0;
  transition: background 0.2s ease;
}

/* ── 顶部总结 ── */
.tools-group-summary {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  font-size: 16px;
  box-sizing: border-box;
  cursor: pointer;
  user-select: none;
  /* hover 时状态文案和 show/hide details 一起变深，提示整条可点 */
}
@media (hover: hover) {
  .tools-group-summary:hover .mega-summary-title {
    color: #374151;
  }
  .tools-group-summary:hover .tools-group-toggle {
    color: #6b7280;
  }
}

/* 状态 spinner */
.mega-summary-spinner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.mega-summary-spinner svg {
  width: 16px;
  height: 16px;
}

/* 图标组 */
.mega-summary-icons {
  display: flex;
  align-items: center;
  gap: 3px;
  flex-shrink: 0;
}

.tools-group-icon-dot {
  width: 20px;
  height: 20px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 文本区域 */
.mega-summary-text {
  flex: 0 1 auto;
  min-width: 0;
}

.mega-summary-title {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: #6b7280;
  transition: color 0.15s ease;
  overflow: hidden;
}
.mega-summary-title span {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  min-width: 0;
}

/* 展开/收起文字（替代箭头） */
.tools-group-toggle {
  flex-shrink: 0;
  font-size: 13px;
  font-weight: 500;
  color: #9ca3af;
  transition: color 0.15s ease;
  white-space: nowrap;
}
@media (hover: hover) {
  .tools-group-toggle:hover {
    text-decoration: underline;
  }
}
.tools-group-toggle .tools-group-toggle-dot {
  color: #9ca3af;
  margin-right: 6px;
  text-decoration: none;
  display: inline-block;
}

/* ── 展开状态 ── */
.tools-group.expanded {
  border-radius: 10px;
  background: transparent;
}

.tools-group.expanded .tools-group-summary {
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

/* ── 工具列表 ── */
.tools-group-body {
  padding: 2px 0;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  background: transparent;
}

/* ── 单个工具项 ── */
.tool-item-wrapper {
  border-radius: 8px;
  background: transparent;
  overflow: hidden;
  transition: background 0.15s ease;
}

/* 工具头部 */
.tool-item-summary {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 0;
  box-sizing: border-box;
  user-select: none;
  border-radius: 8px;
}

/* 工具图标 */
.tool-item-icon {
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 5px;
}

/* 工具名称 */
.tool-item-name {
  flex: 0 1 auto;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 13px;
  font-weight: 500;
  color: #6b7280;
  transition: color 0.15s ease;
}

/* 工具信息容器 */
.tool-item-info {
  flex: 0 1 auto;
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  overflow: hidden;
}

/* 工具数量标记 */
.tool-item-count {
  font-size: 12px;
  font-weight: 600;
  color: #7c3aed;
  margin-left: 2px;
}

/* 工具状态统计文本 */
.tool-item-status-text {
  flex: 0 1 auto;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 12px;
  color: #6b7280;
  font-weight: 400;
}

/* 状态图标 */
.tool-item-status {
  width: auto;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-shrink: 0;
  border-radius: 4px;
}

/* 详情内容 */
.tool-status-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  width: 18px;
  height: 18px;
}
.tool-status-icon svg {
  flex-shrink: 0;
}
.tool-status-icon.success {
  color: #10b981;
}
.tool-status-icon.running {
  color: #7c3aed;
}
.tool-status-icon.failed {
  color: #ef4444;
}

.tool-item-detail {
  border-top: 1px solid rgba(0, 0, 0, 0.04);
  background: rgba(255, 255, 255, 0.8);
}

.tool-item-detail-inner {
  padding: 10px;
  box-sizing: border-box;
}

.tool-json-result {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-size: 12px;
  line-height: 1.5;
  background: transparent;
  white-space: pre-wrap;
  word-break: break-word;
  color: #4b5563;
}

.tool-json-result code {
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
  font-size: 11px;
}

/* 深色模式适配 */
.dark .tools-group {
  background: transparent;
}

/* 可点击行 hover：深色下反过来往亮里提一档 */
@media (hover: hover) {
  .dark .tools-group-summary:hover .mega-summary-title {
    color: #ffffff;
  }
  .dark .tools-group-summary:hover .tools-group-toggle {
    color: #d1d5db;
  }
}
@media (hover: hover) {
  .dark .tool-item-summary.has-subagents:hover .tool-item-name {
    color: #ffffff;
  }
  .dark .tool-item-summary.has-subagents:hover .tool-item-chevron {
    color: #d1d5db;
  }
}
.dark .tools-group.expanded .tools-group-summary {
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.dark .mega-summary-title {
  color: #e5e7eb;
}

.dark .tools-group-toggle {
  color: #9ca3af;
}

.dark .tools-group-body {
  background: transparent;
}

.dark .tool-item-wrapper {
  background: transparent;
}

.dark .tool-item-name {
  color: #e5e7eb;
}

.dark .tool-item-count {
  color: #a78bfa;
}

.dark .tool-item-status-text {
  color: #9ca3af;
}

.dark .tool-item-desc {
  color: #9ca3af;
}

.dark .tool-json-result {
  color: #d1d5db;
}

/* ── 子 Agent 活动组（行内嵌套，比 tools-group 小一圈；展开时才渲染） ── */
.sub-agent-tools-group {
  /* 左侧一条时间线：竖线对齐父级工具图标的中心（22px 图标 → 11px），层级靠线不靠层层缩进 */
  margin: 2px 0 6px 11px;
  padding-left: 13px;
  border-left: 1px solid #ececef;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.sub-agent-tools-group .sub-agent-group {
  border-radius: 8px;
  background: transparent; /* 去掉卡片底色和边框，跟外层保持扁平 */
  overflow: hidden;
}
.sub-agent-tools-group .sub-agent-group .sub-agent-group-header {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 0 6px;
  cursor: pointer;
  font-size: 11px;
  color: #6b7078;
  background: transparent;
  /* 有竖线做分隔了，展开时不再画下划线 */
}
.sub-agent-tools-group .sub-agent-group .sub-agent-group-header .sa-role {
  font-weight: 600;
  color: #4b5563;
  font-size: 11.5px;
  transition: color 0.15s ease;
}
.sub-agent-tools-group .sub-agent-group .sub-agent-group-header {
  /* hover 时角色名和箭头变深 */
}
@media (hover: hover) {
  .sub-agent-tools-group .sub-agent-group .sub-agent-group-header:hover .sa-role {
    color: #1f2937;
  }
  .sub-agent-tools-group .sub-agent-group .sub-agent-group-header:hover .sa-group-chevron {
    color: #6b7280;
  }
}
.sub-agent-tools-group .sub-agent-group .sub-agent-group-header .sa-id {
  color: #9aa0a8;
  max-width: 180px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.sub-agent-tools-group .sub-agent-group .sub-agent-group-header .sa-group-status {
  display: flex;
  align-items: center;
}
.sub-agent-tools-group .sub-agent-group .sub-agent-group-header { /* 紧跟角色名，不推到最右 */
  /* 展开箭头放在最后，跟在状态图标后面；收起=向下，展开=旋转 180° 变向上 */
}
.sub-agent-tools-group .sub-agent-group .sub-agent-group-header .sa-group-chevron {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  color: #9aa0a8;
  transition: transform 0.15s ease, color 0.15s ease;
}
.sub-agent-tools-group .sub-agent-group .sub-agent-group-header .sa-group-chevron .anticon {
  font-size: 10px;
}
.sub-agent-tools-group .sub-agent-group .sub-agent-group-header .sa-group-chevron.open {
  transform: rotate(180deg);
}
.sub-agent-tools-group .sub-agent-group {
  /* 运行状态由右侧转圈图标表达，标题不再单独变色，避免突兀 */
}
.sub-agent-tools-group .sub-agent-group .sub-agent-group-steps {
  padding: 2px 0 5px; /* 步骤区不再缩进，与父级左对齐 */
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.sub-agent-tools-group .sub-agent-group .sub-agent-group-steps .sa-step {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  line-height: 1.5;
  color: #6b7078;
}
.sub-agent-tools-group .sub-agent-group .sub-agent-group-steps .sa-step.sa-step-tool .sa-tool-icon {
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.sub-agent-tools-group .sub-agent-group .sub-agent-group-steps .sa-step.sa-step-tool .sa-tool-name {
  color: #41464c;
  font-weight: 500;
}
.sub-agent-tools-group .sub-agent-group .sub-agent-group-steps .sa-step.sa-step-text {
  color: #8a8f99;
}
.sub-agent-tools-group .sub-agent-group .sub-agent-group-steps .sa-step.sa-step-text .sa-think-tag {
  font-size: 9px;
  color: #a4a9b2;
  background: transparent;
  margin-right: 4px;
  flex-shrink: 0;
}
.sub-agent-tools-group .sub-agent-group .sub-agent-group-steps .sa-step.sa-step-text .sa-step-textcontent {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 360px;
}

/* 父工具行：只有带子 Agent 的才可点，也只有它需要 hover 反馈 */
.tool-item-summary.has-subagents {
  cursor: pointer;
}
@media (hover: hover) {
  .tool-item-summary.has-subagents:hover .tool-item-name {
    color: #374151;
  }
  .tool-item-summary.has-subagents:hover .tool-item-chevron {
    color: #6b7280;
  }
}

/* 父工具行的子Agent折叠箭头 */
.tool-item-summary .tool-item-chevron {
  display: flex;
  align-items: center;
  color: #9aa0a8;
  margin-left: 6px;
  transition: transform 0.15s ease, color 0.15s ease;
}

.tool-item-summary .tool-item-chevron.open {
  transform: rotate(180deg);
}

/* ── 子Agent工具行：状态前置的单行布局（状态 | 图标 | 工具名 | 参数） ── */
.sub-agent-tools-group .sub-agent-group .sub-agent-group-steps .sa-step {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 8px;
  min-width: 0;
  padding: 2px 0;
}
.sub-agent-tools-group .sub-agent-group .sub-agent-group-steps .sa-step.sa-step-tool {
  /* 图标不上色（tsx 里已不再传内联色），只留浅灰线稿，当作左侧对齐锚点 */
}
.sub-agent-tools-group .sub-agent-group .sub-agent-group-steps .sa-step.sa-step-tool .sa-tool-icon {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b3b8c0;
  background: none;
}
.sub-agent-tools-group .sub-agent-group .sub-agent-group-steps .sa-step.sa-step-tool {
  /* 工具名按内容宽度，参数紧跟其后 */
}
.sub-agent-tools-group .sub-agent-group .sub-agent-group-steps .sa-step.sa-step-tool .sa-tool-name {
  flex: 0 0 auto;
  white-space: nowrap;
  color: #41464c;
  font-weight: 500;
}
.sub-agent-tools-group .sub-agent-group .sub-agent-group-steps .sa-step.sa-step-tool .sa-tool-name .sa-step-count {
  color: #a4a9b2;
  font-weight: 400;
  margin-left: 4px;
}
.sub-agent-tools-group .sub-agent-group .sub-agent-group-steps .sa-step.sa-step-tool {
  /* 参数按内容宽度，过长才收缩省略；异常标记紧跟其后，不推到右边缘 */
}
.sub-agent-tools-group .sub-agent-group .sub-agent-group-steps .sa-step.sa-step-tool .sa-tool-args-display {
  flex: 0 1 auto;
  min-width: 0;
  color: #9aa0a8;
  font-size: 11px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.sub-agent-tools-group .sub-agent-group .sub-agent-group-steps .sa-step.sa-step-tool .sa-step-status {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 3px;
}
.sub-agent-tools-group .sub-agent-group .sub-agent-group-steps .sa-step.sa-step-tool .sa-step-status .tool-item-count {
  color: #8a8f99;
  font-size: 11px;
  font-weight: 600;
  margin-left: 0;
}
.sub-agent-tools-group .sub-agent-group .sub-agent-group-steps .sa-step.sa-step-text .sa-step-textcontent {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* 子步骤状态图标：去掉方框/底色，只留纯色图标（勾=绿 / 叉=红 / 转圈=紫），右列更清爽 */
.sub-agent-tools-group .sub-agent-group .sub-agent-group-steps .tool-status-icon {
  width: auto;
  height: auto;
  background: none;
  border: none;
  border-radius: 0;
}

/* ── 深色模式适配（子 Agent 活动组） ── */
.dark .sub-agent-tools-group {
  border-left-color: rgba(255, 255, 255, 0.12); /* 时间线竖线 */
}
.dark .sub-agent-tools-group .sub-agent-group {
  background: transparent;
}
.dark .sub-agent-tools-group .sub-agent-group .sub-agent-group-header {
  color: #9ca3af;
  background: transparent;
  border-bottom-color: rgba(255, 255, 255, 0.08);
}
.dark .sub-agent-tools-group .sub-agent-group .sub-agent-group-header .sa-role {
  color: #d1d5db;
}
@media (hover: hover) {
  .dark .sub-agent-tools-group .sub-agent-group .sub-agent-group-header:hover .sa-role {
    color: #ffffff;
  }
  .dark .sub-agent-tools-group .sub-agent-group .sub-agent-group-header:hover .sa-group-chevron {
    color: #d1d5db;
  }
}
.dark .sub-agent-tools-group .sub-agent-group .sub-agent-group-steps .sa-step {
  color: #9ca3af;
}
.dark .sub-agent-tools-group .sub-agent-group .sub-agent-group-steps .sa-step.sa-step-tool .sa-tool-name {
  color: #d1d5db;
}
.dark .sub-agent-tools-group .sub-agent-group .sub-agent-group-steps .sa-step.sa-step-tool .sa-tool-icon {
  color: #8b8f98;
}
.dark .sub-agent-tools-group .sub-agent-group .sub-agent-group-steps .sa-step.sa-step-tool .sa-tool-args-display {
  color: #8b8f98;
}
.dark .sub-agent-tools-group .sub-agent-group .sub-agent-group-steps .sa-step.sa-step-text {
  color: #8b8f98;
}
.dark .sub-agent-tools-group .sub-agent-group .sub-agent-group-steps .sa-step.sa-step-text .sa-think-tag {
  background: transparent;
  color: #8b8f98;
}.ask-realtime-search {
  display: flex;
  align-items: center;
  column-gap: 8px;
  row-gap: 5px;
  flex-wrap: wrap;
  box-sizing: border-box;
  border-radius: 10px;
}
.ask-realtime-search .ask-realtime-search-text {
  font-size: 14px;
  color: #666;
}
.ask-realtime-search .ask-realtime-search-adjust {
  flex-shrink: 0;
  padding: 0;
  box-sizing: border-box;
  border: none;
  background: transparent;
  color: #9B59B6;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color 0.2s;
}
@media (hover: hover) {
  .ask-realtime-search .ask-realtime-search-adjust:hover {
    color: #7C3AED;
  }
}
.ask-realtime-search .ask-realtime-search-adjust:disabled {
  color: #999;
  cursor: not-allowed;
  text-decoration: none;
}.product-compare {
  width: 100%;
  padding: 12px 16px;
  box-sizing: border-box;
  background: #ededf0;
  border-radius: 16px 16px 4px 16px;
}

.product-compare-title {
  font-size: 14px;
  font-weight: 600;
  color: #333;
  margin-bottom: 12px;
}

.product-compare-list {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  overflow-x: auto;
  overflow-y: hidden;
}
.product-compare-list::-webkit-scrollbar {
  height: 6px;
}
.product-compare-list::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 3px;
}
.product-compare-list::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 3px;
}
@media (hover: hover) {
  .product-compare-list::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
  }
}

.product-compare-item {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  width: 80px;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #e5e5e5;
  transition: all 0.2s ease;
  text-decoration: none;
  color: inherit;
}
@media (hover: hover) {
  .product-compare-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-color: var(--color-primary);
  }
}

.product-compare-img {
  width: 80px;
  height: 80px;
  object-fit: cover;
}

.product-compare-info {
  padding: 6px;
  box-sizing: border-box;
}

.product-compare-name {
  font-size: 12px;
  font-weight: 500;
  color: #333;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.product-compare-company {
  font-size: 12px;
  color: #666;
  margin-top: 4px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}.msg {
  display: flex;
  width: 100%;
}
.msg .msg-bubble {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 85%;
  min-width: 0;
  font-size: 16px;
  line-height: 1.5;
  word-break: break-word;
}
.msg.user {
  justify-content: flex-end;
}
.msg.user .msg-bubble {
  align-items: flex-end;
}
.msg.assistant {
  justify-content: flex-start;
}
.msg.assistant .msg-bubble {
  align-items: flex-start;
}
.msg.assistant .msg-bubble:has(> .ask-card) {
  width: 100%;
}

.msg-text {
  padding: 12px 16px;
  box-sizing: border-box;
  white-space: pre-wrap;
  border-radius: 16px;
}
.user .msg-text {
  background: #ededf0;
  border-radius: 16px 16px 4px 16px;
}
.assistant .msg-text {
  background: #faf9ff;
  border-radius: 16px 16px 16px 4px;
}

.msg-markdown {
  white-space: normal;
  padding: 12px 16px;
  box-sizing: border-box;
  border-radius: 16px;
  max-width: 100%;
  min-width: 0;
}
.msg-markdown img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
  margin: 8px 0;
}
.msg-markdown table {
  display: block;
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-collapse: collapse;
  margin: 8px 0;
}
.msg-markdown table th,
.msg-markdown table td {
  white-space: nowrap;
}
.msg-markdown table tbody tr {
  transition: background-color 0.15s ease;
}
@media (hover: hover) {
  .msg-markdown table tbody tr:hover {
    background-color: #f5f5f5;
  }
}
.user .msg-markdown {
  background: #ededf0;
  border-radius: 16px 16px 4px 16px;
}
.assistant .msg-markdown {
  padding: 0;
}

.msg-images {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 5px;
}

.msg-image {
  max-width: 200px;
  max-height: 200px;
  border-radius: 8px;
  cursor: pointer;
  display: block;
  margin: 4px 0;
  object-fit: cover;
}

.msg-image-placeholder {
  width: 200px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f5f5;
  border-radius: 8px;
}

.msg-file {
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: 8px;
}
.msg-file a {
  display: block;
  text-decoration: none;
  color: inherit;
}
.msg-file .file-icon {
  font-size: 16px;
}
.msg-file .file-name {
  font-size: 14px;
  color: #333;
}

.loading-dots {
  display: flex;
  gap: 4px;
  padding: 12px 16px;
  box-sizing: border-box;
  border-radius: 16px;
}
.assistant .loading-dots {
  background: #faf9ff;
  border-radius: 16px 16px 16px 4px;
}
.loading-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-primary);
  animation: bounce 1.4s infinite ease-in-out both;
}
.loading-dots span:nth-child(1) {
  animation-delay: 0s;
}
.loading-dots span:nth-child(2) {
  animation-delay: 0.16s;
}
.loading-dots span:nth-child(3) {
  animation-delay: 0.32s;
}

.tool-call {
  padding: 12px 16px;
  box-sizing: border-box;
  border-radius: 8px;
  background: #fafafa;
  border: 1px solid #e5e5e5;
}
.tool-call .tool-name {
  font-weight: 600;
  font-size: 14px;
  color: #333;
}
.tool-call .tool-summary {
  font-size: 13px;
  color: #666;
  margin-top: 4px;
}
.tool-call.running {
  border-color: var(--color-primary);
}
.tool-call.running .tool-name {
  color: var(--color-primary);
}
.tool-call.completed {
  border-color: #52c41a;
}
.tool-call.completed .tool-name {
  color: #52c41a;
}
.tool-call.failed {
  border-color: #ff4d4f;
}
.tool-call.failed .tool-name {
  color: #ff4d4f;
}

@keyframes bounce {
  0%, 80%, 100% {
    transform: scale(0.6);
    opacity: 0.4;
  }
  40% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes askCardSlideIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}.message-list {
  margin: 0 auto;
  padding: 24px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.loop-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.loading-top {
  display: flex;
  justify-content: center;
  padding: 16px 0;
  box-sizing: border-box;
}

.no-more-messages {
  text-align: center;
  padding: 16px 0;
  box-sizing: border-box;
  color: #999;
  font-size: 13px;
}.ai-reply-language-tip {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 12px;
  margin: -15px -20px 15px;
  padding: 9px 40px 9px 16px;
  box-sizing: border-box;
  border-radius: 20px 20px 0 0;
  border-bottom: 1px solid #EEF0F3;
  background: var(--primary-bg);
}
.ai-reply-language-tip .tip-text {
  flex: 1 1 220px;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 13px;
  line-height: 20px;
  color: #555;
}
.ai-reply-language-tip .tip-text strong {
  font-weight: 600;
  color: #222;
}
.ai-reply-language-tip .tip-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 1 1 auto;
  flex-wrap: nowrap;
  min-width: 0;
  gap: 8px;
}
.ai-reply-language-tip .tip-langs {
  display: flex;
  align-items: center;
  align-content: flex-start;
  flex-wrap: wrap;
  height: 26px;
  min-width: 0;
  overflow: hidden;
  gap: 8px;
}
.ai-reply-language-tip .tip-lang {
  flex-shrink: 0;
  height: 26px;
  padding: 0 12px;
  box-sizing: border-box;
  border: 1px solid #DDE2E9;
  border-radius: 999px;
  background: #FFF;
  font-size: 12px;
  line-height: 24px;
  color: #222;
  white-space: nowrap;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
@media (hover: hover) {
  .ai-reply-language-tip .tip-lang:hover {
    border-color: var(--primary);
    color: var(--primary);
  }
}
.ai-reply-language-tip .tip-more {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 3px;
  height: 26px;
  padding: 0 6px 0 8px;
  box-sizing: border-box;
  border: none;
  background: none;
  font-size: 12px;
  line-height: 24px;
  color: var(--primary);
  font-weight: 600;
  white-space: nowrap;
  cursor: pointer;
}
.ai-reply-language-tip .tip-more .tip-more-arrow {
  font-size: 10px;
  transition: transform 0.2s;
}
@media (hover: hover) {
  .ai-reply-language-tip .tip-more:hover {
    opacity: 0.8;
  }
  .ai-reply-language-tip .tip-more:hover .tip-more-arrow {
    transform: translateX(2px);
  }
}
.ai-reply-language-tip .tip-close {
  position: absolute;
  top: 8px;
  right: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  padding: 0;
  border: none;
  border-radius: 6px;
  background: none;
  font-size: 12px;
  color: #999;
  cursor: pointer;
}
@media (hover: hover) {
  .ai-reply-language-tip .tip-close:hover {
    color: #222;
    background: rgba(15, 23, 42, 0.06);
  }
}

.app-layout.has-detail .ai-reply-language-tip .tip-text {
  flex: 1 1 100%;
}
.app-layout.has-detail .ai-reply-language-tip .tip-actions {
  justify-content: flex-start;
}

@media screen and (max-width: 900px) {
  .ai-reply-language-tip {
    gap: 8px;
    padding: 9px 36px 9px 12px;
  }
}
/* ── ChatView 布局 ── */
.chat-scroll-container {
  flex: 1;
  overflow-y: auto;
  min-height: 0;
  position: relative;
}

.chat-scroll-content {
  width: 70%;
  max-width: 1100px;
  min-width: 700px;
  margin: 0 auto;
}

.input-area-wrapper {
  position: relative;
  width: 70%;
  max-width: 1100px;
  min-width: 700px;
  margin: 0 auto 18px;
}

.input-area-container {
  position: relative;
  width: 100%;
  padding: 10px 24px;
  box-sizing: border-box;
}
.input-area-container .base-input-area {
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.08);
}

/* 有右侧详情面板时宽度变为100% */
.app-layout.has-detail .chat-scroll-content,
.app-layout.has-detail .input-area-wrapper {
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.scroll-to-bottom-btn {
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 4px 16px rgba(124, 58, 237, 0.2);
  cursor: pointer;
  transition: all 0.2s ease;
  z-index: 10;
}
@media (hover: hover) {
  .scroll-to-bottom-btn:hover {
    background: #f5f3ff;
    box-shadow: 0 6px 20px rgba(124, 58, 237, 0.3);
    transform: translateX(-50%) translateY(-2px);
  }
}.sourcing-overview {
  background: linear-gradient(90deg, #E5E9FF 0%, #FFFFFF 100%);
  border-radius: 12px;
  padding: 20px;
  box-sizing: border-box;
  margin-bottom: 24px;
  box-shadow: 0 2px 12px rgba(98, 84, 254, 0.08);
  border: 1px solid rgba(98, 84, 254, 0.2);
}
.sourcing-overview .section-title {
  font-size: 20px;
  line-height: 30px;
  font-weight: bold;
  margin-bottom: 20px;
}
.sourcing-overview .overview-content {
  display: flex;
  gap: 30px;
}
.sourcing-overview .key-attributes {
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 10px;
}
.sourcing-overview .key-attributes .attribute-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.sourcing-overview .key-attributes .attribute-label {
  flex-shrink: 0;
  font-size: 13px;
  font-weight: 600;
  min-width: 120px;
}
.sourcing-overview .key-attributes .attribute-values {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.sourcing-overview .key-attributes .attribute-tag {
  padding: 4px 12px;
  box-sizing: border-box;
  background: rgba(98, 84, 254, 0.05);
  border: 1px solid rgba(98, 84, 254, 0.2);
  border-radius: 6px;
  font-size: 12px;
  line-height: 1.5;
  font-weight: 500;
  color: var(--color-primary);
}
.sourcing-overview .decision-summary {
  flex: 1;
  min-width: 0;
  border-radius: 8px;
  padding: 12px 16px;
  box-sizing: border-box;
}
.sourcing-overview .decision-summary ul li {
  margin-bottom: 8px;
  padding-left: 18px;
  box-sizing: border-box;
  position: relative;
}
.sourcing-overview .decision-summary ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-primary);
}

@media screen and (max-width: 768px) {
  .sourcing-overview {
    padding: 16px;
    box-sizing: border-box;
    margin-bottom: 16px;
  }
  .sourcing-overview .section-title {
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 16px;
  }
  .sourcing-overview .overview-content {
    flex-direction: column;
    gap: 16px;
  }
  .sourcing-overview .key-attributes {
    max-width: 100%;
    gap: 10px;
  }
  .sourcing-overview .key-attributes .attribute-row {
    flex-wrap: wrap;
    gap: 8px;
  }
  .sourcing-overview .key-attributes .attribute-label {
    min-width: auto;
  }
  .sourcing-overview .decision-summary {
    padding: 10px 0 0;
    box-sizing: border-box;
  }
}
@media screen and (max-width: 480px) {
  .sourcing-overview {
    padding: 12px;
    box-sizing: border-box;
    margin-bottom: 12px;
  }
  .sourcing-overview .section-title {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 12px;
  }
  .sourcing-overview .overview-content {
    gap: 12px;
  }
  .sourcing-overview .key-attributes {
    gap: 8px;
  }
  .sourcing-overview .key-attributes .attribute-label {
    font-size: 12px;
  }
  .sourcing-overview .key-attributes .attribute-tag {
    font-size: 11px;
    padding: 3px 8px;
    box-sizing: border-box;
  }
  .sourcing-overview .decision-summary ul li {
    font-size: 13px;
    margin-bottom: 6px;
  }
}.filters-sidebar {
  width: 215px;
  flex-shrink: 0;
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-sizing: border-box;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(98, 84, 254, 0.2);
  align-self: flex-start;
  position: sticky;
  top: 20px;
}
.filters-sidebar-drawer {
  width: 100%;
  border: none;
  box-shadow: none;
  border-radius: 0;
  padding: 0;
  box-sizing: border-box;
  position: static;
}
.filters-sidebar .filters-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.filters-sidebar .filters-header .filters-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a;
}
.filters-sidebar .filters-header .clear-all.ant-btn {
  padding: 0;
  box-sizing: border-box;
  font-size: 13px;
  color: #333;
  text-decoration: underline;
  height: auto;
}
@media (hover: hover) {
  .filters-sidebar .filters-header .clear-all.ant-btn:hover {
    color: var(--color-primary);
  }
}
.filters-sidebar .selected-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.filters-sidebar .selected-tags .selected-tag.ant-tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  box-sizing: border-box;
  background: #f5f5f5;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  font-size: 13px;
  color: #333;
  margin: 0;
}
.filters-sidebar .selected-tags .selected-tag.ant-tag .ant-tag-close-icon {
  margin-inline-start: 4px;
  color: #999;
}
@media (hover: hover) {
  .filters-sidebar .selected-tags .selected-tag.ant-tag .ant-tag-close-icon:hover {
    color: var(--color-primary);
  }
}
.filters-sidebar .filter-collapse.ant-collapse .ant-collapse-item > .ant-collapse-header {
  padding: 14px 0;
  box-sizing: border-box;
  align-items: center;
}
.filters-sidebar .filter-collapse.ant-collapse .ant-collapse-item > .ant-collapse-header .filter-label {
  font-size: 16px;
  font-weight: 700;
}
.filters-sidebar .filter-collapse.ant-collapse .ant-collapse-item > .ant-collapse-content > .ant-collapse-content-box {
  padding: 0;
  box-sizing: border-box;
}
.filters-sidebar .filter-group-body .filter-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
  box-sizing: border-box;
  cursor: pointer;
  border-radius: 4px;
  transition: background 0.15s;
}
@media (hover: hover) {
  .filters-sidebar .filter-group-body .filter-option:hover {
    background: rgba(98, 84, 254, 0.06);
  }
}
.filters-sidebar .filter-group-body .filter-option .option-name {
  font-weight: 500;
}
.filters-sidebar .filter-group-body .filter-option .option-count {
  font-size: 13px;
  color: rgba(0, 0, 0, 0.45);
}

.filters-trigger {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;
  padding: 10px 6px;
  box-sizing: border-box;
  border-radius: 0 10px 10px 0;
  background: var(--color-primary);
  color: #fff;
  box-shadow: 2px 2px 10px rgba(98, 84, 254, 0.4);
  cursor: pointer;
  transition: all 0.2s;
  gap: 4px;
}
.filters-trigger:active {
  transform: translateY(-50%) scale(0.95);
}
.filters-trigger .filters-trigger-icon {
  font-size: 16px;
}
.filters-trigger .filters-trigger-text {
  writing-mode: vertical-lr;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
}
.filters-trigger .filters-trigger-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 18px;
  height: 18px;
  line-height: 18px;
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  background: #e74c3c;
  border-radius: 9px;
  padding: 0 4px;
  box-sizing: border-box;
}

.filters-drawer .ant-drawer-body {
  padding: 20px 16px;
  box-sizing: border-box;
}

@media screen and (max-width: 480px) {
  .filters-sidebar {
    padding: 16px;
    box-sizing: border-box;
  }
  .filters-sidebar .filters-header .filters-title {
    font-size: 18px;
  }
  .filters-sidebar .selected-tags {
    gap: 6px;
  }
  .filters-sidebar .selected-tags .selected-tag.ant-tag {
    font-size: 12px;
    padding: 3px 8px;
    box-sizing: border-box;
  }
  .filters-sidebar .filter-collapse.ant-collapse .ant-collapse-item > .ant-collapse-header {
    padding: 12px 0;
    box-sizing: border-box;
  }
  .filters-sidebar .filter-collapse.ant-collapse .ant-collapse-item > .ant-collapse-header .filter-label {
    font-size: 14px;
  }
  .filters-sidebar .filter-group-body .filter-option {
    padding: 8px;
    box-sizing: border-box;
  }
  .filters-sidebar .filter-group-body .filter-option .option-name {
    font-size: 14px;
  }
  .filters-sidebar .filter-group-body .filter-option .option-count {
    font-size: 12px;
  }
  .filters-trigger {
    padding: 8px 4px;
    box-sizing: border-box;
  }
  .filters-trigger .filters-trigger-icon {
    font-size: 14px;
  }
  .filters-trigger .filters-trigger-text {
    font-size: 11px;
  }
  .filters-trigger .filters-trigger-badge {
    min-width: 16px;
    height: 16px;
    line-height: 16px;
    font-size: 10px;
  }
  .filters-drawer .ant-drawer-body {
    padding: 16px 12px;
    box-sizing: border-box;
  }
}
/*一行省略号*/
/*多行省略号(默认两行)*/
/*水平垂直居中 不固定宽高*/
/*animate*/
/*Scrollbar*/
/*更改svg图片颜色 父级样式要加overflow: hidden;*/
.supplier-card {
  background: linear-gradient(180deg, #f0f3ff 5%, #fbfcff 41%, #fff 98%);
  border-radius: 12px;
  margin-bottom: 20px;
  border: 1px solid rgba(98, 84, 254, 0.2);
  overflow: hidden;
  transition: box-shadow 0.2s;
}
@media (hover: hover) {
  .supplier-card:hover {
    box-shadow: 0 4px 20px rgba(98, 84, 254, 0.12);
  }
}
.supplier-card:last-child {
  margin-bottom: 0;
}
.supplier-card .card-body {
  padding: 24px;
  box-sizing: border-box;
}
.supplier-card .card-body .company-name {
  display: flex;
  gap: 15px;
  align-items: center;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 10px;
  cursor: pointer;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.supplier-card .card-body .company-labels {
  display: flex;
  gap: 5px;
  margin-bottom: 10px;
}
.supplier-card .card-body .label-item {
  padding: 3px 6px;
  box-sizing: border-box;
  background: #fff;
  border: 1px solid rgba(98, 84, 254, 0.2);
  border-radius: 6px;
  font-size: 12px;
  line-height: 1.5;
  font-weight: 500;
}
.supplier-card .card-body .card-content {
  display: flex;
  gap: 20px;
}
.supplier-card .card-body .card-content .content-left {
  flex: 1;
  min-width: 0;
  display: flex;
  gap: 16px;
}
.supplier-card .card-body .card-content .content-right {
  display: flex;
  gap: 5px;
  align-items: flex-start;
  flex-shrink: 0;
}
.supplier-card .company-image {
  width: 210px;
  height: 140px;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
  background: rgba(98, 84, 254, 0.08);
}
.supplier-card .company-image .ant-carousel,
.supplier-card .company-image .slick-slider,
.supplier-card .company-image .slick-list,
.supplier-card .company-image .slick-track,
.supplier-card .company-image .slick-slide > div {
  height: 100%;
}
.supplier-card .company-image img {
  width: 100%;
  height: 140px;
  object-fit: cover;
}
.supplier-card .company-image .carousel-dots {
  bottom: 6px;
}
.supplier-card .company-image .carousel-dots li button {
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  width: 6px;
  height: 6px;
}
.supplier-card .company-image .carousel-dots li.slick-active button {
  background: #fff;
  width: 6px;
}
.supplier-card .company-details {
  flex: 1;
  min-width: 0;
  overflow: hidden;
}
.supplier-card .company-details .detail-row {
  display: flex;
  gap: 8px;
  padding: 4px 0;
  box-sizing: border-box;
  line-height: 1.5;
}
.supplier-card .company-details .detail-row .detail-label {
  flex-shrink: 0;
  font-size: 14px;
  white-space: nowrap;
  color: rgba(0, 0, 0, 0.45);
}
.supplier-card .company-details .detail-row .detail-value {
  flex: 1;
  min-width: 0;
  font-size: 14px;
  color: #333;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.supplier-card .product-item {
  text-align: center;
  padding: 5px;
  box-sizing: border-box;
  border-radius: 8px;
  width: 130px;
  cursor: pointer;
  transition: all 0.3s ease;
}
@media (hover: hover) {
  .supplier-card .product-item:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1019607843);
    transform: translateY(-1px);
  }
}
.supplier-card .product-item .product-img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 8px;
  border: 1px solid rgba(98, 84, 254, 0.15);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 6px;
}
.supplier-card .product-item .product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.supplier-card .product-item .product-img .placeholder-icon {
  font-size: 40px;
  color: rgba(98, 84, 254, 0.4);
}
.supplier-card .product-item .product-name {
  font-size: 14px;
  line-height: 1.5;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

@media screen and (min-width: 2560px) {
  .supplier-card .product-item {
    width: 160px;
  }
}
@media screen and (max-width: 768px) {
  .supplier-card {
    margin-bottom: 16px;
  }
  .supplier-card .card-body {
    padding: 16px;
    box-sizing: border-box;
  }
  .supplier-card .card-body .company-name {
    font-size: 16px;
    gap: 10px;
  }
  .supplier-card .card-body .company-labels {
    flex-wrap: wrap;
  }
  .supplier-card .card-body .card-content {
    flex-direction: column;
    gap: 16px;
  }
  .supplier-card .card-body .card-content .content-left {
    flex-direction: column;
    gap: 12px;
  }
  .supplier-card .card-body .card-content .content-right {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 4px;
    box-sizing: border-box;
  }
  .supplier-card .company-image {
    width: 100%;
    height: 180px;
  }
  .supplier-card .company-image img {
    height: 180px;
  }
  .supplier-card .product-item {
    width: 110px;
    min-width: 110px;
  }
  .supplier-card .product-item .product-name {
    font-size: 12px;
  }
}
@media screen and (max-width: 480px) {
  .supplier-card {
    margin-bottom: 12px;
  }
  .supplier-card .card-body {
    padding: 12px;
    box-sizing: border-box;
  }
  .supplier-card .card-body .company-name {
    font-size: 15px;
    gap: 8px;
  }
  .supplier-card .card-body .label-item {
    font-size: 11px;
    padding: 2px 5px;
    box-sizing: border-box;
  }
  .supplier-card .card-body .card-content {
    gap: 12px;
  }
  .supplier-card .card-body .card-content .content-left {
    gap: 10px;
  }
  .supplier-card .company-image {
    height: 150px;
  }
  .supplier-card .company-image img {
    height: 150px;
  }
  .supplier-card .company-details .detail-row .detail-label {
    font-size: 13px;
  }
  .supplier-card .company-details .detail-row .detail-value {
    font-size: 13px;
  }
  .supplier-card .product-item {
    width: 100px;
    min-width: 100px;
  }
  .supplier-card .product-item .product-name {
    font-size: 11px;
  }
}.supplier-listings .no-result {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  box-sizing: border-box;
}
.supplier-listings .no-result img {
  width: 200px;
  margin-bottom: 16px;
}
.supplier-listings .listings-pagination {
  margin-top: 24px;
  display: flex;
  justify-content: center;
}
.supplier-listings .listings-pagination .ant-pagination-item-active {
  border-color: var(--color-primary);
}
.supplier-listings .listings-pagination .ant-pagination-item-active a {
  color: var(--color-primary);
}
@media (hover: hover) {
  .supplier-listings .listings-pagination .ant-pagination-item:hover {
    border-color: var(--color-primary);
    background-color: #fff;
  }
  .supplier-listings .listings-pagination .ant-pagination-item:hover a {
    color: var(--color-primary);
  }
}
@media (hover: hover) {
  .supplier-listings .listings-pagination .ant-pagination-prev:hover .ant-pagination-item-link,
  .supplier-listings .listings-pagination .ant-pagination-next:hover .ant-pagination-item-link {
    color: var(--color-primary);
    border-color: var(--color-primary);
  }
}

@media screen and (max-width: 768px) {
  .supplier-listings .listings-pagination {
    margin-top: 16px;
  }
}
@media screen and (max-width: 480px) {
  .supplier-listings .no-result {
    padding: 40px 16px;
    box-sizing: border-box;
  }
  .supplier-listings .no-result img {
    width: 150px;
  }
  .supplier-listings .listings-pagination {
    margin-top: 12px;
  }
  .supplier-listings .listings-pagination .ant-pagination-item,
  .supplier-listings .listings-pagination .ant-pagination-prev,
  .supplier-listings .listings-pagination .ant-pagination-next {
    min-width: 28px;
    height: 28px;
    line-height: 28px;
    font-size: 12px;
  }
}.related-searches {
  background: linear-gradient(90deg, #E5E9FF 0%, #FFFFFF 100%);
  border-radius: 12px;
  padding: 20px;
  box-sizing: border-box;
  margin-bottom: 24px;
  box-shadow: 0 2px 12px rgba(98, 84, 254, 0.08);
  border: 1px solid rgba(98, 84, 254, 0.2);
}
.related-searches .section-title {
  font-size: 20px;
  font-weight: bold;
}
.related-searches .related-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 20px;
}
.related-searches .keyword-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.related-searches .keyword-tags .keyword-tag.ant-tag {
  padding: 6px 12px;
  box-sizing: border-box;
  background: #FFF;
  border: 1px solid rgba(98, 84, 254, 0.2);
  border-radius: 6px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  margin: 0;
  line-height: 1.4;
}
@media (hover: hover) {
  .related-searches .keyword-tags .keyword-tag.ant-tag:hover {
    background: rgba(98, 84, 254, 0.1);
    border-color: var(--color-primary);
    box-shadow: 0 2px 8px rgba(98, 84, 254, 0.15);
    transform: translateY(-1px);
  }
}
.related-searches .keyword-tags .keyword-tag.ant-tag.keyword-tag-selected {
  background: var(--color-primary);
  color: #fff;
}
.related-searches .search-action {
  display: flex;
  gap: 12px;
  align-items: center;
  width: 100%;
}
.related-searches .search-action .search-input-wrap {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  padding: 6px 12px;
  box-sizing: border-box;
  border: 1px solid rgba(98, 84, 254, 0.2);
  border-radius: 8px;
  background: #fff;
  transition: all 0.2s;
}
.related-searches .search-action .search-input-wrap:focus-within {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 2px rgba(98, 84, 254, 0.12);
}
@media (hover: hover) {
  .related-searches .search-action .search-input-wrap:hover {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 2px rgba(98, 84, 254, 0.12);
  }
}
.related-searches .search-action .search-input-wrap .selected-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
}
.related-searches .search-action .search-input-wrap .selected-tags-prefix {
  font-size: 16px;
  color: #222;
  white-space: nowrap;
}
.related-searches .search-action .search-input-wrap .selected-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 2px 8px;
  box-sizing: border-box;
  background: var(--color-primary);
  color: #fff;
  border-radius: 4px;
  font-size: 13px;
  line-height: 22px;
  white-space: nowrap;
}
.related-searches .search-action .search-input-wrap .selected-tag .selected-tag-close {
  font-size: 10px;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.7);
}
@media (hover: hover) {
  .related-searches .search-action .search-input-wrap .selected-tag .selected-tag-close:hover {
    color: #fff;
  }
}
.related-searches .search-action .search-input-wrap .search-input {
  flex: 1;
  min-width: 80px;
}
.related-searches .search-action .search-input-wrap .ant-input {
  padding: 4px 8px;
  box-sizing: border-box;
  height: auto;
}
.related-searches .search-action .search-input-wrap .ant-input::placeholder {
  font-size: 14px;
}
.related-searches .search-action .search-input-wrap .ant-input {
  line-height: 22px;
  border: none;
  border-radius: 0;
  font-size: 16px;
  resize: none;
  box-shadow: none;
}
.related-searches .search-action .search-input-wrap .ant-input:focus {
  border: none;
  box-shadow: none;
}
@media (hover: hover) {
  .related-searches .search-action .search-input-wrap .ant-input:hover {
    border: none;
    box-shadow: none;
  }
}
.related-searches .search-action .cta-button.ant-btn {
  padding: 10px 20px;
  box-sizing: border-box;
  height: auto;
  color: #fff;
  background: linear-gradient(83deg, #FE59FD 0%, #F202B0 24%, #5151FF 50%, #0E5BF2 74%, #1FCEEC 99%);
  border-radius: 8px;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
@media (hover: hover) {
  .related-searches .search-action .cta-button.ant-btn:hover {
    opacity: 0.8;
  }
}

@media screen and (max-width: 768px) {
  .related-searches {
    padding: 16px;
    box-sizing: border-box;
    margin-bottom: 16px;
  }
  .related-searches .section-title {
    font-size: 18px;
  }
  .related-searches .related-content {
    gap: 16px;
    margin-top: 16px;
  }
  .related-searches .keyword-tags {
    gap: 8px;
  }
  .related-searches .keyword-tags .keyword-tag.ant-tag {
    font-size: 14px;
    padding: 6px 10px;
    box-sizing: border-box;
  }
  .related-searches .search-action {
    flex-direction: column;
    gap: 12px;
  }
  .related-searches .search-action .search-input-wrap {
    width: 100%;
  }
  .related-searches .search-action .search-input-wrap .selected-tags-prefix {
    font-size: 14px;
    white-space: normal;
    word-break: break-word;
  }
  .related-searches .search-action .cta-button.ant-btn {
    width: 100%;
    text-align: center;
  }
}
@media screen and (max-width: 480px) {
  .related-searches {
    padding: 12px;
    box-sizing: border-box;
    margin-bottom: 12px;
  }
  .related-searches .section-title {
    font-size: 16px;
  }
  .related-searches .related-content {
    gap: 12px;
    margin-top: 12px;
  }
  .related-searches .keyword-tags {
    gap: 6px;
  }
  .related-searches .keyword-tags .keyword-tag.ant-tag {
    font-size: 12px;
    padding: 4px 8px;
    box-sizing: border-box;
  }
  .related-searches .search-action {
    gap: 10px;
  }
  .related-searches .search-action .search-input-wrap {
    padding: 4px 10px;
    box-sizing: border-box;
  }
  .related-searches .search-action .search-input-wrap .selected-tags-prefix {
    font-size: 13px;
  }
  .related-searches .search-action .search-input-wrap .selected-tag {
    font-size: 11px;
    padding: 2px 6px;
    box-sizing: border-box;
  }
  .related-searches .search-action .search-input-wrap .ant-input {
    font-size: 14px;
  }
  .related-searches .search-action .cta-button.ant-btn {
    padding: 8px 16px;
    box-sizing: border-box;
    font-size: 14px;
  }
}.seo-faq-section {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-sizing: border-box;
  margin-bottom: 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(98, 84, 254, 0.2);
}
.seo-faq-section .section-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 8px;
}
.seo-faq-section .faq-collapse.ant-collapse .ant-collapse-item {
  border-bottom: 1px solid rgba(98, 84, 254, 0.1);
  border-radius: 0;
}
.seo-faq-section .faq-collapse.ant-collapse .ant-collapse-item:last-child {
  border-bottom: none;
}
.seo-faq-section .faq-collapse.ant-collapse .ant-collapse-item > .ant-collapse-header {
  padding: 10px;
  box-sizing: border-box;
  border-radius: 8px;
}
@media (hover: hover) {
  .seo-faq-section .faq-collapse.ant-collapse .ant-collapse-item > .ant-collapse-header:hover {
    background: rgba(98, 84, 254, 0.03);
  }
}
.seo-faq-section .faq-collapse.ant-collapse .ant-collapse-item > .ant-collapse-header .faq-text {
  font-size: 16px;
}
.seo-faq-section .faq-collapse.ant-collapse .ant-collapse-item > .ant-collapse-content > .ant-collapse-content-box {
  padding: 4px 4px 16px 24px;
  box-sizing: border-box;
}
.seo-faq-section .faq-collapse.ant-collapse .ant-collapse-item > .ant-collapse-content > .ant-collapse-content-box .faq-answer {
  font-size: 16px;
  line-height: 1.5;
}

@media screen and (max-width: 768px) {
  .seo-faq-section {
    padding: 16px;
    box-sizing: border-box;
    margin-bottom: 16px;
  }
  .seo-faq-section .section-title {
    font-size: 18px;
  }
  .seo-faq-section .faq-collapse.ant-collapse .ant-collapse-item > .ant-collapse-header {
    padding: 10px 4px;
    box-sizing: border-box;
  }
  .seo-faq-section .faq-collapse.ant-collapse .ant-collapse-item > .ant-collapse-header .faq-text {
    font-size: 14px;
  }
  .seo-faq-section .faq-collapse.ant-collapse .ant-collapse-item > .ant-collapse-content > .ant-collapse-content-box {
    padding: 4px 4px 12px 16px;
    box-sizing: border-box;
  }
  .seo-faq-section .faq-collapse.ant-collapse .ant-collapse-item > .ant-collapse-content > .ant-collapse-content-box .faq-answer {
    font-size: 14px;
  }
}
@media screen and (max-width: 480px) {
  .seo-faq-section {
    padding: 12px;
    box-sizing: border-box;
    margin-bottom: 12px;
  }
  .seo-faq-section .section-title {
    font-size: 16px;
    margin-bottom: 6px;
  }
  .seo-faq-section .faq-collapse.ant-collapse .ant-collapse-item > .ant-collapse-header {
    padding: 8px 2px;
    box-sizing: border-box;
  }
  .seo-faq-section .faq-collapse.ant-collapse .ant-collapse-item > .ant-collapse-header .faq-text {
    font-size: 13px;
  }
  .seo-faq-section .faq-collapse.ant-collapse .ant-collapse-item > .ant-collapse-content > .ant-collapse-content-box {
    padding: 4px 2px 10px 12px;
    box-sizing: border-box;
  }
  .seo-faq-section .faq-collapse.ant-collapse .ant-collapse-item > .ant-collapse-content > .ant-collapse-content-box .faq-answer {
    font-size: 13px;
    line-height: 1.4;
  }
}.supplier-list-page {
  --seo-primary-soft: color-mix(in srgb, var(--color-primary) 7%, #fff);
  height: 100%;
  flex: 1;
  font-size: 16px;
  line-height: 24px;
  overflow: auto;
  background: linear-gradient(180deg, var(--seo-primary-soft) 0%, #f6f7fa 300px, #f6f7fa 100%);
}
.supplier-list-page .supplier-list-content {
  width: var(--content-width);
  margin: 0 auto;
  padding: 20px 0;
  box-sizing: border-box;
}
.supplier-list-page .page-header {
  font-size: 30px;
  font-weight: 600;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px 40px;
  box-sizing: border-box;
}
.supplier-list-page .page-header .page-header-link {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: flex-start;
}
.supplier-list-page .page-header img {
  width: auto;
  height: 40px;
  cursor: pointer;
}
.supplier-list-page .page-header span {
  cursor: pointer;
}
.supplier-list-page .page-container {
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}
.supplier-list-page .supplier-section {
  display: flex;
  flex-direction: row;
  gap: 24px;
  margin-bottom: 24px;
}
.supplier-list-page .supplier-section .supplier-main {
  flex: 1;
  min-width: 0;
}
.supplier-list-page .page-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 0;
  box-sizing: border-box;
  background: transparent;
}
.supplier-list-page .page-footer a {
  text-decoration: underline;
  text-underline-offset: 5px;
}
@media (hover: hover) {
  .supplier-list-page .page-footer a:hover {
    color: #444;
  }
}
.supplier-list-page .page-footer .footer-divider {
  height: 15px;
  border-inline-start: 1px solid #222;
}

.supplier-spin .ant-spin-dot-item {
  background-color: var(--color-primary);
}

@media screen and (max-width: 1700px) {
  .supplier-list-page .supplier-list-content {
    width: calc(100% - 40px);
  }
}
@media screen and (max-width: 1500px) {
  .supplier-card .card-body .card-content {
    flex-direction: column;
  }
}
@media screen and (max-width: 768px) {
  .supplier-list-page {
    font-size: 14px;
    line-height: 22px;
  }
  .supplier-list-page .supplier-list-content {
    width: 100%;
    padding: 16px 0;
    box-sizing: border-box;
  }
  .supplier-list-page .page-header {
    padding: 20px 16px;
    box-sizing: border-box;
  }
  .supplier-list-page .page-container {
    padding: 0 16px;
    box-sizing: border-box;
  }
  .supplier-list-page .supplier-section {
    flex-direction: column;
    gap: 16px;
  }
  .supplier-list-page .page-footer {
    flex-wrap: wrap;
    justify-content: center;
    padding: 24px 16px;
    box-sizing: border-box;
    font-size: 12px;
    gap: 4px;
  }
}
@media screen and (max-width: 480px) {
  .supplier-list-page {
    font-size: 13px;
    line-height: 20px;
  }
  .supplier-list-page .supplier-list-content {
    padding: 12px 0;
    box-sizing: border-box;
  }
  .supplier-list-page .page-header {
    padding: 16px 12px;
    box-sizing: border-box;
    font-size: 24px;
  }
  .supplier-list-page .page-container {
    padding: 0 12px;
    box-sizing: border-box;
  }
  .supplier-list-page .supplier-section {
    gap: 12px;
  }
  .supplier-list-page .page-footer {
    padding: 20px 12px;
    box-sizing: border-box;
    font-size: 11px;
  }
}.product-seo-section-heading {
  margin-bottom: 16px;
}
.product-seo-section-heading h2 {
  margin-bottom: 10px;
}

.product-seo-section-note {
  margin: 0;
  font-size: 16px;
  line-height: 24px;
}

.product-seo-considerations {
  padding: 20px;
  box-sizing: border-box;
  border: 1px solid rgba(98, 84, 254, 0.16);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(18, 24, 40, 0.05);
}
.product-seo-considerations-drawer {
  padding: 0;
  box-sizing: border-box;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

.consideration-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.consideration-title-main {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  font-size: 20px;
  font-weight: 700;
}
.consideration-title-main .anticon {
  color: var(--color-primary);
  font-size: 17px;
}

.consideration-clear {
  flex-shrink: 0;
  padding: 0;
  box-sizing: border-box;
  border: none;
  background: transparent;
  color: #333;
  font-size: 13px;
  font-weight: 600;
  text-decoration: underline;
  cursor: pointer;
}
@media (hover: hover) {
  .consideration-clear:hover {
    color: var(--color-primary);
  }
}

.consideration-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  min-height: 36px;
  font-size: 14px;
  font-weight: 600;
}

.consideration-label {
  flex-shrink: 0;
  color: #111827;
}

.filter-chip {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 16px;
  box-sizing: border-box;
  border: 1px solid #e3e6ed;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  font-weight: 500;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}
@media (hover: hover) {
  .filter-chip:hover {
    border-color: var(--seo-primary-border);
    box-shadow: 0 2px 8px rgba(18, 24, 40, 0.08);
  }
}
.filter-chip.active {
  border-color: var(--color-primary);
  background: var(--seo-primary-hover);
  color: var(--color-primary);
  box-shadow: 0 2px 8px rgba(98, 84, 254, 0.12);
}

.price-input-group {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 32px;
  padding: 2px 8px;
  box-sizing: border-box;
  border: 1px solid #e3e6ed;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
}
.price-input-group input {
  width: 86px;
  height: 28px;
  border: none;
  outline: none;
  background: transparent;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  text-align: center;
}
.price-input-group:focus-within {
  border-color: var(--seo-primary-border);
  box-shadow: 0 2px 8px rgba(98, 84, 254, 0.12);
}

.filter-summary-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
  padding-top: 14px;
  box-sizing: border-box;
  border-top: 1px solid rgba(18, 24, 40, 0.08);
  font-size: 14px;
  line-height: 22px;
}

.chips {
  margin-top: 10px;
}

.product-filter-trigger {
  display: none;
}

@media screen and (max-width: 768px) {
  .product-seo-section-note {
    font-size: 14px;
    line-height: 22px;
  }
  .product-filter-trigger {
    position: fixed;
    left: 0;
    top: 50%;
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 10px 6px;
    box-sizing: border-box;
    border: none;
    border-radius: 0 10px 10px 0;
    background: var(--color-primary);
    color: #fff;
    box-shadow: 2px 2px 10px rgba(98, 84, 254, 0.36);
    cursor: pointer;
    transform: translateY(-50%);
  }
  .product-filter-trigger:active {
    transform: translateY(-50%) scale(0.96);
  }
  .product-filter-trigger-icon {
    font-size: 16px;
  }
  .product-filter-trigger-text {
    writing-mode: vertical-lr;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
  }
  .product-filter-trigger-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    min-width: 18px;
    height: 18px;
    padding: 0 4px;
    box-sizing: border-box;
    border-radius: 9px;
    background: #e74c3c;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    line-height: 18px;
    text-align: center;
  }
  .product-filter-drawer .ant-drawer-body {
    padding: 20px 16px;
    box-sizing: border-box;
  }
  .consideration-title-main {
    font-size: 18px;
  }
  .consideration-row {
    align-items: flex-start;
    gap: 8px;
    font-size: 13px;
  }
  .consideration-label {
    width: 100%;
  }
  .filter-chip {
    min-height: 30px;
    padding: 0 12px;
    box-sizing: border-box;
    font-size: 13px;
  }
  .price-input-group {
    width: 100%;
    justify-content: space-between;
  }
  .price-input-group input {
    width: min(36vw, 160px);
  }
  .filter-summary-row {
    align-items: flex-start;
    flex-direction: column;
  }
}
@media screen and (max-width: 480px) {
  .product-filter-drawer .ant-drawer-body {
    padding: 16px 12px;
    box-sizing: border-box;
  }
  .product-filter-trigger {
    padding: 8px 4px;
    box-sizing: border-box;
  }
  .product-filter-trigger-icon {
    font-size: 14px;
  }
  .product-filter-trigger-text {
    font-size: 11px;
  }
  .product-filter-trigger-badge {
    min-width: 16px;
    height: 16px;
    font-size: 10px;
    line-height: 16px;
  }
  .filter-chip {
    max-width: 100%;
    min-height: 28px;
    padding: 0 10px;
    box-sizing: border-box;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .price-input-group {
    gap: 6px;
  }
  .price-input-group input {
    width: 0;
    flex: 1;
    min-width: 0;
  }
}.product-seo-card {
  display: block;
  width: 100%;
  padding: 0;
  box-sizing: border-box;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 12px;
  background: var(--seo-panel-bg);
  color: inherit;
  text-align: left;
  cursor: pointer;
  transition: all 0.2s ease;
}
@media (hover: hover) {
  .product-seo-card:hover {
    border-color: var(--seo-primary-border);
    box-shadow: 0 6px 18px rgba(18, 24, 40, 0.08);
    transform: translateY(-2px);
  }
}

.product-seo-card-image {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #f9fafb;
  color: #8792a3;
}
.product-seo-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-seo-card-body {
  min-width: 0;
  min-height: 120px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 12px;
  box-sizing: border-box;
}
.product-seo-card-body h3 {
  margin: 0;
  overflow: hidden;
  color: #374151;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.product-seo-card-price {
  min-height: 27px;
  color: #4b5563;
  font-size: 18px;
  font-weight: 600;
  line-height: 27px;
}

.product-seo-card-moq {
  color: #6b7280;
  font-size: 16px;
  line-height: 20px;
}

.product-seo-card-source {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: #374151;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
}
.product-seo-card-source .source-icon {
  width: 25px;
  height: 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.product-seo-card-source .source-icon img {
  width: 25px;
  height: 25px;
  object-fit: contain;
}
.product-seo-card-source span:last-child {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media screen and (max-width: 640px) {
  .product-seo-card {
    display: grid;
    grid-template-columns: 112px minmax(0, 1fr);
  }
  .product-seo-card-image {
    aspect-ratio: 1;
  }
  .product-seo-card-body {
    min-height: 112px;
    padding: 10px 12px;
    box-sizing: border-box;
  }
  .product-seo-card-body h3 {
    display: -webkit-box;
    font-size: 15px;
    line-height: 22px;
    white-space: normal;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }
  .product-seo-card-price {
    min-height: 22px;
    font-size: 14px;
    line-height: 22px;
  }
  .product-seo-card-moq {
    font-size: 13px;
    line-height: 18px;
  }
  .product-seo-card-source {
    gap: 6px;
    font-size: 13px;
    line-height: 20px;
  }
  .product-seo-card-source .source-icon {
    width: 20px;
    height: 20px;
  }
  .product-seo-card-source .source-icon img {
    width: 20px;
    height: 20px;
  }
}
@media screen and (max-width: 380px) {
  .product-seo-card {
    grid-template-columns: 96px minmax(0, 1fr);
  }
  .product-seo-card-body {
    min-height: 96px;
  }
}.product-seo-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

@media screen and (max-width: 1800px) {
  .product-seo-list {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (max-width: 1500px) {
  .product-seo-list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 640px) {
  .product-seo-list {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}.product-seo-guide {
  color: #20242c;
}
.product-seo-guide .empty-panel {
  min-height: 120px;
  padding: 0;
  box-sizing: border-box;
  border: none;
  background: transparent;
  box-shadow: none;
}.discover-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 18px;
  box-sizing: border-box;
  border: 1px solid var(--seo-primary-border);
  border-radius: 12px;
  background: linear-gradient(180deg, var(--seo-primary-soft) 0%, rgba(255, 255, 255, 0.78) 100%);
  box-shadow: 0 10px 28px rgba(18, 24, 40, 0.045);
  backdrop-filter: blur(8px);
}
.discover-tags .ant-tag {
  margin: 0;
  padding: 6px 12px;
  box-sizing: border-box;
  border: 1px solid var(--seo-primary-border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}
@media (hover: hover) {
  .discover-tags .ant-tag:hover {
    box-shadow: 0 2px 8px rgba(98, 84, 254, 0.15);
    transform: translateY(-1px);
  }
}
.discover-tags .empty-panel {
  min-height: 120px;
  box-sizing: border-box;
}

@media screen and (max-width: 768px) {
  .discover-tags {
    gap: 8px;
    padding: 14px;
    box-sizing: border-box;
  }
  .discover-tags .ant-tag {
    padding: 5px 10px;
    box-sizing: border-box;
    font-size: 13px;
    line-height: 20px;
  }
}
@media screen and (max-width: 480px) {
  .discover-tags {
    padding: 12px;
    box-sizing: border-box;
  }
  .discover-tags .ant-tag {
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}.related-search-list {
  display: grid;
  gap: 10px;
}
.related-search-list button {
  width: 100%;
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 18px;
  box-sizing: border-box;
  border: 1px solid #ddd;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  color: #151515;
  text-align: left;
  font-size: 14px;
  line-height: 1.5;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.related-search-list button span {
  min-width: 0;
}
.related-search-list button .anticon {
  flex-shrink: 0;
  color: #111;
  font-size: 18px;
}
@media (hover: hover) {
  .related-search-list button:hover {
    box-shadow: 0 4px 12px rgba(18, 24, 40, 0.08);
    transform: translateY(-1px);
  }
}
.related-search-list .empty-panel {
  min-height: 52px;
  padding: 10px 18px;
  box-sizing: border-box;
  font-size: 14px;
}

@media screen and (max-width: 768px) {
  .related-search-list {
    gap: 8px;
  }
  .related-search-list button {
    min-height: 46px;
    padding: 9px 14px;
    box-sizing: border-box;
    border-radius: 14px;
    font-size: 13px;
  }
  .related-search-list button .anticon {
    font-size: 16px;
  }
}.social-share-container {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.social-share-container .social-share-label {
  font-size: 12px;
  color: #555;
  font-weight: 500;
}
.social-share-container .social-share-buttons {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.social-share-container .social-share-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  background: #f3f4f6;
  color: #555;
}
@media (hover: hover) {
  .social-share-container .social-share-btn:hover {
    transform: scale(1.08);
  }
}
.social-share-container .social-share-btn svg {
  width: 16px;
  height: 16px;
}
.social-share-container .social-share-btn.whatsapp {
  background: #25d366;
  color: #fff;
}
@media (hover: hover) {
  .social-share-container .social-share-btn.whatsapp:hover {
    background: #20bd5a;
  }
}
.social-share-container .social-share-btn.facebook {
  background: #1877f2;
  color: #fff;
}
@media (hover: hover) {
  .social-share-container .social-share-btn.facebook:hover {
    background: #166fe5;
  }
}
.social-share-container .social-share-btn.linkedin {
  background: #0a66c2;
  color: #fff;
}
@media (hover: hover) {
  .social-share-container .social-share-btn.linkedin:hover {
    background: #0958a9;
  }
}
.social-share-container .social-share-btn.x {
  background: #000;
  color: #fff;
}
@media (hover: hover) {
  .social-share-container .social-share-btn.x:hover {
    background: #333;
  }
}
.social-share-container .social-share-btn.copy-link {
  background: #f3f4f6;
  color: #555;
}
@media (hover: hover) {
  .social-share-container .social-share-btn.copy-link:hover {
    background: #e5e7eb;
    color: #222;
  }
}

@media screen and (max-width: 768px) {
  .social-share-container {
    gap: 6px;
  }
  .social-share-container .social-share-label {
    font-size: 11px;
  }
  .social-share-container .social-share-buttons {
    gap: 5px;
  }
  .social-share-container .social-share-btn {
    width: 22px;
    height: 22px;
  }
}
@media screen and (max-width: 480px) {
  .social-share-container {
    gap: 4px;
  }
  .social-share-container .social-share-label {
    font-size: 10px;
  }
  .social-share-container .social-share-buttons {
    gap: 4px;
  }
  .social-share-container .social-share-btn {
    width: 20px;
    height: 20px;
  }
  .social-share-container .social-share-btn svg {
    width: 14px;
    height: 14px;
  }
}.product-seo-page {
  --seo-primary-soft: color-mix(in srgb, var(--color-primary) 7%, #fff);
  --seo-primary-hover: color-mix(in srgb, var(--color-primary) 12%, #fff);
  --seo-primary-border: color-mix(in srgb, var(--color-primary) 28%, transparent);
  --seo-panel-bg: rgba(255, 255, 255, 0.72);
  --seo-text: #24272e;
  --seo-muted: #5f6673;
  flex: 1;
  height: 100%;
  overflow: auto;
  background: linear-gradient(180deg, var(--seo-primary-soft) 0%, #f6f7fa 300px, #f6f7fa 100%);
  color: var(--seo-text);
  font-size: 16px;
  line-height: 24px;
}
.product-seo-page .page-header {
  font-size: 30px;
  font-weight: 600;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px 40px;
  box-sizing: border-box;
}
.product-seo-page .page-header .page-header-link {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: flex-start;
}
.product-seo-page .page-header img {
  width: auto;
  height: 40px;
  cursor: pointer;
}
.product-seo-page .page-header span {
  cursor: pointer;
}
.product-seo-page .product-seo-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) clamp(280px, 24%, 360px);
  gap: 40px;
  width: min(1640px, 100% - 64px);
  margin: 0 auto;
  padding: 20px 24px 96px;
  box-sizing: border-box;
}
.product-seo-page .product-seo-main {
  min-width: 0;
}
.product-seo-page .product-seo-hero {
  margin-bottom: 24px;
  padding: 8px 0 4px;
  box-sizing: border-box;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.product-seo-page .product-seo-hero h1 {
  margin: 0 0 12px;
  font-size: 28px;
  line-height: 1.5;
  font-weight: 700;
}
.product-seo-page .product-seo-hero p {
  margin: 0;
  max-width: 780px;
  font-size: 16px;
  line-height: 24px;
}
.product-seo-page .product-seo-hero-share {
  margin-top: 14px;
}
.product-seo-page .product-seo-section {
  margin-bottom: 24px;
}
.product-seo-page .product-seo-section h2 {
  margin: 0 0 16px;
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
}
.product-seo-page .empty-panel {
  grid-column: 1/-1;
  width: 100%;
  min-height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 12px;
  background: var(--seo-panel-bg);
  box-shadow: 0 10px 28px rgba(18, 24, 40, 0.045);
  color: #30333a;
  font-size: 18px;
  backdrop-filter: blur(8px);
}
.product-seo-page .product-seo-aside {
  position: sticky;
  top: 40px;
  align-self: start;
}
.product-seo-page .aside-section {
  margin-bottom: 34px;
  padding: 0;
  box-sizing: border-box;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.product-seo-page .aside-section h2 {
  margin: 0 0 18px;
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
}

@media screen and (max-width: 1700px) {
  .product-seo-page .product-seo-content {
    width: calc(100% - 48px);
  }
}
@media screen and (max-width: 1024px) {
  .product-seo-page .product-seo-content {
    grid-template-columns: 1fr;
    gap: 24px;
    width: calc(100% - 48px);
    padding: 36px 0 64px;
    box-sizing: border-box;
  }
  .product-seo-page .product-seo-aside {
    position: static;
  }
}
@media screen and (max-width: 768px) {
  .product-seo-page .page-header {
    padding: 20px 16px;
    box-sizing: border-box;
  }
  .product-seo-page .product-seo-content {
    width: 100%;
    padding: 20px 20px 56px;
    box-sizing: border-box;
  }
  .product-seo-page .product-seo-hero {
    margin-bottom: 20px;
  }
  .product-seo-page .product-seo-hero h1 {
    font-size: 24px;
    line-height: 34px;
  }
  .product-seo-page .product-seo-section {
    margin-bottom: 22px;
  }
  .product-seo-page .empty-panel {
    min-height: 140px;
    padding: 16px;
    box-sizing: border-box;
    font-size: 15px;
  }
  .product-seo-page .aside-section {
    margin-bottom: 24px;
  }
}
@media screen and (max-width: 640px) {
  .product-seo-page {
    font-size: 14px;
    line-height: 22px;
  }
  .product-seo-page .product-seo-content {
    width: 100%;
    padding: 16px 16px 48px;
    box-sizing: border-box;
  }
  .product-seo-page .product-seo-hero h1,
  .product-seo-page .product-seo-section h2,
  .product-seo-page .aside-section h2 {
    font-size: 18px;
    line-height: 26px;
  }
  .product-seo-page .product-seo-hero p,
  .product-seo-page .product-seo-section-note {
    font-size: 14px;
    line-height: 22px;
  }
  .product-seo-page .product-seo-hero-share {
    margin-top: 12px;
  }
}
@media screen and (max-width: 480px) {
  .product-seo-page .page-header {
    padding: 16px 12px;
    box-sizing: border-box;
    font-size: 24px;
  }
  .product-seo-page .product-seo-content {
    padding: 14px 12px 42px;
    box-sizing: border-box;
  }
  .product-seo-page .product-seo-hero {
    margin-bottom: 16px;
    padding-top: 4px;
    box-sizing: border-box;
  }
  .product-seo-page .product-seo-hero h1 {
    font-size: 20px;
    line-height: 30px;
  }
  .product-seo-page .product-seo-section {
    margin-bottom: 18px;
  }
}.header-user-menu {
  display: inline-flex;
  align-items: center;
}
.header-user-menu .nav-user-avatar {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 34px;
  max-width: 170px;
  padding: 3px 12px 3px 4px;
  border: 1px solid rgba(17, 24, 39, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  cursor: pointer;
  color: #222;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
@media (hover: hover) {
  .header-user-menu .nav-user-avatar:hover {
    border-color: rgba(126, 53, 238, 0.24);
    background: #fff;
    box-shadow: 0 6px 16px rgba(98, 84, 254, 0.08);
  }
}
.header-user-menu .nav-user-avatar .letter-avatar {
  width: 28px;
  height: 28px;
  font-size: 12px;
  box-shadow: none;
}
.header-user-menu .nav-user-avatar .nav-user-name {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #52525b;
  font-size: 13px;
  line-height: 18px;
  font-weight: 500;
}

button.header-user-menu {
  justify-content: center;
  font-size: 14px;
  padding: 8px 16px;
  border-radius: 77px;
  border: none;
  background-color: #222;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}
@media (hover: hover) {
  button.header-user-menu:hover {
    opacity: 0.8;
  }
}

.nav-buttons-container > .header-user-menu {
  margin-left: 80px;
}

.header-user-menu-popover {
  z-index: 1002;
}
.header-user-menu-popover .ant-popover-inner {
  padding: 0;
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.16);
}

.header-user-menu-panel {
  width: 280px;
  padding: 14px;
  box-sizing: border-box;
  border-radius: 14px;
  background: #fff;
  color: #222;
}

.header-user-menu-profile {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 12px;
}
.header-user-menu-profile .letter-avatar {
  width: 44px;
  height: 44px;
  font-size: 18px;
  flex-shrink: 0;
}

.header-user-menu-identity {
  min-width: 0;
}

.header-user-menu-name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 17px;
  line-height: 23px;
  font-weight: 700;
}

.header-user-menu-email {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 13px;
  line-height: 18px;
  color: #777;
}

.header-user-menu-card {
  margin-bottom: 10px;
  padding: 6px;
  border-radius: 9px;
  background: #f4f4f5;
}

.header-user-credits-row {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 8px;
  min-height: 34px;
  padding: 5px 7px;
  border: none;
  border-radius: 8px;
  background: transparent;
  color: #52525b;
  cursor: pointer;
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  text-align: left;
  transition: background 0.15s ease, color 0.15s ease;
}
.header-user-credits-row strong {
  margin-left: auto;
  font-size: 15px;
  color: #222;
}
@media (hover: hover) {
  .header-user-credits-row:hover {
    background: rgba(92, 59, 238, 0.06);
    color: var(--primary);
  }
  .header-user-credits-row:hover .credits-icon-wrap {
    background: rgba(92, 59, 238, 0.1);
  }
  .header-user-credits-row:hover .credits-icon {
    color: #5C3BEE;
  }
}

.credits-icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 7px;
  background: rgba(92, 59, 238, 0.1);
  color: var(--primary);
  flex-shrink: 0;
  transition: background 0.15s ease;
}

.credits-icon {
  width: 13px;
  height: 13px;
  color: var(--primary);
  transition: color 0.15s ease;
}

.header-user-menu-list,
.header-user-menu-footer {
  display: flex;
  flex-direction: column;
}

.header-user-menu-footer {
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid #e5e5e5;
}

.header-user-menu-item {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  height: 38px;
  padding: 0 8px;
  border: none;
  border-radius: 8px;
  background: transparent;
  color: #333;
  cursor: pointer;
  font-size: 14px;
  line-height: 20px;
  text-align: left;
}
.header-user-menu-item .anticon {
  width: 24px;
  font-size: 17px;
}
@media (hover: hover) {
  .header-user-menu-item:hover {
    background: #f6f6f6;
    color: #222;
  }
}.home-header-shell {
  width: 100%;
  height: 80px;
}

.home-header-fixed {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  background: #fff;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

.home-header-nav {
  display: flex;
  padding: 18px 0;
  box-sizing: border-box;
  justify-content: space-between;
  width: var(--content-width);
  max-width: calc(100% - 48px);
  margin: 0 auto;
}
.home-header-nav .home-header-nav-img {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 31.79px;
  font-weight: 600;
  cursor: pointer;
}
.home-header-nav .home-header-nav-img img {
  width: 39.68px;
  height: 37.76px;
}

.nav-buttons-container {
  display: flex;
  gap: 20px;
  align-items: center;
}
.nav-buttons-container .nav-button {
  display: inline-flex;
  align-items: center;
  font-size: 16px;
  border: none;
  padding: 10px 15px;
  box-sizing: border-box;
  height: 44px;
  background-color: transparent;
  text-decoration: none;
}
.nav-buttons-container .nav-button.active {
  font-weight: bold;
}
@media (hover: hover) {
  .nav-buttons-container .nav-button:hover {
    background: #E1E1E1;
    border-radius: 8px;
    cursor: pointer;
  }
}
.nav-buttons-container .theme-toggle-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
}
.nav-buttons-container .theme-toggle-btn.hide {
  visibility: hidden;
  pointer-events: none;
}

.nav-buttons-container .nav-button-start {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  margin-left: 80px;
  padding: 8px 16px;
  box-sizing: border-box;
  border-radius: 77px;
  border: none;
  background-color: #222;
  color: #fff;
  text-decoration: none;
}
@media (hover: hover) {
  .nav-buttons-container .nav-button-start:hover {
    cursor: pointer;
    opacity: 0.8;
  }
}

.solutions-overlay {
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.solutions-overlay.visible {
  opacity: 1;
  visibility: visible;
}

.header-qrcode-popover .ant-popover-inner {
  padding: 5px;
  box-sizing: border-box;
  border-radius: 8px;
  box-shadow: 0px 6px 16px 0px rgba(0, 0, 0, 0.08), 0px 3px 6px -4px rgba(0, 0, 0, 0.12), 0px 9px 28px 8px rgba(0, 0, 0, 0.05);
}

.header-download-qrcode {
  width: 150px;
  height: 150px;
  display: block;
  border-radius: 8px;
}

.solutions-popover-overlay {
  z-index: 1002;
}
.solutions-popover-overlay .ant-popover-inner {
  padding: 0;
  box-sizing: border-box;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.resources-popover-overlay {
  z-index: 1002;
}
.resources-popover-overlay .ant-popover-inner {
  padding: 0;
  box-sizing: border-box;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.solutions-popover {
  width: 950px;
  padding: 20px;
  box-sizing: border-box;
  font-size: 13px;
  line-height: 20px;
  background: #fff;
}
.solutions-popover .solutions-popover-row {
  display: flex;
  gap: 20px;
}
.solutions-popover .solutions-category {
  width: 280px;
  flex-shrink: 0;
  padding: 10px;
  box-sizing: border-box;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.2s;
}
@media (hover: hover) {
  .solutions-popover .solutions-category:hover {
    background: #F2F2F2;
  }
}
.solutions-popover .solutions-category .category-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.solutions-popover .solutions-category .category-header .category-title {
  font-size: 20px;
  font-weight: bold;
  line-height: 30px;
}
.solutions-popover .solutions-category .category-desc {
  font-size: 14px;
  color: #888888;
}
.solutions-popover .solutions-items {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  row-gap: 10px;
  column-gap: 8px;
}
.solutions-popover .solutions-items .solution-item {
  width: 300px;
  padding: 10px;
  box-sizing: border-box;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.2s;
}
@media (hover: hover) {
  .solutions-popover .solutions-items .solution-item:hover {
    background: #F2F2F2;
  }
}
.solutions-popover .solutions-items .solution-item .item-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.solutions-popover .solutions-items .solution-item .item-header .item-title {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
}
.solutions-popover .solutions-items .solution-item .item-desc {
  color: #888;
}
.solutions-popover .solutions-divider {
  height: 1px;
  background: #f0f0f0;
  margin: 20px 0;
}

.resources-popover {
  width: 820px;
  padding: 20px;
  box-sizing: border-box;
  font-size: 14px;
  line-height: 20px;
  background: #fff;
  display: flex;
  flex-direction: row;
  gap: 40px;
}
.resources-popover .resources-group {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.resources-popover .resources-group-title {
  padding: 0 10px;
  font-size: 13px;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #64748B;
}
.resources-popover .resources-item {
  display: block;
  padding: 10px;
  box-sizing: border-box;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.2s;
}
@media (hover: hover) {
  .resources-popover .resources-item:hover {
    background: #F2F2F2;
  }
}
.resources-popover .resources-item .item-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}
.resources-popover .resources-item .item-title {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
}
.resources-popover .resources-item .item-desc {
  min-height: 60px;
  color: #888;
}.custom-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  font-size: 14px;
}
.custom-breadcrumb ol {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  gap: 8px;
}
.custom-breadcrumb li {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 8px;
}
.custom-breadcrumb .breadcrumb-separator {
  color: #999;
}
.custom-breadcrumb a {
  color: #666;
  text-decoration: none;
}
@media (hover: hover) {
  .custom-breadcrumb a:hover {
    color: #222;
  }
}
.custom-breadcrumb .breadcrumb-text {
  color: #222;
}.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.pagination .pagination-link,
.pagination .pagination-nav {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 36px;
  box-sizing: border-box;
  color: #333;
  font-size: 14px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.pagination .pagination-link {
  min-width: 36px;
  padding: 0 8px;
  border-radius: 50%;
}
@media (hover: hover) {
  .pagination .pagination-link:hover {
    color: var(--color-primary);
    background: var(--primary-bg);
  }
}
.pagination .pagination-link.is-active {
  background: var(--color-primary);
  color: #fff;
  font-weight: bold;
}
.pagination .pagination-nav {
  min-width: 36px;
  padding: 0 8px;
  border: 1px solid #E5E5E5;
  border-radius: 8px;
  font-size: 12px;
}
@media (hover: hover) {
  .pagination .pagination-nav:not(.is-disabled):hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
  }
}
.pagination .pagination-nav.is-disabled {
  color: #C4C4C4;
  cursor: default;
}
.pagination .pagination-ellipsis {
  min-width: 24px;
  text-align: center;
  font-size: 14px;
  color: #999;
}

@media screen and (min-width: 2560px) {
  .pagination .pagination-link,
  .pagination .pagination-nav {
    min-width: 48px;
    height: 48px;
  }
  .pagination .pagination-link {
    font-size: 18.67px;
  }
  .pagination .pagination-nav {
    font-size: 16px;
  }
  .pagination .pagination-ellipsis {
    font-size: 18.67px;
  }
}
/*一行省略号*/
/*多行省略号(默认两行)*/
/*水平垂直居中 不固定宽高*/
/*animate*/
/*Scrollbar*/
/*更改svg图片颜色 父级样式要加overflow: hidden;*/
.blog-container {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.blog-container .blog-header {
  width: var(--content-width);
  margin: 0 auto;
}
.blog-container .blog-banner {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 450px;
  aspect-ratio: 1920/450;
  background: url("https://ai.micstatic.com/aim/sourcingx-msr/dist/assets/blog-banner-CROeoapk.jpg") no-repeat center;
  background-size: cover;
}
.blog-container .blog-banner-breadcrumb {
  width: var(--content-width);
  margin: 0 auto;
  padding: 24px 24px 0;
  box-sizing: border-box;
}
.blog-container .blog-banner-content {
  width: var(--content-width);
  margin: auto;
  padding: 0 24px;
  box-sizing: border-box;
}
.blog-container .blog-banner-content .banner-title {
  max-width: 570px;
  font-size: 44px;
  font-weight: bold;
  margin-bottom: 20px;
}
.blog-container .blog-banner-content .banner-description {
  max-width: 570px;
  font-size: 18px;
  font-weight: normal;
  line-height: 28px;
  margin-bottom: 60px;
}
.blog-container .blog-content {
  width: 100%;
  background: #F3F3F3;
  flex: 1;
}
.blog-container .blog-category-content {
  width: var(--content-width);
  margin: 0 auto 20px;
  padding: 80px 40px 0 40px;
  box-sizing: border-box;
}
.blog-container .blog-category-content .blog-category-section {
  margin-bottom: 80px;
}
.blog-container .blog-category-content .blog-category-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}
.blog-container .blog-category-content .blog-category-title {
  font-size: 46px;
  font-weight: 600;
}
.blog-container .blog-category-content .blog-filter-trigger {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 10px 11px;
  box-sizing: border-box;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  font-size: 14px;
  user-select: none;
}
@media (hover: hover) {
  .blog-container .blog-category-content .blog-filter-trigger:hover {
    background: #EBEBEB;
  }
}
.blog-container .blog-category-content .blog-filter-icon {
  width: 14px;
  height: 14px;
}
.blog-container .blog-category-content .blog-filter-arrow {
  font-size: 14px;
}
.blog-container .blog-category-content .blog-filter-clear {
  font-size: 14px;
  line-height: 1;
  color: #9CA3AF;
  cursor: pointer;
}
@media (hover: hover) {
  .blog-container .blog-category-content .blog-filter-clear:hover {
    color: #374151;
  }
}
.blog-container .blog-category-content .blog-category-list {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.blog-container .blog-category-content .blog-category-item {
  display: block;
  text-decoration: none;
  color: inherit;
  position: relative;
  padding: 15px 15px 65px;
  box-sizing: border-box;
  max-width: calc((100% - 64px) / 3);
  border-radius: 16px;
  border: 1px solid #F2F2F2;
  background: #fff;
  transition: all 0.3s ease;
}
@media (hover: hover) {
  .blog-container .blog-category-content .blog-category-item:hover {
    box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transform: translateY(-2px);
  }
}
.blog-container .blog-category-content .blog-category-item-image {
  overflow: hidden;
  border-radius: 16px;
  width: 100%;
  aspect-ratio: 330/190;
  margin-bottom: 20px;
  object-fit: cover;
  object-position: center;
}
.blog-container .blog-category-content .blog-category-item-content {
  font-size: 16px;
  line-height: 24px;
}
.blog-container .blog-category-content .blog-category-item-date {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  line-height: 20px;
  color: #6B7280;
  margin-bottom: 15px;
}
.blog-container .blog-category-content .blog-category-item-date .item-tag {
  padding: 4px 8px;
  box-sizing: border-box;
  border-radius: 4px;
}
.blog-container .blog-category-content .blog-category-item-title {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-size: 18px;
  max-height: 320px;
  font-weight: bold;
  line-height: 28px;
  margin-bottom: 5px;
}
.blog-container .blog-category-content .blog-category-item-desc {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  max-height: 320px;
  margin-bottom: 20px;
  font-size: 14px;
  line-height: 20px;
  color: #888;
}
.blog-container .blog-category-content .blog-category-item-btn {
  position: absolute;
  left: 15px;
  bottom: 20px;
  padding: 10px 20px;
  box-sizing: border-box;
  border-radius: 77px;
  border: none;
  background: linear-gradient(77deg, #FE59FD 1%, #F202B0 25%, #5151FF 50%, #0E5BF2 73%, #1FCEEC 98%);
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  line-height: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}
@media (hover: hover) {
  .blog-container .blog-category-content .blog-category-item-btn:hover {
    opacity: 0.8;
  }
}
.blog-container .blog-category-content .blog-loading-more {
  display: flex;
  justify-content: center;
  padding: 30px 0;
  box-sizing: border-box;
}
.blog-container .blog-category-content .blog-no-more {
  text-align: center;
  padding: 30px 0;
  box-sizing: border-box;
  color: #999;
  font-size: 14px;
}
.blog-container .blog-category-content .pagination {
  padding: 40px 0;
  box-sizing: border-box;
}

.blog-container.is-touch .blog-banner-breadcrumb {
  width: 100%;
  padding: 0 16px;
}
.blog-container.is-touch .blog-banner {
  min-height: 180px;
  aspect-ratio: auto;
  padding: 24px 0;
  box-sizing: border-box;
}
.blog-container.is-touch .blog-banner-content {
  width: 100%;
  padding: 0 16px;
}
.blog-container.is-touch .blog-banner-content .banner-title {
  font-size: 24px;
  margin-bottom: 10px;
}
.blog-container.is-touch .blog-banner-content .banner-description {
  font-size: 14px;
  line-height: 22px;
  margin-bottom: 0;
}
.blog-container.is-touch .blog-category-content {
  width: 100%;
  padding: 32px 16px 0;
}
.blog-container.is-touch .blog-category-content .blog-category-section {
  margin-bottom: 40px;
}
.blog-container.is-touch .blog-category-content .blog-category-title-row {
  margin-bottom: 20px;
}
.blog-container.is-touch .blog-category-content .blog-category-title {
  font-size: 22px;
}
.blog-container.is-touch .blog-category-content .blog-category-list {
  gap: 16px;
  flex-direction: column;
}
.blog-container.is-touch .blog-category-content .blog-category-item {
  max-width: 100%;
  width: 100%;
  padding: 12px 12px 56px;
}
.blog-container.is-touch .blog-category-content .blog-category-item-image {
  height: 160px;
  aspect-ratio: auto;
  margin-bottom: 12px;
}
.blog-container.is-touch .blog-category-content .blog-category-item-title {
  font-size: 16px;
  line-height: 24px;
}
.blog-container.is-touch .blog-category-content .blog-category-item-desc {
  margin-bottom: 12px;
}
.blog-container.is-touch .blog-category-content .blog-category-item-btn {
  bottom: 16px;
  font-size: 13px;
  line-height: 18px;
  padding: 7px 14px;
}
.blog-container.is-touch .blog-category-content .pagination {
  padding: 24px 0;
}
.blog-container.is-touch .blog-category-content .pagination .pagination-link,
.blog-container.is-touch .blog-category-content .pagination .pagination-nav {
  min-width: 32px;
  height: 32px;
}

.ant-dropdown .ant-dropdown-menu .ant-dropdown-menu-item-selected {
  color: #6F1CED;
  background-color: #EBDEFF;
}
@media (hover: hover) {
  .ant-dropdown .ant-dropdown-menu .ant-dropdown-menu-item-selected:hover {
    color: #6F1CED;
    background-color: #EBDEFF;
  }
}

@media screen and (min-width: 2560px) {
  .blog-container .blog-banner-content .banner-title {
    font-size: 59px;
  }
  .blog-container .blog-banner-content .banner-description {
    font-size: 24px;
    line-height: 37px;
  }
  .blog-container .blog-category-content .blog-category-title {
    font-size: 61px;
  }
  .blog-container .blog-category-content .blog-category-item-content {
    font-size: 21px;
    line-height: 32px;
  }
  .blog-container .blog-category-content .blog-category-item-date {
    font-size: 19px;
    line-height: 27px;
  }
  .blog-container .blog-category-content .blog-category-item-title {
    font-size: 24px;
    line-height: 37px;
  }
  .blog-container .blog-category-content .blog-category-item-desc {
    font-size: 19px;
    line-height: 27px;
  }
  .blog-container .blog-category-content .blog-category-item-btn {
    font-size: 21px;
    line-height: 32px;
  }
}.blog-detail-container {
  --seo-primary-soft: color-mix(in srgb, var(--color-primary) 7%, #fff);
  width: 100%;
  height: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: linear-gradient(180deg, var(--seo-primary-soft) 0%, #f6f7fa 300px, #f6f7fa 100%);
}
.blog-detail-container .blog-detail-header {
  width: var(--content-width);
  margin: 20px auto;
}
.blog-detail-container .blog-detail-content-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  background: transparent;
  overflow-y: auto;
}
.blog-detail-container .blog-detail-error {
  width: var(--content-width);
  margin: 0 auto;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 0;
  box-sizing: border-box;
}
.blog-detail-container .blog-detail-error .blog-detail-breadcrumb {
  width: 100%;
  margin-bottom: 40px;
  text-align: left;
}
.blog-detail-container .blog-detail-error .blog-detail-error-img {
  width: 400px;
  margin-bottom: 30px;
}
.blog-detail-container .blog-detail-error .blog-detail-error-title {
  font-size: 28px;
  font-weight: bold;
  color: #222;
  margin-bottom: 12px;
}
.blog-detail-container .blog-detail-error .blog-detail-error-desc {
  font-size: 16px;
  color: #888;
  margin-bottom: 32px;
  max-width: 480px;
  line-height: 24px;
}
.blog-detail-container .blog-detail-error .blog-detail-error-btn {
  padding: 10px 20px;
  box-sizing: border-box;
  background: linear-gradient(77deg, #FE59FD 1%, #F202B0 25%, #5151FF 50%, #0E5BF2 73%, #1FCEEC 98%);
  border: none;
  color: #fff;
  border-radius: 77px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s;
}
@media (hover: hover) {
  .blog-detail-container .blog-detail-error .blog-detail-error-btn:hover {
    opacity: 0.8;
  }
}
.blog-detail-container .blog-detail-content {
  width: var(--content-width);
  margin: 0 auto;
  flex: 1;
  padding: 0 0 60px;
  box-sizing: border-box;
  font-size: 16px;
  line-height: 24px;
}
.blog-detail-container .blog-detail-content .blog-detail-breadcrumb {
  margin-bottom: 20px;
}
.blog-detail-container .blog-detail-content .blog-detail-title {
  font-size: 36px;
  font-weight: bold;
  line-height: 45px;
  margin-bottom: 24px;
}
.blog-detail-container .blog-detail-content .blog-detail-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: #555;
  margin-bottom: 16px;
}
.blog-detail-container .blog-detail-content .blog-detail-meta > * {
  flex-shrink: 0;
}
.blog-detail-container .blog-detail-content .blog-detail-meta .blog-detail-meta-left {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.blog-detail-container .blog-detail-content .blog-detail-author {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.blog-detail-container .blog-detail-content .blog-detail-author-avatar {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  object-fit: cover;
}
.blog-detail-container .blog-detail-content .blog-detail-author-name {
  font-size: 14px;
  color: #333;
  font-weight: 500;
  white-space: nowrap;
}
.blog-detail-container .blog-detail-content .blog-detail-date {
  color: #555;
  white-space: nowrap;
}
.blog-detail-container .blog-detail-content .blog-detail-tag {
  display: inline-block;
  padding: 2px 10px;
  box-sizing: border-box;
  border-radius: 4px;
  font-size: 14px;
  line-height: 22px;
  white-space: nowrap;
}
.blog-detail-container .blog-detail-content .blog-detail-summary {
  font-size: 18px;
  line-height: 28px;
  color: #555;
  margin-bottom: 32px;
  padding: 16px 20px;
  box-sizing: border-box;
  background: #F9F9F9;
  border-left: 4px solid #FDC959;
  border-radius: 8px;
}
.blog-detail-container .blog-detail-content .blog-detail-img {
  width: 100%;
  aspect-ratio: 1200/384;
  border-radius: 16px;
  object-fit: cover;
  object-position: center;
}
.blog-detail-container .blog-detail-content .blog-detail-info {
  margin-top: 32px;
  color: #222;
}
.blog-detail-container .blog-detail-content .blog-detail-comments {
  margin-top: 56px;
  padding: 28px;
  box-sizing: border-box;
  border: 1px solid #edf0f5;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 6px 18px rgba(18, 24, 40, 0.025);
}
.blog-detail-container .blog-detail-content .blog-detail-comments .blog-comment-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.blog-detail-container .blog-detail-content .blog-detail-comments .blog-comment-title {
  position: relative;
  margin: 0;
  padding-left: 14px;
  box-sizing: border-box;
  font-size: 26px;
  line-height: 34px;
  font-weight: 700;
  color: #222;
}
.blog-detail-container .blog-detail-content .blog-detail-comments .blog-comment-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 4px;
  height: 20px;
  border-radius: 999px;
  background: #FDC959;
}
.blog-detail-container .blog-detail-content .blog-detail-comments .blog-comment-count {
  min-width: 30px;
  height: 24px;
  padding: 0 9px;
  box-sizing: border-box;
  border-radius: 999px;
  background: #fff7df;
  color: #7a5200;
  font-size: 12px;
  line-height: 24px;
  font-weight: 700;
  text-align: center;
  box-shadow: inset 0 0 0 1px rgba(253, 201, 89, 0.28);
}
.blog-detail-container .blog-detail-content .blog-detail-comments .blog-comment-editor {
  padding: 0 0 22px;
  box-sizing: border-box;
  border-bottom: 1px solid #f1f3f7;
  margin-bottom: 22px;
}
.blog-detail-container .blog-detail-content .blog-detail-comments .blog-comment-editor .ant-input {
  border-radius: 8px;
  border-color: #e6e9ef;
  background: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 24px;
  resize: none;
  padding-bottom: 24px;
  box-sizing: border-box;
}
.blog-detail-container .blog-detail-content .blog-detail-comments .blog-comment-editor .ant-input:focus {
  border-color: #efd58f;
  box-shadow: 0 0 0 3px rgba(253, 201, 89, 0.1);
}
@media (hover: hover) {
  .blog-detail-container .blog-detail-content .blog-detail-comments .blog-comment-editor .ant-input:hover {
    border-color: #efd58f;
    box-shadow: 0 0 0 3px rgba(253, 201, 89, 0.1);
  }
}
.blog-detail-container .blog-detail-content .blog-detail-comments .blog-comment-editor .ant-input-data-count {
  color: #888;
  font-size: 12px;
  bottom: 6px;
  right: 12px;
}
.blog-detail-container .blog-detail-content .blog-detail-comments .blog-comment-editor-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 18px;
}
.blog-detail-container .blog-detail-content .blog-detail-comments .blog-comment-submit {
  height: 38px;
  padding: 0 20px;
  box-sizing: border-box;
  border: none;
  border-radius: 999px;
  font-weight: 600;
  background: #3b3b3b;
  box-shadow: none;
}
.blog-detail-container .blog-detail-content .blog-detail-comments .blog-comment-submit:focus {
  background: #222 !important;
}
@media (hover: hover) {
  .blog-detail-container .blog-detail-content .blog-detail-comments .blog-comment-submit:hover {
    background: #222 !important;
  }
}
.blog-detail-container .blog-detail-content .blog-detail-comments .blog-comment-submit:disabled {
  background: #d1d5db !important;
  color: #fff;
  cursor: not-allowed;
}
.blog-detail-container .blog-detail-content .blog-detail-comments .blog-comment-list {
  display: flex;
  flex-direction: column;
}
.blog-detail-container .blog-detail-content .blog-detail-comments .blog-comment-item {
  display: flex;
  gap: 14px;
  padding: 18px 0;
  box-sizing: border-box;
  border-bottom: 1px solid #f1f3f7;
  transition: background 0.2s;
}
@media (hover: hover) {
  .blog-detail-container .blog-detail-content .blog-detail-comments .blog-comment-item:hover {
    background: rgba(248, 250, 252, 0.6);
  }
}
.blog-detail-container .blog-detail-content .blog-detail-comments .blog-comment-item:first-child {
  padding-top: 0;
  box-sizing: border-box;
}
.blog-detail-container .blog-detail-content .blog-detail-comments .blog-comment-item:last-child {
  padding-bottom: 0;
  box-sizing: border-box;
  border-bottom: none;
}
.blog-detail-container .blog-detail-content .blog-detail-comments .blog-comment-avatar {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.blog-detail-container .blog-detail-content .blog-detail-comments .blog-comment-avatar .letter-avatar {
  width: 30px;
  height: 30px;
  font-size: 12px;
}
.blog-detail-container .blog-detail-content .blog-detail-comments .blog-comment-body {
  min-width: 0;
  flex: 1;
}
.blog-detail-container .blog-detail-content .blog-detail-comments .blog-comment-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}
.blog-detail-container .blog-detail-content .blog-detail-comments .blog-comment-meta-main {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.blog-detail-container .blog-detail-content .blog-detail-comments .blog-comment-user {
  font-size: 15px;
  line-height: 22px;
  font-weight: 700;
  color: #222;
}
.blog-detail-container .blog-detail-content .blog-detail-comments .blog-comment-time {
  font-size: 13px;
  line-height: 20px;
  color: #8a8f99;
}
.blog-detail-container .blog-detail-content .blog-detail-comments .blog-comment-delete {
  width: 28px;
  height: 28px;
  padding: 0;
  box-sizing: border-box;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  opacity: 0.75;
  color: #9ca3af !important;
}
.blog-detail-container .blog-detail-content .blog-detail-comments .blog-comment-delete:focus {
  opacity: 1;
  background: #fff1f2 !important;
  color: #ef4444 !important;
}
@media (hover: hover) {
  .blog-detail-container .blog-detail-content .blog-detail-comments .blog-comment-delete:hover {
    opacity: 1;
    background: #fff1f2 !important;
    color: #ef4444 !important;
  }
}
.blog-detail-container .blog-detail-content .blog-detail-comments .blog-comment-text {
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  font-size: 15px;
  line-height: 24px;
  color: #333;
}
.blog-detail-container .blog-detail-content .blog-detail-comments .blog-comment-empty {
  padding: 10px 0 2px;
  box-sizing: border-box;
  color: #8a8f99;
  text-align: center;
  font-size: 15px;
  line-height: 24px;
}
.blog-detail-container .blog-detail-floating-input {
  width: var(--content-width);
  margin: 0 auto;
  position: sticky;
  bottom: 20px;
  left: 0;
  right: 0;
  background: transparent;
  z-index: 100;
}
.blog-detail-container .blog-detail-floating-input .base-input-area {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 1700px) {
  .blog-detail-container .blog-detail-header {
    width: calc(100% - 160px);
    margin: 20px auto;
  }
  .blog-detail-container .blog-detail-content,
  .blog-detail-container .blog-detail-error,
  .blog-detail-container .blog-detail-floating-input {
    width: calc(100% - 160px);
    margin: 0 auto;
  }
}
@media screen and (max-width: 768px) {
  .blog-detail-container {
    overflow-x: hidden;
  }
  .blog-detail-container .blog-detail-header {
    margin: 0;
    width: 100%;
    padding: 16px;
    box-sizing: border-box;
  }
  .blog-detail-container .blog-detail-content-container {
    width: 100%;
    padding: 0;
    box-sizing: border-box;
    overflow-x: hidden;
  }
  .blog-detail-container .blog-detail-content {
    width: 100%;
    padding: 0 16px 120px;
    box-sizing: border-box;
  }
  .blog-detail-container .blog-detail-content .blog-detail-title {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 16px;
  }
  .blog-detail-container .blog-detail-content .blog-detail-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .blog-detail-container .blog-detail-content .blog-detail-meta .blog-detail-meta-left {
    gap: 6px;
  }
  .blog-detail-container .blog-detail-content .blog-detail-author-avatar {
    width: 24px;
    height: 24px;
  }
  .blog-detail-container .blog-detail-content .blog-detail-author-name {
    font-size: 12px;
  }
  .blog-detail-container .blog-detail-content .blog-detail-date {
    font-size: 14px;
  }
  .blog-detail-container .blog-detail-content .blog-detail-tag {
    padding: 2px 8px;
    box-sizing: border-box;
    font-size: 12px;
  }
  .blog-detail-container .blog-detail-content .blog-detail-summary {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 24px;
    padding: 12px 16px;
    box-sizing: border-box;
  }
  .blog-detail-container .blog-detail-content .blog-detail-img {
    border-radius: 12px;
  }
  .blog-detail-container .blog-detail-content .blog-detail-info {
    margin-top: 24px;
  }
  .blog-detail-container .blog-detail-content .blog-detail-comments {
    margin-top: 38px;
    padding: 18px;
    box-sizing: border-box;
  }
  .blog-detail-container .blog-detail-content .blog-detail-comments .blog-comment-title {
    font-size: 20px;
    line-height: 28px;
  }
  .blog-detail-container .blog-detail-content .blog-detail-comments .blog-comment-title::before {
    top: 5px;
    height: 18px;
  }
  .blog-detail-container .blog-detail-content .blog-detail-comments .blog-comment-editor {
    padding: 0 0 18px;
    box-sizing: border-box;
    margin-bottom: 20px;
  }
  .blog-detail-container .blog-detail-content .blog-detail-comments .blog-comment-item {
    padding: 14px 0;
    box-sizing: border-box;
    gap: 10px;
  }
}
@media screen and (max-width: 768px) and (hover: hover) {
  .blog-detail-container .blog-detail-content .blog-detail-comments .blog-comment-item:hover {
    background: transparent;
  }
}
@media screen and (max-width: 768px) {
  .blog-detail-container .blog-detail-content .blog-detail-comments .blog-comment-avatar {
    width: 28px;
    height: 28px;
    flex-basis: 28px;
  }
  .blog-detail-container .blog-detail-content .blog-detail-comments .blog-comment-avatar .letter-avatar {
    width: 28px;
    height: 28px;
    font-size: 11px;
  }
  .blog-detail-container .blog-detail-content .blog-detail-comments .blog-comment-meta {
    align-items: flex-start;
    gap: 8px;
  }
  .blog-detail-container .blog-detail-content .blog-detail-comments .blog-comment-meta-main {
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
  }
  .blog-detail-container .blog-detail-error {
    width: 100%;
    padding: 40px 16px;
    box-sizing: border-box;
  }
  .blog-detail-container .blog-detail-error .blog-detail-breadcrumb {
    margin-bottom: 24px;
  }
  .blog-detail-container .blog-detail-error .blog-detail-error-img {
    width: 200px;
    margin-bottom: 20px;
  }
  .blog-detail-container .blog-detail-error .blog-detail-error-title {
    font-size: 20px;
    margin-bottom: 10px;
  }
  .blog-detail-container .blog-detail-error .blog-detail-error-desc {
    font-size: 14px;
    margin-bottom: 24px;
    max-width: 100%;
    line-height: 20px;
  }
  .blog-detail-container .blog-detail-error .blog-detail-error-btn {
    padding: 8px 16px;
    box-sizing: border-box;
    font-size: 14px;
  }
  .blog-detail-container .blog-detail-floating-input {
    position: fixed;
    left: 16px;
    right: 16px;
    width: auto;
    margin: 0;
    bottom: 16px;
    background: transparent;
    z-index: 100;
  }
  .blog-detail-breadcrumb {
    font-size: 12px;
  }
}
@media screen and (max-width: 480px) {
  .blog-detail-container .blog-detail-header {
    margin: 0;
    width: 100%;
    padding: 12px;
    box-sizing: border-box;
  }
  .blog-detail-container .blog-detail-content-container {
    width: 100%;
    padding: 0;
    box-sizing: border-box;
  }
  .blog-detail-container .blog-detail-content {
    width: 100%;
    padding: 0 12px 120px;
    box-sizing: border-box;
  }
  .blog-detail-container .blog-detail-content .blog-detail-title {
    font-size: 20px;
    line-height: 28px;
  }
  .blog-detail-container .blog-detail-content .blog-detail-meta {
    gap: 10px;
  }
  .blog-detail-container .blog-detail-content .blog-detail-meta .blog-detail-meta-left {
    gap: 4px;
  }
  .blog-detail-container .blog-detail-content .blog-detail-summary {
    font-size: 14px;
    line-height: 22px;
    padding: 10px 12px;
    box-sizing: border-box;
  }
  .blog-detail-container .blog-detail-content .blog-detail-comments {
    margin-top: 32px;
    padding: 14px;
    box-sizing: border-box;
  }
  .blog-detail-container .blog-detail-content .blog-detail-comments .blog-comment-header {
    margin-bottom: 16px;
  }
  .blog-detail-container .blog-detail-content .blog-detail-comments .blog-comment-editor {
    padding: 0 0 16px;
    box-sizing: border-box;
  }
  .blog-detail-container .blog-detail-content .blog-detail-comments .blog-comment-editor .ant-input {
    font-size: 14px;
    line-height: 22px;
  }
  .blog-detail-container .blog-detail-content .blog-detail-comments .blog-comment-item {
    padding: 12px 0;
    box-sizing: border-box;
    gap: 9px;
  }
  .blog-detail-container .blog-detail-content .blog-detail-comments .blog-comment-avatar {
    width: 26px;
    height: 26px;
    flex-basis: 26px;
  }
  .blog-detail-container .blog-detail-content .blog-detail-comments .blog-comment-avatar .letter-avatar {
    width: 26px;
    height: 26px;
    font-size: 10px;
  }
  .blog-detail-container .blog-detail-content .blog-detail-comments .blog-comment-text {
    font-size: 14px;
    line-height: 22px;
  }
  .blog-detail-container .blog-detail-content .blog-detail-comments .blog-comment-submit {
    width: 100%;
  }
  .blog-detail-container .blog-detail-error {
    width: 100%;
    padding: 30px 12px;
    box-sizing: border-box;
  }
  .blog-detail-container .blog-detail-error .blog-detail-error-img {
    width: 150px;
  }
  .blog-detail-container .blog-detail-error .blog-detail-error-title {
    font-size: 18px;
  }
  .blog-detail-container .blog-detail-error .blog-detail-error-desc {
    font-size: 12px;
    line-height: 18px;
  }
  .blog-detail-container .blog-detail-floating-input {
    position: fixed;
    left: 12px;
    right: 12px;
    width: auto;
    margin: 0;
    bottom: 12px;
    background: transparent;
    z-index: 100;
  }
}
.blog-detail-author {
  cursor: pointer;
  transition: opacity 0.2s;
}
@media (hover: hover) {
  .blog-detail-author:hover {
    opacity: 0.8;
  }
}

.blog-comment-delete-modal .ant-modal-content {
  border-radius: 8px;
  padding: 22px 24px;
  box-sizing: border-box;
}
.blog-comment-delete-modal .ant-modal-header {
  margin-bottom: 10px;
}
.blog-comment-delete-modal .ant-modal-title {
  color: #222;
  font-size: 18px;
  line-height: 26px;
  font-weight: 700;
}
.blog-comment-delete-modal .blog-comment-delete-modal-content {
  color: #666;
  font-size: 14px;
  line-height: 22px;
}
.blog-comment-delete-modal .ant-modal-footer {
  margin-top: 22px;
}.author-detail-container {
  width: 100%;
  height: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  background: #F3F3F3;
}
.author-detail-container .author-detail-header {
  width: var(--content-width);
  background: #F3F3F3;
  margin: 20px auto;
  box-sizing: border-box;
  position: sticky;
  top: 0;
  z-index: 10;
}
.author-detail-container .author-breadcrumb {
  width: 100%;
}
.author-detail-container .author-detail-content {
  width: var(--content-width);
  margin: 0 auto;
  padding: 0 0 60px;
  box-sizing: border-box;
}
.author-detail-container .author-card {
  background: #fff;
  border-radius: 16px;
  padding: 40px 32px;
  box-sizing: border-box;
}
.author-detail-container .author-card .author-profile {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 32px;
  box-sizing: border-box;
  border-bottom: 1px solid #f0f0f0;
  margin-bottom: 32px;
}
.author-detail-container .author-card .author-profile .author-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 16px;
  border: 3px solid #6254FE;
}
.author-detail-container .author-card .author-profile .author-name {
  font-size: 24px;
  font-weight: 600;
  color: #222;
  margin-bottom: 12px;
}
.author-detail-container .author-card .author-profile .author-desc {
  font-size: 15px;
  line-height: 24px;
  text-align: center;
  padding: 16px 20px;
  box-sizing: border-box;
  background: linear-gradient(135deg, #f5f3ff 0%, #ede9ff 100%);
  border-radius: 12px;
  border-left: 4px solid #6254FE;
}
.author-detail-container .author-card .author-blogs .author-blogs-title {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin-bottom: 20px;
}
.author-detail-container .author-card .author-blogs .author-blogs-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.author-detail-container .author-card .author-blogs .author-blog-item {
  display: flex;
  gap: 16px;
  padding: 16px;
  box-sizing: border-box;
  background: #fafafa;
  border-radius: 12px;
  border: 1px solid #f0f0f0;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  transition: all 0.2s ease;
}
@media (hover: hover) {
  .author-detail-container .author-card .author-blogs .author-blog-item:hover {
    border-color: #6254FE;
    box-shadow: 0 4px 16px rgba(98, 84, 254, 0.12);
    transform: translateY(-2px);
  }
}
.author-detail-container .author-card .author-blogs .author-blog-item .author-blog-cover {
  width: 120px;
  height: 80px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}
.author-detail-container .author-card .author-blogs .author-blog-item .author-blog-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}
.author-detail-container .author-card .author-blogs .author-blog-item .author-blog-info .author-blog-title {
  font-size: 16px;
  font-weight: 500;
  color: #333;
  line-height: 1.5;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.author-detail-container .author-card .author-blogs .author-blog-item .author-blog-info .author-blog-date {
  font-size: 13px;
  color: #999;
}
.author-detail-container .author-card .author-blogs .author-blogs-pagination {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}
.author-detail-container .author-card .author-blogs .author-blogs-pagination .ant-pagination-item,
.author-detail-container .author-card .author-blogs .author-blogs-pagination .ant-pagination-prev,
.author-detail-container .author-card .author-blogs .author-blogs-pagination .ant-pagination-next {
  min-width: 32px;
  height: 32px;
  line-height: 30px;
  margin: 0 4px;
}
.author-detail-container .author-error {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 0;
  box-sizing: border-box;
}
.author-detail-container .author-error .author-error-img {
  width: 300px;
  margin-bottom: 24px;
}
.author-detail-container .author-error .author-error-title {
  font-size: 24px;
  font-weight: bold;
  color: #222;
  margin-bottom: 12px;
}
.author-detail-container .author-error .author-error-desc {
  font-size: 15px;
  color: #888;
  margin-bottom: 24px;
}
.author-detail-container .author-error .author-error-btn {
  padding: 10px 24px;
  box-sizing: border-box;
  background: linear-gradient(77deg, #FE59FD 1%, #F202B0 25%, #5151FF 50%, #0E5BF2 73%, #1FCEEC 98%);
  border: none;
  color: #fff;
  border-radius: 77px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s;
}
@media (hover: hover) {
  .author-detail-container .author-error .author-error-btn:hover {
    opacity: 0.85;
  }
}

@media screen and (max-width: 1700px) {
  .author-detail-container .author-detail-header {
    width: calc(100% - 160px);
    margin: 20px auto;
  }
  .author-detail-container .author-detail-content {
    width: calc(100% - 160px);
    margin: 0 auto;
  }
}
@media screen and (max-width: 768px) {
  .author-detail-container .author-detail-header {
    margin: 0;
    width: 100%;
    padding: 16px;
    box-sizing: border-box;
  }
  .author-detail-container .author-breadcrumb {
    font-size: 12px;
  }
  .author-detail-container .author-detail-content {
    width: 100%;
    padding: 0 16px 100px;
    box-sizing: border-box;
  }
  .author-detail-container .author-card {
    padding: 32px 16px;
    box-sizing: border-box;
    border-radius: 12px;
  }
  .author-detail-container .author-card .author-profile {
    padding-bottom: 24px;
    box-sizing: border-box;
    margin-bottom: 24px;
  }
  .author-detail-container .author-card .author-profile .author-avatar {
    width: 80px;
    height: 80px;
    margin-bottom: 12px;
  }
  .author-detail-container .author-card .author-profile .author-name {
    font-size: 20px;
    margin-bottom: 10px;
  }
  .author-detail-container .author-card .author-profile .author-desc {
    font-size: 14px;
    line-height: 22px;
    padding: 12px 16px;
    box-sizing: border-box;
  }
  .author-detail-container .author-card .author-blogs-title {
    font-size: 16px;
    margin-bottom: 16px;
  }
  .author-detail-container .author-card .author-blog-item {
    padding: 12px;
    box-sizing: border-box;
    gap: 12px;
  }
  .author-detail-container .author-card .author-blog-item .author-blog-cover {
    width: 90px;
    height: 60px;
  }
  .author-detail-container .author-card .author-blog-item .author-blog-info .author-blog-title {
    font-size: 14px;
  }
  .author-detail-container .author-card .author-blog-item .author-blog-info .author-blog-date {
    font-size: 12px;
  }
  .author-detail-container .author-error {
    padding: 60px 0;
    box-sizing: border-box;
  }
  .author-detail-container .author-error .author-error-img {
    width: 180px;
  }
  .author-detail-container .author-error .author-error-title {
    font-size: 20px;
  }
  .author-detail-container .author-error .author-error-desc {
    font-size: 14px;
  }
  .author-detail-container .author-error .author-error-btn {
    padding: 8px 20px;
    box-sizing: border-box;
    font-size: 14px;
  }
}
@media screen and (max-width: 480px) {
  .author-detail-container .author-detail-header {
    padding: 12px;
    box-sizing: border-box;
  }
  .author-detail-container .author-breadcrumb {
    font-size: 11px;
  }
  .author-detail-container .author-detail-content {
    width: 100%;
    padding: 0 12px 80px;
    box-sizing: border-box;
  }
  .author-detail-container .author-card {
    padding: 24px 12px;
    box-sizing: border-box;
    border-radius: 12px;
  }
  .author-detail-container .author-card .author-profile {
    padding-bottom: 20px;
    box-sizing: border-box;
    margin-bottom: 20px;
  }
  .author-detail-container .author-card .author-profile .author-avatar {
    width: 70px;
    height: 70px;
  }
  .author-detail-container .author-card .author-profile .author-name {
    font-size: 18px;
  }
  .author-detail-container .author-card .author-profile .author-desc {
    font-size: 13px;
    padding: 10px 12px;
    box-sizing: border-box;
  }
  .author-detail-container .author-card .author-blogs-title {
    font-size: 15px;
  }
  .author-detail-container .author-card .author-blog-item {
    padding: 10px;
    box-sizing: border-box;
    gap: 10px;
  }
  .author-detail-container .author-card .author-blog-item .author-blog-cover {
    width: 72px;
    height: 48px;
  }
  .author-detail-container .author-card .author-blog-item .author-blog-info .author-blog-title {
    font-size: 13px;
  }
  .author-detail-container .author-card .author-blog-item .author-blog-info .author-blog-date {
    font-size: 11px;
  }
  .author-detail-container .author-error {
    padding: 40px 0;
    box-sizing: border-box;
  }
  .author-detail-container .author-error .author-error-img {
    width: 140px;
  }
  .author-detail-container .author-error .author-error-title {
    font-size: 18px;
  }
  .author-detail-container .author-error .author-error-desc {
    font-size: 12px;
  }
}
/*一行省略号*/
/*多行省略号(默认两行)*/
/*水平垂直居中 不固定宽高*/
/*animate*/
/*Scrollbar*/
/*更改svg图片颜色 父级样式要加overflow: hidden;*/
.use-case-card {
  display: flex;
  flex-direction: column;
  padding: 20px;
  box-sizing: border-box;
  background: #fff;
  border: 1px solid #F2F2F2;
  border-radius: 16px;
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
}
@media (hover: hover) {
  .use-case-card:hover {
    box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transform: translateY(-2px);
  }
}
.use-case-card.is-market-analysis .use-case-card-category {
  color: #1E40AF;
  background: #DBEAFE;
}
.use-case-card.is-supplier-matching .use-case-card-category {
  color: #166534;
  background: #DCFCE7;
}
.use-case-card.is-supplier-due-diligence .use-case-card-category {
  color: #6B21A8;
  background: #F3E8FF;
}
.use-case-card .use-case-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 15px;
  font-size: 14px;
  line-height: 20px;
  color: #6B7280;
}
.use-case-card.is-no-category .use-case-card-head {
  justify-content: flex-end;
}
.use-case-card .use-case-card-category {
  flex-shrink: 0;
  padding: 4px 8px;
  box-sizing: border-box;
  border-radius: 4px;
  font-weight: 600;
}
.use-case-card .use-case-card-updated {
  flex-shrink: 0;
}
.use-case-card .use-case-card-title {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-size: 18px;
  font-weight: bold;
  line-height: 28px;
  margin-bottom: 5px;
}
.use-case-card .use-case-card-summary {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  font-size: 14px;
  line-height: 20px;
  color: #888;
  margin-bottom: 20px;
}
.use-case-card .use-case-card-foot {
  padding-top: 15px;
  border-top: 1px solid #F2F2F2;
}
.use-case-card .use-case-card-meta-row {
  font-size: 14px;
  line-height: 22px;
}
.use-case-card .use-case-card-meta-label {
  display: inline;
  margin-right: 5px;
  font-weight: bold;
}
.use-case-card .use-case-card-meta-value {
  display: inline;
  margin: 0;
  color: #888;
}
.use-case-card .use-case-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 15px;
  list-style: none;
}
.use-case-card .use-case-card-tag {
  padding: 4px 8px;
  box-sizing: border-box;
  border-radius: 4px;
  font-size: 12px;
  line-height: 18px;
  color: #666;
  background: #F5F5F5;
}
.use-case-card .use-case-card-read {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 15px;
  padding-top: 12px;
  border-top: 1px solid #F2F2F2;
  width: 100%;
  box-sizing: border-box;
  font-size: 13px;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: 0.01em;
  color: var(--color-primary);
}
.use-case-card .use-case-card-read-arrow {
  transition: transform 0.3s ease;
}
@media (hover: hover) {
  .use-case-card:hover .use-case-card-read-arrow {
    transform: translateX(3px);
  }
}

.is-touch .use-case-card {
  padding: 16px;
  border-radius: 12px;
}
.is-touch .use-case-card .use-case-card-head {
  margin-bottom: 12px;
  font-size: 13px;
}
.is-touch .use-case-card .use-case-card-title {
  font-size: 16px;
  line-height: 24px;
}
.is-touch .use-case-card .use-case-card-summary {
  margin-bottom: 16px;
  font-size: 13px;
  line-height: 20px;
}
.is-touch .use-case-card .use-case-card-foot {
  padding-top: 12px;
}
.is-touch .use-case-card .use-case-card-meta-row {
  font-size: 13px;
  line-height: 20px;
}
.is-touch .use-case-card .use-case-card-tags {
  margin-top: 12px;
}
.is-touch .use-case-card .use-case-card-read {
  margin-top: 12px;
  padding-top: 10px;
}

@media screen and (min-width: 2560px) {
  .use-case-card {
    padding: 26.67px;
  }
  .use-case-card .use-case-card-head {
    font-size: 18.67px;
    line-height: 26.67px;
  }
  .use-case-card .use-case-card-title {
    font-size: 24px;
    line-height: 37.33px;
  }
  .use-case-card .use-case-card-summary {
    font-size: 18.67px;
    line-height: 26.67px;
  }
  .use-case-card .use-case-card-meta-row {
    font-size: 18.67px;
    line-height: 29.33px;
  }
  .use-case-card .use-case-card-tag {
    font-size: 16px;
    line-height: 24px;
  }
  .use-case-card .use-case-card-read {
    gap: 8px;
    margin-top: 20px;
    padding-top: 16px;
    font-size: 17.33px;
    line-height: 26.67px;
  }
}
/*一行省略号*/
/*多行省略号(默认两行)*/
/*水平垂直居中 不固定宽高*/
/*animate*/
/*Scrollbar*/
/*更改svg图片颜色 父级样式要加overflow: hidden;*/
.use-cases-container {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.use-cases-container .use-cases-header {
  width: var(--content-width);
  margin: 0 auto;
}
.use-cases-container .use-cases-banner-inner,
.use-cases-container .use-cases-section-inner {
  width: var(--content-width);
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: border-box;
}
.use-cases-container .use-cases-banner {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 450px;
  box-sizing: border-box;
  aspect-ratio: 1920/300;
  background: url("https://ai.micstatic.com/aim/sourcingx-msr/dist/assets/use-cases-banner-zwIZvYSS.jpg");
}
.use-cases-container .use-cases-banner-breadcrumb {
  width: var(--content-width);
  margin: 0 auto;
  padding: 28px 40px 0;
  box-sizing: border-box;
}
.use-cases-container .use-cases-banner-breadcrumb a {
  color: rgba(255, 255, 255, 0.75);
}
@media (hover: hover) {
  .use-cases-container .use-cases-banner-breadcrumb a:hover {
    color: #fff;
  }
}
.use-cases-container .use-cases-banner-breadcrumb .breadcrumb-separator {
  color: rgba(255, 255, 255, 0.5);
}
.use-cases-container .use-cases-banner-breadcrumb .breadcrumb-text {
  color: #fff;
}
.use-cases-container .use-cases-banner-inner {
  margin: auto;
}
.use-cases-container .use-cases-banner-title {
  max-width: 620px;
  font-size: 48px;
  color: #fff;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 20px;
}
.use-cases-container .use-cases-banner-desc {
  max-width: 620px;
  font-size: 18px;
  color: #fff;
  line-height: 28px;
}
.use-cases-container .use-cases-section {
  width: 100%;
  padding: 80px 0;
  box-sizing: border-box;
}
.use-cases-container .use-cases-featured {
  background: #FAFAFA;
}
.use-cases-container .use-cases-eyebrow {
  display: inline-block;
  padding: 5px 12px;
  margin-bottom: 16px;
  box-sizing: border-box;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: 0.08em;
  color: var(--color-primary);
  background: var(--primary-bg);
}
.use-cases-container .use-cases-section-title {
  font-size: 46px;
  font-weight: 600;
  line-height: 60px;
}
.use-cases-container .use-cases-section-desc {
  max-width: 720px;
  margin-top: 10px;
  font-size: 16px;
  font-weight: normal;
  line-height: 24px;
  color: #888;
}
.use-cases-container .use-cases-scenario-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 40px;
  list-style: none;
}
.use-cases-container .use-cases-scenario-cell {
  display: flex;
}
.use-cases-container .use-cases-scenario-item {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 36px 32px;
  box-sizing: border-box;
  background: #fff;
  color: inherit;
  text-decoration: none;
  border: 1px solid #f0f0f0;
  border-radius: 20px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03);
  overflow: hidden;
  transition: box-shadow 0.3s, transform 0.3s, border-color 0.3s;
}
.use-cases-container .use-cases-scenario-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--accent-color);
  opacity: 0;
  transition: opacity 0.3s;
}
@media (hover: hover) {
  .use-cases-container .use-cases-scenario-item:hover {
    box-shadow: 0 12px 36px rgba(98, 84, 254, 0.1);
    transform: translateY(-6px);
    border-color: transparent;
  }
  .use-cases-container .use-cases-scenario-item:hover::before {
    opacity: 1;
  }
}
.use-cases-container .use-cases-scenario-item.is-market-analysis {
  --accent-color: #3B82F6;
}
.use-cases-container .use-cases-scenario-item.is-market-analysis .use-cases-scenario-icon {
  background: #DBEAFE;
}
@media (hover: hover) {
  .use-cases-container .use-cases-scenario-item.is-market-analysis:hover .use-cases-scenario-link {
    color: #1E40AF;
  }
}
.use-cases-container .use-cases-scenario-item.is-supplier-matching {
  --accent-color: #22C55E;
}
.use-cases-container .use-cases-scenario-item.is-supplier-matching .use-cases-scenario-icon {
  background: #DCFCE7;
}
@media (hover: hover) {
  .use-cases-container .use-cases-scenario-item.is-supplier-matching:hover .use-cases-scenario-link {
    color: #166534;
  }
}
.use-cases-container .use-cases-scenario-item.is-supplier-due-diligence {
  --accent-color: #A855F7;
}
.use-cases-container .use-cases-scenario-item.is-supplier-due-diligence .use-cases-scenario-icon {
  background: #F3E8FF;
}
@media (hover: hover) {
  .use-cases-container .use-cases-scenario-item.is-supplier-due-diligence:hover .use-cases-scenario-link {
    color: #6B21A8;
  }
}
.use-cases-container .use-cases-scenario-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}
.use-cases-container .use-cases-scenario-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 14px;
}
.use-cases-container .use-cases-scenario-icon img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}
.use-cases-container .use-cases-scenario-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
}
.use-cases-container .use-cases-scenario-desc {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  font-size: 14px;
  line-height: 1.7;
  color: #777;
  margin-bottom: 28px;
}
.use-cases-container .use-cases-scenario-link {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 6px;
  margin-top: auto;
  font-size: 14px;
  font-weight: bold;
  line-height: 22px;
  color: var(--text);
  text-decoration: none;
  transition: color 0.3s ease;
}
@media (hover: hover) {
  .use-cases-container .use-cases-scenario-link:hover .use-cases-scenario-link-arrow {
    transform: translateX(4px);
  }
}
.use-cases-container .use-cases-scenario-link-arrow {
  transition: transform 0.3s ease;
}
.use-cases-container .use-cases-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 40px;
}
.use-cases-container .use-cases-cta {
  background: linear-gradient(180deg, #fff 0%, #F5F3FF 100%);
  text-align: center;
}
.use-cases-container .use-cases-cta-title {
  font-size: 36px;
  font-weight: 600;
  line-height: 48px;
  margin-bottom: 15px;
}
.use-cases-container .use-cases-cta-desc {
  margin: 0 auto 30px;
  font-size: 16px;
  font-weight: normal;
  line-height: 24px;
  color: #888;
}
.use-cases-container .use-cases-cta-btn {
  display: inline-block;
  padding: 15px 40px;
  box-sizing: border-box;
  border-radius: 77px;
  border: none;
  background: linear-gradient(82deg, #FE59FD 0%, #F202B0 24%, #5151FF 50%, #0E5BF2 74%, #1FCEEC 99%);
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  line-height: 24px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
@media (hover: hover) {
  .use-cases-container .use-cases-cta-btn:hover {
    opacity: 0.8;
  }
}

.use-cases-container.is-touch .use-cases-banner-breadcrumb {
  width: 100%;
  padding: 0 16px;
}
.use-cases-container.is-touch .use-cases-banner-inner,
.use-cases-container.is-touch .use-cases-section-inner {
  width: 100%;
  padding: 0 16px;
}
.use-cases-container.is-touch .use-cases-banner {
  min-height: 220px;
  aspect-ratio: auto;
  padding: 28px 0;
  box-sizing: border-box;
}
.use-cases-container.is-touch .use-cases-banner-title {
  max-width: 100%;
  font-size: 26px;
  line-height: 1.35;
  margin-bottom: 12px;
}
.use-cases-container.is-touch .use-cases-banner-desc {
  max-width: 100%;
  font-size: 14px;
  line-height: 22px;
}
.use-cases-container.is-touch .use-cases-section {
  padding: 40px 0;
}
.use-cases-container.is-touch .use-cases-eyebrow {
  margin-bottom: 12px;
  padding: 4px 10px;
  font-size: 12px;
  line-height: 18px;
}
.use-cases-container.is-touch .use-cases-section-title {
  font-size: 24px;
  line-height: 34px;
}
.use-cases-container.is-touch .use-cases-section-desc {
  max-width: 100%;
  font-size: 14px;
  line-height: 22px;
}
.use-cases-container.is-touch .use-cases-scenario-list,
.use-cases-container.is-touch .use-cases-card-grid {
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 24px;
}
.use-cases-container.is-touch .use-cases-scenario-item {
  padding: 20px;
}
.use-cases-container.is-touch .use-cases-scenario-item::before {
  opacity: 1;
}
.use-cases-container.is-touch .use-cases-scenario-head {
  gap: 12px;
}
.use-cases-container.is-touch .use-cases-scenario-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
}
.use-cases-container.is-touch .use-cases-scenario-icon img {
  width: 20px;
  height: 20px;
}
.use-cases-container.is-touch .use-cases-scenario-title {
  font-size: 17px;
}
.use-cases-container.is-touch .use-cases-scenario-desc {
  margin-bottom: 20px;
}
.use-cases-container.is-touch .use-cases-cta-title {
  font-size: 22px;
  line-height: 32px;
}
.use-cases-container.is-touch .use-cases-cta-desc {
  margin-bottom: 24px;
  font-size: 14px;
  line-height: 22px;
}
.use-cases-container.is-touch .use-cases-cta-btn {
  width: 100%;
  padding: 13px 24px;
  font-size: 15px;
  text-align: center;
}

@media screen and (min-width: 2560px) {
  .use-cases-container .use-cases-banner-title {
    max-width: 826.67px;
    font-size: 58.67px;
    line-height: 80px;
  }
  .use-cases-container .use-cases-banner-desc {
    max-width: 826.67px;
    font-size: 24px;
    line-height: 37.33px;
  }
  .use-cases-container .use-cases-eyebrow {
    padding: 6.67px 16px;
    font-size: 17.33px;
    line-height: 26.67px;
  }
  .use-cases-container .use-cases-scenario-icon {
    width: 64px;
    height: 64px;
    border-radius: 18.67px;
  }
  .use-cases-container .use-cases-scenario-icon img {
    width: 29.33px;
    height: 29.33px;
  }
  .use-cases-container .use-cases-section-title {
    font-size: 61.33px;
    line-height: 80px;
  }
  .use-cases-container .use-cases-section-desc {
    font-size: 21.33px;
    line-height: 32px;
  }
  .use-cases-container .use-cases-scenario-title {
    font-size: 24px;
  }
  .use-cases-container .use-cases-scenario-desc {
    font-size: 18.67px;
  }
  .use-cases-container .use-cases-scenario-link {
    font-size: 18.67px;
    line-height: 29.33px;
  }
  .use-cases-container .use-cases-cta-btn {
    font-size: 21.33px;
    line-height: 32px;
  }
  .use-cases-container .use-cases-cta-title {
    font-size: 48px;
    line-height: 64px;
  }
  .use-cases-container .use-cases-cta-desc {
    font-size: 21.33px;
    line-height: 32px;
  }
}.use-cases-list-container {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  --section-gradient: linear-gradient(180deg, #fff 0%, #F5F3FF 100%);
  --accent-text: var(--primary-dark);
  --accent-soft: #EDEAFF;
}
.use-cases-list-container .use-cases-list-header {
  width: var(--content-width);
  margin: 0 auto;
}
.use-cases-list-container .use-cases-list-inner {
  width: var(--content-width);
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: border-box;
}
.use-cases-list-container .use-cases-list-intro {
  width: 100%;
  padding: 30px 0 60px;
  box-sizing: border-box;
  background: var(--section-gradient);
  border-bottom: 1px solid #F0F0F0;
}
.use-cases-list-container .use-cases-list-breadcrumb {
  margin-bottom: 24px;
}
.use-cases-list-container .use-cases-list-topics {
  margin-bottom: 20px;
  line-height: 34px;
}
.use-cases-list-container .use-cases-list-topics-label {
  margin-right: 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  white-space: nowrap;
  vertical-align: middle;
  color: #999;
}
.use-cases-list-container .use-cases-list-topics-category {
  color: var(--accent-text);
}
.use-cases-list-container .use-cases-list-topic-list {
  display: inline;
  list-style: none;
}
.use-cases-list-container .use-cases-list-topic {
  display: inline-block;
  margin-right: 8px;
  padding: 3px 8px;
  box-sizing: border-box;
  border-radius: 4px;
  font-size: 13px;
  line-height: 20px;
  white-space: nowrap;
  vertical-align: middle;
  color: var(--accent-text);
  background: var(--accent-soft);
}
.use-cases-list-container .use-cases-list-title {
  max-width: 900px;
  font-size: 48px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 16px;
}
.use-cases-list-container .use-cases-list-desc {
  font-size: 18px;
  font-weight: normal;
  line-height: 28px;
  color: #666;
}
.use-cases-list-container .use-cases-list-intro-cta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px 24px;
  margin-top: 32px;
}
.use-cases-list-container .use-cases-list-intro-btn {
  flex-shrink: 0;
}
.use-cases-list-container .use-cases-list-intro-note {
  font-size: 14px;
  line-height: 22px;
  color: #888;
}
.use-cases-list-container .use-cases-list-section {
  width: 100%;
  padding: 80px 0;
  box-sizing: border-box;
}
.use-cases-list-container .use-cases-list-cases {
  background: #FAFAFA;
}
.use-cases-list-container .use-cases-list-capability {
  background: #fff;
}
.use-cases-list-container .use-cases-list-section-title {
  font-size: 36px;
  font-weight: 600;
  line-height: 48px;
}
.use-cases-list-container .use-cases-list-section-desc {
  max-width: 720px;
  margin-top: 10px;
  font-size: 16px;
  font-weight: normal;
  line-height: 24px;
  color: #888;
}
.use-cases-list-container .use-cases-list-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 40px;
}
.use-cases-list-container .use-cases-list-empty {
  margin-top: 40px;
  font-size: 16px;
  line-height: 24px;
  color: #888;
}
.use-cases-list-container .use-cases-list-page-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px 24px;
  margin-top: 40px;
}
.use-cases-list-container .use-cases-list-count {
  font-size: 14px;
  line-height: 22px;
  color: #888;
}
.use-cases-list-container .use-cases-list-capability-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
  list-style: none;
}
.use-cases-list-container .use-cases-list-capability-item {
  padding: 24px;
  box-sizing: border-box;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  transition: box-shadow 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}
.use-cases-list-container .use-cases-list-capability-item:nth-child(6n+1) {
  --card-accent: #3B82F6;
  --card-bg: #F4F8FF;
  --card-border: #DBEAFE;
}
.use-cases-list-container .use-cases-list-capability-item:nth-child(6n+2) {
  --card-accent: #22C55E;
  --card-bg: #F3FCF6;
  --card-border: #DCFCE7;
}
.use-cases-list-container .use-cases-list-capability-item:nth-child(6n+3) {
  --card-accent: #A855F7;
  --card-bg: #FBF5FF;
  --card-border: #F3E8FF;
}
.use-cases-list-container .use-cases-list-capability-item:nth-child(6n+4) {
  --card-accent: #F59E0B;
  --card-bg: #FFFBF0;
  --card-border: #FEF3C7;
}
.use-cases-list-container .use-cases-list-capability-item:nth-child(6n+5) {
  --card-accent: #F43F5E;
  --card-bg: #FFF5F6;
  --card-border: #FEE2E2;
}
.use-cases-list-container .use-cases-list-capability-item:nth-child(6n) {
  --card-accent: #06B6D4;
  --card-bg: #F2FDFF;
  --card-border: #CFFAFE;
}
@media (hover: hover) {
  .use-cases-list-container .use-cases-list-capability-item:hover {
    border-color: var(--card-accent);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    transform: translateY(-4px);
  }
}
.use-cases-list-container .use-cases-list-capability-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: bold;
  line-height: 28px;
  margin-bottom: 8px;
}
.use-cases-list-container .use-cases-list-capability-title::before {
  content: "";
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  border-radius: 3px;
  background: var(--card-accent);
}
.use-cases-list-container .use-cases-list-capability-desc {
  font-size: 14px;
  line-height: 22px;
  color: #6B7280;
}
.use-cases-list-container .use-cases-list-cta {
  background: var(--section-gradient);
  text-align: center;
}
.use-cases-list-container .use-cases-list-cta-title {
  font-size: 36px;
  font-weight: 600;
  line-height: 48px;
  margin-bottom: 15px;
}
.use-cases-list-container .use-cases-list-cta-desc {
  max-width: 720px;
  margin: 0 auto 30px;
  font-size: 16px;
  font-weight: normal;
  line-height: 24px;
  color: #888;
}
.use-cases-list-container .use-cases-list-intro-btn,
.use-cases-list-container .use-cases-list-cta-btn {
  display: inline-block;
  padding: 15px 40px;
  box-sizing: border-box;
  border-radius: 77px;
  border: none;
  background: linear-gradient(82deg, #FE59FD 0%, #F202B0 24%, #5151FF 50%, #0E5BF2 74%, #1FCEEC 99%);
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  line-height: 24px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
@media (hover: hover) {
  .use-cases-list-container .use-cases-list-intro-btn:hover,
  .use-cases-list-container .use-cases-list-cta-btn:hover {
    opacity: 0.8;
  }
}

.use-cases-list-container.is-touch .use-cases-list-inner {
  width: 100%;
  padding: 0 16px;
}
.use-cases-list-container.is-touch .use-cases-list-intro {
  padding: 12px 0 32px;
}
.use-cases-list-container.is-touch .use-cases-list-breadcrumb {
  margin-bottom: 16px;
}
.use-cases-list-container.is-touch .use-cases-list-topics {
  margin-bottom: 16px;
  line-height: 30px;
}
.use-cases-list-container.is-touch .use-cases-list-topics-label {
  display: block;
  margin-right: 0;
}
.use-cases-list-container.is-touch .use-cases-list-title {
  max-width: 100%;
  font-size: 26px;
  margin-bottom: 12px;
}
.use-cases-list-container.is-touch .use-cases-list-desc {
  font-size: 14px;
  line-height: 22px;
}
.use-cases-list-container.is-touch .use-cases-list-intro-cta {
  gap: 12px;
  margin-top: 24px;
}
.use-cases-list-container.is-touch .use-cases-list-section {
  padding: 40px 0;
}
.use-cases-list-container.is-touch .use-cases-list-section-title {
  font-size: 24px;
  line-height: 34px;
}
.use-cases-list-container.is-touch .use-cases-list-section-desc {
  max-width: 100%;
  font-size: 14px;
  line-height: 22px;
}
.use-cases-list-container.is-touch .use-cases-list-card-grid,
.use-cases-list-container.is-touch .use-cases-list-capability-list {
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 24px;
}
.use-cases-list-container.is-touch .use-cases-list-page-bar {
  align-items: flex-start;
  gap: 12px;
  margin-top: 24px;
}
.use-cases-list-container.is-touch .use-cases-list-capability-item {
  padding: 16px;
}
.use-cases-list-container.is-touch .use-cases-list-capability-title {
  font-size: 16px;
  line-height: 24px;
}
.use-cases-list-container.is-touch .use-cases-list-capability-desc {
  font-size: 13px;
  line-height: 21px;
}
.use-cases-list-container.is-touch .use-cases-list-cta-title {
  font-size: 22px;
  line-height: 32px;
}
.use-cases-list-container.is-touch .use-cases-list-cta-desc {
  max-width: 100%;
  margin-bottom: 24px;
  font-size: 14px;
  line-height: 22px;
}
.use-cases-list-container.is-touch .use-cases-list-intro-btn,
.use-cases-list-container.is-touch .use-cases-list-cta-btn {
  width: 100%;
  padding: 13px 24px;
  font-size: 15px;
  text-align: center;
}

@media screen and (min-width: 2560px) {
  .use-cases-list-container .use-cases-list-topics {
    line-height: 45.33px;
  }
  .use-cases-list-container .use-cases-list-topics-label {
    margin-right: 16px;
    font-size: 16px;
  }
  .use-cases-list-container .use-cases-list-topic {
    margin-right: 10.67px;
    padding: 4px 10.67px;
    font-size: 17.33px;
    line-height: 26.67px;
  }
  .use-cases-list-container .use-cases-list-title {
    max-width: 1200px;
    font-size: 58.67px;
  }
  .use-cases-list-container .use-cases-list-desc {
    font-size: 24px;
    line-height: 37.33px;
  }
  .use-cases-list-container .use-cases-list-intro-note {
    font-size: 18.67px;
    line-height: 29.33px;
  }
  .use-cases-list-container .use-cases-list-section-title {
    font-size: 48px;
    line-height: 64px;
  }
  .use-cases-list-container .use-cases-list-section-desc {
    max-width: 960px;
    font-size: 21.33px;
    line-height: 32px;
  }
  .use-cases-list-container .use-cases-list-count {
    font-size: 18.67px;
    line-height: 29.33px;
  }
  .use-cases-list-container .use-cases-list-capability-item {
    padding: 32px;
    border-radius: 16px;
  }
  .use-cases-list-container .use-cases-list-capability-title {
    gap: 10.67px;
    font-size: 24px;
    line-height: 37.33px;
  }
  .use-cases-list-container .use-cases-list-capability-title::before {
    width: 13.33px;
    height: 13.33px;
    border-radius: 4px;
  }
  .use-cases-list-container .use-cases-list-capability-desc {
    font-size: 18.67px;
    line-height: 29.33px;
  }
  .use-cases-list-container .use-cases-list-cta-title {
    font-size: 48px;
    line-height: 64px;
  }
  .use-cases-list-container .use-cases-list-cta-desc {
    max-width: 960px;
    font-size: 21.33px;
    line-height: 32px;
  }
  .use-cases-list-container .use-cases-list-intro-btn,
  .use-cases-list-container .use-cases-list-cta-btn {
    font-size: 21.33px;
    line-height: 32px;
  }
}.use-case-detail-container {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  --section-gradient: linear-gradient(180deg, #fff 0%, #F5F3FF 100%);
  --accent-text: var(--primary-dark);
  --accent-solid: var(--color-primary);
  --accent-soft: #EDEAFF;
}
.use-case-detail-container.is-market-analysis .use-case-detail-category {
  color: #1E40AF;
  background: #DBEAFE;
}
.use-case-detail-container.is-supplier-matching .use-case-detail-category {
  color: #166534;
  background: #DCFCE7;
}
.use-case-detail-container.is-supplier-due-diligence .use-case-detail-category {
  color: #6B21A8;
  background: #F3E8FF;
}
.use-case-detail-container .use-case-detail-header {
  width: var(--content-width);
  margin: 0 auto;
}
.use-case-detail-container .use-case-detail-inner {
  width: var(--content-width);
  margin: 0 auto;
  box-sizing: border-box;
}
.use-case-detail-container .use-case-detail-intro {
  width: 100%;
  padding: 30px 0 40px;
  box-sizing: border-box;
  background: var(--section-gradient);
  border-bottom: 1px solid #F0F0F0;
}
.use-case-detail-container .use-case-detail-breadcrumb {
  margin-bottom: 20px;
}
.use-case-detail-container .use-case-detail-breadcrumb .breadcrumb-text {
  display: block;
  max-width: 520px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.use-case-detail-container .use-case-detail-category {
  display: inline-block;
  margin-bottom: 16px;
  padding: 4px 10px;
  box-sizing: border-box;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  line-height: 18px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.use-case-detail-container .use-case-detail-title {
  font-size: 40px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 16px;
}
.use-case-detail-container .use-case-detail-summary {
  font-size: 16px;
  font-weight: normal;
  line-height: 26px;
  color: #666;
}
.use-case-detail-container .use-case-detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 48px;
  margin-top: 28px;
}
.use-case-detail-container .use-case-detail-meta-label {
  margin-bottom: 4px;
  font-size: 11px;
  font-weight: 600;
  line-height: 16px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #999;
}
.use-case-detail-container .use-case-detail-meta-value {
  max-width: 260px;
  font-size: 14px;
  font-weight: 600;
  line-height: 22px;
  color: #333;
}
.use-case-detail-container .use-case-detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
  list-style: none;
}
.use-case-detail-container .use-case-detail-tag {
  padding: 3px 8px;
  box-sizing: border-box;
  border-radius: 4px;
  font-size: 12px;
  line-height: 18px;
  color: var(--accent-text);
  background: var(--accent-soft);
}
.use-case-detail-container .use-case-detail-body {
  width: 100%;
  padding: 60px 0;
  box-sizing: border-box;
}
.use-case-detail-container .use-case-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 60px;
}
.use-case-detail-container .use-case-detail-block {
  margin-bottom: 48px;
}
.use-case-detail-container .use-case-detail-block:last-child {
  margin-bottom: 0;
}
.use-case-detail-container .use-case-detail-block-title {
  font-size: 24px;
  font-weight: 600;
  line-height: 34px;
  margin-bottom: 12px;
}
.use-case-detail-container .use-case-detail-block-desc {
  margin: -4px 0 20px;
  font-size: 13px;
  line-height: 22px;
  color: #999;
}
.use-case-detail-container .use-case-detail-paragraph {
  font-size: 15px;
  line-height: 26px;
  color: #444;
}
.use-case-detail-container .use-case-detail-bullets {
  list-style: none;
}
.use-case-detail-container .use-case-detail-bullets li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 10px;
  font-size: 15px;
  line-height: 24px;
  color: #444;
}
.use-case-detail-container .use-case-detail-bullets li:last-child {
  margin-bottom: 0;
}
.use-case-detail-container .use-case-detail-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-solid);
}
.use-case-detail-container .use-case-detail-bullets.is-compact li {
  padding-left: 16px;
  margin-bottom: 8px;
  font-size: 14px;
  line-height: 22px;
}
.use-case-detail-container .use-case-detail-bullets.is-compact li::before {
  top: 8px;
  width: 5px;
  height: 5px;
}
.use-case-detail-container .use-case-detail-findings {
  list-style: none;
}
.use-case-detail-container .use-case-detail-finding {
  position: relative;
  padding: 20px 24px;
  box-sizing: border-box;
  margin-bottom: 16px;
  border: 1px solid #EEE;
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}
.use-case-detail-container .use-case-detail-finding:last-child {
  margin-bottom: 0;
}
.use-case-detail-container .use-case-detail-finding::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--accent-solid);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.3s ease;
}
@media (hover: hover) {
  .use-case-detail-container .use-case-detail-finding:hover {
    border-color: var(--primary-light);
    box-shadow: 0 6px 20px rgba(116, 104, 242, 0.12);
    transform: translateY(-2px);
  }
  .use-case-detail-container .use-case-detail-finding:hover::before {
    transform: scaleX(1);
  }
  .use-case-detail-container .use-case-detail-finding:hover .use-case-detail-finding-index {
    color: var(--accent-text);
  }
}
.use-case-detail-container .use-case-detail-finding-title {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-size: 17px;
  font-weight: bold;
  line-height: 26px;
  margin-bottom: 10px;
}
.use-case-detail-container .use-case-detail-finding-index {
  flex-shrink: 0;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-solid);
  transition: color 0.3s ease;
}
.use-case-detail-container .use-case-detail-finding-desc {
  font-size: 14px;
  line-height: 24px;
  color: #555;
}
.use-case-detail-container .use-case-detail-finding-matters {
  margin-top: 10px;
  font-size: 14px;
  line-height: 24px;
  color: #666;
}
.use-case-detail-container .use-case-detail-finding-matters-label {
  font-weight: 600;
  color: var(--accent-text);
}
.use-case-detail-container .use-case-detail-finding-note {
  margin-top: 10px;
  font-size: 13px;
  font-style: italic;
  line-height: 20px;
  color: #999;
}
.use-case-detail-container .use-case-detail-inline-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px 32px;
  margin-bottom: 48px;
  padding: 24px 28px;
  box-sizing: border-box;
  border: 1px solid var(--accent-soft);
  border-radius: 14px;
  background: linear-gradient(120deg, #FCFBFF 0%, #F1EDFF 100%);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
@media (hover: hover) {
  .use-case-detail-container .use-case-detail-inline-cta:hover {
    border-color: var(--primary-light);
    box-shadow: 0 6px 20px rgba(116, 104, 242, 0.12);
  }
}
.use-case-detail-container .use-case-detail-inline-cta-title {
  font-size: 17px;
  font-weight: bold;
  line-height: 26px;
}
.use-case-detail-container .use-case-detail-inline-cta-desc {
  margin-top: 4px;
  font-size: 14px;
  line-height: 22px;
  color: #777;
}
.use-case-detail-container .use-case-detail-notes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px 40px;
  margin-top: 20px;
}
.use-case-detail-container .use-case-detail-notes-title {
  margin-bottom: 12px;
  font-size: 14px;
  font-weight: bold;
  line-height: 22px;
}
.use-case-detail-container .use-case-detail-steps {
  list-style: none;
}
.use-case-detail-container .use-case-detail-step {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}
.use-case-detail-container .use-case-detail-step:last-child {
  margin-bottom: 0;
}
.use-case-detail-container .use-case-detail-step-index {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 600;
  line-height: 22px;
  text-align: center;
  color: var(--accent-text);
  background: var(--accent-soft);
}
.use-case-detail-container .use-case-detail-step-text {
  font-size: 15px;
  line-height: 22px;
  color: #444;
}
.use-case-detail-container .use-case-detail-section {
  width: 100%;
  padding: 80px 0;
  box-sizing: border-box;
}
.use-case-detail-container .use-case-detail-cta {
  background: var(--section-gradient);
  text-align: center;
}
.use-case-detail-container .use-case-detail-cta-title {
  font-size: 36px;
  font-weight: 600;
  line-height: 48px;
  margin-bottom: 15px;
}
.use-case-detail-container .use-case-detail-cta-desc {
  max-width: 720px;
  margin: 0 auto 30px;
  font-size: 16px;
  font-weight: normal;
  line-height: 24px;
  color: #888;
}
.use-case-detail-container .use-case-detail-cta-btn {
  display: inline-block;
  padding: 15px 40px;
  box-sizing: border-box;
  border-radius: 77px;
  border: none;
  background: linear-gradient(82deg, #FE59FD 0%, #F202B0 24%, #5151FF 50%, #0E5BF2 74%, #1FCEEC 99%);
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  line-height: 24px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
@media (hover: hover) {
  .use-case-detail-container .use-case-detail-cta-btn:hover {
    color: #fff;
    opacity: 0.8;
  }
}
.use-case-detail-container .use-case-detail-side-sticky {
  position: sticky;
  top: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.use-case-detail-container .use-case-detail-side-card {
  padding: 20px;
  box-sizing: border-box;
  border: 1px solid #F2F2F2;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}
.use-case-detail-container .use-case-detail-side-title {
  margin-bottom: 14px;
  font-size: 11px;
  font-weight: 600;
  line-height: 16px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #999;
}
.use-case-detail-container .use-case-detail-side-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
}
.use-case-detail-container .use-case-detail-side-row:last-child {
  margin-bottom: 0;
}
.use-case-detail-container .use-case-detail-side-label {
  flex-shrink: 0;
  max-width: 45%;
  font-size: 13px;
  line-height: 20px;
  color: #888;
}
.use-case-detail-container .use-case-detail-side-value {
  font-size: 13px;
  font-weight: 500;
  line-height: 20px;
  text-align: right;
  color: #333;
}
.use-case-detail-container .use-case-detail-side-text {
  font-size: 13px;
  line-height: 21px;
  color: #666;
}
.use-case-detail-container .use-case-detail-side-btn {
  display: block;
  padding: 13px 20px;
  box-sizing: border-box;
  border-radius: 10px;
  font-size: 14px;
  font-weight: bold;
  line-height: 22px;
  text-align: center;
  text-decoration: none;
  color: #fff;
  background: #111;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}
@media (hover: hover) {
  .use-case-detail-container .use-case-detail-side-btn:hover {
    color: #fff;
    opacity: 0.85;
  }
}
.use-case-detail-container .use-case-detail-inline-cta-btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  box-sizing: border-box;
  border-radius: 77px;
  font-size: 14px;
  font-weight: bold;
  line-height: 22px;
  white-space: nowrap;
  text-decoration: none;
  color: #fff;
  background: #111;
  transition: all 0.3s ease;
}
@media (hover: hover) {
  .use-case-detail-container .use-case-detail-inline-cta-btn:hover {
    color: #fff;
    background: #333;
  }
  .use-case-detail-container .use-case-detail-inline-cta-btn:hover .use-case-detail-inline-cta-arrow {
    transform: translateX(3px);
  }
}
.use-case-detail-container .use-case-detail-inline-cta-arrow {
  transition: transform 0.3s ease;
}
.use-case-detail-container .use-case-detail-related {
  width: 100%;
  padding: 60px 0 80px;
  box-sizing: border-box;
  border-top: 1px solid #F0F0F0;
}
.use-case-detail-container .use-case-detail-related-title {
  font-size: 28px;
  font-weight: 600;
  line-height: 38px;
}
.use-case-detail-container .use-case-detail-related-desc {
  margin-top: 8px;
  font-size: 15px;
  line-height: 24px;
  color: #888;
}
.use-case-detail-container .use-case-detail-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 32px;
}

.use-case-detail-container.is-touch .use-case-detail-inner {
  width: 100%;
  padding: 0 16px;
}
.use-case-detail-container.is-touch .use-case-detail-intro {
  padding: 12px 0 28px;
}
.use-case-detail-container.is-touch .use-case-detail-breadcrumb {
  margin-bottom: 16px;
}
.use-case-detail-container.is-touch .use-case-detail-breadcrumb li {
  min-width: 0;
}
.use-case-detail-container.is-touch .use-case-detail-breadcrumb .breadcrumb-text {
  max-width: 100%;
  white-space: normal;
  overflow: visible;
  text-overflow: clip;
  word-break: break-word;
}
.use-case-detail-container.is-touch .use-case-detail-title {
  font-size: 24px;
  margin-bottom: 12px;
}
.use-case-detail-container.is-touch .use-case-detail-summary {
  font-size: 14px;
  line-height: 24px;
}
.use-case-detail-container.is-touch .use-case-detail-meta {
  gap: 16px 24px;
  margin-top: 20px;
}
.use-case-detail-container.is-touch .use-case-detail-meta-value {
  max-width: 160px;
}
.use-case-detail-container.is-touch .use-case-detail-tags {
  margin-top: 16px;
}
.use-case-detail-container.is-touch .use-case-detail-body {
  padding: 32px 0;
}
.use-case-detail-container.is-touch .use-case-detail-layout {
  grid-template-columns: minmax(0, 1fr);
  gap: 32px;
}
.use-case-detail-container.is-touch .use-case-detail-side {
  display: none;
}
.use-case-detail-container.is-touch .use-case-detail-block {
  margin-bottom: 32px;
}
.use-case-detail-container.is-touch .use-case-detail-block-title {
  font-size: 20px;
  line-height: 28px;
}
.use-case-detail-container.is-touch .use-case-detail-paragraph,
.use-case-detail-container.is-touch .use-case-detail-bullets li {
  font-size: 14px;
  line-height: 24px;
}
.use-case-detail-container.is-touch .use-case-detail-finding {
  padding: 16px;
}
.use-case-detail-container.is-touch .use-case-detail-finding::before {
  transform: scaleX(1);
}
.use-case-detail-container.is-touch .use-case-detail-finding-title {
  font-size: 16px;
  line-height: 24px;
}
.use-case-detail-container.is-touch .use-case-detail-inline-cta {
  flex-direction: column;
  align-items: stretch;
  gap: 16px;
  margin-bottom: 32px;
  padding: 20px;
}
.use-case-detail-container.is-touch .use-case-detail-inline-cta-btn {
  justify-content: center;
}
.use-case-detail-container.is-touch .use-case-detail-notes {
  grid-template-columns: minmax(0, 1fr);
  gap: 20px;
}
.use-case-detail-container.is-touch .use-case-detail-step-text {
  font-size: 14px;
}
.use-case-detail-container.is-touch .use-case-detail-section {
  padding: 40px 0;
}
.use-case-detail-container.is-touch .use-case-detail-cta-title {
  font-size: 22px;
  line-height: 32px;
}
.use-case-detail-container.is-touch .use-case-detail-cta-desc {
  max-width: 100%;
  margin-bottom: 24px;
  font-size: 14px;
  line-height: 22px;
}
.use-case-detail-container.is-touch .use-case-detail-cta-btn {
  width: 100%;
  padding: 13px 24px;
  font-size: 15px;
  text-align: center;
}
.use-case-detail-container.is-touch .use-case-detail-related {
  padding: 32px 0 40px;
}
.use-case-detail-container.is-touch .use-case-detail-related-title {
  font-size: 20px;
  line-height: 28px;
}
.use-case-detail-container.is-touch .use-case-detail-related-desc {
  font-size: 14px;
  line-height: 22px;
}
.use-case-detail-container.is-touch .use-case-detail-related-grid {
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 20px;
}

@media screen and (min-width: 2560px) {
  .use-case-detail-container .use-case-detail-breadcrumb .breadcrumb-text {
    max-width: 693.33px;
  }
  .use-case-detail-container .use-case-detail-category {
    padding: 5px 13.33px;
    font-size: 16px;
    line-height: 24px;
  }
  .use-case-detail-container .use-case-detail-title {
    max-width: 1200px;
    font-size: 53.33px;
  }
  .use-case-detail-container .use-case-detail-summary {
    max-width: 1066.67px;
    font-size: 21.33px;
    line-height: 34.67px;
  }
  .use-case-detail-container .use-case-detail-meta {
    gap: 26.67px 64px;
  }
  .use-case-detail-container .use-case-detail-meta-label {
    font-size: 14.67px;
    line-height: 21.33px;
  }
  .use-case-detail-container .use-case-detail-meta-value {
    max-width: 346.67px;
    font-size: 18.67px;
    line-height: 29.33px;
  }
  .use-case-detail-container .use-case-detail-tag {
    padding: 4px 10.67px;
    font-size: 16px;
    line-height: 24px;
  }
  .use-case-detail-container .use-case-detail-layout {
    grid-template-columns: minmax(0, 1fr) 426.67px;
    gap: 80px;
  }
  .use-case-detail-container .use-case-detail-block-title {
    font-size: 32px;
    line-height: 45.33px;
  }
  .use-case-detail-container .use-case-detail-block-desc {
    font-size: 17.33px;
    line-height: 29.33px;
  }
  .use-case-detail-container .use-case-detail-paragraph {
    font-size: 20px;
    line-height: 34.67px;
  }
  .use-case-detail-container .use-case-detail-bullets li {
    padding-left: 24px;
    font-size: 20px;
    line-height: 32px;
  }
  .use-case-detail-container .use-case-detail-bullets li::before {
    top: 12px;
    width: 8px;
    height: 8px;
  }
  .use-case-detail-container .use-case-detail-bullets.is-compact li {
    padding-left: 21.33px;
    font-size: 18.67px;
    line-height: 29.33px;
  }
  .use-case-detail-container .use-case-detail-bullets.is-compact li::before {
    top: 10.67px;
    width: 6.67px;
    height: 6.67px;
  }
  .use-case-detail-container .use-case-detail-finding {
    padding: 26.67px 32px;
    border-radius: 16px;
  }
  .use-case-detail-container .use-case-detail-finding-title {
    font-size: 22.67px;
    line-height: 34.67px;
  }
  .use-case-detail-container .use-case-detail-finding-index {
    font-size: 17.33px;
  }
  .use-case-detail-container .use-case-detail-finding-desc,
  .use-case-detail-container .use-case-detail-finding-matters {
    font-size: 18.67px;
    line-height: 32px;
  }
  .use-case-detail-container .use-case-detail-finding-note {
    font-size: 17.33px;
    line-height: 26.67px;
  }
  .use-case-detail-container .use-case-detail-inline-cta {
    padding: 32px 37.33px;
    border-radius: 18.67px;
  }
  .use-case-detail-container .use-case-detail-inline-cta-title {
    font-size: 22.67px;
    line-height: 34.67px;
  }
  .use-case-detail-container .use-case-detail-inline-cta-desc {
    font-size: 18.67px;
    line-height: 29.33px;
  }
  .use-case-detail-container .use-case-detail-notes-title {
    font-size: 18.67px;
    line-height: 29.33px;
  }
  .use-case-detail-container .use-case-detail-step-index {
    width: 29.33px;
    height: 29.33px;
    font-size: 16px;
    line-height: 29.33px;
  }
  .use-case-detail-container .use-case-detail-step-text {
    font-size: 20px;
    line-height: 29.33px;
  }
  .use-case-detail-container .use-case-detail-cta-title {
    font-size: 48px;
    line-height: 64px;
  }
  .use-case-detail-container .use-case-detail-cta-desc {
    max-width: 960px;
    font-size: 21.33px;
    line-height: 32px;
  }
  .use-case-detail-container .use-case-detail-cta-btn {
    font-size: 21.33px;
    line-height: 32px;
  }
  .use-case-detail-container .use-case-detail-side-card {
    padding: 26.67px;
    border-radius: 16px;
  }
  .use-case-detail-container .use-case-detail-side-title {
    font-size: 14.67px;
    line-height: 21.33px;
  }
  .use-case-detail-container .use-case-detail-side-label,
  .use-case-detail-container .use-case-detail-side-value {
    font-size: 17.33px;
    line-height: 26.67px;
  }
  .use-case-detail-container .use-case-detail-side-text {
    font-size: 17.33px;
    line-height: 28px;
  }
  .use-case-detail-container .use-case-detail-side-btn {
    padding: 17.33px 26.67px;
    border-radius: 13.33px;
    font-size: 18.67px;
    line-height: 29.33px;
  }
  .use-case-detail-container .use-case-detail-inline-cta-btn {
    gap: 10.67px;
    padding: 16px 32px;
    font-size: 18.67px;
    line-height: 29.33px;
  }
  .use-case-detail-container .use-case-detail-related-title {
    font-size: 37.33px;
    line-height: 50.67px;
  }
  .use-case-detail-container .use-case-detail-related-desc {
    font-size: 20px;
    line-height: 32px;
  }
  .use-case-detail-container .use-case-detail-related-grid {
    gap: 42.67px;
  }
}.geo-callout {
  margin: 0 0 18px;
  padding: 18px 22px;
  border: 1px solid;
  border-radius: 10px;
  box-sizing: border-box;
}
.geo-callout .markdown-body {
  font-size: 15px;
}
.geo-callout .markdown-body li {
  margin-bottom: 6px;
}
.geo-callout .markdown-body h3 {
  margin: 0 0 10px;
  line-height: 1.5;
}
.geo-callout.is-box {
  background: #fafafc;
  border-color: #ececf2;
}
.geo-callout.is-box .markdown-body li::marker {
  color: #9a9aa8;
}
.geo-callout.is-warning {
  background: #fff5f6;
  border-color: #fbdcdf;
}
.geo-callout.is-warning .markdown-body h3 {
  color: #d81e33;
}
.geo-callout.is-warning .markdown-body li::marker {
  color: #e0243c;
}
.geo-article-container {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: #fff;
  --section-gradient: linear-gradient(180deg, #fff 0%, #f5f3ff 100%);
  --card-border: #ececf2;
}
.geo-article-container .geo-article-header {
  width: var(--content-width);
  margin: 0 auto;
}
.geo-article-container .geo-article-body {
  width: 100%;
  padding: 28px 0 64px;
  box-sizing: border-box;
}
.geo-article-container .geo-article-inner {
  width: var(--content-width);
  max-width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}
.geo-article-container .geo-article-breadcrumb {
  margin-bottom: 18px;
}
.geo-article-container .geo-article-breadcrumb .breadcrumb-text {
  display: inline-block;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: bottom;
}
.geo-article-container .geo-article-title-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin: 0 0 14px;
}
.geo-article-container .geo-article-title {
  flex: 1 0 auto;
  margin: 0;
  color: #111;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.3;
}
.geo-article-container .geo-article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}
.geo-article-container .geo-article-tag {
  padding: 3px 10px;
  color: #6b6b7b;
  font-size: 13px;
  background: #f6f6fa;
  border: 1px solid var(--card-border);
  border-radius: 20px;
}
.geo-article-container .geo-article-direct-answer {
  margin: 0 0 16px;
  padding: 24px 28px 24px 32px;
  background: linear-gradient(100deg, #f6f4ff 0%, #fcfbff 100%);
  border: 1px solid #e6e1fd;
  border-radius: 12px;
}
.geo-article-container .geo-article-direct-answer-label {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 0 0 10px;
  color: var(--primary-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.geo-article-container .geo-article-direct-answer-label::before {
  content: "";
  flex: none;
  width: 6px;
  height: 6px;
  background: var(--color-primary);
  border-radius: 50%;
}
.geo-article-container .geo-article-direct-answer-text {
  margin: 0;
  color: #2b2b38;
  font-size: 16px;
  line-height: 1.5;
}
.geo-article-container .geo-article-byline {
  margin: 0 0 16px;
  color: #999;
  font-size: 13px;
  line-height: 1.6;
}
.geo-article-container .geo-article-byline-strong {
  color: #555;
  font-weight: 600;
}
.geo-article-container .geo-article-credit::before {
  content: " · ";
}
.geo-article-container .geo-article-download-links {
  display: flex;
  flex-wrap: wrap;
  flex: none;
  gap: 8px;
  margin: 0;
}
.geo-article-container .geo-article-download-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  text-decoration: none;
  background: linear-gradient(100deg, #8b6cf6 0%, #5f57ea 100%);
  border: 1px solid transparent;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(116, 104, 242, 0.26);
  transition: filter 0.2s ease, box-shadow 0.2s ease;
}
.geo-article-container .geo-article-download-link::before {
  content: "↓";
  font-size: 12px;
  opacity: 0.85;
}
@media (hover: hover) {
  .geo-article-container .geo-article-download-link:hover {
    color: #fff;
    box-shadow: 0 4px 12px rgba(116, 104, 242, 0.36);
    filter: brightness(0.94);
  }
  .geo-article-container .geo-article-download-link:hover::before {
    opacity: 1;
  }
}
.geo-article-container .geo-article-card {
  margin: 0 0 24px;
  padding: 16px 20px;
  border: 1px solid var(--card-border);
  border-radius: 10px;
}
.geo-article-container .geo-article-card-title {
  margin: 0 0 12px;
  color: #6b6b7b;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.geo-article-container .geo-article-takeaways-card {
  margin: 0 0 24px;
}
.geo-article-container .geo-article-takeaways-card .geo-article-card-title {
  margin-bottom: 12px;
  color: #5a5a6b;
  letter-spacing: 0.1em;
}
.geo-article-container .geo-article-takeaways {
  margin: 0;
  padding-left: 20px;
  color: #3f3f4d;
  font-size: 16px;
  line-height: 1.75;
  list-style: disc;
}
.geo-article-container .geo-article-takeaways li {
  margin-bottom: 10px;
}
.geo-article-container .geo-article-takeaways li:last-child {
  margin-bottom: 0;
}
.geo-article-container .geo-article-takeaways li::marker {
  color: var(--color-primary);
}
.geo-article-container .geo-article-toc {
  position: sticky;
  top: 84px;
  z-index: 5;
  max-height: 220px;
  padding: 18px 22px;
  overflow-y: auto;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 4px rgba(23, 23, 45, 0.05), 0 10px 24px rgba(23, 23, 45, 0.06);
}
.geo-article-container .geo-article-toc-list {
  margin: 0;
  padding: 0;
  column-count: 2;
  column-gap: 36px;
  list-style: none;
}
.geo-article-container .geo-article-toc-list li {
  break-inside: avoid;
  margin-bottom: 8px;
}
.geo-article-container .geo-article-toc-list li:last-child {
  margin-bottom: 0;
}
.geo-article-container .geo-article-toc-list a {
  color: #444;
  font-size: 16px;
  line-height: 1.6;
  text-decoration: none;
}
.geo-article-container .geo-article-toc-list a::after {
  content: "→";
  display: inline-block;
  margin-left: 6px;
  color: var(--primary-light);
  transition: transform 0.2s ease, color 0.2s ease;
}
@media (hover: hover) {
  .geo-article-container .geo-article-toc-list a:hover {
    color: var(--primary-dark);
  }
  .geo-article-container .geo-article-toc-list a:hover::after {
    color: var(--primary-dark);
    transform: translateX(3px);
  }
}
.geo-article-container .geo-article-content > *:first-child {
  margin-top: 0;
}
.geo-article-container .geo-article-content > *:first-child > h2:first-child {
  margin-top: 0;
}
.geo-article-container .markdown-body .markdown-img-root {
  display: block;
}
.geo-article-container .markdown-body .markdown-img {
  width: 100%;
  max-width: 100%;
}
.geo-article-container .geo-article-heading {
  margin: 36px 0 16px;
  color: #111;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.4;
  scroll-margin-top: 240px;
}
@media screen and (max-width: 768px) {
  .geo-article-container .geo-article-heading {
    margin: 24px 0 10px;
  }
}
.geo-article-container .geo-article-related {
  margin: 40px 0 24px;
}
.geo-article-container .geo-article-related-title {
  margin: 0 0 12px;
  color: #6b6b7b;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.geo-article-container .geo-article-related-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.geo-article-container .geo-article-related-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 14px 16px;
  text-decoration: none;
  border: 1px solid var(--card-border);
  border-radius: 10px;
}
@media (hover: hover) {
  .geo-article-container .geo-article-related-card:hover {
    border-color: var(--primary-light);
    background: #fcfbff;
  }
}
.geo-article-container .geo-article-related-category {
  align-self: flex-start;
  padding: 2px 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 4px;
}
.geo-article-container .geo-article-related-category.is-guides {
  color: #1e40af;
  background: #dbeafe;
}
.geo-article-container .geo-article-related-category.is-faq {
  color: #166534;
  background: #dcfce7;
}
.geo-article-container .geo-article-related-category.is-checklists {
  color: #6b21a8;
  background: #f3e8ff;
}
.geo-article-container .geo-article-related-card-title {
  color: #1a1a1a;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
}
.geo-article-container .geo-article-cta {
  width: 100%;
  padding: 80px 0;
  box-sizing: border-box;
  background: var(--section-gradient);
  text-align: center;
}
.geo-article-container .geo-article-cta-title {
  margin: 0 0 15px;
  color: #111;
  font-size: 36px;
  font-weight: 600;
  line-height: 48px;
}
.geo-article-container .geo-article-cta-desc {
  margin: 0 auto 30px;
  color: #888;
  font-size: 16px;
  line-height: 24px;
}
.geo-article-container .geo-article-cta-btn {
  display: inline-block;
  padding: 15px 40px;
  box-sizing: border-box;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  line-height: 24px;
  text-decoration: none;
  background: linear-gradient(82deg, #fe59fd 0%, #f202b0 24%, #5151ff 50%, #0e5bf2 74%, #1fceec 99%);
  border: none;
  border-radius: 77px;
  cursor: pointer;
  transition: all 0.3s ease;
}
@media (hover: hover) {
  .geo-article-container .geo-article-cta-btn:hover {
    color: #fff;
    opacity: 0.8;
  }
}
.geo-article-container.is-touch .geo-article-body {
  padding: 16px 0 40px;
}
.geo-article-container.is-touch .geo-article-inner {
  width: 100%;
  padding: 0 16px;
}
.geo-article-container.is-touch .geo-article-title-row {
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.geo-article-container.is-touch .geo-article-toc {
  position: static;
  max-height: none;
  overflow-y: visible;
  background: #fcfcfd;
  backdrop-filter: none;
  box-shadow: none;
}
.geo-article-container.is-touch .geo-article-toc-list {
  column-count: 1;
}
.geo-article-container.is-touch .geo-article-heading {
  scroll-margin-top: 24px;
}
.geo-article-container.is-touch .geo-article-title {
  font-size: 26px;
}
.geo-article-container.is-touch .geo-article-heading {
  font-size: 20px;
}
.geo-article-container.is-touch .geo-article-direct-answer {
  padding: 18px 18px 18px 20px;
}
.geo-article-container.is-touch .geo-article-direct-answer-text {
  font-size: 17px;
}
.geo-article-container.is-touch .geo-article-takeaways {
  font-size: 15px;
}
.geo-article-container.is-touch .geo-article-related-list {
  grid-template-columns: 1fr;
}
.geo-article-container.is-touch .geo-article-cta {
  padding: 40px 0;
}
.geo-article-container.is-touch .geo-article-cta-title {
  font-size: 22px;
  line-height: 32px;
}
.geo-article-list-card {
  display: block;
  padding: 30px 32px;
  box-sizing: border-box;
  border: 1px solid #eeeef4;
  border-radius: 16px;
  background: #fff;
  color: inherit;
  text-decoration: none;
  box-shadow: 0 2px 6px rgba(23, 23, 45, 0.06), 0 12px 28px rgba(23, 23, 45, 0.07);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}
@media (hover: hover) {
  .geo-article-list-card:hover {
    border-color: #e2dff8;
    box-shadow: 0 2px 6px rgba(23, 23, 45, 0.06), 0 14px 30px rgba(91, 61, 245, 0.09);
    transform: translateY(-2px);
  }
  .geo-article-list-card:hover .geo-article-list-card-title {
    color: #5b3df5;
  }
  .geo-article-list-card:hover .geo-article-list-card-cta-arrow {
    transform: translateX(4px);
  }
}
.geo-article-list-card .geo-article-list-card-head {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 14px;
}
.geo-article-list-card .geo-article-list-card-featured {
  padding: 5px 12px;
  border-radius: 999px;
  background: #ede9fe;
  color: #5b21b6;
  font-size: 12px;
  font-weight: 700;
  line-height: 16px;
  letter-spacing: 0.08em;
}
.geo-article-list-card .geo-article-list-card-updated {
  color: #8a8a9b;
  font-size: 13px;
  line-height: 20px;
}
.geo-article-list-card .geo-article-list-card-title {
  margin: 0 0 12px;
  color: #111;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.35;
  transition: color 0.25s ease;
}
.geo-article-list-card .geo-article-list-card-summary {
  margin: 0 0 16px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  color: #5a5a6b;
  font-size: 16px;
  line-height: 26px;
}
.geo-article-list-card .geo-article-list-card-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  padding: 0;
  list-style: none;
}
.geo-article-list-card .geo-article-list-card-tag {
  color: #8a8a9b;
  font-size: 13px;
  line-height: 20px;
}
.geo-article-list-card .geo-article-list-card-tag + .geo-article-list-card-tag::before {
  margin-right: 8px;
  color: #c4c4d0;
  content: "·";
}
.geo-article-list-card .geo-article-list-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #5b3df5;
  font-size: 15px;
  font-weight: 600;
  line-height: 22px;
}
.geo-article-list-card .geo-article-list-card-cta-arrow {
  transition: transform 0.25s ease;
}

.is-touch .geo-article-list-card {
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(23, 23, 45, 0.06);
}
.is-touch .geo-article-list-card .geo-article-list-card-title {
  font-size: 19px;
}
.is-touch .geo-article-list-card .geo-article-list-card-summary {
  font-size: 15px;
  line-height: 24px;
}.checklist-guide {
  --checklist-guide-label-color: #5b3df5;
}
.checklist-guide .checklist-guide-label {
  margin: 0 0 16px;
  color: var(--checklist-guide-label-color);
  font-size: 12px;
  font-weight: 700;
  line-height: 16px;
  letter-spacing: 0.08em;
}
.checklist-guide .checklist-guide-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 0 0 32px;
  padding: 0;
  list-style: none;
}
.checklist-guide .checklist-guide-step {
  padding: 20px;
  box-sizing: border-box;
  border: 1px solid #eeeef4;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 1px 4px rgba(23, 23, 45, 0.05), 0 8px 20px rgba(23, 23, 45, 0.05);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}
@media (hover: hover) {
  .checklist-guide .checklist-guide-step:hover {
    border-color: #e2dff8;
    box-shadow: 0 1px 4px rgba(23, 23, 45, 0.05), 0 12px 26px rgba(91, 61, 245, 0.09);
    transform: translateY(-2px);
  }
}
.checklist-guide .checklist-guide-step {
  --step-index-color: #8a8a9b;
}
.checklist-guide .checklist-guide-step:nth-child(1) {
  --step-index-color: #5b3df5;
}
.checklist-guide .checklist-guide-step:nth-child(2) {
  --step-index-color: #0e5bf2;
}
.checklist-guide .checklist-guide-step:nth-child(3) {
  --step-index-color: #0f8a5f;
}
.checklist-guide .checklist-guide-step-index {
  margin: 0 0 10px;
  color: var(--step-index-color);
  font-size: 12px;
  font-weight: 700;
  line-height: 16px;
  letter-spacing: 0.08em;
}
.checklist-guide .checklist-guide-step-title {
  margin: 0 0 8px;
  color: #111;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
}
.checklist-guide .checklist-guide-step-desc {
  margin: 0;
  color: #5a5a6b;
  font-size: 14px;
  line-height: 22px;
}
.checklist-guide .checklist-guide-legend {
  margin: 0;
  border: 1px solid #ececf2;
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
}
.checklist-guide .checklist-guide-legend-row {
  display: flex;
  align-items: baseline;
  gap: 20px;
  padding: 16px 20px;
}
.checklist-guide .checklist-guide-legend-row + .checklist-guide-legend-row {
  border-top: 1px solid #f1f1f6;
}
.checklist-guide .checklist-guide-legend-status {
  width: 130px;
  flex-shrink: 0;
  color: #111;
  font-size: 15px;
  font-weight: 700;
  line-height: 22px;
}
.checklist-guide .checklist-guide-legend-desc {
  margin: 0;
  color: #5a5a6b;
  font-size: 15px;
  line-height: 22px;
}

.is-touch .checklist-guide .checklist-guide-steps {
  grid-template-columns: 1fr;
}
.is-touch .checklist-guide .checklist-guide-step {
  box-shadow: 0 2px 10px rgba(23, 23, 45, 0.05);
}
.is-touch .checklist-guide .checklist-guide-legend-row {
  flex-direction: column;
  gap: 6px;
  padding: 14px 16px;
}
.is-touch .checklist-guide .checklist-guide-legend-status {
  width: auto;
}
.is-touch .checklist-guide .checklist-guide-legend-desc {
  font-size: 14px;
}.geo-article-list-container {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: #fff;
  --list-column-width: 980px;
  --section-gradient: linear-gradient(180deg, #fff 0%, #f5f3ff 100%);
  --intro-gradient: linear-gradient(180deg, #f5f3ff 0%, #fff 100%);
}
.geo-article-list-container .geo-article-list-header {
  width: var(--content-width);
  margin: 0 auto;
}
.geo-article-list-container .geo-article-list-intro {
  width: 100%;
  padding: 24px 0 0 0;
  box-sizing: border-box;
  background: var(--intro-gradient);
}
.geo-article-list-container .geo-article-list-inner {
  width: var(--content-width);
  max-width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}
.geo-article-list-container .geo-article-list-breadcrumb {
  margin-bottom: 16px;
}
.geo-article-list-container .geo-article-list-title {
  margin: 0 0 14px;
  color: #111;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
}
.geo-article-list-container .geo-article-list-desc {
  max-width: 720px;
  margin: 0;
  color: #5a5a6b;
  font-size: 17px;
  line-height: 27px;
}
.geo-article-list-container .geo-article-list-body {
  width: 100%;
  flex: 1;
  padding: 48px 0 24px;
  box-sizing: border-box;
}
.geo-article-list-container .geo-article-list-main {
  width: var(--content-width);
  max-width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}
.geo-article-list-container .geo-article-list-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}
.geo-article-list-container .geo-article-list-empty {
  margin: 0 0 32px;
  padding: 40px 0;
  color: #8a8a9b;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
}
.geo-article-list-container .checklist-guide {
  margin-top: 48px;
}
.geo-article-list-container .geo-article-list-cta {
  width: 100%;
  padding: 80px 0;
  box-sizing: border-box;
  background: var(--section-gradient);
  text-align: center;
}
.geo-article-list-container .geo-article-list-cta-title {
  margin: 0 0 15px;
  color: #111;
  font-size: 36px;
  font-weight: 600;
  line-height: 48px;
}
.geo-article-list-container .geo-article-list-cta-desc {
  max-width: 720px;
  margin: 0 auto 30px;
  color: #888;
  font-size: 16px;
  line-height: 24px;
}
.geo-article-list-container .geo-article-list-cta-btn {
  display: inline-block;
  padding: 15px 40px;
  box-sizing: border-box;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  line-height: 24px;
  text-decoration: none;
  background: linear-gradient(82deg, #fe59fd 0%, #f202b0 24%, #5151ff 50%, #0e5bf2 74%, #1fceec 99%);
  border: none;
  border-radius: 77px;
  cursor: pointer;
  transition: all 0.3s ease;
}
@media (hover: hover) {
  .geo-article-list-container .geo-article-list-cta-btn:hover {
    opacity: 0.8;
  }
}
.geo-article-list-container.is-touch .geo-article-list-intro {
  padding: 16px 0 24px;
}
.geo-article-list-container.is-touch .geo-article-list-inner,
.geo-article-list-container.is-touch .geo-article-list-main {
  width: 100%;
  padding: 0 16px;
}
.geo-article-list-container.is-touch .geo-article-list-title {
  font-size: 28px;
}
.geo-article-list-container.is-touch .geo-article-list-desc {
  font-size: 15px;
  line-height: 24px;
}
.geo-article-list-container.is-touch .geo-article-list-body {
  padding: 24px 0 16px;
}
.geo-article-list-container.is-touch .geo-article-list-cta {
  padding: 40px 0;
}
.geo-article-list-container.is-touch .geo-article-list-cta-title {
  font-size: 22px;
  line-height: 32px;
}.premium-suppliers-page {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: #f3f3f3;
  color: #1a1a2e;
}

.premium-suppliers-header {
  width: 100%;
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(17, 24, 39, 0.06);
}

.premium-suppliers-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: var(--content-width);
  margin: 0 auto;
  padding: 18px 0;
  box-sizing: border-box;
}

.premium-suppliers-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #171717;
  text-decoration: none;
  font-size: 31.79px;
  font-weight: 600;
  cursor: pointer;
}
.premium-suppliers-logo img {
  width: 39.68px;
  height: 37.76px;
}

.premium-suppliers-nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.premium-suppliers-start {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  box-sizing: border-box;
  border: none;
  border-radius: 77px;
  background-color: #222;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  line-height: 24px;
}
@media (hover: hover) {
  .premium-suppliers-start:hover {
    color: #fff;
    cursor: pointer;
    opacity: 0.8;
  }
}

.premium-suppliers-content {
  flex: 1;
  width: var(--content-width);
  margin: 0 auto;
  padding: 20px 0 80px;
  box-sizing: border-box;
}

.premium-suppliers-list {
  width: 100%;
  max-width: 100%;
  padding: 0 0 30px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.premium-supplier-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: 100%;
}

.premium-supplier-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.premium-section-title {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  color: var(--text);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.35;
}
.premium-section-title img {
  flex-shrink: 0;
}

.premium-found-badge {
  flex-shrink: 0;
  padding: 2px 10px;
  box-sizing: border-box;
  border-radius: 99px;
  background: #f3f4f6;
  color: #6b7280;
  font-size: 12px;
  font-weight: 500;
}

.premium-supplier-card {
  width: 100%;
  max-width: 100%;
  padding: 20px;
  box-sizing: border-box;
  border: 1px solid #e8e5f0;
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(180deg, #f0f3ff 5%, #fbfcff 41%, #fff 98%);
  transition: box-shadow 0.15s;
}
@media (hover: hover) {
  .premium-supplier-card:hover {
    box-shadow: 0 2px 12px rgba(124, 58, 237, 0.08);
  }
}

.premium-supplier-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.premium-supplier-info {
  flex: 1;
  min-width: 0;
}

.premium-supplier-name {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  max-width: 100%;
  padding: 0;
  box-sizing: border-box;
  border: 0;
  background: transparent;
  color: #1a1a2e;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
}
.premium-supplier-name span:not(.premium-platform-badge) {
  flex: 1;
  min-width: 0;
  color: inherit;
  text-decoration: none;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media (hover: hover) {
  .premium-supplier-name:hover span:not(.premium-platform-badge) {
    color: #7c3aed;
    text-decoration: underline;
  }
}

.premium-platform-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 0;
  box-sizing: border-box;
  border: none;
  background: transparent;
}
.premium-platform-badge img {
  width: 22px;
  height: 22px;
}

.premium-supplier-meta {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 4px;
  color: #6b7280;
  font-size: 11.5px;
}

.premium-company-type-tag {
  display: inline-block;
  padding: 1px 6px;
  box-sizing: border-box;
  border: 1px solid #bfdbfe;
  border-radius: 4px;
  background: #eff6ff;
  color: #2563eb;
  font-size: 10px;
  font-weight: 600;
  line-height: 18px;
}

.premium-product-grid {
  display: flex;
  gap: 12px;
  max-width: 100%;
  padding: 10px 0;
  box-sizing: border-box;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: thin;
  scrollbar-color: #ddd6fe transparent;
}
.premium-product-grid::-webkit-scrollbar {
  height: 4px;
}
.premium-product-grid::-webkit-scrollbar-track {
  background: transparent;
}
.premium-product-grid::-webkit-scrollbar-thumb {
  border-radius: 4px;
  background: #ddd6fe;
}
@media (hover: hover) {
  .premium-product-grid::-webkit-scrollbar-thumb:hover {
    background: #c4b5fd;
  }
}

.premium-product-card {
  position: relative;
  width: 220px;
  flex-shrink: 0;
  border: 1px solid #ece8f4;
  border-radius: 10px;
  overflow: visible;
  background: #fff;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
@media (hover: hover) {
  .premium-product-card:hover {
    transform: translateY(-2px);
    border-color: #ddd6fe;
    box-shadow: 0 6px 16px rgba(109, 86, 196, 0.08);
  }
}

.premium-product-link {
  display: block;
  width: 100%;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.premium-product-image-container {
  position: relative;
  width: 100%;
  border-radius: 10px 10px 0 0;
  overflow: hidden;
  background: #f8f7ff;
}

.premium-product-info {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 8px 10px 15px;
  box-sizing: border-box;
}

.premium-product-name {
  min-height: 2.7em;
  margin-bottom: 4px;
  color: #1a1a2e;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.35;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  cursor: pointer;
}
@media (hover: hover) {
  .premium-product-name:hover {
    color: #7c3aed;
  }
}

.premium-product-price-row {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 5px;
}

.premium-product-price {
  color: #7c3aed;
  font-size: 16px;
  font-weight: 700;
}

.premium-product-moq {
  padding: 1px 5px;
  box-sizing: border-box;
  border-radius: 3px;
  color: #8b8ba0;
  font-size: 14px;
}

.premium-suppliers-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  min-height: calc(100vh - 200px);
  padding: 60px 20px;
  box-sizing: border-box;
}
.premium-suppliers-empty img {
  width: 400px;
}

.premium-empty-text {
  color: #6b7280;
  font-size: 16px;
  font-weight: 500;
}

@media (max-width: 1680px) {
  .premium-product-card {
    width: 200px;
  }
}
@media screen and (max-width: 1700px) {
  .premium-suppliers-nav,
  .premium-suppliers-content {
    width: calc(100% - 160px);
  }
}
@media (max-width: 1800px) {
  .premium-suppliers-empty img {
    width: 300px;
  }
}
@media (max-width: 1440px) {
  .premium-product-card {
    width: 180px;
  }
  .premium-product-name {
    font-size: 12.5px;
  }
}
@media (max-width: 1280px) {
  .premium-product-grid {
    gap: 6px;
  }
  .premium-product-card {
    width: 160px;
  }
  .premium-product-info {
    padding: 8px;
    box-sizing: border-box;
  }
  .premium-product-name,
  .premium-product-price {
    font-size: 12px;
  }
  .premium-product-moq {
    font-size: 11px;
  }
}
@media screen and (max-width: 900px) {
  .premium-suppliers-nav,
  .premium-suppliers-content {
    width: calc(100% - 32px);
  }
  .premium-suppliers-nav {
    padding: 12px 0;
    box-sizing: border-box;
  }
  .premium-suppliers-logo {
    gap: 8px;
    font-size: 24px;
  }
  .premium-suppliers-logo img {
    width: 32px;
    height: 30px;
  }
  .premium-suppliers-start {
    padding: 7px 14px;
    box-sizing: border-box;
    font-size: 14px;
  }
  .premium-suppliers-content {
    padding: 28px 0 48px;
    box-sizing: border-box;
  }
  .premium-supplier-section-header {
    align-items: flex-start;
    gap: 12px;
  }
  .premium-section-title {
    font-size: 18px;
  }
}.edm-unsubscribe-page {
  min-height: 100vh;
  background: #fff;
  color: #20164f;
}

.edm-unsubscribe-header {
  height: 76px;
  display: flex;
  align-items: center;
  padding: 0 32px;
  box-sizing: border-box;
  background: #fff;
  border-bottom: 1px solid #e9e3ff;
}

.edm-unsubscribe-header-inner {
  width: min(100%, 1400px);
  margin: 0 auto;
}

.edm-unsubscribe-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #33206f;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
}
.edm-unsubscribe-logo img {
  width: 34px;
  height: 34px;
  display: block;
}

.edm-unsubscribe-main {
  min-height: calc(100vh - 76px);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 116px 24px 48px;
  box-sizing: border-box;
  background: linear-gradient(180deg, rgba(98, 84, 254, 0.14) 0%, rgba(98, 84, 254, 0.045) 44%, rgba(255, 255, 255, 0) 100%), linear-gradient(135deg, #f0edff 0%, #f8f7ff 46%, #fff 100%);
}

.edm-unsubscribe-card {
  width: min(100%, 760px);
  position: relative;
  padding: 34px 24px 42px;
  box-sizing: border-box;
  background: transparent;
  border: 0;
  box-shadow: none;
  text-align: center;
}
.edm-unsubscribe-card h1 {
  margin-top: 30px;
  color: #20164f;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.3;
}
.edm-unsubscribe-card p {
  margin: 14px auto 0;
  color: #6f6894;
  font-size: 18px;
  line-height: 1.5;
}

.edm-unsubscribe-question {
  color: #3b2e73;
}

.edm-unsubscribe-icon {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #7b61ff 0%, #6254fe 100%);
  color: #fff;
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
}
.edm-unsubscribe-icon.is-success {
  background: linear-gradient(135deg, #6254fe 0%, #8b5cf6 100%);
  font-size: 28px;
}

.edm-unsubscribe-actions {
  margin-top: 34px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.edm-unsubscribe-primary,
.edm-unsubscribe-secondary {
  border: 0;
  background: transparent;
  font: inherit;
  cursor: pointer;
}

.edm-unsubscribe-primary {
  width: min(100%, 320px);
  min-height: 54px;
  padding: 0 28px;
  box-sizing: border-box;
  border-radius: 999px;
  background: #6254fe;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  box-shadow: 0 18px 36px rgba(98, 84, 254, 0.28);
  transition: background-color 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}
@media (hover: hover) {
  .edm-unsubscribe-primary:hover:not(:disabled) {
    background: #5144e8;
    box-shadow: 0 14px 28px rgba(98, 84, 254, 0.3);
  }
}
.edm-unsubscribe-primary:disabled {
  cursor: not-allowed;
  opacity: 0.7;
}

.edm-unsubscribe-secondary {
  color: #7b729f;
  font-size: 17px;
  font-weight: 500;
}
@media (hover: hover) {
  .edm-unsubscribe-secondary:hover {
    color: #6254fe;
  }
}

@media screen and (max-width: 1919px) {
  .edm-unsubscribe-header-inner {
    width: min(100%, 1200px);
  }
}
@media screen and (max-width: 768px) {
  .edm-unsubscribe-header {
    height: 64px;
    padding: 0 20px;
    box-sizing: border-box;
  }
  .edm-unsubscribe-logo {
    font-size: 21px;
  }
  .edm-unsubscribe-logo img {
    width: 30px;
    height: 30px;
  }
  .edm-unsubscribe-main {
    min-height: calc(100vh - 64px);
    padding: 64px 16px 32px;
    box-sizing: border-box;
  }
  .edm-unsubscribe-card {
    min-height: auto;
    padding: 28px 4px 32px;
    box-sizing: border-box;
  }
  .edm-unsubscribe-card h1 {
    margin-top: 24px;
    font-size: 23px;
  }
  .edm-unsubscribe-card p {
    font-size: 15px;
    line-height: 1.6;
  }
  .edm-unsubscribe-primary {
    min-height: 50px;
    font-size: 16px;
  }
  .edm-unsubscribe-secondary {
    font-size: 16px;
  }
}.privacy-policy {
  width: 100%;
  max-width: 100%;
  padding: 16px;
  box-sizing: border-box;
  word-break: keep-all;
  overflow-wrap: break-word;
  overflow-x: hidden;
}
.privacy-policy .privacy-policy-name {
  width: 100%;
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  padding: 32px 0 20px;
  box-sizing: border-box;
}
.privacy-policy .privacy-policy-title {
  width: 100%;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  padding: 24px 0 0px;
  box-sizing: border-box;
  margin: 0;
}
.privacy-policy .privacy-policy-ftitle {
  width: 100%;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  padding: 16px 0 0px;
  box-sizing: border-box;
}
.privacy-policy .privacy-policy-subtitle {
  width: 100%;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  padding: 8px 0 0px;
  box-sizing: border-box;
}
.privacy-policy .privacy-policy-text {
  width: 100%;
  font-size: 14px;
  line-height: 1.5;
  margin-top: 5px;
}
.privacy-policy .privacy-policy-text .text-sub {
  padding-left: 20px;
  box-sizing: border-box;
}
.privacy-policy .privacy-policy-text p {
  margin: 5px 0;
}
.privacy-policy .privacy-policy-text a {
  color: #0066cc;
  text-decoration: underline;
}
.privacy-policy .privacy-policy-text .text-underline {
  padding-bottom: 3px;
  box-sizing: border-box;
  font-weight: bold;
  text-decoration: underline;
}
.privacy-policy .privacy-policy-table-wrapper {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-top: 10px;
}
.privacy-policy .privacy-policy-table {
  width: 100%;
  border-spacing: 0;
  border-collapse: collapse;
}
.privacy-policy .privacy-policy-table.table-wide {
  min-width: 1000px;
}
.privacy-policy .privacy-policy-table tr td,
.privacy-policy .privacy-policy-table tr th {
  border: 1px solid #dcdee0;
  padding: 10px 12px;
  box-sizing: border-box;
  font-size: 12px;
  line-height: 1.4;
}
.privacy-policy .privacy-policy-table tr th {
  background-color: #f5f5f5;
  font-weight: 600;
}
.privacy-policy .privacy-policy-table.first-col-bold tr td:first-child {
  font-weight: 600;
}
.privacy-policy .privacy-policy-divider {
  margin: 10px 0;
}
.social-challenge-page {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: radial-gradient(circle at 16% 12%, rgba(245, 40, 225, 0.08) 0, rgba(245, 40, 225, 0.08) 12%, transparent 30%), radial-gradient(circle at 88% 24%, rgba(2, 176, 251, 0.08) 0, rgba(2, 176, 251, 0.08) 13%, transparent 32%), radial-gradient(circle at 50% 78%, rgba(81, 81, 255, 0.06) 0, transparent 30%), #fff;
  color: #222;
  scroll-behavior: smooth;
}

.social-challenge-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  background: #fff;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

.social-challenge-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: var(--content-width);
  margin: 0 auto;
  padding: 18px 0;
  box-sizing: border-box;
}

.social-challenge-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #222;
  font-size: 31.79px;
  font-weight: 600;
  text-decoration: none;
}
@media (hover: hover) {
  .social-challenge-logo:hover {
    color: #222;
  }
}
.social-challenge-logo img {
  width: 39.68px;
  height: 37.76px;
}

.social-challenge-nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.social-challenge-nav-link {
  display: inline-flex;
  align-items: center;
  height: 44px;
  padding: 10px 15px;
  box-sizing: border-box;
  color: #666;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}
@media (hover: hover) {
  .social-challenge-nav-link:hover {
    background: #E1E1E1;
    color: #222;
    cursor: pointer;
  }
}

.social-challenge-nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border: none;
  border-radius: 77px;
  background: #222;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
@media (hover: hover) {
  .social-challenge-nav-cta:hover {
    color: #fff;
    opacity: 0.8;
    transform: none;
    box-shadow: none;
  }
}

.social-challenge-hero {
  position: relative;
  width: var(--content-width);
  margin: 0 auto;
  padding: 156px 0 80px;
  text-align: center;
}

.social-challenge-hero-content {
  position: relative;
  z-index: 1;
  max-width: 920px;
  margin: 0 auto;
}

.social-challenge-floating-cards {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.social-challenge-floating-card {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  animation: social-challenge-floating-card 12s ease-in-out infinite;
}
.social-challenge-floating-card::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(138deg, #FC48EE 12%, #1276F1 84%);
  content: "";
}
.social-challenge-floating-card:nth-child(1) {
  top: 150px;
  left: 0;
}
.social-challenge-floating-card:nth-child(1)::before {
  background: #1F58F5;
}
.social-challenge-floating-card:nth-child(2) {
  top: 200px;
  right: 0;
  animation-delay: 1.8s;
}
.social-challenge-floating-card:nth-child(2)::before {
  background: #1DBFED;
}
.social-challenge-floating-card:nth-child(3) {
  bottom: 20px;
  left: 58px;
  animation-delay: 3.6s;
}
.social-challenge-floating-card:nth-child(3)::before {
  background: #F936DE;
}
.social-challenge-floating-card:nth-child(4) {
  right: 44px;
  bottom: 116px;
  animation-delay: 5.4s;
}
.social-challenge-floating-card:nth-child(4)::before {
  background: #22C55E;
}

.social-challenge-hero-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 24px;
  padding: 8px 18px;
  border: 1px solid rgba(81, 81, 255, 0.16);
  border-radius: 77px;
  background: rgba(255, 255, 255, 0.72);
  color: #5151ff;
  font-size: 16px;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(31, 88, 245, 0.08);
}

.social-challenge-hero-title {
  margin: 24px 0;
  font-size: 64px;
  font-weight: 800;
  line-height: 78px;
  letter-spacing: 0;
}
.social-challenge-hero-title span {
  display: inline-block;
  background: linear-gradient(90deg, #F936DE 0%, #E00BB9 25%, #1F58F5 75%, #1EC1ED 99%);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.social-challenge-hero-subtitle {
  max-width: 720px;
  margin: 0 auto 40px;
  color: #666;
  font-size: 20px;
  line-height: 32px;
}

.social-challenge-primary-cta,
.social-challenge-final-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  padding: 15px 40px;
  border-radius: 77px;
  background: linear-gradient(83deg, #FE59FD 0%, #F202B0 24%, #5151FF 50%, #0E5BF2 74%, #1FCEEC 99%);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(124, 58, 237, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}
@media (hover: hover) {
  .social-challenge-primary-cta:hover,
  .social-challenge-final-cta-btn:hover {
    color: #fff;
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(124, 58, 237, 0.4);
  }
}

.social-challenge-hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 32px 0 0;
  color: #888;
  font-size: 14px;
}
.social-challenge-hero-stats strong {
  color: #1DBFED;
  font-weight: 700;
}
.social-challenge-hero-stats span {
  color: #D2D2D2;
}

.social-challenge-section {
  position: relative;
  width: 100%;
  padding: 80px 0;
}

.social-challenge-section-inner {
  width: var(--content-width);
  margin: 0 auto;
}

.social-challenge-section-header {
  max-width: 760px;
  margin: 0 auto 40px;
  text-align: center;
}

.social-challenge-section-label,
.social-challenge-reward-badge {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  justify-content: center;
  border-radius: 77px;
  font-weight: 700;
}

.social-challenge-section-label {
  margin: 0 0 14px;
  padding: 6px 16px;
  border: none;
  background: rgba(31, 88, 245, 0.08);
  color: #1F58F5;
  font-size: 14px;
}

.social-challenge-section-title,
.social-challenge-final-cta-title {
  margin: 0 0 16px;
  color: #222;
  font-size: 48px;
  font-weight: 800;
  line-height: 64px;
  letter-spacing: 0;
}

.social-challenge-section-subtitle,
.social-challenge-final-cta-subtitle {
  margin: 0;
  color: #666;
  font-size: 18px;
  line-height: 28px;
}

.social-challenge-benefits-grid,
.social-challenge-rewards-grid,
.social-challenge-testimonials-grid {
  display: grid;
  gap: 24px;
}

.social-challenge-benefits-grid {
  grid-template-columns: repeat(4, 1fr);
}

.social-challenge-benefit-card,
.social-challenge-reward-card,
.social-challenge-testimonial-card,
.social-challenge-timeline-content {
  border: 1px solid #E5E7EB;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
@media (hover: hover) {
  .social-challenge-benefit-card:hover,
  .social-challenge-reward-card:hover,
  .social-challenge-testimonial-card:hover,
  .social-challenge-timeline-content:hover {
    border-color: rgba(31, 88, 245, 0.22);
    box-shadow: 0 12px 30px rgba(31, 88, 245, 0.1);
    transform: translateY(-2px);
  }
}

.social-challenge-benefit-card {
  padding: 32px 28px;
}

.social-challenge-benefit-icon,
.social-challenge-reward-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: linear-gradient(138deg, rgba(252, 72, 238, 0.12) 12%, rgba(18, 118, 241, 0.12) 84%);
  color: #1F58F5;
}

.social-challenge-benefit-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 22px;
  font-size: 24px;
}

.social-challenge-benefit-title,
.social-challenge-timeline-title,
.social-challenge-reward-title {
  margin: 0 0 12px;
  color: #222;
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
}

.social-challenge-benefit-desc,
.social-challenge-timeline-desc {
  margin: 0;
  color: #666;
  font-size: 15px;
  line-height: 24px;
}

.social-challenge-timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}
.social-challenge-timeline::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: linear-gradient(180deg, #FC48EE 0%, #1276F1 50%, #1FCEEC 100%);
  content: "";
  opacity: 0.24;
  transform: translateX(-50%);
}

.social-challenge-timeline-item {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 136px;
  margin-bottom: 32px;
}
.social-challenge-timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}
.social-challenge-timeline-item:last-child {
  margin-bottom: 0;
}

.social-challenge-timeline-content {
  width: 45%;
  padding: 24px 32px;
}

.social-challenge-timeline-step {
  position: absolute;
  top: 50%;
  left: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(138deg, #FC48EE 12%, #1276F1 84%);
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(31, 88, 245, 0.22);
  transform: translate(-50%, -50%);
}

.social-challenge-rewards-grid {
  grid-template-columns: repeat(3, 1fr);
}

.social-challenge-reward-card {
  padding: 28px 28px;
  text-align: center;
}

.social-challenge-reward-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 18px;
  font-size: 28px;
}

.social-challenge-reward-value {
  margin: 0 0 12px;
  background: linear-gradient(90deg, #F936DE 0%, #1F58F5 80%);
  background-clip: text;
  font-size: 26px;
  font-weight: 800;
  line-height: 34px;
  -webkit-text-fill-color: transparent;
}

.social-challenge-reward-desc {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
  padding: 0;
  color: #666;
  font-size: 15px;
  line-height: 24px;
  list-style: none;
}

.social-challenge-reward-badge {
  margin: 16px auto 0;
  padding: 5px 12px;
  border: none;
  background: rgba(249, 54, 222, 0.08);
  color: #E00BB9;
  font-size: 13px;
}

.social-challenge-testimonials-grid {
  grid-template-columns: repeat(2, 1fr);
  max-width: 920px;
  margin: 0 auto;
}

.social-challenge-testimonial-card {
  padding: 32px;
}

.social-challenge-testimonial-quote {
  margin: 0 0 24px;
  color: #222;
  font-size: 18px;
  font-style: italic;
  line-height: 30px;
}
.social-challenge-testimonial-quote::before {
  content: '"';
}
.social-challenge-testimonial-quote::after {
  content: '"';
}

.social-challenge-testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.social-challenge-testimonial-avatar {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(138deg, #1F58F5 12%, #1FCEEC 84%);
  color: #222;
  font-size: 16px;
  font-weight: 700;
}

.social-challenge-testimonial-info {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.social-challenge-testimonial-name {
  font-size: 16px;
}

.social-challenge-testimonial-role {
  color: #666;
  font-size: 14px;
}

.social-challenge-testimonial-stars {
  display: inline-flex;
  gap: 2px;
  margin-top: 4px;
  color: #FFB000;
  font-size: 13px;
}

.social-challenge-final-cta {
  width: 100%;
  margin: 0;
  padding: 80px 0;
  box-sizing: border-box;
  background: transparent;
  text-align: center;
}

.social-challenge-final-cta-content {
  width: var(--content-width);
  max-width: none;
  margin: 0 auto;
  padding: 0;
}

.social-challenge-final-cta-icon {
  margin-bottom: 14px;
  color: #1F58F5;
  font-size: 34px;
}

.social-challenge-final-cta-subtitle {
  margin-bottom: 40px;
}

@keyframes social-challenge-floating-card {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}
@media screen and (max-width: 1200px) {
  .social-challenge-nav {
    width: calc(100% - 40px);
  }
  .social-challenge-hero,
  .social-challenge-section-inner,
  .social-challenge-final-cta-content {
    width: calc(100% - 40px);
  }
  .social-challenge-benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .social-challenge-floating-card {
    opacity: 0.62;
  }
  .social-challenge-floating-card:nth-child(1) {
    left: 0;
  }
  .social-challenge-floating-card:nth-child(2) {
    right: 0;
  }
  .social-challenge-floating-card:nth-child(3) {
    left: 20px;
  }
  .social-challenge-floating-card:nth-child(4) {
    right: 20px;
  }
}
@media screen and (max-width: 767px) {
  .social-challenge-header {
    padding: 0 20px;
    box-sizing: border-box;
  }
  .social-challenge-nav {
    width: 100%;
  }
  .social-challenge-nav-links {
    gap: 0;
  }
  .social-challenge-nav-link {
    display: none;
  }
  .social-challenge-nav-cta {
    padding: 8px 16px;
    font-size: 14px;
  }
  .social-challenge-hero {
    padding: 44px 0;
  }
  .social-challenge-floating-cards {
    display: none;
  }
  .social-challenge-hero-title {
    font-size: 42px;
    line-height: 52px;
  }
  .social-challenge-hero-subtitle,
  .social-challenge-section-subtitle,
  .social-challenge-final-cta-subtitle {
    font-size: 16px;
    line-height: 26px;
  }
  .social-challenge-primary-cta,
  .social-challenge-final-cta-btn {
    width: 100%;
    padding-right: 20px;
    padding-left: 20px;
    font-size: 16px;
  }
  .social-challenge-benefits-grid,
  .social-challenge-rewards-grid,
  .social-challenge-testimonials-grid {
    grid-template-columns: 1fr;
  }
  .social-challenge-timeline::before {
    left: 24px;
  }
  .social-challenge-timeline-item,
  .social-challenge-timeline-item:nth-child(even) {
    align-items: flex-start;
    flex-direction: column;
    min-height: 0;
    margin-bottom: 24px;
    padding-left: 60px;
  }
  .social-challenge-timeline-content {
    width: 100%;
    padding: 24px;
  }
  .social-challenge-timeline-step {
    top: 24px;
    left: 24px;
    width: 44px;
    height: 44px;
    transform: translateX(-50%);
  }
  .social-challenge-section {
    padding: 42px 0;
  }
  .social-challenge-section-title,
  .social-challenge-final-cta-title {
    font-size: 34px;
    line-height: 44px;
  }
  .social-challenge-benefit-card,
  .social-challenge-testimonial-card {
    padding: 24px;
  }
  .social-challenge-reward-card {
    padding: 24px 22px;
  }
  .social-challenge-reward-title {
    margin-bottom: 8px;
  }
  .social-challenge-reward-value {
    font-size: 22px;
    line-height: 30px;
  }
  .social-challenge-reward-desc {
    gap: 8px;
    line-height: 22px;
  }
  .social-challenge-final-cta {
    padding: 44px 0;
  }
}
/* 手机档。上面的 767px 断点是按平板/大手机给的取值，到 375px 宽度仍偏大，
   这里在其基础上再收一档：字号、区块纵向留白、卡片内边距、时间轴缩进。
   只在手机宽度生效，桌面与平板不受影响。 */
@media screen and (max-width: 480px) {
  .social-challenge-logo {
    gap: 6px;
    font-size: 20px; /* 桌面 31.79px */
  }
  .social-challenge-logo img {
    width: 28px;
    height: 28px;
  }
  .social-challenge-section-inner,
  .social-challenge-final-cta-content {
    width: calc(100% - 28px); /* 1200px 断点是 calc(100% - 40px) */
  }
  /* ── 区块纵向留白 ── */
  .social-challenge-hero,
  .social-challenge-section,
  .social-challenge-final-cta {
    padding: 28px 0; /* 767px 断点是 42~44px */
  }
  /* ── 标题与正文 ── */
  .social-challenge-hero-badge {
    margin-bottom: 16px; /* 桌面 24px */
    padding: 6px 14px;
    font-size: 13px; /* 桌面 16px */
  }
  .social-challenge-hero-title {
    margin: 16px 0; /* 桌面 24px */
    font-size: 28px; /* 767px 断点是 42px */
    line-height: 36px;
  }
  .social-challenge-hero-subtitle,
  .social-challenge-section-subtitle,
  .social-challenge-final-cta-subtitle {
    font-size: 14px; /* 767px 断点是 16px */
    line-height: 22px;
  }
  .social-challenge-hero-subtitle,
  .social-challenge-final-cta-subtitle {
    margin-bottom: 20px; /* 桌面 40px */
  }
  .social-challenge-hero-stats {
    margin-top: 20px; /* 桌面 32px */
    font-size: 12px;
  }
  .social-challenge-section-header {
    margin-bottom: 20px; /* 桌面 40px */
  }
  .social-challenge-section-label {
    margin-bottom: 10px; /* 桌面 14px */
    padding: 5px 12px;
    font-size: 12px; /* 桌面 14px */
  }
  .social-challenge-section-title,
  .social-challenge-final-cta-title {
    margin-bottom: 10px; /* 桌面 16px */
    font-size: 22px; /* 767px 断点是 34px */
    line-height: 30px;
  }
  /* ── 卡片 ── */
  .social-challenge-benefit-card,
  .social-challenge-testimonial-card,
  .social-challenge-timeline-content {
    padding: 16px; /* 767px 断点是 24px */
  }
  .social-challenge-reward-card {
    padding: 16px 14px; /* 767px 断点是 24px 22px */
  }
  .social-challenge-benefit-icon,
  .social-challenge-reward-icon {
    border-radius: 12px; /* 桌面 16px */
  }
  .social-challenge-benefit-icon {
    width: 44px; /* 桌面 56px */
    height: 44px;
    margin-bottom: 14px; /* 桌面 22px */
    font-size: 20px; /* 桌面 24px */
  }
  .social-challenge-benefit-title,
  .social-challenge-timeline-title,
  .social-challenge-reward-title {
    margin-bottom: 8px; /* 桌面 12px */
    font-size: 16px; /* 桌面 20px */
    line-height: 22px;
  }
  .social-challenge-benefit-desc,
  .social-challenge-timeline-desc {
    font-size: 13px; /* 桌面 15px */
    line-height: 20px;
  }
  .social-challenge-testimonial-quote {
    margin-bottom: 16px; /* 桌面 24px */
    font-size: 14px; /* 桌面 18px */
    line-height: 22px;
  }
  .social-challenge-final-cta-icon {
    margin-bottom: 10px; /* 桌面 14px */
    font-size: 24px; /* 桌面 34px */
  }
  /* ── 时间轴 ── */
  .social-challenge-timeline::before {
    left: 18px; /* 767px 断点是 24px */
  }
  .social-challenge-timeline-item,
  .social-challenge-timeline-item:nth-child(even) {
    margin-bottom: 16px; /* 767px 断点是 24px */
    padding-left: 44px; /* 767px 断点是 60px */
  }
  .social-challenge-timeline-step {
    top: 18px;
    left: 18px;
    width: 36px; /* 767px 断点是 44px */
    height: 36px;
  }
  /* ── CTA 按钮 ── */
  .social-challenge-primary-cta,
  .social-challenge-final-cta-btn {
    min-height: 48px; /* 桌面 56px */
    font-size: 14px; /* 767px 断点是 16px */
  }
}.share-result {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: #fff;
  --section-gradient: linear-gradient(180deg, #fff 0%, #f5f3ff 100%);
  --intro-gradient: linear-gradient(180deg, #f5f3ff 0%, #fff 100%);
}
.share-result .share-result-header {
  width: 100%;
  height: 80px;
}
.share-result .share-result-header-fixed {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  background: #fff;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}
.share-result .share-result-header-inner {
  width: var(--content-width);
  max-width: calc(100% - 48px);
  margin: 0 auto;
  padding: 18px 0;
  box-sizing: border-box;
  display: flex;
  align-items: center;
}
.share-result .share-result-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #111;
  font-size: 31.79px;
  font-weight: 600;
  text-decoration: none;
}
.share-result .share-result-logo img {
  width: 39.68px;
  height: 37.76px;
}
.share-result .share-result-inner,
.share-result .share-result-main {
  width: var(--content-width);
  max-width: calc(100% - 48px);
  margin: 0 auto;
  box-sizing: border-box;
}
.share-result .share-result-intro {
  width: 100%;
  padding: 24px 0 0;
  box-sizing: border-box;
  background: var(--intro-gradient);
}
.share-result .share-result-title {
  margin: 0;
  color: #111;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.3;
  word-break: break-word;
}
.share-result .share-result-body {
  width: 100%;
  flex: 1;
  padding: 32px 0 24px;
  box-sizing: border-box;
}
.share-result .share-result-content {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  overflow: hidden;
}
.share-result .share-result-toggle {
  margin: 16px auto 0;
  padding: 7px 15px;
  display: flex;
  align-items: center;
  gap: 6px;
  border: 1px solid #e4dcff;
  border-radius: 999px;
  background: #faf7ff;
  color: #6b46c1;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
@media (hover: hover) {
  .share-result .share-result-toggle:hover {
    background: #f3efff;
    border-color: #d6c8ff;
    color: #5b21b6;
  }
}
.share-result .share-result-cta {
  width: 100%;
  padding: 80px 0;
  box-sizing: border-box;
  background: var(--section-gradient);
  text-align: center;
}
.share-result .share-result-cta-title {
  margin: 0 0 15px;
  color: #111;
  font-size: 36px;
  font-weight: 600;
  line-height: 48px;
}
.share-result .share-result-cta-desc {
  max-width: 720px;
  margin: 0 auto 30px;
  color: #888;
  font-size: 16px;
  line-height: 24px;
}
.share-result .share-result-cta-btn {
  display: inline-block;
  padding: 15px 40px;
  box-sizing: border-box;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  line-height: 24px;
  text-decoration: none;
  background: linear-gradient(82deg, #fe59fd 0%, #f202b0 24%, #5151ff 50%, #0e5bf2 74%, #1fceec 99%);
  border: none;
  border-radius: 77px;
  cursor: pointer;
  transition: all 0.3s ease;
}
@media (hover: hover) {
  .share-result .share-result-cta-btn:hover {
    opacity: 0.8;
    color: #fff;
  }
}
.share-result .share-result-empty {
  flex: 1;
  padding: 80px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.share-result .share-result-empty-text {
  margin: 0;
  color: #8a8a9b;
  font-size: 16px;
  line-height: 24px;
}
.share-result .share-result-empty-link {
  color: var(--color-primary);
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
}
.share-result.is-touch .share-result-header {
  height: 56px;
}
.share-result.is-touch .share-result-header-inner {
  width: 100%;
  max-width: 100%;
  padding: 10px 16px;
}
.share-result.is-touch .share-result-logo {
  gap: 8px;
  font-size: 20px;
}
.share-result.is-touch .share-result-logo img {
  width: 26px;
  height: 25px;
}
.share-result.is-touch .share-result-inner,
.share-result.is-touch .share-result-main {
  width: 100%;
  max-width: 100%;
  padding: 0 16px;
}
.share-result.is-touch .share-result-intro {
  padding: 16px 0 0;
}
.share-result.is-touch .share-result-title {
  font-size: 20px;
}
.share-result.is-touch .share-result-body {
  padding: 16px 0;
}
.share-result.is-touch .share-result-cta {
  padding: 40px 0;
}
.share-result.is-touch .share-result-cta-title {
  font-size: 22px;
  line-height: 32px;
}
.share-result.is-touch .share-result-cta-desc {
  margin-bottom: 24px;
  font-size: 14px;
}
.share-result.is-touch .share-result-cta-btn {
  width: 100%;
  padding: 13px 24px;
}
/*一行省略号*/
/*多行省略号(默认两行)*/
/*水平垂直居中 不固定宽高*/
/*animate*/
/*Scrollbar*/
/*更改svg图片颜色 父级样式要加overflow: hidden;*/
@font-face {
  font-family: "Roboto";
  src: url("https://ai.micstatic.com/common/font/roboto/400-regular/Roboto-Regular.eot") format("eot"); /*IE*/
  src: local("Roboto"), local("Roboto Regular"), local("Roboto-Regular"), url("https://ai.micstatic.com/common/font/roboto/400-regular/Roboto-Regular.eot?#iefix") format("embedded-opentype"), url("https://ai.micstatic.com/common/font/roboto/400-regular/Roboto-Regular.woff2") format("woff2"), url("https://ai.micstatic.com/common/font/roboto/400-regular/Roboto-Regular.woff") format("woff"), url("https://ai.micstatic.com/common/font/roboto/400-regular/Roboto-Regular.ttf") format("truetype"); /* Safari, Android, iOS */
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("https://ai.micstatic.com/common/font/roboto/700-bold/Roboto-Bold.eot") format("eot"); /*IE*/
  src: local("Roboto Bold"), local("Roboto-Bold"), url("https://ai.micstatic.com/common/font/roboto/700-bold/Roboto-Bold.eot?#iefix") format("embedded-opentype"), url("https://ai.micstatic.com/common/font/roboto/700-bold/Roboto-Bold.woff2") format("woff2"), url("https://ai.micstatic.com/common/font/roboto/700-bold/Roboto-Bold.woff") format("woff"), url("https://ai.micstatic.com/common/font/roboto/700-bold/Roboto-Bold.ttf") format("truetype"); /* Safari, Android, iOS */
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("https://ai.micstatic.com/common/font/poppins/400-regular/Poppins-Regular.eot") format("eot"); /*IE*/
  src: local("Poppins"), local("Poppins Regular"), local("Poppins-Regular"), url("https://ai.micstatic.com/common/font/poppins/400-regular/Poppins-Regular.eot?#iefix") format("embedded-opentype"), url("https://ai.micstatic.com/common/font/poppins/400-regular/Poppins-Regular.woff2") format("woff2"), url("https://ai.micstatic.com/common/font/poppins/400-regular/Poppins-Regular.woff") format("woff"), url("https://ai.micstatic.com/common/font/poppins/400-regular/Poppins-Regular.ttf") format("truetype"); /* Safari, Android, iOS */
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("https://ai.micstatic.com/common/font/poppins/500-medium/Poppins-Medium.eot") format("eot"); /*IE*/
  src: local("Poppins Medium"), local("Poppins-Medium"), url("https://ai.micstatic.com/common/font/poppins/500-medium/Poppins-Medium.eot?#iefix") format("embedded-opentype"), url("https://ai.micstatic.com/common/font/poppins/500-medium/Poppins-Medium.woff2") format("woff2"), url("https://ai.micstatic.com/common/font/poppins/500-medium/Poppins-Medium.woff") format("woff"), url("https://ai.micstatic.com/common/font/poppins/500-medium/Poppins-Medium.ttf") format("truetype"); /* Safari, Android, iOS */
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("https://ai.micstatic.com/common/font/poppins/700-bold/Poppins-Bold.eot") format("eot"); /*IE*/
  src: local("Poppins Bold"), local("Poppins-Bold"), url("https://ai.micstatic.com/common/font/poppins/700-bold/Poppins-Bold.eot?#iefix") format("embedded-opentype"), url("https://ai.micstatic.com/common/font/poppins/700-bold/Poppins-Bold.woff2") format("woff2"), url("https://ai.micstatic.com/common/font/poppins/700-bold/Poppins-Bold.woff") format("woff"), url("https://ai.micstatic.com/common/font/poppins/700-bold/Poppins-Bold.ttf") format("truetype"); /* Safari, Android, iOS */
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Euclid Circular A";
  src: url("https://ai.micstatic.com/common/font/euclid-circular-a/300-light/EuclidCircularA-Light.eot") format("eot"); /*IE*/
  src: local("Euclid Circular A Light"), local("EuclidCircularA-Light"), url("https://ai.micstatic.com/common/font/euclid-circular-a/300-light/EuclidCircularA-Light.eot?#iefix") format("embedded-opentype"), url("https://ai.micstatic.com/common/font/euclid-circular-a/300-light/EuclidCircularA-Light.woff2") format("woff2"), url("https://ai.micstatic.com/common/font/euclid-circular-a/300-light/EuclidCircularA-Light.woff") format("woff"), url("https://ai.micstatic.com/common/font/euclid-circular-a/300-light/EuclidCircularA-Light.ttf") format("truetype"); /* Safari, Android, iOS */
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Euclid Circular A";
  src: url("https://ai.micstatic.com/common/font/euclid-circular-a/400-regular/EuclidCircularA-Regular.eot") format("eot"); /*IE*/
  src: local("Euclid Circular A"), local("Euclid Circular A Regular"), local("EuclidCircularA-Regular"), url("https://ai.micstatic.com/common/font/euclid-circular-a/400-regular/EuclidCircularA-Regular.eot?#iefix") format("embedded-opentype"), url("https://ai.micstatic.com/common/font/euclid-circular-a/400-regular/EuclidCircularA-Regular.woff2") format("woff2"), url("https://ai.micstatic.com/common/font/euclid-circular-a/400-regular/EuclidCircularA-Regular.woff") format("woff"), url("https://ai.micstatic.com/common/font/euclid-circular-a/400-regular/EuclidCircularA-Regular.ttf") format("truetype"); /* Safari, Android, iOS */
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Euclid Circular A";
  src: url("https://ai.micstatic.com/common/font/euclid-circular-a/500-medium/EuclidCircularA-Medium.eot") format("eot"); /*IE*/
  src: local("Euclid Circular A Medium"), local("EuclidCircularA-Medium"), url("https://ai.micstatic.com/common/font/euclid-circular-a/500-medium/EuclidCircularA-Medium.eot?#iefix") format("embedded-opentype"), url("https://ai.micstatic.com/common/font/euclid-circular-a/500-medium/EuclidCircularA-Medium.woff2") format("woff2"), url("https://ai.micstatic.com/common/font/euclid-circular-a/500-medium/EuclidCircularA-Medium.woff") format("woff"), url("https://ai.micstatic.com/common/font/euclid-circular-a/500-medium/EuclidCircularA-Medium.ttf") format("truetype"); /* Safari, Android, iOS */
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Euclid Circular A";
  src: url("https://ai.micstatic.com/common/font/euclid-circular-a/600-semibold/EuclidCircularA-SemiBold.eot") format("eot"); /*IE*/
  src: local("Euclid Circular A SemiBold"), local("EuclidCircularA-SemiBold"), url("https://ai.micstatic.com/common/font/euclid-circular-a/600-semibold/EuclidCircularA-SemiBold.eot?#iefix") format("embedded-opentype"), url("https://ai.micstatic.com/common/font/euclid-circular-a/600-semibold/EuclidCircularA-SemiBold.woff2") format("woff2"), url("https://ai.micstatic.com/common/font/euclid-circular-a/600-semibold/EuclidCircularA-SemiBold.woff") format("woff"), url("https://ai.micstatic.com/common/font/euclid-circular-a/600-semibold/EuclidCircularA-SemiBold.ttf") format("truetype"); /* Safari, Android, iOS */
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Euclid Circular A";
  src: url("https://ai.micstatic.com/common/font/euclid-circular-a/700-bold/EuclidCircularA-Bold.eot") format("eot"); /*IE*/
  src: local("Euclid Circular A Bold"), local("EuclidCircularA-Bold"), url("https://ai.micstatic.com/common/font/euclid-circular-a/700-bold/EuclidCircularA-Bold.eot?#iefix") format("embedded-opentype"), url("https://ai.micstatic.com/common/font/euclid-circular-a/700-bold/EuclidCircularA-Bold.woff2") format("woff2"), url("https://ai.micstatic.com/common/font/euclid-circular-a/700-bold/EuclidCircularA-Bold.woff") format("woff"), url("https://ai.micstatic.com/common/font/euclid-circular-a/700-bold/EuclidCircularA-Bold.ttf") format("truetype"); /* Safari, Android, iOS */
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
:root {
  --content-width: 1200px;
  --color-primary: #7468f2;
  --primary: #7b72e8;
  --primary-light: #c4bfff;
  --primary-bg: #f5f3ff;
  --primary-dark: #675bd6;
  --bg: #f7f8fc;
  --white: #fff;
  --text: #1a1a2e;
  --text-secondary: #6b7280;
  --text-muted: #9ca3af;
  --border: #e5e7eb;
  --border-light: #f3f4f6;
  --success: #22c55e;
  --error: #ef4444;
  --warning: #f59e0b;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 4px 12px rgba(0, 0, 0, 0.08);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 16px;
  --sidebar-w: 260px;
  --sidebar-collapsed-w: 56px;
  --detail-w: 520px;
}

@media screen and (min-width: 2560px) {
  :root {
    --content-width: 1600px;
  }
}
body, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, code, form, fieldset, legend, input, textarea, blockquote, th, td, hr, button, article, aside, details, figcaption, figure, footer, header, group, menu, nav, section, p, div {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body,
html {
  line-height: 1.5;
  -webkit-text-size-adjust: none;
  -moz-text-size-adjust: none;
  text-size-adjust: none;
  -webkit-tap-highlight-color: transparent;
}

body {
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  font-size: var(--font-size-main);
  color: var(--color-text);
  background: #fff;
}

body, button, input, select, textarea, [class^=ant-], [class*=" ant-"] {
  font-family: "Euclid Circular A", "Poppins", "Roboto", Arial, "Microsoft YaHei", sans-serif;
}

fieldset, img {
  border: 0;
}

ul, ol {
  list-style: none;
}

ins, a {
  text-decoration: none;
}

a {
  cursor: pointer;
  color: var(--color-text-link);
}
@media (hover: hover) {
  a:hover {
    color: var(--color-text-link-hover);
  }
}

textarea {
  resize: none;
}

input:focus {
  outline: 0 none;
}

input[type=checkbox],
input[type=radio] {
  width: auto;
}

.width-auto {
  max-width: 1200px;
  margin: 0 auto;
}

.ant-spin .ant-spin-dot .ant-spin-dot-item {
  background-color: var(--color-primary);
}

* {
  scrollbar-width: thin;
  scrollbar-color: #d8dee8 transparent;
}
*::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
*::-webkit-scrollbar-track {
  background: transparent;
}
*::-webkit-scrollbar-thumb {
  background: #d8dee8;
  border-radius: 4px;
  border: 2px solid transparent;
}
@media (hover: hover) {
  *::-webkit-scrollbar-thumb:hover {
    background: #c4ccd8;
  }
}

button:focus,
button:focus-visible {
  outline: none;
  box-shadow: none;
}.bottom-modal-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1000;
}

.bottom-modal-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: auto;
  z-index: 2;
}

.bottom-modal-mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.bottom-modal-mask.show {
  opacity: 1;
}

.bottom-modal-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #fff;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  overflow: hidden;
}
.bottom-modal-content.show {
  transform: translateY(0);
}.touch-pricing {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 20px;
  box-sizing: border-box;
  background: #fff;
  font-size: 14px;
  line-height: 1.5;
  background: linear-gradient(180deg, #C0CAFF 0%, #FFFFFF 100%);
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.05);
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  box-sizing: border-box;
  border: none;
  background: transparent;
  cursor: pointer;
}
.close-btn img {
  width: 20px;
  height: 20px;
}

.touch-pricing-header {
  border-radius: 0 0 20px 20px;
}
.touch-pricing-header .touch-pricing-title {
  font-size: 28px;
  font-weight: 700;
  font-style: italic;
  line-height: 1.2;
  color: #222;
  text-align: center;
  margin-bottom: 10px;
}
.touch-pricing-header .touch-billing-toggle {
  margin: 0 auto;
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 10px;
  color: #888;
}
.touch-pricing-header .touch-billing-toggle > span:not(.save-badge) {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
}
.touch-pricing-header .touch-billing-toggle > span:not(.save-badge)::after {
  content: attr(data-text);
  font-weight: bold;
  height: 0;
  visibility: hidden;
  overflow: hidden;
}
.touch-pricing-header .touch-billing-toggle .toggle-option-active {
  font-weight: bold;
  color: #222;
}
.touch-pricing-header .touch-billing-toggle .touch-billing-switch {
  width: 70px;
  height: 32px;
  background: #D9D9D9;
}
@media (hover: hover) {
  .touch-pricing-header .touch-billing-toggle .touch-billing-switch:hover:not(.ant-switch-disabled) {
    background: #D9D9D9;
  }
}
.touch-pricing-header .touch-billing-toggle .touch-billing-switch .ant-switch-handle {
  width: 28px;
  height: 28px;
  top: 2px;
}
.touch-pricing-header .touch-billing-toggle .touch-billing-switch .ant-switch-handle::before {
  border-radius: 50%;
}
.touch-pricing-header .touch-billing-toggle .touch-billing-switch.ant-switch-checked {
  background: linear-gradient(91deg, #FE59FD 0%, #0E5BF2 99%);
}
@media (hover: hover) {
  .touch-pricing-header .touch-billing-toggle .touch-billing-switch.ant-switch-checked:hover:not(.ant-switch-disabled) {
    background: linear-gradient(91deg, #FE59FD 0%, #0E5BF2 99%);
  }
}
.touch-pricing-header .touch-billing-toggle .touch-billing-switch.ant-switch-checked .ant-switch-handle {
  inset-inline-start: calc(100% - 30px);
}
.touch-pricing-header .touch-billing-toggle .save-badge {
  padding: 2px 10px;
  box-sizing: border-box;
  border-radius: 4px;
  font-size: 12px;
  line-height: 18px;
  background: #FDC959;
  color: #222;
}

.touch-pricing-value {
  display: flex;
  gap: 30px;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  padding: 0 30px;
  box-sizing: border-box;
  font-size: 24px;
  font-weight: 600;
  line-height: 45.81px;
}
.touch-pricing-value .pricing-level {
  display: flex;
  align-items: center;
  gap: 10px;
}
.touch-pricing-value .pricing-level .pricing-level-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(55deg, #FE59FD 6%, #F202B0 27%, #5151FF 49%, #0E5BF2 71%, #1FCEEC 93%);
}
.touch-pricing-value .pricing-level .pricing-level-text {
  font-weight: 600;
}
.touch-pricing-value .pricing-price .pricing-price-amount {
  font-size: 32px;
  font-weight: bold;
  line-height: 60px;
}
.touch-pricing-value .pricing-price .pricing-price-period {
  font-size: 16px;
  font-weight: bold;
  line-height: 60px;
}

.touch-pricing-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
.touch-pricing-content .pricing-features {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.touch-pricing-content .pricing-features .feature-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 16px;
  line-height: 24px;
  color: #333;
}
.touch-pricing-content .pricing-features .feature-item .feature-bullet {
  color: #6254FE;
  font-weight: bold;
  flex-shrink: 0;
}

.get-pro-btn {
  width: 100%;
  padding: 16px;
  box-sizing: border-box;
  margin-top: 10px;
  border: none;
  border-radius: 30px;
  background: linear-gradient(81deg, #FE59FD 0%, #F202B0 24%, #5151FF 50%, #0E5BF2 74%, #1FCEEC 99%);
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
}
.get-pro-btn:active {
  background: linear-gradient(81deg, #FE59FD 0%, #F202B0 24%, #5151FF 50%, #0E5BF2 74%, #1FCEEC 99%);
  transform: scale(0.98);
}
.get-pro-btn:disabled {
  opacity: 0.5;
  color: #999;
  cursor: not-allowed;
}
@media (hover: hover) {
  .get-pro-btn:hover:not(:disabled) {
    opacity: 0.8;
  }
}.buy-credits-modal .ant-modal-content {
  padding: 0;
  box-sizing: border-box;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: 0 28px 76px rgba(15, 23, 42, 0.28);
}
.buy-credits-modal .ant-modal-close {
  top: 24px;
  right: 24px;
  color: #a1aabd;
}
@media (hover: hover) {
  .buy-credits-modal .ant-modal-close:hover {
    color: #6b7280;
  }
}
.buy-credits-modal .buy-credits-content {
  padding: 56px 42px 42px;
  box-sizing: border-box;
  background: #fff;
  text-align: center;
}
.buy-credits-modal .buy-credits-header {
  margin-bottom: 38px;
}
.buy-credits-modal .buy-credits-title {
  color: #111827;
  font-size: 30px;
  line-height: 38px;
  font-weight: 800;
}
.buy-credits-modal .buy-credits-subtitle {
  margin-top: 12px;
  color: #8b95a8;
  font-size: 17px;
  line-height: 24px;
  font-weight: 600;
}
.buy-credits-modal .buy-credits-package {
  position: relative;
  padding: 46px 42px 36px;
  box-sizing: border-box;
  border: 2px solid transparent;
  border-radius: 28px;
  background: #f8faff;
  overflow: visible;
  background-image: linear-gradient(#f8faff, #f8faff), linear-gradient(90deg, #fe59fd 0%, #f202b0 25%, #5151ff 50%, #0e5bf2 75%, #1fceec 100%);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  background-size: 100% 100%, 100% 100%;
}
.buy-credits-modal .buy-credits-badge {
  position: absolute;
  top: -16px;
  right: 28px;
  min-width: 128px;
  height: 32px;
  padding: 0 16px;
  box-sizing: border-box;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: linear-gradient(65deg, #7d5dff 0%, #5c3bee 45%, #4f7dff 100%);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  line-height: 16px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  box-shadow: 0 8px 18px rgba(79, 58, 216, 0.26);
}
.buy-credits-modal .buy-credits-points {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
}
.buy-credits-modal .buy-credits-points span {
  color: #111827;
  font-size: 66px;
  line-height: 74px;
  font-weight: 900;
  letter-spacing: 0;
}
.buy-credits-modal .buy-credits-points em {
  color: #9aa3b5;
  font-size: 22px;
  line-height: 28px;
  font-style: normal;
  font-weight: 800;
}
.buy-credits-modal .buy-credits-package-name {
  margin-top: 12px;
  color: #7d879a;
  font-size: 20px;
  line-height: 28px;
  font-weight: 700;
}
.buy-credits-modal .buy-credits-price {
  margin-top: 38px;
  background: linear-gradient(55deg, #FE59FD 6%, #F202B0 27%, #5151FF 49%, #0E5BF2 71%, #1FCEEC 93%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 42px;
  line-height: 52px;
  font-weight: 900;
  letter-spacing: 0;
}
.buy-credits-modal .buy-credits-pay-btn {
  width: 100%;
  height: 58px;
  margin-top: 40px;
  border: none;
  border-radius: 18px;
  background: linear-gradient(65deg, #FE59FD 3%, #F202B0 26%, #5151FF 49%, #0E5BF2 72%, #1FCEEC 96%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  line-height: 26px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
}
@media (hover: hover) {
  .buy-credits-modal .buy-credits-pay-btn:hover {
    background: linear-gradient(65deg, #ff72fe 3%, #ff29c2 26%, #6b6bff 49%, #2a71ff 72%, #40d8f2 96%);
    box-shadow: 0 14px 28px rgba(92, 59, 238, 0.22);
    transform: translateY(-1px);
  }
}
.buy-credits-modal .buy-credits-pay-btn:active {
  transform: translateY(0);
  box-shadow: none;
}
.buy-credits-modal .buy-credits-pay-btn:disabled {
  cursor: default;
  opacity: 0.72;
  transform: none;
  box-shadow: none;
}
.buy-credits-modal .buy-credits-footer {
  margin-top: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  font-size: 14px;
  line-height: 20px;
  font-weight: 700;
}
.buy-credits-modal .buy-credits-footer span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
}
.buy-credits-modal .buy-credits-footer span .anticon {
  font-size: 15px;
}
.buy-credits-modal .buy-credits-footer span:nth-of-type(1) .anticon {
  color: #f202b0;
}
.buy-credits-modal .buy-credits-footer span:nth-of-type(2) .anticon {
  color: #1fceec;
}
.buy-credits-modal .buy-credits-footer i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: linear-gradient(65deg, #FE59FD 3%, #0E5BF2 72%, #1FCEEC 96%);
}

@media screen and (max-width: 640px) {
  .buy-credits-modal {
    width: calc(100vw - 24px) !important;
  }
  .buy-credits-modal .buy-credits-content {
    padding: 48px 20px 32px;
    box-sizing: border-box;
  }
  .buy-credits-modal .buy-credits-title {
    font-size: 26px;
    line-height: 34px;
  }
  .buy-credits-modal .buy-credits-subtitle {
    font-size: 15px;
    line-height: 22px;
  }
  .buy-credits-modal .buy-credits-package {
    padding: 42px 22px 28px;
    box-sizing: border-box;
    border-radius: 22px;
  }
  .buy-credits-modal .buy-credits-badge {
    right: 20px;
  }
  .buy-credits-modal .buy-credits-points span {
    font-size: 54px;
    line-height: 62px;
  }
  .buy-credits-modal .buy-credits-pay-btn {
    height: 52px;
    margin-top: 32px;
  }
  .buy-credits-modal .buy-credits-footer {
    gap: 12px;
    font-size: 12px;
  }
}.global-dialog-modal .ant-modal-content {
  border-radius: 20px;
  padding: 20px;
  box-sizing: border-box;
}
.global-dialog-modal .ant-modal-close {
  top: 15px;
  right: 10px;
}
.global-dialog-modal .ant-modal-title {
  font-weight: 700;
  font-size: 20px;
  line-height: 28px;
}
.global-dialog-modal .ant-modal-header {
  margin-bottom: 15px;
}
.global-dialog-modal .ant-modal-body {
  padding: 0;
  box-sizing: border-box;
}
.global-dialog-modal .ant-modal-footer {
  margin-top: 0;
}
.global-dialog-modal .global-dialog-content {
  min-height: 135px;
  font-size: 14px;
  line-height: 20px;
}
.global-dialog-modal .global-dialog-content .dialog-content-title {
  font-weight: bold;
  margin-bottom: 5px;
  font-size: 16px;
  line-height: 24px;
}
.global-dialog-modal .global-dialog-content .dialog-content-desc {
  font-size: 14px;
  line-height: 20px;
}
.global-dialog-modal .global-dialog-footer-wrap {
  display: flex;
  gap: 10px;
}
.global-dialog-modal .global-dialog-footer {
  flex: 1;
  padding: 10px;
  box-sizing: border-box;
  text-align: center;
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(83deg, #fe59fd 0%, #f202b0 24%, #5151ff 50%, #0e5bf2 74%, #1fceec 99%);
  font-size: 16px;
  font-weight: bold;
  line-height: 24px;
  cursor: pointer;
}
@media (hover: hover) {
  .global-dialog-modal .global-dialog-footer:hover {
    opacity: 0.8;
  }
}
.global-dialog-modal .global-dialog-footer.secondary {
  color: #526079;
  border: 1px solid #d4dce9;
  background: #f7f9fc;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.55);
}
@media (hover: hover) {
  .global-dialog-modal .global-dialog-footer.secondary:hover {
    opacity: 1;
    color: #33405a;
    border-color: #c2cddd;
    background: #eef3fa;
  }
}
.global-dialog-modal .global-dialog-footer.secondary:active {
  background: #e7edf7;
}

@media screen and (max-width: 750px) {
  .global-dialog-modal .ant-modal-content {
    padding: 25px;
    box-sizing: border-box;
  }
  .global-dialog-modal .ant-modal-title {
    font-size: 16px;
    line-height: 24px;
  }
  .global-dialog-modal .global-dialog-content {
    min-height: 80px;
  }
  .global-dialog-modal .global-dialog-content .dialog-content-title {
    font-size: 14px;
    line-height: 20px;
  }
  .global-dialog-modal .global-dialog-content .dialog-content-desc {
    font-size: 14px;
    line-height: 20px;
  }
  .global-dialog-modal .global-dialog-footer-wrap {
    margin-top: 10px;
  }
}.sx-login-overlay {
  touch-action: none;
}

.sx-login-overlay .sx-login-dialog {
  max-height: none;
  overflow-y: visible;
}