/*
Theme Name: leadernet 01
Theme URL: http://www.leadernet.cn
Description: ling xiao wang luo yu qing jian ce
Author: niuniu
Author URI: http://www.leadernet.cn
Version: 3.4
*/

/* ============================================================
   1. 变量与重置
   ============================================================ */
:root {
	/* 基础配色 */
	--color-primary: #224b8f;
	--color-accent: #ca0005;
	--color-bg: #f6f6f6;
	--color-text: #333;
	--color-muted: #666;
	--color-light: #999;
	--color-footer-bg: #1a2a5e;

	/* 字体 */
	--font-main: "微软雅黑", "Microsoft YaHei", "PingFang SC", "Hiragino Sans GB", "WenQuanYi Micro Hei", "Heiti SC", "SimHei", Arial, sans-serif;

	/* 容器 */
	--container: 1000px;

	/* 科技风页面 */
	--tech-white: #ffffff;
	--tech-blue-light: #f4f7ff;
	--tech-blue-pale: #e0eaff;
	--tech-primary: #1e40af;
	--tech-secondary: #635bff;
	--tech-accent: #06b6d4;
	--tech-text-dark: #0f172a;
	--tech-text-body: #334155;
	--tech-text-muted: #64748b;
	--tech-border: #e2e8f0;
	--tech-dark-cta: #0f172a;
}

* {
	margin: 0;
	padding: 0;
	list-style: none;
	box-sizing: border-box;
}

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

img {
	max-width: 100%;
	height: auto;
	display: block;
	border: 0;
}

body {
	font-family: var(--font-main);
	color: var(--color-text);
	background: #fff;
	line-height: 1.6;
	font-size: 14px;
}

/* ============================================================
   2. 头部
   ============================================================ */
.header_box {
	width: 100%;
	background-color: #f6f6f6;
	overflow: hidden;
}

.header {
	width: var(--container);
	height: 122px;
	margin: 0 auto;
	position: relative;
}

.header .l {
	position: relative;
	height: 122px;
}

.logo-link {
	display: flex;
	align-items: center;
	gap: 14px;
	position: absolute;
	top: 20px;
	left: 0;
	text-decoration: none;
}

.logo-img {
	width: 56px;
	height: 56px;
	display: block;
	flex-shrink: 0;
}

.site-title {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.site-name {
	font-size: 22px;
	font-weight: bold;
	color: #224b8f;
	line-height: 1.2;
	letter-spacing: 1px;
	white-space: nowrap;
}

.site-desc {
	font-size: 13px;
	color: #666;
	line-height: 1.4;
	letter-spacing: 1px;
	margin-top: 4px;
	white-space: nowrap;
}

.header .r {
	position: absolute;
	top: 38px;
	right: 40px;
}

.header .r h2 {
	font-size: 14px;
	font-weight: normal;
	color: var(--color-muted);
	padding-left: 38px;
	background: url(images/phone.png) no-repeat;
}

.header .r p {
	font-size: 22px;
	font-weight: normal;
	color: #ca0005;
}

.header .r p a { color: #ca0005; }

/* ============================================================
   3. 导航 —— 紧凑单行版
   ============================================================ */
.nav_box {
	width: 100%;
	background: var(--color-primary);
	box-shadow: 0 5px 8px rgba(140, 0, 36, 0.3);
}

.nav_box .nav {
	width: var(--container);
	height: auto;
	margin: 0 auto;
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
	align-items: center;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}

.nav_box .nav li {
	float: none;
	width: auto;
	min-width: 0;
	padding: 0 12px;
	line-height: 36px;
	text-align: center;
	background: url(images/fengexian.png) no-repeat 0 12px;
	white-space: nowrap;
	flex-shrink: 0;
}

.nav_box .nav li:first-child { background-image: none; }

.nav_box .nav a {
	font-size: 14px;
	font-weight: normal;
	color: #fff;
	display: block;
	white-space: nowrap;
}

.nav_box .nav li:hover > a,
.nav_box .nav li.current-menu-item > a { color: #fcff4f; }

/* ============================================================
   4. 关键词条
   ============================================================ */
.keywords_box { width: 100%; }

.keyword {
	width: 960px;
	height: 50px;
	margin: 0 auto;
	line-height: 50px;
	font-size: 12px;
	color: var(--color-light);
	padding-left: 40px;
}

.keyword a {
	font-size: 12px;
	padding-right: 10px;
	color: var(--color-light);
}

.keyword a:hover { color: var(--color-accent); }

/* ============================================================
   5. Banner
   ============================================================ */
#banner {
	position: relative;
	width: 100%;
	height: 430px;
	overflow: hidden;
}

#banner ul {
	position: relative;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	list-style: none;
}

#banner ul li {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	cursor: pointer;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	animation: bannerFade 12s infinite;
	will-change: opacity;
}

#banner ul li.one { background-image: url(images/banner1.png); animation-delay: 0s; }
#banner ul li.two { background-image: url(images/banner3.png); animation-delay: 4s; }
#banner ul li.three { background-image: url(images/banner4.png); animation-delay: 8s; }

@keyframes bannerFade {
	0%   { opacity: 0; }
	8%   { opacity: 1; }
	33%  { opacity: 1; }
	41%  { opacity: 0; }
	100% { opacity: 0; }
}

#banner ul li h1,
#banner ul li h2,
#banner ul li h3 {
	font-size: 50px;
	font-style: normal;
	color: #fff;
	padding: 80px 0 40px 160px;
	margin: 0;
	text-align: left;
	font-weight: normal;
}

#banner ul li a {
	display: inline-block;
	font-size: 25px;
	line-height: 35px;
	color: #fff;
	padding: 0 0 20px 66px;
}

@media (prefers-reduced-motion: reduce) {
	#banner ul li { animation: none; }
	#banner ul li.one { opacity: 1; }
}

.banner_box1,
.banner_box { width: 100%; overflow: hidden; }

.banner_box1 .banner {
	width: var(--container);
	height: 211px;
	margin: 0 auto;
	position: relative;
}

.banner_box .banner {
	width: var(--container);
	height: 500px;
	margin: 0 auto;
	position: relative;
}

/* ============================================================
   6. 面包屑
   ============================================================ */
.location_box { width: 100%; height: 60px; }

.location {
	width: var(--container);
	margin: 0 auto;
	font-size: 12px;
	line-height: 60px;
}

.location a { color: var(--color-text); }
.location a:hover { color: rgb(197, 18, 28); }

/* ============================================================
   7. 内页左右布局
   ============================================================ */
.nav01_box { width: 100%; }

.nav01 {
	width: var(--container);
	margin: 0 auto;
	overflow: hidden;
}

.nav01_left {
	width: 200px;
	float: left;
	text-align: center;
	color: #fff;
	position: relative;
}

.nav01_left h2 {
	width: 200px;
	height: 40px;
	line-height: 40px;
	border-radius: 5px;
	background-color: #afb4db;
	box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1000;
	font-size: 20px;
	font-weight: bold;
	color: #fffafa;
}

.nav01_left .ce_nav {
	width: 200px;
	height: 320px;
	padding-top: 20px;
	border-radius: 0 0 5px 5px;
	background-color: #426ab3;
	position: absolute;
	top: 36px;
}

.ce_nav li { height: 50px; line-height: 50px; }

.ce_nav li a {
	font-weight: bold;
	font-size: 14px;
	color: #fff;
}

.nav01_right {
	width: 756px;
	float: right;
	position: relative;
	border-top: 4px solid #2a5caa;
	padding-top: 10px;
}

.nav01_right h2 {
	font-size: 18px;
	font-weight: 700;
	color: var(--color-text);
	padding-bottom: 8px;
}

.nav01_right span {
	font-size: 12px;
	color: var(--color-muted);
	padding-left: 10px;
}

.nav01_right li {
	width: 716px;
	height: 40px;
	border-bottom: 1px dashed #ccc;
	line-height: 50px;
	padding-left: 40px;
	background: url(images/biao_01.png) no-repeat 0 65%;
}

.nav01_right li a {
	font-size: 14px;
	font-weight: bold;
	color: var(--color-muted);
}

.nav01_right li a:hover { color: #d10000; }

.nav01_right .cont {
	font-size: 14px;
	color: var(--color-text);
	padding-top: 20px;
	padding-bottom: 10px;
	text-align: justify;
	text-indent: 2em;
	line-height: 1.8em;
}

/* ============================================================
   8. 首页 - 服务中心
   ============================================================ */
.center_box { width: 100%; background: var(--color-bg); }

.center {
	width: var(--container);
	height: 588px;
	margin: 0 auto;
	text-align: center;
}

.center h2 {
	padding-top: 40px;
	padding-bottom: 40px;
	background: url(images/arrow.png) no-repeat 50% 80px;
}

.center h2 img { margin: 0 auto; }

.center li {
	width: 200px;
	height: 200px;
	float: left;
	margin-left: 80px;
	background: var(--color-accent);
	text-align: center;
	line-height: 200px;
	cursor: pointer;
}

.center a {
	display: block;
	font-size: 20px;
	font-weight: normal;
	color: #fff;
	background: url(images/biaozhong.png) no-repeat 80px 60%;
}

.center .first { margin-left: 120px; background: #224b8f; }
.center .second { background: #426ab3; }
.center .third { background-position: 60px 60%; background-color: #444693; }
.center .first1 { margin-left: 120px; margin-top: 20px; padding-bottom: 10px; background: #1d953f; }
.center .second1 { margin-top: 20px; padding-bottom: 10px; background: #00ae9d; }
.center .third1 { background-position: 60px 60%; margin-top: 20px; padding-bottom: 10px; background: #007947; }

/* ============================================================
   9. 首页 - 热点文章
   ============================================================ */
.hotpoint_box { width: 100%; }

.hotpoint {
	width: var(--container);
	height: 540px;
	margin: 0 auto;
	text-align: center;
}

.hotpoint h2 {
	padding-top: 40px;
	padding-bottom: 40px;
	background: url(images/arrow.png) no-repeat 50% 80px;
}

.hotpoint h2 img { margin: 0 auto; }

.hotpoint li {
	width: 300px;
	float: left;
	text-align: left;
	margin-right: 50px;
}

.hotpoint .last { margin-right: 0; }

.hotpoint dt {
	border-bottom: 1px solid #ccc;
	padding-bottom: 10px;
	font-size: 14px;
	font-weight: bold;
	color: var(--color-text);
}

.hotpoint dt a {
	font-size: 12px;
	font-weight: normal;
	color: #ccc;
	padding-left: 174px;
}

.hotpoint dd {
	font-size: 14px;
	padding-top: 10px;
	border-bottom: 1px dotted #ccc;
}

.hotpoint dd a {
	display: block;
	width: 300px;
	height: 20px;
	color: var(--color-muted);
	overflow: hidden;
}

.hotpoint dd a:hover { color: var(--color-accent); }

/* ============================================================
   10. 首页 - 关于公司
   ============================================================ */
.how_box { width: 100%; background: var(--color-bg); }

.how {
	width: var(--container);
	height: auto;
	min-height: 320px;
	margin: 0 auto;
	text-align: center;
	padding-bottom: 40px;
}

.how h2 {
	padding-top: 40px;
	padding-bottom: 40px;
	background: url(images/arrow.png) no-repeat 50% 80px;
}

.how h2 img { margin: 0 auto; }

.how p {
	height: auto;
	text-align: left;
	font-size: 15px;
	font-weight: normal;
	color: var(--color-text);
	background: url(images/fangkuai.png) no-repeat 0 8px;
	padding-left: 20px;
	line-height: 2;
	margin-bottom: 8px;
}

.how .cont {
	text-align: justify;
	padding-bottom: 24px;
	font-size: 15px;
	color: var(--color-text);
	background: url(images/fangkuai.png) no-repeat 0 8px;
	padding-left: 20px;
	height: auto;
	line-height: 1.9;
	text-indent: 2em;
}

.how span { color: #2585a6; font-weight: bold; }

/* ============================================================
   11. 首页 - 技术优势图
   ============================================================ */
.skill_box { width: 100%; overflow: hidden; }

.skill {
	width: var(--container);
	height: 400px;
	margin: 0 auto;
	position: relative;
}

.skill img {
	position: absolute;
	top: 0;
	left: 50%;
	margin-left: -343px;
}

/* ============================================================
   12. 首页 - 核心优势
   ============================================================ */
.advantage_box { width: 100%; background: var(--color-bg); }

.advantage {
	width: var(--container);
	height: 360px;
	padding-top: 20px;
	margin: 0 auto;
}

.advantage li {
	width: 15%;
	float: left;
	text-align: center;
	padding-right: 20px;
}

.advantage p {
	font-size: 18px;
	padding-left: 20px;
	color: var(--color-text);
	background: url(images/fangkuai.png) no-repeat 0 8px;
	padding-bottom: 30px;
	text-align: left;
}

.advantage h3 { padding-bottom: 10px; }
.advantage h3 img { margin: 0 auto; }

.advantage h4 {
	font-size: 14px;
	font-weight: bold;
	color: var(--color-text);
	padding-bottom: 10px;
}

.advantage .cont {
	background: none;
	padding-left: 0;
	padding-bottom: 0;
	font-size: 12px;
}

.advantage .last { padding-right: 0; }

/* ============================================================
   13. 首页 - 入网查询体系（桌面端）
   ============================================================ */
.find_box { width: 100%; overflow: hidden; }

.find {
	width: var(--container);
	height: 400px;
	margin: 0 auto;
	position: relative;
}

.find > img {
	position: absolute;
	top: 0;
	left: 50%;
	margin-left: -960px;
	max-width: none;
}

.find p {
	position: absolute;
	top: 20px;
	font-size: 18px;
	color: #fff;
	background: url(images/fangkuai.png) no-repeat 0 8px;
	padding-bottom: 30px;
	text-align: left;
	padding-left: 20px;
}

.find ul {
	position: absolute;
	top: 130px;
	left: 90px;
}

.find li { float: left; }

.find .l {
	width: 400px;
	font-size: 14px;
	color: #fff;
	background: url(images/biaozhong01.png) no-repeat;
	padding-top: 10px;
}

.find .r {
	width: 286px;
	height: 148px;
	margin-left: 90px;
	background: rgba(51, 54, 214, 0.9);
	text-align: left;
	line-height: 30px;
	padding-top: 20px;
	padding-left: 30px;
	font-size: 20px;
	color: #fff;
}

/* ============================================================
   14. 首页 - 更多服务
   ============================================================ */
.pingjia_box { width: 100%; background: var(--color-bg); }

.pingjia {
	width: var(--container);
	height: auto;
	min-height: 320px;
	margin: 0 auto;
	padding-top: 20px;
	padding-bottom: 30px;
}

.pingjia p {
	font-size: 18px;
	padding-left: 20px;
	color: var(--color-text);
	background: url(images/fangkuai.png) no-repeat 0 8px;
	padding-bottom: 20px;
	text-align: left;
}

.pingjia ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 20px 0;
}

.pingjia li {
	float: none;
	width: 300px;
	min-height: 152px;
	height: auto;
	background-color: #fff;
	background-image: url(images/ying.png);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 100% 100%;
	padding: 20px 22px;
	font-size: 14px;
	line-height: 1.8;
	margin-right: 0;
	box-sizing: border-box;
	color: #333;
	word-break: break-word;
	position: relative;
	z-index: 1;
	text-shadow: 0 0 1px rgba(255, 255, 255, 0.6);
}

.pingjia h4 {
	font-size: 17px;
	font-weight: bold;
	padding-bottom: 12px;
	margin: 0;
	color: #333;
	text-shadow: 0 0 1px rgba(255, 255, 255, 0.6);
}

.pingjia .sec {
	background-image: url(images/guo.png);
	background-position: center center;
	background-size: 100% 100%;
}

.pingjia .last {
	background-image: url(images/hai.png);
	background-position: center center;
	background-size: 100% 100%;
	margin-right: 0;
}

/* ============================================================
   15. 首页 - 成功案例
   ============================================================ */
.case_box { width: 100%; }

.case {
	width: var(--container);
	height: 650px;
	margin: 0 auto;
	padding-top: 20px;
}

.case_box p {
	font-size: 18px;
	padding-left: 20px;
	color: var(--color-text);
	background: url(images/fangkuai.png) no-repeat 0 8px;
	padding-bottom: 30px;
	text-align: left;
}

.case_box li { float: left; }
.case_box .sec { padding-top: 20px; }

/* ============================================================
   16. 联系我们 / 需求表单（优化版）
   ============================================================ */
.contact_box {
	width: 100%;
	overflow: hidden;
	background: url(images/lianxi_bg.jpg) no-repeat center center;
	background-size: cover;
	background-color: var(--color-footer-bg);
	font-size: 14px;
	color: #fff;
	min-height: 520px;
}

.contact {
	width: 970px;
	margin: 0 auto;
	color: #fff;
	padding: 40px 0;
	position: relative;
	z-index: 1;
}

.cont_left {
	width: 566px;
	float: left;
	padding-bottom: 20px;
	padding-top: 20px;
}

.cont_right {
	width: 300px;
	float: right;
	padding-top: 110px;
	padding-bottom: 30px;
}

.cont_right .ewm {
	width: 224px;
	height: 148px;
	padding-bottom: 30px;
	background: url(images/erweima.png) no-repeat 50% 0;
}

.cont_right .lxwm {
	border-left: 1px solid #fff;
	padding-left: 10px;
	line-height: 1.9;
}

.cont_right .lxwm a { color: #fff; }

/* 表单容器 */
.contact-form-wrap {
	width: 100%;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 10px;
	padding: 28px 24px;
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
	box-sizing: border-box;
}

/* 表单标题 */
.contact-form-wrap .comment-reply-title,
#commentform .comment-reply-title,
.contact-form-wrap h3 {
	display: block;
	color: #fff;
	font-size: 20px;
	font-weight: bold;
	margin: 0 0 22px;
	padding-bottom: 14px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.18);
	letter-spacing: 1px;
	line-height: 1.4;
}

#commentform .comment-reply-title small {
	font-size: 14px;
	font-weight: normal;
	margin-left: 8px;
}

#commentform p { margin-bottom: 16px; }

#commentform label {
	display: block;
	color: #fff;
	font-size: 14px;
	font-weight: normal;
	margin-bottom: 8px;
	letter-spacing: 0.5px;
	line-height: 1.5;
}

#commentform label .required { color: #fcff4f; margin-left: 4px; }

/* 输入框统一样式 */
#commentform input[type="text"],
#commentform input[type="email"],
#commentform input[type="tel"],
#commentform input[type="url"],
#commentform textarea {
	width: 100%;
	padding: 11px 14px;
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-radius: 4px;
	background: rgba(255, 255, 255, 0.96);
	color: #333;
	font-size: 14px;
	font-family: inherit;
	line-height: 1.5;
	box-sizing: border-box;
	transition: border-color 0.2s, box-shadow 0.2s;
	outline: none;
}

#commentform input[type="text"]:focus,
#commentform input[type="email"]:focus,
#commentform input[type="tel"]:focus,
#commentform input[type="url"]:focus,
#commentform textarea:focus {
	border-color: #fcff4f;
	box-shadow: 0 0 0 3px rgba(252, 255, 79, 0.25);
}

#commentform input::placeholder,
#commentform textarea::placeholder {
	color: #999;
	font-size: 13px;
}

#commentform textarea { min-height: 110px; resize: vertical; }

/* 服务需求单选按钮 */
.comment-form-service > label { margin-bottom: 10px; }

.service-options { display: flex; flex-wrap: wrap; gap: 10px; }

.service-option {
	display: inline-flex !important;
	align-items: center;
	padding: 8px 14px;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-radius: 22px;
	cursor: pointer;
	transition: all 0.2s ease;
	color: #fff;
	font-size: 13px;
	font-weight: normal !important;
	margin-bottom: 0 !important;
	line-height: 1.4;
	user-select: none;
}

.service-option:hover {
	background: rgba(255, 255, 255, 0.22);
	border-color: #fcff4f;
	transform: translateY(-1px);
}

.service-option input[type="radio"] {
	margin: 0 6px 0 0;
	accent-color: #ca0005;
	cursor: pointer;
	width: auto;
	height: auto;
}

.service-option input[type="radio"]:checked + span {
	color: #fcff4f;
	font-weight: bold;
}

.service-option.is-checked,
.service-option:has(input[type="radio"]:checked) {
	background: rgba(252, 255, 79, 0.15);
	border-color: #fcff4f;
	box-shadow: 0 0 0 2px rgba(252, 255, 79, 0.2);
}

/* 验证码字段 */
.comment-form-captcha { margin-bottom: 16px; }

.comment-form-captcha label {
	display: inline-block !important;
	margin-right: 10px;
	color: #fff;
	font-weight: bold;
	vertical-align: middle;
	margin-bottom: 0;
}

.comment-form-captcha input[type="text"] {
	width: 100px !important;
	display: inline-block;
	vertical-align: middle;
}

/* 提交按钮 */
#commentform .form-submit {
	text-align: center;
	margin-top: 24px;
	margin-bottom: 0;
}

#commentform input[type="submit"] {
	display: inline-block;
	min-width: 200px;
	padding: 13px 36px;
	background: linear-gradient(135deg, #ca0005 0%, #a40000 100%);
	color: #fff;
	font-size: 16px;
	font-weight: bold;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	transition: all 0.2s ease;
	box-shadow: 0 4px 14px rgba(202, 0, 5, 0.35);
	font-family: inherit;
	letter-spacing: 1px;
	line-height: 1.4;
}

#commentform input[type="submit"]:hover:not(:disabled) {
	background: linear-gradient(135deg, #e11a1f 0%, #ca0005 100%);
	box-shadow: 0 6px 18px rgba(202, 0, 5, 0.55);
	transform: translateY(-1px);
}

#commentform input[type="submit"]:active:not(:disabled) {
	transform: translateY(0);
	box-shadow: 0 2px 8px rgba(202, 0, 5, 0.4);
}

#commentform input[type="submit"]:disabled {
	cursor: not-allowed;
	opacity: 0.7;
}

/* 隐藏评论提示 */
.comment-notes,
#commentform .comment-notes { display: none; }

/* 提交提示 */
.form-tip {
	padding: 10px 14px;
	margin-bottom: 16px;
	border-radius: 4px;
	font-size: 14px;
	line-height: 1.5;
}

.form-tip-success {
	background: rgba(40, 146, 31, 0.15);
	border: 1px solid #28921f;
	color: #b6f0af;
}

.form-tip-error {
	background: rgba(202, 0, 5, 0.15);
	border: 1px solid #ca0005;
	color: #ffb3b5;
}

/* ============================================================
   17. 页脚
   ============================================================ */
.footer_box {
	width: 100%;
	background: var(--color-footer-bg);
	overflow: hidden;
	padding: 16px 0;
}

.footer {
	width: var(--container);
	margin: 0 auto;
	text-align: center;
	line-height: 30px;
	font-size: 12px;
	color: rgba(255, 255, 255, 0.7);
}

.footer a {
	color: rgba(255, 255, 255, 0.7);
	transition: color 0.2s;
}

.footer a:hover { color: #fff; }

/* ============================================================
   18. 分页
   ============================================================ */
.pagination { line-height: 25px; }

.pagination span,
.pagination a {
	font-size: 12px;
	margin: 2px 6px 2px 0;
	background: #fff;
	border: 1px solid #ccc;
	color: #787878;
	padding: 2px 5px;
}

.pagination a:hover {
	background: #0196E3;
	border: 1px solid #fff;
	color: #fff;
}

.pagination .current {
	background: #0196E3;
	color: #fff;
	font-size: 12px;
	padding: 2px 5px;
}

.comment-notes { display: none; }

/* ============================================================
   19. hover 效果
   ============================================================ */
.center li:hover { box-shadow: 5px 8px 20px rgba(140, 0, 36, 0.4); }
.how span:hover { font-weight: bold; }
.advantage li:hover h4,
.advantage li:hover .cont { color: #ca0005; }
.find .r:hover {
	box-shadow: 5px 10px 20px rgba(51, 51, 51, 0.4);
	background-color: rgba(214, 54, 51, 1);
}
.pingjia li:hover { color: #ca0005; }
.case li:hover {
	color: #ca0005;
	box-shadow: 5px 10px 20px rgba(51, 51, 51, 0.4);
}

/* ============================================================
   20. 服务页面 —— 浅色风格（与首页一致）
   ============================================================ */
.service-page { width: 100%; background: #fff; }

.sp-section { width: 100%; padding: 50px 0; }
.sp-white { background: #fff; }
.sp-gray { background: #f6f6f6; }

.sp-inner {
	width: 100%;
	max-width: 1000px;
	margin: 0 auto;
	padding: 0 20px;
	box-sizing: border-box;
}

.sp-title {
	font-size: 26px;
	font-weight: bold;
	color: #224b8f;
	text-align: center;
	padding-bottom: 18px;
	margin-bottom: 24px;
	border-bottom: 2px solid #224b8f;
	line-height: 1.4;
}

.sp-h2 {
	font-size: 22px;
	font-weight: bold;
	color: #333;
	text-align: center;
	margin-bottom: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	line-height: 1.4;
}

.sp-h2 .sp-badge {
	display: inline-block;
	background: #ca0005;
	color: #fff;
	font-size: 14px;
	font-weight: bold;
	width: 36px;
	height: 36px;
	line-height: 36px;
	text-align: center;
	border-radius: 50%;
	font-family: Arial, sans-serif;
}

.sp-h3 {
	font-size: 17px;
	font-weight: bold;
	color: #224b8f;
	margin: 28px 0 14px;
	padding-left: 14px;
	border-left: 4px solid #ca0005;
	line-height: 1.4;
}

.sp-sub {
	font-size: 15px;
	color: #666;
	text-align: center;
	margin-bottom: 24px;
}

.sp-lead {
	font-size: 16px;
	color: #333;
	line-height: 1.9;
	text-align: justify;
	background: #f6f6f6;
	padding: 22px 26px;
	border-left: 4px solid #224b8f;
	border-radius: 4px;
	margin-bottom: 0;
}

.sp-lead strong { color: #224b8f; }

.service-page p {
	font-size: 15px;
	color: #333;
	line-height: 1.9;
	margin-bottom: 14px;
	text-align: justify;
}

.service-page a { color: #ca0005; font-weight: bold; }
.service-page a:hover { color: #a40000; text-decoration: underline; }

.sp-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
	margin: 20px 0;
}

.sp-card {
	background: #fff;
	border: 1px solid #e5e5e5;
	border-top: 4px solid #224b8f;
	border-radius: 6px;
	padding: 22px 24px;
	transition: all 0.3s ease;
}

.sp-card:hover {
	box-shadow: 0 6px 20px rgba(34, 75, 143, 0.12);
	transform: translateY(-3px);
}

.sp-card h3 {
	font-size: 17px;
	font-weight: bold;
	color: #224b8f;
	margin: 0 0 12px;
	padding: 0;
	border: none;
}

.sp-card p {
	font-size: 14px;
	color: #555;
	line-height: 1.8;
	margin: 0;
}

.sp-list { margin: 0 0 16px; padding: 0; }

.sp-list li {
	position: relative;
	padding: 8px 0 8px 22px;
	font-size: 14px;
	color: #333;
	line-height: 1.8;
	border-bottom: 1px dashed #e5e5e5;
	list-style: none;
}

.sp-list li:last-child { border-bottom: none; }

.sp-list li::before {
	content: '';
	position: absolute;
	left: 4px;
	top: 15px;
	width: 6px;
	height: 6px;
	background: #ca0005;
	border-radius: 50%;
}

.sp-more { font-size: 14px; color: #666; margin-bottom: 20px; }

.sp-tags { display: flex; flex-wrap: wrap; gap: 10px; margin: 0 0 20px; padding: 0; }

.sp-tags li {
	list-style: none;
	padding: 7px 16px;
	background: #eef2f8;
	color: #224b8f;
	border: 1px solid #cfdaeb;
	border-radius: 20px;
	font-size: 13px;
	line-height: 1.4;
	transition: all 0.2s;
}

.sp-tags li:hover {
	background: #224b8f;
	color: #fff;
	border-color: #224b8f;
}

.sp-image-wrap { margin: 24px 0; text-align: center; }

.sp-image-wrap img {
	max-width: 100%;
	height: auto;
	display: block;
	margin: 0 auto;
	border-radius: 6px;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
	background: #f6f6f6;
}

.sp-adv-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
	margin: 20px 0;
}

.sp-adv-card {
	background: #fff;
	border-radius: 8px;
	padding: 26px 18px;
	text-align: center;
	border-top: 4px solid #224b8f;
	box-shadow: 0 3px 12px rgba(0, 0, 0, 0.05);
	transition: all 0.3s ease;
}

.sp-adv-card:nth-child(2) { border-top-color: #426ab3; }
.sp-adv-card:nth-child(3) { border-top-color: #1d953f; }
.sp-adv-card:nth-child(4) { border-top-color: #ca0005; }

.sp-adv-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 22px rgba(34, 75, 143, 0.15);
}

.sp-adv-icon { font-size: 36px; margin-bottom: 12px; line-height: 1; }

.sp-adv-card h4 {
	font-size: 16px;
	font-weight: bold;
	color: #224b8f;
	margin: 0 0 10px;
}

.sp-adv-card p {
	font-size: 13px;
	color: #666;
	line-height: 1.7;
	margin: 0;
	text-align: center;
}

.sp-faq { display: flex; flex-direction: column; gap: 16px; }

.sp-faq-item {
	background: #f6f6f6;
	border-radius: 6px;
	padding: 20px 24px;
	border-left: 4px solid #224b8f;
	transition: all 0.2s;
}

.sp-faq-item:hover { background: #eef2f8; }

.sp-faq-item h3 {
	font-size: 16px;
	font-weight: bold;
	color: #224b8f;
	margin: 0 0 10px;
	padding: 0;
	border: none;
}

.sp-faq-item p {
	margin: 0;
	font-size: 14px;
	color: #555;
	line-height: 1.8;
}

/* ============================================================
   21. 服务流程 —— 横向时间线
   ============================================================ */
.sp-flow {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin: 34px 0 44px;
	padding: 10px 0;
	position: relative;
	overflow-x: auto;
	overflow-y: visible;
	-webkit-overflow-scrolling: touch;
}

.sp-flow::before {
	content: '';
	position: absolute;
	top: 40px;
	left: 6%;
	right: 6%;
	height: 2px;
	background: linear-gradient(
		90deg,
		rgba(34, 75, 143, 0.15) 0%,
		rgba(34, 75, 143, 0.55) 40%,
		rgba(202, 0, 5, 0.55) 60%,
		rgba(202, 0, 5, 0.15) 100%
	);
	z-index: 0;
	border-radius: 2px;
}

.sp-flow-step {
	flex: 1 0 auto;
	min-width: 118px;
	max-width: 140px;
	text-align: center;
	position: relative;
	z-index: 1;
	padding: 0 4px;
}

.sp-flow-dot {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: linear-gradient(135deg, #224b8f 0%, #426ab3 100%);
	color: #fff;
	font-size: 16px;
	font-weight: bold;
	font-family: Arial, "微软雅黑", sans-serif;
	letter-spacing: 0.5px;
	margin-bottom: 16px;
	position: relative;
	cursor: default;
	box-shadow:
		0 6px 16px rgba(34, 75, 143, 0.28),
		inset 0 -3px 6px rgba(0, 0, 0, 0.08),
		inset 0 3px 6px rgba(255, 255, 255, 0.15);
	transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.sp-flow-dot::before {
	content: '';
	position: absolute;
	top: -8px;
	left: -8px;
	right: -8px;
	bottom: -8px;
	border-radius: 50%;
	border: 1.5px solid rgba(34, 75, 143, 0.2);
	transition: all 0.35s ease;
}

.sp-flow-dot::after {
	content: '';
	position: absolute;
	top: 6px;
	left: 50%;
	transform: translateX(-50%);
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.35);
	filter: blur(2px);
}

.sp-flow-step:hover .sp-flow-dot {
	background: linear-gradient(135deg, #ca0005 0%, #e11a1f 100%);
	box-shadow:
		0 10px 24px rgba(202, 0, 5, 0.38),
		inset 0 -3px 6px rgba(0, 0, 0, 0.15),
		inset 0 3px 6px rgba(255, 255, 255, 0.15);
	transform: translateY(-5px) scale(1.06);
}

.sp-flow-step:hover .sp-flow-dot::before {
	top: -12px;
	left: -12px;
	right: -12px;
	bottom: -12px;
	border-color: rgba(202, 0, 5, 0.35);
}

.sp-flow-step h4 {
	font-size: 14px;
	font-weight: bold;
	color: #224b8f;
	margin: 0 0 6px;
	line-height: 1.4;
	transition: color 0.25s;
}

.sp-flow-step:hover h4 { color: #ca0005; }

.sp-flow-step p {
	font-size: 12px;
	color: #888;
	line-height: 1.55;
	margin: 0;
	text-align: center;
}

/* ============================================================
   22. Banner 响应式
   ============================================================ */
.sp-banner {
	width: 100%;
	max-width: 1000px;
	margin: 0 auto;
	overflow: hidden;
	background: #f6f6f6;
}

.sp-banner img {
	width: 100%;
	height: auto;
	display: block;
	object-fit: cover;
	object-position: center center;
}

/* ============================================================
   23. 屏幕阅读器专用文本
   ============================================================ */
.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
	word-wrap: normal !important;
}

/* ============================================================
   24. 服务页面 - 表格紧凑样式
   ============================================================ */
.service-page .sp-table,
.sp-table {
	width: 100%;
	max-width: 900px;
	margin: 16px auto;
	border-collapse: collapse;
	font-size: 13px;
}

.sp-table th {
	padding: 8px 10px;
	font-size: 13px;
	background: #224b8f;
	color: #fff;
	font-weight: bold;
	text-align: left;
	white-space: nowrap;
}

.sp-table td {
	padding: 6px 10px;
	border: 1px solid #e0e6ed;
	line-height: 1.5;
	font-size: 13px;
}

.sp-table tbody tr:nth-child(even) { background: #f8f9fb; }
.sp-table tbody tr:hover { background: #eef2f8; }

.service-page table,
.full-width-inner table {
	width: 100%;
	max-width: 900px;
	margin: 16px auto;
	border-collapse: collapse;
	font-size: 13px;
}

.service-page table th,
.service-page table td,
.full-width-inner table th,
.full-width-inner table td {
	padding: 6px 10px;
	border: 1px solid #e0e6ed;
	font-size: 13px;
	line-height: 1.5;
}

/* 表格容器 */
.table-wrap {
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	margin: 0 auto;
	max-width: 900px;
}

/* ============================================================
   25. 科技风页面 —— 通用
   ============================================================ */
.tech-page {
	width: 100%;
	background: var(--tech-white);
	color: var(--tech-text-body);
	font-family: var(--font-main);
}

.tech-inner {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 32px;
	box-sizing: border-box;
}

/* ---------- Hero 首屏 ---------- */
.tech-hero {
	width: 100%;
	padding: 100px 0 80px;
	background: var(--tech-white);
	position: relative;
	overflow: hidden;
	text-align: center;
}

.tech-hero::before {
	content: '';
	position: absolute;
	top: -30%;
	left: 50%;
	transform: translateX(-50%);
	width: 700px;
	height: 700px;
	background: radial-gradient(circle, rgba(99, 91, 255, 0.08) 0%, transparent 70%);
	pointer-events: none;
}

.tech-hero-inner {
	width: 100%;
	max-width: 900px;
	margin: 0 auto;
	padding: 0 32px;
	box-sizing: border-box;
	position: relative;
	z-index: 1;
}

.tech-tag {
	display: inline-block;
	padding: 6px 18px;
	background: var(--tech-blue-pale);
	border: 1px solid rgba(30, 64, 175, 0.15);
	color: var(--tech-primary);
	font-size: 13px;
	border-radius: 20px;
	letter-spacing: 1px;
	margin-bottom: 28px;
	font-weight: bold;
}

.tech-hero h1 {
	font-size: 48px;
	font-weight: bold;
	color: var(--tech-text-dark);
	line-height: 1.25;
	margin: 0 0 24px;
	letter-spacing: 1px;
	text-align: center;
}

.tech-hero-desc {
	font-size: 17px;
	color: var(--tech-text-muted);
	line-height: 1.9;
	max-width: 720px;
	margin: 0 auto 44px;
	text-align: center;
}

.tech-hero-stats {
	display: flex;
	justify-content: center;
	gap: 56px;
	flex-wrap: wrap;
}

.tech-stat {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.tech-stat-num {
	font-size: 36px;
	font-weight: bold;
	color: var(--tech-primary);
	line-height: 1.2;
	font-family: Arial, sans-serif;
	letter-spacing: 1px;
}

.tech-stat-label {
	font-size: 13px;
	color: var(--tech-text-muted);
	margin-top: 6px;
	letter-spacing: 1px;
}

/* ---------- 通用 Section ---------- */
.tech-section { width: 100%; padding: 80px 0; }
.tech-section-white { background: var(--tech-white); }
.tech-section-blue { background: var(--tech-blue-light); }

.tech-h2 {
	font-size: 28px;
	font-weight: bold;
	color: var(--tech-text-dark);
	margin: 0 0 40px;
	display: flex;
	align-items: center;
	gap: 16px;
	line-height: 1.4;
}

.tech-h2-num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	background: linear-gradient(135deg, var(--tech-primary) 0%, var(--tech-secondary) 100%);
	color: #fff;
	font-size: 16px;
	font-weight: bold;
	border-radius: 10px;
	font-family: Arial, sans-serif;
	flex-shrink: 0;
}

.tech-desc {
	font-size: 15px;
	color: var(--tech-text-muted);
	line-height: 1.9;
	margin: 0 0 32px;
}

/* ---------- 服务卡片 ---------- */
.tech-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
}

.tech-card {
	background: var(--tech-white);
	border: 1px solid var(--tech-border);
	border-radius: 14px;
	padding: 32px 28px;
	transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	overflow: hidden;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.03);
}

.tech-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 3px;
	background: linear-gradient(90deg, var(--tech-primary), var(--tech-accent));
	opacity: 0;
	transition: opacity 0.35s ease;
}

.tech-card:hover {
	border-color: rgba(30, 64, 175, 0.25);
	box-shadow: 0 12px 40px rgba(30, 64, 175, 0.08);
	transform: translateY(-4px);
}

.tech-card:hover::before { opacity: 1; }

.tech-card-icon { font-size: 36px; margin-bottom: 18px; line-height: 1; }

.tech-card h3 {
	font-size: 19px;
	font-weight: bold;
	color: var(--tech-text-dark);
	margin: 0 0 14px;
	line-height: 1.4;
}

.tech-card p {
	font-size: 14px;
	color: var(--tech-text-muted);
	line-height: 1.9;
	margin: 0;
}

.tech-card-full {
	grid-column: 1 / -1;
	max-width: 100%;
}

/* ---------- 服务详情列表 ---------- */
.tech-list { display: flex; flex-direction: column; gap: 16px; }

.tech-list-item {
	background: var(--tech-white);
	border: 1px solid var(--tech-border);
	border-radius: 10px;
	padding: 24px 28px;
	border-left: 4px solid var(--tech-primary);
	transition: all 0.3s ease;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.03);
}

.tech-list-item:hover {
	border-left-color: var(--tech-accent);
	box-shadow: 0 6px 20px rgba(6, 182, 212, 0.1);
}

.tech-list-item h3 {
	font-size: 17px;
	font-weight: bold;
	color: var(--tech-text-dark);
	margin: 0 0 8px;
}

.tech-list-item p {
	font-size: 14px;
	color: var(--tech-text-muted);
	margin: 0;
	line-height: 1.8;
}

/* ---------- 案例网格 ---------- */
.tech-case-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}

.tech-case-card {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	background: var(--tech-white);
	border: 1px solid var(--tech-border);
	border-radius: 12px;
	padding: 24px 26px;
	transition: all 0.3s ease;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.03);
}

.tech-case-card:hover {
	border-color: rgba(6, 182, 212, 0.35);
	transform: translateX(6px);
	box-shadow: 0 6px 20px rgba(6, 182, 212, 0.08);
}

.tech-case-dot {
	width: 10px;
	height: 10px;
	background: var(--tech-accent);
	border-radius: 50%;
	flex-shrink: 0;
	margin-top: 7px;
	box-shadow: 0 0 8px rgba(6, 182, 212, 0.4);
}

.tech-case-card p {
	font-size: 15px;
	color: var(--tech-text-body);
	line-height: 1.7;
	margin: 0;
}

/* ============================================================
   26. 服务优势 —— 居中版
   ============================================================ */
.tech-adv-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	max-width: 1000px;
	margin: 0 auto;
	justify-content: center;
}

.tech-adv-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	background: var(--tech-white);
	border: 1px solid var(--tech-border);
	border-radius: 14px;
	padding: 32px 22px;
	text-align: center;
	transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	overflow: hidden;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.03);
}

.tech-adv-card::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--tech-primary), var(--tech-accent));
	transition: width 0.35s ease;
	border-radius: 2px;
}

.tech-adv-card:hover {
	border-color: rgba(30, 64, 175, 0.25);
	transform: translateY(-6px);
	box-shadow: 0 16px 40px rgba(30, 64, 175, 0.1);
}

.tech-adv-card:hover::after { width: 60%; }

.tech-adv-icon {
	font-size: 40px;
	margin: 0 auto 16px;
	line-height: 1;
	text-align: center;
}

.tech-adv-card h4 {
	font-size: 16px;
	font-weight: bold;
	color: var(--tech-text-dark);
	margin: 0 0 10px;
	text-align: center;
	width: 100%;
}

.tech-adv-card p {
	font-size: 13px;
	color: var(--tech-text-muted);
	line-height: 1.7;
	margin: 0;
	text-align: center;
	width: 100%;
}

/* ============================================================
   27. 核心指标
   ============================================================ */
.tech-metrics {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	max-width: 900px;
	margin: 0 auto;
}

.tech-metric-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	background: #fff;
	border: 1px solid var(--tech-border);
	border-radius: 14px;
	padding: 32px 20px;
	transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.03);
	position: relative;
	overflow: hidden;
}

.tech-metric-item::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 3px;
	background: linear-gradient(90deg, var(--tech-primary), var(--tech-accent));
	opacity: 0;
	transition: opacity 0.35s ease;
}

.tech-metric-item:hover {
	border-color: rgba(30, 64, 175, 0.25);
	box-shadow: 0 12px 40px rgba(30, 64, 175, 0.08);
	transform: translateY(-5px);
}

.tech-metric-item:hover::before { opacity: 1; }

.tech-metric-num {
	font-size: 38px;
	font-weight: bold;
	color: var(--tech-primary);
	line-height: 1.2;
	font-family: Arial, sans-serif;
	letter-spacing: 1px;
	margin-bottom: 10px;
}

.tech-metric-label {
	font-size: 14px;
	color: var(--tech-text-muted);
	letter-spacing: 1px;
}

/* ============================================================
   28. 产品中心四宫格
   ============================================================ */
.report-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
	margin: 32px auto 0;
	max-width: 1000px;
}

.report-item {
	position: relative;
	background: #fff;
	border: 1px solid var(--tech-border);
	border-radius: 12px;
	overflow: hidden;
	transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
	cursor: pointer;
}

.report-item:hover {
	border-color: rgba(30, 64, 175, 0.25);
	box-shadow: 0 16px 40px rgba(30, 64, 175, 0.12);
	transform: translateY(-4px);
}

.report-item img {
	width: 100%;
	height: 220px;
	display: block;
	object-fit: cover;
	object-position: top center;
	transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.report-item:hover img { transform: scale(1.05); }

.report-label {
	display: block;
	text-align: center;
	padding: 14px 12px;
	font-size: 15px;
	font-weight: bold;
	color: var(--tech-primary);
	background: #fff;
	border-top: 1px solid var(--tech-border);
	letter-spacing: 1px;
	transition: all 0.3s ease;
}

.report-item:hover .report-label {
	background: linear-gradient(135deg, var(--tech-primary) 0%, var(--tech-secondary) 100%);
	color: #fff;
	border-top-color: transparent;
}

.report-item::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--tech-primary), var(--tech-accent));
	opacity: 0;
	transition: opacity 0.35s ease;
	z-index: 2;
}

.report-item:hover::before { opacity: 1; }

/* ============================================================
   29. 网络舆情公关 —— 专属样式
   ============================================================ */
.pr-hero-banner {
	margin: 44px auto 0;
	max-width: 1000px;
	text-align: center;
}

.pr-hero-banner img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 12px;
	box-shadow: 0 8px 32px rgba(30, 64, 175, 0.12);
	background: #fff;
}

.pr-service-layout {
	display: grid;
	grid-template-columns: 480px 1fr;
	gap: 40px;
	align-items: center;
	margin-top: 20px;
}

.pr-service-image img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 12px;
	box-shadow: 0 8px 32px rgba(30, 64, 175, 0.1);
	background: #fff;
}

.pr-service-text {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.pr-service-item {
	background: #fff;
	border: 1px solid var(--tech-border);
	border-radius: 12px;
	padding: 24px 28px;
	border-left: 4px solid var(--tech-primary);
	transition: all 0.3s ease;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.03);
}

.pr-service-item:hover {
	border-left-color: var(--tech-accent);
	box-shadow: 0 8px 24px rgba(6, 182, 212, 0.1);
	transform: translateX(4px);
}

.pr-service-item h3 {
	font-size: 18px;
	font-weight: bold;
	color: var(--tech-primary);
	margin: 0 0 10px;
	line-height: 1.4;
}

.pr-service-item p {
	font-size: 14px;
	color: var(--tech-text-body);
	line-height: 1.9;
	margin: 0;
	text-align: justify;
}

.pr-adv-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 16px;
	margin-top: 12px;
}

.pr-adv-card {
	background: #fff;
	border: 1px solid var(--tech-border);
	border-radius: 12px;
	overflow: hidden;
	transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.03);
	text-align: center;
	padding-bottom: 20px;
}

.pr-adv-card:hover {
	border-color: rgba(30, 64, 175, 0.25);
	transform: translateY(-6px);
	box-shadow: 0 16px 40px rgba(30, 64, 175, 0.12);
}

.pr-adv-img {
	width: 100%;
	overflow: hidden;
	background: var(--tech-blue-light);
}

.pr-adv-img img {
	width: 100%;
	height: auto;
	display: block;
	transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.pr-adv-card:hover .pr-adv-img img { transform: scale(1.05); }

.pr-adv-card h4 {
	font-size: 17px;
	font-weight: bold;
	color: var(--tech-primary);
	margin: 16px 0 8px;
	letter-spacing: 1px;
}

.pr-adv-card p {
	font-size: 13px;
	color: var(--tech-text-muted);
	line-height: 1.7;
	margin: 0;
	padding: 0 14px;
	text-align: center;
}

/* 服务承诺区块 */
.tech-promise {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
	max-width: 900px;
	margin: 0 auto;
}

.tech-promise-item {
	display: flex;
	align-items: flex-start;
	gap: 18px;
	background: #fff;
	border: 1px solid var(--tech-border);
	border-radius: 12px;
	padding: 26px 24px;
	transition: all 0.3s ease;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.03);
}

.tech-promise-item:hover {
	border-color: rgba(30, 64, 175, 0.25);
	box-shadow: 0 8px 24px rgba(30, 64, 175, 0.08);
	transform: translateY(-3px);
}

.tech-promise-icon {
	font-size: 32px;
	line-height: 1;
	flex-shrink: 0;
	margin-top: 2px;
}

.tech-promise-item h4 {
	font-size: 17px;
	font-weight: bold;
	color: var(--tech-primary);
	margin: 0 0 8px;
}

.tech-promise-item p {
	font-size: 14px;
	color: var(--tech-text-muted);
	line-height: 1.8;
	margin: 0;
}

/* ============================================================
   30. CTA 区块
   ============================================================ */
.tech-cta {
	width: 100%;
	padding: 80px 0;
	background: var(--tech-dark-cta);
	position: relative;
	overflow: hidden;
}

.tech-cta::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, rgba(6, 182, 212, 0.1) 0%, transparent 70%);
	pointer-events: none;
}

.tech-cta .tech-inner {
	text-align: center;
	position: relative;
	z-index: 1;
}

.tech-cta h2 {
	font-size: 30px;
	font-weight: bold;
	color: #ffffff;
	margin: 0 0 16px;
}

.tech-cta p {
	font-size: 16px;
	color: #94a3b8;
	margin: 0 0 32px;
	line-height: 1.8;
}

.tech-cta-btn {
	display: inline-block;
	padding: 16px 48px;
	background: linear-gradient(135deg, #06b6d4 0%, #635bff 100%);
	color: #ffffff;
	font-size: 16px;
	font-weight: bold;
	border-radius: 50px;
	text-decoration: none;
	letter-spacing: 1px;
	transition: all 0.3s ease;
	box-shadow: 0 8px 24px rgba(6, 182, 212, 0.3);
}

.tech-cta-btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 32px rgba(6, 182, 212, 0.5);
	color: #ffffff;
}

/* ============================================================
   31. 图片容器
   ============================================================ */
.tech-page .sp-image-wrap {
	margin: 24px auto 0;
	max-width: 1000px;
	text-align: center;
}

.tech-page .sp-image-wrap img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 12px;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
	background: #fff;
}

.tech-section-white .sp-flow {
	margin: 28px 0 32px;
}

.tech-section-white .sp-flow::before {
	left: 10%;
	right: 10%;
}

.tech-page .sp-tags {
	justify-content: center;
	margin: 20px auto 0;
	max-width: 900px;
}

.tech-page .sp-tags li {
	padding: 10px 22px;
	font-size: 14px;
	border-radius: 25px;
	background: #fff;
	border: 1px solid var(--tech-border);
	color: var(--tech-primary);
	font-weight: normal;
	transition: all 0.3s ease;
	cursor: default;
}

.tech-page .sp-tags li:hover {
	background: var(--tech-primary);
	color: #fff;
	border-color: var(--tech-primary);
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(30, 64, 175, 0.2);
}

.tech-section-white .tech-card {
	background: #fff;
	border-color: #e8edf5;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.tech-section-white .tech-card:hover {
	border-color: rgba(30, 64, 175, 0.2);
	box-shadow: 0 12px 40px rgba(30, 64, 175, 0.1);
}

.tech-page .sp-table {
	margin: 0 auto;
}

.tech-page .sp-table th {
	background: linear-gradient(135deg, var(--tech-primary) 0%, var(--tech-secondary) 100%);
}

.tech-section-blue .tech-card p {
	line-height: 1.9;
}

/* ============================================================
   32. 响应式 —— 平板 ≤ 1024px
   ============================================================ */
@media screen and (max-width: 1024px) {

	.header,
	.nav_box .nav,
	.center,
	.how,
	.skill,
	.advantage,
	.find,
	.case,
	.pingjia,
	.hotpoint,
	.footer,
	.keyword,
	.nav01,
	.contact {
		width: 100%;
		max-width: var(--container);
		padding-left: 16px;
		padding-right: 16px;
	}

	/* 导航栏平板端收紧 */
	.nav_box .nav li {
		padding: 0 8px;
	}

	.nav_box .nav a {
		font-size: 13px;
	}

	#banner { height: 300px; }

	#banner ul li h1,
	#banner ul li h2,
	#banner ul li h3 {
		font-size: 32px;
		padding: 50px 20px 20px;
	}

	#banner ul li a { font-size: 16px; padding: 0 20px 20px; }

	.center { height: auto; padding-bottom: 30px; overflow: hidden; }

	.center li {
		width: calc(33.33% - 30px);
		height: auto;
		padding: 40px 10px;
		line-height: 1.6;
		margin: 10px 15px;
	}

	.center .first,
	.center .first1 { margin-left: 15px; }

	.how { height: auto; padding-bottom: 30px; }
	.how p { height: auto; line-height: 1.9; }

	.skill { height: auto; text-align: center; padding-bottom: 20px; }
	.skill img { position: static; margin: 0 auto; max-width: 100%; }

	.advantage { height: auto; overflow: hidden; padding-bottom: 20px; }
	.advantage li {
		width: calc(50% - 20px);
		margin: 0 10px 20px;
		padding-right: 0;
	}

	/* 入网查询体系 */
	.find {
		width: 100%;
		max-width: 100%;
		height: auto;
		min-height: 480px;
		padding: 30px 20px 40px;
		margin: 0 auto;
		position: relative;
		overflow: hidden;
		background: #1a2a5e;
		isolation: isolate;
	}

	.find::before {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: rgba(26, 42, 94, 0.55);
		z-index: 0;
		pointer-events: none;
	}

	.find > img {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		max-width: none;
		margin: 0;
		object-fit: cover;
		object-position: center center;
		z-index: -1;
	}

	.find p {
		position: relative;
		z-index: 1;
		margin: 0 0 16px;
		padding: 0;
		font-size: 16px;
		line-height: 1.8;
		color: #fff;
		text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
		background: none;
	}

	.find ul {
		position: relative;
		z-index: 1;
		margin: 0;
		padding: 0;
		top: auto;
		left: auto;
	}

	.find li { float: none; width: 100%; display: block; }

	.find .l {
		width: 100%;
		padding: 0 0 20px;
		background: none;
		line-height: 1.9;
		font-size: 14px;
		text-align: justify;
		color: #fff;
		text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
	}

	.find .r {
		width: 100%;
		height: auto;
		margin: 0;
		padding: 20px;
		box-sizing: border-box;
		font-size: 18px;
		line-height: 1.8;
		color: #fff;
		background: rgba(202, 0, 5, 0.85);
		border-radius: 6px;
	}

	.case { height: auto; overflow: hidden; padding-bottom: 20px; }
	.case_box li { float: none; text-align: center; margin-bottom: 16px; }
	.case_box li img { margin: 0 auto; }

	.pingjia { height: auto; overflow: hidden; padding-bottom: 30px; }
	.pingjia ul {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		gap: 20px 0;
	}
	.pingjia li {
		width: calc(50% - 10px);
		margin: 0;
		min-height: 152px;
		height: auto;
		background-size: 100% 100%;
		background-color: #fff;
	}
	.pingjia .sec,
	.pingjia .last {
		background-size: 100% 100%;
		background-color: #fff;
	}

	.hotpoint { height: auto; overflow: hidden; padding-bottom: 30px; }
	.hotpoint li {
		width: calc(50% - 25px);
		margin: 0 25px 24px 0;
	}
	.hotpoint li:nth-child(2n) { margin-right: 0; }
	.hotpoint li.last { margin-right: 0; }
	.hotpoint dd a { width: 100%; }

	.nav01_left,
	.nav01_right { float: none; width: 100%; position: static; }
	.nav01_left h2,
	.nav01_left .ce_nav { position: static; width: 100%; }
	.nav01_left .ce_nav { height: auto; padding: 10px 0; }
	.nav01_right li { width: 100%; padding-left: 20px; }

	.contact {
		width: 100%;
		max-width: 100%;
		padding: 20px 16px;
		overflow: hidden;
	}
	.contact .cont_left,
	.contact .cont_right {
		float: none;
		width: 100%;
		padding: 0 0 20px;
	}
	.contact .cont_right { padding-top: 0; }
	.contact .cont_right .ewm { margin: 0 auto 20px; }
	.contact .cont_right .lxwm {
		border-left: none;
		border-top: 1px solid #fff;
		padding-left: 0;
		padding-top: 15px;
		text-align: center;
		line-height: 1.8;
	}

	#commentform input[type="text"],
	#commentform input[type="email"],
	#commentform input[type="url"],
	#commentform textarea { max-width: 100%; }

	.footer { padding: 12px 16px; line-height: 1.6; }

	/* 服务页面平板端 */
	.sp-grid { grid-template-columns: repeat(2, 1fr); }
	.sp-adv-grid { grid-template-columns: repeat(2, 1fr); }
	.sp-banner {
		max-width: 100%;
		padding: 0 16px;
		box-sizing: border-box;
	}

	/* 科技风页面平板端 */
	.tech-hero { padding: 70px 0 60px; }
	.tech-hero h1 { font-size: 36px; }
	.tech-hero-stats { gap: 40px; }
	.tech-stat-num { font-size: 30px; }
	.tech-grid { grid-template-columns: 1fr; }

	/* 服务优势居中版 —— 平板 */
	.tech-adv-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 16px;
		max-width: 100%;
		padding: 0 16px;
		box-sizing: border-box;
	}

	.tech-metrics {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}
	.tech-metric-num { font-size: 32px; }

	.report-grid {
		max-width: 100%;
		padding: 0 16px;
		box-sizing: border-box;
	}
	.report-item img { height: 200px; }

	.pr-service-layout {
		grid-template-columns: 1fr;
		gap: 24px;
	}
	.pr-service-image { max-width: 480px; margin: 0 auto; }
	.pr-adv-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 14px;
	}
	.pr-hero-banner {
		padding: 0 16px;
		box-sizing: border-box;
	}

	.tech-page .sp-image-wrap {
		max-width: 100%;
		padding: 0 16px;
		box-sizing: border-box;
	}
}

/* ============================================================
   33. 响应式 —— 手机 ≤ 768px
   ============================================================ */
@media screen and (max-width: 768px) {

	.header {
		height: auto;
		padding: 16px;
		text-align: center;
	}

	.header .l { height: auto; }

	.logo-link {
		position: static;
		justify-content: center;
		margin-bottom: 10px;
		gap: 10px;
		flex-wrap: nowrap;
	}

	.logo-img { width: 40px; height: 40px; }

	.site-title { text-align: left; }

	.site-name {
		font-size: 15px;
		letter-spacing: 0.5px;
		white-space: normal;
		line-height: 1.3;
	}

	.site-desc {
		font-size: 11px;
		margin-top: 2px;
		white-space: normal;
	}

	.header .r { position: static; margin-top: 8px; }
	.header .r h2 { display: inline-block; }
	.header .r p { font-size: 20px; }

	/* 手机端导航：两列换行 */
	.nav_box .nav {
		height: auto;
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		padding: 0 8px;
		overflow-x: visible;
	}

	.nav_box .nav li {
		width: 50%;
		min-width: 0;
		background-image: none;
		padding: 0 8px;
		flex-shrink: 1;
	}

	#banner { height: 220px; }

	#banner ul li h1,
	#banner ul li h2,
	#banner ul li h3 {
		font-size: 24px;
		padding: 30px 16px 12px;
	}

	#banner ul li a { font-size: 14px; padding: 0 16px 16px; }

	.center li { width: 100%; margin: 10px 0; padding: 40px 10px; }
	.center .first,
	.center .first1 { margin-left: 0; }

	.advantage li { width: 100%; margin: 0 0 20px; }

	.pingjia ul { display: block; }
	.pingjia li {
		width: 100%;
		margin: 0 0 20px;
		min-height: 152px;
		height: auto;
		background-size: 100% 100%;
		background-color: #fff;
		font-size: 14px;
		line-height: 1.8;
	}
	.pingjia .sec,
	.pingjia .last {
		background-size: 100% 100%;
		background-color: #fff;
	}

	.hotpoint li { width: 100%; margin: 0 0 24px; }
	.hotpoint dt a { padding-left: 0; float: right; }

	/* 入网查询体系手机端 */
	.find { min-height: auto; padding: 24px 14px 30px; }
	.find p { font-size: 15px; line-height: 1.8; margin-bottom: 14px; }
	.find .l { font-size: 13px; line-height: 2; padding-bottom: 18px; }
	.find .r { font-size: 15px; padding: 16px; line-height: 1.9; }

	.contact { padding: 16px 12px; }
	.contact-form-wrap { padding: 18px 14px; border-radius: 8px; }

	#commentform .comment-reply-title {
		font-size: 17px;
		margin-bottom: 16px;
		padding-bottom: 10px;
	}

	.service-options { gap: 8px; }
	.service-option {
		padding: 7px 12px;
		font-size: 12px;
		border-radius: 18px;
	}

	#commentform input[type="submit"] {
		width: 100%;
		min-width: 0;
		padding: 13px 20px;
		font-size: 15px;
	}

	.comment-form-captcha input[type="text"] { width: 80px !important; }
	.contact .cont_right .ewm { max-width: 100%; }

	.navigation,
	.navigation_b {
		float: none;
		width: 100%;
		text-align: center;
	}

	/* 服务页面手机端 */
	.sp-section { padding: 34px 0; }
	.sp-inner { padding: 0 14px; }

	.sp-title {
		font-size: 20px;
		padding-bottom: 14px;
		margin-bottom: 18px;
	}

	.sp-h2 {
		font-size: 18px;
		margin-bottom: 22px;
		gap: 8px;
	}

	.sp-h2 .sp-badge {
		width: 30px;
		height: 30px;
		line-height: 30px;
		font-size: 12px;
	}

	.sp-h3 { font-size: 15px; margin: 22px 0 12px; }
	.sp-sub { font-size: 14px; margin-bottom: 18px; }
	.sp-lead { font-size: 14px; padding: 16px 18px; }
	.service-page p { font-size: 14px; }

	.sp-grid { grid-template-columns: 1fr; gap: 16px; }
	.sp-card { padding: 18px; }

	.sp-adv-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
	.sp-adv-card { padding: 20px 14px; }
	.sp-adv-icon { font-size: 30px; }

	.sp-faq-item { padding: 16px 18px; }
	.sp-faq-item h3 { font-size: 15px; }

	.sp-banner { padding: 0 12px; }

	/* 服务流程手机端竖向时间线 */
	.sp-flow {
		flex-direction: column;
		align-items: stretch;
		overflow: visible;
		margin: 24px 0 32px;
		padding-left: 8px;
	}

	.sp-flow::before {
		top: 20px;
		bottom: 20px;
		left: 38px;
		right: auto;
		width: 2px;
		height: auto;
		background: linear-gradient(
			180deg,
			rgba(34, 75, 143, 0.15) 0%,
			rgba(34, 75, 143, 0.55) 40%,
			rgba(202, 0, 5, 0.55) 60%,
			rgba(202, 0, 5, 0.15) 100%
		);
	}

	.sp-flow-step {
		flex: none;
		min-width: 0;
		max-width: none;
		width: 100%;
		display: flex;
		align-items: flex-start;
		text-align: left;
		padding: 0 0 22px;
	}

	.sp-flow-step:last-child { padding-bottom: 0; }

	.sp-flow-dot {
		flex-shrink: 0;
		width: 46px;
		height: 46px;
		font-size: 13px;
		margin: 0 16px 0 8px;
	}

	.sp-flow-dot::before {
		top: -6px;
		left: -6px;
		right: -6px;
		bottom: -6px;
	}

	.sp-flow-step:hover .sp-flow-dot { transform: none; }
	.sp-flow-step h4 { font-size: 15px; margin: 4px 0 4px; }
	.sp-flow-step p { font-size: 13px; text-align: left; }

	/* 表格手机端 */
	.sp-table { font-size: 12px; max-width: 100%; }
	.sp-table th,
	.sp-table td { padding: 5px 6px; font-size: 12px; }

	.service-page table,
	.full-width-inner table { font-size: 12px; }
	.service-page table th,
	.service-page table td,
	.full-width-inner table th,
	.full-width-inner table td { padding: 5px 6px; }

	.table-wrap { max-width: 100%; }
	.tech-page .sp-table { font-size: 12px; min-width: 500px; }
	.tech-page .sp-table th,
	.tech-page .sp-table td { padding: 8px 10px; font-size: 12px; }

	/* 科技风页面手机端 */
	.tech-inner { padding: 0 20px; }
	.tech-hero-inner { padding: 0 20px; }

	.tech-hero { padding: 50px 0 40px; }
	.tech-hero h1 { font-size: 26px; }
	.tech-hero-desc { font-size: 15px; }
	.tech-hero-stats { gap: 28px; }
	.tech-stat-num { font-size: 26px; }

	.tech-section { padding: 50px 0; }
	.tech-h2 { font-size: 22px; margin-bottom: 28px; }
	.tech-h2-num { width: 36px; height: 36px; font-size: 14px; }

	.tech-grid { gap: 18px; }
	.tech-card { padding: 24px 20px; }
	.tech-card h3 { font-size: 17px; }
	.tech-card-full { padding: 24px 20px; }
	.tech-card-full h3 { font-size: 17px; }

	.tech-case-grid { grid-template-columns: 1fr; }

	/* 服务优势居中版 —— 手机 */
	.tech-adv-grid {
		grid-template-columns: 1fr;
		gap: 14px;
		padding: 0 12px;
	}
	.tech-adv-card { padding: 24px 20px; }
	.tech-adv-icon { font-size: 32px; margin-bottom: 12px; }
	.tech-adv-card h4 { font-size: 15px; }
	.tech-adv-card p { font-size: 13px; }

	.tech-cta { padding: 50px 0; }
	.tech-cta h2 { font-size: 22px; }
	.tech-cta-btn { padding: 14px 36px; font-size: 15px; }

	.tech-list-item { padding: 20px 22px; }

	/* 核心指标手机端 */
	.tech-metrics {
		grid-template-columns: repeat(2, 1fr);
		gap: 14px;
	}
	.tech-metric-item { padding: 22px 12px; }
	.tech-metric-num { font-size: 26px; margin-bottom: 6px; }
	.tech-metric-label { font-size: 12px; }

	/* 产品中心四宫格手机端 */
	.report-grid {
		grid-template-columns: 1fr;
		gap: 14px;
		padding: 0 12px;
	}
	.report-item img { height: 180px; }
	.report-label { padding: 12px 10px; font-size: 14px; }

	/* 网络舆情公关手机端 */
	.pr-hero-banner {
		margin: 28px auto 0;
		padding: 0 12px;
	}
	.pr-hero-banner img { border-radius: 8px; }
	.pr-service-image { max-width: 100%; }
	.pr-service-item { padding: 18px 20px; }
	.pr-service-item h3 { font-size: 16px; }
	.pr-service-item p { font-size: 13px; }

	.pr-adv-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 12px;
	}
	.pr-adv-card h4 { font-size: 15px; margin: 12px 0 6px; }
	.pr-adv-card p { font-size: 12px; padding: 0 10px; }

	/* 服务承诺手机端 */
	.tech-promise {
		grid-template-columns: 1fr;
		gap: 14px;
	}
	.tech-promise-item { padding: 20px 18px; gap: 14px; }
	.tech-promise-icon { font-size: 26px; }
	.tech-promise-item h4 { font-size: 15px; }
	.tech-promise-item p { font-size: 13px; }

	/* 图片容器手机端 */
	.tech-page .sp-image-wrap {
		margin: 18px auto 0;
		padding: 0 12px;
	}
	.tech-page .sp-image-wrap img { border-radius: 8px; }
}

@media screen and (max-width: 480px) {
	.sp-adv-grid { grid-template-columns: 1fr; }

	.tech-metrics {
		grid-template-columns: 1fr 1fr;
		gap: 10px;
	}
	.tech-metric-num { font-size: 22px; }

	.pr-adv-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   34. 大屏 ≥ 1400px 居中
   ============================================================ */
@media screen and (min-width: 1400px) {
	.header,
	.nav_box .nav,
	.center,
	.how,
	.skill,
	.advantage,
	.find,
	.case,
	.pingjia,
	.hotpoint,
	.footer {
		max-width: var(--container);
	}
}