/* 小鲸科技 · AI防溺水系统官网 —— 海洋安全主题配色 */
:root {
  --deep: #03293f;          /* 深海蓝 */
  --deep-2: #04314c;
  --primary: #0e6ba8;       /* 海洋蓝 */
  --accent: #00b4d8;        /* 清亮青 */
  --accent-2: #48cae4;
  --accent-3: #90e0ef;
  --foam: #eaf6fb;          /* 浪花白 */
  --ink: #1d3557;
  --text: #33475b;
  --muted: #7a8b99;
  --grad: linear-gradient(135deg, #04314c 0%, #0e6ba8 55%, #00b4d8 100%);
  --grad-btn: linear-gradient(90deg, #0e6ba8, #00b4d8);
  --radius: 10px;
  --shadow: 0 10px 30px rgba(3, 41, 63, .12);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans SC", "Helvetica Neue", Arial, sans-serif;
  color: var(--text); background: #fff; font-size: 15px; line-height: 1.7;
}
img { max-width: 100%; border: 0; }
a { color: inherit; text-decoration: none; transition: color .25s, background .25s, opacity .25s; }
ul, li { list-style: none; }
.container { width: 1200px; max-width: 94%; margin: 0 auto; }
.clear::after { content: ""; display: block; clear: both; }

/* ---------- 顶部 Header ---------- */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(3, 41, 63, .0); transition: background .3s, box-shadow .3s;
}
.header.solid, .header.inner {
  background: rgba(255, 255, 255, .96); backdrop-filter: blur(10px);
  box-shadow: 0 2px 18px rgba(3, 41, 63, .12);
}
.header.solid .nav-box > li > a, .header.inner .nav-box > li > a { color: var(--ink); }
.header.solid .nav-box > li > a:hover, .header.inner .nav-box > li > a:hover,
.header.solid .nav-box > li > a.cur, .header.inner .nav-box > li > a.cur { color: var(--primary); }
.header.solid .header-search, .header.inner .header-search { color: var(--ink); }
.header-content { width: 1680px; max-width: 94%; margin: 0 auto; display: flex; align-items: center; height: 76px; }
.header-logo .logo { display: flex; align-items: center; gap: 8px; }
.header-logo { margin-left: 42px; }
.header-logo img { height: 44px; }
.header-logo .img1 { display: none; }
.header-logo .img2 { display: block; }
.header:not(.solid):not(.inner) .header-logo .img1 { display: block; }
.header:not(.solid):not(.inner) .header-logo .img2 { display: none; }
.header-nav { flex: 1; display: flex; justify-content: flex-end; align-items: center; }
.nav-box { display: flex; align-items: center; }
.nav-box > li { position: relative; }
.nav-box > li > a {
  display: block; padding: 26px 17px; color: #eaf6fb; font-size: 16px; letter-spacing: 1px; position: relative;
}
.nav-box > li > a::after {
  content: ""; position: absolute; left: 50%; bottom: 18px; width: 0; height: 3px; border-radius: 2px;
  background: var(--accent); transition: all .3s; transform: translateX(-50%);
}
.nav-box > li > a:hover, .nav-box > li > a.cur { color: var(--accent-2); }
.nav-box > li > a:hover::after, .nav-box > li > a.cur::after { width: 24px; }
/* 下拉菜单 */
.nav-box li ul.one {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%); min-width: 200px;
  background: #fff; border-radius: 0 0 var(--radius) var(--radius); box-shadow: var(--shadow);
  padding: 8px 0; display: none; border-top: 3px solid var(--accent);
}
.nav-box li:hover > ul.one { display: block; animation: dropIn .25s ease; }
@keyframes dropIn { from { opacity: 0; transform: translate(-50%, 8px); } to { opacity: 1; transform: translate(-50%, 0); } }
.nav-box ul.one > li { position: relative; }
.nav-box ul.one > li > a {
  display: block; padding: 10px 22px; color: var(--text); font-size: 14px; white-space: nowrap;
}
.nav-box ul.one > li > a:hover { color: var(--primary); background: var(--foam); padding-left: 28px; }
.nav-box ul.two {
  position: absolute; left: 100%; top: 0; min-width: 220px; background: #fff; box-shadow: var(--shadow);
  border-radius: 0 var(--radius) var(--radius) 0; padding: 8px 0; display: none;
}
.nav-box ul.one > li:hover > ul.two { display: block; }
.nav-box ul.two li a { display: block; padding: 9px 20px; font-size: 13px; color: var(--muted); white-space: nowrap; }
.nav-box ul.two li a:hover { color: var(--accent); background: var(--foam); }
.header-search { margin-left: 18px; cursor: pointer; display: flex; color: #fff; }
.header-search svg { opacity: .9; }
.header-search:hover svg { opacity: 1; }

/* 宽屏桌面：导航整体水平居中（Logo 在左，搜索在右） */
@media (min-width: 1300px) {
  .header-content { position: relative; }
  .header-nav .nav-box { position: absolute; left: 50%; top: 0; transform: translateX(-50%); }
  .header-nav .nav-box > li { flex-shrink: 0; }
  .header-nav .nav-box > li > a { white-space: nowrap; }
}

/* 搜索弹层 */
.search-box { position: fixed; inset: 0; z-index: 200; display: none; }
.search-box.open { display: block; }
.search-box-bg { position: absolute; inset: 0; background: rgba(3, 41, 63, .9); }
.search-form {
  position: relative; width: 640px; max-width: 90%; margin: 22vh auto 0; display: flex;
  background: #fff; border-radius: 40px; overflow: hidden; box-shadow: var(--shadow);
}
.search-text { flex: 1; border: 0; outline: 0; padding: 16px 26px; font-size: 16px; color: var(--ink); }
.search-submit {
  border: 0; cursor: pointer; width: 90px; background: var(--grad-btn); color: #fff; font-size: 16px;
}

/* 移动端头部 */
.mheader { display: none; }
.menu-toggle span { display: block; }

/* ---------- 首页 Banner ---------- */
.in-banner { position: relative; height: 100vh; min-height: 560px; overflow: hidden; background: var(--deep); }
.in-banner video, .in-banner .mimg {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .75;
}
.in-banner .mimg { display: none; }
.in-banner::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(3,41,63,.55) 0%, rgba(3,41,63,.15) 45%, rgba(3,41,63,.65) 100%);
}
.in-banner .title-box {
  position: absolute; z-index: 3; left: 50%; top: 50%; transform: translate(-50%, -50%);
  text-align: center; width: 900px; max-width: 92%; color: #fff;
}
.in-banner .title-box h5 {
  font-size: 52px; letter-spacing: 4px; font-weight: 700; text-shadow: 0 4px 24px rgba(0, 20, 40, .5);
}
.in-banner .title-box h5 em { color: var(--accent-2); font-style: normal; }
.in-banner .title-box .small { margin-top: 18px; font-size: 18px; letter-spacing: 3px; color: #d8f2fa; }
.banner-more {
  display: inline-block; margin-top: 42px; padding: 0 8px;
}
.banner-more .d-more {
  padding: 13px 44px; border-radius: 40px; background: var(--grad-btn); color: #fff; font-size: 16px;
  letter-spacing: 2px; box-shadow: 0 8px 24px rgba(0, 180, 216, .4); transition: transform .25s, box-shadow .25s;
}
.banner-more:hover .d-more { transform: translateY(-3px); box-shadow: 0 14px 30px rgba(0, 180, 216, .5); }
.banner-wave { position: absolute; bottom: -2px; left: 0; width: 100%; z-index: 2; display: block; }

/* ---------- 通用版块标题 ---------- */
.section-title {
  text-align: center; font-size: 34px; color: var(--ink); font-weight: 700; letter-spacing: 2px; position: relative;
  padding-bottom: 18px;
}
.section-title::after {
  content: ""; position: absolute; left: 50%; bottom: 0; transform: translateX(-50%);
  width: 56px; height: 4px; border-radius: 2px; background: var(--grad-btn);
}
.section-sub { text-align: center; color: var(--muted); margin-top: 10px; letter-spacing: 1px; }

/* ---------- 最新产品 ---------- */
.in-product { padding: 88px 0 96px; background:
  radial-gradient(1200px 400px at 50% -200px, var(--foam), #fff); }
.product-wrapper { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 54px; }
.product-item > div, .product-card {
  background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow);
  transition: transform .3s, box-shadow .3s; height: 100%;
}
.product-item > div:hover, .product-card:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(3, 41, 63, .2); }
.img-product {
  display: block; height: 240px; background-size: cover; background-position: center; position: relative;
}
.img-product::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(3, 41, 63, .82) 100%);
}
.product-des { position: absolute; left: 0; right: 0; bottom: 0; padding: 20px 22px; color: #fff; }
.product-des h4 { font-size: 17px; font-weight: 600; line-height: 1.5; }
.product-des h6 { font-size: 13px; color: #bdeaf6; font-weight: 400; margin-top: 6px; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
.product-des span { display: inline-flex; align-items: center; gap: 6px; margin-top: 12px; font-size: 13px; color: var(--accent-2); }
.product-des span img { width: 14px; height: 14px; filter: brightness(0) invert(1); }

/* ---------- 公司简介 ---------- */
.in-company { padding: 90px 0; background: linear-gradient(150deg, #0868a8 0%, #0e86c8 45%, #12a8e0 100%); position: relative; overflow: hidden; }
.in-company::before {
  content: ""; position: absolute; right: -160px; top: -160px; width: 480px; height: 480px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, .18), transparent 65%);
}
.company-wrapper { display: flex; gap: 60px; align-items: center; position: relative; z-index: 2; }
.company-wrapper .left { flex: 1.15; color: #eaf6fb; }
.company-title { font-size: 34px; color: #fff; font-weight: 700; letter-spacing: 2px; }
.company-title::after { content: ""; display: block; width: 56px; height: 4px; border-radius: 2px; background: var(--grad-btn); margin-top: 14px; }
.company-wrapper .roll { display: flex; gap: 44px; margin: 30px 0; }
.company-wrapper .sum { font-size: 15px; color: #9fd8ea; }
.company-wrapper .sum span {
  font-size: 40px; font-weight: 700; color: var(--accent-2); margin: 0 6px; font-family: "DIN Alternate", "Arial", sans-serif;
}
.company-wrapper .introduce { font-size: 14.5px; line-height: 2; color: #e3f4fb; text-align: justify; }
.company-more { display: inline-block; margin-top: 30px; padding: 11px 36px; border: 1px solid var(--accent); color: var(--accent-2); border-radius: 30px; }
.company-more:hover { background: var(--accent); color: #fff; }
.company-wrapper .right { flex: 1; }
.company-wrapper .bigimg { border-radius: var(--radius); overflow: hidden; box-shadow: 0 24px 60px rgba(0, 10, 25, .5); }
.company-wrapper .bigimg img { display: block; width: 100%; }

/* ---------- 新闻中心 ---------- */
.in-news { padding: 90px 0; background: #fff; }
.news-name { display: flex; justify-content: space-between; align-items: flex-end; }
.news-title { font-size: 34px; color: var(--ink); font-weight: 700; letter-spacing: 2px; }
.news-title::after { content: ""; display: block; width: 56px; height: 4px; border-radius: 2px; background: var(--grad-btn); margin-top: 12px; }
.news-more { display: flex; align-items: center; gap: 6px; color: var(--muted); }
.news-more:hover { color: var(--primary); }
.news-content { display: flex; gap: 40px; margin-top: 46px; }
.news-latest { flex: 1.05; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); position: relative; }
.news-latest .swiper-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.news-list { flex: 1; }
.news-item { border-bottom: 1px dashed #d8e6ee; padding: 20px 10px; transition: background .25s; }
.news-item:last-child { border-bottom: 0; }
.news-item:hover { background: var(--foam); }
.news-date { color: var(--accent); font-size: 13px; letter-spacing: 1px; }
.news-item .news-title-t { font-size: 17px; color: var(--ink); font-weight: 600; margin: 6px 0; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
.news-item:hover .news-title-t { color: var(--primary); }
.news-msg { color: var(--muted); font-size: 13.5px; overflow: hidden; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }

/* ---------- 内页 Banner ---------- */
.inner-banner {
  height: 380px; background-size: cover; background-position: center; position: relative;
  display: flex; align-items: center; justify-content: center; text-align: center; color: #fff;
  background-color: var(--deep);
}
.inner-banner::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(3,41,63,.72), rgba(3,41,63,.45)); }
.inner-banner .t1 { position: relative; font-size: 40px; font-weight: 700; letter-spacing: 4px; }
.inner-banner .t2 { position: relative; margin-top: 14px; font-size: 15px; color: #cdeef8; letter-spacing: 1px; }

/* ---------- 面包屑 + 侧栏导航 ---------- */
.crumb-bar { background: var(--foam); border-bottom: 1px solid #dceef5; }
.crumb-bar .container { display: flex; align-items: center; height: 54px; font-size: 14px; color: var(--muted); gap: 8px; flex-wrap: wrap; }
.crumb-bar a:hover { color: var(--primary); }
.crumb-bar .sep { color: #b6ccd8; }

.sub-layout { display: flex; gap: 36px; padding: 46px 0 70px; }
.sub-side { width: 240px; flex-shrink: 0; }
.sub-side .side-title {
  background: var(--grad); color: #fff; border-radius: var(--radius) var(--radius) 0 0;
  padding: 18px 22px; font-size: 18px; letter-spacing: 2px; font-weight: 600;
}
.sub-side ul { border: 1px solid #e2eef4; border-top: 0; border-radius: 0 0 var(--radius) var(--radius); overflow: hidden; }
.sub-side li a {
  display: block; padding: 14px 22px; border-bottom: 1px solid #edf4f8; color: var(--text); font-size: 15px;
  position: relative;
}
.sub-side li a::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: transparent; }
.sub-side li a:hover, .sub-side li a.cur { color: var(--primary); background: var(--foam); }
.sub-side li a.cur { font-weight: 600; }
.sub-side li a.cur::before { background: var(--accent); }
.sub-main { flex: 1; min-width: 0; }

/* ---------- 产品/方案/案例 卡片网格 ---------- */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.g-card { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: transform .3s, box-shadow .3s; }
.g-card:hover { transform: translateY(-5px); box-shadow: 0 16px 36px rgba(3, 41, 63, .18); }
.g-card .pic { height: 210px; background: var(--foam) center/cover no-repeat; display: block; }
.g-card .pic img { width: 100%; height: 100%; object-fit: cover; display: block; }
.g-card .body { padding: 18px 20px 20px; }
.g-card h4 { font-size: 16.5px; color: var(--ink); font-weight: 600; line-height: 1.5; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
.g-card:hover h4 { color: var(--primary); }
.g-card p { margin-top: 8px; font-size: 13.5px; color: var(--muted); overflow: hidden; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }
.g-card .date { color: var(--accent); font-size: 12.5px; margin-top: 10px; letter-spacing: 1px; }

/* ---------- 详情页 ---------- */
.detail-title { font-size: 28px; color: var(--ink); font-weight: 700; letter-spacing: 1px; }
.detail-meta { color: var(--muted); font-size: 13.5px; margin: 14px 0 24px; padding-bottom: 18px; border-bottom: 1px solid #e4eef4; display: flex; gap: 26px; }
.detail-meta span b { color: var(--accent); font-weight: 500; }
.content-html { font-size: 15px; line-height: 2; color: var(--text); }
.content-html img { max-width: 100%; height: auto; border-radius: 6px; margin: 10px 0; }
.content-html h1, .content-html h2, .content-html h3, .content-html h4 { color: var(--ink); margin: 22px 0 10px; }
.content-html p { margin-bottom: 12px; }
.content-html table { border-collapse: collapse; width: 100%; margin: 14px 0; }
.content-html td, .content-html th { border: 1px solid #d8e6ee; padding: 8px 12px; }
.content-html .tab-title {
  margin-top: 30px; padding-left: 14px; border-left: 4px solid var(--accent); font-size: 20px;
}

/* 产品详情头部 */
.pd-top { display: flex; gap: 44px; margin-bottom: 40px; }
.pd-gallery { flex: 1; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); background: var(--foam); }
.pd-gallery .main-img { width: 100%; height: 380px; object-fit: contain; display: block; background: #fff; }
.pd-thumbs { display: flex; gap: 10px; padding: 12px; background: #fff; }
.pd-thumbs img { width: 76px; height: 56px; object-fit: cover; border-radius: 6px; cursor: pointer; opacity: .65; border: 2px solid transparent; }
.pd-thumbs img.cur, .pd-thumbs img:hover { opacity: 1; border-color: var(--accent); }
.pd-info { flex: 1; }
.pd-info h1 { font-size: 26px; color: var(--ink); line-height: 1.5; }
.pd-info .desc { margin-top: 18px; color: var(--muted); font-size: 14.5px; line-height: 2; background: var(--foam); border-radius: var(--radius); padding: 20px 24px; }
.pd-info .query {
  display: inline-block; margin-top: 28px; padding: 13px 46px; border-radius: 34px; background: var(--grad-btn);
  color: #fff; font-size: 16px; letter-spacing: 2px; box-shadow: 0 8px 20px rgba(0, 180, 216, .35);
}
.pd-info .query:hover { opacity: .92; }

/* ---------- 常见问题 ---------- */
.faq-item { border: 1px solid #e2eef4; border-radius: var(--radius); margin-bottom: 16px; overflow: hidden; }
.faq-q {
  padding: 18px 24px; font-size: 16px; color: var(--ink); font-weight: 600; cursor: pointer; display: flex;
  justify-content: space-between; align-items: center; background: #fff;
}
.faq-q::after { content: "+"; font-size: 22px; color: var(--accent); transition: transform .25s; }
.faq-item.open .faq-q { color: var(--primary); background: var(--foam); }
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a { display: none; padding: 6px 24px 22px; }
.faq-item.open .faq-a { display: block; }

/* ---------- 资料下载 ---------- */
.down-item {
  display: flex; align-items: center; justify-content: space-between; background: #fff; border: 1px solid #e2eef4;
  border-radius: var(--radius); padding: 20px 28px; margin-bottom: 16px; transition: box-shadow .25s, transform .25s;
}
.down-item:hover { box-shadow: var(--shadow); transform: translateX(4px); }
.down-item .t { font-size: 16px; color: var(--ink); font-weight: 600; }
.down-item .t::before { content: "📄"; margin-right: 10px; }
.down-item .d { color: var(--muted); font-size: 13px; margin-top: 4px; }
.down-item .btn { padding: 9px 28px; border-radius: 24px; background: var(--grad-btn); color: #fff; font-size: 14px; flex-shrink: 0; }
.down-item .btn:hover { opacity: .9; }

/* ---------- 招聘 ---------- */
.job-intro { background: var(--foam); border-radius: var(--radius); padding: 22px 28px; color: var(--text); margin-bottom: 28px; line-height: 2; }
.job-item { border: 1px solid #e2eef4; border-radius: var(--radius); margin-bottom: 20px; overflow: hidden; }
.job-head { display: flex; flex-wrap: wrap; gap: 12px 34px; padding: 18px 26px; background: #fff; cursor: pointer; }
.job-head .jt { width: 100%; font-size: 18px; color: var(--ink); font-weight: 700; }
.job-head span { color: var(--muted); font-size: 14px; }
.job-head span b { color: var(--primary); font-weight: 500; }
.job-body { display: none; padding: 4px 26px 24px; border-top: 1px dashed #e2eef4; }
.job-item.open .job-body { display: block; }

/* ---------- 知识产权 ---------- */
.honor-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.honor-item { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); cursor: zoom-in; }
.honor-item img { width: 100%; height: 220px; object-fit: cover; display: block; }
.honor-item .n { padding: 12px 16px; font-size: 13.5px; color: var(--text); text-align: center; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }

/* ---------- 联系我们 ---------- */
.contact-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-bottom: 50px; }
.contact-card { text-align: center; background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); padding: 34px 18px; }
.contact-card .ico {
  width: 58px; height: 58px; margin: 0 auto 14px; border-radius: 50%; background: var(--grad);
  display: flex; align-items: center; justify-content: center; font-size: 24px; color: #fff;
}
.contact-card .l { color: var(--muted); font-size: 14px; }
.contact-card .v { color: var(--ink); font-size: 16.5px; font-weight: 600; margin-top: 6px; }
.message-box { background: var(--foam); border-radius: var(--radius); padding: 46px; }
.message-box h3 { text-align: center; font-size: 26px; color: var(--ink); letter-spacing: 2px; }
.message-box h3::after { content: ""; display: block; width: 50px; height: 4px; border-radius: 2px; background: var(--grad-btn); margin: 12px auto 26px; }
.msg-form { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; max-width: 760px; margin: 0 auto; }
.msg-form input, .msg-form textarea {
  border: 1px solid #d4e5ee; border-radius: 8px; padding: 13px 18px; font-size: 15px; outline: none; width: 100%;
  font-family: inherit; background: #fff;
}
.msg-form input:focus, .msg-form textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(0, 180, 216, .15); }
.msg-form textarea { grid-column: 1 / -1; min-height: 140px; resize: vertical; }
.msg-form button {
  grid-column: 1 / -1; justify-self: center; border: 0; cursor: pointer; padding: 13px 64px; border-radius: 34px;
  background: var(--grad-btn); color: #fff; font-size: 16px; letter-spacing: 3px;
}
.msg-ok { text-align: center; color: #0a8a5f; background: #e6f7ef; border-radius: 8px; padding: 12px; margin-bottom: 18px; }

/* ---------- 右侧浮动工具栏 ---------- */
.sidebar { position: fixed; right: 14px; top: 50%; transform: translateY(-50%); z-index: 90; }
.sidebar li { margin-bottom: 8px; position: relative; }
.sidebar li a {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px;
  width: 62px; padding: 10px 4px; background: #fff; border-radius: 10px; box-shadow: var(--shadow);
  font-size: 11px; color: var(--text); text-align: center;
}
.sidebar li a img { width: 22px; height: 22px; filter: hue-rotate(160deg) saturate(1.4); }
.sidebar li a:hover { background: var(--grad-btn); color: #fff; }
.sidebar li a:hover img { filter: brightness(0) invert(1); }
.sidebar .wechat-code {
  position: absolute; right: 72px; top: 50%; transform: translateY(-50%); background: #fff; padding: 10px;
  border-radius: 10px; box-shadow: var(--shadow); display: none;
}
.sidebar .wechat:hover .wechat-code { display: block; }
.sidebar .wechat-code img { width: 160px; height: 160px; display: block; }

/* ---------- 底部 ---------- */
.footer { background: var(--deep); color: #9fc3d6; margin-top: 0; position: relative; }
.footer::before {
  content: ""; display: block; height: 4px; background: var(--grad-btn);
}
.footer-wrapper { display: flex; gap: 60px; padding: 60px 0 44px; }
.footer-info { flex: 1.2; }
.footer-info-tel .p1 { font-size: 14px; color: #7fa8bc; }
.footer-info-tel .p2 a { font-size: 34px; color: #fff; font-weight: 700; letter-spacing: 1px; font-family: "DIN Alternate", Arial, sans-serif; }
.footer-info-tel .p2 a:hover { color: var(--accent-2); }
.footer-info-email, .footer-info-address { margin-top: 12px; font-size: 14px; }
.footer-info-email a:hover { color: var(--accent-2); }
.footer-nav { flex: 2; display: flex; gap: 30px; justify-content: space-between; flex-wrap: wrap; }
.footer-nav dl dt a { color: #fff; font-size: 16px; font-weight: 600; }
.footer-nav dl dd { margin-top: 12px; }
.footer-nav dl dd a { font-size: 13.5px; color: #8fb4c7; }
.footer-nav dl dd a:hover { color: var(--accent-2); padding-left: 4px; }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, .08); padding: 18px 0; font-size: 13px; color: #6d93a8; }

/* ---------- 动效 ---------- */
.wow { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.wow.in { opacity: 1; transform: none; }

/* ---------- 404 ---------- */
.p404 { text-align: center; padding: 120px 0; }
.p404 h1 { font-size: 90px; color: var(--accent); }
.p404 p { color: var(--muted); margin: 16px 0 30px; }
.p404 a { padding: 12px 40px; border-radius: 30px; background: var(--grad-btn); color: #fff; }

/* ---------- 响应式 ---------- */
@media (max-width: 992px) {
  .header { display: none; }
  .mheader { display: block; position: sticky; top: 0; z-index: 100; background: var(--deep); box-shadow: 0 2px 14px rgba(0,20,40,.3); }
  .mheader-content { display: flex; align-items: center; justify-content: space-between; height: 60px; padding: 0 16px; }
  .mheader .mlogo img { height: 34px; }
  .mheader .img2 { display: none; }
  .menu-toggle { width: 30px; cursor: pointer; }
  .menu-toggle i, .menu-toggle i::before, .menu-toggle i::after {
    content: ""; display: block; height: 2px; background: #fff; border-radius: 2px; position: relative; transition: .3s;
  }
  .menu-toggle i::before { position: absolute; top: -8px; left: 0; right: 0; }
  .menu-toggle i::after { position: absolute; top: 8px; left: 0; right: 0; }
  .nav-container { display: none; background: var(--deep-2); max-height: 70vh; overflow: auto; }
  .nav-container.open { display: block; }
  .onenav > li > a { display: block; padding: 13px 20px; color: #dff2fa; border-bottom: 1px solid rgba(255,255,255,.06); font-size: 15px; }
  .onenav .sub-toggle { float: right; padding: 0 10px; color: var(--accent-2); }
  .nav-inner { display: none; background: rgba(0,0,0,.18); }
  .nav-inner.open { display: block; }
  .nav-inner a { display: block; padding: 10px 34px; color: #a9d4e6; font-size: 14px; }
  .nav-inner .nav-inner a { padding-left: 52px; font-size: 13px; color: #8fb4c7; }

  .in-banner { height: 62vh; min-height: 420px; }
  .in-banner video { display: none; }
  .in-banner .mimg { display: none; }
  .in-banner::after { background: linear-gradient(180deg, rgba(3, 47, 78, .3) 0%, transparent 30%, transparent 75%, rgba(3, 60, 96, .14) 100%); }
  .hero-flow.f1 { background-position-y: 66%; }
  .hero-flow.f2 { background-position-y: 40%; }
  .in-banner .title-box h5 { font-size: 30px; }
  .in-banner .title-box .small { font-size: 14px; }
  .product-wrapper { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .company-wrapper { flex-direction: column; gap: 30px; }
  .news-content { flex-direction: column; }
  .card-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .sub-layout { flex-direction: column; }
  .sub-side { width: 100%; }
  .pd-top { flex-direction: column; }
  .honor-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-cards { grid-template-columns: repeat(2, 1fr); }
  .msg-form { grid-template-columns: 1fr; }
  .message-box { padding: 26px 16px; }
  .sidebar { display: none; }
  .footer-wrapper { flex-direction: column; gap: 30px; padding: 40px 0; }
  .inner-banner { height: 240px; }
  .inner-banner .t1 { font-size: 26px; }
}
@media (max-width: 560px) {
  .product-wrapper, .card-grid { grid-template-columns: 1fr; }
  .honor-grid { grid-template-columns: 1fr; }
}

/* ---------- 首页 Hero（明亮海洋蓝 + 动态流水） ---------- */
.in-banner {
  background: linear-gradient(172deg, #0a4d7a 0%, #0277bd 26%, #00a6dd 55%, #22c3e6 80%, #5fd7ef 100%);
}
.in-banner::after {
  background: linear-gradient(180deg, rgba(3, 47, 78, .34) 0%, transparent 26%, transparent 72%, rgba(3, 60, 96, .16) 100%);
}
.in-banner video, .in-banner .mimg { opacity: .55; }
.hero-flow {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background-repeat: repeat-x;
}
.hero-flow.f1 {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='720' height='180' viewBox='0 0 720 180'%3E%3Cpath d='M0 90 Q 90 40 180 90 T 360 90 T 540 90 T 720 90 V180 H0 Z' fill='%23ffffff' fill-opacity='0.10'/%3E%3C/svg%3E");
  background-size: 720px 180px; background-position: 0 58%;
  animation: flowX 16s linear infinite;
}
.hero-flow.f2 {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='540' height='140' viewBox='0 0 540 140'%3E%3Cpath d='M0 70 Q 67.5 28 135 70 T 270 70 T 405 70 T 540 70 V140 H0 Z' fill='%237fe8f7' fill-opacity='0.13'/%3E%3C/svg%3E");
  background-size: 540px 140px; background-position: 0 34%;
  animation: flowX 11s linear infinite reverse;
}
@keyframes flowX { from { background-position-x: 0; } to { background-position-x: 720px; } }
.hero-shimmer {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    radial-gradient(820px 300px at 18% 74%, rgba(255, 255, 255, .22), transparent 60%),
    radial-gradient(680px 260px at 82% 62%, rgba(127, 232, 247, .30), transparent 62%),
    radial-gradient(520px 220px at 55% 88%, rgba(255, 255, 255, .14), transparent 60%);
  animation: shimmer 8s ease-in-out infinite alternate;
}
@keyframes shimmer { from { opacity: .65; transform: translateX(-2%); } to { opacity: 1; transform: translateX(2%); } }
.hero-bubbles { position: absolute; inset: 0; z-index: 1; pointer-events: none; overflow: hidden; }
.hero-bubbles i {
  position: absolute; bottom: -30px; border-radius: 50%;
  background: radial-gradient(circle at 32% 30%, rgba(255, 255, 255, .9), rgba(255, 255, 255, .12) 70%);
  animation: bubbleUp linear infinite;
}
.hero-bubbles i:nth-child(1) { left: 12%; width: 14px; height: 14px; animation-duration: 9s; animation-delay: 0s; }
.hero-bubbles i:nth-child(2) { left: 28%; width: 9px; height: 9px; animation-duration: 12s; animation-delay: 2.5s; }
.hero-bubbles i:nth-child(3) { left: 46%; width: 18px; height: 18px; animation-duration: 10s; animation-delay: 1.2s; }
.hero-bubbles i:nth-child(4) { left: 63%; width: 10px; height: 10px; animation-duration: 13s; animation-delay: 4s; }
.hero-bubbles i:nth-child(5) { left: 78%; width: 15px; height: 15px; animation-duration: 9.5s; animation-delay: 3s; }
.hero-bubbles i:nth-child(6) { left: 90%; width: 8px; height: 8px; animation-duration: 11s; animation-delay: 5.5s; }
@keyframes bubbleUp {
  0% { transform: translateY(0) scale(.7); opacity: 0; }
  12% { opacity: .8; }
  100% { transform: translateY(-78vh) scale(1.15); opacity: 0; }
}
.hero-waves { position: absolute; left: 0; right: 0; bottom: -2px; height: 150px; z-index: 2; overflow: hidden; }
.hero-waves svg { position: absolute; bottom: 0; left: 0; width: 200%; height: 100%; }
.hero-waves .w1 { animation: waveMove 14s linear infinite; opacity: .45; }
.hero-waves .w2 { animation: waveMove 9s linear infinite reverse; opacity: .6; }
.hero-waves .w3 { animation: waveMove 6.5s linear infinite; }
@keyframes waveMove { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.in-banner .title-box h5 { font-size: 46px; letter-spacing: 2px; }
.in-banner .title-box .small { color: #eafcff; letter-spacing: 6px; font-size: 17px; }
.hero-btns { margin-top: 44px; display: flex; gap: 22px; justify-content: center; }
.btn-cta {
  padding: 14px 42px; border-radius: 40px; font-size: 16px; letter-spacing: 2px; color: #fff;
  background: linear-gradient(90deg, #ff8a3c, #ff6b1a); box-shadow: 0 10px 26px rgba(255, 122, 40, .42);
  transition: transform .25s, box-shadow .25s; display: inline-block;
}
.btn-cta:hover { transform: translateY(-3px); box-shadow: 0 16px 34px rgba(255, 122, 40, .55); color: #fff; }
.btn-cta.ghost {
  background: transparent; border: 2px solid rgba(255, 255, 255, .75); box-shadow: none;
}
.btn-cta.ghost:hover { background: rgba(255, 255, 255, .14); }

/* ---------- 内页 Banner 无图兜底 ---------- */
.inner-banner.no-img {
  background: linear-gradient(150deg, #021b2c 0%, #04314c 45%, #0e6ba8 100%);
}

/* ---------- 解决方案详情（HTML 排版块） ---------- */
.sol-h { font-size: 24px; color: var(--ink); font-weight: 700; letter-spacing: 2px; margin: 44px 0 8px; padding-left: 16px; border-left: 5px solid var(--accent); line-height: 1.4; }
.sol-h:first-child { margin-top: 0; }
.sol-lead { color: var(--muted); margin: 6px 0 20px; padding-left: 21px; }
.sol-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 20px; }
.sol-card { background: #fff; border: 1px solid #e2eef4; border-radius: var(--radius); padding: 24px 22px; box-shadow: 0 4px 16px rgba(3,41,63,.06); transition: transform .3s, box-shadow .3s; }
.sol-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--accent-3); }
.sol-card h4 { font-size: 16.5px; color: var(--primary); font-weight: 700; line-height: 1.5; margin-bottom: 10px; }
.sol-card .d { font-size: 13.5px; color: var(--text); line-height: 1.9; margin-bottom: 12px; }
.sol-card ul li { position: relative; font-size: 13px; color: var(--muted); padding: 4px 0 4px 20px; line-height: 1.6; }
.sol-card ul li::before { content: "✓"; position: absolute; left: 0; color: var(--accent); font-weight: 700; }
.sol-stats { margin-top: 40px; border-radius: 14px; background: linear-gradient(135deg, #04314c, #0e6ba8 60%, #00a6dd); padding: 36px 30px; color: #fff; }
.sol-stats .t { font-size: 22px; font-weight: 700; letter-spacing: 2px; }
.sol-stats .l { color: #bfe6f2; font-size: 13.5px; margin: 8px 0 24px; }
.sol-stats .grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.sol-stats .cell { background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.16); border-radius: 10px; text-align: center; padding: 22px 10px; }
.sol-stats .n { font-size: 26px; font-weight: 700; color: #ffd66b; letter-spacing: 1px; }
.sol-stats .b { font-size: 13px; color: #d8f2fa; margin-top: 8px; }
.sol-steps { margin-top: 40px; }
.sol-steps .grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; margin-top: 20px; }
.sol-steps .step { background: var(--foam); border-radius: 10px; padding: 20px 14px; text-align: center; position: relative; }
.sol-steps .step i { display: flex; align-items: center; justify-content: center; width: 34px; height: 34px; margin: 0 auto 10px; border-radius: 50%; background: var(--grad-btn); color: #fff; font-style: normal; font-weight: 700; }
.sol-steps .step h5 { font-size: 15px; color: var(--ink); }
.sol-steps .step p { font-size: 12.5px; color: var(--muted); margin-top: 6px; line-height: 1.7; }

/* 解决方案页尾跳转链接条 */
.sol-cta { margin: 56px 0 10px; border-radius: 14px; background: linear-gradient(120deg, #04314c, #0e6ba8 60%, #00b4d8); padding: 44px 30px; text-align: center; color: #fff; position: relative; overflow: hidden; }
.sol-cta::before { content: ""; position: absolute; right: -100px; top: -100px; width: 300px; height: 300px; border-radius: 50%; background: radial-gradient(circle, rgba(0,180,216,.35), transparent 65%); }
.sol-cta h3 { font-size: 24px; letter-spacing: 2px; }
.sol-cta p { color: #bfe6f2; margin: 10px auto 24px; font-size: 14px; position: relative; }
.sol-cta .btns { display: flex; gap: 16px; justify-content: center; position: relative; }
.sol-cta .b1 { padding: 12px 36px; border-radius: 30px; background: #fff; color: var(--primary); font-weight: 600; letter-spacing: 1px; }
.sol-cta .b1:hover { opacity: .9; }
.sol-cta .b2 { padding: 12px 36px; border-radius: 30px; border: 1.5px solid rgba(255,255,255,.75); color: #fff; letter-spacing: 1px; }
.sol-cta .b2:hover { background: rgba(255,255,255,.14); }

/* ---------- 新闻列表：左图右文 ---------- */
.news-rows { display: flex; flex-direction: column; gap: 18px; }
.news-row { display: flex; gap: 22px; background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: transform .3s, box-shadow .3s; }
.news-row:hover { transform: translateY(-3px); box-shadow: 0 16px 36px rgba(3,41,63,.18); }
.news-row .pic { width: 260px; flex-shrink: 0; background: var(--foam) center/cover no-repeat; min-height: 170px; }
.news-row .txt { padding: 20px 24px 18px 0; display: flex; flex-direction: column; }
.news-row h4 { font-size: 17.5px; color: var(--ink); font-weight: 600; line-height: 1.6; }
.news-row:hover h4 { color: var(--primary); }
.news-row p { margin-top: 8px; font-size: 13.5px; color: var(--muted); overflow: hidden; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; flex: 1; }
.news-row .date { color: var(--accent); font-size: 12.5px; margin-top: 10px; letter-spacing: 1px; }

@media (max-width: 992px) {
  .sol-cards { grid-template-columns: 1fr; }
  .sol-stats .grid { grid-template-columns: repeat(2, 1fr); }
  .sol-steps .grid { grid-template-columns: repeat(2, 1fr); }
  .sol-cta .btns { flex-direction: column; align-items: center; }
  .news-row .pic { width: 200px; }
}
@media (max-width: 560px) {
  .news-row { flex-direction: column; }
  .news-row .pic { width: 100%; height: 180px; }
  .news-row .txt { padding: 4px 18px 18px; }
  .sol-steps .grid { grid-template-columns: 1fr; }
}

/* ---------- 富文本表格美化（全站通用） ---------- */
.content-html table { border-collapse: separate; border-spacing: 0; border-radius: 10px; overflow: hidden; box-shadow: 0 4px 16px rgba(3,41,63,.08); width: 100%; margin: 16px 0; }
.content-html th { background: linear-gradient(90deg, #0e6ba8, #00b4d8); color: #fff; padding: 12px 18px; font-size: 14.5px; letter-spacing: 1px; border: 0; text-align: left; }
.content-html td { border: 0; border-bottom: 1px solid #edf4f8; padding: 12px 18px; font-size: 14px; background: #fff; }
.content-html tr:nth-child(even) td { background: #f6fbfe; }
.content-html tr:last-child td { border-bottom: 0; }

/* ---------- 代理权益（结构化模块） ---------- */
.benefit-table { width: 100%; border-collapse: separate; border-spacing: 0; border-radius: 12px; overflow: hidden; box-shadow: var(--shadow); margin: 14px 0 6px; }
.benefit-table th { background: linear-gradient(90deg, #04314c, #0e6ba8 60%, #00b4d8); color: #fff; padding: 14px 22px; text-align: left; font-size: 15px; letter-spacing: 2px; }
.benefit-table td { padding: 15px 22px; border-bottom: 1px solid #edf4f8; font-size: 14.5px; background: #fff; line-height: 1.7; }
.benefit-table tr:nth-child(even) td { background: #f6fbfe; }
.benefit-table tr:last-child td { border-bottom: 0; }
.benefit-table td:first-child { font-weight: 600; color: var(--primary); width: 170px; white-space: nowrap; }
@media (max-width: 560px) {
  .benefit-table th, .benefit-table td { padding: 10px 14px; font-size: 13.5px; }
  .benefit-table td:first-child { width: auto; white-space: normal; }
}

/* ---------- 合作伙伴 ---------- */
.mode-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; margin-top: 40px; }
.mode-card { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); background: #fff; position: relative; transition: transform .3s, box-shadow .3s; }
.mode-card:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(3, 41, 63, .2); }
.mode-card .mc-head { padding: 30px 30px 24px; background: var(--grad); color: #fff; }
.mode-card .mc-head .tag { display: inline-block; font-size: 12px; padding: 3px 14px; border-radius: 20px; background: rgba(255,255,255,.2); margin-bottom: 12px; letter-spacing: 2px; }
.mode-card .mc-head h3 { font-size: 22px; letter-spacing: 1px; }
.mode-card .mc-body { padding: 24px 30px 28px; }
.mode-card .mc-body p { color: var(--muted); font-size: 14px; line-height: 1.9; }
.mode-card .mc-link { display: inline-block; margin-top: 16px; color: var(--primary); font-size: 14px; }
.mode-card .mc-link:hover { color: var(--accent); }
.partner-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 40px; }
.partner-card { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; transition: transform .3s; }
.partner-card:hover { transform: translateY(-5px); }
.partner-card .pic { height: 170px; background: var(--foam) center/cover no-repeat; display: flex; align-items: center; justify-content: center; }
.partner-card .body { padding: 18px 22px 22px; }
.partner-card h4 { color: var(--ink); font-size: 16px; }
.partner-card p { color: var(--muted); font-size: 13px; margin-top: 8px; overflow: hidden; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }
.cta-partner {
  margin-top: 60px; border-radius: 16px; background: linear-gradient(120deg, #04314c, #0e6ba8 60%, #00b4d8);
  padding: 56px 40px; text-align: center; color: #fff; position: relative; overflow: hidden;
}
.cta-partner::before { content: ""; position: absolute; right: -120px; top: -120px; width: 360px; height: 360px; border-radius: 50%; background: radial-gradient(circle, rgba(0,180,216,.35), transparent 65%); }
.cta-partner h2 { font-size: 30px; letter-spacing: 3px; }
.cta-partner p { color: #bfe6f2; margin: 14px auto 30px; max-width: 640px; line-height: 1.9; position: relative; }
.cta-partner .btns { display: flex; gap: 20px; justify-content: center; position: relative; }
/* ---------- 移动端细节优化 ---------- */
html, body { overflow-x: clip; }
.content-html { overflow-wrap: anywhere; }
.content-html table { display: block; overflow-x: auto; }

@media (max-width: 992px) {
  /* 汉堡按钮：足够的触控区域 + 三条线 */
  .mode-grid, .partner-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; align-items: center; gap: 14px; }
  .menu-toggle { width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; }
  .menu-toggle i { width: 22px; }
  .menu-toggle.active i { background: transparent; }
  .menu-toggle.active i::before { top: 0; transform: rotate(45deg); }
  .menu-toggle.active i::after { top: 0; transform: rotate(-45deg); }
  .mheader .m-search { display: flex; color: #fff; margin-left: auto; margin-right: 6px; padding: 10px; cursor: pointer; }

  /* 二级栏目侧栏：手机上改为横向滑动标签条，不再占满整屏 */
  .sub-layout { gap: 20px; padding: 28px 0 50px; }
  .sub-side .side-title { display: none; }
  .sub-side ul {
    display: flex; overflow-x: auto; border: 0; border-radius: 0; gap: 10px;
    padding: 4px 2px 10px; -webkit-overflow-scrolling: touch; scrollbar-width: none;
  }
  .sub-side ul::-webkit-scrollbar { display: none; }
  .sub-side li { flex-shrink: 0; }
  .sub-side li a {
    border: 1px solid #dbe9f0; border-radius: 22px; padding: 8px 18px; font-size: 14px;
    white-space: nowrap; background: #fff;
  }
  .sub-side li a::before { display: none; }
  .sub-side li a.cur { background: var(--grad-btn); color: #fff; border-color: transparent; }
  .sub-side li a:hover { background: #fff; color: var(--primary); }
  .sub-side li a.cur:hover { color: #fff; }

  /* 内页区块间距与字号收紧 */
  .inner-banner { height: 220px; }
  .inner-banner .t1 { font-size: 26px; letter-spacing: 2px; }
  .inner-banner .t2 { font-size: 13px; padding: 0 16px; }
  .section-title, .news-title, .company-title { font-size: 26px; }
  .section-sub { font-size: 13px; padding: 0 12px; }
  .in-product, .in-news, .in-company { padding: 56px 0; }
  .detail-title { font-size: 22px; }
  .detail-meta { flex-wrap: wrap; gap: 8px 18px; }
  .pd-gallery .main-img { height: 260px; }
  .company-wrapper .roll { flex-wrap: wrap; gap: 18px 30px; }
  .company-wrapper .sum span { font-size: 32px; }
  .hero-waves { height: 90px; }
  .cta-partner { padding: 40px 22px; margin-top: 40px; }
  .cta-partner h2 { font-size: 23px; }
  .cta-partner .btns { flex-direction: column; align-items: center; gap: 14px; }
  .mode-card .mc-head, .mode-card .mc-body { padding: 22px 20px; }
  .down-item { flex-wrap: wrap; gap: 12px; padding: 16px 18px; }
  .footer-info-tel .p2 a { font-size: 28px; }
  .footer-nav { gap: 20px; }
  .footer-nav dl { min-width: 42%; }
}

@media (max-width: 560px) {
  .card-grid.cols-2 { grid-template-columns: 1fr; }
  .down-item .btn { width: 100%; text-align: center; }
  .contact-cards { gap: 12px; }
  .contact-card { padding: 22px 10px; }
  .contact-card .v { font-size: 14px; word-break: break-all; }
  .g-card .pic { height: 190px; }
  .in-banner { height: 56vh; min-height: 400px; }
  .in-banner .title-box h5 { font-size: 23px; line-height: 1.5; }
  .btn-cta { padding: 12px 34px; font-size: 15px; }
  .news-latest { min-height: 200px; }
  .job-head { gap: 8px 18px; padding: 16px 18px; }
  .job-head .jt { font-size: 16px; }
  .msg-form button { padding: 13px 40px; width: 100%; }
}
