@charset "utf-8";
/* ===================================================================
   responsive.css  —  移动端自适应样式（基于 Mobile 文件夹设计还原）
   断点：<=1024 平板过渡；<=768 移动端；<=480 小屏
   设计参考：Mobile/css/common.css + index.css + style.css
   =================================================================== */

/* 桌面端默认隐藏汉堡按钮（由 mobile-nav.js 动态注入） */
.nav-toggle {
	display: none;
}

/* ---------- 全局基础 ---------- */
@media screen and (max-width: 1200px) {
body {
	min-width: 100% !important;
	overflow-x: hidden;
}
.content, .header, .footer, .nav, .blk-main {
	width: 100% !important;
	box-sizing: border-box;
	padding-left: 4%;
	padding-right: 4%;
}
.nav ul {
	width: 100% !important;
}
}

/* ---------- 平板过渡 (<=1024) ---------- */
@media screen and (max-width: 1024px) {
/* 头部欢迎条 */
.topWrap {
	height: auto !important;
}
.twz {
	display: none;
}
.h_nr {
	padding: 12px 0 !important;
	height: auto !important;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
}
.logo, .logo img {
	width: 200px !important;
	height: auto !important;
}
.h_nr h2 {
	margin-left: 20px !important;
	padding-left: 20px !important;
	margin-top: 0 !important;
	width: auto !important;
	font-size: 16px !important;
	line-height: 22px !important;
}
.h_nr h2 b {
	font-size: 13px !important;
}
.h_nr .sc {
	font-size: 18px !important;
	padding-left: 38px !important;
	background-size: 28px !important;
	margin-top: 0 !important;
}
/* 导航 - 平板横向滚动 */
.navbg {
	height: 50px !important;
}
.nav {
	height: 50px;
}
.nav ul {
	height: 50px !important;
	white-space: nowrap;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}
.nav li {
	height: 50px !important;
	line-height: 50px !important;
	width: auto !important;
	padding: 0 18px;
}
.nav li:before, .nav li:after {
	display: none !important;
}
.nav li a {
	font-size: 15px;
	padding: 0 6px !important;
}
.fullSlide {
	min-width: 100% !important;
}
.fullSlide .bd li {
	height: auto !important;
}
.fullSlide .bd li img {
	width: 100% !important;
	position: static !important;
	margin-left: 0 !important;
	height: auto !important;
	max-height: 420px;
	object-fit: cover;
}
.fullSlide .hd {
	width: 100% !important;
	left: 0 !important;
	margin-left: 0 !important;
}
.fullSlide .hd ul {
	margin-left: 0 !important;
	text-align: center;
}
/* banner文案 - 平板 */
.fullSlide .banner-txt {
	width: 100% !important;
	left: 0 !important;
	margin-left: 0 !important;
	height: auto !important;
	top: 30% !important;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
.fullSlide .banner-txt .bt-in {
	top: 0 !important;
	left: 4% !important;
}
.fullSlide .banner-txt h3 {
	font-size: 34px !important;
	letter-spacing: 2px !important;
}
.fullSlide .banner-txt p {
	font-size: 16px !important;
	margin-top: 10px !important;
}
}

/* ---------- 移动端主断点 (<=768) ---------- */
@media screen and (max-width: 768px) {
body {
	font-size: 14px !important;
}
/* 顶部欢迎条隐藏 */
.topWrap {
	height: auto !important;
	background: #fff !important;
	border-bottom: 2px solid #0891e1;
}
.twz {
	display: none;
}
.header {
	padding: 8px 4% !important;
}
.h_nr {
	padding: 8px 0 !important;
	height: auto !important;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
.logo {
	width: 160px !important;
	height: auto !important;
}
.logo img {
	width: 160px !important;
	height: auto !important;
}
.h_nr h2 {
	/* display: none; */
	float: left;
	width: 82% !important;
}
.h_nr .sc {
	display: none;/* font-size: 16px !important;
		padding-left: 32px !important;
		background-size: 22px !important;
		height: 36px !important;
		line-height: 36px !important;
		margin-top: 0 !important; */
}
/* 导航：汉堡菜单 */
.navbg {
	height: 50px !important;
	position: relative;
}
.nav {
	height: 50px;
}
/* 汉堡按钮 */
.nav-toggle {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	width: 20px;
	/* height: 22px; */
	position: absolute;
	top: 14px;
	right: 4%;
	cursor: pointer;
	z-index: 20;
}
.nav-toggle span {
	display: block;
	width: 100%;
	height: 3px;
	background: #fff;
	margin: 3px 0;
	-webkit-transition: 0.3s;
	transition: 0.3s;
}
.nav-toggle.active span:nth-child(1) {
	-webkit-transform: translateY(9px) rotate(45deg);
	transform: translateY(9px) rotate(45deg);
}
.nav-toggle.active span:nth-child(2) {
	opacity: 0;
}
.nav-toggle.active span:nth-child(3) {
	-webkit-transform: translateY(-9px) rotate(-45deg);
	transform: translateY(-9px) rotate(-45deg);
}
.nav ul {
	display: none;
	position: absolute;
	top: 50px;
	left: 0;
	width: 100%;
	height: auto !important;
	background: #333;
	z-index: 99;
	/* padding: 10px 0; */
	white-space: normal;
	overflow: visible;
}
.navbg.active ul {
	display: block;
}
.nav li {
	float: none !important;
	width: 100% !important;
	height: 44px !important;
	line-height: 44px !important;
	text-align: center;
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.nav li:last-child {
	border-bottom: 0;
}
.nav li.home {
	background: #d72718;
}
.nav li:before, .nav li:after {
	display: none !important;
}
.nav li a {
	color: #fff !important;
	font-size: 15px;
	padding: 0 !important;
	display: block;
}
.nav li:hover:after, .nav li.cur:after {
	width: 0;
}
/* Banner */
.fullSlide {
	height: auto !important;
	min-width: 100% !important;
}
.fullSlide .bd li {
	height: 200px !important;
}
.fullSlide .bd li img {
	width: 100% !important;
	height: 200px !important;
	position: static !important;
	margin-left: 0 !important;
	object-fit: cover;
}
.fullSlide .hd {
	bottom: 20px !important;
}
/* banner文案 - 移动端 */
.fullSlide .banner-txt h3 {
	font-size: 22px !important;
	letter-spacing: 1px !important;
}
.fullSlide .banner-txt p {
	font-size: 13px !important;
	margin-top: 8px !important;
	letter-spacing: 0 !important;
}
.fullSlide .banner-txt .bt-line {
	width: 36px !important;
	height: 3px !important;
	margin-bottom: 10px !important;
}
/* 通用标题 */
.tit01 {
	font-size: 22px !important;
	margin-bottom: 20px !important;
	padding-top: 24px !important;
	height: auto !important;
	background-position: center 35px !important;
	background-size: auto 60px !important;
}
.tit01 span {
	font-size: 12px !important;
}
.pages .tit01, .blk .tit01 {
	height: auto !important;
	padding-top: 18px !important;
}
/* ---------- 首页：统计数字 ---------- */
.zz_bj {
	margin: 10px auto !important;
	height: auto !important;/* padding: 12px 4% !important; */
}
.zz .m_zz ul {
	width: 100% !important;
	height: auto !important;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
.zz .m_zz li {
	width: 50% !important;
	height: 100px !important;
	padding-top: 18px !important;
}
.zz .m_zz li em b {
	font-size: 32px !important;
}
.zz .m_zz li em b:after {
	top: 2px;
	right: -10px;
	font-size: 16px;
}
.zz .m_zz li em i {
	font-size: 14px !important;
}
.zz .m_zz li span {
	font-size: 14px !important;
	line-height: 24px !important;
	height: auto !important;
}
/* ---------- 首页：公司简介 ---------- */
.jx_bj {
	height: auto !important;
	padding-top: 0px !important;
}
.jx dl {
	width: 100% !important;
	height: auto !important;
}
.jx dl dt {
	width: 100% !important;
	height: auto !important;
	float: none !important;
}
.jx dl dt:before {
	display: none;
}
.jx dl dt img {
	width: 100% !important;
	height: auto !important;
}
.jx dl dd {
	width: 100% !important;
	float: none !important;
	padding-top: 15px !important;
}
.jx dl dd h3 {
	font-size: 22px !important;
	margin-bottom: 15px !important;
	height: auto !important;
}
.jx dl dd h3 span {
	font-size: 14px !important;
	margin-top: 8px !important;
}
.jx dl dd p {
	font-size: 13px !important;
	line-height: 22px !important;
	height: auto !important;
}
/* ---------- 首页：产品选型 ---------- */
.pro_bj {
	padding: 30px 0 15px !important;
	background-size: cover !important;
	max-height: none !important;
}
.fen {
	width: 100% !important;
}
.fen ul {
	height: auto !important;
}
.fen ul li {
	width: 50% !important;
	height: 40px !important;
	line-height: 40px !important;
}
.fen ul li a {
	line-height: 40px !important;
	height: 40px !important;
	font-size: 14px !important;
}
.fen_nr {
	width: 100% !important;
}
.fen_nr p {
	min-height: 0 !important;
	height: auto !important;
	padding: 6px 0;
}
.fen_nr p:before, .fen_nr p:after {
	display: none;
}
.fen_nr p a {
	font-size: 12px !important;
	height: 28px !important;
	line-height: 28px !important;
	padding-left: 20px !important;
	background-position: 8px center !important;
	background-size: 10px !important;
}
.m_pro {
	width: 92% !important;
	height: auto !important;
	margin: 20px auto !important;
}
.m_pro .gd {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	width: 100% !important;
}
.m_pro dl {
	width: 50% !important;
	margin: 15px 0px !important;
	padding: 0 8px !important;
	box-sizing: border-box !important;
	height: auto !important;
	float: none !important;
}
.m_pro dt {
	width: 100%;
	height: 150px !important;
	overflow: hidden;
}
.m_pro dt img {
	width: 100% !important;
	height: 100% !important;
	object-fit: cover;
	display: block;
}
.m_pro dd {
	width: 100% !important;
	padding-top: 6px !important;
	text-align: center !important;
}
.m_pro dd h3 {
	height: 30px !important;
	line-height: 30px !important;
	font-size: 14px !important;
	text-align: center !important;
}
.m_pro dd p {
	height: 50px !important;
	font-size: 12px !important;
	line-height: 18px !important;
	padding: 0 8px !important;
	text-align: center !important;
}
.m_pro dd span {
	width: 100px !important;
	height: 28px !important;
	line-height: 28px !important;
	font-size: 12px !important;
}
/* ---------- 首页：六大特色 ---------- */
.gybj {
	height: auto !important;
	padding-top: 30px !important;
}
.gy {
	width: 100% !important;
	height: auto !important;
	background: none !important;
}
.gy_left, .gy_right {
	width: 100% !important;
	float: none !important;
}
.gy_left dl, .gy_right dl {
	width: 100% !important;
	height: auto !important;
	margin-bottom: 20px !important;
	padding: 12px 0;
	border-bottom: 1px dashed #eee;
}
.gy_left dt, .gy_right dt {
	width: 70px !important;
	height: 70px !important;
	padding-top: 0 !important;
	float: left !important;
}
.gy_left dt img, .gy_right dt img {
	width: 70px !important;
	height: 70px !important;
}
.gy_left dd, .gy_right dd {
	width: calc(100% - 80px) !important;
	padding: 0 0 0 10px !important;
	height: auto !important;
}
.gy_left dd h3, .gy_right dd h3 {
	font-size: 16px !important;
	height: 30px !important;
	line-height: 30px !important;
	padding-left: 0 !important;
	padding-right: 0 !important;
	padding-top: 0 !important;
	margin-bottom: 6px !important;
	background: none !important;
	text-align: left !important;
}
.gy_left dd p, .gy_right dd p {
	font-size: 13px !important;
	line-height: 20px !important;
	text-align: left !important;
}
.gy_right dl dt {
	float: left !important;
}
/* ---------- 首页：CTA 横幅 ---------- */
.gg {
	height: auto !important;
	background-size: 100% !important;
	background-color: #0890e1;
	padding: 20px 4% !important;
	margin-top: 0px;
}
.gg dl {
	width: 100% !important;
	height: auto !important;
}
.gg dl dt {
	width: 100% !important;
	float: none !important;
	margin-top: 0 !important;
	font-size: 18px !important;
	line-height: 28px !important;
	height: auto !important;
	text-align: center;
	margin-bottom: 10px;
	padding-top: 0px !important;
}
.gg dl dd {
	width: 100% !important;
	position: static !important;
	text-align: center;
}
.gg dl dd p {
	float: none !important;
	/* display: inline-block !important;
		padding-left: 32px !important;
		background-size: 22px !important; */
	background-position: 0 5px !important;/* font-size: 18px !important;
		margin: 0 auto 10px !important; */
}
.gg dl dd p span {
	font-size: 13px !important;
}
.gg dl dd em {
	float: none !important;
	margin: 0 auto;
	background: #333 !important;
}
/* ---------- 首页：六大优势 ---------- */
.ysbj {
	padding: 30px 0px !important;
}
.ysbj h2 {
	margin-bottom: 20px !important;
}
.ys {
	height: auto !important;
	padding-top: 10px !important;
}
.yst {
	width: 100% !important;/* height: auto !important;
		position: static !important;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		padding: 0 4%;
		box-sizing: border-box; */
}
.yst li {
	width: 50% !important;
	float: left;
	margin-bottom: 10px;/* margin: 0 0 15px !important;
		padding-top: 40px !important;
		background-size: 40px !important;
		font-size: 14px !important;
		height: 60px !important; */
}
.yst li:nth-child(1) {
	margin-left: 0 !important;
}
.yst li:last-child {
	margin-right: 0 !important;
}
/* ---------- 首页：应用领域 ---------- */
.casebj {
	height: auto !important;
	padding-top: 30px !important;
	padding-bottom: 30px !important;
	background-size: cover !important;
}
.casebj h2 {
	margin-bottom: 20px !important;
}
.case dl {
	width: 100% !important;
	height: auto !important;
	margin: 0 0 15px !important;
}
.case dl dt {
	width: 40% !important;
	height: 230px !important;
}
.case dl dt img {
	width: 100% !important;
	height: 100% !important;
}
.case dl dd {
	width: 60% !important;
	height: 130px !important;
	padding: 12px 10px 0 !important;
}
.case dl dd h3 {
	font-size: 14px !important;
	height: 26px !important;
	line-height: 26px !important;
}
.case dl dd p {
	height: 60px !important;
	line-height: 18px !important;
	font-size: 12px !important;
}
.case dl dd span a {
	width: 90px !important;
	height: 26px !important;
	background-size: 100% 26px !important;
}
/* ---------- 首页：新闻资讯 ---------- */
.nswsbj {
	height: auto !important;
	padding-top: 30px !important;
	padding-bottom: 30px !important;
}
.nswsbj:before {
	display: none;
}
.nswsbj h2 {
	margin-bottom: 20px !important;
}
.newstit {
	/* width: 90% !important;
		margin: 0 auto 15px !important; */
	display: none !important;
}
.newstit i a {
	font-size: 14px !important;
	width: 50% !important;
	height: 36px !important;
	line-height: 36px !important;
}
.newstit p {
	display: none !important;
}
.news_nr {
	margin-top: 20px !important;
	min-height: 0 !important;
}
.news2 {
	width: 100% !important;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
.news2 dl {
	width: 50% !important;
	margin: 0 0 20px !important;
	padding: 0 4%;
	box-sizing: border-box;
	text-align: center;
}
.news2 dt {
	width: 100% !important;
	height: 140px !important;
	margin: 0 !important;
	overflow: hidden;
}
.news2 dt img {
	width: 100% !important;
	height: 100% !important;
	object-fit: cover;
	display: block;
}
.news2 dd {
	width: 100% !important;
	margin: 0 !important;
}
.news2 dd h4 {
	font-size: 14px !important;
	line-height: 22px !important;
	margin: 10px auto !important;
}
.news2 dd p {
	font-size: 12px !important;
	line-height: 18px !important;
	height: 54px !important;
	text-align: left !important;
}
.news2 dd em {
	font-size: 12px !important;
	margin-top: 10px !important;
	text-align: left !important;
}
/* ---------- 首页：关于益捷 ---------- */
.aboutbj {
	height: auto !important;
	padding: 30px 0 !important;
	background-size: cover !important;
}
.about {
	padding-top: 0 !important;
}
.about h2 {
	font-size: 22px !important;
	text-align: center !important;
}
.about dl {
	width: 100% !important;
}
.about dl dt {
	width: 100% !important;
}
.about dl dt img {
	width: 100% !important;
	height: auto !important;
}
.about dl dd {
	width: 100% !important;
	font-size: 13px !important;
	line-height: 22px !important;
	padding-top: 10px !important;
}
/* ---------- 底部 ---------- */
.footWrap {
	height: auto !important;
	padding: 25px 4% 15px !important;
}
.footer {
	width: 100% !important;
}
.footWrap .ft1, .footWrap .ft2, .footWrap .ft3 {
	float: none !important;
	width: 100% !important;
	height: auto !important;
	margin-bottom: 20px !important;
	margin-left: 0 !important;
	text-align: left !important;
}
.footWrap .ft1 .flogo {
	height: auto !important;
	margin-bottom: 10px;
}
.footWrap .ft1 .flogo em {
	font-size: 16px !important;
	padding: 10px 0 !important;
}
.footWrap .ft1 li {
	font-size: 13px !important;
	height: 28px !important;
	line-height: 28px !important;
	padding-left: 28px !important;
}
.footWrap .ft1 li em img {
	width: 18px;
}
.footWrap .ftgy h2, .footWrap .ft3 h2 {
	font-size: 15px !important;
	height: 28px !important;
	line-height: 28px !important;
	margin-bottom: 6px !important;
}
.footWrap .ftgy li {
	line-height: 26px !important;
	font-size: 13px !important;
}
.footWrap .ft3 .code dl {
	margin: 0 auto !important;
	/* width: 100px !important;
		height: 100px !important; */
		/* padding: 3px !important; */
		/* background: #fff; */
	border-radius: 5px;
	text-align: left;
}
.footWrap .ft3 .code dt img {
/* width: 94px !important;
		height: 94px !important; */
}
.footWrap .copyr {
	height: auto !important;
	line-height: 22px !important;
	padding: 10px 0 !important;
	text-align: center;
	font-size: 12px !important;
	margin-top: 15px !important;
}
.footWrap .copyr span {
	float: none !important;
	margin: 8px 0 0 !important;
	height: auto !important;
	line-height: 22px !important;
	text-align: center;
}
.footWrap .copyr em {
	display: none;
}
/* 客服侧边栏隐藏 */
.client-2 {
	display: none !important;
}
/* ---------- 内页通用：搜索栏、面包屑 ---------- */
.p1-search-1 {
	height: auto !important;
	padding: 10px 4% !important;
	line-height: 24px !important;
}
.p1-search-1 p {
	line-height: 24px !important;
}
.p1-search-1 a {
	margin-right: 8px !important;
}
.ty-banner-1 img {
	width: 100% !important;
	height: 160px !important;
	object-fit: cover;
}
.p12-curmbs-1 {
	font-size: 12px !important;
	padding: 8px 0 !important;
}
.p12-curmbs-1 b {
	border-left-width: 6px !important;
	padding-left: 6px !important;
}
.p12-curmbs-1 span {
	height: 30px !important;
	line-height: 30px !important;
}
/* 内页主体两栏变单栏 */
.blk-main .blk-xs, .blk-main .blk-sm {
	float: none !important;
	width: 100% !important;
}
.blk-xs, .blk-sm {
	width: 100% !important;
}
/* 左侧分类导航 */
.fdh-01-tit {
	height: 44px !important;
}
.fdh-01-tit h3 {
	height: 44px !important;
	line-height: 44px !important;
	font-size: 16px !important;
}
.fdh-01-nav-one h3 {
	height: 40px !important;
	line-height: 40px !important;
	background-size: 12px !important;
	background-position: right 12px center !important;
}
.fdh-01-nav-one h3 a {
	font-size: 14px !important;
	margin-left: 16px !important;
	margin-right: 16px !important;
}
.fdh-01-nav dt {
	height: 36px !important;
	line-height: 36px !important;
	padding-left: 20px !important;
	padding-right: 30px !important;
	font-size: 13px !important;
}
.contact-z1 {
	height: auto !important;
	padding: 15px 4% !important;
	background: #0891e1 !important;
	color: #fff !important;
	margin-bottom: 15px !important;
}
.contact-z1 p {
	padding: 0 !important;
	background: none !important;
	color: #fff !important;
	font-size: 14px !important;
}
.contact-z1 span {
	padding-left: 0 !important;
	font-size: 18px !important;
	color: #fff !important;
}
/* 文章/新闻列表 */
.p14-infolist-1-list dl {
	padding: 12px !important;
}
.p14-infolist-1-list dt {
	width: 35% !important;
	margin-right: 4% !important;
}
.p14-infolist-1-list dd {
	margin-left: 39% !important;
}
.p14-infolist-1-list dd h4 {
	font-size: 14px !important;
	height: 30px !important;
	line-height: 30px !important;
	margin-bottom: 4px !important;
}
.p14-infolist-1-list-desc {
	font-size: 12px !important;
	line-height: 18px !important;
	-webkit-line-clamp: 2;
	max-height: 36px !important;
	margin-bottom: 8px !important;
}
.p14-infolist-1-list-deta {
	width: 70px !important;
	height: 24px !important;
	line-height: 24px !important;
	font-size: 12px !important;
}
/* 图片列表 */
.imglist li {
	width: 48% !important;
	margin-right: 4% !important;
	margin-bottom: 10px !important;
}
.imglist li:nth-child(3n) {
	margin-right: 4% !important;
}
.imglist li:nth-child(2n) {
	margin-right: 0 !important;
}
.imglist li img {
	width: 100% !important;
	height: 100px !important;
}
.imglist li span {
	height: 30px !important;
	line-height: 30px !important;
	font-size: 12px !important;
}
/* 分页 */
.pages {
	margin-bottom: 30px !important;
}
.flickr {
	margin-top: 20px !important;
}
.flickr a, .flickr span.current {
	padding: 0 8px !important;
	height: 26px !important;
	line-height: 26px !important;
	font-size: 12px !important;
}
/* 文章详情 */
.p15-infocontent-1-tit {
	font-size: 18px !important;
	line-height: 26px !important;
	height: auto !important;
	margin-bottom: 15px !important;
	padding: 0 0 10px !important;
}
.p15-infocontent-1-bool {
	font-size: 12px !important;
	height: auto !important;
	padding-bottom: 8px !important;
}
.p15-infocontent-1-bool i {
	width: auto !important;
	padding: 0 10px !important;
}
.p15-infocontent-1-con {
	line-height: 22px !important;
	font-size: 13px !important;
}
.p14-info-3-tit {
	height: 36px !important;
	line-height: 36px !important;
	font-size: 16px !important;
}
.p14-info-3-list li {
	height: auto !important;
	line-height: 22px !important;
	padding: 8px 0 !important;
	font-size: 13px !important;
}
.p14-info-3-list li a {
	margin-left: 10px !important;
}
.p14-pagination-1 dl {
	padding-right: 0 !important;
}
.p14-pagination-1 dd {
	font-size: 13px !important;
	line-height: 22px !important;
	height: auto !important;
	padding: 8px 0 !important;
}
.p14-pagination-1 dd span {
	height: 24px !important;
	line-height: 24px !important;
}
.p14-pagination-1 dt {
	margin-left: 0 !important;
}
/* 产品详情 */
.p15-showcase {
	padding: 10px !important;
}
.p15-showcase-left, .p15-showcase-right {
	width: 100% !important;
	float: none !important;
	margin-right: 0 !important;
}
.p15-showcase-left .tempWrap, .p15-showcase-left-pic {
	width: 100% !important;
}
.p15-showcase-left-pic img {
	width: 100% !important;
}
.p15-showcase-right-tit {
	font-size: 16px !important;
	height: 32px !important;
	line-height: 32px !important;
	margin: 10px 0 !important;
}
.p15-showcase-right-con {
	font-size: 13px !important;
	line-height: 22px !important;
	max-height: none !important;
	margin-bottom: 12px !important;
}
.pc-cx-tel-1 {
	position: static !important;
	width: 100% !important;
	padding-top: 8px !important;
}
.pc-cx-tel-1-t1 {
	width: 100px !important;
	height: 36px !important;
	line-height: 36px !important;
	font-size: 14px !important;
}
.pc-cx-tel-1-t2 {
	font-size: 14px !important;
	line-height: 14px !important;
	height: auto !important;
	padding-left: 50px !important;
	background-size: 36px !important;
	background-position: 5px top !important;
}
.p14-prodcontent-1 {
	padding: 15px 0 !important;
	margin-bottom: 12px !important;
}
.p14-prodcontent-1-tit {
	height: 36px !important;
	line-height: 36px !important;
	font-size: 16px !important;
	margin-bottom: 12px !important;
}
.p14-prodcontent-1-tit span {
	height: 36px !important;
	line-height: 36px !important;
	padding-left: 22px !important;
	background-size: 16px !important;
	background-position: 0 center !important;
}
.p14-prodcontent-1-tit em {
	font-size: 12px !important;
}
/* 产品详情内容区块 */
.pin1 {
	width: 100% !important;
	margin: 15px auto 0 !important;
}
.pinnav1 li {
	width: 48% !important;
	height: auto !important;
	margin-right: 4% !important;
	margin-bottom: 12px !important;
}
.pinnav1 li:nth-child(3n) {
	margin-right: 4% !important;
}
.pinnav1 li:nth-child(2n) {
	margin-right: 0 !important;
}
.pinnav1 li p {
	height: auto !important;
	font-size: 14px !important;
	line-height: 20px !important;
	padding: 4px;
}
.pinnav1 li p img {
	width: 100% !important;
	height: auto !important;
}
.pinnav1 li b {
	font-size: 14px !important;
}
/* yy / ys 产品特性 */
.yy h3 {
	font-size: 14px !important;
	margin-bottom: 10px !important;
}
.yy ul li {
	width: 100% !important;
	margin-right: 0 !important;
	margin-bottom: 10px !important;
}
.yy ul li:nth-child(3n) {
	margin-right: 0 !important;
}
.yy ul li img {
	width: 100% !important;
	height: auto !important;
}
.ys {
	margin-top: 20px !important;
}
.ys li {
/* width: 100% !important;
		margin-right: 0 !important;
		margin-top: 12px !important;
		padding: 0 12px !important;
		box-sizing: border-box; */
}
/* .ys li:nth-child(4),
	.ys li:nth-child(5),
	.ys li:nth-child(6) {
		margin-top: 12px !important;
	}
	.ys li:nth-child(3n) {
		margin-right: 0 !important;
	} */
.ys li span {
	width: 90px !important;
	height: 70px !important;
	margin: -35px auto 8px !important;
	background-size: 70px !important;
	font-size: 13px !important;
	line-height: 18px !important;
}
.ys li p {
	font-size: 12px !important;
	line-height: 18px !important;
}
.ys li p em {
	font-size: 14px !important;
}
/* CTA 横幅（内页） */
.gg dl {
	width: 100% !important;
	margin: 30px auto 0 !important;
}
.gg dl dt {
	margin-top: 12px !important;
	font-size: 14px !important;
	line-height: 24px !important;
	height: auto !important;
	width: 100% !important;
}
.gg dl dd {
	width: 100% !important;
	position: static !important;
	top: auto !important;
	right: auto !important;
}
.gg dl dd p {
	/* font-size: 14px !important;
		padding-left: 40px !important;
		background-size: 24px !important; */
	height: 24px !important;
	line-height: 24px !important;
	margin-top: 0 !important;
}
.gg dl dd p span {
	font-size: 12px !important;
}
/* 联系方式块 */
.temp_ec_01dz dl {
	padding: 15px 4% !important;
}
.temp_ec_01dz dt {
	height: auto !important;
	line-height: 28px !important;
	font-size: 16px !important;
	padding: 8px 0 !important;
}
.temp_ec_01dz dd {
	height: auto !important;
	line-height: 26px !important;
	padding-top: 6px !important;
	padding-left: 36px !important;
	background-position: left 12px !important;
	background-size: 20px !important;
	font-size: 13px !important;
}
.temp_ec_01dz dd.temp_ec_01dd01 {
	background-position: left 12px !important;
	background-size: 20px !important;
}
.temp_ec_01dz dd.temp_ec_01dd02 {
	background-position: left 12px !important;
	background-size: 20px !important;
}
.temp_ec_01dz dd span {
	font-size: 14px !important;
}
/* 翻页 */
.p12-pagination-1 a, .p12-pagination-1 span {
	padding: 0 6px !important;
	height: 24px !important;
	line-height: 24px !important;
	font-size: 12px !important;
}
/* 关于-工厂风采 */
.p12-aboutinfo-1-tit {
	height: auto !important;
	line-height: 32px !important;
	font-size: 18px !important;
	padding: 12px 0 !important;
}
.p12-aboutinfo-1-tit span {
	font-size: 14px !important;
}
.gy .wz {
	padding: 10px !important;
	height: auto !important;
}
.gy .wz span {
	font-size: 16px !important;
}
.gy .wz p {
	font-size: 13px !important;
	line-height: 22px !important;
	margin: 8px 0 !important;
}
.gy img {
	width: 100% !important;
	height: auto !important;
}
.zs_l {
	width: 100% !important;
	font-size: 13px !important;
}
.tdzs {
	height: auto !important;
}
.tdzs li {
	width: 48% !important;
	margin-left: 0 !important;
	margin-right: 4% !important;
	margin-bottom: 12px !important;
}
.tdzs li:nth-child(2n) {
	margin-right: 0 !important;
}
.tdzs li img {
	width: 100% !important;
	height: auto !important;
}
.tdzs p {
	height: 36px !important;
	line-height: 36px !important;
	font-size: 13px !important;
}
/* 左侧分类列表 dl-dt 树（产品中心） */
.fdh-01-nav dl {
	padding: 0 !important;
}
.fdh-01-nav dt {
	padding-left: 28px !important;
}
}

/* ---------- 小屏优化 (<=480) ---------- */
@media screen and (max-width: 480px) {
.logo {
	float: left;
	width: 6.5% !important;
}
.logo img {
	width: 100% !important;
}
.h_nr .sc {
	font-size: 14px !important;
	padding-left: 28px !important;
	background-size: 18px !important;
}
.h_nr h2 b {
	letter-spacing: 0px !important;
}
/* 首页统计数字保持 2x2 */
	/* 产品 1 列 */
.m_pro dl {
	width: 100% !important;
	padding: 0 !important;
}
.m_pro dt {
	height: 200px !important;
}
.m_pro dd p {
	height: 40px !important;
}
/* 应用领域 1 列 */
.case dl dt {
	width: 100% !important;
	/* height: 160px !important; */
	float: none !important;
}
.case dl dt img {
	height: 100% !important;
}
.case dl dd {
	width: 100% !important;
	float: none !important;
	height: auto !important;
	padding: 12px !important;
}
/* 新闻列表 1 列 */
.p14-infolist-1-list dl {
	padding: 10px !important;
}
.p14-infolist-1-list dt {
	width: 100% !important;
	margin-right: 0 !important;
	margin-bottom: 8px !important;
}
.p14-infolist-1-list dd {
	margin-left: 0 !important;
}
/* 图片列表 1 列 */
.imglist li {
	width: 100% !important;
	margin-right: 0 !important;
}
.imglist li img {
	height: 140px !important;
}
/* pinnav1 单列 */
.pinnav1 li {
	width: 100% !important;
	margin-right: 0 !important;
}
/* 工厂风采 单列 */
.tdzs li {
	width: 100% !important;
	margin-right: 0 !important;
}
/* 首页新闻 1 列 */
.news2 dl {
	width: 100% !important;
	padding: 0 6%;
}
.news2 dt {
	height: 180px !important;
}
.news2 dd p {
	height: auto !important;
}
}
