/*
 * 算力之光 CPLIGHT — PC 版样式（≥1024px）
 *
 * 数值取自原站桌面端（cplight.com 的 Nuxt 站，组件 40bcff0a / 45b0101c / 20a972fa）。
 * 一处刻意的改动：原站是 `width:1440px` + `min-width:1440px` 的定宽布局，
 * 窗口窄于 1440 就横向滚动。这里改成 `max-width:1440px` 的流式容器，
 * 并在 1320 / 1024 两处让行情区改为堆叠，这样 1024 以上都不会出现横向滚动。
 */

/* 移动 / PC 两套布局的切换 --------------------------------------------- */

.pc-app { display: none; }

@media (min-width: 1024px) {
  .m-app { display: none; }
  .pc-app { display: block; }
  body { background: #fff; }
}

/* 骨架 ----------------------------------------------------------------- */

.new_index {
  background: #fff;
  color: #333;
  font-family: "Microsoft YaHei", "PingFang SC", "Helvetica Neue", Arial, sans-serif;
}

.page_inner {
  width: 100%;
  /* 原站是贴边的 1440px 定宽；这里留 20px 边距，所以外框放宽到 1480，
     使 ≥1480 的视口下内容区正好是原站的 1440px */
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 20px;
}

.new_index button { border: 0; cursor: pointer; font-family: inherit; }
.new_index img { display: block; }

.new_index .solid { color: #fff; background: #ff761a; }
.new_index .outline { color: #ff761a; background: #fff; border: 1px solid #ff761a; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* 头部 ----------------------------------------------------------------- */

.new_index_header_wrap {
  position: sticky;
  z-index: 1000;
  top: 0;
  height: 168px;
}

.site_header {
  position: relative;
  z-index: 1000;
  height: 168px;
  background: #fff;
  box-shadow: none;
  transition: box-shadow .18s ease;
}

.site_header.is_scrolled { box-shadow: 0 2px 10px rgba(0, 0, 0, .04); }

.header_space { display: none; }

.top_user_bar {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 34px;
}

.auth {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #333;
  font-size: 14px;
  font-weight: 500;
}

.auth_divider,
.auth_slash { color: #333; line-height: 20px; }

.auth_link {
  padding: 0;
  border: 0;
  background: transparent;
  color: #333;
  font: inherit;
  cursor: pointer;
}

.auth_link:hover { color: #ff761a; }

.topbar {
  display: flex;
  align-items: center;
  gap: 40px;
  height: 90px;
}

.brand {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 224px;
  text-decoration: none;
  cursor: pointer;
}

.brand img {
  width: 224px;
  height: 64px;
  object-fit: contain;
}

.brand_tagline {
  margin: 2px 0 0;
  color: #afafaf;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  white-space: nowrap;
}

.search {
  flex: 1 1 auto;
  display: flex;
  max-width: 695px;
  height: 61px;
  border: 2px solid #ff761a;
  border-radius: 6px;
  overflow: hidden;
}

.search input {
  flex: 1;
  min-width: 0;
  border: 0;
  padding: 0 24px;
  color: #333;
  font-size: 16px;
  font-family: inherit;
  outline: none;
}

.search button {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 90px;
  width: 90px;
  color: #fff;
  background: #ff761a;
}

.search img {
  width: 26px;
  height: 26px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.header_actions {
  flex: 0 0 auto;
  display: flex;
  gap: 16px;
  justify-content: flex-end;
  margin-left: auto;
}

.header_actions button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 133px;
  height: 37px;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
}

.header_actions img {
  width: 23px;
  height: 23px;
  object-fit: contain;
}

/* 导航 */

.nav {
  display: flex;
  align-items: center;
  gap: 50px;
  height: 44px;
  font-size: 16px;
  font-weight: 700;
}

.nav > a,
.nav .nav_product_link {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 44px;
  color: #333;
  text-decoration: none;
  cursor: pointer;
}

.nav > a:hover,
.nav .nav_product_link:hover { color: #ff761a; }

.nav .active { color: #ff761a; }

.nav .active:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 31px;
  height: 3px;
  background: #ff761a;
}

.nav_product_link { gap: 6px; }

.nav_arrow {
  width: 0;
  height: 0;
  margin-top: 3px;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid;
}

/* 导航下拉（原站是 1320×680 的大分类面板，这里做成紧凑列表） */

.nav_drop { position: relative; }

.nav_panel {
  position: absolute;
  left: -20px;
  top: 44px;
  z-index: 20;
  display: none;
  grid-template-columns: repeat(2, minmax(160px, 1fr));
  gap: 2px 18px;
  padding: 16px 20px;
  background: #fff;
  border: 1px solid #f0f0f0;
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .1);
}

.nav_drop.is_open .nav_panel { display: grid; }

.nav_panel a {
  display: block;
  padding: 7px 0;
  color: #666;
  font-size: 14px;
  font-weight: 400;
  white-space: nowrap;
  text-decoration: none;
  cursor: pointer;
}

.nav_panel a:hover { color: #ff761a; }

/* 主视觉 --------------------------------------------------------------- */

.hero_shell {
  width: 100%;
  background: url(/statics/qxlc/hero-art.svg) right 4% center / auto 92% no-repeat, radial-gradient(ellipse at 78% 50%, #ffe3cf 0, rgba(255,227,207,0) 60%), linear-gradient(100deg, #fff7f2 0%, #fff 52%, #fff3ea 100%);
}

.hero,
.hero_shell {
  position: relative;
  height: 428px;
  overflow: hidden;
}

.hero_content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  max-width: 750px;
  height: 100%;
  padding: 0 0 0 30px;
}

.hero_content h1 {
  margin: 0 0 22px;
  color: #333;
  font-size: 48px;
  font-weight: 800;
}

.hero_content h1 span { color: #ff761a; }

.hero_content p {
  width: 100%;
  margin: 0 0 8px;
  color: #666;
  font-size: 16px;
  line-height: 1.8;
}

.hero_buttons {
  display: flex;
  gap: 18px;
  margin-top: 24px;
}

.hero_buttons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 170px;
  height: 35px;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
}

.hero_buttons .plain { color: #ff761a; background: #fff; border: 1px solid #ff761a; }

/* 卡片外壳通用 --------------------------------------------------------- */

.app_card,
.merchant_banner,
.panel,
.quick_card {
  border-radius: 10px;
  background: #fff;
  box-shadow: 1px 4px 6px rgba(0, 0, 0, .07);
}

.panel { margin-top: 24px; padding: 20px; }

.section_title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.section_title h2 {
  margin: 0;
  color: #333;
  font-size: 32px;
  line-height: 42px;
  font-weight: 800;
}

.section_title a {
  color: #ff761a;
  font-size: 14px;
  cursor: pointer;
}

/* 核心服务入口 --------------------------------------------------------- */

.quick_card {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  height: 180px;
  margin-top: 30px;
  overflow: hidden;
}

.quick_item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-right: 1px solid #efefef;
}

.quick_item:last-child { border-right: 0; }

.quick_item .quick_icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.quick_item .quick_title {
  display: block;
  margin: 18px 0 10px;
  color: #333;
  font-size: 16px;
  font-weight: 700;
}

.quick_item p {
  width: 120px;
  margin: 0;
  color: #666;
  font-size: 14px;
  line-height: 1.45;
}

.quick_item p span { display: block; }

.quick_item_clickable { cursor: pointer; }

/* 产品与服务 ----------------------------------------------------------- */

.product_grid {
  display: grid;
  /* 原站是 8 列 × 164px；这里按比例铺满，窄屏逐级减列 */
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 16px 12px;
  margin-top: 24px;
}

.product_card {
  position: relative;
  min-height: 157px;
  border: 1px solid #f0f0f0;
  border-radius: 6px;
  background: #fff;
  overflow: hidden;
}

.product_card .product_image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 164 / 129;
  background: #f5f5f5;
}

.product_card .product_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product_card .product_title {
  display: block;
  margin: 14px 12px 8px;
  color: #333;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product_card .product_sub_cates {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 0 12px 15px;
  color: #666;
  font-size: 14px;
  line-height: 1.5;
}

.product_card .product_sub_cates a {
  max-width: 100%;
  color: #666;
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  cursor: pointer;
}

.product_card .product_sub_cates a:hover { color: #ff761a; }
.product_card .product_sub_cates a.product_sub_more { color: #ff761a; }

/* 行情中心 ------------------------------------------------------------- */

.market_row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 402px;
  gap: 24px;
  margin-top: 24px;
  padding: 20px;
  border-radius: 19px;
  background: #fff;
  box-shadow: 1px 4px 5.9px rgba(0, 0, 0, .07);
}

.market_panel { min-width: 0; }

.market_panel .section_title h2 { margin: 0 0 18px; }

.market_content_row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 342px;
  align-items: start;
  gap: 24px;
}

.market_table_area { min-width: 0; }

.market_table_card {
  --market_col_name: 40%;
  --market_col_price: 21%;
  --market_col_rate: 18%;
  --market_col_date: 21%;
  height: 294px;
  overflow: hidden;
  border: 2px solid #f1f1f1;
  border-radius: 10px;
  background: #fff;
}

.market_tabs {
  display: grid;
  grid-template-columns: repeat(var(--market-tab-count, 4), minmax(0, 1fr));
  height: 46px;
  border-bottom: 1px solid #e9e9e9;
  border-radius: 8px 8px 0 0;
  background: #f5f5f5;
}

.market_tabs button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  height: 46px;
  min-width: 0;
  margin: 0;
  padding: 0 8px;
  border: 1px solid transparent;
  color: #333;
  background: transparent;
  font-size: 16px;
  font-weight: 700;
  white-space: nowrap;
}

.market_tabs button.active {
  z-index: 1;
  color: #ff761a;
  border: 2px solid #ff761a;
  border-bottom-color: #fff;
  border-radius: 8px 8px 0 0;
  background: #fff;
}

.market_tabs button.active:after {
  content: "";
  position: absolute;
  right: 2px;
  bottom: -2px;
  left: 2px;
  height: 2px;
  background: #fff;
}

.market_tabs img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

.market_table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  color: #333;
  font-size: 16px;
}

.market_table_head_wrap {
  height: 44px;
  overflow: hidden;
  border-bottom: 1px solid #eee;
}

.market_table_head { font-weight: 500; background: #fff; }

.market_table_head th {
  height: 44px;
  padding: 0;
  font-weight: 500;
  text-align: center;
}

.market_table_body_wrap {
  height: calc(100% - 91px);
  padding-bottom: 8px;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.market_table_body_wrap::-webkit-scrollbar { display: none; }

.market_table_body td {
  height: 40px;
  padding: 0;
  border-bottom: 1px solid #eee;
  text-align: center;
  vertical-align: middle;
}

.market_table_body tr:last-child td { border-bottom: 0; }

.market_col_name { width: var(--market_col_name); }
.market_col_price { width: var(--market_col_price); }
.market_col_rate { width: var(--market_col_rate); }
.market_col_date { width: var(--market_col_date); }

.market_name_link {
  display: block;
  width: 100%;
  padding: 0 10px;
  color: inherit;
  text-align: left;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  cursor: pointer;
}

.market_table .up { color: #ff761a; }
.market_table .down { color: #2eb872; }

.market_empty {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: #999;
  font-size: 16px;
}

.market_note {
  margin: 12px 0 0;
  color: #999;
  font-size: 14px;
  line-height: 24px;
}

/* 热门询价 */

.quote_panel {
  height: 294px;
  overflow: hidden;
  border: 2px solid #f1f1f1;
  border-radius: 10px;
  background: #fff;
}

.quote_panel .quote_panel_title {
  height: 35px;
  margin: 0;
  padding-left: 20px;
  border-bottom: 2px solid #f1f1f1;
  color: #333;
  font-size: 16px;
  line-height: 33px;
  font-weight: 700;
}

.quote_item {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 82px;
  align-items: center;
  column-gap: 14px;
  height: 86px;
  padding: 0 20px;
  border-bottom: 2px solid #f1f1f1;
}

.quote_item:last-child { border-bottom: 0; }

.quote_item > img {
  width: 34px;
  height: 48px;
  object-fit: contain;
}

.quote_item > div { min-width: 0; overflow: hidden; }

.quote_item strong {
  display: block;
  color: #333;
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
}

.quote_item p,
.quote_item strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.quote_item p {
  margin: 0;
  color: #666;
  font-size: 14px;
  line-height: 20px;
}

.quote_item button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 82px;
  height: 30px;
  border: 1px solid #ff761a;
  border-radius: 5px;
  color: #ff761a;
  background: #fff;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
}

.quote_item button img {
  width: 9px;
  height: 9px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(55%) sepia(97%) saturate(2410%) hue-rotate(350deg) brightness(101%) contrast(101%);
}

/* 行情引导卡 */

.market_cta {
  position: relative;
  overflow: hidden;
  padding: 36px 0 90px 26px;
  border-radius: 10px;
  color: #fff;
}

.market_cta .market_cta_bg {
  position: absolute;
  top: 1px;
  right: 1px;
  bottom: 1px;
  left: 1px;
  border-radius: 9px;
  background: url(/statics/qxlc/cta-art.svg) right -10px bottom -6px / 230px auto no-repeat, linear-gradient(145deg, #ff8b2e 0%, #ff6412 60%, #f24d0a 100%);
}

.market_cta .market_cta_title {
  position: relative;
  z-index: 1;
  width: 300px;
  margin: 0 0 10px;
  color: #fff;
  font-size: 26px;
  line-height: 1.25;
  font-weight: 800;
}

.market_cta .market_cta_desc {
  position: relative;
  z-index: 1;
  width: 310px;
  margin: 0 0 22px;
  color: hsla(0, 0%, 100%, .92);
  font-size: 14px;
  line-height: 1.65;
}

.market_cta ul {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 0;
  list-style: none;
}

.market_cta li {
  margin-bottom: 18px;
  color: #fff;
  font-size: 18px;
  line-height: 1;
  font-weight: 700;
}

.market_cta li:before {
  content: "✓";
  margin-right: 13px;
  font-size: 18px;
  font-weight: 800;
}

.market_cta button {
  position: absolute;
  z-index: 1;
  left: 26px;
  bottom: 16px;
  width: 163px;
  height: 54px;
  border-radius: 5px;
  color: #ff761a;
  background: #fff;
  font-size: 18px;
  font-weight: 800;
}

/* 采购流程 ------------------------------------------------------------- */

.process { padding: 34px 20px 42px; }

.process h2 {
  margin: 0 0 30px;
  color: #333;
  font-size: 32px;
  line-height: 42px;
  font-weight: 800;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 48px;
}

.step {
  position: relative;
  display: flex;
  gap: 8px;
}

.step:not(:last-child):after {
  content: "";
  position: absolute;
  top: 26px;
  right: -34px;
  width: 38px;
  height: 33px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 38 33'%3E%3Cpath d='M3 16.5h30M22 5l11 11.5L22 28' fill='none' stroke='%23ffb88a' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") 50% / contain no-repeat;
}

.step .step_icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 53px;
  height: 53px;
  border-radius: 50%;
  background: #fff2e8;
}

.step .step_icon img {
  width: 53px;
  height: 53px;
  object-fit: contain;
}

.step .step_index {
  color: #ff761a;
  font-family: Arial, sans-serif;
  font-size: 26px;
  line-height: 26px;
}

.step .step_text { min-width: 0; }

.step .step_heading {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.step strong {
  display: block;
  color: #333;
  font-size: 20px;
  line-height: 26px;
  font-weight: 800;
}

.step p {
  margin: 0 0 0 22px;
  color: #666;
  font-size: 16px;
  line-height: 22px;
}

/* 入驻横幅 ------------------------------------------------------------- */

.merchant_banner {
  position: relative;
  height: 300px;
  margin-top: 24px;
  padding: 45px 0 0 40px;
  overflow: hidden;
  border-radius: 10px;
  background-color: #fde9db;
  background-image: url(/statics/qxlc/merchant-art.svg), linear-gradient(100deg, #fde9db 0%, #fff1e6 60%, #ffe4d0 100%);
  background-position: right 60px center, 0 0;
  background-repeat: no-repeat;
  background-size: auto 88%, cover;
}

.merchant_banner h2,
.merchant_banner .merchant_banner_subtitle {
  margin: 0;
  color: #333;
  font-size: 32px;
  line-height: 42px;
  font-weight: 800;
}

.merchant_banner .merchant_tags {
  display: flex;
  flex-wrap: wrap;
  gap: 52px;
  margin: 28px 0 38px;
  color: #ff761a;
  font-size: 16px;
  line-height: 22px;
  font-weight: 500;
}

.merchant_banner .merchant_tags span:before {
  content: "";
  display: inline-block;
  width: 17px;
  height: 15px;
  margin-right: 10px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 17 15'%3E%3Cpath d='M1.5 8l4.5 4.5L15.5 2' fill='none' stroke='%23ff761a' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") 50% / 100% 100% no-repeat;
  vertical-align: -2px;
}

.merchant_banner button {
  min-width: 170px;
  height: 35px;
  margin-right: 28px;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 500;
  background: #fde9db;
}

.merchant_banner .solid { background: #ff761a; }

.merchant_content { width: 100%; max-width: 820px; }

/* 常见问题 ------------------------------------------------------------- */

.faq {
  margin-top: 24px;
  padding: 20px;
  border-radius: 19px;
}

.faq .section_title { margin-bottom: 6px; }

.faq .section_title a {
  display: flex;
  align-items: center;
  height: 22px;
  font-size: 16px;
  line-height: 22px;
  font-weight: 500;
}

.faq .section_title a img {
  width: 12px;
  height: 12px;
  margin-left: 8px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(55%) sepia(97%) saturate(2410%) hue-rotate(350deg) brightness(101%) contrast(101%);
}

.faq_desc {
  width: 100%;
  max-width: 1120px;
  margin: 0 0 18px;
  color: #666;
  font-size: 16px;
  line-height: 24px;
}

.faq_grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: 14px 36px;
}

.faq_item {
  display: flex;
  min-height: 52px;
  overflow: hidden;
  border: 1px solid #ddd;
  border-radius: 8px;
  color: #333;
  background: #fff;
  transition: border-color .18s ease, box-shadow .18s ease;
}

.faq_item:hover {
  border-color: #ffc8a8;
  box-shadow: 0 4px 14px rgba(255, 118, 26, .08);
}

.faq_content {
  width: 100%;
  min-width: 0;
  padding: 14px 18px;
}

.faq_content h3 {
  flex: 1;
  min-width: 0;
  margin: 0;
  color: #333;
  font-size: 16px;
  line-height: 22px;
  font-weight: 800;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.faq_content p {
  margin: 11px 0 0 24px;
  color: #666;
  font-size: 14px;
  line-height: 22px;
}

.faq_question {
  display: flex;
  align-items: center;
  min-height: 24px;
}

.faq_dot {
  flex: 0 0 8px;
  width: 8px;
  height: 8px;
  margin-right: 14px;
  border-radius: 50%;
  background: #ff761a;
}

/* APP / 小程序 --------------------------------------------------------- */

.app_row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 37px;
  align-items: center;
  margin-top: 24px;
  padding: 18px 20px;
  border-radius: 19px;
  background: #fff;
  box-shadow: 1px 4px 5.9px rgba(0, 0, 0, .07);
}

.app_card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 254px;
  padding: 17px 20px;
  border-radius: 19px;
  background: #f6f7f9;
  box-shadow: 1px 4px 5.9px rgba(0, 0, 0, .07);
}

.app_card h2 {
  margin: 0 0 8px;
  color: #333;
  font-size: 32px;
  line-height: 42px;
  font-weight: 800;
}

.app_card p {
  margin: 0 0 14px;
  color: #333;
  font-size: 20px;
  line-height: 28px;
  font-weight: 500;
}

.app_card > img {
  flex: 0 0 190px;
  width: 190px;
  height: 190px;
  border-radius: 8px;
  object-fit: cover;
}

.app_info { min-width: 0; }

.checks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 160px));
  gap: 8px 26px;
  margin-bottom: 24px;
  color: #333;
  font-size: 16px;
  line-height: 22px;
}

.checks span {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

.checks span:before {
  content: "";
  display: inline-block;
  flex: 0 0 16px;
  width: 16px;
  height: 16px;
  margin-right: 11px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Ccircle cx='8' cy='8' r='8' fill='%23ff761a'/%3E%3Cpath d='M4.5 8.2l2.4 2.4 4.6-4.8' fill='none' stroke='%23fff' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") 50% / 100% 100% no-repeat;
}

.scan_tip {
  display: inline-flex;
  align-items: center;
  height: 34px;
  padding: 0 14px;
  border-left: 4px solid #ff761a;
  border-radius: 0 17px 17px 0;
  color: #ff761a;
  background: #fff0e6;
  font-size: 17px;
  line-height: 34px;
  font-weight: 800;
  white-space: nowrap;
}

/* 合作伙伴 ------------------------------------------------------------- */

.partners {
  margin-top: 24px;
  margin-bottom: 34px;
  padding: 18px 20px 20px;
  border-radius: 19px;
}

.partner_grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px 12px;
  margin-top: 15px;
}

.partner_logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 82px;
  padding: 0 22px;
  border-radius: 4px;
  background: #fff;
  box-shadow: 1px 5px 8px rgba(0, 0, 0, .06);
}

.partner_logo img {
  width: 150px;
  height: 38px;
  object-fit: contain;
}

/* 页脚 ----------------------------------------------------------------- */

.site_footer {
  position: relative;
  width: 100%;
  overflow: hidden;
  color: #fff;
  background: radial-gradient(ellipse at 85% 110%, rgba(255,118,26,.28) 0, rgba(255,118,26,0) 55%), linear-gradient(180deg, #1c1c21 0%, #0e0e11 100%);
}

.footer_content {
  min-height: 432px;
  padding: 34px 20px 16px;
}

.footer_top {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  padding: 0 0 24px;
  border-bottom: 1px solid hsla(0, 0%, 100%, .24);
}

.footer_group {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 168px;
  padding: 0 28px;
  border-right: 1px solid hsla(0, 0%, 100%, .28);
  text-align: center;
}

.footer_group:last-child { border-right: 0; }

.footer_title {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 23px;
}

.footer_title img {
  width: 24px;
  height: 24px;
  margin-right: 9px;
  object-fit: contain;
}

.footer_title span {
  color: #fff;
  font-size: 18px;
  line-height: 24px;
  font-weight: 700;
}

.footer_links { width: 100%; text-align: center; }

.footer_links a {
  display: block;
  margin-bottom: 12px;
  color: hsla(0, 0%, 100%, .72);
  font-size: 15px;
  line-height: 20px;
  text-decoration: none;
  cursor: pointer;
}

.footer_links a:hover { color: #ff761a; }

.footer_middle {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 152px;
  padding: 28px 0 22px;
  border-bottom: 1px solid hsla(0, 0%, 100%, .24);
}

.footer_brand { flex: 0 0 auto; width: 288px; }

.footer_brand img {
  width: 238px;
  height: auto;
  object-fit: contain;
}

.footer_slogan {
  flex: 0 1 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 286px;
}

.footer_slogan img {
  width: 286px;
  height: auto;
  object-fit: contain;
}

.footer_qrs {
  flex: 0 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 44px;
}

.footer_qr_item { width: 86px; text-align: center; }

.footer_qr_item img {
  width: 86px;
  height: 86px;
  border-radius: 4px;
  background: #fff;
  object-fit: cover;
}

.footer_qr_service_image {
  padding: 5px;
  background: #fff;
  object-fit: contain;
}

.footer_qr_item span {
  display: block;
  margin-top: 8px;
  color: hsla(0, 0%, 100%, .82);
  font-size: 13px;
  line-height: 18px;
}

.footer_contact {
  flex: 0 0 auto;
  /* 原站是 width:360px + padding-left:84px；这里容器比原站窄 40px，
     固定宽会把邮箱那行挤掉尾部，所以改成按内容撑开 */
  width: auto;
  min-width: 300px;
  min-height: 102px;
  padding-left: 48px;
  border-left: 1px solid hsla(0, 0%, 100%, .28);
}

.footer_contact_item {
  display: flex;
  align-items: center;
  margin: 12px 0;
  color: hsla(0, 0%, 100%, .82);
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
  text-decoration: none;
}

.footer_contact_item:hover { color: #ff761a; }

.footer_contact_item img {
  width: 24px;
  height: 24px;
  margin-right: 10px;
  object-fit: contain;
}

.copyright {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding-top: 14px;
  color: hsla(0, 0%, 100%, .72);
  font-size: 12px;
  line-height: 18px;
}

.copyright a { color: inherit; text-decoration: none; }

/* 右侧悬浮栏 ----------------------------------------------------------- */

.floatWindow {
  position: fixed;
  right: 0;
  bottom: 15%;
  z-index: 999;
  width: 70px;
  color: #5c5c5c;
  cursor: pointer;
}

.floatWindow .list {
  background: #fff;
  box-shadow: 0 3px 20px rgba(0, 0, 0, .06);
}

.floatWindow .item {
  position: relative;
  width: 100%;
  min-height: 74px;
  padding: 18px 0 14px;
  color: #5c5c5c;
  background: #fff;
  font-size: 12px;
  line-height: 18px;
  text-align: center;
}

.floatWindow .item:hover { color: #ff761a; }

.floatWindow .item + .item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 48px;
  height: 1px;
  margin-left: -24px;
  background: #f0f0f0;
}

.floatWindow .item svg {
  display: block;
  width: 25px;
  height: 25px;
  margin: 0 auto 5px;
  fill: currentColor;
}

/* 窄屏收敛：让 1024–1440 之间不出现横向滚动 ---------------------------- */

@media (max-width: 1360px) {
  .market_row { grid-template-columns: minmax(0, 1fr); }
  .market_cta { padding-bottom: 26px; }
  .market_cta .market_cta_bg { background-size: cover; }
  .market_cta .market_cta_title,
  .market_cta .market_cta_desc { width: auto; max-width: 560px; }
  .market_cta ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 220px));
  }
  .market_cta button { position: static; margin-top: 4px; }
}

@media (max-width: 1240px) {
  .topbar { gap: 24px; }
  .nav { gap: 34px; }
  .product_grid { grid-template-columns: repeat(6, minmax(0, 1fr)); }
  .steps { gap: 30px; }
  .step:not(:last-child):after { right: -24px; }
  .footer_group { padding: 0 14px; }
  .footer_contact { min-width: 280px; padding-left: 32px; }
  .footer_middle { flex-wrap: wrap; }
}

@media (max-width: 1100px) {
  .market_content_row { grid-template-columns: minmax(0, 1fr); }
  .quote_panel { height: auto; }
  .product_grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }
  .hero_content h1 { font-size: 40px; }
  .app_card { height: auto; }
  .app_card > img { flex-basis: 150px; width: 150px; height: 150px; }
}

/* ===== 全芯联储适配：链接按钮、描边图标与新元素 ========================= */
:where(.new_index) a { color: inherit; text-decoration: none; }

.search_icon { width: 26px; height: 26px; color: #fff; }
.btn_icon { width: 19px; height: 19px; flex: 0 0 auto; }
.inline_icon { width: 14px; height: 14px; vertical-align: -2px; }
.tab_icon { width: 16px; height: 16px; }

.header_actions .btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 136px; height: 37px; border-radius: 5px;
  font-size: 14px; font-weight: 500; white-space: nowrap;
}

.quick_item { color: #333; transition: background .18s ease; }
.quick_item:hover { background: #fffaf6; }
.section_title a { display: inline-flex; align-items: center; gap: 2px; }

.quote_btn {
  display: flex; align-items: center; justify-content: center; gap: 3px;
  width: 82px; height: 30px; border: 1px solid #ff761a; border-radius: 5px;
  color: #ff761a !important; background: #fff; font-size: 14px; font-weight: 500; white-space: nowrap;
}
.quote_btn:hover { background: #fff5ee; }

.market_cta_btn {
  position: absolute; z-index: 1; left: 26px; bottom: 16px;
  display: flex; align-items: center; justify-content: center;
  width: 163px; height: 54px; border-radius: 5px;
  color: #ff761a !important; background: #fff; font-size: 18px; font-weight: 800;
}
@media (max-width: 1360px) { .market_cta_btn { position: static; margin-top: 4px; } }

.merchant_banner .btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 170px; height: 35px; margin-right: 28px; border-radius: 5px;
  font-size: 16px; font-weight: 500;
}
.merchant_banner .btn.outline { background: transparent; }
.merchant_banner_subtitle { max-width: 640px; font-size: 20px !important; line-height: 1.6 !important; font-weight: 500 !important; color: #555 !important; margin-top: 10px !important; }

.nav_drop:hover .nav_panel { display: grid; }
.nav_panel_narrow { grid-template-columns: 1fr; min-width: 170px; }
[data-tab-panel][hidden] { display: none; }

.footer_title_icon { width: 22px; height: 22px; margin-right: 9px; color: #ff8a3a; }
.footer_contact_icon { width: 20px; height: 20px; margin-right: 10px; color: #ff8a3a; flex: 0 0 auto; }
.footer_slogan_text { margin: 0; color: rgba(255, 255, 255, .7); font-size: 24px; font-weight: 300; letter-spacing: 6px; white-space: nowrap; }

.floatWindow .item { display: block; border: 0; font: inherit; cursor: pointer; }
/* 旧规则按实心图标写的 fill，描边图标需要改回 none */
.floatWindow .item svg { fill: none; }

/* 快捷入口说明：原站是两行短句配 120px 定宽，这里是一句完整的话，放宽 */
.quick_item p { width: auto; max-width: 180px; padding: 0 12px; }

/* 宽屏按分类数定列数（首页模板算好写在 --cols），避免最后一行空一大截 */
@media (min-width: 1241px) {
  .product_grid { grid-template-columns: repeat(var(--cols, 8), minmax(0, 1fr)); }
}
.market_name_link { font-size: 15px; }
