@charset "utf-8";
/* CSS Document */
.title-tags {
	margin: 10px 0 20px;
}
.title-tags .tag {
	display: inline-block;
	padding: 4px 10px;
	margin: 0 5px 5px 0;
	background: #e9f5e9;
	color: #28a745;
	border-radius: 3px;
	font-size: 12px;
	border: 1px solid #c3e6c3;
}

.product-quick-info {
	background: #f8f9fa;
	padding: 15px;
	border-radius: 5px;
	margin: 20px 0;
	border-left: 4px solid #28a745;
}
.quick-info-item {
	display: inline-block;
	margin-right: 30px;
	margin-bottom: 10px;
}
.quick-info-item .label {
	color: #666;
	font-weight: normal;
}
.quick-info-item .value {
	color: #333;
	font-weight: bold;
}
.price-highlight {
	color: #dc3545;
	font-size: 18px;
	font-weight: bold;
}

.tel-link {
	color: #28a745;
	text-decoration: none;
	font-weight: bold;
}
.tel-link:hover {
	color: #218838;
	text-decoration: underline;
}

.product-gallery {
	margin: 20px 0;
}
.gallery-container {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 15px 0;
}
.gallery-item {
	flex: 0 0 calc(33.333% - 10px);
}
.gallery-item img {
	width: 100%;
	height: auto;
	border-radius: 5px;
	border: 1px solid #ddd;
	transition: transform 0.3s;
}
.gallery-item img:hover {
	transform: scale(1.05);
}

.product-specs table {
	width: 100%;
	border-collapse: collapse;
	margin: 15px 0;
}
.product-specs th,
.product-specs td {
	padding: 10px 15px;
	border: 1px solid #dee2e6;
	text-align: left;
}
.product-specs th {
	background: #f8f9fa;
	font-weight: 600;
	width: 120px;
}
.product-specs td:last-child {
	color: #6c757d;
	font-size: 12px;
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 20px;
	margin: 20px 0;
}
.feature-item {
	background: white;
	padding: 20px;
	border-radius: 8px;
	box-shadow: 0 2px 10px rgba(0,0,0,0.1);
	border-top: 4px solid #28a745;
}
.feature-icon {
	font-size: 32px;
	margin-bottom: 10px;
}
.feature-item h4 {
	margin: 10px 0;
	color: #333;
}
.feature-item p {
	color: #666;
	line-height: 1.5;
}

.price-table-section {
	margin: 30px 0;
	background: #f8f9fa;
	padding: 20px;
	border-radius: 8px;
}
.section-title {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 15px;
}
.update-time {
	color: #666;
	font-size: 14px;
}
.price-notes {
	background: #fff3cd;
	border: 1px solid #ffeaa7;
	padding: 10px 15px;
	border-radius: 5px;
	margin: 15px 0;
}
.price-table-wrapper {
	overflow-x: auto;
}
.price-table {
	width: 100%;
	border-collapse: collapse;
	margin: 15px 0;
	background: white;
}
.price-table th {
	background: #28a745;
	color: white;
	padding: 12px 15px;
	text-align: center;
	font-weight: 600;
}
.price-table td {
	padding: 10px 15px;
	border: 1px solid #dee2e6;
	text-align: center;
}
.price-table tr.even {
	background: #f8f9fa;
}
.price-table tr.odd {
	background: white;
}
.price-table .price-cell {
	color: #dc3545;
	font-weight: bold;
	font-size: 16px;
}
.price-tips {
	margin-top: 20px;
	padding: 15px;
	background: white;
	border-radius: 5px;
	border-left: 4px solid #007bff;
}
.price-tips ul {
	margin: 10px 0 0 20px;
}
.price-tips li {
	margin-bottom: 5px;
	color: #666;
}

.service-guarantee {
	margin: 30px 0;
	background: linear-gradient(135deg, #e9f5e9 0%, #ffffff 100%);
	padding: 30px;
	border-radius: 10px;
	border: 1px solid #c3e6c3;
}
.guarantee-items {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 20px;
	margin-top: 20px;
}
.guarantee-item {
	text-align: center;
	padding: 20px 10px;
}
.guarantee-icon {
	font-size: 40px;
	margin-bottom: 15px;
}
.guarantee-item h4 {
	margin: 10px 0;
	color: #28a745;
}
.guarantee-item p {
	color: #666;
	font-size: 14px;
	line-height: 1.4;
}

.search-extension {
	margin: 20px 0;
}
.search-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 10px;
}
.search-tag {
	display: inline-block;
	padding: 5px 12px;
	background: #f8f9fa;
	color: #495057;
	text-decoration: none;
	border-radius: 20px;
	border: 1px solid #dee2e6;
	font-size: 13px;
	transition: all 0.3s;
}
.search-tag:hover {
	background: #28a745;
	color: white;
	border-color: #28a745;
	transform: translateY(-2px);
}

.contact-box {
	background: #28a745;
	color: white;
	padding: 25px;
	border-radius: 10px;
	margin: 30px 0;
}
.contact-box h3 {
	margin: 0 0 20px;
	color: white;
	text-align: center;
	font-size: 24px;
}
.contact-info {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 15px;
	margin-bottom: 20px;
}
.contact-item {
	padding: 10px 0;
}
.contact-item strong {
	display: block;
	margin-bottom: 5px;
}
.phone-number {
	color: white;
	font-size: 24px;
	font-weight: bold;
	text-decoration: none;
	display: inline-block;
	margin-top: 5px;
}
.phone-number:hover {
	text-decoration: underline;
}
.contact-buttons {
	display: flex;
	justify-content: center;
	gap: 15px;
	margin-top: 20px;
}
.btn-call, .btn-message, .btn-qq {
	padding: 12px 30px;
	border-radius: 5px;
	text-decoration: none;
	font-weight: bold;
	text-align: center;
	transition: all 0.3s;
	min-width: 120px;
}
.btn-call {
	background: white;
	color: #28a745;
	border: 2px solid white;
}
.btn-call:hover {
	background: #f8f9fa;
	transform: translateY(-2px);
	box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}
.btn-message {
	background: transparent;
	color: white;
	border: 2px solid white;
}
.btn-message:hover {
	background: rgba(255,255,255,0.1);
	transform: translateY(-2px);
}
.btn-qq {
	background: #12b7f5;
	color: white;
	border: 2px solid #12b7f5;
}
.btn-qq:hover {
	background: #0da5e0;
	transform: translateY(-2px);
}

.category-nav {
	margin-bottom: 20px;
}
.cat-nav-items {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}
.cat-nav-item {
	padding: 6px 12px;
	background: #f8f9fa;
	color: #495057;
	text-decoration: none;
	border-radius: 4px;
	font-size: 13px;
	border: 1px solid #dee2e6;
	transition: all 0.3s;
}
.cat-nav-item:hover {
	background: #e9ecef;
}
.cat-nav-item.active {
	background: #28a745;
	color: white;
	border-color: #28a745;
}



/* 标签云 保留原造型 优化底色+悬浮 */
.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-start;
  line-height: 1.6;
  margin: 15px 0;
}

.tag-item {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.25s ease;
  white-space: nowrap;
  /* 舒适底色：浅灰不刺眼 */
  background: #f1f5f2;
  color: #333;
  border: 1px solid #e2e9e4;
  box-shadow: none;
}

/* 鼠标悬浮：温和绿色，不艳不晃眼 */
.tag-item:hover {
  background: #27ae60;
  color: #ffffff;
  border-color: #27ae60;
  transform: translateY(-2px);
}

/* 移动端适配 */
@media (max-width:768px){
  .tag-cloud {
    gap: 8px;
  }
  .tag-item {
    padding: 5px 11px;
    font-size: 13px;
  }
}




.contact-sidebar {
	background: #f8f9fa;
	padding: 15px;
	border-radius: 8px;
	margin-top: 20px;
	border-left: 4px solid #28a745;
}
.sidebar-phone {
	display: block;
	font-size: 20px;
	font-weight: bold;
	color: #28a745;
	text-decoration: none;
	margin: 10px 0;
	text-align: center;
}
.sidebar-phone:hover {
	text-decoration: underline;
}
.contact-actions {
	display: flex;
	gap: 10px;
	margin-top: 15px;
}
.btn-call-small, .btn-message-small {
	flex: 1;
	padding: 8px 0;
	text-align: center;
	text-decoration: none;
	border-radius: 4px;
	font-size: 13px;
	font-weight: bold;
	transition: all 0.3s;
}
.btn-call-small {
	background: #28a745;
	color: white;
}
.btn-call-small:hover {
	background: #218838;
	transform: translateY(-2px);
}
.btn-message-small {
	background: #6c757d;
	color: white;
}
.btn-message-small:hover {
	background: #5a6268;
	transform: translateY(-2px);
}

/* 新增：Toast提示样式 */
.toast {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: rgba(0,0,0,0.75);
	color: #fff;
	padding: 10px 20px;
	border-radius: 6px;
	z-index: 999999;
	font-size: 14px;
	animation: fadein 0.3s, fadeout 0.3s 2.5s;
}
@keyframes fadein {from {opacity:0;} to {opacity:1;}}
@keyframes fadeout {from {opacity:1;} to {opacity:0;}}

/* 灯箱完善样式 */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.85);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
}
.lightbox-content {
	position: relative;
	max-width: 90%;
	text-align: center;
}
.lightbox-content img {
    max-width: 90%;
    max-height: 85vh;
}
.lightbox-close {
	position: fixed;
	top: 20px;
	right: 30px;
	font-size: 36px;
	color: #fff;
	cursor: pointer;
	background: rgba(0,0,0,0.3);
	width: 50px;
	height: 50px;
	line-height: 50px;
	border-radius: 50%;
	text-align: center;
}

.foot .list .seo-optimize span, .seo-optimize{
    line-height: 200%;
    font-size: 14px;
}
.seo-optimize {
    padding: 20px 0;
    margin-top: 30px;
}
.foot .list .address_seo {
    width: 30%;
    margin-right: 5%;
    color: #fff;
}

/* 移动端适配优化 */
@media (max-width: 768px) {
	.features-grid,
	.guarantee-items,
	.contact-info {
		grid-template-columns: 1fr;
	}
	.contact-buttons {
		flex-direction: column;
	}
	.btn-call, .btn-message, .btn-qq {
		width: 100%;
		margin-bottom: 10px;
	}
	.quick-info-item {
		display: block;
		margin-right: 0;
	}
	.gallery-item {
		flex: 0 0 100%;
	}
	.price-table th,.price-table td { 
		padding:6px 8px; 
		font-size:12px; 
	}
	.lightbox-close { 
		width:40px; 
		height:40px; 
		line-height:40px; 
		font-size:24px; 
	}
}
.pic.img {
    height: auto !important;
}
/* 修复浏览器懒加载图片警告 */
img[loading="lazy"] {
  content-visibility: auto;
}
html {
  height: 100%;
}
body {
  min-height: 100%;
  margin: 0;
}
/* 清除最底部浮动残留，不影响其他 */
.foot::after, .link::after {
  content: '';
  display: block;
  clear: both;
}
/* 快速联系：框自适应铺满，仅内容居中，大屏不靠左，不影响下方元素 */
.contact-sidebar {
  padding: 12px 15px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
  margin: 0 0 10px 0;
  width: 100%;
  box-sizing: border-box;
  /* 只做内容居中，不限制盒子宽度 */
  text-align: center;
}

.contact-sidebar h3 {
  font-size: 16px;
  color: #333;
  margin: 0 0 12px 0;
  padding-bottom: 8px;
  border-bottom: 1px dashed #eee;
}

.contact-info p {
  margin: 6px 0;
  color: #666;
  font-size: 14px;
}

.contact-info .wx-tip {
  color: #999;
  font-size: 13px;
  margin: 4px 0 12px;
}

.sidebar-phone {
  display: block;
  font-size: 22px;
  font-weight: bold;
  color: #e64340;
  text-decoration: none;
  margin: 8px 0;
  letter-spacing: 2px;
}

.btn-call-small {
  display: inline-block;
  padding: 0 30px;
  line-height: 38px;
  background: #ff6700;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  font-size: 15px;
  transition: all 0.2s;
}

.btn-call-small:hover {
  background: #e05a00;
}
/* =======================================
  立即咨询采购模块 - 美化版
======================================= */
.contact-box-styled {
  margin: 40px 0;
  border-radius: 16px;
  background: linear-gradient(135deg, #2dc26f 0%, #26a761 100%);
  box-shadow: 0 8px 28px rgba(45, 194, 111, 0.25);
  overflow: hidden;
  position: relative;
}
.contact-box-styled::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,%3Csvg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"%3E%3Cg fill="none" fill-rule="evenodd"%3E%3Cg fill="%23ffffff" fill-opacity="0.05"%3E%3Cpath d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/%3E%3C/g%3E%3C/g%3E%3C/svg%3E');
  opacity: 0.1;
  z-index: 1;
}
.contact-inner {
  padding: 30px;
  position: relative;
  z-index: 2;
}
.contact-title {
  text-align: center;
  color: #fff;
  margin-bottom: 24px;
}
.contact-title h3 {
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 6px 0;
  color: #fff;
}
.contact-title p {
  font-size: 14px;
  opacity: 0.92;
  margin: 0;
}
.contact-info-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  margin-bottom: 28px;
}
.info-item {
  display: flex;
  align-items: flex-start;
  background: rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 16px;
  backdrop-filter: blur(4px);
}
.info-icon {
  font-size: 22px;
  margin-right: 14px;
  line-height: 1.2;
  padding-top: 2px;
}
.info-text {
  flex: 1;
  color: #fff;
}
.info-text span {
  display: block;
  font-size: 13px;
  opacity: 0.85;
  margin-bottom: 4px;
}
.info-text p {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
}
.phone-num {
  display: block;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  line-height: 1.2;
  margin: 2px 0 4px;
}
.info-text small {
  font-size: 12px;
  opacity: 0.8;
}
.contact-buttons-group {
  text-align: center;
}
.btn-call-now {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #26a761;
  font-size: 16px;
  font-weight: 700;
  padding: 14px 36px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
}
.btn-call-now i {
  margin-right: 8px;
  font-style: normal;
}
.btn-call-now:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.2);
  background: #f9f9f9;
}

/* 移动端适配 */
@media (max-width:768px){
  .contact-inner {
    padding: 24px 20px;
  }
  .contact-title h3 {
    font-size: 21px;
  }
  .contact-info-list {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .btn-call-now {
    width: 100%;
    box-sizing: border-box;
    padding: 13px 20px;
  }
}