﻿/*通用类*/
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	margin: 0 auto;
	font-size: 14px;
	font-family: PingFang SC, Hiragino Sans GB, Microsoft YaHei UI, Microsoft YaHei, Source Han Sans CN, sans-serif;
	background: #fff;
	text-align: justify;
	color: #010000;
	position: relative;
	line-height: 1.5;
}

h1,
h2,
h3 {
	font-weight: 500;
}

img {
	border: none;
}

a {
	cursor: pointer;
	color: #333;
	text-decoration: none !important;
	outline: none;
}

a:hover {
	color: #006bb7;
}

ul {
	list-style-type: none;
}

em {
	font-style: normal;
}

.lt {
	float: left;
}

.rt {
	float: right;
}

input.sub,
label {
	border: none;
	cursor: pointer;
}

input,
textarea {
	font-family: PingFang SC, Hiragino Sans GB, Microsoft YaHei UI, Microsoft YaHei, Source Han Sans CN, sans-serif;
	outline: none;
}

table {
	border-collapse: collapse;
}

table td,
table th {
	padding: 0;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
	color: #ccc;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
	/* Mozilla Firefox 19+ */
	color: #ccc;
}

input:-moz-placeholder,
textarea:-moz-placeholder {
	/* Mozilla Firefox 4 to 18 */
	color: #ccc;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
	/* Internet Explorer 10-11 */
	color: #ccc;
}

div.clear {
	font: 0px Arial;
	line-height: 0;
	height: 0;
	overflow: hidden;
	clear: both;
}

.clearfix::after {
	content: "";
	display: block;
	clear: both;
}

/* 增强版清除浮动 */
.clearfix:before,
.clearfix:after {
	content: " ";
	display: table;
}

.clearfix:after {
	clear: both;
}

/* 兼容IE */


/* 主代码开始开始*/

/* 全局样式 */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
	line-height: 1.5;
}

/* 头部样式 */
.header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
	background-color: #fff;
	transition: all 0.3s ease;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.header-container {
	max-width: 1440px;
	margin: 0 auto;
	padding: 0px 40px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.logo {
	flex-shrink: 0;
}

.logo img {
	height: 60px;
	vertical-align: middle;
}

/* PC端导航样式 */
.nav-pc {
	display: flex;
	align-items: center;
	margin-left: 40px;
}

.nav-item {
	position: relative;
	margin: 0 20px;
}

.nav-link {
	color: #333;
	text-decoration: none;
	font-size: 18px;
	font-weight: 400;
	padding: 28px 0;
	display: block;
	position: relative;
	transition: color 0.3s ease;
	white-space: nowrap;
}

/* 带有二级菜单的链接添加箭头 */
.nav-link.has-submenu::after {
	content: "";
	display: inline-block;
	margin-left: 8px;
	width: 0;
	height: 0;
	border-left: 4px solid transparent;
	border-right: 4px solid transparent;
	border-top: 5px solid #666;
	transition: transform 0.3s ease, border-top-color 0.3s ease;
	vertical-align: middle;
}

.nav-item:hover .nav-link.has-submenu::after {
	transform: rotate(180deg);
	border-top-color: #4CAF50;
}

.nav-link:hover {
	color: #4CAF50;
}

.nav-link::before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 3px;
	background-color: #4CAF50;
	transition: width 0.3s ease;
}

.nav-link:hover::before {
	width: 100%;
}

/* 子菜单样式 */
.sub-menu {
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%) translateY(10px);
	min-width: 280px;
	width: max-content;
	max-width: 500px;
	background-color: #4CAF50;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
	padding: 5px 0;
	border-radius: 0;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
	z-index: 100;
	margin-top: 0;
}

/* 二级菜单上方的小箭头 */
.sub-menu::before {
	content: "";
	position: absolute;
	top: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 0;
	height: 0;
	border-left: 10px solid transparent;
	border-right: 10px solid transparent;
	border-bottom: 10px solid #4CAF50;
}

.nav-item:hover .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateX(-50%) translateY(0);
}

.sub-menu-item {
	list-style: none;
}

.sub-menu-link {
	display: block;
	color: #fff;
	text-decoration: none;
	padding: 14px 35px;
	transition: all 0.3s ease;
	font-size: 16px;
	white-space: nowrap;
	line-height: 1.6;
}

.sub-menu-link:hover {
	background-color: rgba(255, 255, 255, 0.15);
	color: #fff;
	padding-left: 40px;
}

/* 移动端菜单按钮 */
.menu-toggle {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	width: 30px;
	height: 24px;
	position: relative;
	z-index: 1001;
}

.menu-toggle span {
	display: block;
	position: absolute;
	height: 3px;
	width: 100%;
	background: #333;
	border-radius: 3px;
	opacity: 1;
	left: 0;
	transform: rotate(0deg);
	transition: .25s ease-in-out;
}

.menu-toggle span:nth-child(1) {
	top: 0px;
}

.menu-toggle span:nth-child(2),
.menu-toggle span:nth-child(3) {
	top: 10px;
}

.menu-toggle span:nth-child(4) {
	top: 20px;
}

/* Swiper轮播区域样式 */
.banner-swiper {
	position: relative;
	width: 100%;
	margin-top: 80px;
}

.banner-swiper-container {
	width: 100%;
	height: 600px;
	position: relative;
}

.swiper-slide {
	position: relative;
	width: 100%;
	height: 100%;
}

.slide-image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

/* PC端显示PC图片，隐藏手机图片 */
.slide-image-pc {
	display: block;
}

.slide-image-mobile {
	display: none;
}

.slide-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.slide-content {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
	display: flex;
	align-items: center;
}

.slide-container {
	max-width: 1440px;
	margin: 0 auto;
	padding: 0 200px;
	width: 100%;
}

.slide-info {
	margin-bottom: 30px;
	max-width: 600px;
}

.slide-info-item {
	font-size: 16px;
	color: #333;
	margin-bottom: 10px;
	line-height: 1.8;
}

.info-label {
	font-weight: 700;
	color: #000;
	display: inline-block;
	min-width: 150px;
}

.slide-title {
	font-size: 32px;
	font-weight: 400;
	color: #333;
	margin-bottom: 30px;
	line-height: 1.5;
	max-width: 600px;
	text-align: left;
}

.slide-description {
	font-size: 16px;
	color: #666;
	margin-bottom: 35px;
	line-height: 1.8;
	max-width: 600px;
	font-weight: 300;
}

.slide-btn {
	display: inline-block;
	padding: 12px 35px;
	background: #4CAF50;
	color: #fff;
	font-size: 15px;
	font-weight: 500;
	text-decoration: none;
	border-radius: 3px;
	transition: all 0.3s ease;
	text-transform: capitalize;
	letter-spacing: 0.5px;
}

.slide-btn:hover {
	background: #45a049;
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(76, 175, 80, 0.4);
	color: #fff;
}

/* Swiper导航按钮样式 */
.banner-swiper-button-prev,
.banner-swiper-button-next {
	width: 50px;
	height: 50px;
	background: rgba(0, 0, 0, 0.5);
	border-radius: 50%;
	transition: all 0.3s ease;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 10;
	cursor: pointer;
}

.banner-swiper-button-prev {
	left: calc((100% - 1440px) / 2 + 40px);
}

.banner-swiper-button-next {
	right: calc((100% - 1440px) / 2 + 40px);
}

/* 当屏幕小于1440px时，箭头距离边缘40px */
@media only screen and (max-width: 1440px) {
	.banner-swiper-button-prev {
		left: 40px;
	}

	.banner-swiper-button-next {
		right: 40px;
	}
}

.banner-swiper-button-prev:hover,
.banner-swiper-button-next:hover {
	background: #4CAF50;
}

/* 用CSS绘制箭头 */
.banner-swiper-button-prev::after,
.banner-swiper-button-next::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 12px;
	height: 12px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
}

.banner-swiper-button-prev::after {
	transform: translate(-30%, -50%) rotate(-135deg);
}

.banner-swiper-button-next::after {
	transform: translate(-70%, -50%) rotate(45deg);
}

.banner-swiper-button-prev.swiper-button-disabled,
.banner-swiper-button-next.swiper-button-disabled {
	opacity: 0.35;
	cursor: auto;
	pointer-events: none;
}

/* Swiper分页器样式 */
.banner-swiper-pagination {
	bottom: 30px !important;
}

.banner-swiper-pagination .swiper-pagination-bullet {
	width: 12px;
	height: 12px;
	background: rgba(0, 0, 0, 0.5);
	opacity: 1;
	transition: all 0.3s ease;
}

.banner-swiper-pagination .swiper-pagination-bullet-active {
	background: #4CAF50;
	width: 30px;
	border-radius: 6px;
}

/* 移动端导航样式 */
.nav-mobile {
	position: fixed;
	top: 0;
	right: -100%;
	width: 80%;
	max-width: 400px;
	height: 100vh;
	background-color: #fff;
	box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
	transition: right 0.3s ease;
	z-index: 1000;
	overflow-y: auto;
	padding: 70px 0 30px;
}

.nav-mobile.active {
	right: 0;
}

.nav-mobile-close {
	position: absolute;
	top: 20px;
	right: 20px;
	background: none;
	border: none;
	font-size: 24px;
	cursor: pointer;
	color: #333;
}

.nav-mobile-list {
	list-style: none;
}

.nav-mobile-item {
	border-bottom: 1px solid #eee;
}

/* 移动端菜单行布局 */
.mobile-menu-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
}

/* 移动端展开按钮样式 */
.mobile-expand-btn {
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	color: #333;
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
	z-index: 10;
	cursor: pointer;
	background-color: rgba(255, 255, 255, 0.5);
	border-radius: 4px;
}

.nav-mobile-link {
	display: block;
	padding: 15px 20px;
	color: #333;
	text-decoration: none;
	font-size: 16px;
	width: calc(100% - 50px);
}

.nav-mobile-link.has-children::after {
	content: "";
}

.nav-mobile-link.active.has-children::after {
	content: "";
}

.nav-mobile-sublist {
	display: none;
	list-style: none;
	background-color: #f9f9f9;
}

.nav-mobile-sublist.active {
	display: block;
}

.nav-mobile-subitem {
	border-top: 1px solid #eee;
}

.nav-mobile-sublink {
	display: block;
	padding: 12px 20px 12px 40px;
	color: #666;
	text-decoration: none;
}

/* 遮罩层 */
.overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 999;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
}

.overlay.active {
	opacity: 1;
	visibility: visible;
}

.submenu-toggle {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	font-size: 20px;
	color: #999;
	cursor: pointer;
	margin-left: auto;
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
}

/* 右侧功能区 */
.header-right {
	display: flex;
	align-items: center;
	gap: 25px;
	flex-shrink: 0;
	margin-left: auto;
}

/* 搜索按钮样式 */
.sousuo {
	position: relative;
}

.search-icon {
	width: 22px;
	height: 22px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.3s ease;
}

.search-icon:hover {
	transform: scale(1.1);
}

.search-btn {
	display: block;
	width: 100%;
	height: 100%;
	background: url('../images/search.svg') no-repeat center;
	background-size: contain;
	filter: brightness(0) saturate(100%) opacity(0.7);
	transition: filter 0.3s ease;
}

.search-icon:hover .search-btn {
	filter: brightness(0) saturate(100%) invert(48%) sepia(79%) saturate(2476%) hue-rotate(86deg) brightness(95%) contrast(80%);
}

.search-form {
	position: absolute;
	top: calc(100% + 20px);
	right: 0;
	width: 350px;
	background: #fff;
	border-radius: 4px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
	padding: 25px;
	display: none;
	z-index: 1001;
	border: 1px solid #e5e5e5;
}

.search-form::before {
	content: "";
	position: absolute;
	top: -8px;
	right: 15px;
	width: 0;
	height: 0;
	border-left: 8px solid transparent;
	border-right: 8px solid transparent;
	border-bottom: 8px solid #fff;
}

.search-form.active {
	display: block;
	animation: fadeInDown 0.3s ease;
}

@keyframes fadeInDown {
	from {
		opacity: 0;
		transform: translateY(-10px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.search-form input {
	width: 100%;
	height: 44px;
	border: 1px solid #ddd;
	border-radius: 4px;
	padding: 0 15px;
	font-size: 15px;
	margin-bottom: 12px;
	transition: border-color 0.3s ease;
}

.search-form input:focus {
	border-color: #4CAF50;
	outline: none;
}

.search-form button {
	width: 100%;
	height: 44px;
	background: #4CAF50;
	color: #fff;
	border: none;
	border-radius: 4px;
	padding: 0 20px;
	cursor: pointer;
	font-size: 15px;
	font-weight: 500;
	transition: background 0.3s ease;
}

.search-form button:hover {
	background: #45a049;
}

.search-close {
	position: absolute;
	top: 10px;
	right: 10px;
	font-size: 24px;
	color: #999;
	cursor: pointer;
	line-height: 1;
	transition: color 0.3s ease;
	width: 24px;
	height: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.search-close:hover {
	color: #333;
}

/* 语言切换样式 */
.yuyan_tab {
	position: relative;
	z-index: 1002;
}

.language-current {
	display: flex;
	align-items: center;
	cursor: pointer;
	padding: 10px 16px;
	border-radius: 4px;
	transition: all 0.3s ease;
	border: 1px solid #ddd;
	background: #fff;
	position: relative;
	z-index: 1003;
}

.language-current:hover {
	border-color: #4CAF50;
	background: #f9f9f9;
}

.language-current img {
	width: 20px;
	height: 20px;
	margin-right: 8px;
	object-fit: contain;
}

.language-current span {
	font-size: 15px;
	color: #333;
	white-space: nowrap;
	font-weight: 400;
}

.language-list {
	position: absolute;
	top: 100%;
	right: 0;
	min-width: 160px;
	background: #fff;
	border-radius: 4px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
	padding: 10px 0;
	opacity: 0;
	visibility: hidden;
	border: 1px solid #e5e5e5;
	z-index: 1004;
	transition: opacity 0.3s ease, visibility 0.3s ease;
	margin-top: 5px;
}

.language-list::before {
	content: "";
	position: absolute;
	top: -8px;
	right: 20px;
	width: 0;
	height: 0;
	border-left: 8px solid transparent;
	border-right: 8px solid transparent;
	border-bottom: 8px solid #fff;
	z-index: 1005;
}

.yuyan_tab:hover .language-list {
	opacity: 1;
	visibility: visible;
}

.language-list li {
	list-style: none;
}

.language-list li a {
	display: flex;
	align-items: center;
	padding: 12px 20px;
	color: #666;
	text-decoration: none;
	transition: all 0.3s ease;
	font-size: 15px;
}

.language-list li a:hover {
	background: #f8f9fa;
	color: #4CAF50;
}

.language-list li a img {
	width: 20px;
	height: 20px;
	margin-right: 12px;
	object-fit: contain;
}

/* 移动端搜索和语言切换 */
.mobile-functions {
	padding: 20px;
	border-top: 1px solid #eee;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.mobile-search {
	position: relative;
	flex: 1;
	margin-right: 15px;
}

.mobile-search-icon {
	width: 24px;
	height: 24px;
	cursor: pointer;
}

.mobile-search-btn {
	display: block;
	width: 100%;
	height: 100%;
	background: url('../images/search.svg') no-repeat center;
	background-size: contain;
	filter: brightness(0) saturate(100%);
}

.mobile-search-form {
	position: absolute;
	top: 40px;
	left: 0;
	width: 100%;
	min-width: 280px;
	background: #fff;
	border-radius: 0;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	padding: 15px;
	display: none;
	z-index: 1001;
}

.mobile-search-form.active {
	display: block;
}

.mobile-search-form input {
	width: 100%;
	height: 40px;
	border: 1px solid #ddd;
	border-radius: 0;
	padding: 0 10px;
	margin-bottom: 10px;
	font-size: 14px;
}

.mobile-search-form button {
	width: 100%;
	height: 40px;
	background: #0066cc;
	color: #fff;
	border: none;
	border-radius: 0;
	padding: 0 15px;
	cursor: pointer;
	font-size: 14px;
}

.mobile-search-close {
	position: absolute;
	top: 5px;
	right: 5px;
	font-size: 20px;
	color: #999;
	cursor: pointer;
}

.mobile-language {
	position: relative;
}

.mobile-language-current {
	display: flex;
	align-items: center;
	cursor: pointer;
	padding: 8px 12px;
	border-radius: 0;
	transition: all 0.3s ease;
	border: 1px solid #ddd;
	background: #fff;
}

.mobile-language-current img {
	width: 18px;
	height: 18px;
	margin-right: 6px;
	object-fit: contain;
}

.mobile-language-current span {
	font-size: 14px;
	color: #333;
	white-space: nowrap;
}

.mobile-language-list {
	position: absolute;
	top: 50px;
	right: 0;
	min-width: 140px;
	background: #fff;
	border-radius: 0;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	padding: 8px 0;
	display: none;
	z-index: 1001;
}

.mobile-language-list.active {
	display: block;
}

.mobile-language-list li {
	list-style: none;
}

.mobile-language-list li a {
	display: flex;
	align-items: center;
	padding: 10px 15px;
	color: #666;
	text-decoration: none;
	transition: all 0.3s ease;
	font-size: 14px;
}

.mobile-language-list li a:hover {
	background: #f8f9fa;
	color: #0066cc;
}

.mobile-language-list li a img {
	width: 18px;
	height: 18px;
	margin-right: 10px;
	object-fit: contain;
}


@media only screen and (max-width:1200px) {
	.header-container {
		max-width: 960px;
		padding: 15px 30px;
	}

	.nav-item {
		margin: 0 15px;
	}

	.nav-link {
		font-size: 14px;
		padding: 25px 0;
	}

	.header-right {
		gap: 15px;
	}

	.swiper-button-prev {
		left: calc((100% - 960px) / 2 + 30px);
	}

	.swiper-button-next {
		right: calc((100% - 960px) / 2 + 30px);
	}
}

@media only screen and (max-width: 1000px) {
	.header-container {
		max-width: 720px;
		padding: 15px 20px;
	}

	.nav-item {
		margin: 0 10px;
	}

	.nav-link {
		font-size: 13px;
		padding: 22px 0;
	}

	.header-right {
		gap: 12px;
	}

	.language-current span {
		display: none;
	}

	.search-form {
		width: 280px;
	}

	.swiper-button-prev {
		left: calc((100% - 720px) / 2 + 20px);
	}

	.swiper-button-next {
		right: calc((100% - 720px) / 2 + 20px);
	}
}

@media only screen and (max-width: 750px) {
	.nav-pc {
		display: none;
	}

	.header-right {
		display: none;
	}

	.menu-toggle {
		display: block;
		margin-left: auto;
	}

	.header-container {
		padding: 5px 15px;
	}

	.logo img {
		height: 40px;
	}

	.header {
		position: fixed;
	}

	.banner-swiper {
		margin-top: 60px;
	}

	.banner-swiper-container {
		height: 450px;
	}

	/* 隐藏PC端的图片和内容 */
	.slide-image-pc {
		display: none;
	}

	.slide-content {
		display: none;
	}

	/* 显示手机端图片 */
	.slide-image-mobile {
		display: block;
		width: 100%;
		height: 100%;
	}

	.slide-image-mobile a {
		display: block;
		width: 100%;
		height: 100%;
	}

	.slide-image-mobile img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}

	.slide-container {
		padding: 0 20px;
	}

	.slide-info {
		max-width: 100%;
	}

	.slide-info-item {
		font-size: 13px;
		margin-bottom: 6px;
	}

	.info-label {
		min-width: 120px;
		font-size: 13px;
	}

	.slide-title {
		font-size: 20px;
		margin-bottom: 15px;
		max-width: 100%;
	}

	.slide-description {
		font-size: 13px;
		margin-bottom: 20px;
		max-width: 100%;
	}

	.slide-btn {
		padding: 10px 25px;
		font-size: 13px;
	}

	.banner-swiper-button-prev,
	.banner-swiper-button-next {
		width: 40px;
		height: 40px;
		background: rgba(0, 0, 0, 0.75);
	}

	.banner-swiper-button-prev {
		left: 15px;
	}

	.banner-swiper-button-next {
		right: 15px;
	}

	.banner-swiper-button-prev::after,
	.banner-swiper-button-next::after {
		width: 11px;
		height: 11px;
		border-width: 2.5px;
	}

	.banner-swiper-pagination {
		bottom: 15px !important;
	}

	.banner-swiper-pagination .swiper-pagination-bullet {
		width: 9px;
		height: 9px;
		background: rgba(0, 0, 0, 0.7);
	}

	.banner-swiper-pagination .swiper-pagination-bullet-active {
		width: 24px;
		background: #4CAF50;
	}



	.slide-title {
		font-size: 22px !important;
		margin-bottom: 12px !important;
		color: #222;
	}

	.slide-description {
		font-size: 14px !important;
		margin-bottom: 18px !important;
		color: #555;
		line-height: 1.6;
	}

	.slide-btn {
		padding: 11px 28px !important;
		font-size: 14px !important;
		font-weight: 600;
	}
}



/* Why Choose Us 区域样式 */
.fp_box_1 {
	padding: 80px 0;
	background: #f8f8f8;
}

.fp_box_1 .container {
	max-width: 1440px;
	margin: 0 auto;
	padding: 0 40px;
}

.why-choose-us {
	display: flex;
	align-items: center;
	gap: 80px;
}

.why-content {
	flex: 0 0 420px;
}

.why-title {
	font-size: 40px;
	font-weight: 700;
	color: #000;
	margin-bottom: 30px;
	line-height: 1.2;
}

.why-text {
	font-size: 14px;
	color: #666;
	line-height: 1.8;
	margin-bottom: 18px;
	text-align: left;
}

.why-btn {
	display: inline-block;
	padding: 10px 35px;
	background: transparent;
	color: #000;
	font-size: 13px;
	font-weight: 500;
	text-decoration: none;
	border: 1px solid #000;
	border-radius: 0;
	transition: all 0.3s ease;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-top: 10px;
}

.why-btn:hover {
	background: #4CAF50;
	border-color: #4CAF50;
	color: #fff;
}

.why-video {
	flex: 1;
}

.video-wrapper {
	position: relative;
	width: 100%;
	padding-bottom: 56.25%;
	overflow: hidden;
	cursor: pointer;
	background: #000;
}

.video-poster {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: opacity 0.3s ease;
}

.video-player {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.video-play-btn {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 70px;
	height: 70px;
	background: rgba(255, 255, 255, 0.95);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	z-index: 2;
}

.video-wrapper:hover .video-play-btn {
	background: rgba(255, 255, 255, 1);
	transform: translate(-50%, -50%) scale(1.1);
}

.play-icon {
	width: 0;
	height: 0;
	border-left: 18px solid #000;
	border-top: 11px solid transparent;
	border-bottom: 11px solid transparent;
	margin-left: 4px;
}

/* Why Choose Us 响应式 */
@media only screen and (max-width: 1000px) {
	.fp_box_1 {
		padding: 60px 0;
	}

	.fp_box_1 .container {
		padding: 0 30px;
	}

	.why-choose-us {
		gap: 40px;
	}

	.why-title {
		font-size: 32px;
	}

	.why-text {
		font-size: 14px;
	}
}

@media only screen and (max-width: 750px) {
	.fp_box_1 {
		padding: 40px 0;
	}

	.fp_box_1 .container {
		padding: 0 20px;
	}

	.why-choose-us {
		flex-direction: column;
		gap: 30px;
	}

	.why-content {
		max-width: 100%;
	}

	.why-title {
		font-size: 28px;
		margin-bottom: 20px;
	}

	.why-text {
		font-size: 14px;
		margin-bottom: 15px;
	}

	.why-btn {
		padding: 10px 30px;
		font-size: 13px;
	}

	.why-video {
		max-width: 100%;
		width: 100%;
	}

	.video-play-btn {
		width: 60px;
		height: 60px;
	}

	.play-icon {
		border-left: 15px solid #000;
		border-top: 9px solid transparent;
		border-bottom: 9px solid transparent;
	}
}


/* 数据展示区域样式 */
.fp_box_2 {
	height: 266px;
	background: url('../images/aaaa.webp') center center no-repeat;
	background-size: cover;
	background-attachment: fixed;
	position: relative;
	display: flex;
	align-items: center;
}



.fp_box_2 .container {
	max-width: 1440px;
	margin: 0 auto;
	padding: 0 40px;
	position: relative;
	z-index: 2;
	width: 100%;
}

.data-stats {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 40px;
}

.stat-item {
	flex: 1;
	text-align: center;
	color: #fff;
}

.stat-icon {
	margin-bottom: 20px;
}

.stat-icon img {
	width: 60px;
	height: 60px;
	object-fit: contain;
}

.stat-number {
	font-size: 56px;
	font-weight: 700;
	color: #4CAF50;
	line-height: 1;
	margin-bottom: 15px;
}

.stat-label {
	font-size: 16px;
	color: #fff;
	font-weight: 400;
	line-height: 1.4;
}

/* 数据展示区域响应式 */
@media only screen and (max-width: 1000px) {
	.fp_box_2 {
		height: auto;
		padding: 50px 0;
	}

	.fp_box_2 .container {
		padding: 0 30px;
	}

	.data-stats {
		gap: 30px;
	}

	.stat-icon img {
		width: 50px;
		height: 50px;
	}

	.stat-number {
		font-size: 42px;
	}

	.stat-label {
		font-size: 14px;
	}
}

@media only screen and (max-width: 750px) {
	.fp_box_2 {
		padding: 40px 0;
		background-attachment: scroll;
	}

	.fp_box_2 .container {
		padding: 0 20px;
	}

	.data-stats {
		flex-wrap: wrap;
		gap: 30px;
	}

	.stat-item {
		flex: 0 0 calc(50% - 15px);
	}

	.stat-icon {
		margin-bottom: 15px;
	}

	.stat-icon img {
		width: 45px;
		height: 45px;
	}

	.stat-number {
		font-size: 36px;
		margin-bottom: 10px;
	}

	.stat-label {
		font-size: 13px;
	}
}


/* 产品展示区域样式 */
.fp_box_3 {
	padding: 80px 0;
	background: #fff;
}

.fp_box_3 .container {
	max-width: 1440px;
	margin: 0 auto;
	padding: 0 40px;
}

.section-title {
	font-size: 36px;
	font-weight: 700;
	color: #000;
	text-align: center;
	margin-bottom: 60px;
	line-height: 1.2;
}

.fp_box_3 .swiper-container {
	position: relative;
	width: 100%;

}

.fp_box_3 .swiper-slide {
	width: auto;
}

.fp_box_3 .product-card {
	background: #f5f5f5;
	overflow: hidden;
	height: 100%;
	display: flex;
	flex-direction: column;
}

.fp_box_3 .product-image {
	width: 100%;
	height: 300px;
	overflow: hidden;
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
}

.fp_box_3 .product-image a {
	display: block;
	width: 100%;
	height: 100%;
}

.fp_box_3 .product-image img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	transition: transform 0.3s ease;
}

.fp_box_3 .product-card:hover .product-image img {
	transform: scale(1.1);
}

.fp_box_3 .product-info {
	padding: 25px 20px;
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	background: #f5f5f5;
}

.fp_box_3 .product-title {
	font-size: 16px;
	color: #333;
	line-height: 1.5;
	margin-bottom: 20px;
	min-height: 48px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	font-weight: 400;
}

.fp_box_3 .product-more {
	color: #4CAF50;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 5px;
	transition: all 0.3s ease;
}

.fp_box_3 .product-more:hover {
	color: #45a049;
	gap: 10px;
}

.fp_box_3 .product-more .arrow {
	font-size: 16px;
	transition: transform 0.3s ease;
}

.fp_box_3 .product-more:hover .arrow {
	transform: translateX(5px);
}

/* 产品轮播箭头 */
.fp_box_3 .swiper-button-next,
.fp_box_3 .swiper-button-prev {
	width: 45px;
	height: 45px;
	background: #fff;
	border: 1px solid #ddd;
	border-radius: 50%;
	transition: all 0.3s ease;
	margin-top: -22.5px;
}

.fp_box_3 .swiper-button-next {
	right: 0;
}

.fp_box_3 .swiper-button-prev {
	left: 0;
}

.fp_box_3 .swiper-button-next:hover,
.fp_box_3 .swiper-button-prev:hover {
	background: #4CAF50;
	border-color: #4CAF50;
}

.fp_box_3 .swiper-button-next::after,
.fp_box_3 .swiper-button-prev::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 10px;
	height: 10px;
	border-top: 2px solid #333;
	border-right: 2px solid #333;
}

.fp_box_3 .swiper-button-prev::after {
	transform: translate(-30%, -50%) rotate(-135deg);
}

.fp_box_3 .swiper-button-next::after {
	transform: translate(-70%, -50%) rotate(45deg);
}

.fp_box_3 .swiper-button-next:hover::after,
.fp_box_3 .swiper-button-prev:hover::after {
	border-color: #fff;
}

/* 产品展示响应式 */
@media only screen and (max-width: 1000px) {
	.fp_box_3 {
		padding: 60px 0;
	}

	.fp_box_3 .container {
		padding: 0 30px;
	}

	.section-title {
		font-size: 32px;
		margin-bottom: 40px;
	}



	.product-image {
		height: 250px;
	}
}

@media only screen and (max-width: 750px) {
	.fp_box_3 {
		padding: 40px 0;
	}

	.fp_box_3 .container {
		padding: 0 20px;
	}

	.section-title {
		font-size: 26px;
		margin-bottom: 30px;
	}

	.fp_box_3 .product-image {
		height: 200px;
		padding: 15px;
	}

	.fp_box_3 .product-info {
		padding: 20px 15px;
	}

	.fp_box_3 .product-title {
		font-size: 14px;
		min-height: 42px;
		margin-bottom: 15px;
	}

	.fp_box_3 .product-more {
		font-size: 13px;
	}

	.fp_box_3 .swiper-button-next,
	.fp_box_3 .swiper-button-prev {
		width: 35px;
		height: 35px;
		margin-top: -17.5px;
	}

	.fp_box_3 .swiper-button-next::after,
	.fp_box_3 .swiper-button-prev::after {
		width: 8px;
		height: 8px;
	}
}


/* Applications区域样式 */
.fp_box_4 {
	padding: 80px 0;
	background: #f5f5f5;
}

.fp_box_4 .container {
	max-width: 1440px;
	margin: 0 auto;
	padding: 0 40px;
}

.applications-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 30px;
}

.application-item {
	overflow: hidden;
	border-radius: 12px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.application-item a {
	display: block;
	width: 100%;
	height: 100%;
	overflow: hidden;
	position: relative;
}

.application-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.3s ease;
}

.application-item:hover img {
	transform: scale(1.05);
}

.application-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.6);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.application-item:hover .application-overlay {
	opacity: 1;
}

.application-text {
	color: #fff;
	font-size: 28px;
	font-weight: 600;
	text-align: center;
	padding: 30px 40px;
	border: 3px solid #fff;
	border-radius: 8px;
	background: rgba(0, 0, 0, 0.3);
	transform: scale(0);
	transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.application-item:hover .application-text {
	transform: scale(1);
}

/* Applications响应式 */
@media only screen and (max-width: 1000px) {
	.fp_box_4 {
		padding: 60px 0;
	}

	.fp_box_4 .container {
		padding: 0 30px;
	}

	.applications-grid {
		gap: 25px;
	}
}

@media only screen and (max-width: 750px) {
	.fp_box_4 {
		padding: 40px 0;
	}

	.fp_box_4 .container {
		padding: 0 20px;
	}

	.applications-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.application-item {
		border-radius: 8px;
	}

	.application-text {
		font-size: 18px;
		padding: 20px 25px;
		border-width: 2px;
	}
}


/* Customized Service区域样式 */
.fp_box_5 {
	padding: 30px 0;
	background: url(../images/bg1.webp) no-repeat center;
	background-size: 100% 100%;
}

.fp_box_5 .container {
	max-width: 1440px;
	margin: 0 auto;
	padding: 0 40px;
}

.service-steps {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 30px;
}

.step-item {
	text-align: center;
}

.step-icon {
	width: 110px;
	height: 110px;
	margin: 0 auto 20px;
	border: 3px solid #4CAF50;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fff;
	transition: all 0.5s ease;
	transform-style: preserve-3d;
}

.step-item:hover .step-icon {
	transform: rotateY(360deg) scale(1.1);
	box-shadow: 0 5px 20px rgba(76, 175, 80, 0.3);
}

.step-icon img {
	width: 60px;
	height: 60px;
	object-fit: contain;
}

.step-number {
	font-size: 24px;
	font-weight: 700;
	color: #333;
	margin-bottom: 12px;
}

.step-title {
	font-size: 18px;
	font-weight: 700;
	color: #333;
	margin-bottom: 10px;
	line-height: 1.3;
}

.step-desc {
	font-size: 15px;
	color: #666;
	line-height: 1.5;
}

/* Customized Service响应式 */
@media only screen and (max-width: 1200px) {
	.fp_box_5 {
		padding: 60px 0;
	}

	.fp_box_5 .container {
		padding: 0 30px;
	}

	.service-steps {
		grid-template-columns: repeat(3, 1fr);
		gap: 40px 30px;
	}
}

@media only screen and (max-width: 750px) {
	.fp_box_5 {
		padding: 40px 0;
	}

	.fp_box_5 .container {
		padding: 0 20px;
	}

	.service-steps {
		grid-template-columns: repeat(2, 1fr);
		gap: 35px 20px;
	}

	.step-icon {
		width: 85px;
		height: 85px;
		margin-bottom: 15px;
		border-width: 2px;
	}

	.step-icon img {
		width: 48px;
		height: 48px;
	}

	.step-number {
		font-size: 20px;
		margin-bottom: 10px;
	}

	.step-title {
		font-size: 16px;
		margin-bottom: 8px;
	}

	.step-desc {
		font-size: 14px;
	}
}


/* Latest News区域样式 */
.fp_box_6 {
	padding: 80px 0;
	background: #fff;
}

.fp_box_6 .container {
	max-width: 1440px;
	margin: 0 auto;
	padding: 0 40px;
}

.news-layout {
	display: flex;
	gap: 30px;
	margin-bottom: 50px;
}

/* 左侧大图新闻 */
.news-main {
	flex: 0 0 48%;
}

.news-main-link {
	display: block;
	text-decoration: none;
	color: inherit;
}

.news-main-image {
	width: 100%;
	height: 400px;
	overflow: hidden;
	margin-bottom: 20px;
}

.news-main-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.news-main-link:hover .news-main-image img {
	transform: scale(1.05);
}

.news-main-title {
	font-size: 20px;
	font-weight: 700;
	color: #333;
	line-height: 1.4;
	margin-bottom: 15px;
	transition: color 0.3s ease;
}

.news-main-link:hover .news-main-title {
	color: #4CAF50;
}

.news-main-desc {
	font-size: 14px;
	color: #666;
	line-height: 1.8;
	margin-bottom: 15px;
	text-align: left;
}

.news-main-date {
	font-size: 15px;
	color: #000;
}

/* 右侧新闻列表 */
.news-list {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 25px;
}

.news-item-link {
	display: flex;
	gap: 20px;
	text-decoration: none;
	color: inherit;
}

.news-item-image {
	flex: 0 0 240px;
	height: 180px;
	overflow: hidden;
}

.news-item-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.news-item-link:hover .news-item-image img {
	transform: scale(1.05);
}

.news-item-content {
	flex: 1;
	display: flex;
	flex-direction: column;
}

.news-item-title {
	font-size: 16px;
	font-weight: 700;
	color: #333;
	line-height: 1.4;
	margin-bottom: 10px;
	transition: color 0.3s ease;
}

.news-item-link:hover .news-item-title {
	color: #4CAF50;
}

.news-item-desc {
	font-size: 14px;
	color: #666;
	line-height: 1.6;
	margin-bottom: 10px;
	flex: 1;
}

.news-item-date {
	font-size: 15px;
	color: #000;
}

/* 分页样式 */
.news-pagination {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 8px;
}

.page-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 36px;
	height: 36px;
	padding: 0 12px;
	border: 1px solid #ddd;
	background: #fff;
	color: #333;
	text-decoration: none;
	font-size: 14px;
	transition: all 0.3s ease;
}

.page-link:hover {
	border-color: #4CAF50;
	color: #4CAF50;
}

.page-link.active {
	background: #4CAF50;
	border-color: #4CAF50;
	color: #fff;
}

.page-dots {
	color: #999;
	padding: 0 5px;
}

/* Latest News响应式 */
@media only screen and (max-width: 1000px) {
	.fp_box_6 {
		padding: 60px 0;
	}

	.fp_box_6 .container {
		padding: 0 30px;
	}

	.news-layout {
		gap: 25px;
	}

	.news-main-image {
		height: 350px;
	}

	.news-item-image {
		flex: 0 0 200px;
		height: 150px;
	}
}

@media only screen and (max-width: 750px) {
	.fp_box_6 {
		padding: 40px 0;
	}

	.fp_box_6 .container {
		padding: 0 20px;
	}

	.news-layout {
		flex-direction: column;
		gap: 30px;
		margin-bottom: 40px;
	}

	.news-main {
		flex: 1;
	}

	.news-main-image {
		height: 250px;
	}

	.news-main-title {
		font-size: 18px;
	}

	.news-list {
		gap: 20px;
	}

	.news-item-link {
		gap: 15px;
	}

	.news-item-image {
		flex: 0 0 120px;
		height: 90px;
	}

	.news-item-title {
		font-size: 15px;
		text-align: left;
	}

	.news-item-desc {
		font-size: 13px;
		text-align: left;
	}

	.page-link {
		min-width: 32px;
		height: 32px;
		font-size: 13px;
	}
}


/* Footer样式 */
footer {
	background: #000;
	color: #fff;
	padding: 60px 0 0;
}

footer .container {
	max-width: 1440px;
	margin: 0 auto;
	padding: 0 40px;
}

.footer-content {
	display: grid;
	grid-template-columns: 1fr 1.5fr 1fr 1.2fr 1.3fr;
	gap: 40px;
	padding-bottom: 50px;
}

.footer-logo-col {
	display: flex;
	align-items: flex-start;
	justify-content: center;
}

.footer-logo {}

.footer-logo img {
	height: 150px;
	max-width: 100%;
	display: block;
	margin: 0 auto;
}

.footer-title {
	font-size: 16px;
	font-weight: 700;
	color: #4CAF50;
	margin-bottom: 25px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

/* 联系信息 */
.contact-list {
	list-style: none;
}

.contact-item {
	display: flex;
	gap: 10px;
	margin-bottom: 18px;
	font-size: 14px;
	line-height: 1.7;
	color: #ccc;
	text-align: left;
}

.contact-item i {
	flex-shrink: 0;
	width: 16px;
	height: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #4CAF50;
	font-style: normal;
	font-size: 14px;
	margin-top: 2px;
}

.contact-item i img {
	width: 15px;
}

/* 菜单链接 */
.footer-menu {
	list-style: none;
}

.footer-menu li {
	margin-bottom: 14px;
}

.footer-menu a {
	color: #ccc;
	text-decoration: none;
	font-size: 14px;
	transition: all 0.3s ease;
	display: inline-block;
	text-align: left;
}

.footer-menu a:hover {
	color: #4CAF50;
	padding-left: 8px;
}

/* 订阅框 */
.subscribe-box {
	display: flex;
	margin-bottom: 30px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.subscribe-box input {
	flex: 1;
	height: 48px;
	padding: 0 18px;
	border: none;
	border-radius: 0;
	font-size: 14px;
	background: #fff;
	color: #333;
}

.subscribe-box input::placeholder {
	color: #999;
}

.subscribe-box button {
	width: 130px;
	height: 48px;
	background: #4CAF50;
	color: #fff;
	border: none;
	cursor: pointer;
	font-size: 15px;
	font-weight: 600;
	transition: background 0.3s ease;
	text-transform: uppercase;
}

.subscribe-box button:hover {
	background: #45a049;
}

/* 社交图标 */
.social-icons {
	display: flex;
	gap: 15px;
}

.social-icon {
	width: 40px;
	height: 40px;
	border: 2px solid #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	text-decoration: none;
	font-size: 18px;
	font-weight: 600;
	transition: all 0.3s ease;
}

.social-icon:hover {
	background: #4CAF50;
	border-color: #4CAF50;
	transform: translateY(-5px);
}

/* 底部版权 */
.footer-bottom {
	background: #000;
	padding: 25px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.4);
}

.footer-bottom p {
	text-align: center;
	font-size: 13px;
	color: #999;
	margin: 0;
	line-height: 1.6;
}

.footer-bottom a {
	color: #4CAF50;
	text-decoration: none;
	transition: color 0.3s ease;
}

.footer-bottom a:hover {
	color: #45a049;
	text-decoration: underline;
}

/* Footer响应式 */
@media only screen and (max-width: 1200px) {
	footer .container {
		padding: 0 30px;
	}

	.footer-content {
		grid-template-columns: 1fr 1.3fr 1fr 1fr 1.2fr;
		gap: 30px;
	}

	.footer-logo img {
		height: 120px;
	}
}

@media only screen and (max-width: 1000px) {
	.footer-content {
		grid-template-columns: 1fr 1fr 1fr;
		gap: 35px 25px;
	}

	.footer-logo-col {
		grid-column: 1 / -1;
	}

	.footer-logo img {
		height: 100px;
	}
}

@media only screen and (max-width: 750px) {
	footer {
		padding: 40px 0 0;
	}

	footer .container {
		padding: 0 20px;
	}

	.footer-content {
		grid-template-columns: 1fr 1fr;
		gap: 30px 20px;
		padding-bottom: 40px;
	}

	.footer-logo-col {
		grid-column: 1 / -1;
	}

	.footer-contact {
		grid-column: 1 / -1;
	}

	/* QUICK LINK和PRODUCTS在同一排 */
	.footer-links {
		grid-column: 1;
	}

	.footer-products {
		grid-column: 2;
	}

	.footer-subscribe {
		grid-column: 1 / -1;
	}

	.footer-logo img {
		height: 80px;
	}



	.footer-title {
		font-size: 15px;
		margin-bottom: 18px;
	}

	.contact-item {
		font-size: 13px;
		margin-bottom: 15px;
	}

	.footer-menu li {
		margin-bottom: 12px;
	}

	.footer-menu a {
		font-size: 13px;
	}

	.subscribe-box {
		margin-bottom: 25px;
	}

	.subscribe-box input {
		height: 44px;
		font-size: 13px;
		padding: 0 15px;
	}

	.subscribe-box button {
		width: 110px;
		height: 44px;
		font-size: 13px;
	}

	.social-icons {
		gap: 12px;
	}

	.social-icon {
		width: 36px;
		height: 36px;
		font-size: 16px;
	}

	.footer-bottom {
		padding: 20px 0;
	}

	.footer-bottom p {
		font-size: 12px;
		line-height: 1.8;
	}
}


/* 手机端底部浮窗 */
.mobile-float-bar {
	display: none;
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	background: #4CAF50;
	z-index: 9999;
	box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

.mobile-float-bar {
	display: none;
	grid-template-columns: repeat(4, 1fr);
}

.float-item {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 12px 0;
	border-right: 1px solid rgba(255, 255, 255, 0.2);
	transition: background 0.3s ease;
}

.float-item:last-child {
	border-right: none;
}

.float-item:active {
	background: rgba(0, 0, 0, 0.1);
}

.float-item img {
	width: 32px;
	height: 32px;
	display: block;
}

/* 只在手机端显示 */
@media only screen and (max-width: 750px) {
	.mobile-float-bar {
		display: grid;
	}

	/* 给body添加底部padding，避免内容被浮窗遮挡 */
	body {
		padding-bottom: 56px;
	}
}

.banner_two {
	margin-top: 83px;
}


/* 面包屑导航样式 */
.two_nav {
	background: #f5f5f5;
	padding: 15px 0 0;
}

.two_nav .container {
	max-width: 1440px;
	margin: 0 auto;
	padding: 0 40px;
}

.breadcrumb {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	color: #666;
}

.breadcrumb-item {
	display: flex;
	align-items: center;
	gap: 8px;
	color: #999;
}

.home-icon {
	width: 16px;
	height: 16px;
	vertical-align: middle;
}

.breadcrumb-text {
	color: #999;
	font-size: 14px;
}

.breadcrumb-link {
	color: #4CAF50;
	text-decoration: none;
	transition: color 0.3s ease;
}

.breadcrumb-link:hover {
	color: #45a049;
	text-decoration: underline;
}

.breadcrumb-separator {
	color: #ccc;
	margin: 0 5px;
}

.breadcrumb-current {
	color: #333;
	font-weight: 500;
}

/* 面包屑响应式 */
@media only screen and (max-width: 1000px) {
	.two_nav .container {
		padding: 0 30px;
	}
}

@media only screen and (max-width: 750px) {
	.two_nav {
		padding: 12px 0 0;
	}

	.two_nav .container {
		padding: 0 20px;
	}

	.breadcrumb {
		font-size: 13px;
		gap: 6px;
	}

	.home-icon {
		width: 14px;
		height: 14px;
	}

	.breadcrumb-text {
		font-size: 13px;
	}

	.breadcrumb-link,
	.breadcrumb-current {
		display: inline-block;
		max-width: 4em;
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
		vertical-align: bottom;
	}

	.breadcrumb-separator {
		margin: 0 3px;
	}
}


/* 产品列表区域样式 */
.cp_list {
	padding: 50px 0;
	background: #fff;
}

.cp_list .container {
	max-width: 1440px;
	margin: 0 auto;
	padding: 0 40px;
	display: flex;
	gap: 40px;
}

/* 左侧产品列表 */
.products-main {
	flex: 1;
}

.products-title {
	font-size: 24px;
	font-weight: 700;
	color: #fff;
	background: #4CAF50;
	padding: 12px 20px;
	margin-bottom: 30px;
	margin-top: 0;
}

.products-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 30px;
	margin-bottom: 40px;
}

.product-item {
	background: #fff;
	border: 1px solid #999;
	transition: all 0.3s ease;
}

.product-item:hover {
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
	transform: translateY(-3px);
}

.product-link {
	display: block;
	text-decoration: none;
	color: inherit;
}

.product-img-wrap {
	position: relative;
	width: 100%;
	height: 280px;
	overflow: hidden;
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
}

.product-badge {
	position: absolute;
	top: 0;
	left: 0;
	background: #e74c3c;
	color: #fff;
	padding: 4px 12px;
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	z-index: 2;
	font-style: italic;
}

.product-quick-view {
	position: absolute;
	bottom: 10px;
	right: -40px;
	width: 35px;
	height: 35px;
	background: rgba(0, 0, 0, 0.8);
	border-radius: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: right 0.3s ease;
	z-index: 3;
	cursor: pointer;
}

.product-quick-view img {
	width: 18px;
	height: 18px;
	object-fit: contain;
}

.product-item:hover .product-quick-view {
	right: 10px;
}

.product-img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	transition: opacity 0.3s ease;
}

.product-img.hover {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	padding: 20px;
	opacity: 0;
}

.product-item:hover .product-img.hover {
	opacity: 1;
}

.product-item:hover .product-img.default {
	opacity: 0;
}

.product-name {
	font-size: 14px;
	color: #333;
	line-height: 1.6;
	padding: 15px;
	margin: 0;
	min-height: 70px;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	transition: color 0.3s ease;
}

.product-link:hover .product-name {
	color: #4CAF50;
}

/* 分页样式 */
.pagination {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 8px;
}

.page-num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 36px;
	height: 36px;
	padding: 0 12px;
	border: 1px solid #ddd;
	background: #fff;
	color: #333;
	text-decoration: none;
	font-size: 14px;
	transition: all 0.3s ease;
}

.page-num:hover,
.page-num.active {
	background: #4CAF50;
	border-color: #4CAF50;
	color: #fff;
}

.page-dots {
	color: #999;
	padding: 0 5px;
}

.page-next {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 36px;
	height: 36px;
	padding: 0 12px;
	border: 1px solid #ddd;
	background: #fff;
	color: #333;
	text-decoration: none;
	font-size: 14px;
	transition: all 0.3s ease;
}

.page-next:hover {
	background: #4CAF50;
	border-color: #4CAF50;
	color: #fff;
}

/* 右侧边栏 */
.products-sidebar {
	flex: 0 0 320px;
}

.sidebar-box {
	background: #fff;
	border: 1px solid #e5e5e5;
	margin-bottom: 30px;
}

.sidebar-title {
	font-size: 16px;
	font-weight: 700;
	color: #fff;
	background: #4CAF50;
	padding: 12px 20px;
	margin: 0;
}

.category-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.category-list li {
	border-bottom: 1px solid #999;
}



.category-list a {
	display: block;
	padding: 12px 20px;
	color: #666;
	text-decoration: none;
	font-size: 14px;
	transition: all 0.3s ease;
}

.category-list li:hover {
	background: #4CAF50;
}

.category-list li:hover a {
	color: #fff;
}

.hot-products-box {
	background: transparent;
	border: none;
}

.hot-products-title {
	background: transparent;
	color: #000;
	padding: 0 0 15px 0;
	font-size: 32px;
	font-weight: 700;
}

.hot-products-text {
	padding: 0;
	color: #000;
	font-size: 14px;
	line-height: 1.8;
	text-align: left;
}

/* 产品列表响应式 */
@media only screen and (max-width: 1200px) {
	.cp_list .container {
		padding: 0 30px;
		gap: 30px;
	}

	.products-sidebar {
		flex: 0 0 280px;
	}
}

@media only screen and (max-width: 1000px) {
	.cp_list .container {
		flex-direction: column;
	}

	.products-sidebar {
		flex: 1;
		max-width: 100%;
	}

	.products-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 25px;
	}

	.product-img-wrap {
		height: 240px;
	}
}

@media only screen and (max-width: 750px) {
	.cp_list {
		padding: 0;
		margin-top: -20px;
	}

	.banner_two {
		margin-top: 50px;
	}

	.banner_two img {
		height: 80px;
		display: block;
		object-fit: cover;
	}

	.cp_list .container {
		padding: 0 20px;
	}

	.products-title {
		font-size: 20px;
		padding: 10px 15px;
		margin-bottom: 20px;
	}

	.products-grid {
		grid-template-columns: 1fr;
		gap: 20px;
		margin-bottom: 30px;
	}

	.product-img-wrap {
		height: 220px;
		padding: 15px;
	}

	.product-name {
		font-size: 13px;
		padding: 12px;
		min-height: 60px;
	}

	.page-num,
	.page-next {
		min-width: 32px;
		height: 32px;
		font-size: 13px;
	}

	.sidebar-title {
		font-size: 15px;
		padding: 10px 15px;
	}

	.category-list a {
		padding: 10px 15px;
		font-size: 13px;
	}

	.hot-products-title {
		font-size: 22px;
		padding: 0 0 12px 0;
	}

	.hot-products-text {
		padding: 0;
		font-size: 15px;
	}
}


/* 产品详情区域样式 */
.cp_xiangqing {
	padding: 50px 0;
	background: #fff;
}

.cp_xiangqing .container {
	max-width: 1440px;
	margin: 0 auto;
	padding: 0 40px;
}

/* 左侧产品详情区域 - 70%宽度 */
.cp_xiangqing .product-detail-left {
	float: left;
	width: 68%;
	padding-right: 30px;
}

/* 右侧边栏 - 30%宽度 */
.cp_xiangqing .product-detail-right {
	float: right;
	width: 30%;
}

/* 图片轮播区域 */
.cp_xiangqing .product-gallery {
	float: left;
	width: 60%;
	padding-right: 20px;
	position: relative;
}

/* NEW标签 - 在图片区域右上角 */
.gallery-new-badge {
	position: absolute;
	top: 0;
	right: 20px;
	background: #4CAF50;
	color: #fff;
	padding: 8px 16px;
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	z-index: 10;
}

.gallery-main {
	width: 100%;
	height: 500px;
	margin-bottom: 15px;
	border: 1px solid #e5e5e5;
	background: #f9f9f9;
}

.gallery-main .swiper-slide {
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fff;
	padding: 20px;
}

.gallery-main .swiper-slide img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}

/* 缩略图容器 */
.gallery-thumbs-wrapper {
	position: relative;
	padding: 0 50px;
}

.gallery-thumbs {
	width: 100%;
	height: 100px;
}

.gallery-thumbs .swiper-slide {
	width: 100px;
	height: 100px;
	border: 2px solid #e5e5e5;
	cursor: pointer;
	opacity: 0.6;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fff;
	padding: 10px;
}

.gallery-thumbs .swiper-slide-active {
	border-color: #ff6600;
	opacity: 1;
}

.gallery-thumbs .swiper-slide:hover {
	opacity: 1;
	border-color: #ff6600;
}

.gallery-thumbs .swiper-slide img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}

/* 缩略图左右箭头 */
.thumb-prev-btn,
.thumb-next-btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 40px;
	height: 100px;
	background: rgba(0, 0, 0, 0.1);
	cursor: pointer;
	z-index: 10;
	transition: background 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
}

.thumb-prev-btn {
	left: 0;
}

.thumb-next-btn {
	right: 0;
}

.thumb-prev-btn:hover,
.thumb-next-btn:hover {
	background: rgba(0, 0, 0, 0.3);
}

/* CSS绘制箭头 */
.thumb-prev-btn::after,
.thumb-next-btn::after {
	content: '';
	width: 10px;
	height: 10px;
	border-top: 2px solid #666;
	border-right: 2px solid #666;
}

.thumb-prev-btn::after {
	transform: rotate(-135deg);
	margin-left: 3px;
}

.thumb-next-btn::after {
	transform: rotate(45deg);
	margin-right: 3px;
}

/* 产品信息区域 */
.cp_xiangqing .product-info {
	float: right;
	width: 40%;
}

.product-header {
	position: relative;
	margin-bottom: 20px;
	padding-right: 0;
}

.cp_xiangqing .product-info .product-title {
	font-size: 19px;
	font-weight: 200;
	color: #333;
	line-height: 1.4;
	margin: 0;
	display: block;
	text-align: left;
	-webkit-line-clamp: unset;
	-webkit-box-orient: unset;
	overflow: visible;
}

.product-qr-icon {
	display: inline-block;
	width: 25px;
	height: 25px;
	margin-left: 8px;
	cursor: pointer;
	vertical-align: middle;
	transition: transform 0.3s ease;
	position: relative;
}

.product-qr-icon:hover {
	transform: scale(1.1);
}

.product-qr-icon img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

/* 二维码弹窗 */
.qr-popup {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	margin-top: 10px;
	z-index: 100;
}

.qr-popup.active {
	display: block;
}

.qr-popup-content {
	position: relative;
	background: #fff;
	border: 2px solid #4CAF50;
	border-radius: 8px;
	padding: 10px;
	box-shadow: 0 4px 12px rgba(0,0,0,0.15);
	max-width: 150px;
}

.qr-close {
	position: absolute;
	top: 0;
	right: 5px;
	font-size: 20px;
	color: #999;
	cursor: pointer;
	line-height: 1;
	transition: color 0.3s ease;
}

.qr-close:hover {
	color: #333;
}

.qr-large {
	width: 100%;
	height: auto;
	display: block;
}

.product-description {
	margin-bottom: 20px;
	border-bottom: 1px solid #e5e5e5;
}

.product-description p {
	font-size: 13px;
	color: #666;
	line-height: 1.2;
	margin-bottom: 5px;
}

.product-description p:last-child {
	margin-bottom: 0;
}

.product-description p:last-child {
	margin-bottom: 0;
}

/* 数量选择器 */
.product-quantity {
	display: flex;
	align-items: center;
	margin-bottom: 25px;
}

.product-quantity label {
	font-size: 14px;
	color: #333;
	font-weight: 600;
	margin-right: 10px;
}

.qty-selector {
	display: flex;
	align-items: center;
	border: 1px solid #ddd;
}

.qty-btn {
	width: 30px;
	height: 30px;
	background: #fff;
	border: none;
	cursor: pointer;
	font-size: 16px;
	color: #333;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
}

.qty-btn:hover {
	background: #f5f5f5;
}

.qty-input {
	width: 50px;
	height: 30px;
	border: none;
	border-left: 1px solid #ddd;
	border-right: 1px solid #ddd;
	text-align: center;
	font-size: 14px;
	color: #333;
}

/* 按钮组 */
.product-actions {
	display: flex;
	flex-direction: column;
	gap: 15px;
	margin-bottom: 30px;
}

.btn-inquire,
.btn-basket {
	width: 60%;
	max-width: 520px;
	height: 50px;
	border: 2px solid #4CAF50;
	cursor: pointer;
	font-size: 16px;
	font-weight: 600;
	transition: all 0.3s ease;
	border-radius: 25px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	background: #fff;
	color: #4CAF50;
}

.btn-inquire::after {
	content: '✎';
	font-size: 18px;
}

.btn-basket::after {
	content: '🛒';
	font-size: 18px;
}

.btn-inquire:hover,
.btn-basket:hover {
	background: #4CAF50;
	color: #fff;
}

/* 社交分享 */
.product-share {
	display: flex;
	align-items: center;
	gap: 12px;
	padding-top: 0;
	border-top: none;
}

.share-icon {
	width: 25px;
	height: auto;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	background: transparent;
	border-radius: 6px;
	overflow: hidden;
}

.share-icon img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.share-icon:hover {
	transform: translateY(-3px);
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
}

/* 产品详细信息板块 */
.product-detail-info {
	clear: both;
	width: 100%;
	margin-top: 50px;
	background: #fff;
}

.product-info-header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	padding-bottom: 15px;
	border-bottom: 1px solid #e5e5e5;
	margin-bottom: 30px;
}

.info-left {
	display: flex;
	gap: 40px;
}

.info-item {
	display: flex;
	align-items: center;
	gap: 8px;
}

.info-label {
	font-size: 14px;
	color: #333;
	font-weight: 600;
}

.info-value {
	font-size: 14px;
	color: #333;
	font-weight: 400;
}

.info-tab {
	padding: 10px 30px;
	background: #fff;
	color: #666;
	font-size: 14px;
	font-weight: 400;
	cursor: pointer;
	transition: all 0.3s ease;
	border: 1px solid #ddd;
	border-bottom: none;
	position: relative;
	bottom: -1px;
}

.info-tab.active {
	background: #fff;
	color: #666;
	border: 1px solid #ddd;
	border-bottom: none;
}

.product-info-content {
	width: 100%;
}

.content-title {
	font-size: 20px;
	font-weight: 700;
	color: #333;
	margin-bottom: 20px;
}

.content-image {
	width: 100%;
}

.content-image img {
	width: 100%;
	height: auto;
	display: block;
}

/* 右侧边栏 */
.product-detail-right {
	float: right;
	width: 25%;
}

/* 侧边栏标题 */
.sidebar-title {
	background: #4CAF50;
	color: #fff;
	font-size: 18px;
	font-weight: 700;
	padding: 15px 20px;
	margin: 0 0 20px 0;
}

/* Product Category */
.sidebar-category {
	margin-bottom: 40px;
}

.category-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.category-item {
	border-bottom: 1px solid #e5e5e5;
}

.category-item a {
	display: block;
	padding: 12px 20px;
	color: #333;
	font-size: 14px;
	text-decoration: none;
	transition: all 0.3s ease;
}

.category-item.active a {
	color: #4CAF50;
	font-weight: 600;
}

.category-item:hover a {
	color: #4CAF50;
	padding-left: 25px;
}

/* Contact Us */
.sidebar-contact {
	margin-bottom: 40px;
}

.contact-form {
	padding: 0 20px 20px;
}

.form-row {
	display: flex;
	gap: 10px;
	margin-bottom: 15px;
}

.form-input {
	width: 100%;
	padding: 10px 15px;
	border: 1px solid #ddd;
	font-size: 14px;
	color: #666;
	outline: none;
	transition: border-color 0.3s ease;
}

.form-input:focus {
	border-color: #4CAF50;
}

.form-textarea {
	width: 100%;
	padding: 10px 15px;
	border: 1px solid #ddd;
	font-size: 14px;
	color: #666;
	outline: none;
	resize: vertical;
	margin-bottom: 15px;
	transition: border-color 0.3s ease;
}

.form-textarea:focus {
	border-color: #4CAF50;
}

.form-verify {
	display: flex;
	gap: 10px;
	margin-bottom: 20px;
}

.verify-input {
	flex: 1;
}

.verify-code {
	width: 120px;
	height: 40px;
	object-fit: cover;
	cursor: pointer;
	border: 1px solid #ddd;
}

.form-submit {
	width: 100%;
	padding: 12px;
	background: #4A90E2;
	color: #fff;
	font-size: 16px;
	font-weight: 600;
	border: none;
	cursor: pointer;
	transition: background 0.3s ease;
}

.form-submit:hover {
	background: #357ABD;
}

/* About Us - Why Choose Us 区域 */
.about_box1 {
	padding:50px 0;
	background: #f8f8f8;
	position: relative;
}

.about_box1 .container {
	max-width: 1440px;
	margin: 0 auto;
	padding: 0;
}

.about_box1 .about-content {
	display: flex;
	align-items: stretch;
	min-height: 500px;
}

.about_box1 .about-text {
	flex: 1;
	padding: 80px 60px;
	background: #f8f8f8;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.about_box1 .about-title {
	font-size: 40px;
	font-weight: 700;
	color: #333;
	margin-bottom: 30px;
}

.about_box1 .about-desc {
	font-size: 14px;
	color: #666;
	line-height: 1.8;
	margin: 0;
}

.about_box1 .about-image {
	flex: 1;
	position: relative;
	overflow: hidden;
}

.about_box1 .about-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.about_box1 .about-360 {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 80px;
	height: 80px;
	background: rgba(255, 255, 255, 0.9);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	font-weight: 700;
	color: #333;
	box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.about_box1 .about-decoration {
	height: 80px;
	background: #4CAF50;
	width: 100%;
	max-width: calc(50vw + 720px);
	margin-left: 0;
}

/* 响应式 */
@media only screen and (max-width: 1440px) {
	.about_box1 .about-decoration {
		max-width: 100%;
	}
}

@media only screen and (max-width: 1000px) {
	.about_box1 .about-content {
		flex-direction: column;
		min-height: auto;
	}
	
	.about_box1 .about-text {
		padding: 60px 40px;
	}
	
	.about_box1 .about-title {
		font-size: 32px;
		margin-bottom: 25px;
	}
	
	.about_box1 .about-image {
		height: 400px;
	}
	
	.about_box1 .about-decoration {
		height: 60px;
	}
}

@media only screen and (max-width: 750px) {
	.about_box1 .about-text {
		padding: 40px 20px;
	}
	
	.about_box1 .about-title {
		font-size: 24px;
		margin-bottom: 20px;
	}
	
	.about_box1 .about-desc {
		font-size: 13px;
	}
	
	.about_box1 .about-image {
		height: 300px;
	}
	
	.about_box1 .about-360 {
		width: 60px;
		height: 60px;
		font-size: 18px;
	}
	
	.about_box1 .about-decoration {
		height: 40px;
	}
}

/* Workshop 车间展示区域 */
.about_box2 {
	padding: 80px 0;
	background: #fff;
}

.about_box2 .container {
	max-width: 1440px;
	margin: 0 auto;
	padding: 0 40px;
}

.about_box2 .workshop-title {
	font-size: 36px;
	font-weight: 700;
	color: #333;
	text-align: center;
	margin-bottom: 50px;
}

.about_box2 .workshop-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-template-rows: repeat(2, 250px);
	gap: 20px;
}

.about_box2 .workshop-item {
	position: relative;
	overflow: hidden;
	cursor: pointer;
}

.about_box2 .workshop-large {
	grid-column: 1 / 3;
	grid-row: 1 / 3;
}

.about_box2 .workshop-small:nth-child(2) {
	grid-column: 3 / 4;
	grid-row: 1 / 2;
}

.about_box2 .workshop-small:nth-child(3) {
	grid-column: 4 / 5;
	grid-row: 1 / 2;
}

.about_box2 .workshop-small:nth-child(4) {
	grid-column: 3 / 4;
	grid-row: 2 / 3;
}

.about_box2 .workshop-small:nth-child(5) {
	grid-column: 4 / 5;
	grid-row: 2 / 3;
}

.about_box2 .workshop-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.about_box2 .workshop-item:hover img {
	transform: scale(1.05);
}

.about_box2 .workshop-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 60px;
	padding: 20px;
	background: rgba(0,0,0,0.6);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: height 0.4s ease;
}

.about_box2 .workshop-item:hover .workshop-overlay {
	height: 100%;
}

.about_box2 .workshop-text {
	font-size: 24px;
	font-weight: 700;
	color: #fff;
	text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

/* 响应式 */
@media only screen and (max-width: 1000px) {
	.about_box2 {
		padding: 60px 0;
	}
	
	.about_box2 .container {
		padding: 0 30px;
	}
	
	.about_box2 .workshop-title {
		font-size: 30px;
		margin-bottom: 40px;
	}
	
	.about_box2 .workshop-grid {
		grid-template-columns: repeat(2, 1fr);
		grid-template-rows: repeat(3, 200px);
	}
	
	.about_box2 .workshop-large {
		grid-column: 1 / 3;
		grid-row: 1 / 2;
	}
	
	.about_box2 .workshop-small:nth-child(2) {
		grid-column: 1 / 2;
		grid-row: 2 / 3;
	}
	
	.about_box2 .workshop-small:nth-child(3) {
		grid-column: 2 / 3;
		grid-row: 2 / 3;
	}
	
	.about_box2 .workshop-small:nth-child(4) {
		grid-column: 1 / 2;
		grid-row: 3 / 4;
	}
	
	.about_box2 .workshop-small:nth-child(5) {
		grid-column: 2 / 3;
		grid-row: 3 / 4;
	}
}

@media only screen and (max-width: 750px) {
	.about_box2 {
		padding: 40px 0;
	}
	
	.about_box2 .container {
		padding: 0 20px;
	}
	
	.about_box2 .workshop-title {
		font-size: 24px;
		margin-bottom: 30px;
	}
	
	.about_box2 .workshop-grid {
		grid-template-columns: 1fr;
		grid-template-rows: repeat(5, 200px);
		gap: 15px;
	}
	
	.about_box2 .workshop-large {
		grid-column: 1 / 2;
		grid-row: 1 / 2;
	}
	
	.about_box2 .workshop-small:nth-child(2) {
		grid-column: 1 / 2;
		grid-row: 2 / 3;
	}
	
	.about_box2 .workshop-small:nth-child(3) {
		grid-column: 1 / 2;
		grid-row: 3 / 4;
	}
	
	.about_box2 .workshop-small:nth-child(4) {
		grid-column: 1 / 2;
		grid-row: 4 / 5;
	}
	
	.about_box2 .workshop-small:nth-child(5) {
		grid-column: 1 / 2;
		grid-row: 5 / 6;
	}
	
	.about_box2 .workshop-text {
		font-size: 20px;
	}
}

/* Applications 应用区域 */
.yinyong {
	padding: 80px 0;
	background: #fff;
}

.yinyong .container {
	max-width: 1440px;
	margin: 0 auto;
	padding: 0 40px;
}

.yinyong-title {
	font-size: 36px;
	font-weight: 700;
	color: #333;
	text-align: center;
	margin-bottom: 50px;
}

.yinyong-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 30px;
}

.yinyong-item {
	position: relative;
	overflow: hidden;
	border-radius: 12px;
	box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.yinyong-img {
	position: relative;
	width: 100%;
	height: 400px;
	overflow: hidden;
}

.yinyong-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.yinyong-item:hover .yinyong-img img {
	transform: scale(1.05);
}

.yinyong-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.6);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.yinyong-item:hover .yinyong-overlay {
	opacity: 1;
}

.yinyong-text {
	background: rgba(255, 255, 255, 0.1);
	border: 2px solid #fff;
	padding: 30px;
	text-align: center;
	color: #fff;
	transform: scale(0.8);
	transition: transform 0.3s ease;
	backdrop-filter: blur(5px);
}

.yinyong-item:hover .yinyong-text {
	transform: scale(1);
}

.yinyong-text h3 {
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 15px;
	color: #fff;
}

.yinyong-text p {
	font-size: 14px;
	line-height: 1.6;
	color: #fff;
	margin: 0;
}

/* 响应式 */
@media only screen and (max-width: 1000px) {
	.yinyong {
		padding: 60px 0;
	}
	
	.yinyong .container {
		padding: 0 30px;
	}
	
	.yinyong-title {
		font-size: 30px;
		margin-bottom: 40px;
	}
	
	.yinyong-img {
		height: 350px;
	}
}

@media only screen and (max-width: 750px) {
	.yinyong {
		padding: 40px 0;
	}
	
	.yinyong .container {
		padding: 0 20px;
	}
	
	.yinyong-title {
		font-size: 24px;
		margin-bottom: 30px;
	}
	
	.yinyong-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	
	.yinyong-img {
		height: 300px;
	}
	
	.yinyong-text h3 {
		font-size: 20px;
		margin-bottom: 10px;
	}
	
	.yinyong-text p {
		font-size: 13px;
	}
}

/* Related Products 相关产品轮播 */
.cp_xiangqing_2 {
	padding: 60px 0;
	background: #f8f8f8;
}

.cp_xiangqing_2 .related-title {
	font-size: 32px;
	font-weight: 700;
	color: #333;
	margin-bottom: 40px;
	text-align: left;
}

.cp_xiangqing_2 .related-swiper-wrapper {
	position: relative;
	padding: 0 60px;
}

.cp_xiangqing_2 .related-swiper {
	width: 100%;
	overflow: hidden;
}

.cp_xiangqing_2 .related-product-card {
	background: #fff;
	border-radius: 8px;
	overflow: hidden;
	transition: all 0.3s ease;
	cursor: pointer;
}

.cp_xiangqing_2 .related-product-card:hover {
	box-shadow: 0 4px 12px rgba(0,0,0,0.1);
	transform: translateY(-5px);
}

.cp_xiangqing_2 .related-product-img {
	width: 100%;
	height: 250px;
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
}

.cp_xiangqing_2 .related-product-img img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}

.cp_xiangqing_2 .related-product-title {
	font-size: 14px;
	color: #333;
	padding: 15px;
	margin: 0;
	line-height: 1.5;
	min-height: 65px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-align: center;
}

/* 左右箭头 */
.cp_xiangqing_2 .related-prev,
.cp_xiangqing_2 .related-next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 40px;
	height: 40px;
	background: rgba(0,0,0,0.3);
	border-radius: 50%;
	cursor: pointer;
	z-index: 10;
	transition: background 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
}

.cp_xiangqing_2 .related-prev {
	left: 0;
}

.cp_xiangqing_2 .related-next {
	right: 0;
}

.cp_xiangqing_2 .related-prev:hover,
.cp_xiangqing_2 .related-next:hover {
	background: #4CAF50;
}

.cp_xiangqing_2 .related-prev::after,
.cp_xiangqing_2 .related-next::after {
	content: '';
	width: 10px;
	height: 10px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
}

.cp_xiangqing_2 .related-prev::after {
	transform: rotate(-135deg);
	margin-left: 3px;
}

.cp_xiangqing_2 .related-next::after {
	transform: rotate(45deg);
	margin-right: 3px;
}

/* 响应式 */
@media only screen and (max-width: 750px) {
	.cp_xiangqing_2 {
		padding: 40px 0;
	}
	
	.cp_xiangqing_2 .related-title {
		font-size: 24px;
		margin-bottom: 30px;
		padding: 0 20px;
	}
	
	.cp_xiangqing_2 .related-swiper-wrapper {
		padding: 0 50px;
	}
	
	.cp_xiangqing_2 .related-product-img {
		height: 200px;
	}
	
	.cp_xiangqing_2 .related-prev,
	.cp_xiangqing_2 .related-next {
		width: 35px;
		height: 35px;
	}
}

/* 产品详情响应式 */
@media only screen and (max-width: 1200px) {
	.cp_xiangqing .container {
		padding: 0 30px;
	}
}

@media only screen and (max-width: 1000px) {
	.cp_xiangqing .product-detail-left {
		float: none;
		width: 100%;
		padding-right: 0;
		margin-bottom: 30px;
	}

	.cp_xiangqing .product-detail-right {
		float: none;
		width: 100%;
	}

	.cp_xiangqing .product-gallery {
		float: none;
		width: 100%;
		max-width: 500px;
		margin: 0 auto 30px;
		padding-right: 0;
	}

	.cp_xiangqing .product-info {
		float: none;
		width: 100%;
	}
	
	.cp_xiangqing .product-detail-info {
		margin-top: 30px;
	}
}

@media only screen and (max-width: 750px) {
	.cp_xiangqing {
		padding: 30px 0;
	}

	.cp_xiangqing .container {
		padding: 0 20px;
	}

	.cp_xiangqing .product-gallery {
		max-width: 100%;
	}

	.cp_xiangqing .gallery-main {
		height: 300px;
	}

	.cp_xiangqing .gallery-thumbs {
		height: 80px;
	}

	.cp_xiangqing .gallery-thumbs .swiper-slide {
		width: 80px;
		height: 80px;
	}

	.cp_xiangqing .product-info .product-title {
		font-size: 18px;
	}

	.cp_xiangqing .product-qr-icon {
		width: 20px;
		height: 20px;
	}

	.cp_xiangqing .product-description p {
		font-size: 13px;
	}
	
	.cp_xiangqing .product-detail-right {
		margin-top: 30px;
	}
	
	.cp_xiangqing .sidebar-category,
	.cp_xiangqing .sidebar-contact {
		margin-bottom: 30px;
	}
}


/* Team 团队展示区域 */
.about_box3 {
	padding: 80px 0;
	background: #fff;
}

.about_box3 .container {
	max-width: 1440px;
	margin: 0 auto;
	padding: 0 15px;
}

.about_box3 .team-title {
	font-size: 36px;
	font-weight: 700;
	color: #333;
	text-align: center;
	margin-bottom: 50px;
}

.about_box3 .team-images {
	display: flex;
	gap: 20px;
	justify-content: center;
}

.about_box3 .team-image-item {
	flex: 1;
	max-width: 710px;
}

.about_box3 .team-image-item img {
	width: 100%;
	height: auto;
	display: block;
}

/* 响应式 */
@media only screen and (max-width: 1000px) {
	.about_box3 {
		padding: 60px 0;
	}
	
	.about_box3 .container {
		padding: 0 30px;
	}
	
	.about_box3 .team-title {
		font-size: 30px;
		margin-bottom: 40px;
	}
	
	.about_box3 .team-images {
		gap: 15px;
	}
}

@media only screen and (max-width: 750px) {
	.about_box3 {
		padding: 40px 0;
	}
	
	.about_box3 .container {
		padding: 0 20px;
	}
	
	.about_box3 .team-title {
		font-size: 24px;
		margin-bottom: 30px;
	}
	
	.about_box3 .team-images {
		flex-direction: column;
		gap: 20px;
	}
	
	.about_box3 .team-image-item {
		max-width: 100%;
	}
}


/* News 新闻列表页面 */
.news {
	padding: 60px 0 80px;
	background: #f5f5f5;
}

.news .container {
	max-width: 1440px;
	margin: 0 auto;
	padding: 0 15px;
}

.news .news-header {
	background: linear-gradient(90deg, #4CAF50 0%, #66BB6A 100%);
	padding: 20px 30px;
	margin-bottom: 40px;
}

.news .news-title {
	font-size: 32px;
	font-weight: 700;
	color: #fff;
	margin: 0;
}

.news .news-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.news .news-item {
	background: #fff;
	padding: 30px;
	margin-bottom: 20px;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	transition: all 0.3s ease;
}

.news .news-item:hover {
	box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.news .news-content {
	flex: 0 0 78%;
	padding-right: 40px;
	border-right: 1px solid #4CAF50;
}

.news .news-item-title {
	font-size: 29px;
	font-weight: 600;
	margin: 0 0 15px 0;
	line-height: 1.4;
}

.news .news-item-title a {
	color: #4CAF50;
	text-decoration: none;
	transition: color 0.3s ease;
}

.news .news-item-title a:hover {
	color: #45a049;
}

.news .news-item-desc {
	font-size: 21px;
	color: #666;
	line-height: 1.8;
	margin: 0;
}

.news .news-meta {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	min-width: 180px;
}

.news .news-date {
	font-size: 33px;
	font-weight: 600;
	color: #666;
	margin-bottom: 15px;
}

.news .news-read-more {
	display: inline-block;
	padding: 8px 24px;
	background: #4CAF50;
	color: #fff;
	text-decoration: none;
	font-size: 14px;
	font-weight: 600;
	border-radius: 3px;
	transition: background 0.3s ease;
}

.news .news-read-more:hover {
	background: #45a049;
}

/* 分页 */
.news .news-pagination {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 50px;
	flex-wrap: wrap;
	gap: 10px;
}

.news .page-num,
.news .page-next {
	display: inline-block;
	width: 36px;
	height: 36px;
	line-height: 36px;
	text-align: center;
	border: 1px solid #ddd;
	background: #fff;
	color: #666;
	text-decoration: none;
	font-size: 14px;
	transition: all 0.3s ease;
}

.news .page-num:hover,
.news .page-next:hover {
	border-color: #4CAF50;
	color: #4CAF50;
}

.news .page-num.active {
	background: #4CAF50;
	color: #fff;
	border-color: #4CAF50;
}

.news .page-dots {
	color: #666;
	padding: 0 5px;
}

.news .page-goto {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-left: 20px;
	font-size: 14px;
	color: #666;
}

.news .page-input {
	width: 50px;
	height: 36px;
	border: 1px solid #ddd;
	text-align: center;
	font-size: 14px;
	outline: none;
}

.news .page-input:focus {
	border-color: #4CAF50;
}

.news .page-go-btn {
	height: 36px;
	padding: 0 20px;
	background: #4CAF50;
	color: #fff;
	border: none;
	font-size: 14px;
	cursor: pointer;
	transition: background 0.3s ease;
}

.news .page-go-btn:hover {
	background: #45a049;
}

/* 响应式 */
@media only screen and (max-width: 1000px) {
	.news {
		padding: 40px 0 60px;
	}
	
	.news .container {
		padding: 0 30px;
	}
	
	.news .news-header {
		padding: 15px 20px;
		margin-bottom: 30px;
	}
	
	.news .news-title {
		font-size: 28px;
	}
	
	.news .news-item {
		padding: 25px;
	}
	
	.news .news-content {
		padding-right: 30px;
	}
	
	.news .news-item-title {
		font-size: 18px;
	}
	
	.news .news-date {
		font-size: 24px;
	}
	
	.news .news-meta {
		min-width: 150px;
	}
}

@media only screen and (max-width: 750px) {
	.news {
		padding: 30px 0 40px;
	}
	
	.news .container {
		padding: 0 20px;
	}
	
	.news .news-header {
		padding: 12px 15px;
		margin-bottom: 20px;
	}
	
	.news .news-title {
		font-size: 24px;
	}
	
	.news .news-item {
		flex-direction: column;
		padding: 20px;
	}
	
	.news .news-content {
		padding-right: 0;
		margin-bottom: 20px;
		border-right: none;
	}
	
	.news .news-item-title {
		font-size: 16px;
		margin-bottom: 10px;
	}
	
	.news .news-item-desc {
		font-size: 13px;
	}
	
	.news .news-meta {
		width: 100%;
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
		min-width: auto;
	}
	
	.news .news-date {
		font-size: 20px;
		margin-bottom: 0;
	}
	
	.news .news-read-more {
		padding: 6px 18px;
		font-size: 13px;
	}
	
	.news .news-pagination {
		margin-top: 30px;
		gap: 5px;
	}
	
	.news .page-num,
	.news .page-next {
		width: 32px;
		height: 32px;
		line-height: 32px;
		font-size: 13px;
	}
	
	.news .page-goto {
		width: 100%;
		margin-left: 0;
		margin-top: 15px;
		justify-content: center;
		font-size: 13px;
	}
	
	.news .page-input {
		width: 45px;
		height: 32px;
		font-size: 13px;
	}
	
	.news .page-go-btn {
		height: 32px;
		padding: 0 15px;
		font-size: 13px;
	}
}


/* 联系我们页面 */
.lianxi {
	padding: 80px 0;
	background: #f5f5f5;
}

.lianxi .container {
	max-width: 1440px;
	margin: 0 auto;
	padding: 0 15px;
}

.lianxi .lianxi-wrapper {
	display: flex;
	gap: 60px;
	background: #fff;
	padding: 50px;
}

.lianxi .lianxi-left {
	flex: 0 0 45%;
}

.lianxi .lianxi-right {
	flex: 1;
}

.lianxi .lianxi-title {
	font-size: 28px;
	font-weight: 700;
	color: #333;
	margin: 0 0 40px 0;
	padding-left: 15px;
	border-left: 4px solid #4CAF50;
}

.lianxi .lianxi-item {
	margin-bottom: 35px;
	padding-bottom: 35px;
	border-bottom: 1px solid #e0e0e0;
}

.lianxi .lianxi-item:last-child {
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}

.lianxi .lianxi-item-title {
	font-size: 18px;
	font-weight: 700;
	color: #333;
	margin: 0 0 15px 0;
}

.lianxi .lianxi-item-content {
	display: flex;
	align-items: flex-start;
	gap: 10px;
}

.lianxi .lianxi-icon {
	width: 20px;
	height: 20px;
	flex-shrink: 0;
	margin-top: 2px;
}

.lianxi .lianxi-item-content span {
	font-size: 15px;
	color: #666;
	line-height: 1.6;
}

.lianxi .lianxi-form {
	display: flex;
	flex-direction: column;
	gap: 25px;
}

.lianxi .form-group {
	position: relative;
	border: 1px solid #ddd;
	padding: 15px;
	background: #fafafa;
	transition: border-color 0.3s ease;
}

.lianxi .form-group:focus-within {
	border-color: #4CAF50;
	background: #fff;
}

.lianxi .form-label {
	display: block;
	font-size: 16px;
	color: #666;
	margin-bottom: 10px;
}

.lianxi .form-input,
.lianxi .form-textarea {
	width: 100%;
	padding: 0;
	border: none;
	font-size: 15px;
	color: #333;
	outline: none;
	background: transparent;
}

.lianxi .form-textarea {
	resize: vertical;
	min-height: 120px;
}

.lianxi .form-required {
	color: #f44336;
	font-size: 16px;
	margin-left: 3px;
}

.lianxi .verify-wrapper {
	display: flex;
	gap: 15px;
	align-items: center;
}

.lianxi .form-verify {
	flex: 1;
}

.lianxi .verify-image {
	width: 120px;
	height: 40px;
	object-fit: contain;
	border-left: 1px solid #ddd;
	padding-left: 15px;
	margin-left: 15px;
}

.lianxi .form-submit {
	width: 100%;
	padding: 15px;
	background: #4CAF50;
	color: #fff;
	border: none;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.3s ease;
}

.lianxi .form-submit:hover {
	background: #45a049;
}

/* 响应式 */
@media only screen and (max-width: 1000px) {
	.lianxi {
		padding: 60px 0;
	}
	
	.lianxi .container {
		padding: 0 30px;
	}
	
	.lianxi .lianxi-wrapper {
		gap: 40px;
		padding: 40px;
	}
	
	.lianxi .lianxi-title {
		font-size: 24px;
		margin-bottom: 30px;
	}
	
	.lianxi .lianxi-item {
		margin-bottom: 25px;
		padding-bottom: 25px;
	}
}

@media only screen and (max-width: 750px) {
	.lianxi {
		padding: 40px 0;
	}
	
	.lianxi .container {
		padding: 0 20px;
	}
	
	.lianxi .lianxi-wrapper {
		flex-direction: column;
		gap: 40px;
		padding: 30px 20px;
	}
	
	.lianxi .lianxi-left {
		flex: 1;
	}
	
	.lianxi .lianxi-title {
		font-size: 22px;
		margin-bottom: 25px;
		padding-left: 12px;
	}
	
	.lianxi .lianxi-item {
		margin-bottom: 20px;
		padding-bottom: 20px;
	}
	
	.lianxi .lianxi-item-title {
		font-size: 16px;
		margin-bottom: 12px;
	}
	
	.lianxi .lianxi-item-content span {
		font-size: 14px;
	}
	
	.lianxi .form-label {
		font-size: 15px;
		margin-bottom: 8px;
	}
	
	.lianxi .form-group {
		padding: 12px;
	}
	
	.lianxi .form-input,
	.lianxi .form-textarea {
		font-size: 14px;
	}
	
	.lianxi .form-required {
		font-size: 15px;
	}
	
	.lianxi .verify-wrapper {
		flex-direction: column;
		align-items: stretch;
		gap: 10px;
	}
	
	.lianxi .verify-image {
		width: 100%;
		max-width: 150px;
		height: auto;
		border-left: none;
		border-top: 1px solid #ddd;
		padding-left: 0;
		padding-top: 10px;
		margin-left: 0;
		margin-top: 10px;
	}
	
	.lianxi .form-submit {
		padding: 12px;
		font-size: 15px;
	}
}


/* FAQ 问答页面 */
.wenda {
	padding: 60px 0;
	background: #f5f5f5;
}

.wenda .container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 15px;
}

.wenda .wenda-title {
	font-size: 28px;
	font-weight: 700;
	color: #333;
	margin: 0 0 30px 0;
}

.wenda .wenda-list {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.wenda .wenda-item {
	background: #fff;
	padding: 20px 25px;
	border-bottom: 1px solid #e0e0e0;
}

.wenda .wenda-item:first-child {
	border-top: 1px solid #e0e0e0;
}

.wenda .wenda-question {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	margin-bottom: 10px;
}

.wenda .wenda-q {
	font-size: 16px;
	font-weight: 700;
	color: #4CAF50;
	flex-shrink: 0;
}

.wenda .wenda-q-text {
	font-size: 16px;
	font-weight: 600;
	color: #333;
	line-height: 1.4;
}

.wenda .wenda-answer {
	display: flex;
	align-items: flex-start;
	gap: 12px;
}

.wenda .wenda-a {
	font-size: 16px;
	font-weight: 700;
	color: #4CAF50;
	flex-shrink: 0;
}

.wenda .wenda-a-text {
	font-size: 14px;
	color: #666;
	line-height: 1.6;
}

/* 响应式 */
@media only screen and (max-width: 1000px) {
	.wenda {
		padding: 60px 0;
	}
	
	.wenda .container {
		padding: 0 30px;
	}
	
	.wenda .wenda-title {
		font-size: 32px;
		margin-bottom: 40px;
	}
	
	.wenda .wenda-item {
		padding: 25px;
	}
	
	.wenda .wenda-q,
	.wenda .wenda-a {
		font-size: 18px;
	}
	
	.wenda .wenda-q-text {
		font-size: 17px;
	}
	
	.wenda .wenda-a-text {
		font-size: 15px;
	}
}

@media only screen and (max-width: 750px) {
	.wenda {
		padding: 40px 0;
	}
	
	.wenda .container {
		padding: 0 20px;
	}
	
	.wenda .wenda-title {
		font-size: 28px;
		margin-bottom: 30px;
	}
	
	.wenda .wenda-item {
		padding: 20px;
	}
	
	.wenda .wenda-question {
		gap: 10px;
		margin-bottom: 12px;
	}
	
	.wenda .wenda-answer {
		gap: 10px;
	}
	
	.wenda .wenda-q,
	.wenda .wenda-a {
		font-size: 16px;
	}
	
	.wenda .wenda-q-text {
		font-size: 15px;
	}
	
	.wenda .wenda-a-text {
		font-size: 14px;
	}
}
