﻿/*通用类*/
* {
	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;
}


@font-face {
	font-family:"hel";
	src: url("/template/default/fonts/HELVETICAINSERAT.TTF");
}


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;
}

/* 主代码开始开始*/

/* 全局样式 */
* {
	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;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
}

.header-container {
	height: 110px;
	padding: 0 1%;
	padding-right: 1%;
	padding-left: 1%;
	margin: 0 auto;
	position: relative;
}

.header-container::after {
	content: "";
	display: table;
	clear: both;
}

.logo {
	float: left;
	margin-top: 30px;
}

.logo img {
	height: 65px;
	vertical-align: middle;
}

/* PC端导航样式 */
.nav-pc {
	float: right;
	margin-left: 40px;
	margin-top: 45px;
	margin-right: 20px;
}

.nav-item {
	position: relative;
	margin-left: 20px;
	display: inline-block;
	vertical-align: top;
}

.nav-link {
	color: #333;
	text-decoration: none;
	font-size: 18px;
	font-weight: 500;
	padding: 10px 0;
	position: relative;
	transition: color 0.3s ease;
	text-transform: uppercase;
	font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.nav-link:hover {
	color: #2e4e9e;
}

.nav-link::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background-color: #2e4e9e;
	transition: width 0.3s ease;
}

.nav-link:hover::after {
	width: 100%;
}

/* 子菜单样式 */
.sub-menu {
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 200px;
	background-color: #fff;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	padding: 10px 0;
	border-radius: 4px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: all 0.3s ease;
	z-index: 100;
}

.nav-item:hover .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.sub-menu-item {
	list-style: none;
}

.sub-menu-link {
	display: block;
	color: #333;
	text-decoration: none;
	padding: 8px 20px;
	transition: all 0.3s ease;
	font-size: 18px;
	text-align: left;
}

.sub-menu-link:hover {
	background-color: #f5f5f5;
	color: #2e4e9e;
}

/* 移动端菜单按钮 */
.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;
}

/* 移动端导航样式 */
.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-search {
	padding: 15px 20px;
	border-bottom: 1px solid #eee;
}

.nav-mobile-search .search-container {
	position: relative;
	display: flex;
	align-items: center;
	border: 1px solid #ddd;
	border-radius: 20px;
	padding: 8px 12px;
	transition: border-color 0.3s ease;
	background: #f5f5f5;
}

.nav-mobile-search .search-container:focus-within {
	border-color: #2e4e9e;
}

.nav-mobile-search .search-icon {
	width: 16px;
	height: 16px;
	margin-right: 8px;
	opacity: 0.6;
}

.nav-mobile-search input {
	border: none;
	outline: none;
	background: transparent;
	flex: 1;
	font-size: 14px;
}

.nav-mobile-search input::placeholder {
	color: #999;
}

/* 移动端语言切换样式 */
.nav-mobile-language {
	padding: 15px 20px;
	border-bottom: 1px solid #eee;
}

.nav-mobile-language .language-switch {
	position: relative;
	display: flex;
	align-items: center;
	cursor: pointer;
	padding: 8px 12px;
	border-radius: 20px;
	transition: background-color 0.3s ease;
	background: #f5f5f5;
}

.nav-mobile-language .language-switch:hover {
	background-color: #e8e8e8;
}

.nav-mobile-language .language-switch span {
	font-size: 16px;
	color: #333;
	margin-right: 5px;
	display: inline-block;
}

.nav-mobile-language .dropdown-arrow {
	font-size: 10px;
	color: #666;
	margin-left: auto !important;
	margin-right: 0 !important;
	transition: transform 0.3s ease;
}

.nav-mobile-language .language-switch:hover .dropdown-arrow {
	transform: rotate(180deg);
}

.nav-mobile-language .language-dropdown {
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	background-color: #fff;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	border-radius: 8px;
	padding: 8px 0;
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: all 0.3s ease;
	z-index: 100;
	margin-top: 5px;
}

.nav-mobile-language .language-switch:hover .language-dropdown,
.nav-mobile-language .language-dropdown.active {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.nav-mobile-language .language-option {
	display: flex;
	align-items: center;
	padding: 8px 16px;
	cursor: pointer;
	transition: background-color 0.3s ease;
	font-size: 14px;
	color: #333;
}

.nav-mobile-language .language-option:hover {
	background-color: #f5f5f5;
}

.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;
}

.nav-mobile-link {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px 20px;
	color: #333;
	text-decoration: none;
	font-size: 16px;
	padding-right: 50px;
	position: relative;
}

.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%);
}


/* 搜索框样式 */
.sousuo {
	float: right;
	margin-right: 20px;
	height: 80px;
	margin-top: 40px;
}

.search-container {
	position: relative;
	display: inline-block;
	vertical-align: middle;
	border: 1px solid #ddd;
	border-radius: 20px;
	padding: 8px 12px;
	transition: border-color 0.3s ease;
	background: #ededed;
}

.search-container:focus-within {
	border-color: #2e4e9e;
}

.search-icon {
	width: 16px;
	height: 16px;
	margin-right: 8px;
	opacity: 0.6;
	vertical-align: middle;
}

.sousuo input {
	border: none;
	outline: none;
	background: transparent;
	width: 180px;
	font-size: 14px;
	vertical-align: middle;
}

.sousuo input::placeholder {
	color: #999;
}

/* 语言切换样式 */
.yuyantab {
	float: right;
	margin-right: 20px;
	margin-top: 40px;
}

.language-switch {
	position: relative;
	display: inline-block;
	vertical-align: middle;
	cursor: pointer;
	padding: 8px 12px;
	border-radius: 20px;
	transition: background-color 0.3s ease;
}

.language-switch:hover {
	background-color: #f5f5f5;
}

.language-switch span {
	font-size: 16px;
	color: #333;
	margin-right: 5px;
	vertical-align: middle;
	display: inline-block;
}

.dropdown-arrow {
	font-size: 10px;
	color: #666;
	margin-left: 3px !important;
	margin-right: 0 !important;
	transition: transform 0.3s ease;
}

.language-switch:hover .dropdown-arrow {
	transform: rotate(180deg);
}

.language-dropdown {
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 120px;
	background-color: #fff;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	border-radius: 8px;
	padding: 8px 0;
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: all 0.3s ease;
	z-index: 100;
}

.language-switch:hover .language-dropdown {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.language-option {
	display: flex;
	align-items: center;
	padding: 8px 16px;
	cursor: pointer;
	transition: background-color 0.3s ease;
	font-size: 14px;
	color: #333;
}

.language-option:hover {
	background-color: #f5f5f5;
}

.banner {
	margin-top: 110px;
}

.banner .swiper-slide {
	position: relative;
}

.banner .swiper-slide .text {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	padding: 0 7%;
	text-align: right;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding-bottom: 6%;

}

.banner .swiper-slide .text h3 {
	color: #fff;
	font-weight: bold;
	font-size: 60px;
	text-transform: uppercase;
	font-family: import;
}

.banner .swiper-slide .text p {
	color: #fff;
	font-weight: bold;
	font-size: 48px;
	line-height: 1.2;
	font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.banner .swiper-slide .text span {
	color: #fff;
	display: block;
	font-size: 24px;
	font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.banner .swiper-container-horizontal>.swiper-pagination-bullets,
.swiper-pagination-custom,
.swiper-pagination-fraction {
	bottom: 50px;
	left: 0;
	width: 100%;
	text-align: right;
	padding-right: 5%;
}

.banner .swiper-pagination-bullet {
	width: 12px;
	height: 12px;
	display: inline-block;
	border-radius: 100%;
	background: #fff;
	opacity: 1;
}

.banner .swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
	margin: 0 10px;
}

.banner .swiper-pagination-white .swiper-pagination-bullet-active {
	background: #5aab31;
}

.banner img {
	width: 100%;
}

.fp_box_1 {
	width: 80%;
	height: 300px;
	background: #106db0;
	margin-top: -150px;
	position: relative;
	z-index: 99;
	display: flex;
	justify-content: space-between;
	padding: 55px 100px 0 100px;
}

.fp_box_1 .left {
	width: 30%;
	float: left;
}

.fp_box_1 .left h3 {
	color: #fff;
	font-size: 48px;
	font-weight: bold;
	text-align: left;
	font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.fp_box_1 .shzilist {
	width: 60%;
	float: right;
}

.fp_box_1 .shzilist ul li {
	width: 33.33%;
	float: left;
	text-align: left;
	padding-right: 0%;
}

.fp_box_1 .shzilist ul li h3 {
	font-size: 78px;
	color: #fff;
	font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.fp_box_1 .shzilist ul li h3 em {
	font-size: 30px;
	display: inline-block;
	margin-left: 2px;
	color: #5aab31;
}

.fp_box_1 .shzilist ul li p {
	font-size: 20px;
	line-height: 1.5;
	color: #fff;
	font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.fp_box_2 {
	padding: 120px 0 0 0;
	width: 100%;
	padding-left: 10%;
	float: right;
	position: relative;
}

.picwen {
	position: relative;
}

.picwen img {
	width: 100%;
	display: block;
}

.picwen .text {
	width: 70%;
	height: 70%;
	position: absolute;
	bottom: 0;
	left: 0;
	background: rgb(255, 255, 255, 0.9);
	padding: 50px;
	box-sizing: border-box;
}

.picwen .text h3 {
	font-size: 34px;
	color: #5aab32;
	font-weight: bold;
	margin-bottom: 20px;
}

.picwen .text h4 {
	font-size: 30px;
	color: #5aab32;
	font-weight: bold;
	color: #000;
	text-align: left;
}

.picwen .text p {
	font-size: 18px;
	color: #323232;

	line-height: 1.5;
	margin-top: 20px;
	text-align: left;
}

.fp_box_2 a {
	display: inline-block;
	padding: 12px 30px;
	background-color: #fff;
	color: #5aab32;
	text-decoration: none;
	border-radius: 25px;
	font-size: 18px;
	font-weight: 500;
	transition: all 0.3s ease;
	position: relative;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin: 50px 0;
}

.fp_box_2 a::after {
	content: '▶';
	margin-left: 8px;
	font-size: 12px;
	transition: transform 0.3s ease;
}

.fp_box_2 a:hover {
	background-color: #5aab32;
	color: white;
	transform: translateY(-2px);
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.fp_box_2 a:hover::after {
	transform: translateX(3px);
}

.fp_box_2::after {
	display: block;
	content: "";
	width: 100%;
	height: 500px;
	background: #5aab32;
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: -1;
}

.main {
	width: 100%;
	padding: 0 5%;
}

.fp_box_3 {
	padding: 95px 0;
	background: #f4f4f4;

}

.title h3 {
	font-size: 36px;
	color: #1f1f1f;
	text-transform: uppercase;
	display: inline-block;
	float: left;
}

.title h3 span {
	color: #5aab32;
}

.title a {
	display: inline-block;
	float: right;
	padding: 12px 30px;
	background-color: #fff;
	color: #5aab32;
	text-decoration: none;
	border-radius: 25px;
	font-size: 18px;
	font-weight: 500;
	transition: all 0.3s ease;
	position: relative;
	text-transform: uppercase;
	letter-spacing: 1px;

}

.title a::after {
	content: '▶';
	margin-left: 8px;
	font-size: 12px;
	transition: transform 0.3s ease;
}

.title a:hover {
	background-color: #5aab32;
	color: white;
	transform: translateY(-2px);
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.left_nav {
	width: 18%;
	float: left;

}

.fp_box_3 .main>.title {
	margin-bottom: 50px;
}


/* Product Category Sidebar */
.product-category {
	width: 280px;
	border: 1px solid #e0e0e0;
	font-family: Arial, sans-serif;
}

.product-category .title {
	background-color: #2e6db5;
	color: white;
	padding: 30px 20px;
	font-size: 18px;
	font-weight: bold;
	text-transform: uppercase;
}

.product-category ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.product-category li {
	border-bottom: 1px solid #e0e0e0;
}

.product-category li:last-child {
	border-bottom: none;
}

.product-category a {
	display: block;
	padding: 18px 20px;
	color: #333;
	text-decoration: none;
	position: relative;
	transition: background-color 0.3s ease;
}

.product-category a::after {
	content: '▶';
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 12px;
	color: #888;
	transition: transform 0.3s ease;
}

.product-category li.open>a {
	background-color: #8bc34a;
	color: white;
}

.product-category li.open>a::after {
	color: white;
	transform: translateY(-50%) rotate(90deg);
}

/* submenu (second level) */
.product-category .submenu {
	display: none;
	background: #f7f7f7;
}

.product-category .submenu li a {
	padding: 12px 20px 12px 30px;
	color: #666;
	font-size: 13px;
}

.product-category .submenu li a::after {
	display: none;
}

.product-category .submenu li a:hover {
	background-color: #e8f5e8;
	color: #4a6741;
}

.product-category li.open>.submenu {
	display: block;
}

.product-category li.active>a,
.product-category a:hover {
	background-color: #8bc34a;
	color: white;
}

.product-category li.active>a::after,
.product-category a:hover::after {
	color: white;
}

.rii_list {
	width: 80%;
	float: right;
	padding: 20px;
	padding-top: 0;
}

.rii_list ul {
	margin-left: -15px;
	margin-right: -15px;
}

.rii_list ul li {
	width: 25%;
	float: left;
	padding: 0 15px;
	margin-bottom: 30px;
}

.rii_list ul li .pic {
    height: 250px;
    background: #f9f9f9;
    display: block;
    position: relative;
    overflow: hidden;

}

.rii_list ul li .pic img {
	max-width: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	transition: all 0.3s ease;

}

.rii_list ul li .pic .price {
	position: absolute;
	top: 10px;
	left: 10px;
	background: #5aab32;
	color: #fff;
	padding: 5px 10px;
	font-size: 14px;

}

.rii_list ul li .pic:hover img {
	transform: translate(-50%, -50%) scale(1.1);
}

.rii_list ul li p {
	background: #999;
	padding: 10px 0;
	text-align: center;
	font-size: 18px;
	color: #111111;
}

.rii_list ul li:hover p {
	color: #fff;
}

.fp_box_4 {
	padding: 100px 0;
	padding-bottom: 30px;
	background: linear-gradient(to right, #136fac, #257e8d, #378e6d, #4c9f4a, #4c9f4a);
}

.fp_box_4 h4 {
	font-size: 48px;
	color: #ffffff;
	font-weight: bold;
	margin-bottom: 30px;
}

.fp_box_4 ul {
	margin-left: -35px;
	margin-right: -35px;
}

.fp_box_4 ul li {
	width: 33.33%;
	float: left;
	padding: 0 35px;
	margin-bottom: 40px;
}

.fp_box_4 ul li>div {
	background: #fff;
	min-height: 330px;
	padding: 40px;
}

.fp_box_4 ul li>div h3 {
	font-size: 22px;
	line-height: 28px;
	color: #333;
	text-align: left;
	margin: 10px 0;
	font-weight: bold;
}

.fp_box_4 ul li>div p {
	font-size: 18px;
	color: #333;
	text-align: left;
	line-height: 1.6;
}

.fp_box_5 {
	padding: 50px 0;
}

.fp_box_5 ul li {
	width: 48%;
	float: left;
}

.fp_box_5 ul li:nth-child(2) {
	float: right;
}

.fp_box_5 ul li:nth-child(3) {
	float: right;
}

.fp_box_5 ul li:nth-child(4) {
	float: left;
	margin-top: -100px;
}

.fp_box_5 ul li img {
	width: 100%;
	max-height: 600px;
	display: block;
	object-fit: cover;
}

.fp_box_5 ul li {
	max-height: 600px;
	min-height: 600px;
}

.fp_box_5 ul li span {
	font-size: 30px;
	color: #59aa33;
	display: block;
}

.fp_box_5 ul li h3 {
	font-size: 30px;
	line-height: 1.5;
	color: #1b1b1b;
	text-align: left;
	margin-bottom: 30px;
	margin-top: 30px;
}

.fp_box_5 ul li p {
	font-size: 18px;
	color: #333333;
	text-align: left;
	line-height: 1.4;
}

.fp_box_5 ul li a {
	display: inline-block;
	color: #5aab32;
	font-size: 22px;
	margin-top: 60px;
	border-bottom: 1px solid #5aab32;
}

.fp_box_6 {
	background: #f6f6f6;
	padding: 70px 0;
	position: relative;
}

.fp_box_6 .left {
	width: 50%;
	float: left;
	padding: 30px 0;

}

.fp_box_6 .left .text {
	background: #5aab32;
	height: 570px;
}

.fp_box_6 .rii {
	width: 50%;
	float: right;
}

.fp_box_6 .rii img {
	width: 100%;
	display: block;
	height: 630px;
	object-fit: cover;
}

.fp_box_6 .left .text {
	padding: 50px;
	color: #fff;
}

.fp_box_6 .left .text span {
	font-size: 30px;
	display: block;
}

.fp_box_6 .left .text h3 {
	font-size: 30px;
	display: block;
	font-weight: bold;
	margin-bottom: 20px;
}

.fp_box_6 .left .text p {
	font-size: 18px;
	color: #ffffff;
	text-align: left;
}

.fp_box_6 .rii .swiper-slide {
	position: relative;
}

.fp_box_6 .rii .swiper-slide p {
	position: absolute;
	bottom: 0;
	right: 0;
	width: 60%;
	height: 50px;
	text-align: center;
	line-height: 50px;
	color: #fff;
	font-size: 20px;
	background: #106db0;
}

.fp_box_6 .swiper-button-next.swiper-button-white,
.swiper-container-rtl .swiper-button-prev.swiper-button-white {
	width: 50px;
	height: 50px;
	background: url(../images/you.png) no-repeat center;
	background-size: 100% 100%;
	position: absolute;
	top: 78%;
	right: 0;
	left: 10%;
}

.fp_box_6 .swiper-button-prev.swiper-button-white,
.swiper-container-rtl .swiper-button-next.swiper-button-white {
	width: 50px;
	height: 50px;
	background: url(../images/zuo.png) no-repeat center;
	background-size: 100% 100%;
	position: absolute;
	top: 78%;
	left: 5%;
}

.fp_box_7 {
	padding: 120px 0;
}

.fp_box_7 .f7title .zuo {
	float: left;
}

.fp_box_7 .f7title .zuo span {
	font-size: 30px;
	color: #59aa33;
}

.fp_box_7 .f7title .zuo h3 {
	font-size: 36px;
	color: #323232;
	font-weight: bold;
}

.fp_box_7 .f7title a {
	float: right;
}

.fp_box_7 .f7title a {
	display: inline-block;
	float: right;
	padding: 12px 30px;
	background-color: #5aab32;
	color: #fff;
	text-decoration: none;
	border-radius: 25px;
	font-size: 18px;
	font-weight: 500;
	transition: all 0.3s ease;
	position: relative;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-top: 30px;
}

.fp_box_7 .f7title a::after {
	content: '▶';
	margin-left: 8px;
	font-size: 12px;
	transition: transform 0.3s ease;
}

.fp_box_7 .f7titlea:hover {
	background-color: #5aab32;
	color: white;
	transform: translateY(-2px);
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.f7title {
	padding-bottom: 20px;
	border-bottom: 1px solid #999;
}

.fp_box_7 ul {
	margin-top: 50px;
	margin-left: -35px;
	margin-right: -35px;
}

.fp_box_7 ul li {
	width: 33.33%;
	float: left;
	padding: 0 35px;
}

.fp_box_7 ul li .pic {
	width: 100%;
	height: 310px;
	overflow: hidden;
}

.fp_box_7 ul li .pic img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.3s ease;
}

.fp_box_7 ul li:hover .pic img {
	transform: scale(1.1);
}

.fp_box_7 ul li .text span {
	font-size: 18px;
	color: #5d5d5d;
	padding: 20px 0;
	display: block;
	text-align: left;
}

.fp_box_7 ul li .text h3 {
	font-size: 22px;
	color: #272727;
	text-align: left;
}

.fp_box_7 ul li .text p {
	margin-top: 20px;
	text-align: left;
	font-size: 16px;
	color: #b8b8b8;
}


/* fp_box_8 contact section */
.fp_box_8 {
	background: #4c9f4a;
	color: #fff;
	padding: 60px 0;
	width: 90%;
	position: relative;
	z-index: 2;
}

.fp_box_8 .contact-section {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.fp_box_8 .contact-text h4 {
	font-size: 16px;
	letter-spacing: .5px;
	opacity: .9;
}

.fp_box_8 .contact-text h2 {
	font-size: 28px;
	margin: 8px 0 24px;
	font-weight: 700;
}

.fp_box_8 .contact-form .form-row {
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
	align-items: flex-end;
}

.fp_box_8 .contact-form .form-group {
	flex: 1 1 30%;
	min-width: 220px;
	position: relative;
}

.fp_box_8 .contact-form .message-group {
	display: flex;
	align-items: flex-end;
	gap: 15px;
}

.fp_box_8 .contact-form input,
.fp_box_8 .contact-form textarea {
	width: 100%;
	background: transparent;
	border: none;
	border-bottom: 2px solid rgba(255, 255, 255, .6);
	color: #fff;
	padding: 10px 0;
	outline: none;
	font-size: 16px;
	height: 45px;
	resize: none;
}

.fp_box_8 .contact-form input::placeholder,
.fp_box_8 .contact-form textarea::placeholder {
	color: rgba(255, 255, 255, .9);
}

.fp_box_8 .contact-form input:focus,
.fp_box_8 .contact-form textarea:focus {
	border-bottom-color: #fff;
}

.fp_box_8 .submit-btn {
	background: transparent;
	border: none;
	padding: 0;
	cursor: pointer;
	flex-shrink: 0;
}

.fp_box_8 .submit-btn img {
	width: 22px;
	height: 22px;
	filter: brightness(0) invert(1);
	vertical-align: middle;
}

.fp_box_8 .submit-btn:hover img {
	transform: translateX(3px);
	transition: transform .2s ease;
}

footer {
	background: #0d0d0d;
	padding-top: 330px;
	padding-bottom: 80px;
}


@media (max-width: 768px) {
	.fp_box_8 .contact-form .form-row {
		gap: 20px;
	}
}

footer {
	color: #ffffff;
	padding: 60px 0 30px;
	padding-top: 200px;
	margin-top: -100px;
}


.footer-content {
	display: flex;
	justify-content: space-between;
	gap: 40px;
}

.footer-column {
	flex: 1;
}

.footer-column.company-info {
	flex: 3;
	max-width: 400px;
}

.footer-column.related-products {
	flex: 1.5;
}

.footer-logo {
	margin-bottom: 20px;
}

.footer-logo img {
	width: 80%;
}

.company-desc {
	font-size: 14px;
	line-height: 1.6;
	margin-bottom: 15px;
	color: #cccccc;
	text-align: left;
}

.social-icons {
	display: flex;
	gap: 10px;
	margin-top: 20px;
}

.social-icon {
	width: 30px;
	height: 30px;
	border-radius: 4px;
	transition: background-color 0.3s ease;
}

.social-icon:hover {
	background-color: #777;
}

.footer-column h3 {
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 20px;
	color: #ffffff;
	text-transform: uppercase;
	text-align: left;
}

.footer-column ul {
	list-style: none;
	padding: 0;
	margin: 0;
	text-align: left;
}

.footer-column ul li {
	margin-bottom: 8px;
}

.footer-column ul li a {
	color: #cccccc;
	font-size: 14px;
	text-decoration: none;
	transition: all 0.3s ease;
	position: relative;
	display: inline-block;
}

.footer-column ul li a:hover {
	color: #ffffff;
	transform: translateX(5px);
}

.footer-column ul li a::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 0;
	height: 1px;
	background-color: #ffffff;
	transition: width 0.3s ease;
}

.footer-column ul li a:hover::after {
	width: 100%;
}

.product-links {
	display: flex;
	gap: 30px;
}

.product-group {
	flex: 1;
}

.contact-details p {
	font-size: 14px;
	line-height: 1.6;
	margin-bottom: 8px;
	color: #cccccc;
	text-align: left;
}

/* Responsive Design */
/* 1700px */
@media (max-width: 1700px) {

	.footer-content {
		gap: 35px;
	}
}

/* 1500px */
@media (max-width: 1500px) {

	.footer-content {
		gap: 30px;
	}

	.footer-column.company-info {
		max-width: 280px;
	}
}

/* 1300px */
@media (max-width: 1300px) {

	.footer-content {
		gap: 25px;
	}

	.footer-column.company-info {
		max-width: 260px;
	}

	.product-links {
		gap: 20px;
	}
}

/* 1200px */
@media (max-width: 1200px) {

	.footer-content {
		gap: 20px;
	}

	.footer-column.company-info {
		max-width: 240px;
	}

	.footer-logo {
		width: 180px;
		height: 55px;
	}
}

/* 1000px */
@media (max-width: 1000px) {
	.footer-content {
		flex-wrap: wrap;
		gap: 30px;
	}

	.footer-column {
		flex: 1 1 45%;
		min-width: 250px;
	}

	.footer-column.company-info {
		flex: 1 1 100%;
		max-width: none;
		margin-bottom: 20px;
	}

	.product-links {
		flex-direction: column;
		gap: 15px;
	}
}

/* Footer Bottom */
.footer_dibu {
	background-color: #000000;
	padding: 15px 0;
	border-top: 1px solid #333;
}

.footer-bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 0 auto;
	padding: 0 20px;
}

.copyright p {
	color: #ffffff;
	font-size: 14px;
	margin: 0;
}

.footer-links {
	display: flex;
	gap: 30px;
}

.footer-links a {
	color: #ffffff;
	font-size: 14px;
	text-decoration: none;
	transition: color 0.3s ease;
}

.footer-links a:hover {
	color: #cccccc;
}

.return-top {
	cursor: pointer;
}

/* Mobile */
@media (max-width: 768px) {
	footer {
		padding: 40px 0 20px;
	}

	.footer-content {
		flex-direction: column;
		gap: 30px;
	}

	.footer-column {
		flex: none;
	}

	.footer-logo {
		width: 160px;
		height: 50px;
	}

	.product-links {
		flex-direction: column;
	}

	.social-icons {
		justify-content: center;
	}

	.footer-bottom {
		flex-direction: column;
		gap: 15px;
		text-align: center;
	}

	.footer-links {
		gap: 20px;
	}
}

@media only screen and (max-width:1700px) {
	.fp_box_5 ul li p {
		font-size: 16px;
		line-height:1.5;
	}

	.fp_box_1 .left {
		padding-top: 20px;
	}

	.fp_box_1 .left h3 {
		color: #fff;
		font-size: 42px;
	}

	.picwen .text h3 {
		font-size: 28px;
	}

	.picwen .text h4 {
		font-size: 28px;
	}

	.picwen .text p {
		font-size: 16px;
	}

	.fp_box_4 ul li>div p {
		font-size: 16px;
	}
}

@media only screen and (max-width:1600px) {
	.logo img {
		height: 50px;
		margin-top: 5px;
	}

	.nav-link {
		font-size: 14px;
	}

	.banner .swiper-slide .text h3 {
		font-size: 42px;
	}

	.banner .swiper-slide .text p {
		font-size: 38px;
	}

	.rii_list ul li .pic {
		height: 180px;
	}

	.fp_box_5 ul li h3 {
		font-size: 24px;
		line-height: 1.2;
		margin-bottom: 30px;
		margin-top: 0;
	}

	.fp_box_6 .left .text p {
		font-size: 17px;
		color: #ffffff;
		text-align: left;
	}

	.fp_box_6 .left .text h3 {
		font-size: 22px;
		text-align: left;
		line-height: 28px;
		display: block;
		font-weight: bold;
		margin-bottom: 20px;
	}
}

@media only screen and (max-width:1500px) {
	.fp_box_1 .left h3 {
		color: #fff;
		font-size: 32px;
	}

	.fp_box_1 .shzilist {
		width: 70%;
	}

	.fp_box_1 {
		width: 80%;
		height: 240px;
		background: #106db0;
		margin-top: -120px;
		position: relative;
		z-index: 99;
		display: flex;
		justify-content: space-between;
		padding: 40px 50px 0 50px;
	}

	.picwen .text h3 {
		font-size: 24px;
		margin-bottom: 0;
	}

	.picwen .text h4 {
		font-size: 20px;
		line-height: 30px;
		text-align: left;
	}

	.title h3 {
		font-size: 24px;
		color: #1f1f1f;
		text-transform: uppercase;
		display: inline-block;
		float: left;
	}

	.product-category {
		width: 250px;
		border: 1px solid #e0e0e0;
		font-family: Arial, sans-serif;
	}

	.fp_box_4 ul li>div p {
		font-size: 14px;
	}

	.fp_box_4 ul li>div {
		background: #fff;
		min-height: 290px;
		padding: 20px;
	}

	.nav-pc {
		float: right;
		margin-left: 30px;
		margin-top: 45px;
		margin-right: 50px;
	}

	.search-container {
		padding: 8px 5px;
	}
}

@media only screen and (max-width:1400px) {
	.picwen .text p {
		font-size: 16px;
		line-height: 1.3;
	}

	.fp_box_4 ul li>div {
		background: #fff;
		min-height: 330px;
	}

	.fp_box_4 {
		padding-top: 40px;
	}

	.fp_box_5 ul li {
		max-height: 500px;
		min-height: 500px;
	}

	.fp_box_5 ul li h3 {
		font-size: 24px;
		line-height: 30px;
		margin-bottom: 30px;
		margin-top: 0;
	}

	.fp_box_5 ul li p {
		font-size: 16px;
		line-height: 20px;
	}

	.nav-item {
		margin-left: 15px;
	}

	.sousuo input {
		width: 110px;
	}

	.fp_box_1 .shzilist ul li h3 {
		font-size: 60px;
	}

}

@media only screen and (max-width:1200px) {


	.nav-item {
		margin-left: 20px;
	}

	.header-container {
		height: 80px;
	}

	.header {
		height: 80px;
	}

	.logo img {
		height: 39px;
		margin-top: 5px;
	}

	.logo {
		float: left;
		margin-top: 15px;
	}

	.nav-pc {
		margin-top: 25px;
	}

	.sousuo {
		margin-top: 20px;
	}

	.yuyantab {
		margin-top: 18px;
	}

	.banner {
		margin-top: 80px;
	}

	.banner .swiper-slide .text h3 {
		font-size: 30px;
	}

	.banner .swiper-slide .text p {
		font-size: 24px;
	}

	.banner .swiper-slide .text span {
		font-size: 16px;
	}

	.fp_box_1 .shzilist ul li p {
		font-size: 18px;
	}

	.picwen .text {
		padding: 20px;
	}

	.title h3 {
		font-size: 20px;
	}

	.product-category {
		width: 200px;
	}

	.rii_list ul li .pic {
		height: 180px;
	}

	.rii_list ul li p {
		font-size: 14px;
	}

	.rii_list ul li .pic img {
		max-width: 50%;
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		transition: all 0.3s ease;
	}

	.fp_box_5 ul li {
		max-height: 450px;
		min-height: 450px;
	}

	.fp_box_5 ul li:nth-child(4) {
		float: left;
		margin-top: -30px;
	}

	.fp_box_4 ul li>div h3 {
		font-size: 20px;
		color: #333;
		text-align: left;
		margin: 10px 0;
		font-weight: bold;
	}

	.fp_box_6 .left .text p {
		font-size: 15px;
		color: #ffffff;
		text-align: left;
	}

	.fp_box_6 .swiper-button-next.swiper-button-white,
	.swiper-container-rtl .swiper-button-prev.swiper-button-white {
		width: 40px;
		height: 40px;
		background: url(../images/you.png) no-repeat center;
		background-size: 100% 100%;
		position: absolute;
		top: 78%;
		right: 0;
		left: 12%;
	}

	.fp_box_6 .swiper-button-prev.swiper-button-white,
	.swiper-container-rtl .swiper-button-next.swiper-button-white {
		width: 40px;
		height: 40px;
		background: url(../images/zuo.png) no-repeat center;
		background-size: 100% 100%;
		position: absolute;
		top: 78%;
		left: 6.5%;
	}

	.fp_box_6 .rii .swiper-slide p {
		font-size: 14px;
	}

	.fp_box_7 ul li .pic {
		height: 200px;
	}

	.fp_box_7 ul li .text h3 {
		font-size: 16px;
		color: #272727;
		text-align: left;
	}

	.fp_box_7 ul li .text p {
		margin-top: 20px;
		text-align: left;
		font-size: 12px;
		color: #b8b8b8;
	}
}

@media only screen and (max-width: 1000px) {
	.nav-item {
		margin-left: 15px;
	}

	.nav-link {
		font-size: 14px;
	}
}


@media only screen and (max-width: 750px) {
	.nav-pc {
		display: none;
	}

	.sousuo {
		display: none;
	}

	.yuyantab {
		display: none;
	}

	.menu-toggle {
		display: block;
		background: none;
		border: none;
		cursor: pointer;
		width: 30px;
		height: 24px;
		position: absolute;
		top: 20px;
		right: 20px;
		z-index: 1001;
	}

	.header-container {
		padding: 10px 15px;
		box-sizing: border-box;
		width: 100%;
	}

	.logo img {
		height: 30px;
	}

	.header {
		height: 60px;
	}

	.logo {
		float: left;
		margin-top: 0px;
	}

	.banner {
		margin-top: 60px;
	}

	.fp_box_1 {
		width: 100%;
		height: auto;
		background: #106db0;
		margin-top: -0px;
		position: relative;
		z-index: 99;
		display: flex;
		justify-content: space-between;
		padding: 30px;
	}

	.banner .swiper-slide .text h3 {
		font-size: 18px;
	}

	.banner .swiper-slide .text p {
		font-size: 12px;
	}

	.banner .swiper-slide .text span {
		font-size: 8px;
	}

	.banner .swiper-container-horizontal>.swiper-pagination-bullets,
	.swiper-pagination-custom,
	.swiper-pagination-fraction {
		bottom: 10px;
		left: 0;
		width: 100%;
		text-align: right;
		padding-right: 5%;
	}

	.banner .swiper-pagination-bullet {
		width: 8px;
		height: 8px;
		display: inline-block;
		border-radius: 100%;
		background: #fff;
		opacity: 1;
	}

	.banner img {
		display: block;
	}

	.fp_box_1 .left {
		width: 100%;
		float: none;
	}

	.fp_box_1 .shzilist {
		width: 100%;
		float: none;
	}

	.fp_box_1 {
		display: block;
		height: 260px;
		padding: 20px;
	}

	.fp_box_1 .shzilist ul li h3 {
		font-size: 42px;
	}

	.fp_box_1 .shzilist ul li p {
		font-size: 14px;
	}

	.fp_box_2 {
		padding: 20px 0 0 0;
		width: 100%;
		padding-left: 1%;
		padding-right: 1%;
		float: right;
		position: relative;
	}

	.picwen .text {
		width: 100%;
		height: 100%;
		position: absolute;
		bottom: 0;
		left: 0;
		background: rgb(255, 255, 255, 0.8);
		padding: 10px;
		box-sizing: border-box;
	}

	.picwen {
		height: 400px;
	}

	.picwen img {
		height: 100%;
		object-fit: cover;
	}

	.picwen .text h3 {
		font-size: 20px;
		margin-bottom: 0;
	}

	.picwen .text h4 {
		font-size: 16px;
		text-align: left;
	}

	.fp_box_2::after {
		display: block;
		content: "";
		width: 100%;
		height: 300px;
		background: #5aab32;
		position: absolute;
		bottom: 0;
		left: 0;
		z-index: -1;
	}

	.fp_box_2 a {
		font-size: 12px;
		margin: 25px 0;
	}

	.banner .swiper-slide .text {
		text-align: left;
	}

	.fp_box_3 {
		padding: 25px 0;
		background: #f4f4f4;
	}

	.title h3 {
		font-size: 12px;
		text-align: left;
	}

	.title a {
		display: inline-block;
		float: left;
		padding: 8px 15px;
		background-color: #fff;
		color: #5aab32;
		text-decoration: none;
		border-radius: 25px;
		font-size: 12px;
		font-weight: 500;
		transition: all 0.3s ease;
		position: relative;
		text-transform: uppercase;
		letter-spacing: 1px;
		margin-top: 10px;
	}

	.left_nav {
		display: none;
	}

	.rii_list {
		width: 100%;
		float: right;
		padding: 0px;
		padding-top: 0;
	}

	.rii_list ul {
		margin-left: -10px;
		margin-right: -10px;
	}

	.rii_list ul li {
		width: 50%;
		float: left;
		padding: 0 10px;
		margin-bottom: 20px;
	}

	.rii_list ul li .pic {
		height: 150px;
	}

	.fp_box_4 h4 {
		font-size: 26px;
	}

	.fp_box_4 ul li {
		width: 100%;
		float: left;
		padding: 0 20px;
		margin-bottom: 20px;
	}

	.fp_box_4 ul li>div {
		background: #fff;
		min-height: auto;
		padding: 15px;
		padding-bottom: 25px;
	}

	.fp_box_5 ul li {
		float: none;
		width: 100%;
	}

	.fp_box_5 ul li span {
		font-size: 28px;
		color: #59aa33;
		display: block;
	}

	.fp_box_5 ul li h3 {
		font-size: 18px;
		margin-bottom: 30px;
		margin-top: 0;
	}

	.fp_box_5 ul li p {
		font-size: 14px;
	}

	.fp_box_5 ul li a {
		display: inline-block;
		color: #5aab32;
		font-size: 20px;
		margin-top: 25px;
		border-bottom: 1px solid #5aab32;
	}

	.fp_box_5 ul li img {
		width: 100%;
		max-height: auto;
		display: block;
		object-fit: cover;
	}

	.fp_box_5 ul li {
		max-height: auto;
		min-height: auto;
		margin-bottom: 20px;
	}

	.fp_box_5 ul li:nth-child(4) {
		float: left;
		margin-top: 0;
	}

	.fp_box_5 {
		padding: 20px 0;
	}

	.fp_box_6 {
		background: #f6f6f6;
		padding: 20px 0;
		position: relative;
	}

	.fp_box_6 .left {
		width: 100%;
		float: left;
		padding: 15px 0;
	}

	.fp_box_6 .left .text {
		padding: 20px;
		color: #fff;
		padding-bottom: 80px;
	}

	.fp_box_6 .left .text {
		background: #5aab32;
		height: auto;
	}

	.fp_box_6 .rii {
		width: 100%;
		float: right;
	}

	.fp_box_6 .rii img {
		width: 100%;
		display: block;
		height: 260px;
		object-fit: cover;
		display: block;
	}

	.fp_box_6 .left {
		padding-bottom: 0;
		padding-top: 0;
	}

	.fp_box_6 .swiper-button-prev.swiper-button-white,
	.swiper-container-rtl .swiper-button-next.swiper-button-white {
		width: 40px;
		height: 40px;
		background: url(../images/zuo.png) no-repeat center;
		background-size: 100% 100%;
		position: absolute;
		top: 58%;
		left: 4%;
	}

	.fp_box_6 .swiper-button-next.swiper-button-white,
	.swiper-container-rtl .swiper-button-prev.swiper-button-white {
		width: 40px;
		height: 40px;
		background: url(../images/you.png) no-repeat center;
		background-size: 100% 100%;
		position: absolute;
		top: 58%;
		right: 0;
		left: 16%;
	}

	.fp_box_6 .rii .swiper-slide p {
		width: 100%;
		font-size: 16px;
	}

	.fp_box_6 {
		padding-top: 0;
	}

	.fp_box_7 {
		padding: 20px 0;
	}

	.fp_box_7 .f7title .zuo span {
		font-size: 24px;
		color: #59aa33;
	}

	.fp_box_7 .f7title .zuo h3 {
		font-size: 22px;
		color: #323232;
		font-weight: bold;
	}

	.fp_box_7 .f7title a {
		display: inline-block;
		float: right;
		padding: 8px 12px;
		background-color: #5aab32;
		color: #fff;
		text-decoration: none;
		border-radius: 25px;
		font-size: 10px;
		font-weight: 500;
		transition: all 0.3s ease;
		position: relative;
		text-transform: uppercase;
		letter-spacing: 1px;
		margin-top: 25px;
	}

	.fp_box_7 ul li {
		width: 100%;
		float: left;
		padding: 0 35px;
		margin-bottom: 20px;
	}

	.fp_box_7 ul {
		margin-top: 10px;
	}

	.fp_box_8 {
		width: 100%;
	}

	.fp_box_8 .contact-text h2 {
		font-size: 18px;
		margin: 8px 0 24px;
		font-weight: 700;
	}

	.fp_box_8 {
		background: #4c9f4a;
		color: #fff;
		padding: 20px 0;
		position: relative;
		z-index: 2;
	}

	footer {
		color: #ffffff;
		padding: 60px 0 30px;
		padding-top: 30px;
		margin-top: 20px;
	}

	.fp_box_1 .left {
		padding-top: 0px;
	}

	.fp_box_1 {
		display: block;
		height: 222px;
		padding: 20px;
	}
}