:root {
  font-family: system-ui, Avenir, Helvetica, Arial, sans-serif;
  line-height: 1.5;
  font-weight: 400;

  color-scheme: light dark;
  color: rgba(255, 255, 255, 0.87);
  background-color: #242424;

  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  font-weight: 500;
  color: #646cff;
  text-decoration: inherit;
}
a:hover {
  color: #535bf2;
}

body {
  margin: 0;
  display: flex;
  place-items: center;
  min-width: 320px;
  min-height: 100vh;
}

h1 {
  font-size: 3.2em;
  line-height: 1.1;
}

button {
  border-radius: 8px;
  border: 1px solid transparent;
  padding: 0.6em 1.2em;
  font-size: 1em;
  font-weight: 500;
  font-family: inherit;
  background-color: #1a1a1a;
  cursor: pointer;
  transition: border-color 0.25s;
}
button:hover {
  border-color: #646cff;
}
button:focus,
button:focus-visible {
  outline: 4px auto -webkit-focus-ring-color;
}

@media (prefers-color-scheme: light) {
  :root {
    color: #213547;
    background-color: #ffffff;
  }
  a:hover {
    color: #747bff;
  }
  button {
    background-color: #f9f9f9;
  }
}

/* 全局自定义分割线样式 */
.custom-divider {
  border-color: #d9d9d9 !important;
  margin: 20px 0 !important;
}

.custom-divider .ant-divider-inner-text {
  color: #999 !important;
  font-size: 13px !important;
  font-weight: normal !important;
}

.custom-divider.ant-divider-dashed {
  border-top-style: dashed !important;
}

/* 共享表格样式（管理端与分享页通用） */
.tax-table .ant-table-thead > tr > th {
  background-color: #f6f9ff !important;
  color: #999999 !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  padding: 8px !important;
  text-align: center !important;
}

.tax-table .ant-table-tbody > tr > td {
  color: #666666 !important;
  font-size: 14px !important;
  padding: 8px !important;
  text-align: center !important;
  border-bottom: 1px dotted #e8e8e8 !important;
}

.tax-table .total-row td {
  background-color: #b3d3f9 !important;
  color: #333 !important;
  font-weight: bold !important;
  border-bottom: none !important;
}

.tax-table .ant-table-tbody > tr:hover > td {
  background: #fdfdfd !important;
}

.tax-table .ant-table-tbody > tr.total-row:hover > td {
  background-color: #b3d3f9 !important;
}

.tax-table .ant-table-tbody > tr:nth-child(odd):not(.total-row) {
  background-color: #ffffff !important;
}

.tax-table .ant-table-tbody > tr:nth-child(even):not(.total-row) {
  background-color: #f6f9ff !important;
}

/* 自定义 message 提示框样式 */
.ant-message-notice-content {
  background-color: #f0f9eb !important;
  border: 1px solid #e1f3d8 !important;
  border-radius: 4px !important;
  padding: 12px 16px !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08) !important;
  min-width: 350px !important;
  color: #67c23a !important;
  font-size: 16px !important;
}

.ant-message-success .anticon {
  color: #67c23a !important;
  font-size: 16px !important;
}

.ant-message-notice-content .ant-message-custom-content {
  display: flex !important;
  align-items: center !important;
}

.ant-message-notice-content .ant-message-custom-content > span:last-child {
  color: #67c23a !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  margin-left: 8px !important;
}
/* 侧边栏样式 */
.admin-sider {
  box-shadow: 2px 0 8px rgba(0, 0, 0, 0.15);
}

.admin-sider .ant-layout-sider-trigger {
  background: #002140;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.logo-container {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(135deg, #1890ff 0%, #096dd9 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s;
}

.logo-icon {
  font-size: 32px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-text {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
}

.admin-menu {
  margin-top: 16px;
}

.admin-menu .ant-menu-item {
  margin: 4px 8px;
  border-radius: 8px;
  height: 48px;
  line-height: 48px;
  font-weight: 500;
}

.admin-menu .ant-menu-item-selected {
  background: linear-gradient(90deg, #1890ff 0%, #40a9ff 100%) !important;
  box-shadow: 0 2px 8px rgba(24, 144, 255, 0.3);
}

.admin-menu .ant-menu-item:hover {
  background: rgba(24, 144, 255, 0.1);
}

.admin-menu .ant-menu-item .anticon {
  font-size: 18px;
}

/* 顶部导航栏样式 */
.admin-header {
  padding: 0;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  z-index: 10;
  position: sticky;
  top: 0;
}

.header-content {
  height: 100%;
  padding: 0 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-title {
  margin: 0;
  font-size: 22px;
  font-weight: 600;
  color: #1890ff;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 24px;
}

.welcome-text {
  color: #8c8c8c;
  font-size: 14px;
}

/* 内容区域样式 */
.admin-content {
  margin: 24px;
  min-height: calc(100vh - 112px);
}

.content-wrapper {
  padding: 24px;
  background: transparent;
  border-radius: 12px;
  min-height: 100%;
}

/* 响应式设计 */
@media (max-width: 768px) {
  .admin-content {
    margin: 16px;
  }

  .content-wrapper {
    padding: 16px;
  }

  .header-content {
    padding: 0 16px;
  }

  .header-title {
    font-size: 18px;
  }
}
.enterprise-list-container {
  padding: 0;
}

.enterprise-list-card {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  overflow: hidden;
}

.list-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid #f0f0f0;
}

.header-left {
  flex: 1;
}

.page-title {
  margin: 0;
  font-size: 24px;
  font-weight: 600;
  color: #262626;
  display: flex;
  align-items: center;
  gap: 12px;
}

.title-icon {
  color: #1890ff;
  font-size: 28px;
}

.page-subtitle {
  margin: 8px 0 0 40px;
  color: #8c8c8c;
  font-size: 14px;
}

.add-button {
  height: 42px;
  padding: 0 32px;
  border-radius: 8px;
  font-weight: 500;
  box-shadow: 0 2px 8px rgba(24, 144, 255, 0.3);
  transition: all 0.3s ease;
}

.add-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(24, 144, 255, 0.4);
}

.enterprise-table {
  margin-top: 24px;
}

.enterprise-table .ant-table {
  border-radius: 8px;
}

.enterprise-table .ant-table-thead > tr > th {
  background: #f6f9ff;
  font-weight: 600;
  color: #262626;
  border-bottom: 2px solid #f0f0f0;
  padding: 10px;
}

.enterprise-table .ant-table-tbody > tr {
  transition: all 0.3s ease;
}

.enterprise-table .ant-table-tbody > tr:hover {
  background: #f5f9ff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.enterprise-table .ant-table-tbody > tr > td {
  border-bottom: 1px solid #f5f5f5;
  padding: 10px;
}

.enterprise-table .ant-tag {
  font-weight: 500;
  border-radius: 4px;
  padding: 2px 10px;
}

.enterprise-table .ant-btn {
  border-radius: 6px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.enterprise-table .ant-btn-primary {
  box-shadow: 0 2px 4px rgba(24, 144, 255, 0.2);
}

.enterprise-table .ant-btn-primary:hover {
  box-shadow: 0 4px 8px rgba(24, 144, 255, 0.3);
  transform: translateY(-1px);
}

.enterprise-table .ant-btn-default:hover {
  border-color: #1890ff;
  color: #1890ff;
}

.enterprise-table .ant-btn-dangerous:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(255, 77, 79, 0.3);
}

.enterprise-table .ant-pagination {
  margin-top: 24px;
}

.modal-title {
  display: flex;
  align-items: center;
  font-size: 18px;
  font-weight: 600;
  color: #262626;
}

.ant-modal-header {
  border-bottom: 1px solid #f0f0f0;
  padding: 20px 24px;
}

.ant-modal-body {
  padding: 24px;
}

.ant-modal-footer {
  border-top: 1px solid #f0f0f0;
  padding: 16px 24px;
}

.ant-modal-footer .ant-btn {
  height: 40px;
  padding: 0 24px;
  border-radius: 8px;
  font-weight: 500;
}

/* 响应式设计 */
@media (max-width: 768px) {
  .list-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .add-button {
    width: 100%;
  }

  .page-subtitle {
    margin-left: 40px;
  }
}
.enterprise-detail-container {
  padding: 0;
}

.detail-header-card {
  margin-bottom: 24px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.detail-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 24px;
  flex: 1;
}

.back-button {
  height: 40px;
  padding: 0 20px;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.back-button:hover {
  border-color: #1890ff;
  color: #1890ff;
  transform: translateX(-4px);
}

.enterprise-info {
  display: flex;
  align-items: center;
  gap: 16px;
}

.enterprise-name {
  margin: 0;
  font-size: 28px;
  font-weight: 600;
  color: #262626;
  display: flex;
  align-items: center;
  gap: 12px;
}

.name-icon {
  color: #1890ff;
  font-size: 32px;
}

.enterprise-tag {
  font-size: 14px;
  padding: 4px 12px;
  border-radius: 6px;
}

.share-button {
  height: 44px;
  padding: 0 32px;
  border-radius: 8px;
  font-weight: 500;
  box-shadow: 0 2px 8px rgba(24, 144, 255, 0.3);
  transition: all 0.3s ease;
}

.share-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(24, 144, 255, 0.4);
}

.detail-tabs-card {
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  min-height: 600px;
}

.detail-tabs .ant-tabs-nav {
  padding: 0 24px;
  margin-bottom: 24px;
}

.detail-tabs .ant-tabs-tab {
  padding: 16px 24px;
  font-size: 16px;
  font-weight: 500;
  border-radius: 8px 8px 0 0;
  transition: all 0.3s ease;
}

.detail-tabs .ant-tabs-tab:hover {
  background: rgba(24, 144, 255, 0.05);
}

.detail-tabs .ant-tabs-tab-active {
  background: linear-gradient(to bottom, rgba(24, 144, 255, 0.1), transparent);
}

.tab-label {
  display: flex;
  align-items: center;
  gap: 8px;
}

.tab-label .anticon {
  font-size: 18px;
}

.detail-tabs .ant-tabs-ink-bar {
  height: 3px;
  border-radius: 3px 3px 0 0;
}

.detail-tabs .ant-tabs-content {
  padding: 0 24px 24px;
}

/* 分享模态框样式 */
.share-modal-content {
  padding: 8px 0;
  display: flex;
  flex-direction: column;
}

.qrcode-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 8px;
  background: #fff;
  padding: 20px;
  border-radius: 12px;
}

.qrcode-company-name {
  margin-top: 12px;
  font-size: 16px;
  font-weight: 600;
  color: #333;
  text-align: center;
}

.share-link-input {
  border-radius: 8px;
  font-size: 14px;
  resize: none;
}

.share-link-input:focus {
  border-color: #1890ff;
  box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.1);
}

.share-tip {
  margin: 16px 0 0;
  padding: 12px 16px;
  background: #f0f9ff;
  border-left: 3px solid #1890ff;
  border-radius: 4px;
  color: #595959;
  font-size: 14px;
  display: flex;
  align-items: center;
}

/* 响应式设计 */
@media (max-width: 768px) {
  .detail-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .header-left {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

  .enterprise-name {
    font-size: 22px;
  }

  .share-button {
    width: 100%;
  }

  .detail-tabs .ant-tabs-nav {
    padding: 0 12px;
  }

  .detail-tabs .ant-tabs-tab {
    padding: 12px 16px;
    font-size: 14px;
  }

  .detail-tabs .ant-tabs-content {
    padding: 0 12px 12px;
  }
}
.share-view {
  min-height: 100vh;
  background: url('/RR.ceabd33.png') no-repeat center -50px;
  background-size: 100% 400px;
  background-color: #ffffff;
  font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
}

/* 顶部黑色渐变遮罩 */

.share-top-bar {
  height: 150px;
  padding: 40px 0 30px 60px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  /* background-color: #00113c;*/
}

.top-bar-content {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
}

.forward-btn {
  font-size: 16px !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  background-color: #00113c !important;
  border: 1px solid #ffffff !important;
  border-radius: 18px 0 0 18px !important;
  padding: 0 24px !important;
  height: 40px !important;
  transition: all 0.3s ease !important;
  outline: none !important;
  box-shadow: none !important;

}

.forward-btn:focus {
  outline: none !important;
  box-shadow: none !important;
  border: 1.5px solid #ffffff !important;
  border-right: none !important;
}

.forward-btn:hover {
  background-color: rgba(255, 255, 255, 0.1) !important;
}

/* 容器 */
.share-container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 0px 0px;
}

/* 企业名称悬浮块 */
.company-header-box {
  background: #fff;
  height: 60px;
  padding: 12px 0 0 0;
  margin-left: 5%;
  margin-right: 5%;
  text-align: center;
  margin-bottom: 0;
  position: relative;
  z-index: 2;
  border-radius: 10px 10px 0 0;
}

.company-main-title {
  margin: 0;
  font-size: 28px;
  color: #333333;
  font-weight: 700;
  letter-spacing: 1px;
}

/* 内容主卡片 */
.share-content-card {
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  padding: 0 40px 80px;
  min-height: 900px;
}

/* Tab 标签页还原 */
.custom-share-tabs .ant-tabs-nav {
  margin-bottom: 0 !important;
  border-bottom: none !important;
}

.custom-share-tabs .ant-tabs-nav::before {
  display: none !important;
}

.custom-share-tabs .ant-tabs-nav-list {
  width: 100% !important;
  display: flex !important;
}

.custom-share-tabs .ant-tabs-tab {
  flex: 1 !important;
  padding: 15px 0 !important;
  margin: 0 !important;
  font-size: 21px !important;
  color: #626571 !important;
  font-weight: 700 !important;
  transition: all 0.3s ease !important;
  display: flex !important;
  justify-content: center !important;
}

.custom-share-tabs .ant-tabs-tab-active .ant-tabs-tab-btn {
  color: #000000 !important;
  font-weight: 700 !important;
}

.custom-share-tabs .ant-tabs-ink-bar {
  background: #ffc0cb !important;
  height: 3px !important;
  bottom: 10px !important;
}

/* 网格布局 */
.data-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 80px;
}

.data-column {
  display: flex;
  flex-direction: column;
  color: rgb(169, 162, 168) !important;
}

/* 上下堆叠的数据项样式 */
.data-stack-item {
  margin-bottom: 10px;
}

.data-stack-label {
  color: rgb(169, 162, 168) !important;
  font-size: 14px !important;
  margin-bottom: 1px;
}

.data-stack-value {
  color: #000 !important;
  font-size: 13.5px !important;
  font-weight: 800;
}

/* 所有 Tab 内容容器统一样式 */
.tab-content-container {
  border-width: 1px !important;
  border-style: solid !important;
  border-color: rgb(239, 240, 244) !important;
  border-image: initial !important;
  border-bottom: none !important;
  min-height: calc(100vh - 300px) !important;
  padding: 10px !important;
  padding-left: 5px !important;
}

/* 供应商信息容器：移除边框 */
.supplier-info-view {
  border: none !important;
}

/* 基本信息视图容器 */
.basic-info-view {
}

/* 数据项排版还原 */
.custom-descriptions {
  padding-left: 5px !important;
}

.custom-descriptions .ant-descriptions-item {
  padding-bottom: 0 !important;
}

.custom-descriptions .ant-descriptions-item-label {
  width: 160px !important;
  min-width: 160px !important;
  max-width: 200px !important;
  flex: none !important;
  font-size: 12.6px !important;
  color: #626571 !important;
  font-weight: 400 !important;
  padding: 18px 0 !important;
  padding-right: 0 !important;
  white-space: nowrap !important;
}

.custom-descriptions .ant-descriptions-item-label::after {
  content: none !important;
}

.custom-descriptions .ant-descriptions-item-content {
  width: auto !important;
  min-width: auto !important;
  max-width: none !important;
  flex: 1 !important;
  font-size: 12.6px !important;
  color: #626571 !important;
  font-weight: 400 !important;
  padding-top: 18px !important;
  padding-bottom: 18px !important;
  padding-right: 0 !important;
  padding-left: 0 !important;
  margin-left: 40px !important;
  display: flex !important;
  align-items: center !important;
}

.value-text {
  color: #666666;
}

.copy-fr-link {
  color: blue !important;
  font-size: 12.6px !important;
  cursor: pointer;
  font-style: italic !important;
  transform: skewX(-13deg) !important;
  display: inline-block !important;
  font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Helvetica, 'Segoe UI', Arial, Roboto, 'PingFang SC', miui, 'Hiragino Sans GB', 'Microsoft Yahei', sans-serif !important;
}

/* .copy-fr-link:hover {
  color: blue !important;
  font-size: 12.6px !important;
  font-style: italic;
} */

/* 标题带图标 */
.section-title.with-icon {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 30px;
  margin-bottom: 15px;
  font-size: 18px !important;
  color: rgb(33, 32, 32) !important;
  font-weight: 700 !important;
}

.section-title.with-icon img,
.section-title.with-icon svg {
  margin-left: 0.5rem;
}

.title-icon-blue {
  background-color: #1890ff;
  color: #ffffff;
  padding: 4px;
  border-radius: 4px;
  font-size: 14px;
}

/* 基本信息表格样式（股东明细、法人/股东变更） */
.basic-info-table .ant-table-thead>tr>th {
  background-color: #f6f9ff !important;
  color: #626571 !important;
  font-weight: bold !important;
  vertical-align: inherit !important;
  padding: 8px !important;
}

/* 表格内容字体颜色 */
.basic-info-table .ant-table-tbody>tr>td {
  color: #626571 !important;
  padding: 8px !important;
  border-bottom: none !important;
}

/* 第一行（奇数行）白色 */
.basic-info-table .ant-table-tbody>tr:nth-child(odd) {
  background-color: #ffffff !important;
}

/* 第二行（偶数行）浅蓝色 */
.basic-info-table .ant-table-tbody>tr:nth-child(even) {
  background-color: #f6f9ff !important;
}

/* hover 效果保持原有背景色 */
.basic-info-table .ant-table-tbody>tr:hover>td {
  background-color: inherit !important;
}

/* 表格高亮列 */
.highlight-percent {
  color: rgb(255, 185, 78) !important; /* Orange */
  font-weight: 500;
}

.custom-table {
  margin-bottom: 20px;
}

.custom-table .ant-table-thead>tr>th {
  background-color: #f6f9ff !important;
  color: #413e41 !important;
  font-weight: lighter !important;
  font-size: 12.6px !important;
}

/* 数据项样式 */
.custom-table .ant-table-tbody>tr>td {
  padding: 8px 4px !important;
  font-size: 11px !important;
}

/* 金额占比列高亮样式 */
.custom-table .ant-table-tbody>tr>td:nth-child(4) {
  color: rgb(255, 185, 78) !important;
  font-weight: 500 !important;
}

/* 第一行（奇数行）白色 */
.custom-table .ant-table-tbody>tr:nth-child(odd) {
  background-color: #ffffff !important;
}

/* 第二行（偶数行）浅蓝色 */
.custom-table .ant-table-tbody>tr:nth-child(even) {
  background-color: #f6f9ff !important;
}

/* 底部横幅 */
.share-footer-banner {
  margin-top: 40px;
  padding-bottom: 0px;
  text-align: center;
}

.share-footer-banner img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.pc-footer-img {
  max-width: 1200px;
  display: inline-block;
}

.mobile-footer-img {
  display: none;
}

.section-title {
  margin: 10px 0 0 0;
  font-size: 12.6px !important;
  color: rgb(98, 101, 113);
  font-weight: bold;
}

/* 客户图标样式 */
.customer-icon-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  border-radius: 4px;
  margin-right: 3px;
}

.customer-icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

/* 供应商图标样式 */
.supplier-icon-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  border-radius: 4px;
  margin-right: 3px;
}

.supplier-icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

/* 表格样式 */
.ant-table-thead>tr>th {
  background-color: #f6f9ff !important;
  color: #999999 !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  padding: 10px !important;
  border-bottom: 1px solid #f0f0f0 !important;
}

.ant-table-tbody>tr>td {
  color: #666666 !important;
  font-size: 14px !important;
  padding: 10px !important;
  text-align: center !important;
  border-bottom: 1px dotted #808080 !important;
}

.custom-divider {
  border-color: #d9d9d9 !important;
  margin: 5px 0 !important;
}

.custom-divider .ant-divider-inner-text {
  color: #999;
  font-size: 13px;
  font-weight: normal;
}

/* 完税表特殊样式 */
.tax-table .total-row td {
  background-color: #b3d3f9 !important;
  color: #333 !important;
  font-weight: bold !important;
  border-bottom: none !important;
}

.tax-table .ant-table-tbody>tr:hover>td {
  background: inherit !important;
}

/* 全局表格样式（不应用于 basic-info-table、custom-table 和 tax-table） */
.ant-table-tbody>tr.ant-table-row:nth-child(odd):not(.total-row):not(.basic-info-table tr):not(.custom-table tr):not(.tax-table tr) {
  background-color: #f6f9ff !important;
}

.ant-table-tbody>tr.ant-table-row:nth-child(even):not(.total-row):not(.basic-info-table tr):not(.custom-table tr):not(.tax-table tr) {
  background-color: #ffffff !important;
}

.ant-table-tbody>tr:hover>td {
  background: #fdfdfd !important;
}

/* 保持 custom-table 的 hover 效果 */
.custom-table .ant-table-tbody>tr:hover>td {
  background-color: inherit !important;
}

/* 手机端适配 */
@media screen and (max-width: 768px) {
  .share-view {
    background: url('/RR1.5e6d11f.png') no-repeat center -30px;
    background-size: 100% 250px;

  }

  .share-top-bar {
    height: 140px;
    padding: 0px 0 0 20px;
    display: flex;
    align-items: center;
    /*background-color: #00113c !important;*/
  }

  .forward-btn {
    padding: 0 20px !important;
    height: 36px !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    background-color: #00113c !important;
    border: 1px solid #ffffff !important;
    border-radius: 20px 0 0 20px !important;
    outline: none !important;
    box-shadow: none !important;
  }

  .forward-btn:focus {
    outline: none !important;
    box-shadow: none !important;
  }

  .share-container {
    padding: 0;
  }

  .company-header-box {
    height: 60px;
    padding: 12px 0 0 0;
    margin-top: 0px;
    border-radius: 10px 10px 0 0;                                                          
    margin-left: 5%;                                                                       
    margin-right: 5%; 
  }

  .company-main-title {
    font-size: 1.3rem;
  }

  .share-content-card {
    padding: 0 15px 30px !important;
  }

  /* 移动端标签页强制横向铺满 */
  .custom-share-tabs .ant-tabs-nav-list {
    width: 100% !important;
    display: flex !important;
  }

  .custom-share-tabs .ant-tabs-tab {
    padding: 30px 15px 20px 15px !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    text-align: center;
    color: #626571;
    width: 25% !important;
    float: left;
  }

  .custom-share-tabs .ant-tabs-tab-btn {
    text-align: center !important;
    white-space: nowrap !important;
  }

  /* 详情列表适配：左右排版 */
  .share-content-card .custom-descriptions .ant-descriptions-item-label {
    width: 110px !important;
    min-width: 110px !important;
    max-width: 130px !important;
    font-size: 12.6px !important;
    padding: 12px 0 !important;
    color: #626571 !important;
  }

  .share-content-card .custom-descriptions .ant-descriptions-item-content {
    font-size: 12.6px !important;
     color: #626571 !important;
    padding: 12px 0 !important;
    justify-content: flex-start !important;
    text-align: left !important;
      
    flex: 1;
  }

  /* 网格保持双列 */
  .data-grid-2 {
    grid-template-columns: 1fr 1fr !important;
    gap: 0 10px !important;
  }

  .data-stack-item {
    display: block !important;
    padding: 10px 0 !important;
    margin-bottom: 0 !important;
    border-bottom: none !important;
  }

  .data-stack-label {
    margin-bottom: 6px !important;
    color: rgb(169, 162, 168) !important;
    font-size: 13px !important;
  }

  .data-stack-value {
     color: rgb(0, 0, 0) !important;
    font-size: 14px !important;
    font-weight: 400 !important;
  }

  /* 表格横向滚动处理 */
  .ant-table-wrapper {
    overflow-x: auto;
  }

  .ant-table {
    min-width: 320px;
    font-size: 11px !important;
  }

  .ant-table-thead>tr>th,
  .ant-table-tbody>tr>td {
    padding: 6px 4px !important;
    font-size: 11px !important;
  }

  .section-title {
    margin: 10px 0 0 0 !important;
    font-size: 12.6px !important;
    color: rgb(98, 101, 113) !important;
    font-weight: bold !important;
  }

  .share-footer-banner {
    margin-top: 20px;
    padding-bottom: 0px;
  }

  .share-footer-banner img {
    border-radius: 4px;
  }

  .pc-footer-img {
    display: none;
  }

  .mobile-footer-img {
    display: inline-block;
    max-width: 100%;
  }
}#root {
  width: 100%;
  height: 100vh;
  margin: 0;
  padding: 0;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
