/* 空放贷款落地页 zf377a */

.zf377abody {
  margin: 0;
  padding: 0;
  font-family: "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #1e2a3a;
  overflow-x: hidden;
  background:
    radial-gradient(ellipse 80% 50% at 10% -10%, rgba(14, 116, 144, 0.12), transparent 50%),
    radial-gradient(ellipse 60% 40% at 90% 10%, rgba(180, 140, 60, 0.1), transparent 45%),
    linear-gradient(180deg, #f4f7fa 0%, #eef3f7 40%, #f7f5f0 100%);
  -webkit-font-smoothing: antialiased;
}

.zf377abody *,
.zf377abody *::before,
.zf377abody *::after {
  box-sizing: border-box;
}

.zf377abody img {
  max-width: 100%;
  height: auto;
  display: block;
  border: 0;
}

.zf377abody a {
  text-decoration: none;
  color: inherit;
  transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.zf377abody h1,
.zf377abody h2,
.zf377abody h3,
.zf377abody p,
.zf377abody ul {
  margin: 0;
  padding: 0;
}

.zf377abody ul {
  list-style: none;
}

.zf377acontainer {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------- 导航 ---------- */
.zf377aheader {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(30, 42, 58, 0.08);
  box-shadow: 0 4px 24px rgba(30, 42, 58, 0.06);
}

.zf377aheader_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  min-height: 72px;
  gap: 12px 20px;
  position: relative;
}

.zf377alogo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  max-width: calc(100% - 56px);
}

.zf377alogo_title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #0f2744;
  line-height: 1.2;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.zf377alogo_link {
  color: inherit;
  text-decoration: none;
}

.zf377alogo_link:hover {
  color: #0e7490;
}

.zf377anav_anchor {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.zf377anav_btn {
  display: none;
  width: 42px;
  height: 42px;
  margin-left: auto;
  border-radius: 10px;
  border: 1px solid rgba(14, 116, 144, 0.18);
  background: #fff;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(15, 39, 68, 0.06);
}

.zf377anav_btn_close {
  display: none;
}

.zf377anav_btn_line {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: #0e7490;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.zf377anav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 4px 16px;
}

.zf377anav_link {
  font-size: 14px;
  font-weight: 500;
  color: #3d4f63;
  padding: 6px 2px;
  position: relative;
  white-space: nowrap;
}

.zf377anav_link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #0e7490, #b8860b);
  transition: width 0.25s ease;
}

.zf377anav_link:hover {
  color: #0e7490;
}

.zf377anav_link:hover::after {
  width: 100%;
}

.zf377anav_cta {
  margin-left: 6px;
  padding: 8px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, #0e7490, #155e75);
  color: #fff !important;
  box-shadow: 0 6px 16px rgba(14, 116, 144, 0.28);
}

.zf377anav_cta::after {
  display: none;
}

.zf377anav_cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(14, 116, 144, 0.38);
  color: #fff !important;
}

/* ---------- 按钮 ---------- */
.zf377abtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 26px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  border: 2px solid transparent;
  cursor: pointer;
}

.zf377abtn_primary {
  background: linear-gradient(135deg, #0e7490 0%, #0f766e 100%);
  color: #fff;
  box-shadow: 0 10px 24px rgba(14, 116, 144, 0.28);
}

.zf377abtn_primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(14, 116, 144, 0.36);
}

.zf377abtn_outline {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
}

.zf377abtn_outline:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: translateY(-2px);
}

.zf377abtn_light {
  background: #fff;
  color: #0e7490;
  box-shadow: 0 8px 20px rgba(15, 39, 68, 0.18);
}

.zf377abtn_light:hover {
  transform: translateY(-2px);
}

/* ---------- 通用板块 ---------- */
.zf377asection {
  padding: 80px 0;
  position: relative;
}

.zf377asection_head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}

.zf377asection_eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  padding: 4px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #0e7490;
  background: rgba(14, 116, 144, 0.1);
}

.zf377aeyebrow_light {
  color: #f6e7b0;
  background: rgba(255, 255, 255, 0.12);
}

.zf377asection_title {
  font-size: 34px;
  line-height: 1.3;
  font-weight: 800;
  color: #0f2744;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}

.zf377asection_desc {
  font-size: 16px;
  color: #5a6b7d;
}

.zf377asection_head_light .zf377asection_title {
  color: #fff;
}

.zf377asection_head_light .zf377asection_desc {
  color: rgba(255, 255, 255, 0.78);
}

.zf377asection_head_light .zf377asection_eyebrow {
  color: #f6e7b0;
  background: rgba(255, 255, 255, 0.12);
}

/* ---------- 图片容器 ---------- */
.zf377aimg_wrap {
  overflow: hidden;
  background: #0a2433;
  position: relative;
}

.zf377aimg_wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  position: relative;
  z-index: 1;
}

.zf377aimg_banner {
  border-radius: 18px;
  aspect-ratio: 16 / 10;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35);
  background: #1a1510;
}

.zf377aimg_banner img {
  object-fit: contain;
}

.zf377aimg_about {
  border-radius: 14px;
  aspect-ratio: 16 / 11;
  box-shadow: 0 16px 36px rgba(15, 39, 68, 0.14);
  background: #eef3f7;
}

.zf377aimg_about img {
  object-fit: cover;
}

.zf377aimg_case {
  border-radius: 0;
  aspect-ratio: 16 / 10;
  background: #f0f4f7;
  width: 100%;
}

.zf377aimg_case img {
  object-fit: cover;
}

/* ---------- 主横幅 ---------- */
.zf377abanner {
  position: relative;
  padding: 72px 0 80px;
  overflow: hidden;
  background: linear-gradient(145deg, #0b3a4a 0%, #0e5a68 42%, #1a4a3a 100%);
}

.zf377abanner_bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(246, 231, 176, 0.16), transparent 28%),
    radial-gradient(circle at 80% 20%, rgba(56, 189, 248, 0.18), transparent 32%),
    linear-gradient(180deg, transparent 60%, rgba(0, 0, 0, 0.15) 100%);
  pointer-events: none;
}

.zf377abanner_shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(2px);
}

.zf377abanner_shape_1 {
  width: 320px;
  height: 320px;
  right: -80px;
  top: -60px;
  background: rgba(184, 134, 11, 0.18);
}

.zf377abanner_shape_2 {
  width: 240px;
  height: 240px;
  left: -60px;
  bottom: -40px;
  background: rgba(14, 165, 233, 0.16);
}

.zf377abanner_inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.zf377abanner_tag {
  display: inline-block;
  margin-bottom: 18px;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: #f6e7b0;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(246, 231, 176, 0.35);
  letter-spacing: 0.12em;
}

.zf377abanner_title {
  font-size: 42px;
  line-height: 1.25;
  font-weight: 800;
  color: #fff;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.zf377abanner_desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.82);
  max-width: 540px;
  margin-bottom: 28px;
}

.zf377abanner_actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 36px;
}

.zf377abanner_stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.zf377abanner_stat {
  min-width: 120px;
  padding: 14px 18px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(6px);
}

.zf377abanner_stat strong {
  display: block;
  font-size: 18px;
  color: #f6e7b0;
  margin-bottom: 2px;
}

.zf377abanner_stat span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

.zf377abanner_visual {
  position: relative;
}

.zf377abanner_visual::before {
  content: "";
  position: absolute;
  width: 88%;
  height: 88%;
  right: -12px;
  bottom: -12px;
  border-radius: 22px;
  border: 2px solid rgba(246, 231, 176, 0.35);
  z-index: 0;
}

.zf377abanner_visual .zf377aimg_wrap {
  position: relative;
  z-index: 1;
}

/* ---------- 通用框架布局 ---------- */
.zf377aframe {
  border: 1px solid rgba(14, 116, 144, 0.14);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 16px 40px rgba(15, 39, 68, 0.06);
  overflow: hidden;
}

.zf377aframe_row {
  display: grid;
  grid-template-columns: 200px 1fr;
  border-bottom: 1px solid rgba(14, 116, 144, 0.12);
}

.zf377aframe_row_last {
  border-bottom: 0;
}

.zf377aframe_side {
  padding: 28px 22px;
  background: linear-gradient(160deg, #0b3a4a 0%, #0e5a68 55%, #164e3d 100%);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.zf377aframe_side::after {
  content: "";
  position: absolute;
  right: 0;
  top: 20%;
  bottom: 20%;
  width: 1px;
  background: rgba(246, 231, 176, 0.25);
}

.zf377aframe_num {
  display: block;
  font-size: 26px;
  font-weight: 800;
  color: rgba(246, 231, 176, 0.55);
  letter-spacing: 0.04em;
  margin-bottom: 8px;
  line-height: 1;
}

.zf377aframe_title {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}

.zf377aframe_desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
}

.zf377aframe_main {
  padding: 20px;
  background: linear-gradient(180deg, #f8fbfc 0%, #ffffff 100%);
}

.zf377aframe_main_table {
  padding: 0;
  background: #fff;
}

.zf377aframe_hint {
  font-size: 13px;
  color: #5a6b7d;
  margin-bottom: 14px;
  padding: 10px 14px;
  border-radius: 10px;
  background: rgba(14, 116, 144, 0.06);
  border-left: 3px solid #0e7490;
}

.zf377aframe_cols {
  display: grid;
  gap: 16px;
  height: 100%;
}

.zf377aframe_cols_2 {
  grid-template-columns: repeat(2, 1fr);
}

.zf377aframe_cols_3 {
  grid-template-columns: repeat(3, 1fr);
}

.zf377aframe_cols_4 {
  grid-template-columns: repeat(4, 1fr);
}

.zf377aframe_cell {
  padding: 20px 18px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(15, 39, 68, 0.08);
  box-shadow: 0 6px 18px rgba(15, 39, 68, 0.04);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.zf377aframe_cell:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(15, 39, 68, 0.08);
  border-color: rgba(14, 116, 144, 0.18);
}

.zf377acell_title {
  font-size: 17px;
  font-weight: 700;
  color: #0f2744;
  margin-bottom: 10px;
  line-height: 1.35;
}

.zf377acell_text {
  font-size: 13px;
  color: #5a6b7d;
  line-height: 1.75;
  flex: 1;
}

/* 深色背景板块内的框架 */
.zf377aframe_dark {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
}

.zf377aframe_dark .zf377aframe_row {
  border-bottom-color: rgba(255, 255, 255, 0.12);
}

.zf377aframe_side_light {
  background: rgba(255, 255, 255, 0.08);
}

.zf377aframe_dark .zf377aframe_main {
  background: rgba(255, 255, 255, 0.06);
}

.zf377aframe_dark .zf377aframe_cell,
.zf377aprocess_cell {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.zf377aframe_dark .zf377aframe_cell:hover {
  background: rgba(255, 255, 255, 0.12);
}

.zf377aframe_footer {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: none;
  margin-bottom: 18px;
}

.zf377aframe_side_footer {
  background: rgba(255, 255, 255, 0.06);
}

.zf377aframe_footer .zf377aframe_main {
  background: transparent;
}

.zf377aframe_footer .zf377aframe_cell {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.zf377aframe_footer .zf377aframe_cell:hover {
  transform: none;
  background: rgba(255, 255, 255, 0.06);
}

/* ---------- 业务服务 ---------- */
.zf377aservices {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.65), rgba(255, 255, 255, 0.3)),
    transparent;
}

.zf377aservice_item {
  padding: 22px 20px;
}

.zf377aservice_item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #0e7490, #b8860b);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.zf377aservice_item:hover::before {
  opacity: 1;
}

.zf377aservice_item_accent {
  background: linear-gradient(160deg, #ffffff 0%, #f4f9fa 100%);
  border-color: rgba(14, 116, 144, 0.14);
}

.zf377aservice_item_top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.zf377aservice_icon {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  flex-shrink: 0;
  position: relative;
  background: linear-gradient(135deg, rgba(14, 116, 144, 0.15), rgba(184, 134, 11, 0.15));
}

.zf377aservice_icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 16px;
  border-radius: 4px;
  background: linear-gradient(135deg, #0e7490, #b8860b);
}

.zf377aicon_2::after {
  border-radius: 50%;
}

.zf377aicon_3::after {
  width: 14px;
  height: 14px;
  clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
  border-radius: 0;
}

.zf377aicon_4::after {
  width: 18px;
  height: 9px;
  border-radius: 10px;
}

.zf377aicon_5::after {
  width: 12px;
  height: 12px;
  box-shadow: 5px 0 0 #b8860b;
}

.zf377aicon_6::after {
  width: 16px;
  height: 12px;
  border-radius: 2px 2px 6px 6px;
}

.zf377aicon_7::after {
  width: 18px;
  height: 11px;
  border-radius: 3px;
  box-shadow: 0 7px 0 -3px rgba(14, 116, 144, 0.5);
}

.zf377aservice_name {
  font-size: 18px;
  font-weight: 700;
  color: #0f2744;
  margin-bottom: 0;
  line-height: 1.3;
}

.zf377aservice_text {
  font-size: 13px;
  color: #5a6b7d;
  line-height: 1.75;
  margin-bottom: 14px;
  flex: 1;
}

.zf377aservice_points {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
}

.zf377aservice_points li {
  font-size: 12px;
  color: #0e7490;
  background: rgba(14, 116, 144, 0.08);
  padding: 4px 10px;
  border-radius: 999px;
}

/* ---------- 关于介绍 ---------- */
.zf377aabout {
  background:
    radial-gradient(circle at 0% 50%, rgba(14, 116, 144, 0.08), transparent 40%),
    transparent;
}

.zf377aabout_media_cell {
  position: relative;
  padding: 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.zf377aabout_media_cell .zf377aimg_wrap {
  width: 100%;
}

.zf377aabout_float {
  position: absolute;
  right: 20px;
  bottom: 28px;
  padding: 14px 18px;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 16px 32px rgba(15, 39, 68, 0.14);
  border-left: 4px solid #b8860b;
  z-index: 2;
}

.zf377aabout_float strong {
  display: block;
  font-size: 16px;
  color: #0f2744;
  margin-bottom: 2px;
}

.zf377aabout_float span {
  font-size: 13px;
  color: #5a6b7d;
}

.zf377aabout_text {
  color: #5a6b7d;
  margin-bottom: 14px;
  font-size: 14px;
}

.zf377aabout_list {
  margin-bottom: 22px;
}

.zf377aabout_list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  color: #3d4f63;
  font-size: 14px;
}

.zf377aabout_list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0e7490, #0f766e);
  box-shadow: inset 0 0 0 3px rgba(255, 255, 255, 0.45);
}

/* ---------- 优势 ---------- */
.zf377aadvantage {
  background: #fff;
  border-top: 1px solid rgba(15, 39, 68, 0.05);
  border-bottom: 1px solid rgba(15, 39, 68, 0.05);
}

.zf377aadvantage_num {
  display: block;
  font-size: 24px;
  font-weight: 800;
  color: rgba(14, 116, 144, 0.28);
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}

/* ---------- 流程 ---------- */
.zf377aprocess {
  background:
    linear-gradient(135deg, #0b3a4a 0%, #0e5a68 50%, #164e3d 100%);
  overflow: hidden;
}

.zf377aprocess::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  right: -120px;
  top: -100px;
  border-radius: 50%;
  background: rgba(246, 231, 176, 0.08);
}

.zf377aprocess .zf377acontainer {
  position: relative;
  z-index: 1;
}

.zf377aprocess_cell {
  text-align: center;
  align-items: center;
}

.zf377aprocess_step {
  width: 48px;
  height: 48px;
  margin: 0 auto 14px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 800;
  color: #0b3a4a;
  background: linear-gradient(135deg, #f6e7b0, #d4a84b);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
}

.zf377aprocess_name {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.zf377aprocess_text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
}

/* ---------- 案例 ---------- */
.zf377acases {
  background:
    radial-gradient(circle at 100% 0%, rgba(184, 134, 11, 0.08), transparent 35%),
    transparent;
}

.zf377acase_cell {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.zf377acase_cell .zf377aimg_wrap {
  flex-shrink: 0;
}

.zf377acase_body {
  padding: 18px 16px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.zf377acase_name {
  font-size: 18px;
  font-weight: 700;
  color: #0f2744;
  margin-bottom: 8px;
}

.zf377acase_text {
  font-size: 14px;
  color: #5a6b7d;
}

/* ---------- 适用人群 ---------- */
.zf377aaudience {
  background: #fff;
  border-top: 1px solid rgba(15, 39, 68, 0.05);
}

/* ---------- FAQ ---------- */
.zf377afaq {
  background:
    linear-gradient(180deg, rgba(238, 243, 247, 0.8), rgba(247, 245, 240, 0.9));
}

.zf377afaq_item {
  box-shadow: none;
}

.zf377afaq_q {
  font-size: 17px;
  font-weight: 700;
  color: #0f2744;
  margin-bottom: 8px;
  padding-left: 18px;
  position: relative;
}

.zf377afaq_q::before {
  content: "Q";
  position: absolute;
  left: 0;
  top: 0;
  color: #0e7490;
  font-weight: 800;
}

.zf377afaq_a {
  font-size: 14px;
  color: #5a6b7d;
  padding-left: 18px;
}

/* ---------- 咨询内容 ---------- */
.zf377acontact_desc {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 16px;
}

.zf377acontact_points li {
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 10px;
  padding-left: 22px;
  position: relative;
  font-size: 14px;
  text-align: left;
}

.zf377acontact_points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #f6e7b0;
}

.zf377acontact_panel_title {
  font-size: 15px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 12px;
  letter-spacing: 0.06em;
}

.zf377acontact_phone {
  font-size: 32px;
  font-weight: 800;
  color: #f6e7b0;
  letter-spacing: 0.02em;
  margin-bottom: 8px;
  line-height: 1.2;
}

.zf377acontact_phone_link {
  color: inherit;
  text-decoration: none;
}

.zf377acontact_phone_link:hover,
.zf377acontact_phone_link:focus {
  text-decoration: underline;
}

.zf377acontact_time {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 8px;
}

/* ---------- 页脚 ---------- */
.zf377afooter {
  padding: 40px 0 28px;
  background: #0a2433;
  color: rgba(255, 255, 255, 0.72);
}

.zf377afooter_inner {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 18px;
}

.zf377afooter_name {
  display: block;
  font-size: 18px;
  color: #fff;
  margin-bottom: 10px;
}

.zf377afooter_desc {
  font-size: 13px;
  max-width: 460px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
}

.zf377afooter_links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  align-items: flex-start;
}

.zf377afooter_cols {
  display: flex;
  gap: 40px;
}

.zf377afooter_col {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 120px;
}

.zf377afooter_col_title {
  display: block;
  color: #fff;
  font-size: 14px;
  margin-bottom: 4px;
}

.zf377afooter_link {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.zf377afooter_link:hover {
  color: #f6e7b0;
}

.zf377acopyright {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
  line-height: 1.7;
  margin-top: 18px;
}

.zf377acopyright p {
  margin: 0 0 8px;
}

.zf377acopyright a {
  color: rgba(246, 231, 176, 0.85);
}

.zf377acopyright a:hover {
  color: #f6e7b0;
}

.zf377aflink {
  margin-top: 22px;
  padding: 16px 18px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.zf377aflink_title {
  display: block;
  font-size: 14px;
  color: #fff;
  margin-bottom: 10px;
}

.zf377aflink_list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.zf377aflink_list li a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
}

.zf377aflink_list li a:hover {
  color: #f6e7b0;
}

.zf377aad {
  margin-top: 16px;
  text-align: center;
}

/* ---------- 产品详解 ---------- */
.zf377aproducts {
  background: #fff;
  border-top: 1px solid rgba(15, 39, 68, 0.05);
}

.zf377aproducts .zf377acell_title {
  color: #0e7490;
}

/* ---------- 对比表 ---------- */
.zf377acompare {
  background:
    radial-gradient(circle at 0% 0%, rgba(14, 116, 144, 0.06), transparent 40%),
    transparent;
}

.zf377atable_wrap {
  overflow-x: auto;
  border-radius: 0;
  background: #fff;
  border: 0;
  box-shadow: none;
}

.zf377atable {
  width: 100%;
  border-collapse: collapse;
  min-width: 780px;
}

.zf377atable th,
.zf377atable td {
  padding: 14px 16px;
  text-align: left;
  font-size: 14px;
  border-bottom: 1px solid rgba(15, 39, 68, 0.06);
}

.zf377atable th {
  background: linear-gradient(135deg, #0b3a4a, #0e5a68);
  color: #fff;
  font-weight: 700;
  white-space: nowrap;
}

.zf377atable tbody tr:nth-child(even) {
  background: rgba(14, 116, 144, 0.03);
}

.zf377atable tbody tr:hover {
  background: rgba(14, 116, 144, 0.07);
}

.zf377atable td:first-child {
  font-weight: 700;
  color: #0f2744;
}

/* ---------- 使用场景 ---------- */
.zf377ascenes {
  background: #fff;
  border-top: 1px solid rgba(15, 39, 68, 0.05);
  border-bottom: 1px solid rgba(15, 39, 68, 0.05);
}

.zf377ascene_tag {
  display: inline-block;
  margin-bottom: 12px;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  color: #b8860b;
  background: rgba(184, 134, 11, 0.12);
  width: fit-content;
}

/* ---------- 申请材料 ---------- */
.zf377amaterials {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(238, 243, 247, 0.9));
}

.zf377amaterial_list {
  margin-top: 4px;
}

.zf377amaterial_list li {
  position: relative;
  padding-left: 16px;
  margin-bottom: 10px;
  font-size: 14px;
  color: #5a6b7d;
}

.zf377amaterial_list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #0e7490;
}

.zf377amaterial_note {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 12px;
  font-size: 13px;
  color: #5a6b7d;
  background: rgba(184, 134, 11, 0.08);
  border-left: 4px solid #b8860b;
  line-height: 1.75;
}

/* ---------- 案例补充 ---------- */
.zf377acase_label {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 600;
  color: #0e7490;
  letter-spacing: 0.04em;
}

.zf377acase_meta {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px dashed rgba(15, 39, 68, 0.12);
}

.zf377acase_meta li {
  font-size: 13px;
  color: #3d4f63;
  margin-bottom: 6px;
  padding-left: 12px;
  position: relative;
}

.zf377acase_meta li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #b8860b;
}

/* ---------- 客户反馈 ---------- */
.zf377avoices {
  background: #fff;
  border-top: 1px solid rgba(15, 39, 68, 0.05);
}

.zf377avoice_item {
  margin: 0;
  background: linear-gradient(160deg, #f8fbfc 0%, #eef6f8 100%);
}

.zf377avoice_item::before {
  content: "“";
  position: absolute;
  top: 8px;
  left: 16px;
  font-size: 48px;
  line-height: 1;
  color: rgba(14, 116, 144, 0.18);
  font-family: Georgia, serif;
}

.zf377avoice_text {
  font-size: 15px;
  color: #3d4f63;
  line-height: 1.8;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.zf377avoice_user {
  font-size: 13px;
  font-weight: 600;
  color: #0e7490;
}

/* ---------- 适合/谨慎 ---------- */
.zf377afit_title {
  font-size: 17px;
  font-weight: 700;
  color: #0f2744;
  margin-bottom: 14px;
}

.zf377afit_list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  font-size: 14px;
  color: #5a6b7d;
}

.zf377afit_list li::before {
  content: "+";
  position: absolute;
  left: 0;
  top: 0;
  color: #0e7490;
  font-weight: 700;
}

.zf377afit_list_warn li::before {
  content: "!";
  color: #b8860b;
}

/* ---------- 借款须知 ---------- */
.zf377atips {
  background:
    radial-gradient(circle at 100% 50%, rgba(184, 134, 11, 0.07), transparent 40%),
    transparent;
}

.zf377atips_name {
  font-size: 16px;
  font-weight: 700;
  color: #0f2744;
  margin-bottom: 10px;
  padding-left: 12px;
  border-left: 3px solid #0e7490;
}

/* ---------- 风险提示 ---------- */
.zf377anotice {
  padding-top: 40px;
  padding-bottom: 20px;
}

.zf377anotice_text {
  font-size: 14px;
  color: #5a6b7d;
  line-height: 1.75;
  margin: 0;
  background: linear-gradient(135deg, #fff8e8 0%, #f7fafc 100%);
}

/* ---------- 咨询板块背景 ---------- */
.zf377acontact {
  padding-bottom: 80px;
  background:
    linear-gradient(135deg, #0b3a4a 0%, #0e5a68 50%, #164e3d 100%);
}

.zf377acontact_head {
  margin-bottom: 36px;
}

.zf377acontact_content {
  text-align: left;
  align-items: flex-start;
}

.zf377acontact_panel {
  text-align: left;
  align-items: flex-start;
}

.zf377acontact_panel .zf377abtn_light {
  width: auto;
  max-width: 100%;
}

.zf377acontact_mini {
  margin-bottom: 20px;
  padding: 12px 14px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  width: 100%;
}

.zf377acontact_mini p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
}

.zf377acontact_mini p + p {
  margin-top: 4px;
  color: rgba(246, 231, 176, 0.9);
}

.zf377afooter_brand_cell .zf377afooter_name {
  margin-bottom: 10px;
}

.zf377afooter_brand_cell .zf377afooter_desc {
  max-width: none;
}

/* ---------- 响应式 ---------- */
@media (max-width: 1100px) {
  .zf377anav_btn_open {
    display: flex;
  }

  .zf377aheader_inner {
    min-height: 64px;
    padding: 10px 0;
  }

  .zf377anav {
    display: none;
    width: 100%;
    order: 3;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 0 4px;
    border-top: 1px solid rgba(14, 116, 144, 0.1);
    margin-top: 4px;
  }

  /* 打开菜单：点击任意栏目后 hash 变化，菜单自动收起 */
  .zf377abody:has(#zf377anav_open:target) .zf377anav {
    display: flex;
  }

  .zf377abody:has(#zf377anav_open:target) .zf377anav_btn_open {
    display: none;
  }

  .zf377abody:has(#zf377anav_open:target) .zf377anav_btn_close {
    display: flex;
  }

  .zf377anav_btn_close .zf377anav_btn_line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .zf377anav_btn_close .zf377anav_btn_line:nth-child(2) {
    opacity: 0;
  }

  .zf377anav_btn_close .zf377anav_btn_line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .zf377anav_link {
    display: block;
    width: 100%;
    padding: 12px 14px;
    font-size: 15px;
    border-radius: 10px;
    white-space: normal;
  }

  .zf377anav_link::after {
    display: none;
  }

  .zf377anav_link:hover,
  .zf377anav_link:active {
    background: rgba(14, 116, 144, 0.08);
    color: #0e7490;
  }

  .zf377anav_cta {
    margin: 8px 0 0;
    text-align: center;
    padding: 12px 16px;
    border-radius: 10px;
  }

  .zf377anav_cta:hover {
    transform: none;
  }

  .zf377alogo_title {
    font-size: 17px;
  }
}

@media (max-width: 1024px) {
  .zf377abanner_inner {
    grid-template-columns: 1fr;
  }

  .zf377abanner_title {
    font-size: 34px;
  }

  .zf377aframe_row {
    grid-template-columns: 150px 1fr;
  }

  .zf377aframe_cols_4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .zf377aframe_cols_3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .zf377aabout_float {
    right: 16px;
  }

  .zf377abanner_visual::before {
    display: none;
  }
}

@media (max-width: 768px) {
  .zf377abanner {
    padding: 48px 0 56px;
  }

  .zf377abanner_title {
    font-size: 28px;
  }

  .zf377abanner_desc {
    font-size: 15px;
  }

  .zf377abanner_stats {
    display: none;
  }

  .zf377asection {
    padding: 56px 0;
  }

  .zf377asection_title {
    font-size: 26px;
  }

  .zf377aframe_row {
    grid-template-columns: 1fr;
  }

  .zf377aframe_side {
    padding: 20px 18px;
  }

  .zf377aframe_side::after {
    display: none;
  }

  .zf377aframe_main {
    padding: 14px;
  }

  .zf377aframe_cols_2,
  .zf377aframe_cols_3,
  .zf377aframe_cols_4 {
    grid-template-columns: 1fr;
  }

  .zf377acontact_phone {
    font-size: 26px;
  }

  .zf377abanner_actions {
    flex-direction: column;
    align-items: stretch;
  }

  .zf377abtn {
    width: 100%;
  }

  .zf377acontact_panel .zf377abtn_light {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .zf377acontainer {
    padding: 0 16px;
  }

  .zf377alogo_title {
    font-size: 15px;
  }

  .zf377anav_btn {
    width: 40px;
    height: 40px;
  }

  .zf377abanner_title {
    font-size: 24px;
  }

  .zf377abanner_stat {
    min-width: calc(50% - 6px);
    flex: 1;
  }

  .zf377asection_title {
    font-size: 22px;
  }

  .zf377aabout_float {
    position: static;
    margin-top: 14px;
    display: inline-block;
  }

  .zf377aframe_num {
    font-size: 22px;
  }

  .zf377aframe_title {
    font-size: 18px;
  }
}

/* 打印友好 */
@media print {
  .zf377aheader {
    position: static;
  }

  .zf377abanner,
  .zf377aprocess,
  .zf377acontact,
  .zf377afooter,
  .zf377aframe_side {
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }
}
