/**
 * Cool Farms 酷农科技 — 品牌自定义样式
 *
 * 加载顺序：在 bootstrap.css、style.css 等模板样式之后引入本文件。
 * 请勿修改 bootstrap.css、style.css 及插件自带 CSS；站点配色与品牌调整仅写在此文件。
 *
 * 调色：修改下方 :root 变量即可全局生效。
 */

:root {
	--cf-primary: #004d33;
	--cf-primary-dark: #003828;
	--cf-primary-border: #005a3d;
	--cf-accent: #76b82a;
	--cf-highlight: #f39c12;
	--cf-btn-border: #003528;
	--cf-btn-shadow: #a8d86a;
	--cf-header-bar-height: 86px;
	--cf-card-height-lg: 300px;
	--cf-card-height-md: 200px;
	--cf-card-height-sm: 120px;
	--cf-clamp-lines-4: 4;
	--cf-clamp-lines-3: 3;
	--cf-clamp-lines-2: 2;
	--cf-portfolio-img-height: 200px;
	--cf-portfolio-title-height: 72px;
	--cf-news-thumb-width: 297px;
	--cf-news-thumb-height: 180px;
	--cf-client-product-width: 300px;
	--cf-client-product-height: 300px;
	--cf-about-intro-img-max: 280px;
	--cf-about-intro-img-width: 38%;
}

/* 面包屑条左侧页标题（英文，如 Contact Us / About Us） */
.breadcrumb-wrapper h2.title.cf-page-title-en {
	font-family: 'Oswald', 'Open Sans', sans-serif;
	font-weight: 400;
	letter-spacing: 0.02em;
}

/* --------------------------------------------------------------------------
   Header & footer (template defaults use gray — overridden here)
   -------------------------------------------------------------------------- */

/* Logo 横条：白底与 logo 一致，logo 高度铺满横条 */
#header .main-header {
	background: #fff;
	min-height: var(--cf-header-bar-height);
}

#header .logo {
	height: var(--cf-header-bar-height);
	margin: 0;
	display: flex;
	align-items: center;
}

#header .logo h1 {
	margin: 0;
	height: 100%;
	line-height: 1;
}

#header .logo h1 a {
	display: flex;
	align-items: center;
	height: 100%;
}

#header .logo img {
	height: var(--cf-header-bar-height) !important;
	width: auto !important;
	max-width: min(420px, 55vw);
	object-fit: contain;
	display: block;
}

/* 白底导航：仅一级菜单用深色字 */
#header .main-header .menu > ul > li > a {
	color: var(--cf-primary);
}

#header .main-header .menu > ul > li > a:hover,
#header .main-header .menu > ul > li:hover > a,
#header .main-header .menu > ul > li > a#current {
	color: var(--cf-primary);
	background-color: transparent;
}

/* 二级菜单：深底白字 */
#header .main-header .menu ul ul {
	background-color: var(--cf-primary-dark);
}

#header .main-header .menu ul ul li a,
#header .main-header .menu ul ul li a:hover {
	color: #fff;
	background-color: transparent;
	border-bottom: 0;
}

#header .main-header .menu ul ul li a:hover {
	background-color: rgba(255, 255, 255, 0.08);
}

/* 页头菜单按钮：仅图标着色，不要实心色块（避免移动端 logo 上下各一块） */
#header .main-header .navbar-toggle,
#header .main-header .topnav .navbar-toggle {
	background: transparent;
	border: none;
	box-shadow: none;
}

#header .main-header .navbar-toggle:hover,
#header .main-header .navbar-toggle:focus,
#header .main-header .topnav .navbar-toggle:hover,
#header .main-header .topnav .navbar-toggle:focus {
	background: transparent;
}

#header .main-header .navbar-toggle i,
#header .main-header .topnav .navbar-toggle i,
#header .main-header .mobile .navbar-toggle i {
	background-color: transparent !important;
	color: var(--cf-primary) !important;
	box-shadow: none;
}

@media (max-width: 767px) {
	:root {
		--cf-header-bar-height: 72px;
	}

	#header .logo.pull-left {
		margin: 0 auto 8px;
		justify-content: center;
	}

	#header .main-header .topnav.navbar-header,
	#header .main-header .mobile.navbar-header {
		margin: 0;
		padding: 0;
	}

	#header .main-header .topnav .navbar-toggle,
	#header .main-header .mobile .navbar-toggle {
		margin: 4px auto;
	}

	/* theme-responsive 对 .navbar-collapse.collapse 用了 display:none!important，需覆盖才能展开 */
	#header .main-header .navbar-collapse.collapse.in {
		display: block !important;
		clear: both;
		width: 100%;
		background: #fff;
		border-top: 1px solid #eee;
		padding: 0 0 12px;
	}

	#header .main-header .menu > ul > li {
		float: none;
		display: block;
		width: 100%;
	}

	#header .main-header .menu > ul > li > a {
		display: block;
		padding: 12px 18px;
		border-bottom: 1px solid #eee;
	}

	#header .main-header .menu ul ul {
		position: static;
		display: block;
		width: 100%;
		box-shadow: none;
		padding-left: 0;
	}

	#header .main-header .menu ul ul li a {
		padding: 10px 18px 10px 28px;
	}
}

@media (min-width: 768px) and (max-width: 979px) {
	#header .main-header .navbar-collapse.collapse.in {
		display: block !important;
		clear: both;
		width: 100%;
		background: #fff;
	}
}

/* 页眉电话/邮箱：默认仅图标，点击后显示全文 */
.phone-email .cf-site-contact-gate {
	cursor: pointer;
	text-decoration: none;
}
.phone-email .cf-site-contact-gate .cf-site-tel-text,
.phone-email .cf-site-contact-gate .cf-site-email-text,
.phone-email .cf-site-contact-gate .cf-header-contact-value {
	display: none !important;
}
.phone-email .cf-site-contact-gate.cf-contact-revealed .cf-header-contact-value {
	display: inline !important;
	margin-left: 0.35em;
}
.phone-email .cf-site-contact-gate + .cf-site-contact-gate {
	margin-left: 1em;
}
.cf-site-contact-reveal {
	cursor: pointer;
	border-bottom: 1px dashed rgba(0, 0, 0, 0.25);
}
.cf-site-contact-reveal.cf-contact-revealed {
	cursor: default;
	border-bottom: none;
}

header .top-bar {
	background: var(--cf-primary-dark);
	border-bottom-color: var(--cf-primary-border);
}

.footer-top {
	background: var(--cf-primary);
	border-bottom-color: var(--cf-primary-border);
}

/* 页脚四列等高 */
.footer-top .container > .row {
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
}

.footer-top .container > .row > section[class*="footer-"] {
	display: flex;
	flex-direction: column;
	float: none;
}

.footer-bottom {
	background: var(--cf-primary-dark);
}

.footer-bottom .cf-footer-bottom-right {
	text-align: right;
}

.footer-bottom .cf-site-icp-wrap {
	white-space: nowrap;
}

.footer-bottom a.cf-site-icp {
	color: rgba(255, 255, 255, 0.85);
	text-decoration: none;
}

.footer-bottom a.cf-site-icp:hover {
	color: var(--cf-highlight);
	text-decoration: underline;
}

/* 页脚第四列：微信我们 + 二维码 */
.footer-five .cf-footer-wechat-qr {
	display: block;
	width: 88px;
	max-width: 88px;
	height: auto;
	margin-top: 6px;
	border-radius: 4px;
	background: #fff;
	padding: 3px;
}

#footer .contact-us p {
	word-break: break-word;
}

/* 页脚「联系我们」：各行等高对齐，去掉主题浮动布局 */
.cf-site-footer .footer-top h3.title {
	overflow: visible;
	margin-bottom: 14px;
	line-height: 1.35;
}

.cf-site-footer .footer-top h3.title:after {
	display: none;
	content: none;
}

.cf-site-footer .footer-three .contact-us {
	background: none;
	margin: 0;
	padding: 0;
	list-style: none;
}

.cf-site-footer .footer-three .contact-us li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin: 0 0 12px;
	padding: 0;
	min-height: 24px;
}

.cf-site-footer .footer-three .contact-us li:last-child {
	margin-bottom: 0;
}

.cf-site-footer .footer-three .contact-us li i {
	float: none;
	flex: 0 0 18px;
	width: 18px;
	margin: 2px 0 0;
	text-align: center;
	line-height: 1.4;
	color: rgba(255, 255, 255, 0.75);
}

.cf-site-footer .footer-three .contact-us li p {
	float: none;
	margin: 0;
	flex: 1;
	line-height: 1.5;
	overflow: visible;
	display: block;
	-webkit-line-clamp: unset;
	line-clamp: unset;
}

.cf-site-footer .footer-three .contact-us li p strong {
	float: none;
	display: inline;
	margin: 0 6px 0 0;
	color: rgba(255, 255, 255, 0.92);
	font-weight: 600;
}

/* 四列标题区顶部对齐，正文起始线一致 */
.cf-site-footer .footer-top .container > .row > section[class*="footer-"] > h3 {
	flex-shrink: 0;
}

.cf-site-footer .footer-one > p,
.cf-site-footer .footer-four > p,
.cf-site-footer .footer-three > .contact-us {
	flex: 1;
	margin-top: 0;
}

/* 页脚响应式：平板两列、手机单列 */
@media (max-width: 991px) {
	.footer-top .container > .row > section[class*="footer-"] {
		flex: 0 0 50%;
		max-width: 50%;
		width: 50%;
		box-sizing: border-box;
		padding-left: 15px;
		padding-right: 15px;
	}

	.footer-top .container > .row > section.footer-five {
		align-items: flex-start;
	}
}

@media (max-width: 767px) {
	.footer-top {
		padding: 32px 0;
	}

	.footer-top .container > .row {
		display: block;
	}

	.footer-top .container > .row > section[class*="footer-"] {
		display: block;
		float: none;
		width: 100%;
		max-width: 100%;
		flex: none;
		margin-bottom: 22px;
		padding-bottom: 18px;
		border-bottom: 1px solid rgba(255, 255, 255, 0.18);
	}

	.footer-top .container > .row > section.footer-five {
		margin-bottom: 0;
		padding-bottom: 0;
		border-bottom: 0;
	}

	#footer .footer-one p,
	#footer .footer-three .contact-us {
		margin-bottom: 0;
	}

	.footer-five .cf-footer-wechat-qr {
		width: 80px;
		max-width: 80px;
	}

	.footer-bottom {
		padding: 12px 0 18px;
		text-align: center;
		line-height: 1.6;
	}

	.footer-bottom .row > [class*="col-"] {
		float: none;
		width: 100%;
		text-align: center;
	}

	.footer-bottom .cf-footer-bottom-right {
		margin-top: 8px;
	}
}

@media (max-width: 480px) {
	.footer-top {
		padding: 28px 0;
	}

	.footer-five .cf-footer-wechat-qr {
		width: 72px;
		max-width: 72px;
	}
}

a.prev,
a.next,
a.prev.disabled,
a.next.disabled {
	background: var(--cf-primary);
}

/* --------------------------------------------------------------------------
   Links & navigation accents
   -------------------------------------------------------------------------- */

a,
.post-item h4 a:hover,
.cn-wrapper li a:hover,
.cn-wrapper li a.active {
	color: var(--cf-primary);
}

#header .main-header .menu > ul > li > a#current,
#header .main-header .menu > ul > li > a:hover,
#header .main-header .menu > ul > li:hover > a {
	border-bottom: 3px solid var(--cf-highlight);
}

#current:after {
	background: var(--cf-primary);
}

.menu ul ul {
	border-top: 3px solid var(--cf-primary) !important;
}

/* --------------------------------------------------------------------------
   Buttons & form actions
   -------------------------------------------------------------------------- */

.btn:focus,
.subscribe-btn,
.progress .progress-bar,
.accordionMod .panel-heading .current,
.tp-leftarrow.default:hover,
.tp-rightarrow.default:hover,
.nivo-prevNav:hover,
.nivo-nextNav:hover,
.contact-box:hover,
#options li a.selected,
.ch-info .ch-info-back {
	background: var(--cf-primary);
}

.btn-color,
.subscribe-btn {
	background: -webkit-linear-gradient(var(--cf-accent), var(--cf-primary));
	background: -moz-linear-gradient(var(--cf-accent), var(--cf-primary));
	background: -o-linear-gradient(var(--cf-accent), var(--cf-primary));
	background: -ms-linear-gradient(var(--cf-accent), var(--cf-primary));
	background: linear-gradient(var(--cf-accent), var(--cf-primary));
	border: 1px solid var(--cf-btn-border);
	-webkit-box-shadow: inset 0 1px 1px 0 var(--cf-btn-shadow), 0 2px 0 -1px rgba(0, 0, 0, 0.2);
	box-shadow: inset 0 1px 1px 0 var(--cf-btn-shadow), 0 2px 0 -1px rgba(0, 0, 0, 0.2);
	cursor: pointer;
}

.btn-color:hover,
.subscribe-btn:hover {
	background: -webkit-linear-gradient(var(--cf-primary), var(--cf-highlight));
	background: -moz-linear-gradient(var(--cf-primary), var(--cf-highlight));
	background: -o-linear-gradient(var(--cf-primary), var(--cf-highlight));
	background: -ms-linear-gradient(var(--cf-primary), var(--cf-highlight));
	background: linear-gradient(var(--cf-primary), var(--cf-highlight));
}

.ie8 .btn-color,
.ie9 .btn-color {
	background: var(--cf-primary) !important;
}

.ie8 .btn-color:hover,
.ie9 .btn-color:hover {
	background: var(--cf-highlight) !important;
}

/* --------------------------------------------------------------------------
   Pagination, tabs, lists, content boxes
   -------------------------------------------------------------------------- */

.pagination > .active > a,
.pagination > .active > span,
.pagination > .active > a:hover,
.pagination > .active > span:hover,
.pagination > .active > a:focus,
.pagination > .active > span:focus,
.pager li > a:hover,
.pager li > a:focus,
.cn-wrapper li a,
.cn-wrapper:after {
	background-color: var(--cf-primary);
	color: #fff;
}

#options li a.selected {
	border: 1px solid var(--cf-primary);
}

ul.why li:before {
	background: var(--cf-accent);
}

#horizontal-tabs ul.tabs li.current {
	border-top: 2px solid var(--cf-primary);
}

#vertical-tabs ul.tabs li.current {
	border-left: 2px solid var(--cf-primary);
}

.author-content,
div.content-box.big,
#cn-tabs .service,
.comment-des,
.contact-box {
	border-bottom-color: var(--cf-primary);
}

/* --------------------------------------------------------------------------
   Blog meta
   -------------------------------------------------------------------------- */

.post-date a.date strong {
	color: var(--cf-primary);
}

.post-date a.date i {
	background-color: var(--cf-accent);
}

/* --------------------------------------------------------------------------
   Revolution Slider captions
   -------------------------------------------------------------------------- */

/* 主标题：紧凑半透明白底 */
.tp-caption.modern_big_bluebg {
	background-color: rgba(255, 255, 255, 0.5) !important;
	padding: 4px 12px !important;
	box-shadow: none;
}

.tp-caption.modern_big_bluebg h3 {
	color: var(--cf-primary) !important;
	font-size: 28px;
	line-height: 1.25;
	text-shadow: none;
}

/* 轮播小字：仅文字条带底色，避免大块重叠 */
.fullwidthbanner-container .tp-caption.list_slide {
	height: auto !important;
	min-height: 0 !important;
}

.fullwidthbanner-container .list-slide {
	background: none;
	padding: 0;
	margin: 0 0 4px;
	box-shadow: none;
	overflow: visible;
}

.fullwidthbanner-container .list-slide h5,
.fullwidthbanner-container .caption .dblue {
	display: inline-block;
	background: rgba(255, 255, 255, 0.5);
	padding: 2px 10px;
	border-radius: 3px;
	color: var(--cf-primary) !important;
	font-size: 15px;
	font-weight: 600;
	line-height: 1.35;
	margin: 0;
	text-shadow: none;
}

.tp-caption .slide-icon.bg-color {
	background: var(--cf-accent) !important;
}

/* --------------------------------------------------------------------------
   统一卡片高度 + 超长文字省略（line-clamp）
   -------------------------------------------------------------------------- */

/* 首页三栏优势块（图标负边距上移，需留出顶部空间且不能 overflow:hidden 裁切） */
.main-content > .container > .row {
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	padding-top: 28px;
}

.main-content > .container > .row > [class*="col-"] {
	display: flex;
	float: none;
	overflow: visible;
}

.main-content .content-box.big {
	display: flex;
	flex-direction: column;
	width: 100%;
	min-height: var(--cf-card-height-lg);
	box-sizing: border-box;
	overflow: visible;
}

.main-content .content-box.big .ch-info-wrap {
	flex-shrink: 0;
	margin: -32px auto 35px;
}

.main-content .content-box.big .content-box-info {
	flex: 1;
	display: flex;
	flex-direction: column;
	min-height: 0;
	margin-top: 25px;
	overflow: hidden;
}

.main-content .content-box.big .content-box-info h3 {
	flex-shrink: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.main-content .content-box.big .content-box-info p {
	flex: 1;
	min-height: 0;
	margin: 16px 0 12px;
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: var(--cf-clamp-lines-4);
	line-clamp: var(--cf-clamp-lines-4);
	text-overflow: ellipsis;
	line-height: 1.6;
	text-align: center;
}

.main-content .content-box.big .content-box-info > a {
	flex-shrink: 0;
}

/* 产品展示轮播：每屏 3 块，多屏时左右箭头切换（见 index.html 多个 .item） */
.recentworks .portfolio-desc p {
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: var(--cf-clamp-lines-4);
	line-clamp: var(--cf-clamp-lines-4);
	line-height: 1.6;
	max-height: calc(1.6em * var(--cf-clamp-lines-4));
}

/* 仅显示当前屏（Bootstrap 默认 display:none，勿对所有 .item 设 flex） */
.recentworks #portfolio-carousel .carousel-inner {
	overflow: hidden;
}

.recentworks #portfolio-carousel .carousel-inner > .item {
	display: none;
}

.recentworks #portfolio-carousel .carousel-inner > .item.active,
.recentworks #portfolio-carousel .carousel-inner > .item.next,
.recentworks #portfolio-carousel .carousel-inner > .item.prev {
	display: flex;
	align-items: stretch;
	width: 100%;
}

.recentworks #portfolio-carousel .carousel-inner > .item::before,
.recentworks #portfolio-carousel .carousel-inner > .item::after {
	display: none;
}

/* 首页产品轮播：动态插入，勿用 animate_afc（否则 opacity:0 不显示） */
.recentworks #portfolio-carousel .cf-home-product-col {
	opacity: 1;
	visibility: visible;
}

/* 核心业务：cf-home.js 动态注入后须立即可见，不依赖滚动触发动画 */
.features .circular-nav .animate_afl,
.features .circular-nav .animate_afr {
	opacity: 1;
	visibility: visible;
}

#cn-tabs .service-1 {
	display: block;
}

#cn-tabs .service-1 .cn-content {
	opacity: 1;
}

.recentworks #portfolio-carousel .carousel-inner > .item.active > [class*="col-"],
.recentworks #portfolio-carousel .carousel-inner > .item.next > [class*="col-"],
.recentworks #portfolio-carousel .carousel-inner > .item.prev > [class*="col-"] {
	float: none;
	display: flex;
	flex: 1 1 33.333%;
	width: 33.333%;
	max-width: 33.333%;
	box-sizing: border-box;
	padding-left: 10px;
	padding-right: 10px;
	align-items: stretch;
}

.recentworks .portfolio-item {
	display: flex !important;
	flex-direction: column;
	width: 100%;
	height: 100%;
	min-height: calc(var(--cf-portfolio-img-height) + var(--cf-portfolio-title-height) + 16px);
	box-sizing: border-box;
}

.recentworks .portfolio-item-link {
	display: block;
	flex: 0 0 var(--cf-portfolio-img-height);
	height: var(--cf-portfolio-img-height);
	overflow: hidden;
	position: relative;
}

.recentworks .portfolio-item-link img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
}

.recentworks .portfolio-item-title {
	flex: 0 0 var(--cf-portfolio-title-height);
	height: var(--cf-portfolio-title-height);
	min-height: var(--cf-portfolio-title-height);
	max-height: var(--cf-portfolio-title-height);
	box-sizing: border-box;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.recentworks .portfolio-item-title a {
	display: block;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	margin-bottom: 2px;
}

/* 产品列表页（productlist.html）统一展示框 */
.cf-product-list .portfolio-item-link {
	display: block;
	position: relative;
	height: var(--cf-portfolio-img-height);
	overflow: hidden;
}

.cf-product-list .portfolio-item-link img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
	transform: scale(1);
	transition: transform 0.4s ease;
}

.cf-product-list .portfolio-item-link:hover img {
	transform: scale(1.1);
}

.cf-product-list .portfolio-item-link .portfolio-item-hover,
.cf-product-list .portfolio-item-link .fullscreen {
	z-index: 2;
}

@media (prefers-reduced-motion: reduce) {
	.cf-product-list .portfolio-item-link img {
		transition: none;
	}

	.cf-product-list .portfolio-item-link:hover img {
		transform: none;
	}
}

.cf-product-list #filters a {
	font-size: 14px;
}

.recentworks .portfolio-item-title p {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	margin: 0;
}

/* 核心业务（圆环切换内容区） */
#cn-tabs .service .cn-content {
	min-height: var(--cf-card-height-md);
	max-height: var(--cf-card-height-md);
	overflow: hidden;
}

#cn-tabs .service .cn-content h4 {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

#cn-tabs .service .cn-content p {
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: var(--cf-clamp-lines-2);
	line-clamp: var(--cf-clamp-lines-2);
	line-height: 1.55;
	margin-bottom: 8px;
}

/* 新闻动态：缩略图固定尺寸，超出裁剪 */
.blog-showcase-thumb {
	width: var(--cf-news-thumb-width);
	height: var(--cf-news-thumb-height);
	overflow: hidden;
}

.blog-showcase-thumb .post-body {
	height: 100%;
	padding: 4px;
	box-sizing: border-box;
	overflow: hidden;
}

.blog-showcase-thumb .post-item-link {
	display: block;
	width: 100%;
	height: 100%;
	overflow: hidden;
	position: relative;
	cursor: default;
	pointer-events: none;
}

/* 首页新闻：不放大图片，无搜索图标层 */
.cf-home-news-thumb .post-item-hover,
.cf-home-news-thumb .fullscreen {
	display: none !important;
}

.blog-showcase-thumb .post-item-link img {
	width: 100%;
	height: 100%;
	max-width: 100%;
	max-height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
}

/* 新闻动态展示条 */
.blog-showcase-extra-info p {
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: var(--cf-clamp-lines-3);
	line-clamp: var(--cf-clamp-lines-3);
	line-height: 1.55;
	max-height: calc(1.55em * var(--cf-clamp-lines-3));
}

.blog-showcase-extra-info h4,
.blog-showcase-extra-info h4 a {
	display: block;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.blog-showcase-extra-info h4.title {
	font-size: 15px;
	font-weight: 700;
	color: #333;
	margin: 8px 0 6px;
	line-height: 1.4 !important;
}

.blog-showcase ul li.blog-first-el .blog-showcase-extra-info h4.title {
	color: #111;
}

a.cf-home-news-more {
	font-weight: 600;
}

/* 工厂及系列种植箱（client-carousel） */
.our-clients #client-carousel .carousel-inner {
	overflow: hidden;
}

.our-clients #client-carousel .carousel-inner > .item {
	display: none;
}

.our-clients #client-carousel .carousel-inner > .item.active,
.our-clients #client-carousel .carousel-inner > .item.next,
.our-clients #client-carousel .carousel-inner > .item.prev {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	width: 100%;
}

.our-clients #client-carousel .carousel-inner > .item::before,
.our-clients #client-carousel .carousel-inner > .item::after {
	display: none;
}

.our-clients #client-carousel .carousel-inner > .item > [class*="col-"] {
	float: none;
	display: flex;
	justify-content: center;
	align-items: stretch;
}

/* 种植箱轮播：固定展示框，任意尺寸上传图 object-fit 裁剪 */
.our-clients #client-carousel .item-inner,
.our-clients .cf-client-product {
	width: 100%;
	max-width: var(--cf-client-product-width);
	margin: 0 auto 20px;
	text-align: center;
}

.our-clients #client-carousel .item-inner > a,
.our-clients .cf-client-product-link,
.our-clients .cf-client-product-img-wrap {
	display: block;
	position: relative;
	width: 100%;
	aspect-ratio: 1 / 1;
	margin: 0 auto;
	overflow: hidden;
	background: #fff;
	border: 1px solid #ddd;
	border-radius: 2px;
	box-sizing: border-box;
	text-decoration: none;
	line-height: 0;
}

.our-clients #client-carousel .item-inner img,
.our-clients .cf-client-product-img-wrap img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
}

.our-clients .cf-client-product-name {
	margin: 10px 0 0;
	padding: 0 4px;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.4;
	color: #fff;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

/* 关于我们 - 公司介绍配图（保持模板左浮 + 正文环绕） */
#company .post-content .img-content {
	max-width: var(--cf-about-intro-img-max);
	width: var(--cf-about-intro-img-width);
}

#company .post-content .img-content img {
	width: 100%;
	height: auto;
	display: block;
}

@media (max-width: 767px) {
	#company .post-content .img-content {
		max-width: 100%;
		width: auto;
	}
}

/* 关于我们 - 公司介绍与核心竞争力左右并列 */
.cf-intro-row {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
}

.cf-intro-row .cf-competitiveness {
	margin-top: 0;
	padding-top: 0;
}

.cf-comp-tag {
	margin: 0 0 14px;
	padding: 8px 10px;
	font-size: 13px;
	font-weight: 700;
	color: #555;
	background: #f0f0f0;
	border-radius: 4px;
	text-align: center;
}

.cf-comp-tag i {
	margin-right: 4px;
	color: var(--cf-primary);
}

.cf-comp-list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.cf-comp-list > li {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	margin-bottom: 10px;
	padding: 12px 10px;
	border: 1px solid transparent;
	border-radius: 6px;
	border-bottom: 1px solid #eee;
	cursor: default;
	transition:
		transform 0.28s ease,
		background 0.28s ease,
		box-shadow 0.28s ease,
		border-color 0.28s ease;
}

.cf-comp-list > li:last-child {
	margin-bottom: 0;
}

.cf-comp-list > li:hover {
	transform: translateX(8px);
	background: rgba(0, 77, 51, 0.07);
	border-color: rgba(0, 77, 51, 0.15);
	border-bottom-color: rgba(0, 77, 51, 0.15);
	box-shadow: 0 6px 18px rgba(0, 77, 51, 0.12);
}

.cf-comp-icon {
	flex: 0 0 36px;
	width: 36px;
	height: 36px;
	line-height: 36px;
	text-align: center;
	background: var(--cf-primary);
	color: #fff;
	border-radius: 50%;
	font-size: 16px;
	transition:
		transform 0.32s cubic-bezier(0.34, 1.4, 0.64, 1),
		background 0.28s ease,
		box-shadow 0.28s ease;
}

.cf-comp-list > li:hover .cf-comp-icon {
	transform: scale(1.12) rotate(-8deg);
	background: var(--cf-highlight);
	box-shadow: 0 4px 12px rgba(243, 156, 18, 0.5);
}

.cf-comp-text {
	flex: 1;
	min-width: 0;
	font-size: 12px;
	line-height: 1.5;
	color: #555;
	transition: transform 0.28s ease;
}

.cf-comp-list > li:hover .cf-comp-text {
	transform: translateX(2px);
}

.cf-comp-text strong {
	display: block;
	margin-bottom: 4px;
	font-size: 13px;
	color: var(--cf-primary);
	transition: color 0.25s ease;
}

.cf-comp-list > li:hover .cf-comp-text strong {
	color: var(--cf-primary-dark);
}

.cf-comp-text span {
	display: block;
	transition: color 0.25s ease;
}

.cf-comp-list > li:hover .cf-comp-text span {
	color: #333;
}

@media (prefers-reduced-motion: reduce) {
	.cf-comp-list > li,
	.cf-comp-icon,
	.cf-comp-text,
	.cf-comp-text strong,
	.cf-comp-text span {
		transition: none;
	}

	.cf-comp-list > li:hover,
	.cf-comp-list > li:hover .cf-comp-icon,
	.cf-comp-list > li:hover .cf-comp-text {
		transform: none;
	}
}

@media (max-width: 991px) {
	.cf-intro-row .cf-competitiveness {
		margin-top: 28px;
	}
}

/* 关于我们 · 三大优势（与首页特色卡片同源，等高外框 + 弹窗详情） */
#cf-about-highlights-mount {
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
}

#cf-about-highlights-mount .cf-about-feature-col {
	display: flex;
	opacity: 1;
	visibility: visible;
	margin-bottom: 28px;
	float: none;
}

#cf-about-highlights-mount .cf-about-feature-card {
	display: flex;
	flex-direction: column;
	width: 100%;
	min-height: 300px;
}

#cf-about-highlights-mount .cf-about-feature-card .content-box.big {
	flex: 1;
	display: flex;
	flex-direction: column;
	width: 100%;
	margin-bottom: 0;
	padding: 0 7% 22px;
}

#cf-about-highlights-mount .cf-about-feature-card .ch-info-wrap {
	margin: -28px auto 10px;
}

#cf-about-highlights-mount .cf-about-feature-card .content-box-info {
	flex: 1;
	display: flex;
	flex-direction: column;
	margin-top: 0;
}

#cf-about-highlights-mount .cf-about-feature-card .content-box-info h3 {
	margin: 0 0 6px;
	line-height: 1.35;
}

#cf-about-highlights-mount .cf-about-feature-summary {
	flex: 1;
	margin: 6px 0 10px;
	min-height: 4.5em;
}

#cf-about-highlights-mount .cf-about-feature-toggle {
	margin-top: auto;
	cursor: pointer;
}

/* 弹窗须高于 #header .main-header (z-index: 9999) */
body.cf-about-modal-open .modal-backdrop.in {
	z-index: 10040 !important;
}

body.cf-about-modal-open .cf-about-feature-modal.in {
	z-index: 10050 !important;
}

.cf-about-feature-modal .modal-body {
	max-height: 65vh;
	overflow-y: auto;
	line-height: 1.75;
	color: #444;
}

.cf-about-feature-modal .modal-body p {
	margin: 0 0 14px;
}

.cf-about-feature-modal .modal-body p:last-child {
	margin-bottom: 0;
}

.cf-about-feature-modal .modal-header .close {
	font-size: 28px;
	opacity: 0.6;
	position: relative;
	z-index: 2;
	cursor: pointer;
	pointer-events: auto;
}

.cf-about-feature-modal .modal-footer [data-dismiss="modal"] {
	position: relative;
	z-index: 2;
	cursor: pointer;
	pointer-events: auto;
}

.cf-about-feature-modal .modal-footer .btn-default {
	background: #004d33;
	border-color: #004d33;
	color: #fff;
}

.cf-about-feature-modal .modal-footer .btn-default:hover {
	background: #003826;
	border-color: #003826;
	color: #fff;
}

@media (max-width: 991px) {
	#cf-about-highlights-mount .cf-about-feature-card {
		min-height: 0;
	}

	#cf-about-highlights-mount .cf-about-feature-summary {
		min-height: 0;
	}
}

/* 关于我们页锚点：避开固定页头 */
.about.page #company,
.about.page #base,
.about.page #advantages,
.about.page #highlights {
	scroll-margin-top: 110px;
}

a.cf-about-jump-link {
	color: inherit;
	text-decoration: none;
	cursor: pointer;
	display: inline-block;
}

a.cf-about-jump-link:hover {
	color: #004d33;
	text-decoration: none;
}

a.cf-about-jump-link .cf-about-jump-icon {
	margin-left: 4px;
	font-size: 12px;
	opacity: 0.75;
}

#teams .team .team-member-image,
#honors .team .team-member-image {
	height: auto;
	padding-bottom: 0;
	overflow: hidden;
	border-radius: 50%;
	position: relative;
}

#teams .team .team-member-image img,
#honors .team .team-member-image img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 50%;
	transition: transform 0.25s ease;
}

#teams .team .team-member-image::after,
#honors .team .team-member-image::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	box-shadow: inset 0 0 0 10px rgba(255, 255, 255, 0.25);
	transition: box-shadow 0.25s ease;
	pointer-events: none;
	z-index: 1;
}

#teams .team .team-member:hover .team-member-image::after,
#honors .team .team-member:hover .team-member-image::after {
	box-shadow: inset 0 0 0 200px rgba(0, 77, 51, 0.65);
}

#teams .team .team-member:hover .team-member-image img,
#honors .team .team-member:hover .team-member-image img {
	transform: scale(1.04);
}

/* 联系我们 - 地图 */
/* 联系页留言表单 */
#contact-form .cf-contact-form fieldset {
	border: none;
	padding: 0;
	margin: 0;
}

#contact-form .cf-contact-field-row {
	margin-bottom: 18px;
}

#contact-form .cf-contact-form label {
	display: block;
	font-weight: 600;
	color: #444;
	margin-bottom: 6px;
}

#contact-form .cf-required {
	color: #c0392b;
}

#contact-form .cf-contact-form .form-control {
	border-radius: 3px;
	border-color: #d8e0dc;
	box-shadow: none;
}

#contact-form .cf-contact-form .form-control:focus {
	border-color: #004d33;
	box-shadow: 0 0 0 2px rgba(0, 77, 51, 0.12);
}

#contact-form .cf-contact-message {
	min-height: 140px;
	resize: vertical;
}

.cf-contact-honeypot {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
	opacity: 0;
	pointer-events: none;
}

.cf-contact-captcha-panel {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 16px;
	padding: 14px 16px;
	background: #f7faf8;
	border: 1px solid #e2ebe6;
	border-radius: 4px;
}

.cf-contact-captcha-img-wrap {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
	flex-shrink: 0;
}

.cf-contact-captcha-img {
	display: block;
	width: 132px;
	height: 48px;
	border: 1px solid #c5d5cc;
	border-radius: 3px;
	cursor: pointer;
	background: #fff;
	object-fit: contain;
}

.cf-contact-captcha-refresh {
	font-size: 13px;
	color: #004d33;
	text-decoration: none;
}

.cf-contact-captcha-refresh:hover {
	text-decoration: underline;
	color: #003826;
}

.cf-contact-captcha-input {
	flex: 1;
	min-width: 200px;
	max-width: 360px;
	margin-bottom: 0;
}

.cf-contact-submit-wrap {
	margin-top: 8px;
	padding-top: 4px;
}

.cf-contact-submit-wrap .submit {
	margin-bottom: 0;
}

@media (max-width: 991px) {
	#contact-form .cf-contact-field-row .col-sm-12 + .col-sm-12 {
		margin-top: 14px;
	}

	.cf-contact-captcha-panel {
		flex-direction: column;
		align-items: stretch;
	}

	.cf-contact-captcha-input {
		max-width: none;
		width: 100%;
	}
}

/* 顶栏搜索：默认仅放大镜图标，聚焦后展开并显示占位提示 */
#search-form .search-text-box::placeholder {
	color: transparent;
}

#search-form .search-text-box:focus::placeholder {
	color: #999;
}

#search-form .search-text-box::-webkit-input-placeholder {
	color: transparent;
}

#search-form .search-text-box:focus::-webkit-input-placeholder {
	color: #999;
}

.cf-search-scope-switch {
	margin-top: 8px;
	font-size: 13px;
}

.cf-search-scope-note {
	margin: 6px 0 0;
	font-size: 14px;
}

/* 搜索结果页 */
.cf-search-page-form {
	margin-bottom: 8px;
}

.cf-search-page-form-inner {
	margin-top: 12px;
}

.cf-search-hint {
	margin: 10px 0 0;
	font-size: 13px;
}

.cf-search-summary {
	margin-bottom: 24px;
	color: #555;
}

.cf-search-empty {
	padding: 24px 0;
	color: #666;
}

.cf-search-section {
	margin-bottom: 32px;
}

.cf-search-section-title {
	margin-bottom: 16px;
	border-bottom: 2px solid #004d33;
	padding-bottom: 8px;
}

.cf-search-count {
	font-size: 14px;
	font-weight: normal;
	color: #888;
}

.cf-search-list {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.cf-search-item {
	display: flex;
	gap: 16px;
	padding: 16px;
	background: #f9fbf9;
	border: 1px solid #e5ebe7;
	border-radius: 4px;
}

.cf-search-item-image {
	flex-shrink: 0;
	width: 100px;
	height: 72px;
	overflow: hidden;
	border-radius: 3px;
	border: 1px solid #ddd;
}

.cf-search-item-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.cf-search-item-body {
	flex: 1;
	min-width: 0;
}

.cf-search-item-badge {
	display: inline-block;
	font-size: 12px;
	color: #004d33;
	background: rgba(0, 77, 51, 0.08);
	padding: 2px 8px;
	border-radius: 2px;
	margin-bottom: 6px;
}

.cf-search-item-title {
	margin: 0 0 8px;
	font-size: 18px;
	line-height: 1.35;
}

.cf-search-item-title a {
	color: #333;
}

.cf-search-item-title a:hover {
	color: #004d33;
}

.cf-search-item-summary {
	margin: 0 0 8px;
	color: #666;
	line-height: 1.65;
	font-size: 14px;
}

.cf-search-item-more {
	font-size: 13px;
}

@media (max-width: 767px) {
	.cf-search-item {
		flex-direction: column;
	}

	.cf-search-item-image {
		width: 100%;
		height: 140px;
	}
}

.cf-contact-map-row {
	margin-top: 10px;
}

.cf-map-hint {
	margin-bottom: 12px;
	font-size: 13px;
	color: #666;
}

.cf-china-map {
	border: 1px solid #ddd;
	border-radius: 2px;
	z-index: 1;
	background: #f5f5f5;
}

.cf-amap-info {
	font-size: 13px;
	line-height: 1.5;
}

.cf-map-fallback {
	min-height: 400px;
	padding: 32px 24px;
	text-align: center;
	background: #f8f8f8;
	border: 1px dashed #ccc;
	border-radius: 2px;
	box-sizing: border-box;
}

.cf-map-fallback p {
	margin: 0 0 12px;
	color: #555;
	line-height: 1.6;
}

.cf-map-fallback-note {
	color: #a94442;
}

.cf-map-fallback-list {
	list-style: none;
	margin: 16px 0 20px;
	padding: 0;
	text-align: left;
	display: inline-block;
}

.cf-map-fallback-list li {
	margin-bottom: 8px;
	font-size: 14px;
	color: #444;
}

.cf-map-fallback-links .btn {
	margin: 4px 6px;
}

/* 创始人寄语 */
.our-clients .testimonial p {
	min-height: var(--cf-card-height-sm);
	max-height: var(--cf-card-height-sm);
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: var(--cf-clamp-lines-4);
	line-clamp: var(--cf-clamp-lines-4);
	line-height: 1.55;
	box-sizing: border-box;
}

/* 页脚简介 */
#footer .footer-one p,
#footer .footer-two li,
#footer .footer-four p {
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: var(--cf-clamp-lines-4);
	line-clamp: var(--cf-clamp-lines-4);
	line-height: 1.55;
}

/* 联系我们列表不用行数裁剪，避免首行高度异常 */
#footer.cf-site-footer .footer-three .contact-us p {
	overflow: visible;
	display: block;
	-webkit-line-clamp: unset;
	line-clamp: unset;
}

@media (max-width: 991px) {
	.main-content > .container > .row > [class*="col-"] {
		width: 100%;
	}

	.main-content > .container > .row {
		padding-top: 22px;
	}

	.main-content .content-box.big {
		min-height: var(--cf-card-height-lg);
		margin-bottom: 20px;
	}

	.recentworks #portfolio-carousel .carousel-inner > .item.active,
	.recentworks #portfolio-carousel .carousel-inner > .item.next,
	.recentworks #portfolio-carousel .carousel-inner > .item.prev {
		flex-wrap: wrap;
	}

	.recentworks #portfolio-carousel .carousel-inner > .item.active > [class*="col-"],
	.recentworks #portfolio-carousel .carousel-inner > .item.next > [class*="col-"],
	.recentworks #portfolio-carousel .carousel-inner > .item.prev > [class*="col-"] {
		flex: 1 1 100%;
		width: 100%;
		max-width: 100%;
		margin-bottom: 15px;
	}

	.blog-showcase-thumb {
		width: 100%;
		max-width: 100%;
		height: 200px;
	}
}

/* --------------------------------------------------------------------------
   prettyPhoto 灯箱：可见关闭按钮（原 sprite 图不可见时）
   -------------------------------------------------------------------------- */

div.pp_overlay {
	z-index: 100000 !important;
	cursor: pointer;
}

div.pp_pic_holder {
	z-index: 100001 !important;
}

a.pp_close {
	position: fixed !important;
	right: 20px !important;
	top: 20px !important;
	left: auto !important;
	width: 52px !important;
	height: 52px !important;
	margin: 0 !important;
	padding: 0 !important;
	background: var(--cf-primary, #004d33) !important;
	border: 2px solid #fff !important;
	border-radius: 50% !important;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
	text-indent: 0 !important;
	font-size: 0 !important;
	line-height: 48px !important;
	text-align: center !important;
	text-decoration: none !important;
	color: #fff !important;
	z-index: 100003 !important;
	opacity: 1 !important;
	overflow: visible !important;
}

a.pp_close:hover {
	opacity: 0.9 !important;
	background: #003322 !important;
	color: #fff !important;
}

a.pp_close::before {
	content: "❌";
	display: block;
	font-size: 22px;
	line-height: 48px;
}

a.pp_close::after {
	content: "关闭";
	display: block;
	position: absolute;
	right: 60px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 14px;
	line-height: 1;
	white-space: nowrap;
	background: rgba(0, 0, 0, 0.65);
	color: #fff;
	padding: 8px 12px;
	border-radius: 4px;
}

.pp_hoverContainer a.pp_previous,
.pp_hoverContainer a.pp_next {
	background: rgba(0, 0, 0, 0.35) !important;
	text-indent: 0 !important;
	color: #fff !important;
	font-size: 42px;
	line-height: 1;
	text-align: center;
	text-decoration: none;
	opacity: 0.85;
}

.pp_hoverContainer a.pp_previous:hover,
.pp_hoverContainer a.pp_next:hover {
	opacity: 1;
	background: rgba(0, 77, 51, 0.75) !important;
}

.pp_hoverContainer a.pp_previous::before {
	content: "‹";
	display: block;
	margin-top: 40vh;
}

.pp_hoverContainer a.pp_next::before {
	content: "›";
	display: block;
	margin-top: 40vh;
}

.pp_nav a.pp_arrow_previous,
.pp_nav a.pp_arrow_next {
	text-indent: 0 !important;
	background: none !important;
	color: #fff !important;
	font-size: 18px;
	line-height: 30px;
	padding: 0 8px;
}

.pp_nav a.pp_arrow_previous::before {
	content: "上一张";
}

.pp_nav a.pp_arrow_next::before {
	content: "下一张";
}

div.pp_default .pp_details {
	background: rgba(0, 0, 0, 0.55);
	padding: 8px 12px;
}

div.pp_default .pp_description {
	color: #fff;
}

/* --------------------------------------------------------------------------
   产品详情页 product-detail.html
   -------------------------------------------------------------------------- */

.cf-product-detail-page .cf-product-hero {
	margin-bottom: 20px;
	padding: 0;
	border: 1px solid #ddd;
	background: #f8f8f8;
	overflow: hidden;
}

.cf-product-detail-page .cf-product-hero-link {
	display: block;
	position: relative;
	line-height: 0;
}

.cf-product-detail-page .cf-product-hero-link img {
	width: 100%;
	max-height: 420px;
	object-fit: cover;
	object-position: center;
	display: block;
}

.cf-product-detail-page .cf-product-zoom {
	position: absolute;
	right: 16px;
	bottom: 16px;
	background: rgba(0, 77, 51, 0.88);
	color: #fff;
	font-size: 13px;
	padding: 8px 14px;
	border-radius: 2px;
	line-height: 1.4;
}

.cf-product-detail-page .cf-product-cat-label {
	display: inline-block;
	background: var(--cf-primary, #004d33);
	color: #fff;
	font-size: 12px;
	padding: 4px 10px;
	border-radius: 2px;
	margin-bottom: 10px;
}

.cf-product-detail-page .cf-product-name {
	margin-top: 0;
}

.cf-product-detail-page .cf-product-tagline {
	font-size: 16px;
	color: #666;
	margin-bottom: 20px;
}

.cf-product-detail-page .cf-product-subtitle {
	margin: 24px 0 12px;
	font-size: 18px;
	color: var(--cf-primary, #004d33);
}

.cf-product-detail-page .cf-product-features {
	list-style: none;
	margin: 0;
	padding: 0;
}

.cf-product-detail-page .cf-product-features li {
	padding: 8px 0;
	border-bottom: 1px solid #eee;
	color: #444;
}

.cf-product-detail-page .cf-product-features li i {
	color: var(--cf-accent, #76b82a);
	margin-right: 8px;
}

.cf-product-detail-page .cf-product-meta {
	list-style: none;
	margin: 0;
	padding: 0;
}

.cf-product-detail-page .cf-product-meta li {
	padding: 10px 0;
	border-bottom: 1px solid #eee;
	font-size: 14px;
}

.cf-product-detail-page .cf-product-meta strong {
	display: inline-block;
	min-width: 4em;
	color: #333;
}

.cf-product-detail-page .btn-block {
	display: block;
	width: 100%;
	margin-bottom: 10px;
	text-align: center;
}

.cf-product-detail-page .cf-related-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.cf-product-detail-page .cf-related-list li {
	margin-bottom: 12px;
}

.cf-product-detail-page .cf-related-list a {
	display: flex;
	align-items: center;
	gap: 12px;
	text-decoration: none;
	color: #333;
}

.cf-product-detail-page .cf-related-list img {
	width: 64px;
	height: 64px;
	object-fit: cover;
	border: 1px solid #ddd;
	flex-shrink: 0;
}

.cf-product-detail-page .cf-related-list a:hover {
	color: var(--cf-primary, #004d33);
}

.cf-product-detail-page .cf-product-pager {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 32px;
	padding-top: 24px;
	border-top: 1px solid #eee;
}

@media (max-width: 991px) {
	.cf-product-detail-page .sidebar {
		margin-top: 32px;
	}
}

/* 新闻列表 newslist.html */
.cf-news-list .post-image img {
	width: 100%;
	max-height: 280px;
	object-fit: cover;
	object-position: center;
	display: block;
}

.cf-news-list .content-title a {
	color: inherit;
	text-decoration: none;
}

.cf-news-list .content-title a:hover {
	color: var(--cf-primary, #004d33);
}

.cf-news-list .sidebar .recent-post-img {
	width: 64px;
	height: 64px;
	object-fit: cover;
}

/* 新闻详情 news-detail.html */
.cf-news-detail-page .cf-news-hero {
	margin-bottom: 0;
	padding: 0;
	border: 1px solid #ddd;
	overflow: hidden;
}

.cf-news-detail-page .cf-news-hero a {
	display: block;
	position: relative;
	line-height: 0;
}

.cf-news-detail-page .cf-news-hero img {
	width: 100%;
	max-height: 420px;
	object-fit: cover;
	object-position: center;
	display: block;
}

.cf-news-detail-page .cf-news-zoom {
	position: absolute;
	right: 16px;
	bottom: 16px;
	background: rgba(0, 77, 51, 0.88);
	color: #fff;
	font-size: 13px;
	padding: 8px 14px;
	border-radius: 2px;
	line-height: 1.4;
}

.cf-news-detail-page .cf-news-cat-label {
	display: inline-block;
	background: var(--cf-primary, #004d33);
	color: #fff;
	font-size: 12px;
	padding: 4px 10px;
	border-radius: 2px;
	margin: 8px 0 10px;
}

.cf-news-detail-page .cf-news-detail-title {
	margin-top: 0;
}

.cf-news-detail-page .blog-entry-meta-date {
	margin-top: 6px;
	color: #888;
	font-size: 13px;
}

.cf-news-detail-page .cf-news-body p {
	line-height: 1.8;
	margin-bottom: 16px;
}

.cf-news-detail-page .cf-news-meta {
	list-style: none;
	margin: 0;
	padding: 0;
}

.cf-news-detail-page .cf-news-meta li {
	padding: 10px 0;
	border-bottom: 1px solid #eee;
	font-size: 14px;
}

.cf-news-detail-page .cf-news-meta strong {
	display: inline-block;
	min-width: 3em;
	color: #333;
}

.cf-news-detail-page .cf-news-pager {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 28px;
	padding-top: 24px;
	border-top: 1px solid #eee;
}

.cf-news-detail-page .cf-related-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.cf-news-detail-page .cf-related-list li {
	margin-bottom: 12px;
}

.cf-news-detail-page .cf-related-list a {
	display: flex;
	align-items: center;
	gap: 12px;
	text-decoration: none;
	color: #333;
}

.cf-news-detail-page .cf-related-list img {
	width: 64px;
	height: 64px;
	object-fit: cover;
	border: 1px solid #ddd;
	flex-shrink: 0;
}

.cf-news-detail-page .cf-related-list a:hover {
	color: var(--cf-primary, #004d33);
}

.cf-news-detail-page .btn-block {
	display: block;
	width: 100%;
	margin-bottom: 10px;
	text-align: center;
}

@media (max-width: 991px) {
	.cf-news-detail-page .sidebar {
		margin-top: 32px;
	}
}

/* 种植基地页 */
.cf-bases-page .cf-bases-intro {
	margin-bottom: 24px;
	line-height: 1.75;
	color: #444;
}

.cf-bases-strategy {
	margin-bottom: 32px;
	border-color: #e8e8e8;
}

.cf-bases-strategy .title {
	margin-top: 0;
}

.cf-bases-strategy-body p {
	line-height: 1.75;
	margin-bottom: 12px;
	color: #444;
}

.cf-bases-strategy-body p:last-child {
	margin-bottom: 0;
}

.cf-bases-stats {
	margin-bottom: 36px;
}

.cf-bases-stat-item {
	text-align: center;
	padding: 18px 10px;
	margin-bottom: 16px;
	background: #f7faf8;
	border: 1px solid #e2ebe6;
	border-radius: 4px;
	min-height: 88px;
}

.cf-bases-stat-value {
	font-size: 22px;
	font-weight: 700;
	color: var(--cf-primary, #004d33);
	line-height: 1.3;
	margin-bottom: 6px;
}

.cf-bases-stat-label {
	font-size: 13px;
	color: #666;
	line-height: 1.4;
}

.cf-bases-cooperation {
	margin-bottom: 36px;
	border-color: #e8e8e8;
}

.cf-bases-cooperation .title {
	margin-top: 0;
}

.cf-bases-cooperation-body p {
	line-height: 1.75;
	margin-bottom: 14px;
	color: #444;
}

.cf-bases-visit {
	margin-bottom: 36px;
}

.cf-bases-visit-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.cf-bases-visit-list li {
	padding: 12px 0 12px 28px;
	border-bottom: 1px solid #eee;
	position: relative;
	line-height: 1.65;
	color: #444;
}

.cf-bases-visit-list li i {
	position: absolute;
	left: 0;
	top: 14px;
	color: var(--cf-primary, #004d33);
}

.cf-bases-list {
	margin-bottom: 40px;
}

.cf-bases-card {
	margin-bottom: 48px;
	padding-bottom: 48px;
	border-bottom: 1px solid #eee;
}

.cf-bases-card:last-child {
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}

.cf-bases-card-media img {
	width: 100%;
	height: auto;
	display: block;
	border: 1px solid #ddd;
}

.cf-bases-card--flip .cf-bases-card-media {
	float: right;
}

.cf-bases-card--flip .cf-bases-card-body {
	float: left;
}

.cf-bases-role {
	display: inline-block;
	margin-bottom: 10px;
	font-size: 12px;
	font-weight: normal;
}

.cf-bases-name {
	margin: 0 0 8px;
	color: var(--cf-primary, #004d33);
}

.cf-bases-subtitle {
	color: #666;
	margin-bottom: 8px;
}

.cf-bases-address {
	color: #555;
	margin-bottom: 16px;
}

.cf-bases-text p {
	line-height: 1.8;
	margin-bottom: 12px;
}

.cf-bases-news-link a {
	font-weight: 600;
}

.cf-bases-highlights {
	margin: 8px 0 40px;
}

/* 基地亮点：每行 3 块等高（6 条共两行） */
#cf-bases-highlights-grid {
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	list-style: none;
	margin: 0 -15px;
	padding: 0;
}

#cf-bases-highlights-grid > li {
	display: flex;
	float: none;
	margin-bottom: 20px;
}

.cf-bases-highlight-item {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	width: 100%;
	height: 100%;
	min-height: 140px;
	text-align: center;
	padding: 22px 16px;
	border: 1px solid #eee;
	background: #fafafa;
	box-sizing: border-box;
}

.cf-bases-highlight-item i {
	font-size: 28px;
	color: var(--cf-primary, #004d33);
	display: block;
	margin-bottom: 12px;
	flex-shrink: 0;
}

.cf-bases-highlight-item p {
	flex: 1;
	margin: 0;
	line-height: 1.65;
	font-size: 14px;
	color: #444;
	display: flex;
	align-items: center;
	justify-content: center;
}

.cf-bases-cta {
	margin-top: 16px;
	border-color: #e8e8e8;
}

.cf-bases-cta h3.title {
	margin-top: 0;
	overflow: visible;
}

/* 去掉主题 h3.title:after 右侧装饰横条 */
.cf-bases-cta h3.title:after {
	display: none;
	content: none;
}

.cf-bases-cta-body {
	margin-bottom: 20px;
	max-width: 640px;
	margin-left: auto;
	margin-right: auto;
	line-height: 1.75;
}

@media (max-width: 991px) {
	.cf-bases-card--flip .cf-bases-card-media,
	.cf-bases-card--flip .cf-bases-card-body {
		float: none;
	}
	.cf-bases-card-media {
		margin-bottom: 20px;
	}
}

/* 全站维护页（status=关闭 时跳转） */
.cf-maintenance-page {
	min-height: 100vh;
	margin: 0;
	background: #f5f7f4;
	color: #333;
}

.cf-maintenance-wrap {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 48px 24px;
	text-align: center;
}

.cf-maintenance-logo {
	max-width: 220px;
	max-height: 88px;
	margin-bottom: 28px;
}

.cf-maintenance-title {
	margin: 0 0 12px;
	font-size: 28px;
	font-weight: 600;
	color: #2d5a27;
}

.cf-maintenance-sitename {
	margin: 0 0 16px;
	font-size: 16px;
	color: #666;
}

.cf-maintenance-desc {
	max-width: 520px;
	margin: 0;
	line-height: 1.8;
	font-size: 15px;
	color: #555;
}
