/* ==========================================================================
   保腾科技官网 · 纯静态合规版
   说明：本站为纯静态页面，不含任何第三方脚本、统计代码、表单收集、Cookie。
   ========================================================================== */

:root {
  --brand: #f13a3a;
  --brand-dark: #d92e2e;
  --navy: #1b1f2a;
  --navy-light: #262b38;
  --beige: #f3f1ec;
  --text: #333333;
  --muted: #888888;
  --line: #e8e8e8;
  --blue: #3b7de0;
  --gold: #c9a063;
  --radius: 6px;
  --shadow: 0 6px 24px rgba(0, 0, 0, .08);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: "Microsoft YaHei", "PingFang SC", "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  font-size: 15px;
  line-height: 1.8;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

.container { width: 1200px; max-width: 94%; margin: 0 auto; }

/* ---------- 通用板块标题（中文 + 英文小标 + 两侧横线） ---------- */
.sec { padding: 72px 0; }
.sec-title { text-align: center; margin-bottom: 48px; }
.sec-title .cn {
  display: inline-flex; align-items: center; gap: 18px;
  font-size: 30px; font-weight: 700; color: #222;
}
.sec-title .cn::before,
.sec-title .cn::after {
  content: ""; width: 64px; height: 1px; background: #c8c8c8;
}
.sec-title .en {
  margin-top: 6px; font-size: 13px; letter-spacing: 3px;
  color: #a5a5a5; text-transform: uppercase;
}
.sec-title.light .cn { color: #fff; }
.sec-title.light .cn::before,
.sec-title.light .cn::after { background: rgba(255, 255, 255, .55); }
.sec-title.light .en { color: rgba(255, 255, 255, .65); }

/* ---------- 头部 ---------- */
.site-header {
  background: #fff; border-bottom: 1px solid var(--line);
  position: sticky; top: 0; z-index: 100;
}
.site-header .container {
  display: flex; align-items: center; justify-content: space-between;
  height: 84px;
}
.logo { display: flex; align-items: center; gap: 12px; }
.logo-img {
  width: 52px; height: 52px; border-radius: 12px;
  box-shadow: 0 4px 12px rgba(241, 58, 58, .35);
  flex: none; object-fit: cover;
}
.logo-text .cn {
  font-size: 26px; font-weight: 800; color: var(--brand);
  line-height: 1.2; letter-spacing: 1px;
}
.logo-text .en {
  font-size: 15px; color: #b5b5b5; letter-spacing: 1px; font-weight: 600;
}
.main-nav { display: flex; gap: 6px; }
.main-nav a {
  padding: 9px 20px; font-size: 16px; color: #333; border-radius: 4px;
  transition: color .2s, background .2s;
}
.main-nav a:hover { color: var(--brand); }
.main-nav a.active { background: var(--brand); color: #fff; font-weight: 600; }
.nav-toggle { display: none; }

/* ---------- 首页 Banner 轮播 ---------- */
.hero { position: relative; overflow: hidden; }
.hero-track { display: flex; transition: transform .6s ease; }
.hero-slide {
  position: relative; flex: 0 0 100%; min-height: 520px;
  background-size: cover; background-position: center;
  display: flex; align-items: center;
}
.hero-slide .container { position: relative; z-index: 2; }
.hero-caption {
  max-width: 460px; padding: 38px 42px;
  background: rgba(23, 105, 184, .82);
  color: #fff; border-radius: 4px;
  backdrop-filter: blur(2px);
}
.hero-caption.red { background: rgba(241, 58, 58, .88); }
.hero-caption h2 { font-size: 34px; font-weight: 800; letter-spacing: 2px; }
.hero-caption p { margin-top: 12px; font-size: 16px; line-height: 1.9; opacity: .95; }
.hero-caption .en {
  margin-top: 18px; padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, .35);
  font-size: 12px; letter-spacing: 2px; line-height: 1.9; opacity: .8;
  text-transform: uppercase;
}
.hero-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 5;
  width: 46px; height: 46px; border: none; border-radius: 50%;
  background: rgba(0, 0, 0, .28); color: #fff; font-size: 22px;
  cursor: pointer; transition: background .2s;
}
.hero-arrow:hover { background: var(--brand); }
.hero-arrow.prev { left: 26px; }
.hero-arrow.next { right: 26px; }
.hero-dots {
  position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 10px; z-index: 5;
}
.hero-dots button {
  width: 12px; height: 12px; border-radius: 50%; border: 2px solid #fff;
  background: transparent; cursor: pointer; padding: 0;
}
.hero-dots button.on { background: #fff; }

/* ---------- 专注三卡 ---------- */
.focus-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 34px; }
.focus-card { text-align: center; }
.focus-card .pic {
  overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow);
}
.focus-card .pic img { width: 100%; height: 220px; object-fit: cover; transition: transform .5s; }
.focus-card:hover .pic img { transform: scale(1.06); }
.focus-card h3 { margin-top: 20px; font-size: 19px; color: #222; }
.focus-card .en { font-size: 12px; letter-spacing: 2px; color: #a5a5a5; text-transform: uppercase; }

/* ---------- 公司简介红色区块 ---------- */
.profile-sec {
  background: var(--brand) url("../assets/img/profile-bg.png") center / cover no-repeat;
  position: relative;
}
.profile-sec::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(241, 58, 58, .94) 30%, rgba(241, 58, 58, .72) 65%, rgba(241, 58, 58, .5));
}
.profile-flex {
  position: relative; z-index: 2;
  padding: 64px 0;
}
.profile-head { text-align: center; color: #fff; }
.profile-head h2 { font-size: 32px; font-weight: 800; letter-spacing: 2px; }
.profile-head .sub { margin-top: 10px; font-size: 15px; opacity: .92; letter-spacing: 1px; }
.profile-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin: 40px 0; }
.stat {
  background: rgba(255, 255, 255, .12); border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 12px; padding: 24px 16px; text-align: center; color: #fff;
  backdrop-filter: blur(3px); transition: background .25s, transform .25s;
}
.stat:hover { background: rgba(255, 255, 255, .2); transform: translateY(-4px); }
.stat b { display: block; font-size: 26px; font-weight: 800; letter-spacing: 1px; }
.stat i { display: block; font-style: normal; font-size: 13px; opacity: .85; margin-top: 4px; }
.profile-card {
  max-width: 860px; margin: 0 auto; position: relative;
  background: rgba(20, 22, 30, .9); border-radius: 14px;
  border-left: 5px solid #ffd6d6;
  padding: 38px 44px; font-size: 14.5px; line-height: 2.15; color: #e8e8e8;
  box-shadow: 0 18px 50px rgba(0, 0, 0, .35);
}
.profile-card p { margin-bottom: 16px; }
.profile-card p:last-child { margin-bottom: 0; }
.profile-card .hl { color: #ffd0d0; font-weight: 700; }

/* ---------- 合作险企 logo 墙（文字徽标，无第三方资源） ---------- */
.partner-wall { background: #fff; }
.partner-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
}
.partner-item {
  border: 1px solid var(--line); border-radius: var(--radius);
  height: 96px; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 2px;
  transition: box-shadow .25s, transform .25s; background: #fff;
}
.partner-item:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.partner-item .name { font-size: 19px; font-weight: 800; color: #444; letter-spacing: 1px; }
.partner-item .sub { font-size: 11px; color: #aaa; letter-spacing: 2px; text-transform: uppercase; }
.partner-more { text-align: right; margin-bottom: 14px; }
.partner-more a { color: var(--brand); font-size: 14px; font-weight: 600; }
.partner-more a:hover { text-decoration: underline; }

/* ---------- 产品 & 服务（六边形图标卡） ---------- */
.product-sec { background: var(--beige); }
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 34px; }
.product-card {
  background: #fff; border-radius: var(--radius); padding: 44px 30px 38px;
  text-align: center; box-shadow: var(--shadow);
  transition: transform .25s;
}
.product-card:hover { transform: translateY(-6px); }
.hex-img { width: 128px; height: auto; margin: 0 auto; display: block; }
.product-card h3 { margin-top: 24px; font-size: 21px; color: #222; }
.product-card p { margin-top: 10px; font-size: 13.5px; color: #777; line-height: 1.9; }

/* ---------- 快速上手展业（红色区块 + 圆形线框图标） ---------- */
.quick-sec { background: var(--brand); color: #fff; }
.quick-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.quick-item { text-align: center; }
.quick-item .circle {
  width: 108px; height: 108px; margin: 0 auto;
  border: 2px solid rgba(255, 255, 255, .85); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background .25s, transform .25s;
}
.quick-item:hover .circle { background: rgba(255, 255, 255, .14); transform: translateY(-4px); }
.quick-item .circle svg { width: 44px; height: 44px; }
.quick-item h3 { margin-top: 18px; font-size: 17px; font-weight: 600; }

/* ---------- 首页行业资讯（圆形图标条目） ---------- */
.news-circles { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px 60px; }
.news-circle-item { display: flex; align-items: center; gap: 22px; }
.news-circle-item .thumb {
  width: 92px; height: 92px; flex: none; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; color: #fff;
}
.news-circle-item .thumb svg { width: 42px; height: 42px; }
.thumb.red { background: linear-gradient(150deg, #f4483c, #d92e2e); }
.thumb.orange { background: linear-gradient(150deg, #f5a623, #e8890c); }
.thumb.blue { background: linear-gradient(150deg, #4a90e2, #2f6bc4); }
.thumb.green { background: linear-gradient(150deg, #52b788, #2d8f5b); }
.news-circle-item h3 { font-size: 16.5px; color: #333; line-height: 1.6; font-weight: 600; }
.news-circle-item h3 a:hover { color: var(--brand); }
.news-circle-item .date { margin-top: 6px; font-size: 13px; color: #e28a8a; }

/* ---------- 页脚 ---------- */
.site-footer { background: var(--navy); color: #7b818d; }
.footer-main {
  display: grid; grid-template-columns: 1.2fr 1.4fr .8fr;
  gap: 40px; padding: 56px 0 40px;
}
.footer-contact .row { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.footer-contact .ic {
  width: 44px; height: 44px; flex: none; border-radius: 50%;
  border: 1px solid #3a4152; display: flex; align-items: center; justify-content: center;
}
.footer-contact .ic svg { width: 20px; height: 20px; }
.footer-contact .num { font-size: 22px; color: #d8dbe2; font-weight: 700; }
.footer-contact .lbl { font-size: 12px; color: #666e7d; }
.footer-nav { display: grid; grid-template-columns: repeat(2, minmax(90px, 1fr)); gap: 10px 30px; align-content: start; }
.footer-nav a { font-size: 14px; transition: color .2s; }
.footer-nav a:hover { color: #fff; }
.footer-wechat .box {
  border: 1px solid #3a4152; border-radius: var(--radius);
  padding: 18px 16px; text-align: center; font-size: 13px; line-height: 2;
}
.footer-wechat .box b { color: #d8dbe2; }
.footer-bottom {
  border-top: 1px solid #2a3040; padding: 18px 0;
  font-size: 12.5px; text-align: center; color: #5d6472;
}
.footer-bottom a { color: #5d6472; }
.footer-bottom a:hover { color: #aab; }
.footer-bottom span { margin: 0 10px; }

/* ---------- 子页页头横幅 ---------- */
.page-banner {
  position: relative; min-height: 300px;
  background-size: cover; background-position: center;
  display: flex; align-items: center; justify-content: center;
  text-align: center; color: #fff;
}
.page-banner::before { content: ""; position: absolute; inset: 0; background: rgba(10, 16, 30, .35); }
.page-banner .inner { position: relative; z-index: 2; padding: 60px 0; }
.page-banner h1 { font-size: 38px; font-weight: 800; letter-spacing: 4px; }
.page-banner .en { margin-top: 8px; font-size: 14px; letter-spacing: 4px; opacity: .8; text-transform: uppercase; }
.page-banner .lead { margin-top: 14px; font-size: 16px; opacity: .92; }

/* ---------- 平台展业页 ---------- */
.pf-intro { text-align: center; padding: 60px 0 10px; }
.pf-intro .lead { font-size: 20px; color: #555; font-weight: 600; }
.pf-block { padding: 60px 0; }
.pf-block.gray { background: var(--beige); }
.pf-block.red { background: var(--brand); color: #fff; }
.pf-head { display: flex; align-items: center; gap: 30px; margin-bottom: 40px; }
.pf-icon {
  width: 110px; height: 110px; flex: none; border-radius: 26px;
  background: linear-gradient(135deg, #f4483c, #d92e2e);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 26px rgba(241, 58, 58, .35);
}
.pf-icon.blue { background: linear-gradient(135deg, #4a90e2, #2f6bc4); box-shadow: 0 10px 26px rgba(59, 125, 224, .35); }
.pf-icon.white { background: #fff; box-shadow: 0 10px 26px rgba(0, 0, 0, .18); }
.pf-icon svg { width: 56px; height: 56px; }
.pf-head .desc { font-size: 15px; color: #666; line-height: 2; }
.pf-block.red .pf-head .desc { color: rgba(255, 255, 255, .92); }
.point-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.point-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.point-card {
  background: #fff; border-radius: var(--radius); padding: 30px 24px;
  text-align: center; box-shadow: var(--shadow); height: 100%;
}
.point-card .big {
  width: 62px; height: 62px; margin: 0 auto 16px; border-radius: 50%;
  background: rgba(241, 58, 58, .1); color: var(--brand);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; font-weight: 800;
}
.point-card.blue .big { background: rgba(59, 125, 224, .12); color: var(--blue); }
.pf-block.red .point-card { background: rgba(255, 255, 255, .1); box-shadow: none; color: #fff; }
.pf-block.red .point-card .big { background: rgba(255, 255, 255, .16); color: #fff; }
.point-card h3 { font-size: 17px; margin-bottom: 8px; }
.point-card p { font-size: 13px; color: #777; line-height: 1.9; }
.pf-block.red .point-card p { color: rgba(255, 255, 255, .85); }
.flow-steps { display: flex; align-items: stretch; gap: 0; margin-top: 44px; }
.flow-step {
  flex: 1; text-align: center; position: relative; padding: 0 10px;
}
.flow-step .no {
  width: 58px; height: 58px; margin: 0 auto 14px; border-radius: 50%;
  background: var(--brand); color: #fff; font-size: 20px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}
.flow-step:not(:last-child)::after {
  content: ""; position: absolute; top: 29px; left: calc(50% + 38px); right: calc(-50% + 38px);
  border-top: 2px dashed #e5b1b1;
}
.flow-step h4 { font-size: 15.5px; color: #333; }
.flow-step p { font-size: 12.5px; color: #999; margin-top: 4px; }

/* ---------- 保险产品页 ---------- */
.ins-banner-tags { display: flex; gap: 14px; justify-content: center; margin-top: 20px; }
.ins-banner-tags span {
  background: #ffd964; color: #7a5b00; font-weight: 700; font-size: 14px;
  padding: 6px 18px; border-radius: 999px;
}
.ins-type-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.ins-type {
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px 12px; text-align: center; background: #fff;
  transition: all .25s;
}
.ins-type:hover { border-color: var(--brand); box-shadow: var(--shadow); transform: translateY(-3px); }
.ins-type .ic { display: flex; justify-content: center; margin-bottom: 12px; color: var(--brand); }
.ins-type .ic svg { width: 34px; height: 34px; }
.ins-type h4 { font-size: 14.5px; color: #333; font-weight: 600; }
.ins-slogan { text-align: center; color: var(--brand); font-weight: 700; font-size: 18px; margin-bottom: 30px; letter-spacing: 1px; }
.claims-sec { background: var(--brand); color: #fff; }
.faq-item { border: 1px solid var(--line); border-radius: var(--radius); margin-bottom: 14px; background: #fff; overflow: hidden; }
.faq-item summary {
  cursor: pointer; padding: 18px 24px; font-weight: 700; color: #333;
  list-style: none; position: relative; font-size: 15.5px;
}
.faq-item summary::after {
  content: "+"; position: absolute; right: 24px; top: 50%; transform: translateY(-50%);
  color: var(--brand); font-size: 20px; font-weight: 400;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item .ans { padding: 0 24px 20px; color: #666; font-size: 14px; line-height: 2; }

/* ---------- 行业资讯页 ---------- */
.news-tabs { display: flex; gap: 10px; justify-content: center; margin-bottom: 40px; flex-wrap: wrap; }
.news-tabs button {
  border: 1px solid var(--line); background: #fff; color: #555;
  padding: 8px 24px; border-radius: 999px; font-size: 14px; cursor: pointer;
  transition: all .2s;
}
.news-tabs button.on, .news-tabs button:hover { background: var(--brand); border-color: var(--brand); color: #fff; }
.news-list-item {
  display: flex; gap: 26px; padding: 26px 0; border-bottom: 1px solid var(--line);
  align-items: flex-start;
}
.news-list-item .thumb2 {
  width: 200px; height: 130px; flex: none; border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center; color: #fff;
}
.news-list-item .thumb2 svg { width: 52px; height: 52px; }
.news-list-item .body { flex: 1; min-width: 0; }
.news-list-item h3 { font-size: 19px; color: #222; line-height: 1.6; }
.news-list-item h3 a:hover { color: var(--brand); }
.news-list-item .sum {
  margin-top: 8px; font-size: 13.5px; color: #888; line-height: 1.9;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.news-list-item .meta { margin-top: 10px; font-size: 12.5px; color: #aaa; display: flex; gap: 14px; align-items: center; }
.news-list-item .tag {
  border: 1px solid #f3c1c1; color: var(--brand); border-radius: 3px;
  padding: 1px 10px; font-size: 12px;
}

/* ---------- 新闻详情页 ---------- */
.article { max-width: 860px; margin: 0 auto; padding: 60px 0; }
.article .cat { color: var(--brand); font-size: 13px; letter-spacing: 1px; }
.article h1 { font-size: 28px; line-height: 1.6; margin: 10px 0 14px; color: #222; }
.article .meta { color: #999; font-size: 13px; padding-bottom: 24px; border-bottom: 1px solid var(--line); margin-bottom: 30px; }
.article .content p { margin-bottom: 18px; font-size: 15.5px; line-height: 2.1; color: #444; }
.article .content .lead { font-size: 16.5px; color: #333; font-weight: 600; }
.article-nav { margin-top: 44px; padding-top: 22px; border-top: 1px solid var(--line); font-size: 14px; color: #888; }
.article-nav a { color: var(--brand); }
.back-link { display: inline-block; margin-top: 30px; color: var(--brand); font-size: 14px; }
.back-link:hover { text-decoration: underline; }

/* ---------- 代理人家园页 ---------- */
.agent-block { padding: 56px 0; }
.agent-block.gray { background: var(--beige); }
.agent-sub { text-align: center; color: #999; font-size: 14px; margin-top: -34px; margin-bottom: 40px; letter-spacing: 2px; }
.course-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.course-item {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 20px; text-align: center; transition: all .25s;
}
.course-item:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.course-item .ic { display: flex; justify-content: center; margin-bottom: 14px; color: var(--brand); }
.course-item .ic svg { width: 36px; height: 36px; }
.course-item h4 { font-size: 15.5px; color: #333; }
.insurer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.insurer-item {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px 18px; text-align: center; transition: all .25s;
}
.insurer-item:hover { border-color: var(--brand); box-shadow: var(--shadow); }
.insurer-item .abbr {
  width: 52px; height: 52px; margin: 0 auto 12px; border-radius: 50%;
  background: rgba(241, 58, 58, .1); color: var(--brand);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 800;
}
.insurer-item h4 { font-size: 15.5px; color: #333; }

/* ---------- 关于我们页 ---------- */
.mission-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.mission-card {
  border-radius: var(--radius); padding: 36px 30px; background: var(--beige);
  border-top: 4px solid var(--brand);
}
.mission-card h3 { font-size: 18px; color: var(--brand); margin-bottom: 10px; }
.mission-card p { font-size: 14px; color: #666; line-height: 2; }
.about-profile { display: grid; grid-template-columns: 460px 1fr; gap: 50px; align-items: center; }
.about-profile .pic img { border-radius: var(--radius); box-shadow: var(--shadow); }
.about-profile h2 { color: var(--brand); font-size: 26px; }
.about-profile .en { color: #bbb; font-size: 13px; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 18px; }
.about-profile p { font-size: 14.5px; color: #555; line-height: 2.2; margin-bottom: 12px; }
.history-tabs { display: flex; justify-content: center; gap: 14px; margin-bottom: 40px; }
.history-tabs button {
  border: none; background: #eee; color: #555; font-size: 16px; font-weight: 700;
  padding: 10px 34px; border-radius: 999px; cursor: pointer; transition: all .2s;
}
.history-tabs button.on { background: var(--brand); color: #fff; }
.timeline { position: relative; padding-left: 30px; }
.timeline::before { content: ""; position: absolute; left: 7px; top: 6px; bottom: 6px; width: 2px; background: #f3c1c1; }
.timeline li { position: relative; padding: 0 0 26px 26px; }
.timeline li::before {
  content: ""; position: absolute; left: -30px; top: 8px;
  width: 12px; height: 12px; border-radius: 50%; background: var(--brand);
  box-shadow: 0 0 0 4px rgba(241, 58, 58, .15);
}
.timeline .t { font-weight: 700; color: #333; }
.timeline .d { color: #777; font-size: 14px; margin-top: 2px; }
.job-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.job-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 22px; text-align: center; transition: all .25s;
}
.job-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); border-color: var(--brand); }
.job-card h4 { font-size: 17px; color: #222; }
.job-card .type { margin-top: 8px; font-size: 12.5px; color: var(--brand); }
.job-card p { margin-top: 10px; font-size: 13px; color: #888; }
.job-mail { text-align: center; margin-top: 34px; font-size: 15px; color: #666; }
.job-mail b { color: var(--brand); }

/* ---------- 联系我们页 ---------- */
.contact-banner {
  background: linear-gradient(120deg, rgba(20, 59, 115, .78), rgba(30, 111, 217, .6)), url("../assets/img/contact-banner.jpg") center / cover no-repeat;
  color: #fff; text-align: center; padding: 90px 0; position: relative; overflow: hidden;
}
.contact-banner h1 { font-size: 36px; letter-spacing: 6px; font-weight: 800; }
.contact-banner .en { letter-spacing: 4px; font-size: 13px; opacity: .75; margin-top: 10px; text-transform: uppercase; }
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.contact-card { text-align: center; padding: 20px 16px; }
.contact-card .ic {
  width: 92px; height: 92px; margin: 0 auto 20px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; color: #fff;
}
.contact-card .ic svg { width: 40px; height: 40px; }
.contact-card .ic.orange { background: linear-gradient(150deg, #f5a623, #e8890c); }
.contact-card .ic.blue { background: linear-gradient(150deg, #5aa0f2, #2f6bc4); }
.contact-card .ic.red { background: linear-gradient(150deg, #f4483c, #d92e2e); }
.contact-card h3 { font-size: 16px; color: #333; line-height: 1.9; font-weight: 600; }
.contact-card h3 a:hover { color: var(--brand); }
.addr-panel {
  background: var(--beige); border-radius: var(--radius);
  padding: 46px 50px; display: flex; gap: 40px; align-items: center;
}
.addr-panel .map-ic { flex: none; color: var(--brand); }
.addr-panel .map-ic svg { width: 64px; height: 64px; }
.addr-panel h3 { font-size: 20px; color: #222; margin-bottom: 8px; }
.addr-panel p { color: #666; font-size: 14.5px; line-height: 2; }
.coop-panel { text-align: center; }
.coop-panel .cards { display: flex; justify-content: center; gap: 30px; margin-top: 36px; flex-wrap: wrap; }
.coop-card {
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 44px; background: #fff; box-shadow: var(--shadow);
}
.coop-card .lbl { font-size: 13px; color: #999; }
.coop-card .val { font-size: 22px; font-weight: 800; color: var(--brand); margin-top: 4px; }
.coop-card .val a:hover { text-decoration: underline; }

/* ---------- 原站素材图片样式 ---------- */
.partner-item img { max-width: 82%; max-height: 60px; object-fit: contain; }
.thumb-img { width: 92px; height: 92px; border-radius: 50%; object-fit: cover; flex: none; box-shadow: var(--shadow); }
.quick-item .circle img { width: 48px; height: 48px; object-fit: contain; }
.point-ic { width: 72px; height: 72px; object-fit: contain; margin: 0 auto 16px; display: block; }
.flow-ic { width: 84px; height: 84px; object-fit: contain; margin: 0 auto 14px; display: block; }
.claim-ic { width: 76px; height: 76px; object-fit: contain; margin: 0 auto 14px; display: block; }
.pf-logo { width: 110px; height: 110px; border-radius: 26px; object-fit: cover; flex: none; box-shadow: 0 10px 26px rgba(0, 0, 0, .18); }
.thumb2-img { width: 200px; height: 130px; object-fit: cover; border-radius: var(--radius); flex: none; }
.ins-ic { width: 72px; height: 72px; object-fit: contain; margin: 0 auto 12px; display: block; }
.insurer-logo { width: 72px; height: 72px; object-fit: cover; border-radius: 10px; margin: 0 auto 12px; display: block; }
.contact-ic { width: 92px; height: 92px; border-radius: 50%; margin: 0 auto 20px; display: block; }
.footer-wechat .box img { width: 118px; display: block; margin: 0 auto 10px; border-radius: 8px; }
.street-sec { background: url("../assets/img/street.jpg") center / cover no-repeat; position: relative; }
.street-sec::before { content: ""; position: absolute; inset: 0; background: rgba(255, 255, 255, .9); }
.street-sec .container { position: relative; z-index: 2; }

/* ---------- 回到顶部（纯前端，无网络请求） ---------- */
.to-top {
  position: fixed; right: 26px; bottom: 30px; z-index: 90;
  width: 46px; height: 46px; border: none; border-radius: 6px;
  background: #f5a623; color: #fff; font-size: 20px; cursor: pointer;
  opacity: 0; pointer-events: none; transition: opacity .3s, background .2s;
  box-shadow: 0 6px 16px rgba(0, 0, 0, .18);
}
.to-top.show { opacity: 1; pointer-events: auto; }
.to-top:hover { background: var(--brand); }

/* ---------- 滚动显现（默认可见，JS 添加隐藏类，异常时内容不丢失） ---------- */
.js .rv { opacity: 0; transform: translateY(26px); transition: opacity .6s ease, transform .6s ease; }
.js .rv.on { opacity: 1; transform: none; }

/* ---------- 响应式 ---------- */
@media (max-width: 960px) {
  .site-header .container { height: 64px; }
  .logo-text .cn { font-size: 20px; }
  .logo-text .en { font-size: 11px; }
  .logo-img { width: 40px; height: 40px; border-radius: 9px; }
  .nav-toggle {
    display: block; border: 1px solid var(--line); background: #fff;
    width: 42px; height: 38px; border-radius: 6px; font-size: 18px; cursor: pointer; color: #333;
  }
  .main-nav {
    display: none; position: absolute; top: 64px; left: 0; right: 0;
    background: #fff; flex-direction: column; padding: 10px 4%;
    border-bottom: 1px solid var(--line); box-shadow: var(--shadow); gap: 2px;
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 12px 10px; }
  .focus-grid, .product-grid, .mission-grid, .contact-grid { grid-template-columns: 1fr; }
  .quick-grid, .partner-grid, .point-grid, .ins-type-grid, .course-grid, .insurer-grid, .job-grid { grid-template-columns: repeat(2, 1fr); }
  .news-circles { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; gap: 28px; padding: 40px 0 26px; }
  .hero-slide { min-height: 380px; }
  .hero-caption { max-width: 100%; padding: 26px; }
  .hero-caption h2 { font-size: 24px; }
  .profile-sec { background: var(--brand); }
  .profile-sec::before { display: none; }
  .profile-stats { grid-template-columns: repeat(2, 1fr); gap: 14px; margin: 30px 0; }
  .profile-card { padding: 28px 24px; }
  .profile-head h2 { font-size: 24px; }
  .thumb2-img { width: 100%; height: 170px; }
  .about-profile { grid-template-columns: 1fr; }
  .news-list-item { flex-direction: column; }
  .news-list-item .thumb2 { width: 100%; height: 120px; }
  .flow-steps { flex-direction: column; gap: 22px; }
  .flow-step:not(:last-child)::after { display: none; }
  .addr-panel { flex-direction: column; text-align: center; }
  .sec { padding: 50px 0; }
  .sec-title .cn { font-size: 23px; }
  .sec-title .cn::before, .sec-title .cn::after { width: 30px; }
}
