@font-face {
	font-family: 'Conv_DINCondensedC';
	src: url('../fonts/DINCondensedC.eot');
	src: local('☺'), url('../font/DINCondensedC.woff') format('woff'), url('../font/DINCondensedC.ttf') format('truetype'), url('../font/DINCondensedC.svg') format('svg');
	font-weight: normal;
	font-style: normal;
}
body{font-family:"微软雅黑",Helvetica Neue,sans-serif,Arial;height: 100%;position: relative;background:#fff;color:#444;}
html{scroll-behavior:smooth;}

/* 全局过渡优化 */
*{
	-webkit-font-smoothing:antialiased;
	-moz-osx-font-smoothing:grayscale;
}

/* 滚动条美化 */
::-webkit-scrollbar{
	width:8px;
}
::-webkit-scrollbar-track{
	background:#f1f1f1;
}
::-webkit-scrollbar-thumb{
	background:linear-gradient(180deg,#0a6e31,#27ae60);
	border-radius:4px;
}
::-webkit-scrollbar-thumb:hover{
	background:linear-gradient(180deg,#065226,#0a6e31);
}

/* 容器最大宽度 */
.container{
	max-width:1600px;
	margin:0 auto;
	padding:0 20px;
}
input[type="text"]{-webkit-appearance:none;}
textarea{-webkit-appearance:none;}
h1,h2,h3,h4,h5,h6,figure{font-weight:400;}
::-webkit-selection{color:#fff;background:#0a6e31;}
::-moz-selection{color:#fff;background:#0a6e31;}
::selection{color:#fff;background:#0a6e31;}
.text-lowercase{text-transform:lowercase;}
.text-uppercase,.initialism{text-transform:uppercase;}
.text-capitalize{text-transform:capitalize;}
a{color:#444;text-decoration:none}
a:focus,a:hover{color:#0a6e31;transition:none}
a.text-gray:hover{color:#444}
p{margin:0}
dl,dd,ul,li{margin:0;padding:0;list-style:none}
.fixed{z-index:9999;}
.bg-gray{background:#f5f7f5}
.bg-sub{background:#6e6e6e}
.bg-light{background:#f5f7f5}

/* 标签 */
.tag{display:inline-block;transition:.5s}
.tag.padding{padding:5px 12px}
.tags{color:#0a6e31!important;border:1px solid #0a6e31!important;background-color:unset;}
/* 英文字体 */
.Conv_DINCondensedC{font-family:"Conv_DINCondensedC";}
/* 行距 */
.blank{height:10px;line-height:10px;clear:both;font-size:0}
.blank-small{height:20px;line-height:20px;clear:both;font-size:0}
.blank-middle{height:30px;line-height:30px;clear:both;font-size:0}
.blank-big{height:50px;line-height:50px;clear:both;font-size:0}
.blank-large{height:80px;line-height:80px;clear:both;font-size:0}
/* 容器 */
.container-layout{max-width:1600px;}

/* ====== 全局新样式 begin ====== */

/* Section 通用标题区 */
.section-header{
	margin-bottom:70px;
	position:relative;
}
.section-header .section-tag{
	display:inline-block;
	font-size:14px;
	font-weight:600;
	letter-spacing:4px;
	color:#0a6e31;
	text-transform:uppercase;
	margin-bottom:15px;
	padding:5px 15px;
	background:linear-gradient(135deg,rgba(10,110,49,.08),rgba(0,184,148,.06));
	border-radius:20px;
}
.section-header h2{
	font-size:40px;
	font-weight:800;
	color:#1a1e2b;
	margin:0 0 25px 0;
	position:relative;
	display:inline-block;
}
.section-header h2:after{
	content:'';
	position:absolute;
	bottom:-10px;
	left:50%;
	transform:translateX(-50%);
	width:60px;
	height:4px;
	background:linear-gradient(90deg,#0a6e31,#27ae60,#00b894);
	border-radius:2px;
}
.section-header .section-divider{
	width:80px;
	height:4px;
	background:linear-gradient(90deg,#0a6e31,#27ae60);
	margin:0 auto 25px;
	border-radius:2px;
	position:relative;
	overflow:hidden;
}
.section-header .section-divider:before{
	content:'';
	position:absolute;
	top:0;
	left:-100%;
	width:100%;
	height:100%;
	background:linear-gradient(90deg,transparent,rgba(255,255,255,.6),transparent);
	animation:shimmer 3s infinite;
}
@keyframes shimmer{
	0%{left:-100%}
	100%{left:100%}
}
.section-header .section-divider span{
	display:block;
	width:40px;
	height:4px;
	background:#0a6e31;
	margin:0 auto;
	border-radius:2px;
}
.section-header .section-desc{
	font-size:17px;
	color:#666;
	max-width:700px;
	margin:25px auto 0;
	line-height:1.9;
}

/* 通用内边距 */
.section-padding{
	padding:100px 0;
	position:relative;
}

/* ====== 按钮样式 begin ====== */
.btn-primary{
	display:inline-block;
	padding:14px 36px;
	background:linear-gradient(135deg,#0a6e31,#27ae60);
	color:#fff;
	font-size:15px;
	font-weight:600;
	border-radius:4px;
	transition:all .3s ease;
	border:0;
	cursor:pointer;
	text-decoration:none;
}
.btn-primary:hover{
	background:linear-gradient(135deg,#065226,#0a6e31);
	color:#fff;
	transform:translateY(-2px);
	box-shadow:0 8px 25px rgba(10,110,49,.3);
}
.btn-secondary{
	display:inline-block;
	padding:14px 36px;
	background:transparent;
	color:#0a6e31;
	font-size:15px;
	font-weight:600;
	border-radius:4px;
	border:2px solid #0a6e31;
	transition:all .3s ease;
	cursor:pointer;
	text-decoration:none;
}
.btn-secondary:hover{
	background:#0a6e31;
	color:#fff;
	transform:translateY(-2px);
}
.btn-outline{
	display:inline-block;
	padding:12px 32px;
	background:transparent;
	color:#0a6e31;
	font-size:15px;
	font-weight:600;
	border-radius:4px;
	border:2px solid #0a6e31;
	transition:all .3s ease;
	text-decoration:none;
}
.btn-outline:hover{
	background:#0a6e31;
	color:#fff;
	transform:translateY(-2px);
	box-shadow:0 6px 20px rgba(10,110,49,.2);
}

/* ====== 按钮样式 end ====== */

/* ====== Hero Banner ====== */
.hero-wrapper{
	position:relative;
	overflow:hidden;
}
.hero-slides .owl-dots{
	position:absolute;
	bottom:30px;
	left:50%;
	transform:translateX(-50%);
}
.hero-slides .owl-dots .owl-dot span{
	background:rgba(255,255,255,.6);
	width:10px;
	height:10px;
	border-radius:50%;
	transition:all .3s;
}
.hero-slides .owl-dots .owl-dot.active span{
	background:#0a6e31;
	width:30px;
	border-radius:5px;
}
.hero-slides .owl-nav .owl-prev,
.hero-slides .owl-nav .owl-next{
	background:rgba(10,110,49,.7)!important;
	border-radius:50%;
	opacity:0;
	transition:opacity .3s;
}
.hero-slides:hover .owl-nav .owl-prev,
.hero-slides:hover .owl-nav .owl-next{
	opacity:1!important;
}

/* ====== 英雄区域 end ====== */

/* ====== Tab 通用样式 ====== */
.tab-normal .tab-head{width:100%;}
.tab-normal .tab .tab-nav li{display:inline-block;width:auto;text-align:center}
.tab-normal .tab .tab-nav li a{
	background:#fff;
	color:#555;
	border-radius:30px;
	padding:0 22px;
	height:44px;
	line-height:44px;
	margin:0 8px;
	display:block;
	border:1px solid #e0e0e0;
	font-size:15px;
	transition:all .3s;
}
.tab-normal .tab .tab-nav .active a{
	background:linear-gradient(135deg,#0a6e31,#27ae60);
	cursor:default;
	color:#fff;
	border-color:#0a6e31;
}
.tab-normal .tab .tab-nav li a:hover{
	background:linear-gradient(135deg,#0a6e31,#27ae60);
	color:#fff;
	border-color:#0a6e31;
}
.tab-normal .tab .tab-body{padding:40px 0 0 0}

/* ====== 产品推荐卡片 ====== */
.product-card{
	background:#fff;
	border-radius:8px;
	overflow:hidden;
	transition:all .4s ease;
	border:1px solid #eee;
}
.product-card:hover{
	transform:translateY(-8px);
	box-shadow:0 20px 40px rgba(10,110,49,.12);
	border-color:#0a6e31;
}
.product-img{
	position:relative;
	overflow:hidden;
	height:220px;
	display:flex;
	align-items:center;
	justify-content:center;
	background:#f9f9f9;
}
.product-img img{
	max-height:100%;
	width:auto;
	transition:transform .4s ease;
}
.product-card:hover .product-img img{
	transform:scale(1.08);
}
.product-overlay{
	position:absolute;
	bottom:-60px;
	left:0;
	right:0;
	background:linear-gradient(135deg,#0a6e31,#27ae60);
	padding:15px;
	text-align:center;
	transition:bottom .4s ease;
}
.product-card:hover .product-overlay{
	bottom:0;
}
.product-more{
	color:#fff;
	font-size:14px;
	font-weight:600;
	text-decoration:none;
}
.product-info{
	padding:20px 15px;
}
.product-info h3{
	font-size:16px;
	font-weight:600;
	margin:0;
	white-space:nowrap;
	overflow:hidden;
	text-overflow:ellipsis;
}
.product-info h3 a{
	color:#333;
	text-decoration:none;
	transition:color .3s;
}
.product-info h3 a:hover{
	color:#0a6e31;
}

/* 首页产品 carousel */
.carousel-pro .media{
	position:relative;
	-webkit-transition:.5s;
	transition:.5s;
	border-radius:8px;
}
.carousel-pro .media:hover{
	box-shadow:0 15px 35px rgba(10,110,49,.15);
	border-color:#0a6e31;
}
.carousel-pro .media-body{
	padding:10px 0 0 0
}
.carousel-pro.dot-center .owl-dots{
	position:relative;
	top:30px;
	padding:0;
	text-align:center;
	vertical-align:middle;
	display:inline-block;
	width:100%
}

/* ====== 关于我们 begin ====== */
.about-section{
	background:#fff;
	position:relative;
	overflow:hidden;
}
.about-section:before{
	content:'';
	position:absolute;
	top:0;
	right:0;
	width:50%;
	height:100%;
	background:linear-gradient(135deg,rgba(10,110,49,.02) 0%,transparent 100%);
	pointer-events:none;
	z-index:0;
}
.about-content{
	align-items:center;
	position:relative;
	z-index:1;
	gap:50px;
}
.about-image-wrapper{
	position:relative;
}
.about-main-img{
	border-radius:16px;
	box-shadow:0 25px 70px rgba(0,0,0,.12);
	width:100%;
	transition:transform .5s ease;
}
.about-image-wrapper:hover .about-main-img{
	transform:scale(1.02);
}
.about-experience{
	position:absolute;
	bottom:-25px;
	right:-25px;
	background:linear-gradient(135deg,#0a6e31,#27ae60);
	color:#fff;
	padding:30px 35px;
	border-radius:12px;
	text-align:center;
	box-shadow:0 15px 40px rgba(10,110,49,.35);
	z-index:2;
}
.about-experience .exp-number{
	display:block;
	font-size:52px;
	font-weight:800;
	line-height:1;
	font-family:"Conv_DINCondensedC";
}
.about-experience .exp-text{
	display:block;
	font-size:15px;
	margin-top:8px;
	opacity:.9;
}
.about-text{
	padding:0 20px 0 60px;
}
.about-company-name{
	font-size:32px;
	font-weight:700;
	color:#1a1e2b;
	margin-bottom:12px;
	position:relative;
	display:inline-block;
}
.about-company-name:after{
	content:'';
	position:absolute;
	bottom:-8px;
	left:0;
	width:50px;
	height:3px;
	background:linear-gradient(90deg,#0a6e31,#27ae60);
	border-radius:2px;
}
.about-lead{
	font-size:15px;
	color:#0a6e31;
	font-weight:600;
	margin-bottom:30px;
	letter-spacing:1px;
	margin-top:20px;
}
.about-desc p{
	font-size:15px;
	line-height:2.1;
	color:#555;
	margin-bottom:18px;
	text-align:justify;
}
.about-actions{
	margin-top:40px;
	display:flex;
	gap:20px;
	flex-wrap:wrap;
}
.about-desc{
	max-height:320px;
	overflow:hidden;
}

/* ====== 核心技术 begin ====== */
.tech-section{
	background:#f5f7f5;
	position:relative;
	overflow:hidden;
}
.tech-section:before{
	content:'';
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	background:
		radial-gradient(circle at 10% 20%,rgba(10,110,49,.03) 0%,transparent 40%),
		radial-gradient(circle at 90% 80%,rgba(0,184,148,.03) 0%,transparent 40%);
	pointer-events:none;
	z-index:0;
}
.tech-section .container{
	position:relative;
	z-index:1;
}
.tech-section .line{
	margin:0 -15px;
}
.tech-section .line .x4{
	padding:15px;
}
.tech-card{
	background:#fff;
	border-radius:16px;
	padding:50px 35px 40px;
	text-align:center;
	transition:all .5s cubic-bezier(.4,0,.2,1);
	border:1px solid rgba(0,0,0,.04);
	height:100%;
	position:relative;
	overflow:hidden;
	box-shadow:0 4px 20px rgba(0,0,0,.04);
}
.tech-card:hover{
	transform:translateY(-12px);
	box-shadow:0 30px 60px rgba(10,110,49,.15);
	border-color:rgba(10,110,49,.1);
}
.tech-card:before{
	content:'';
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:4px;
	background:linear-gradient(90deg,#0a6e31,#27ae60,#00b894);
	transform:scaleX(0);
	transform-origin:left;
	transition:transform .5s cubic-bezier(.4,0,.2,1);
}
.tech-card:hover:before{
	transform:scaleX(1);
}
.tech-icon{
	margin-bottom:35px;
	color:#0a6e31;
	display:flex;
	justify-content:center;
	align-items:center;
	height:90px;
	position:relative;
}
.tech-icon:after{
	content:'';
	position:absolute;
	width:80px;
	height:80px;
	background:radial-gradient(circle,rgba(10,110,49,.06) 0%,transparent 70%);
	border-radius:50%;
	z-index:-1;
}
.tech-card h3{
	font-size:22px;
	font-weight:700;
	color:#1a1e2b;
	margin-bottom:20px;
	margin-top:5px;
	position:relative;
}
.tech-card p{
	font-size:15px;
	line-height:2;
	color:#555;
	margin-bottom:28px;
}
.tech-stat{
	display:inline-flex;
	align-items:center;
	gap:10px;
	background:linear-gradient(135deg,rgba(10,110,49,.06),rgba(0,184,148,.06));
	padding:10px 24px;
	border-radius:30px;
	margin-top:5px;
	border:1px solid rgba(10,110,49,.08);
}
.tech-stat strong{
	font-size:20px;
	font-weight:700;
	color:#0a6e31;
	font-family:"Conv_DINCondensedC";
}
.tech-stat span{
	font-size:14px;
	color:#555;
}

/* ====== 解决方案 begin ====== */
.solution-section{
	background:#fff;
	position:relative;
	overflow:hidden;
}
.solution-section:before{
	content:'';
	position:absolute;
	top:-100px;
	right:-100px;
	width:400px;
	height:400px;
	background:radial-gradient(circle,rgba(10,110,49,.03) 0%,transparent 70%);
	pointer-events:none;
	z-index:0;
}
.solution-section:after{
	content:'';
	position:absolute;
	bottom:-100px;
	left:-100px;
	width:400px;
	height:400px;
	background:radial-gradient(circle,rgba(0,184,148,.03) 0%,transparent 70%);
	pointer-events:none;
	z-index:0;
}
.solution-grid{
	display:flex;
	flex-wrap:wrap;
	margin:0 -15px;
	position:relative;
	z-index:1;
}
.solution-grid .x4{
	padding:15px;
}
.solution-card{
	margin-bottom:30px;
	position:relative;
	border-radius:16px;
	overflow:hidden;
	box-shadow:0 8px 30px rgba(0,0,0,.06);
	border:1px solid rgba(0,0,0,.04);
	transition:all .5s cubic-bezier(.4,0,.2,1);
}
.solution-card:hover{
	transform:translateY(-10px);
	box-shadow:0 25px 60px rgba(10,110,49,.18);
	border-color:rgba(10,110,49,.12);
}
.solution-card:before{
	content:'';
	position:absolute;
	inset:0;
	border:2px solid transparent;
	border-radius:16px;
	transition:border-color .4s;
	z-index:3;
	pointer-events:none;
}
.solution-card:hover:before{
	border-color:#0a6e31;
}
.solution-img{
	position:relative;
	height:320px;
	overflow:hidden;
}
.solution-img img{
	width:100%;
	height:100%;
	object-fit:cover;
	transition:transform .6s cubic-bezier(.4,0,.2,1);
}
.solution-card:hover .solution-img img{
	transform:scale(1.12);
}
.solution-mask{
	position:absolute;
	inset:0;
	background:linear-gradient(to top,rgba(10,61,31,.95) 0%,rgba(10,110,49,.5) 50%,rgba(0,184,148,.2) 100%);
	opacity:0;
	transition:opacity .5s cubic-bezier(.4,0,.2,1);
	display:flex;
	align-items:flex-end;
	padding:35px;
}
.solution-card:hover .solution-mask{
	opacity:1;
}
.solution-info h4{
	font-size:22px;
	font-weight:700;
	color:#fff;
	margin-bottom:15px;
	line-height:1.4;
}
.solution-info p{
	font-size:15px;
	color:rgba(255,255,255,.9);
	line-height:1.9;
	margin-bottom:20px;
}
.solution-link{
	color:#fff;
	font-size:14px;
	font-weight:600;
	text-decoration:none;
	display:inline-flex;
	align-items:center;
	gap:8px;
	padding:8px 20px;
	background:rgba(255,255,255,.15);
	border-radius:30px;
	backdrop-filter:blur(10px);
	transition:all .3s;
}
.solution-link:hover{
	background:rgba(255,255,255,.25);
	gap:12px;
}
.solution-label{
	padding:20px 25px;
	background:#fff;
	border-top:3px solid #0a6e31;
	position:relative;
	z-index:2;
}
.solution-label h4{
	font-size:18px;
	font-weight:600;
	color:#1a1e2b;
	margin:0;
	transition:color .3s;
}
.solution-card:hover .solution-label h4{
	color:#0a6e31;
}

/* ====== 数据展示 begin ====== */
.stats-section{
	background:linear-gradient(135deg,#0a3d1f 0%,#0a6e31 30%,#00b894 70%,#0a6e31 100%);
	position:relative;
	padding:100px 0;
	color:#fff;
	overflow:hidden;
}
.stats-section:before{
	content:'';
	position:absolute;
	inset:0;
	background:
		radial-gradient(circle at 20% 50%,rgba(255,215,0,.08) 0%,transparent 50%),
		radial-gradient(circle at 80% 50%,rgba(0,184,148,.1) 0%,transparent 50%);
	pointer-events:none;
	z-index:1;
}
.stats-overlay{
	position:absolute;
	inset:0;
	background:url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M40 0L80 40L40 80L0 40z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
	pointer-events:none;
}
.stats-section .container{
	position:relative;
	z-index:2;
}
.stats-section .line{
	margin:0 -20px;
}
.stats-section .line .x3{
	padding:20px;
}
.stat-item{
	text-align:center;
	padding:40px 20px;
	position:relative;
}
.stat-item:after{
	content:'';
	position:absolute;
	right:0;
	top:50%;
	transform:translateY(-50%);
	width:1px;
	height:60%;
	background:rgba(255,255,255,.1);
}
.stat-item:last-child:after{
	display:none;
}
.stat-icon{
	display:flex;
	justify-content:center;
	margin-bottom:25px;
	color:rgba(255,215,0,.7);
}
.stat-number{
	font-size:56px;
	font-weight:800;
	font-family:"Conv_DINCondensedC";
	line-height:1;
	margin:15px 0 10px;
	background:linear-gradient(180deg,#fff,#c8e6c9);
	-webkit-background-clip:text;
	-webkit-text-fill-color:transparent;
	background-clip:text;
	text-shadow:none;
}
.stat-label{
	font-size:16px;
	color:rgba(255,255,255,.85);
	font-weight:500;
	letter-spacing:1px;
}

/* ====== 新闻中心 begin ====== */
.news-featured-card{
	background:#fff;
	border-radius:16px;
	overflow:hidden;
	box-shadow:0 8px 30px rgba(0,0,0,.06);
	transition:all .5s cubic-bezier(.4,0,.2,1);
	border:1px solid rgba(0,0,0,.04);
	position:relative;
}
.news-featured-card:hover{
	transform:translateY(-8px);
	box-shadow:0 20px 50px rgba(10,110,49,.15);
	border-color:rgba(10,110,49,.1);
}
.news-featured-card:after{
	content:'';
	position:absolute;
	bottom:0;
	left:0;
	width:0;
	height:3px;
	background:linear-gradient(90deg,#0a6e31,#27ae60);
	transition:width .5s cubic-bezier(.4,0,.2,1);
}
.news-featured-card:hover:after{
	width:100%;
}
.news-featured-img{
	position:relative;
	height:300px;
	overflow:hidden;
}
.news-featured-img img{
	width:100%;
	height:100%;
	object-fit:cover;
	transition:transform .6s cubic-bezier(.4,0,.2,1);
}
.news-featured-card:hover .news-featured-img img{
	transform:scale(1.08);
}
.news-featured-tag{
	position:absolute;
	top:20px;
	left:20px;
	background:linear-gradient(135deg,#0a6e31,#27ae60);
	color:#fff;
	font-size:12px;
	font-weight:600;
	padding:6px 18px;
	border-radius:20px;
	box-shadow:0 4px 15px rgba(10,110,49,.3);
	z-index:2;
}
.news-featured-body{
	padding:30px;
}
.news-featured-body h3{
	font-size:22px;
	font-weight:700;
	color:#1a1e2b;
	margin-bottom:15px;
	line-height:1.5;
}
.news-featured-body h3 a{
	color:#1a1e2b;
	text-decoration:none;
	transition:color .3s;
}
.news-featured-body h3 a:hover{
	color:#0a6e31;
}
.news-featured-desc{
	font-size:15px;
	color:#666;
	line-height:1.9;
	margin-bottom:22px;
}
.news-featured-meta{
	display:flex;
	justify-content:space-between;
	align-items:center;
	border-top:1px solid #eee;
	padding-top:18px;
}
.news-date{
	font-size:13px;
	color:#999;
}
.news-readmore{
	font-size:14px;
	color:#0a6e31;
	font-weight:600;
	text-decoration:none;
	transition:all .3s;
	display:inline-flex;
	align-items:center;
	gap:5px;
}
.news-readmore:hover{
	color:#065226;
	gap:8px;
}
.news-list-item{
	display:flex;
	gap:18px;
	padding:20px;
	background:#fff;
	border-radius:12px;
	margin-bottom:18px;
	transition:all .4s cubic-bezier(.4,0,.2,1);
	border:1px solid rgba(0,0,0,.04);
	box-shadow:0 2px 10px rgba(0,0,0,.03);
}
.news-list-item:hover{
	border-color:rgba(10,110,49,.15);
	box-shadow:0 10px 30px rgba(10,110,49,.1);
	transform:translateX(8px);
}
.news-list-thumb{
	flex-shrink:0;
	width:140px;
	height:95px;
	border-radius:10px;
	overflow:hidden;
}
.news-list-thumb img{
	width:100%;
	height:100%;
	object-fit:cover;
	transition:transform .4s;
}
.news-list-item:hover .news-list-thumb img{
	transform:scale(1.12);
}
.news-list-info{
	flex:1;
	display:flex;
	flex-direction:column;
	justify-content:center;
}
.news-list-info h4{
	font-size:16px;
	font-weight:600;
	color:#333;
	margin-bottom:10px;
	line-height:1.6;
	display:-webkit-box;
	-webkit-line-clamp:2;
	-webkit-box-orient:vertical;
	overflow:hidden;
}
.news-list-info h4 a{
	color:#333;
	text-decoration:none;
	transition:color .3s;
}
.news-list-info h4 a:hover{
	color:#0a6e31;
}
.news-list-date{
	font-size:13px;
	color:#999;
}

/* ====== 原有样式继承/覆盖 ====== */

/* 首页关于我们 */
.home-about{background-repeat:no-repeat;background-position:center 50%;background-size:cover}
.home-about .padding-large{padding:40px 50px}
.home-about h2{position:relative;font-size:24px;font-weight:600;margin-bottom:40px;word-break:break-all}
.home-about h2:before{content:'';display:block;position:absolute;background:#0a6e31;width:30px;height:3px;bottom:-15px;left:0;}

/* 首页解决方案原有样式 */
.solution .media-img{position:relative;}
.solution .media-img .mask{opacity:0;z-index:3;background:url(../images/solution-hover.png) no-repeat center center;width:100%;height:100%;position:absolute;bottom:0;top:0;left:0;right:0;transition:0.3s;}
.solution .media-img .mask .subtitle{padding:25px}
.solution .media-img .mask .more{position:absolute;bottom:25px;right:25px}
.solution .media-img:hover .mask{z-index:5;transition:0.3s;opacity:1;transform:scale(1.1);}
.solution .media-img .linear-link{z-index:1;opacity:1;background:linear-gradient(to bottom,rgba(0,0,0,.2) 65%,rgba(0,0,0,.8) 100%);width:100%;height:100%;position:absolute;bottom:0;top:0;left:0;right:0;transition:0.3s;}
.solution .media-img .linear-link .subtitle{padding:0 25px;z-index:3;width:100%;bottom:25px;left:0;position:absolute;transition:0.3s;}

/* 首页新闻原有样式 */
.home-news-l{margin-right:10px}
.home-news-r{margin-left:10px}
.home-news-h .media-img{position:relative;}
.home-news-h .media-img .post-title{background:#fff;bottom:-30px;left:30px;width:65%;padding:20px;position:absolute;color:#333;transition:0.5s;box-shadow:0 5px 15px 0 rgba(0,0,0,.06)}
.home-news-h .media-img:hover .post-title{bottom:30px;}
.home-news-h .media-img .post-title h3 a{color:#333;font-size:18px;font-weight:600;line-height:28px;display:block;}
.home-news-h .button{margin-top:1rem;width:48px;line-height:28px;font-size:18px;background:#0a6e31;color:#fff}
.home-news-h .media-img:hover .button{background:#065226;color:#fff;}
.home-news-c:hover{box-shadow:0 3px 8px 0 rgba(0,0,0,.03);}
.home-news-c .news-time{margin:20px 15px 0 0px;border-right:2px solid #eee;padding:0}
.home-news-c .news-time .text-large{font-size:42px;line-height:48px;}
.home-news-c .news-title{margin-top:20px;margin-left:15px}
.home-news-c .news-title h2 a{font-weight:600;font-size:18px;margin-bottom:20px;display:block;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;}
.home-news-c:hover .news-title h2 a{color:#0a6e31}

/* 路径 */
.nav-bread{padding:0;height:70px;line-height:70px;font-size:0}
.nav-bread h2{font-size:24px;font-weight:600}
.nav-bread i{color:#888888;}
.nav-bread a{color:#888888;font-size:14px;display:inline-block;}
.nav-bread a:hover{color:#0a6e31}
.nav-bread a:after{content:"";padding:0 10px;background:url(../images/nav-bread.png) no-repeat center 50%;}
.nav-bread a:last-child:after{content:"";background:none;}

/* 上下篇 */
.prenext-pro a.button{height:70px;line-height:70px;padding:0 25px}
.prenext-pro a.button:hover{background:#0a6e31;color:#fff}
.prenext-pro a.border{border:1px solid #eee}

/* 分页 */
.pagination li{margin:0 5px;font-size:14px;border:none;border-radius:4px;}
.pagination li a{border-radius:4px;color:#555;background:#fff;padding:12px 16px;border:1px solid #DCDCDC;transition:all .3s;}
.pagination li.active a,.pagination li a:hover{background:#0a6e31;color:#fff;border:1px solid #0a6e31;}

/* 标题样式-居中 */
.title-c{position:relative;}
.title-c h3{position:relative;font-size:30px;text-transform:uppercase;margin:0 auto 50px auto;font-weight:600}
.title-c h3:before{background:#0a6e31;content:'';display:block;position:absolute;width:30px;height:3px;bottom:-15px;left:50%;margin-left:-15px;}

/* 标题样式-左 */
.title-l h2{line-height:28px;height:28px;color:#333;position:relative;font-size:16px;letter-spacing:0;padding-left:20px;margin-bottom:10px;}
.title-l h2:before{content:'';display:block;position:absolute;width:5px;height:20px;top:4px;background:#0a6e31;left:0}

/* 下拉分类 */
.nav-tree{font-size:0;height:70px;line-height:70px}
.nav-tree li{position:relative;display:inline-block;}
.nav-tree li a{color:#6E6E6E;display:block;padding:0 30px;font-size:16px;background:#fff;}
.nav-tree li a.active,.nav-tree li a.cur{background:linear-gradient(135deg,#0a6e31,#27ae60);color:#fff}
.nav-tree li.focusa a{background:linear-gradient(135deg,#0a6e31,#27ae60);color:#fff;border-bottom-left-radius:0px;border-bottom-right-radius:0;}
.nav-tree li ul:after{position:absolute;top:-8px;left:50%;margin-left:-8px;display:inline-block;border-right:8px solid transparent;border-bottom:8px solid #fff;border-left:8px solid transparent;content:'';}
.nav-tree li ul{top:70px;left:0;background:#fff;padding:10px 0;z-index:99;position:absolute;width:100%;display:none;border-radius:0px;box-shadow:0 5px 10px 0 rgba(0,0,0,.03);}
.nav-tree li ul li{display:block;width:100%;text-align:left;}
.nav-tree li ul li.children a{font-size:14px;background:#fff;border-radius:0;box-shadow:none;display:block;color:#6e6e6e;line-height:34px;height:34px}
.nav-tree li ul li.children a.active,.nav-tree li ul li.children a:hover{color:#0a6e31}

/* 属性 */
.filter-box .padding-big{padding:15px 25px}
.filter-box dl{margin:15px 0;display:flex;}
.filter-box dl dt{width:8%;display:block;flex:none;line-height:24px;font-weight:normal}
.filter-box dl dd{display:block;float:left;position:relative;}
.filter-nav ul li{margin:0;display:block;float:left;width:auto;line-height:24px;}
.filter-nav ul li a{margin:0 10px 0 0;padding:2px 10px;cursor:pointer;display:block;color:#6E6E6E;transition:.3s;-moz-transition:.3s;-webkit-transition:.3s;}
.filter-nav ul li a:hover{color:#0a6e31;}
.filter-nav ul li a.active{color:#fff;background:#0a6e31}
.filter-nav ul li b{font-weight:normal;}

/* 横向不带ICO导航 */
.nav-x{background:#fff;width:100%;position:relative;}
.nav-x .menu-toggle h3{display:none}
.nav-x ul{font-size:0;-webkit-text-size-adjust:none;text-align:center}
.nav-x li{display:inline-block}
.nav-x li i{margin:0px auto 5px auto;font-size:24px;display:block;}
.nav-x li a{font-size:16px;padding:0;height:70px;line-height:70px;color:#6e6e6e;text-align:center;display:block;}
.nav-x li a:hover{color:#0a6e31}
.nav-x li a.active{background:linear-gradient(135deg,#0a6e31,#27ae60);color:#fff}
.col-2{width:10%}

/* 新闻列表 */
.list-news{display:flex;align-items:center;justify-content:center;margin-bottom:30px}
.list-news .time{margin-right:-20px;padding:15px 0 10px 0;border-right:1px solid #eee;}
.list-news .time .text-large{font-size:52px;line-height:54px;}
.list-news .news{margin-left:50px;margin-right:30px}
.list-news .news h3 a{display:block;font-size:24px;color:#333;margin-bottom:20px}
.list-news .button{width:70px;line-height:56px;font-size:24px;border:1px solid #ebebeb;}
.list-news .button i{font-size:22px;}
.list-news:hover .button{background:#0a6e31;color:#fff;border:1px solid #0a6e31}
.list-news:hover h3 a{color:#0a6e31}

/* 纯文字列表 */
.list-post-text li{padding:5px 0;}
.list-post-text li a{display:block;}
.list-post-text li.dot a{padding-left:15px;position:relative;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;}
.list-post-text li.dot:hover a:before{background:#0a6e31;}
.list-post-text li.dot a:before{content:'';position:absolute;left:-2px;background:#ccc;width:6px;height:6px;top:9px;border-radius:50%}

/* 下载列表 */
.normal-list li{position:relative;display:block;background:#FFF;margin-bottom:20px;transition:.3s;-moz-transition:.3s;-webkit-transition:.3s;}
.normal-list li a{display:block;font-size:16px;line-height:24px;padding:25px 30px 25px 50px;color:#333;transition:.3s;-moz-transition:.3s;-webkit-transition:.3s;}
.normal-list li span{color:#888888;position:absolute;right:30px;top:28px}
.normal-list li:hover{background:#0a6e31;color:#FFF;transition:.3s;-moz-transition:.3s;-webkit-transition:.3s;}
.normal-list li:hover a,.normal-list li:hover span{color:#FFF}
.normal-list li.dot:hover a:before{background:#fff;}
.normal-list li.dot a{position:relative}
.normal-list li.dot a:before{content:'';position:absolute;left:30px;background:#ececec;width:7px;height:7px;top:35px;border-radius:50%}

/* 下载详细页 */
.download-detail{position:relative;z-index:3}
.download-detail .button-big{padding:15px 25px}

/* 视频教程 */
.video-list .media{-webkit-transition:.5s;transition:.5s;}
.video-list .media:hover{box-shadow:0 30px 50px rgba(229,229,229,.8)}
.video-list .media-img{position:relative;overflow:hidden}
.video-list .media-body .padding-big{padding:20px}
.video-list .media-body h2{margin:0 0 20px 0;overflow:hidden}
.video-list .media a.play{opacity:.6;position:absolute;top:50%;left:50%;margin-left:-24px;margin-top:-24px;width:48px;height:48px;line-height:48px;background:rgba(0,0,0,.6);z-index:2;-webkit-transition:.5s;-o-transition:.5s;transition:.5s}
.video-list .media a.play i{font-size:24px;}
.video-list .media .playtime{position:absolute;bottom:10px;right:10px;padding:0 8px;height:20px;line-height:18px;background:rgba(0,0,0,.5);z-index:2;-webkit-transition:.5s;-o-transition:.5s;transition:.5s}
.video-list .media:hover a.collect,.video-list .media:hover a.play{opacity:1;-webkit-transition:.5s;-o-transition:.5s;transition:.5s}
.video-list .excerpt-info ul li.v2-1{width:50%}
.video-list .excerpt-info ul li.v2-2{width:50%;}
.video-detail .tab-head{border-radius:0;font-size:0;-webkit-text-size-adjust:none;padding-left:25px;border-bottom:1px solid #EFEFEF}
.video-detail .tab .tab-nav li{display:inline-block;width:13%;margin:0}
.video-detail .tab .tab-nav li a{color:#616770;padding:18px 0;border:0;border-bottom:2px solid transparent;margin-bottom:-1px;display:block;line-height:20px;font-weight:500;border-radius:0;font-size:16px;text-align:center;}
.video-detail .tab .tab-nav .active{border-radius:0px;}
.video-detail .tab .tab-nav .active a{margin-bottom:-1px;cursor:default;background:#FFF;border-bottom:2px solid #0a6e31;font-weight:600}
.video-detail .tab .tab-nav li a,.video-detail .tab .tab-nav .active a:focus{outline:none;}
.video-detail .tab .tab-body{border-radius:0;border-top:solid 0px #ebebeb;padding:25px}
.jw-video-expense{position:absolute;left:0;top:0;width:100%;height:100%;background:#383838;z-index:1;display:none}
.jw-video-expense img{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:100%;max-width:100%;max-height:100%;}
.jw-video-expense .apply{position:absolute;left:50%;top:50%;margin-top:-20px;transform:translate(-50%,-50%);}
.jw-video-expense .video-play{cursor:pointer;font-size:0;}
.video-period .price{font-size:32px;margin-top:5px}
.video-buy-now{cursor:pointer;width:130px;float:right}
.video-free-now{width:130px;padding:10px 0;float:right}
.video-title h1{font-size:24px;display:block;}
.video-period-title{padding:15px 10px 15px 20px}
.video-period-list{overflow:hidden;height:410px;overflow-y:auto}
.video-period-list li{height:69px;width:100%;border-bottom:1px #433D3D solid;position:relative;text-align:left}
.video-period-list li a{display:block;padding:8px 10px 8px 50px}
.video-period-list li a.cur{background:#2D2D2D;display:block;}
.video-period-list li:hover{background:#2D2D2D;}
.video-period-list li p{font-size:14px;color:#888888;text-overflow:ellipsis;white-space:nowrap;overflow:hidden}
.video-period-list li:before{content:"";position:absolute;width:20px;height:13px;left:18px;top:15px;background:url(../images/video-ico.png) no-repeat;z-index:4}
.video-period-list li .video-info{padding-top:8px;position:relative;color:#616770}
.video-period-list li .video-info span{position:absolute;right:0;width:62px;text-align:right}
.video-period-list li:last-child{border-bottom:none}
.video-content-tit{padding:5px 30px 0;line-height:50px;border-bottom:1px solid #ECEFF5}
.video-content-tit h2{font-size:18px;color:#434C5A;border-bottom:1px solid #434C5A;display:block;width:72px;margin-bottom:-1px}

/* 横向左图右字列表 */
.list-post-x .media{margin-bottom:20px}
.list-post-x .media.border{border:0;border-bottom:1px solid #ECEFF5;padding-bottom:20px}
.list-post-x .media img{transition:all .3s ease-out}
.list-post-x .media .thumb-md{position:relative;max-width:100px;overflow:hidden}
.list-post-x .media .thumb-md .playtime{position:absolute;bottom:5px;right:5px;padding:0 5px;height:20px;line-height:18px;background:rgba(0,0,0,.6);z-index:3;-webkit-transition:.5s;-o-transition:.5s;transition:.5s}
.list-post-x .media .thumb-md .playicon{position:absolute;bottom:5px;left:5px;width:20px;height:20px;line-height:18px}
.list-post-x .media:hover img{transition:all .3s ease-out;transform:scale(1.1)}
.list-post-x .media.media-x .float-left{margin-right:15px}
.list-post-x .media.media-x .float-right{margin-left:15px}
.list-post-x .media.media-x .media-body{text-align:left;padding:0;height:100px;display:flex;flex-direction:column;justify-content:center;}
.list-post-x .media.media-x .media-body h3{overflow:hidden;text-overflow:ellipsis;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;}
.list-post-x .media a:hover{color:#434C5A}
.list-post-x .media-body p{color:#888888;line-height:22px}
.list-post-x .media:last-child{margin-bottom:0}

/* 内容 */
.article{overflow:hidden}
.article .padding-large{padding:20px 22px;}
.article .post h1{font-size:26px;font-weight:700;color:#141414;line-height:1.5;}
.article .post h2{font-size:24px;font-weight:600;margin:10px 0}
.article .post h3{font-size:20px;font-weight:600;margin:10px 0}
.article .post .meta{margin-top:15px;}
.article .post .meta span{color:#a4a4a4;}
.article .post hr{margin:10px 0;height:1px}
.article .post strong{font-size:16px;margin:10px 0}
.article .post table{margin:20px 0}
.article .post table th{background:#0a6e31;color:#fff;border:1px solid #fff}
.article .post table tr.ue-table-interlace-color-single{background:#e8f5e9}
.article .post p{font-size:16px;line-height:32px;margin-bottom:28px}
.article .post img{max-width:100%;height:auto!important;}
.article .post a{text-decoration:none;}
.article .post a:hover{color:#0a6e31;border-bottom:0 solid #0a6e31}
.article .post .text-right{text-align:right}
.article .post ul li{padding:0 0 5px 20px;position:relative;font-size:16px}
.article .post ul li p{line-height:24px}
.article .post ul li:before{content:'';position:absolute;top:8px;left:0;background:#0a6e31;width:7px;height:7px;border-radius:50%}
.article .post ol{padding:10px 0 0 0}
.article .post ol.list-paddingleft-2{position:relative}
.article .post ol li{padding:0;position:relative}
.article .post ol li p{line-height:26px;font-size:16px;color:#888888}

/* 产品列表 */
.product-list .media{-webkit-transition:.3s;transition:.3s;}
.product-list .media:hover{-webkit-transition:.3s;transition:.3s;box-shadow:0 5px 20px 5px rgba(0,0,0,.05);}
.product-list .media-body{padding:10px 0 0 0}
.product-list .media:hover .media-body h2 a{color:#0a6e31;}
.price-info ul li.v2-1{width:50%}
.price-info ul li.v2-2{width:50%;}

/* 产品详细页 */
.product-description .padding-large{padding:30px 0 0 30px}
.product-description .padding-large-top{padding:0}
.product-description p{line-height:24px}
.product-description .zoomimg{width:474px}

/* 产品详情TAB */
.product-overview .tab-head{border-radius:0;font-size:0;-webkit-text-size-adjust:none;width:100%;border-bottom:1px solid #EFEFEF}
.product-overview .tab .tab-nav li{display:inline-block;width:12%;}
.product-overview .tab .tab-nav li a{margin-bottom:-1px;color:#6E6E6E;padding:20px 0;display:block;line-height:24px;border:0;border-radius:0;font-size:18px;text-align:center;}
.product-overview .tab .tab-nav .active{border-radius:0px;}
.product-overview .tab .tab-nav .active a{cursor:default;color:#0a6e31;background:#FFF;border-bottom:3px solid #0a6e31;}
.product-overview .tab .tab-nav li a,.product-overview .tab .tab-nav .active a:focus{outline:none;}
.product-overview .tab .tab-body{padding:0;border-radius:0;border-top:solid 0px #ebebeb;}

/* 放大镜 */
#zoomimg{cursor:pointer;display:block}
.pro-thumb .item img{border:1px solid #ececec}
.pro-thumb .item:hover img{border:1px solid #0a6e31}
.pro-thumb:hover .owl-nav .owl-prev,.pro-thumb:hover .owl-nav .owl-next{opacity:.6;}

/* 商品参数 */
.attribute li{position:relative;color:#666;line-height:32px;}
.attribute li span{color:#999}

/* 商品详情 */
.content img{max-width:100%!important;height:auto!important;}

/* 招聘列表 */
.job-list{transition:.3s;-moz-transition:.3s;-webkit-transition:.3s;}
.job-list:hover{box-shadow:0 10px 25px rgba(0,0,0,0.3);transition:.3s;-moz-transition:.3s;-webkit-transition:.3s;}
.job-list dt{font-weight:normal}

/* 弹出层 */
.dialog{border-radius:0;border:0 solid #ebebeb;margin:0 auto;box-shadow:0 10px 25px rgba(0,0,0,0.3);}
.dialog .dialog-head{font-size:18px;border-bottom:0;background:#FFF;color:#383838;}
.dialog .dialog-head .close{float:right;line-height:24px}
.dialog .dialog-body{padding:10px 40px 40px 40px;}
.dialog-body h3{font-size:24px;font-weight:600;color:#333;margin-bottom:10px}
.dialog-body .form-group{padding-bottom:20px}
.dialog-body .input{height:48px;line-height:24px;padding:0 12px;border:1px solid #ebebeb;width:100%;display:block;border-radius:0px;-webkit-appearance:none;box-shadow:0 0px 0px rgba(0,0,0,0.0) inset;background:transparent;}
.dialog-body .textarea{padding:10px 12px;line-height:24px;width:100%;background:transparent;border:1px solid #ebebeb;}
.dialog-body .label{padding-bottom:10px;display:block;line-height:24px;}
.dialog-body .label label{font-weight:400;}
.dialog-body select{padding:0 30px 0 8px;color:#ADADAD;border-radius:0px;width:100%;height:48px;line-height:48px;border:solid 1px #ebebeb;appearance:none;-moz-appearance:none;-webkit-appearance:none;background:url(../images/select-down.png) no-repeat right 50%;}
.dialog-body .form-tips .dialog-body .input-help ul{border:solid 0px #ebebeb;background:#fff;padding:5px 10px;box-shadow:0 0 0 #fff;border-radius:0 0 4px 4px;width:150px;min-width:150px;width:auto;_width:150px;color:#EE3333;font-size:12px}
.dialog-body .input::-webkit-input-placeholder,.dialog-body .textarea::-webkit-input-placeholder{color:#6E6E6E;}
.dialog-body .input:-moz-placeholder,.dialog-body .textarea:-moz-placeholder{color:#6E6E6E;}
.dialog-body .input::-moz-placeholder,.dialog-body .textarea::-moz-placeholder{color:#6E6E6E;}
.dialog-body .input:-ms-input-placeholder,.dialog-body .textarea:-ms-input-placeholder{color:#6E6E6E;}
.dialog-body .input-group .addon{background-color:#fff;border:0px solid #EBEBEB;border-radius:0px;line-height:1;padding:0;text-align:center}
.dialog-body .input-group .addon img{max-height:50px}

/* 联系我们 */
.inside h2{font-size:36px;font-weight:400;margin-bottom:20px}
.inside .contact{padding:0 0 50px 0;}
.inside .contact hr{height:1px;background:#F2F2F2}
.inside .contact .media{margin:0;padding:0 0 30px 0;}
.inside .contact .media span{width:42px;height:42px;line-height:64px;}
.inside .contact .media i{font-size:36px;}
.inside .contact .media .media-body{padding:0 0 0 10px;margin-top:0px;}
.inside .contact .media .media-body a,.inside .contact .media .media-body p{color:#333;}
.inside .wx{border:1px solid #eee;padding:20px 30px;}
.home-contact{background:#cacaca}
.home-contact .title{position:relative;width:590px;float:right;text-align:left;}
.home-contact .title h2{font-size:64px;line-height:64px;padding-top:25%;padding-right:50px;padding-bottom:30px;}
.home-contact .title h2 span{color:#0a6e31}
.home-contact .title a{font-size:24px;text-decoration:none;border-bottom:2px solid #0a6e31;color:#FFF;}
.home-contact .title a:hover{border-bottom:0 solid #82CC37;}
.home-contact .gb{position:relative;width:590px;float:right;text-align:left;}

/* Guestbook */
.guestbook{padding:50px 80px 50px 0}
.guestbook h2{font-size:24px;font-weight:600}
.guestbook .padding{padding:50px;}
.guestbook .form-group{padding-bottom:20px}
.guestbook .input{font-size:16px;padding:0 15px;height:50px;line-height:50px;border:0;width:100%;display:block;-webkit-appearance:none;transition:all 1s cubic-bezier(0.175,0.885,0.32,1) 0s;box-shadow:0 0px 0px rgba(0,0,0,0.0) inset;}
.guestbook .textarea{padding:12px;line-height:24px;width:100%;font-size:16px;background:#fff;border:0;}
.guestbook .label{display:block;line-height:24px;}
.guestbook .label label{font-weight:400;}
.guestbook .field{font-size:16px}
.guestbook select{font-size:16px;padding:0 35px 0 15px;width:100%;height:50px;line-height:50px;border:0;appearance:none;-moz-appearance:none;-webkit-appearance:none;background:#fff url(../images/select-down.png) no-repeat right 50%;color:#666;}

/* 频道Banner */
.channel-banner{height:350px;position:relative;background-repeat:no-repeat;background-position:center center;background-size:cover;margin:0;padding:0;}
.channel-banner .banner-info{position:absolute;top:50%;margin-top:-50px;left:0;right:0;z-index:3}
.channel-banner .banner-info h3{font-size:40px;font-weight:600;position:relative;margin-bottom:30px}
.channel-banner .banner-info h3:before{left:50%;margin-left:-15px;bottom:-10px;width:30px;height:3px;background:#0a6e31;content:'';display:block;position:absolute;}
.channel-banner .banner-info p{font-size:36px;}

/* 底部 */
footer{padding:70px 0 0 0;background:#1a2e1a;}
footer h3{font-weight:700;color:#fff}
footer ul li.item-1{width:15%}
footer ul li.item-2{width:15%}
footer ul li.item-3{width:15%}
footer ul li.item-4{width:15%}
footer ul li.item-5{width:30%}
footer ul li.item-6{width:10%}
footer ul li ul li a{line-height:32px;color:#aaa}
footer ul li ul li a:hover,footer .contact .media .media-body a:hover{color:#0a6e31;}
footer .contact{padding-top:3px}
footer .contact .media{margin:0 0 5px 0;padding:0 0 10px 0;}
footer .contact .media span{width:24px;height:24px;}
footer .contact .media i{line-height:24px;}
footer .contact .media .media-body a,footer .contact .media .media-body{padding:0;color:#aaa;line-height:24px;}
footer .qr{margin-left:20px;background:#0d3010;border-radius:8px;}
footer .qr img{width:100%}
footer .copyright{padding:20px 0 60px 0;color:#777;border-top:1px solid #2a3a2a;}
footer .copyright a{margin-left:5px;color:#777}
footer .tab-head{border-radius:0;font-size:0;-webkit-text-size-adjust:none;padding:0;border-bottom:1px solid #2a3a2a}
footer .tab .tab-nav li{display:inline-block;width:auto;margin:0 20px 0 0}
footer .tab .tab-nav li a{color:#aaa;padding:10px 0;border:0;border-bottom:1px solid transparent;margin-bottom:-1px;display:block;line-height:20px;border-radius:0;font-size:16px;}
footer .tab .tab-nav .active{border-radius:0px;}
footer .tab .tab-nav .active a{margin-bottom:-1px;cursor:default;border-bottom:1px solid #0a6e31;}
footer .tab .tab-nav li a,footer .tab .tab-nav .active a:focus{outline:none;}
footer .tab .tab-body{border-radius:0;border-top:solid 0px #ebebeb;padding:25px 0}
footer .tab .tab-body .flink a{display:inline-block;margin-right:15px;line-height:24px}
footer .tab .tab-body .flink a img{width:110px;height:58px;}

/* Owl Carousel */
.owl-carousel .owl-dots{position:absolute;top:50%;padding:0;text-align:left;width:20px;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}
.owl-carousel .owl-dots .owl-dot{display:inline-block;position:relative;vertical-align:middle}
.owl-carousel .owl-dots .owl-dot span{width:8px;height:8px;margin:0 5px;border-radius:50%;background:#d3d3d3;display:inline-block;text-align:center;-webkit-transition:all ease .5s;-o-transition:all ease .5s;transition:all ease .5s}
.owl-carousel .owl-dots .owl-dot.active span{width:16px;height:8px;background:#0a6e31;border-radius:20px}
.owl-carousel .owl-nav i{font-size:23px;color:#fff}
.owl-carousel .owl-nav .owl-next,.owl-carousel .owl-nav .owl-prev{background:#000;width:42px;height:42px;line-height:42px;-webkit-transition:all ease .5s;-o-transition:all ease .5s;transition:all ease .5s;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%);top:50%;position:absolute;text-align:center;border-radius:50%;opacity:0}
.owl-carousel .owl-nav .owl-prev{background:rgba(10,110,49,.7);left:20px;right:auto}
.owl-carousel .owl-nav .owl-prev i{position:absolute;left:8px;}
.owl-carousel .owl-nav .owl-next{right:20px;background:rgba(10,110,49,.7);}
.owl-carousel .owl-nav .owl-next i{position:absolute;right:8px}

/* 首页轮播 */
.slides-arrow:hover .owl-nav .owl-next,.slides-arrow:hover .owl-nav .owl-prev{opacity:.8}
.slides-arrow.dot-center .owl-dots{position:relative;top:-30px;padding:0;text-align:center;vertical-align:middle;display:inline-block;width:100%}

/* 行距 */
.line-large{margin-left:-15px;margin-right:-15px}
.line-large .x1,.line-large .x2,.line-large .x3,.line-large .x4,.line-large .x5,.line-large .x6,.line-large .x7,.line-large .x8,.line-large .x9,.line-large .x10,.line-large .x11,.line-large .x12,.line-large .xl1,.line-large .xl2,.line-large .xl3,.line-large .xl4,.line-large .xl5,.line-large .xl6,.line-large .xl7,.line-large .xl8,.line-large .xl9,.line-large .xl10,.line-large .xl11,.line-large .xl12,.line-large .xs1,.line-large .xs2,.line-large .xs3,.line-large .xs4,.line-large .xs5,.line-large .xs6,.line-large .xs7,.line-large .xs8,.line-large .xs9,.line-large .xs10,.line-large .xs11,.line-large .xs12,.line-large .xm1,.line-large .xm2,.line-large .xm3,.line-large .xm4,.line-large .xm5,.line-large .xm6,.line-large .xm7,.line-large .xm8,.line-large .xm9,.line-large .xm10,.line-large .xm11,.line-large .xm12,.line-large .xb1,.line-large .xb2,.line-large .xb3,.line-large .xb4,.line-large .xb5,.line-large .xb6,.line-large .xb7,.line-large .xb8,.line-large .xb9,.line-large .xb10,.line-large .xb11,.line-large .xb12{position:relative;min-height:1px;padding-right:15px;padding-left:15px}

/* ====== 响应式适配 ====== */
@media screen and (max-width:1440px){
	.container-layout{max-width:98%;}
	.section-header h2{font-size:36px;}
	.stat-number{font-size:48px;}
	.hero-title{font-size:48px;}
	.cta-title{font-size:40px;}
}
@media screen and (max-width:1200px){
	.about-text{padding:0 0 0 30px;}
	.about-company-name{font-size:28px;}
	.tech-card{padding:40px 25px;}
	.section-padding{padding:80px 0;}
	.hero-title{font-size:42px;}
	.solution-img{height:280px;}
}
@media screen and (max-width:992px){
	.section-padding{padding:60px 0;}
	.about-content{flex-direction:column;}
	.about-text{padding:40px 0 0 0;}
	.about-experience{right:0;bottom:0;}
	.about-desc{max-height:none;}
	.solution-img{height:240px;}
	.stat-item{padding:30px 15px;}
	.stat-number{font-size:42px;}
	.section-header h2{font-size:30px;}
	.news-featured-img{height:240px;}
	.news-list-thumb{width:120px;height:80px;}
	.hero-title{font-size:36px;}
	.cta-title{font-size:32px;}
}
@media screen and (max-width:768px){
	.section-padding{padding:50px 0;}
	.section-header{margin-bottom:50px;}
	.section-header h2{font-size:26px;}
	.section-desc{font-size:15px;}
	.btn-primary,.btn-secondary{padding:14px 28px;font-size:15px;}
	.about-actions{flex-direction:column;}
	.about-company-name{font-size:24px;}
	.about-desc p{font-size:14px;}
	.solution-img{height:200px;}
	.stat-number{font-size:36px;}
	.news-featured-img{height:200px;}
	.news-list-item{flex-direction:column;}
	.news-list-thumb{width:100%;height:150px;}
	.hero-title{font-size:28px;}
	.cta-title{font-size:26px;}
	.hero-stats-row{display:none;}
}
/* ====== 补充样式（页脚 + 工具类） begin ====== */
.footer-green{
	background:linear-gradient(180deg,#0e4220 0%,#0a3018 100%);
	padding:70px 0 0 0;
	color:#fff;
	position:relative;
}
.footer-green:before{
	content:'';
	position:absolute;
	top:0;
	left:0;
	right:0;
	height:3px;
	background:linear-gradient(90deg,#0a6e31,#27ae60,#0a6e31);
}
.bg-green{background:#0a6e31!important;color:#fff!important;}
.bg-green-dark{background:#065226!important;color:#fff!important;}
.bg-green:hover{background:#27ae60!important;}
/* ====== 补充样式 end ====== *//* ====== 顶部通知栏 ====== */
.top-bar{
	background:linear-gradient(90deg,#0a3d1f,#0a6e31,#1a8a4a,#0a6e31,#0a3d1f);
	background-size:200% 100%;
	animation:gradientShift 8s ease infinite;
	color:rgba(255,255,255,.9);
	font-size:13px;
	padding:8px 0;
	position:relative;
	z-index:1001;
}
@keyframes gradientShift{
	0%{background-position:0% 50%}
	50%{background-position:100% 50%}
	100%{background-position:0% 50%}
}
.top-bar-item{
	display:inline-block;
	margin-right:25px;
}
.top-bar-item i{
	margin-right:5px;
	font-size:14px;
}
.top-bar-item a{
	color:#fff;
	font-weight:600;
}
.top-bar-item a:hover{
	color:#c8e6c9;
}

/* ====== 头部玻璃拟态效果 ====== */
#pc-header{
	transition:all .3s ease;
}
#pc-header.header-scrolled{
	background:rgba(255,255,255,.95)!important;
	backdrop-filter:blur(10px);
	box-shadow:0 2px 20px rgba(0,0,0,.08);
}
#pc-header .nav-menu li a{
	position:relative;
	transition:color .3s;
}
#pc-header .nav-menu li a:after{
	content:'';
	position:absolute;
	bottom:0;
	left:50%;
	width:0;
	height:2px;
	background:linear-gradient(90deg,#0a6e31,#27ae60);
	transition:all .3s;
	transform:translateX(-50%);
}
#pc-header .nav-menu li a:hover:after,
#pc-header .nav-menu li.active a:after{
	width:80%;
}
#pc-header .nav-menu li.active a{
	color:#0a6e31;
	font-weight:600;
}
#pc-header .drop-menu{
	border-radius:8px;
	box-shadow:0 10px 40px rgba(10,110,49,.15);
	border:1px solid rgba(10,110,49,.1);
	overflow:hidden;
}
#pc-header .drop-menu li a{
	transition:all .3s;
}
#pc-header .drop-menu li a:hover{
	background:linear-gradient(135deg,#f0f9f1,#e8f5e9);
	color:#0a6e31;
	padding-left:25px;
}

/* ====== Hero 覆盖层内容 ====== */
.hero-wrapper{
	position:relative;
	overflow:hidden;
}
.hero-wrapper:before{
	content:'';
	position:absolute;
	inset:0;
	background:
		radial-gradient(circle at 30% 50%,rgba(0,184,148,.1) 0%,transparent 50%),
		radial-gradient(circle at 70% 30%,rgba(255,215,0,.08) 0%,transparent 40%);
	pointer-events:none;
	z-index:2;
}
.hero-overlay{
	position:absolute;
	inset:0;
	background:linear-gradient(135deg,rgba(10,61,31,.9) 0%,rgba(10,110,49,.65) 40%,rgba(0,184,148,.35) 100%);
	display:flex;
	align-items:center;
	justify-content:center;
	z-index:2;
}
.hero-content{
	text-align:center;
	color:#fff;
	max-width:900px;
	padding:60px 40px;
	animation:fadeInUp 1.2s cubic-bezier(.4,0,.2,1);
	position:relative;
}
@keyframes fadeInUp{
	from{opacity:0;transform:translateY(40px)}
	to{opacity:1;transform:translateY(0)}
}
.hero-badge{
	display:inline-flex;
	align-items:center;
	gap:10px;
	background:rgba(255,215,0,.15);
	backdrop-filter:blur(10px);
	padding:10px 24px;
	border-radius:30px;
	margin-bottom:30px;
	border:1px solid rgba(255,215,0,.3);
}
.badge-icon{
	width:32px;
	height:32px;
	background:linear-gradient(135deg,#ffd700,#f39c12);
	border-radius:50%;
	display:flex;
	align-items:center;
	justify-content:center;
	box-shadow:0 4px 15px rgba(255,215,0,.3);
}
.badge-icon i{
	font-size:16px;
	color:#1a1e2b;
}
.badge-text{
	font-size:15px;
	font-weight:600;
	letter-spacing:2px;
}
.hero-title{
	font-size:56px;
	font-weight:800;
	line-height:1.2;
	margin-bottom:25px;
	text-shadow:0 4px 30px rgba(0,0,0,.3);
}
.gradient-text{
	background:linear-gradient(135deg,#c8e6c9,#81c784,#00b894,#4caf50);
	background-size:200% auto;
	-webkit-background-clip:text;
	-webkit-text-fill-color:transparent;
	background-clip:text;
	animation:gradientText 5s ease infinite;
}
@keyframes gradientText{
	0%,100%{background-position:0% center}
	50%{background-position:100% center}
}
.hero-subtitle{
	font-size:20px;
	color:rgba(255,255,255,.9);
	margin-bottom:40px;
	letter-spacing:2px;
	font-weight:300;
}
.hero-actions{
	display:flex;
	gap:20px;
	justify-content:center;
	margin-bottom:60px;
}
.btn-white{
	display:inline-block;
	padding:16px 40px;
	background:rgba(255,255,255,.1);
	color:#fff;
	font-size:16px;
	font-weight:600;
	border-radius:8px;
	border:2px solid rgba(255,255,255,.4);
	transition:all .3s ease;
	text-decoration:none;
	backdrop-filter:blur(10px);
}
.btn-white:hover{
	background:#fff;
	color:#0a6e31;
	border-color:#fff;
	transform:translateY(-3px);
	box-shadow:0 10px 30px rgba(0,0,0,.2);
}
.btn-glow{
	position:relative;
	overflow:hidden;
}
.btn-glow:after{
	content:'';
	position:absolute;
	top:50%;
	left:50%;
	width:0;
	height:0;
	background:rgba(255,255,255,.2);
	border-radius:50%;
	transform:translate(-50%,-50%);
	transition:width .6s,height .6s;
}
.btn-glow:hover:after{
	width:300px;
	height:300px;
}
.hero-stats-row{
	display:flex;
	justify-content:center;
	gap:50px;
}
.hero-stat-mini{
	text-align:center;
	padding:15px 25px;
	background:rgba(255,255,255,.08);
	border-radius:12px;
	backdrop-filter:blur(10px);
	border:1px solid rgba(255,255,255,.1);
	transition:all .3s;
}
.hero-stat-mini:hover{
	background:rgba(255,255,255,.15);
	transform:translateY(-5px);
}
.hsm-number{
	display:block;
	font-size:36px;
	font-weight:800;
	font-family:"Conv_DINCondensedC";
	color:#fff;
	line-height:1;
}
.hsm-label{
	display:block;
	font-size:14px;
	color:rgba(255,255,255,.8);
	margin-top:8px;
	letter-spacing:1px;
}
.hero-wave{
	position:absolute;
	bottom:0;
	left:0;
	width:100%;
	z-index:3;
	line-height:0;
}
.hero-wave svg{
	display:block;
	width:100%;
	height:auto;
}

/* ====== 产品卡片 V2（网格布局） ====== */
.product-grid{
	display:flex;
	flex-wrap:wrap;
	margin:0 -15px;
}
.product-grid .x3{
	padding:15px;
}
.product-card-v2{
	background:#fff;
	border-radius:16px;
	overflow:hidden;
	transition:all .5s cubic-bezier(.4,0,.2,1);
	border:1px solid rgba(0,0,0,.06);
	margin-bottom:20px;
	height:100%;
	display:flex;
	flex-direction:column;
	box-shadow:0 4px 20px rgba(0,0,0,.04);
}
.product-card-v2:hover{
	transform:translateY(-12px);
	box-shadow:0 30px 60px rgba(10,110,49,.18);
	border-color:rgba(10,110,49,.12);
}
.product-img-v2{
	position:relative;
	overflow:hidden;
	height:260px;
	display:flex;
	align-items:center;
	justify-content:center;
	background:#f9f9f9;
}
.product-img-v2 img{
	max-height:100%;
	width:auto;
	transition:transform .6s cubic-bezier(.4,0,.2,1);
}
.product-card-v2:hover .product-img-v2 img{
	transform:scale(1.12);
}
.product-tag{
	position:absolute;
	top:15px;
	left:15px;
	background:linear-gradient(135deg,#0a6e31,#27ae60);
	color:#fff;
	font-size:12px;
	font-weight:600;
	padding:5px 15px;
	border-radius:20px;
	z-index:2;
	box-shadow:0 4px 15px rgba(10,110,49,.3);
}
.product-overlay-v2{
	position:absolute;
	inset:0;
	background:linear-gradient(135deg,rgba(10,110,49,.92),rgba(0,184,148,.85));
	display:flex;
	align-items:center;
	justify-content:center;
	opacity:0;
	transition:opacity .5s cubic-bezier(.4,0,.2,1);
}
.product-card-v2:hover .product-overlay-v2{
	opacity:1;
}
.product-more-v2{
	width:56px;
	height:56px;
	background:#fff;
	border-radius:50%;
	display:flex;
	align-items:center;
	justify-content:center;
	color:#0a6e31;
	font-size:22px;
	transform:scale(.5) rotate(-45deg);
	transition:all .5s cubic-bezier(.4,0,.2,1);
	box-shadow:0 8px 25px rgba(0,0,0,.15);
}
.product-card-v2:hover .product-more-v2{
	transform:scale(1) rotate(0deg);
}
.product-info-v2{
	padding:25px 22px;
	flex:1;
	display:flex;
	flex-direction:column;
}
.product-info-v2 h3{
	font-size:18px;
	font-weight:700;
	color:#1a1e2b;
	margin-bottom:12px;
	white-space:nowrap;
	overflow:hidden;
	text-overflow:ellipsis;
}
.product-info-v2 h3 a{
	color:#1a1e2b;
	text-decoration:none;
	transition:color .3s;
}
.product-info-v2 h3 a:hover{
	color:#0a6e31;
}
.product-desc{
	font-size:14px;
	color:#666;
	line-height:1.8;
	margin-bottom:18px;
	flex:1;
	display:-webkit-box;
	-webkit-line-clamp:2;
	-webkit-box-orient:vertical;
	overflow:hidden;
}
.product-meta{
	display:flex;
	justify-content:space-between;
	align-items:center;
	border-top:1px solid #eee;
	padding-top:15px;
}
.product-date{
	font-size:13px;
	color:#999;
}
.product-link{
	font-size:14px;
	color:#0a6e31;
	font-weight:600;
	text-decoration:none;
	transition:all .3s;
	display:inline-flex;
	align-items:center;
	gap:5px;
}
.product-link:hover{
	color:#065226;
	gap:8px;
}

/* ====== 关于我们浮动卡片 ====== */
.about-float-card{
	position:absolute;
	background:rgba(255,255,255,.95);
	padding:15px 22px;
	border-radius:12px;
	box-shadow:0 15px 40px rgba(0,0,0,.12);
	display:flex;
	align-items:center;
	gap:10px;
	font-size:14px;
	font-weight:600;
	color:#1a1e2b;
	animation:float 4s ease-in-out infinite;
	backdrop-filter:blur(10px);
	border:1px solid rgba(0,0,0,.04);
	z-index:3;
}
.about-float-card i{
	font-size:20px;
	color:#0a6e31;
}
.about-float-1{
	top:30px;
	right:-30px;
	animation-delay:0s;
	border-left:3px solid #e17055;
}
.about-float-2{
	bottom:80px;
	left:-30px;
	animation-delay:2s;
	border-left:3px solid #0984e3;
}
@keyframes float{
	0%,100%{transform:translateY(0)}
	50%{transform:translateY(-15px)}
}

/* ====== CTA 行动号召区 ====== */
.cta-section{
	background:linear-gradient(135deg,#0a3d1f 0%,#0a6e31 25%,#00b894 60%,#0a6e31 100%);
	position:relative;
	padding:120px 0;
	overflow:hidden;
}
.cta-section:before{
	content:'';
	position:absolute;
	inset:0;
	background:
		radial-gradient(circle at 30% 50%,rgba(255,215,0,.1) 0%,transparent 50%),
		radial-gradient(circle at 70% 50%,rgba(0,184,148,.15) 0%,transparent 50%);
	pointer-events:none;
	z-index:1;
}
.cta-overlay{
	position:absolute;
	inset:0;
	background:url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M50 0L100 50L50 100L0 50z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
	pointer-events:none;
}
.cta-content{
	position:relative;
	z-index:2;
}
.cta-title{
	font-size:46px;
	font-weight:800;
	color:#fff;
	line-height:1.3;
	margin-bottom:25px;
}
.cta-title .gradient-text{
	background:linear-gradient(135deg,#ffd700,#f39c12,#ff7675)!important;
	-webkit-background-clip:text!important;
	-webkit-text-fill-color:transparent!important;
	background-clip:text!important;
}
.cta-desc{
	font-size:18px;
	color:rgba(255,255,255,.85);
	margin-bottom:40px;
	max-width:650px;
	margin-left:auto;
	margin-right:auto;
	line-height:1.9;
}
.cta-actions{
	display:flex;
	gap:25px;
	justify-content:center;
	flex-wrap:wrap;
}
.btn-outline-white{
	display:inline-block;
	padding:16px 40px;
	background:transparent;
	color:#fff;
	font-size:16px;
	font-weight:600;
	border-radius:8px;
	border:2px solid rgba(255,255,255,.5);
	transition:all .3s ease;
	text-decoration:none;
	position:relative;
	overflow:hidden;
}
.btn-outline-white:hover{
	background:#fff;
	color:#0a6e31;
	border-color:#fff;
	transform:translateY(-3px);
	box-shadow:0 10px 30px rgba(0,0,0,.2);
}

/* ====== 返回顶部 ====== */
.back-to-top{
	position:fixed;
	bottom:40px;
	right:40px;
	width:56px;
	height:56px;
	background:linear-gradient(135deg,#0a6e31,#27ae60);
	color:#fff;
	border-radius:50%;
	display:flex;
	align-items:center;
	justify-content:center;
	cursor:pointer;
	z-index:9999;
	opacity:0;
	visibility:hidden;
	transform:translateY(20px);
	transition:all .4s cubic-bezier(.4,0,.2,1);
	box-shadow:0 8px 25px rgba(10,110,49,.35);
	border:2px solid rgba(255,255,255,.2);
}
.back-to-top.show{
	opacity:1;
	visibility:visible;
	transform:translateY(0);
}
.back-to-top:hover{
	transform:translateY(-8px) scale(1.1);
	box-shadow:0 15px 40px rgba(10,110,49,.5);
}
.back-to-top i{
	font-size:22px;
}

/* ====== 装饰性元素 ====== */
.section-decoration{
	position:relative;
}
.section-decoration:before{
	content:'';
	position:absolute;
	top:-60px;
	left:0;
	width:100%;
	height:60px;
	background:linear-gradient(to bottom right,transparent 49.5%,#f5f7f5 50%);
}

/* 粒子背景效果 */
.particles-bg{
	position:relative;
}
.particles-bg:before{
	content:'';
	position:absolute;
	inset:0;
	background:
		radial-gradient(circle at 20% 50%,rgba(10,110,49,.04) 0%,transparent 50%),
		radial-gradient(circle at 80% 20%,rgba(0,184,148,.03) 0%,transparent 40%),
		radial-gradient(circle at 60% 80%,rgba(9,132,227,.03) 0%,transparent 45%);
	pointer-events:none;
	z-index:0;
}
.particles-bg .container{
	position:relative;
	z-index:1;
}

/* 彩色光晕装饰 */
.glow-orb{
	position:absolute;
	border-radius:50%;
	filter:blur(80px);
	pointer-events:none;
	z-index:0;
}
.glow-orb-green{
	width:400px;
	height:400px;
	background:rgba(10,110,49,.06);
	top:-150px;
	right:-150px;
}
.glow-orb-teal{
	width:350px;
	height:350px;
	background:rgba(0,184,148,.05);
	bottom:-120px;
	left:-120px;
}
.glow-orb-gold{
	width:300px;
	height:300px;
	background:rgba(255,215,0,.04);
	top:50%;
	left:50%;
	transform:translate(-50%,-50%);
}

/* 增强的section header */
.section-header h2{
	position:relative;
	display:inline-block;
}
.section-header h2:after{
	content:'';
	position:absolute;
	bottom:-5px;
	left:50%;
	transform:translateX(-50%);
	width:40px;
	height:3px;
	background:linear-gradient(90deg,#0a6e31,#27ae60);
	border-radius:2px;
}

/* 增强的解决方案卡片 */
.solution-card{
	position:relative;
	overflow:hidden;
	border-radius:12px;
}
.solution-card:before{
	content:'';
	position:absolute;
	inset:0;
	border:2px solid transparent;
	border-radius:12px;
	transition:border-color .3s;
	z-index:3;
	pointer-events:none;
}
.solution-card:hover:before{
	border-color:#0a6e31;
}

/* 增强的新闻卡片 */
.news-featured-card{
	position:relative;
}
.news-featured-card:after{
	content:'';
	position:absolute;
	bottom:0;
	left:0;
	width:0;
	height:3px;
	background:linear-gradient(90deg,#0a6e31,#27ae60);
	transition:width .4s ease;
}
.news-featured-card:hover:after{
	width:100%;
}

/* 增强的统计数字 */
.stat-number{
	position:relative;
}
.stat-number:after{
	content:'+';
	font-size:.5em;
	vertical-align:super;
	margin-left:2px;
}

/* 增强的技术卡片 */
.tech-card{
	position:relative;
	overflow:hidden;
}

/* 增强的解决方案卡片 */
.solution-card{
	position:relative;
	overflow:hidden;
}

/* 增强的新闻卡片 */
.news-featured-card{
	position:relative;
}

/* 页脚增强 */
.footer-green{
	position:relative;
	overflow:hidden;
}
.footer-green:after{
	content:'';
	position:absolute;
	bottom:0;
	left:0;
	width:100%;
	height:200px;
	background:radial-gradient(ellipse at center,rgba(10,110,49,.1) 0%,transparent 70%);
	pointer-events:none;
}
.footer-green .qr{
	position:relative;
	z-index:2;
}

/* 页脚增强 */
.footer-green{
	position:relative;
	overflow:hidden;
}
.footer-green:after{
	content:'';
	position:absolute;
	bottom:0;
	left:0;
	width:100%;
	height:200px;
	background:radial-gradient(ellipse at center,rgba(10,110,49,.1) 0%,transparent 70%);
	pointer-events:none;
}
.footer-green .qr{
	position:relative;
	z-index:2;
}

/* 响应式增强 */
@media screen and (max-width:1440px){
	.hero-title{font-size:44px;}
	.cta-title{font-size:36px;}
}
@media screen and (max-width:1200px){
	.hero-title{font-size:38px;}
	.hero-stats-row{gap:25px;}
	.cta-title{font-size:32px;}
}
@media screen and (max-width:992px){
	.hero-overlay{padding:40px 0;}
	.hero-title{font-size:32px;}
	.hero-subtitle{font-size:15px;}
	.hero-actions{flex-direction:column;align-items:center;}
	.hero-stats-row{flex-wrap:wrap;gap:20px;}
	.cta-title{font-size:28px;}
	.cta-actions{flex-direction:column;align-items:center;}
}
@media screen and (max-width:768px){
	.top-bar{display:none;}
	.hero-title{font-size:26px;}
	.hero-subtitle{font-size:14px;}
	.hero-stats-row{display:none;}
	.cta-title{font-size:24px;}
	.cta-desc{font-size:15px;}
}
/* ============================================================
   第三轮优化：宽度1600px + 色彩丰富度提升 + 视觉增强
   ============================================================ */

/* ====== 容器宽度扩展 ====== */
.container-layout{max-width:1600px!important;}
@media screen and (min-width:1400px){
	.container{width:1400px;margin:0 auto;padding:0 15px;}
}
@media screen and (min-width:1600px){
	.container{width:1600px;margin:0 auto;padding:0 20px;}
}
@media screen and (max-width:1440px){
	.container-layout{max-width:98%!important;}
}

/* ====== 色彩变量与丰富度提升 ====== */
:root{
	--c-primary:#0a6e31;
	--c-primary-dark:#065226;
	--c-primary-light:#27ae60;
	--c-accent-gold:#ffd700;
	--c-accent-amber:#f39c12;
	--c-accent-teal:#00b894;
	--c-accent-blue:#0984e3;
	--c-accent-coral:#e17055;
	--c-accent-purple:#6c5ce7;
	--c-accent-rose:#fd79a8;
	--c-dark:#1a1e2b;
	--c-gray:#777;
	--c-light:#f5f7f5;
}

/* ====== 顶部通知栏色彩增强 ====== */
.top-bar{
	background:linear-gradient(90deg,#0a3d1f,#0a6e31,#00b894,#0a6e31,#0a3d1f)!important;
	background-size:300% 100%!important;
	animation:gradientShift 10s ease infinite!important;
}
@keyframes gradientShift{
	0%{background-position:0% 50%}
	50%{background-position:100% 50%}
	100%{background-position:0% 50%}
}

/* ====== Hero区域色彩增强 ====== */
.hero-overlay{
	background:linear-gradient(135deg,rgba(10,61,31,.88) 0%,rgba(10,110,49,.65) 40%,rgba(0,184,148,.35) 100%)!important;
}
.hero-badge{
	background:rgba(255,255,255,.12)!important;
	border:1px solid rgba(255,215,0,.3)!important;
}
.badge-icon{
	background:linear-gradient(135deg,#ffd700,#f39c12)!important;
}
.gradient-text{
	background:linear-gradient(135deg,#c8e6c9,#81c784,#00b894,#4caf50)!important;
	-webkit-background-clip:text!important;
	-webkit-text-fill-color:transparent!important;
	background-clip:text!important;
}

/* ====== 产品卡片色彩增强 ====== */
.product-card-v2{
	border:1px solid #e8e8e8;
	box-shadow:0 2px 8px rgba(0,0,0,.04);
}
.product-card-v2:hover{
	box-shadow:0 25px 50px rgba(10,110,49,.18)!important;
	border-color:var(--c-primary)!important;
}
.product-tag{
	background:linear-gradient(135deg,var(--c-primary),var(--c-primary-light))!important;
}
.product-overlay-v2{
	background:linear-gradient(135deg,rgba(10,110,49,.92),rgba(0,184,148,.85))!important;
}
.product-link{
	color:var(--c-primary)!important;
}
.product-link:hover{
	color:var(--c-primary-dark)!important;
}

/* 产品分类彩色标签 */
.product-tag[data-type="1"],
.product-tag:contains("危废"){
	background:linear-gradient(135deg,#e17055,#d63031)!important;
}
.product-tag[data-type="2"],
.product-tag:contains("污泥"){
	background:linear-gradient(135deg,#0984e3,#6c5ce7)!important;
}
.product-tag[data-type="3"],
.product-tag:contains("智能"){
	background:linear-gradient(135deg,#00b894,#00cec9)!important;
}
.product-tag[data-type="4"],
.product-tag:contains("应急"){
	background:linear-gradient(135deg,#f39c12,#e67e22)!important;
}

/* ====== 关于我们色彩增强 ====== */
.about-experience{
	background:linear-gradient(135deg,var(--c-primary),var(--c-accent-teal))!important;
	box-shadow:0 15px 40px rgba(10,110,49,.35)!important;
}
.about-float-card{
	border-left:3px solid var(--c-accent-gold);
}
.about-float-1{
	border-left-color:var(--c-accent-coral);
}
.about-float-2{
	border-left-color:var(--c-accent-blue);
}
.about-lead{
	color:var(--c-primary)!important;
	background:linear-gradient(90deg,var(--c-primary),var(--c-accent-teal));
	-webkit-background-clip:text;
	-webkit-text-fill-color:transparent;
	background-clip:text;
}

/* ====== 核心技术卡片色彩增强 ====== */
.tech-card{
	background:#fff;
	border:1px solid #eee;
	box-shadow:0 2px 12px rgba(0,0,0,.04);
}
.tech-card:hover{
	box-shadow:0 20px 50px rgba(10,110,49,.15)!important;
}
.tech-card:nth-child(1):before,
.tech-card:nth-child(1) .tech-icon{--tech-color:#e17055;}
.tech-card:nth-child(2):before,
.tech-card:nth-child(2) .tech-icon{--tech-color:#0984e3;}
.tech-card:nth-child(3):before,
.tech-card:nth-child(3) .tech-icon{--tech-color:#00b894;}
.tech-card:nth-child(4):before,
.tech-card:nth-child(4) .tech-icon{--tech-color:#f39c12;}
.tech-card:nth-child(5):before,
.tech-card:nth-child(5) .tech-icon{--tech-color:#6c5ce7;}
.tech-card:nth-child(6):before,
.tech-card:nth-child(6) .tech-icon{--tech-color:#fd79a8;}

.tech-card:before{
	content:'';
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:4px;
	background:linear-gradient(90deg,var(--tech-color,var(--c-primary)),var(--c-primary-light))!important;
	transform:scaleX(0);
	transform-origin:left;
	transition:transform .4s ease;
}
.tech-card:hover:before{
	transform:scaleX(1);
}
.tech-icon{
	color:var(--tech-color,var(--c-primary))!important;
}
.tech-stat{
	background:linear-gradient(135deg,rgba(10,110,49,.06),rgba(0,184,148,.06))!important;
}
.tech-stat strong{
	color:var(--tech-color,var(--c-primary))!important;
}

/* ====== 解决方案色彩增强 ====== */
.solution-card:before{
	border:2px solid transparent!important;
	transition:border-color .3s!important;
}
.solution-card:hover:before{
	border-color:var(--c-accent-teal)!important;
}
.solution-mask{
	background:linear-gradient(to top,rgba(10,61,31,.95) 0%,rgba(0,184,148,.4) 60%,transparent 100%)!important;
}
.solution-label{
	border-top:3px solid var(--c-accent-teal)!important;
}

/* ====== 数据统计色彩增强 ====== */
.stats-section{
	background:linear-gradient(135deg,#0a3d1f 0%,#0a6e31 30%,#00b894 70%,#0a6e31 100%)!important;
}
.stat-number{
	background:linear-gradient(180deg,#fff,#c8e6c9)!important;
	-webkit-background-clip:text!important;
	-webkit-text-fill-color:transparent!important;
	background-clip:text!important;
}
.stat-icon{
	color:rgba(255,215,0,.7)!important;
}

/* ====== 新闻中心色彩增强 ====== */
.news-featured-card:hover{
	box-shadow:0 15px 40px rgba(10,110,49,.15)!important;
	border-color:var(--c-accent-teal)!important;
}
.news-featured-tag{
	background:linear-gradient(135deg,var(--c-accent-coral),#d63031)!important;
}
.news-featured-card:after{
	background:linear-gradient(90deg,var(--c-primary),var(--c-accent-teal))!important;
}
.news-list-item:hover{
	border-color:var(--c-accent-teal)!important;
	box-shadow:0 8px 25px rgba(0,184,148,.1)!important;
}
.news-list-info h4 a:hover{
	color:var(--c-accent-teal)!important;
}
.news-readmore{
	color:var(--c-accent-teal)!important;
}

/* ====== CTA区域色彩增强 ====== */
.cta-section{
	background:linear-gradient(135deg,#0a3d1f 0%,#0a6e31 25%,#00b894 60%,#0a6e31 100%)!important;
}
.cta-title .gradient-text{
	background:linear-gradient(135deg,#ffd700,#f39c12,#ff7675)!important;
	-webkit-background-clip:text!important;
	-webkit-text-fill-color:transparent!important;
}
.btn-white:hover{
	color:var(--c-primary)!important;
}
.btn-outline-white:hover{
	color:var(--c-primary)!important;
}

/* ====== 页脚色彩增强 ====== */
.footer-green{
	background:linear-gradient(180deg,#0e4220 0%,#0a3018 50%,#061f10 100%)!important;
}
.footer-green:before{
	background:linear-gradient(90deg,var(--c-primary),var(--c-accent-teal),var(--c-accent-gold),var(--c-primary))!important;
	background-size:300% 100%!important;
	animation:gradientShift 8s ease infinite!important;
}
footer .tab .tab-nav .active a{
	border-bottom-color:var(--c-accent-teal)!important;
}

/* ====== 按钮色彩增强 ====== */
.btn-primary{
	background:linear-gradient(135deg,var(--c-primary),var(--c-primary-light))!important;
}
.btn-primary:hover{
	background:linear-gradient(135deg,var(--c-primary-dark),var(--c-primary))!important;
	box-shadow:0 8px 25px rgba(10,110,49,.4)!important;
}
.btn-secondary{
	border-color:var(--c-primary)!important;
	color:var(--c-primary)!important;
}
.btn-secondary:hover{
	background:var(--c-primary)!important;
}
.btn-outline{
	border-color:var(--c-primary)!important;
	color:var(--c-primary)!important;
}
.btn-outline:hover{
	background:var(--c-primary)!important;
	box-shadow:0 6px 20px rgba(10,110,49,.25)!important;
}

/* ====== 头部导航色彩增强 ====== */
#pc-header .nav-menu li a:after{
	background:linear-gradient(90deg,var(--c-primary),var(--c-accent-teal))!important;
}
#pc-header .nav-menu li.active a{
	color:var(--c-primary)!important;
}
#pc-header .drop-menu li a:hover{
	background:linear-gradient(135deg,#f0f9f1,#e0f7fa)!important;
	color:var(--c-primary)!important;
}

/* ====== 装饰性浮动元素 ====== */
.section-decoration-dots{
	position:absolute;
	width:200px;
	height:200px;
	background:radial-gradient(circle,rgba(10,110,49,.08) 1px,transparent 1px);
	background-size:20px 20px;
	pointer-events:none;
	z-index:0;
}

/* 彩色粒子背景 */
.particles-bg{
	position:relative;
}
.particles-bg:before{
	content:'';
	position:absolute;
	inset:0;
	background:
		radial-gradient(circle at 20% 50%,rgba(0,184,148,.05) 0%,transparent 50%),
		radial-gradient(circle at 80% 20%,rgba(255,215,0,.04) 0%,transparent 40%),
		radial-gradient(circle at 60% 80%,rgba(9,132,227,.04) 0%,transparent 45%);
	pointer-events:none;
	z-index:0;
}

/* 彩色光晕装饰 */
.glow-orb{
	position:absolute;
	border-radius:50%;
	filter:blur(60px);
	pointer-events:none;
	z-index:0;
}
.glow-orb-green{
	width:300px;
	height:300px;
	background:rgba(10,110,49,.08);
	top:-100px;
	right:-100px;
}
.glow-orb-teal{
	width:250px;
	height:250px;
	background:rgba(0,184,148,.06);
	bottom:-80px;
	left:-80px;
}
.glow-orb-gold{
	width:200px;
	height:200px;
	background:rgba(255,215,0,.05);
	top:50%;
	left:50%;
	transform:translate(-50%,-50%);
}

/* ====== 响应式宽度调整 ====== */
@media screen and (max-width:1600px){
	.container{width:98%;padding:0 15px;}
}
@media screen and (max-width:1440px){
	.container{width:98%;}
	.hero-title{font-size:46px;}
	.cta-title{font-size:38px;}
}
@media screen and (max-width:1200px){
	.container{width:98%;}
	.hero-title{font-size:40px;}
	.cta-title{font-size:34px;}
}
@media screen and (max-width:992px){
	.hero-title{font-size:34px;}
	.cta-title{font-size:30px;}
}
@media screen and (max-width:768px){
	.hero-title{font-size:26px;}
	.cta-title{font-size:24px;}
}
/* ============================================================
   第四轮优化：PC端间距修复 + 视觉增强 + 移动端导航修复
   ============================================================ */

/* ====== PC端核心技术卡片间距增强 ====== */
.tech-section .line{
	margin:0 -15px;
}
.tech-section .line .x4{
	padding:15px;
}
.tech-card{
	padding:45px 35px;
	margin-bottom:10px;
}
.tech-card h3{
	font-size:22px;
	margin-bottom:18px;
	margin-top:5px;
}
.tech-card p{
	font-size:15px;
	line-height:2;
	color:#555;
	margin-bottom:25px;
}
.tech-icon{
	margin-bottom:30px;
	height:90px;
}
.tech-stat{
	padding:10px 24px;
	margin-top:5px;
}

/* ====== PC端解决方案间距增强 ====== */
.solution-section .line{
	margin:0 -15px;
}
.solution-section .line .x6{
	padding:15px;
}
.solution-card{
	margin-bottom:30px;
	border-radius:16px;
}
.solution-img{
	height:320px;
	border-radius:16px;
}
.solution-info h4{
	font-size:22px;
	margin-bottom:15px;
}
.solution-info p{
	font-size:15px;
	line-height:1.9;
	margin-bottom:20px;
}
.solution-label{
	padding:18px 20px;
}
.solution-label h4{
	font-size:18px;
}

/* ====== 关于我们间距增强 ====== */
.about-content{
	gap:40px;
}
.about-text{
	padding:0 20px 0 50px;
}
.about-desc p{
	font-size:15px;
	line-height:2.1;
	margin-bottom:18px;
}
.about-company-name{
	font-size:32px;
	margin-bottom:12px;
}
.about-lead{
	font-size:15px;
	margin-bottom:30px;
}
.about-actions{
	margin-top:40px;
	gap:20px;
}

/* ====== 产品推荐间距增强 ====== */
.product-grid .x3{
	padding:15px;
}
.product-card-v2{
	margin-bottom:15px;
	border-radius:16px;
}
.product-img-v2{
	height:260px;
	border-radius:16px 16px 0 0;
}
.product-info-v2{
	padding:25px 20px;
}
.product-info-v2 h3{
	font-size:18px;
	margin-bottom:10px;
}
.product-desc{
	font-size:14px;
	line-height:1.8;
}

/* ====== 新闻中心间距增强 ====== */
.news-section .line{
	margin:0 -15px;
}
.news-section .line .x6{
	padding:15px;
}
.news-featured-card{
	border-radius:16px;
	margin-bottom:20px;
}
.news-featured-img{
	height:280px;
	border-radius:16px 16px 0 0;
}
.news-featured-body{
	padding:25px;
}
.news-featured-body h3{
	font-size:20px;
	margin-bottom:12px;
	line-height:1.5;
}
.news-featured-desc{
	font-size:15px;
	line-height:1.9;
	margin-bottom:18px;
}
.news-list-item{
	padding:18px;
	margin-bottom:15px;
	border-radius:12px;
}
.news-list-info h4{
	font-size:16px;
	line-height:1.6;
	margin-bottom:10px;
}
.news-list-info .news-excerpt{
	font-size:14px;
	line-height:1.8;
}

/* ====== 数据统计间距增强 ====== */
.stats-section .line{
	margin:0 -20px;
}
.stats-section .line .x3{
	padding:20px;
}
.stat-item{
	padding:40px 20px;
}
.stat-number{
	font-size:52px;
	margin:20px 0 10px;
}
.stat-label{
	font-size:16px;
	margin-top:10px;
}
.stat-icon{
	margin-bottom:15px;
}

/* ====== CTA区域间距增强 ====== */
.cta-section{
	padding:100px 0;
}
.cta-title{
	font-size:42px;
	margin-bottom:25px;
}
.cta-desc{
	font-size:18px;
	margin-bottom:40px;
	line-height:1.9;
}

/* ====== 通用Section间距增强 ====== */
.section-padding{
	padding:90px 0;
}
.section-header{
	margin-bottom:60px;
}
.section-header h2{
	font-size:38px;
	margin-bottom:20px;
}
.section-header .section-desc{
	font-size:17px;
	max-width:700px;
	margin:20px auto 0;
	line-height:1.9;
}

/* ====== 高端现代视觉增强 ====== */

/* 更精致的卡片阴影 */
.tech-card{
	box-shadow:0 4px 20px rgba(0,0,0,.04);
	border:1px solid rgba(0,0,0,.04);
}
.tech-card:hover{
	box-shadow:0 25px 60px rgba(10,110,49,.15);
	border-color:rgba(10,110,49,.1);
}

.solution-card{
	box-shadow:0 4px 20px rgba(0,0,0,.05);
}
.solution-card:hover{
	box-shadow:0 20px 50px rgba(0,0,0,.12);
}

.product-card-v2{
	box-shadow:0 4px 15px rgba(0,0,0,.04);
	border:1px solid rgba(0,0,0,.04);
}
.product-card-v2:hover{
	box-shadow:0 20px 45px rgba(10,110,49,.15);
}

.news-featured-card{
	box-shadow:0 4px 20px rgba(0,0,0,.05);
	border:1px solid rgba(0,0,0,.04);
}
.news-featured-card:hover{
	box-shadow:0 15px 40px rgba(10,110,49,.12);
}

/* 更平滑的过渡 */
.tech-card,
.solution-card,
.product-card-v2,
.news-featured-card,
.news-list-item{
	transition:all .5s cubic-bezier(.4,0,.2,1);
}

/* 按钮发光效果增强 */
.btn-glow{
	position:relative;
	overflow:hidden;
}
.btn-glow:after{
	content:'';
	position:absolute;
	top:50%;
	left:50%;
	width:0;
	height:0;
	background:rgba(255,255,255,.2);
	border-radius:50%;
	transform:translate(-50%,-50%);
	transition:width .6s,height .6s;
}
.btn-glow:hover:after{
	width:300px;
	height:300px;
}

/* 更现代的渐变文字 */
.gradient-text{
	background:linear-gradient(135deg,#0a6e31 0%,#27ae60 30%,#00b894 60%,#0a6e31 100%);
	background-size:200% auto;
	-webkit-background-clip:text;
	-webkit-text-fill-color:transparent;
	background-clip:text;
	animation:gradientText 5s ease infinite;
}
@keyframes gradientText{
	0%,100%{background-position:0% center}
	50%{background-position:100% center}
}

/* 分隔线动画 */
.section-divider{
	position:relative;
	overflow:hidden;
}
.section-divider:before{
	content:'';
	position:absolute;
	top:0;
	left:-100%;
	width:100%;
	height:100%;
	background:linear-gradient(90deg,transparent,rgba(255,255,255,.8),transparent);
	animation:shimmer 3s infinite;
}
@keyframes shimmer{
	0%{left:-100%}
	100%{left:100%}
}

/* 浮动卡片增强 */
.about-float-card{
	backdrop-filter:blur(10px);
	background:rgba(255,255,255,.95);
}

/* 统计数据数字增强 */
.stat-number{
	text-shadow:0 2px 10px rgba(255,215,0,.3);
}

/* Hero区域增强 */
.hero-content{
	padding:60px;
}
.hero-badge{
	backdrop-filter:blur(10px);
	background:rgba(255,215,0,.15);
}

/* 顶部栏增强 */
.top-bar{
	background:linear-gradient(90deg,#0a3d1f,#0a6e31,#00b894,#0a6e31,#0a3d1f);
	background-size:300% 100%;
}

/* 页脚增强 */
.footer-green{
	background:linear-gradient(180deg,#0e4220 0%,#0a3018 50%,#061f10 100%);
}
.footer-green:before{
	background:linear-gradient(90deg,#0a6e31,#00b894,#ffd700,#0a6e31);
	background-size:300% 100%;
}

/* 更精致的表单和输入框 */
input:focus,
textarea:focus,
select:focus{
	box-shadow:0 0 0 4px rgba(10,110,49,.1);
}

/* 滚动条美化 */
::-webkit-scrollbar{
	width:8px;
}
::-webkit-scrollbar-track{
	background:#f1f1f1;
}
::-webkit-scrollbar-thumb{
	background:linear-gradient(180deg,#0a6e31,#27ae60);
	border-radius:4px;
}
::-webkit-scrollbar-thumb:hover{
	background:linear-gradient(180deg,#065226,#0a6e31);
}
/* ============================================================
   第五轮优化：PC首页全面视觉增强 + 间距优化
   ============================================================ */

/* ====== 解决方案区域间距增强 ====== */
.solution-section{
	background:#fff;
	position:relative;
	overflow:hidden;
}
.solution-section:before{
	content:'';
	position:absolute;
	top:-100px;
	right:-100px;
	width:400px;
	height:400px;
	background:radial-gradient(circle,rgba(10,110,49,.03) 0%,transparent 70%);
	pointer-events:none;
	z-index:0;
}
.solution-section:after{
	content:'';
	position:absolute;
	bottom:-100px;
	left:-100px;
	width:400px;
	height:400px;
	background:radial-gradient(circle,rgba(0,184,148,.03) 0%,transparent 70%);
	pointer-events:none;
	z-index:0;
}
.solution-grid{
	display:flex;
	flex-wrap:wrap;
	margin:0 -15px;
	position:relative;
	z-index:1;
}
.solution-grid .x4{
	padding:15px;
}
.solution-card{
	margin-bottom:30px;
	position:relative;
	border-radius:16px;
	overflow:hidden;
	box-shadow:0 8px 30px rgba(0,0,0,.06);
	border:1px solid rgba(0,0,0,.04);
	transition:all .5s cubic-bezier(.4,0,.2,1);
}
.solution-card:hover{
	transform:translateY(-10px);
	box-shadow:0 25px 60px rgba(10,110,49,.18);
	border-color:rgba(10,110,49,.12);
}
.solution-card:before{
	content:'';
	position:absolute;
	inset:0;
	border:2px solid transparent;
	border-radius:16px;
	transition:border-color .4s;
	z-index:3;
	pointer-events:none;
}
.solution-card:hover:before{
	border-color:#0a6e31;
}
.solution-img{
	position:relative;
	height:320px;
	overflow:hidden;
}
.solution-img img{
	width:100%;
	height:100%;
	object-fit:cover;
	transition:transform .6s cubic-bezier(.4,0,.2,1);
}
.solution-card:hover .solution-img img{
	transform:scale(1.12);
}
.solution-mask{
	position:absolute;
	inset:0;
	background:linear-gradient(to top,rgba(10,61,31,.95) 0%,rgba(10,110,49,.5) 50%,rgba(0,184,148,.2) 100%);
	opacity:0;
	transition:opacity .5s cubic-bezier(.4,0,.2,1);
	display:flex;
	align-items:flex-end;
	padding:35px;
}
.solution-card:hover .solution-mask{
	opacity:1;
}
.solution-info h4{
	font-size:22px;
	font-weight:700;
	color:#fff;
	margin-bottom:15px;
	line-height:1.4;
}
.solution-info p{
	font-size:15px;
	color:rgba(255,255,255,.9);
	line-height:1.9;
	margin-bottom:20px;
}
.solution-link{
	color:#fff;
	font-size:14px;
	font-weight:600;
	text-decoration:none;
	display:inline-flex;
	align-items:center;
	gap:8px;
	padding:8px 20px;
	background:rgba(255,255,255,.15);
	border-radius:30px;
	backdrop-filter:blur(10px);
	transition:all .3s;
}
.solution-link:hover{
	background:rgba(255,255,255,.25);
	gap:12px;
}
.solution-label{
	padding:20px 25px;
	background:#fff;
	border-top:3px solid #0a6e31;
	position:relative;
	z-index:2;
}
.solution-label h4{
	font-size:18px;
	font-weight:600;
	color:#1a1e2b;
	margin:0;
	transition:color .3s;
}
.solution-card:hover .solution-label h4{
	color:#0a6e31;
}
