/* 基础变量（源自 Figma 提取的色值与阴影） */
:root {
  --bg-gradient: linear-gradient(180deg, rgb(223, 237, 253) 0%, rgba(241, 248, 255, 1) 100%);
  --header-gradient: linear-gradient(23deg, rgba(42, 56, 113, 1) 0%, rgba(42, 123, 239, 1) 100%);
  --header-sub-gradient: linear-gradient(23deg, rgba(30, 60, 125, 1) 0%, rgba(32, 110, 215, 1) 100%);
  --primary-gradient: linear-gradient(204deg, rgba(174, 217, 255, 1) 0%, rgba(97, 172, 239, 1) 100%);
  --card-shadow: 0px 4px 29.5px rgba(84, 155, 255, 0.12);
  --soft-shadow: 0px 4px 12px rgba(219, 235, 255, 0.25);
  --list-bg: #DBEBFF;
  --white: #FFFFFF;
  --text-dark: #303133;
  --text-muted: #5c6b82;
  --blue-600: #2256A6;
  --radius-8: 8px;
  --radius-16: 16px;
  --radius-32: 32px;
  --radius-48: 48px;
  --container-pc-width: 1200px;
  /* Figma PC 节点：容器宽 1200 */
  --container-pc-margin: 120px;
  /* Figma PC 节点：左右边距 x=120 */
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  height: 100vh;
  overflow: hidden;
}

body {

  overflow-y: scroll;
  margin: 0;
  font-family: 'PingFang SC', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Helvetica, Arial, 'Microsoft YaHei', sans-serif;
  color: var(--text-dark);
  background: var(--bg-gradient);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.showClass {
  display: block;
}

.hideClass {
  display: none;
}

.bg-gradient {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.monospace {
  font-family: ui-monospace, Menlo, Monaco, Consolas, 'Liberation Mono', monospace;
}



.car {
  width: 100%;
  height: auto;
}

.qr-box {
  display: grid;
  grid-template-rows: auto auto;
  gap: 8px;
  align-items: center;
  justify-items: center;
}

.qr {
  width: 140px;
  height: 140px;
  object-fit: contain;
}

.qr-title {
  font-weight: 700;
  text-align: center;
}

.qr-sub {
  font-size: 12px;
  color: #657089;
  text-align: center;
}

/* 通用区块 */
.section {
  width: var(--container-pc-width);
  margin-left: var(--container-pc-margin);
  margin-right: var(--container-pc-margin);
  margin-top: 24px;
  margin-bottom: 24px;
}

.section-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.section-icon img {
  width: 40px;
  height: 40px;
}

.section-title {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
  margin: 0;
}

/* Figma: 20px / 1.4 */

.cards {
  display: grid;
  gap: 10px;
}

.grid-1 {
  grid-template-columns: 1fr;
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 300px);
}

/* Figma List 宽 300 */
.grid-5 {
  grid-template-columns: repeat(5, 1fr);
}

.list-card {
  background: var(--white);
  border-radius: var(--radius-16);
  box-shadow: var(--card-shadow);
  padding: 16px;
  min-height: 96px;
  /* 统一卡片高度，贴近 Figma */
}

.list-title {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.list-value {
  font-size: 16px;
  font-weight: 700;
}

/* CTA */
.cta-view-all {
  width: var(--container-pc-width);
  margin-left: var(--container-pc-margin);
  margin-right: var(--container-pc-margin);
  margin-top: 12px;
  margin-bottom: 48px;
  display: flex;
  justify-content: flex-end;
}

.view-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0;
  border-radius: var(--radius-16);
  padding: 14px 18px;
  background: linear-gradient(193deg, rgba(255, 255, 255, 1) 0%, rgba(102, 184, 255, 0.64) 100%);
  color: var(--blue-600);
  font-weight: 600;
  box-shadow: var(--soft-shadow);
  cursor: pointer;
}

.view-all img {
  width: 20px;
  height: 20px;
}

/* 顶部导航 */
.topbar {
  position: relative;
  background: var(--header-gradient);
  box-shadow: var(--card-shadow);
  min-height: 112px;
  /* 贴近截图，上栏约 72~80 + 下栏约 32 */
}

.topbar-inner {
  max-width: 1344px;
  /* Figma: 宽 1344，左右 48px */
  margin: 0 auto;
  padding: 12px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* 站点品牌（替换原品牌 logo 列） */
.site-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
}

.site-brand .brand-logo {
  width: auto;
  height: 42px;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, .15));
}

.site-brand .brand-cn {
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
}

.site-brand .brand-en {
  font-size: 12px;
  opacity: .8;
  line-height: 1;
}

.tabs {
  display: flex;
  gap: 18px;
}


/* 贴合截图：两菜单间距更大 */
.tabs .tab {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 6px 0;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  cursor: pointer;
  font-size: 18px;
}

.tabs .tab.active {
  color: #fff;
  text-shadow: 0 0 1px rgba(255, 255, 255, 0.6);
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 8px;
}

.lang {
  appearance: none;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
  padding: 6px 8px;
  border-radius: 49.5px;
  cursor: pointer;
}

.lang.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.35);
}

.lang-divider {
  width: 1px;
  height: 16px;
  background: rgba(255, 255, 255, 0.5);
}

/* 顶部子栏（按截图：企业列表 + 右侧文本） */
.topbar-sub {
  background: var(--header-sub-gradient);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 5px;
}

.topbar-sub .sub-inner {
  max-width: 1344px;
  margin: 0 auto;
  padding: 8px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
}

.sub-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.sub-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  opacity: .95;
}

.sub-item img.corp-logo {
  height: 20px;
  width: auto;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, .15));
}

.sub-sep {
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.35);
}

.sub-right {
  font-size: 14px;
  opacity: .9;
}

/* 公示信息 */
#content {
  width: 1200px;
  margin: 0 auto;
}

.top-panel {
  width: 100%;
  height: max-content;
  padding: 18px;
  margin: 0 auto;
  display: flex;
  margin: 20px 0px;
  border-radius: 15px;
  background: linear-gradient(267.05deg, #AED9FF 35.64%, #61ACEF 96.75%);
  position: relative;
  gap: 20px;
}

.top-list {
  display: flex;
  gap: 15px;
  flex-direction: column;
}

.list-line {
  display: flex;
  background: #DDEEFF;
  border-radius: 20px;
  padding: 8px 20px;
  box-sizing: border-box;
  align-items: center;
  gap: 10px;
  width: max-content;
  padding-right: 50px;
}

.line-icon {
  display: flex;
  align-items: center;
}

.line-icon img {
  width: 20px;
}

.line-text {
  display: flex;
  align-items: center;
}

.line-label {
  font-size: 14px;
  width: 130px;
}

.line-value {
  font-size: 14px;
  color: #005E78;
  font-weight: bold;
}

.panel-icon {
  position: absolute;
  right: 10px;
  top: 10px;
}

.top-right {
  display: flex;
  flex: 1;
}

.top-right-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 40px;
}

.top-right-box {
  display: flex;
  gap: 10px;
}

.top-right-label {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 5px;
}

.top-right-value {
  font-size: 14px;
  color: #005E78;
}

.top-right-value a {
  color: #005E78;
}

.bottom-content {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 20px;
}

.bottom-content-box {
  box-sizing: border-box;
  padding: 15px;
  background-color: #FFFFFF;
  border-radius: 15px;
  padding-left: 20px;
}

.bottom-content-box1,
.bottom-content-box2,
.bottom-content-box3 {
  height: 250px;
  overflow: hidden;
  position: relative;
}

.bottom-content-box4,
.bottom-content-box5,
.bottom-content-box6 {
  height: 130px;
  overflow: hidden;
  position: relative;
}

.content-icon {
  position: absolute;
  right: 10px;
  top: 10px;
}

.bottom-content-box1 .content-title {
  font-size: 20px;
  font-weight: bold;
  height: 30px;
}

.bottom-content-box1 .content-list {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  align-content: center;
  height: calc(100% - 30px);

}

.bottom-content-box1 .content-list .content-list-box {
  width: calc(50% - 13px);
  display: flex;
  gap: 10px;
}

.bottom-content-box1 .content-list .content-list-box .list-box-li .list-box-li-label {
  font-size: 14px;
  margin-bottom: 5px;
}

.bottom-content-box1 .content-list .content-list-box .list-box-li .list-box-li-value {
  font-size: 24px;
  color: #005E78;
  font-weight: bold;
}

.bottom-content-box2 {
  display: flex;
}

.bottom-content-box2 .content-img {
  width: 60%;
  display: flex;
  align-items: center;
}

.bottom-content-box2 .content-img img {
  width: 100%;
}

.bottom-content-box2 .content-box {
  flex: 1;
  box-shadow: 0px 3px 6px 0px #005E780D;
  border-radius: 10px;
}

.bottom-content-box2 .content-box div:nth-last-child(3) {
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  width: 100%;
}

.bottom-content-box2 .content-box div:nth-last-child(2) img {
  width: 100%;
}

.bottom-content-box2 .content-box div:nth-last-child(1) {
  font-size: 12px;
  color: #8C8C8C;
  text-align: center;
}

.bottom-content-box3 .content-list .content-list-box {
  width: calc(30% - 13px);
  display: flex;
  gap: 10px;
}

.bottom-content-box4 .content-list .content-list-box {
  width: calc(100% - 30px);
  display: flex;
  gap: 10px;
}

.bottom-content-box6 {
  position: relative;
  cursor: pointer;
}

.bottom-content-box6 .content-title {
  position: absolute;
  font-size: 20px;
  font-weight: bold;
  color: #2256A6;
  left: 20px;
  top: 30px;
}

.bottom-content-box6 .content-img {
  position: absolute;
  right: 15px;
  bottom: 20px;
}

.bottom-content-box6 .content-img img {
  width: 30px;
}

/* 全部信息 */
#fullDetail {
  width: 1200px;
  margin: 0 auto;
}

.fullDetailTabsClass {
  padding-top: 50px;
  padding-bottom: 50px;
}

.fullDetailTabsBoxClass {
  display: flex;
  width: 86%;
  padding: 5px;
  border-radius: 25px;
  height: 50px;
  margin: 0 auto;
  background-color: #FFFFFF;
  justify-content: space-between;
  position: relative;
}

.fullDetailTabsBoxClass .tabClass {
  text-align: center;
  width: inherit;
  text-align: center;
  height: 40px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.fullDetailTabsBoxClass .tabClass a {
  color: #000000;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

.fullDetailTabsBoxClass .tabClass a:hover {
  color: #549BFF;
}

.fullDetailTabsBoxClass .tabActiveBgClass {
  width: 110px;
  height: 40px;
  border-radius: 20px;
  top: 5px;
  left: 5px;
  z-index: 0;
  position: absolute;
  transition: all 0.3s ease-in-out;
  background-color: #549BFF;
}

.fullDetailTabsBoxClass .tabActiveClass a {
  color: #FFF;
}

.fullDetailTabsBoxClass .tabActiveClass a:hover {
  color: #FFF !important;
}

.fullDetailContentClass {
  padding-bottom: 30px;
}

.contentListClass {
  margin-bottom: 40px;
  margin-top: 20px;
}

.contentListClass .listTitleClass {
  display: flex;
  justify-content: space-between;
  padding-bottom: 20px;
}

.contentListClass .listTitleLabelClass {
  font-size: 24px;
  font-weight: bold;
}

.contentListClass .listTitleValueClass {
  font-size: 12px;
  color: #00000099;
  display: flex;
  height: inherit;
  align-items: flex-end;
}

.contentListClass .listContentBoxClass {
  background-color: #FFFFFF;
  border-radius: 20px;
  padding: 30px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  /* grid-template-rows: repeat(2, 1fr); */
  gap: 20px 40px;
  position: relative;
  margin-bottom: 20px;
}

.contentListClass .listContentBoxClass .listContentItemClass {
  display: flex;
  gap: 10px;
  align-items: center;
  box-sizing: border-box;
  border-bottom: 1px solid #005E7833;
  padding-bottom: 20px;
}

.contentListClass .listContentBoxClass .listContentItemTitleClass {
  border-bottom: none;
  color: #000000;
  font-size: 20px;
  font-weight: 600;
  position: relative;
}

.contentListClass .listContentBoxClass .listContentItemTitleClass span {
  position: absolute;
  width: 242px;
  border-bottom-right-radius: 26px;
  border-bottom-left-radius: 24px;
  height: 100%;
  left: -10px;
  top: -6px;
  opacity: 0.1;
  background: linear-gradient(90deg, #549BFF 0%, rgba(121, 177, 255, 0) 100%);
}

.listContentBoxClass .listContentItemImgClass {
  width: 35px;
  height: 35px;
  border-radius: 20px;
  background: #B1E1FF;
  display: flex;
  align-items: center;
  justify-content: center;
}

.listContentBoxClass .listContentItemLabelClass {
  width: 30%;
  font-size: 15px;
  font-weight: 500;
}

.listContentBoxClass .listContentItemValueClass {
  font-size: 17px;
  color: #005E78;
  font-weight: 600;
  width: calc(70% - 110px);
  word-break: break-all;
}

.listContentBoxClass .listContentIconClass {
  position: absolute;
  right: 20px;
  top: 20px;
}

.contentListClass .listContentTableBoxClass {
  background-color: #FFFFFF;
  border-radius: 20px;
  padding: 30px;
  display: grid;
  /* grid-template-columns: repeat(6, 1fr); */
  grid-template-columns: 5% 40% 10% 10% 15% 20%;
  position: relative;
  margin-bottom: 20px;
  font-size: 13px;
}

.listContentTableBoxClass .listTableRowClass {
  border: 1px solid #DCE1ED;
  box-sizing: border-box;
  padding: 8px 10px;
}

.listContentTableBoxClass .borderRadiusLTClass {
  border-radius: 10px 0 0 0;
}

.listContentTableBoxClass .borderRadiusRTClass {
  border-radius: 0 10px 0 0;
}

.listContentTableBoxClass .borderRadiusBRClass {
  border-radius: 0 0 0 10px;
}

.listContentTableBoxClass .borderRadiusBLClass {
  border-radius: 0 0 10px 0;
}

.listContentTableBoxClass .positionTopClass {
  margin-top: -1px;
}

.listContentTableBoxClass .positionLeftClass {
  margin-left: -1px;
}

.listContentTableBoxClass .columnsClass {
  color: #afb1b5;
  font-weight: 500;
}

.listContentTableBoxClass .serialNumberClass {
  text-align: center;
}