	@font-face {
		font-family: 'FontAwesome';
		src: url('/template/default/font-awesome-4.7.0/fonts/fontawesome-webfont.eot?v=4.7.0');
		src: url('/template/default/font-awesome-4.7.0/fonts/fontawesome-webfont.eot?#iefix&v=4.7.0') format('embedded-opentype'), url('/template/default/font-awesome-4.7.0/fonts/fontawesome-webfont.woff2?v=4.7.0') format('woff2'), url('/template/default/font-awesome-4.7.0/fonts/fontawesome-webfont.woff?v=4.7.0') format('woff'), url('/template/default/font-awesome-4.7.0/fonts/fontawesome-webfont.ttf?v=4.7.0') format('truetype'), url('../fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular') format('svg');
		font-weight: normal;
		font-style: normal;
	}

	* {
		margin: 0;
		padding: 0;
		box-sizing: border-box;
	}

	body {
		/* color: #333; */
		line-height: 1.6;
		font-family: "FontAwesome";
	}

	textarea {
		color: #333;
		line-height: 1.6;
		font-family: "FontAwesome";
	}

	a {
		text-decoration: none;
		transition: all 0.3s ease;
	}

	a:hover {
		color: #004499;
	}

	.container {
		max-width: 1200px;
		margin: 0 auto;
		padding: 0 15px;
	}

	/* 导航栏 */
	header {
		background-color: #fff;
		box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
		position: fixed;
		width: 100%;
		top: 0;
		z-index: 1000;
	}

	nav {
		display: flex;
		justify-content: space-between;
		align-items: center;
		padding: 20px 0;
	}

	.logo {
		font-size: 24px;
		font-weight: bold;
		color: #0066cc;
	}

	.nav-links {
		display: flex;
		list-style: none;
	}

	.nav-links li {
		margin-left: 30px;
	}

	.nav-links a {
		color: #333;
		font-weight: 500;

	}

	.nav-links a:hover {
		color: #0066cc;
	}

	.nav-links li .active {
		color: #0066cc;
	}

	.nav-s {
		display: block;
		margin-top: 10px;
	}


	.btn {
		display: inline-block;
		padding: 10px 20px;
		border-radius: 4px;
		font-weight: 500;
		border: none;
		background-color: #0066cc;
		color: white;
	}

	.lbtn {
		display: inline-block;
		padding: 10px 20px;
		border-radius: 4px;
		font-weight: 500;
		border: none;
		background-color: white;
		color: #0066cc;
	}

	.container .lbtn:hover {
		background-color: #0066cc;
		color: white;

	}

	.mfzx {
		display: inline-block;
		background-color: #0066cc;
		color: white !important;
		padding: 10px 20px;
		border-radius: 4px;
		font-weight: 500;
	}

	.mfzx:hover {
		background-color: #004499;
	}

	.btn:hover {
		background-color: #004499;
		color: white;
	}


	.banner {
		background: linear-gradient(135deg, #0066cc, #0099ff);
		color: white;
		padding: 150px 0 100px;
		text-align: center;
	}

	.banner img {
		width: 10%;
		float: left;
		margin-left: 15%;
	}

	.banner h1 {
		font-size: 42px;
		margin-bottom: 20px;
	}

	.banner p {
		font-size: 18px;
		max-width: 700px;
		margin: 0 auto 30px;
	}

	/* 服务区域 */
	.services {
		padding: 80px 0;
	}

	.section-title {
		text-align: center;
		margin-bottom: 50px;
	}

	.section-title h2 {
		font-size: 32px;
		color: #0066cc;
		margin-bottom: 15px;
	}

	.services-grid {
		display: grid;
		grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
		gap: 30px;
	}

	.service-card {
		background: white;
		border-radius: 8px;
		padding: 30px;
		box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
		transition: transform 0.3s ease;
	}

	.service-card:hover {
		transform: translateY(-10px);
	}

	.service-icon {
		font-size: 40px;
		color: #0066cc;
		margin-bottom: 20px;
	}

	.service-icon img {
		height: 50px;
	}

	.service-card h3 {
		font-size: 22px;
		margin-bottom: 15px;
	}

	.service-card p {
		color: #bbb;
	}

	/* 作品展示 */
	.portfolio {
		padding: 80px 0;
		background-color: #f9f9f9;
	}

	.portfolio-grid {
		display: grid;
		grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
		gap: 30px;
	}

	.portfolio-item {
		position: relative;
		overflow: hidden;
		border-radius: 8px;
		height: 250px;
	}

	.portfolio-item img {
		width: 100%;
		height: 100%;
		object-fit: cover;
		transition: transform 0.5s ease;
	}

	.portfolio-item:hover img {
		transform: scale(1.1);
	}

	.portfolio-overlay {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: rgba(0, 0, 0, 0.7);
		color: white;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		opacity: 0;
		transition: opacity 0.3s ease;
	}

	.portfolio-item:hover .portfolio-overlay {
		opacity: 1;
	}

	/* 联系我们 */
	.contact {
		padding: 80px 0;
	}

	.contact-container {
		display: grid;
		grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
		gap: 50px;
		width: 70%;
         margin-left: 15%;
}
	}

	.contact-info h3 {
		font-size: 24px;
		margin-bottom: 20px;
		color: #0066cc;
	}

	.contact-info p {
		margin-bottom: 30px;
	}

	.contact-info h2 i {
		padding-right: 10px;
	}

	.contact-details div {
		margin-bottom: 15px;
		display: flex;
		align-items: center;
	}

	.contact-details img {
		margin-right: 10px;
		color: #0066cc;
		font-size: 20px;
		width: 20px;
	}

	.contact-form input,
	.contact-form textarea {
		width: 100%;
		padding: 12px;
		margin-bottom: 20px;
		border: 1px solid #ddd;
		border-radius: 4px;
		font-size: 14px;
	}

	.contact-form textarea {
		height: 150px;
		resize: vertical;
	}

	.contact-form .yanzhengma {
		width: 75% !important;

	}

	.contact-form img {
		margin-bottom: 20px;
	}

	.contact-form div {
		display: grid;
		grid-auto-flow: column;
		/* 横向排列 */
		align-items: center;
		/* 垂直居中 */
		gap: 10px;
	}

	.contact-form {
		color: #ddd;
	}

	/* 页脚 */
	footer {
		background-color: #222;
		color: #fff;
		padding: 50px 0 20px;
	}

	.footer-container {
		display: grid;
		grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
		gap: 30px;
		margin-bottom: 30px;
	}

	.footer-col h2 {
		color: #fff;
		margin-bottom: 20px;
		font-size: 20px;
		padding-bottom: 10px;
	}

	.footer-col h3 {
		color: #fff;
		margin-bottom: 20px;
		font-size: 18px;
	}

	.footer-col ul {
		list-style: none;
	}

	.footer-col ul li {
		margin-bottom: 10px;
	}

	.footer-col a {
		color: #bbb;
	}

	.footer-col a:hover {
		color: #fff;
	}

	.footer-col img {
		width: 150px;
	}

	.copyright {
		text-align: center;
		padding-top: 20px;
		border-top: 1px solid #444;
		color: #bbb;
		font-size: 14px;
	}

	.copyright a {
		color: #444;
	}

	.news-list-section {
		padding: 80px 0;
	}

	.section-header {
		display: flex;
		justify-content: space-between;
		align-items: center;
		margin-bottom: 20px;
		padding-bottom: 10px;
		border-bottom: 1px solid #f0f0f0;
	}

	.section-title {
		font-size: 20px;
		font-weight: 600;
		color: #222;
		position: relative;
		padding-left: 12px;
	}

	.section-title::before {
		content: '';
		position: absolute;
		left: 0;
		top: 50%;
		transform: translateY(-50%);
		width: 3px;
		height: 30px;
		background-color: #0066cc;
		border-radius: 1.5px;
	}

	.section-title::after {
		content: '';
		position: absolute;
		right: 0;
		top: 50%;
		transform: translateY(-50%);
		width: 3px;
		height: 30px;
		background-color: #0066cc;
		border-radius: 1.5px;
	}

	/* 新闻列表样式 */
	.news-list {
		list-style: none;
	}

	.news-item {
		padding: 15px 0;
		border-bottom: 1px dashed #f0f0f0;
		display: flex;
		justify-content: space-between;
	}

	.news-item:last-child {
		border-bottom: none;
	}

	.news-item-content {
		flex: 1;
		padding-right: 15px;
	}

	.news-title {
		font-size: 16px;
		font-weight: 500;
		margin-bottom: 5px;
		line-height: 1.5;
		display: -webkit-box;
		-webkit-line-clamp: 1;
		-webkit-box-orient: vertical;
		overflow: hidden;
	}

	.news-title a:hover {
		color: #444;
	}

	.news-meta {
		display: flex;
		font-size: 12px;
		color: #999;
	}

	.news-date {
		margin-right: 15px;
	}

	.news-category {
		color: #1890ff;
		background-color: #e6f7ff;
		padding: 1px 6px;
		border-radius: 2px;
		font-size: 11px;
	}

	.news-thumb {
		width: 80px;
		height: 60px;
		border-radius: 3px;
		object-fit: cover;
		flex-shrink: 0;
	}

	.news-cont {
		font-size: 14px;
		color: #999;
	}


	.page-header {
		text-align: center;
		padding: 40px 0;
		background-color: #f8f9fa;
		margin-bottom: 30px;
	}

	.page-header h1 {
		font-size: 2.5rem;
		color: #2c3e50;
		margin-bottom: 10px;
	}

	.page-header p {
		font-size: 1.2rem;
		color: #7f8c8d;
	}

	/* 联系信息区域 */
	.contact-container {
		display: flex;
		flex-wrap: wrap;
		gap: 30px;
		margin: 80px 15%;
	}

	.contact-info {
		flex: 1;
		min-width: 300px;
	}

	.info-card {
		background: #fff;
		border-radius: 8px;
		box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
		padding: 25px;
		margin-bottom: 20px;
	}

	.info-card h2 {
		font-size: 1.3rem;
		color: #3498db;
		margin-top: 0;
		margin-bottom: 15px;
		display: flex;
		align-items: center;
	}

	.info-card h2 .icon {
		margin-right: 10px;
	}

	.info-card p {
		margin: 8px 0;
	}

	/* 联系表单 */
	.contact-form {
		flex: 1;
		min-width: 300px;
		background: #fff;
		border-radius: 8px;
		box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
		padding: 25px;
	}

	.contact-form h2 {
		font-size: 1.5rem;
		color: #2c3e50;
		margin-top: 0;
		margin-bottom: 20px;
	}

	.form-group {
		margin-bottom: 20px;
	}

	.form-group label {
		display: block;
		margin-bottom: 8px;
		font-weight: 600;
		color: #2c3e50;
	}

	.form-group input,
	.form-group select,
	.form-group textarea {
		width: 100%;
		padding: 10px;
		border: 1px solid #ddd;
		border-radius: 4px;
		font-size: 1rem;
	}

	.form-group textarea {
		resize: vertical;
	}

	.submit-btn {
		background-color: #3498db;
		color: white;
		border: none;
		padding: 12px 25px;
		font-size: 1rem;
		border-radius: 4px;
		cursor: pointer;
		transition: background-color 0.3s;
	}

	.submit-btn:hover {
		background-color: #2980b9;
	}

	/* 地图区域 */
	.map-section {
		margin-bottom: 40px;
	}

	.map-section h2 {
		text-align: center;
		font-size: 1.8rem;
		color: #2c3e50;
		margin-bottom: 20px;
	}

	.map-placeholder {
		height: 295px;
		background: #eee;
		border-radius: 8px;
		overflow: hidden;
	}

	.map-placeholder img {
		width: 80%;
		height: 100%;
		object-fit: cover;
		margin-left: 10%;
	}

	/* 页脚 */
	.page-footer {
		text-align: center;
		padding: 20px 0;
		color: #7f8c8d;
		font-size: 0.9rem;
		border-top: 1px solid #eee;
	}

	.contact_cont {
		background: #fff;
		border-radius: 8px;
		box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
		padding: 25px;
		margin-bottom: 20px;
	}

	.contact_box {
		width: 70%;
		margin-left: 15%;
		padding-top: 90px;
	}

	.contact_box h1 {
		text-align: center;
		padding-bottom: 20px;
		color: #2c3e50;
	}

	.position {
		padding: 25px 0;
		color: #999 !important;
	}

	.position a {
		color: #999 !important;
	}

	.container_new {
		max-width: 70%;
		margin: 0 auto;
		/* padding: 0 15px; */
	}

	.news-item-content h2 {
		font-size: 20px;
	}

	.pagination {
		margin: 0 auto;
		padding: 20px 0;
	}

	.page-item,
	.page-num {
		background-color: #444;
		color: white;
		margin: 0 10px;
		padding: 10px;
		border-radius: 5px;
	}



	.page-item:hover,
	.page-num:hover,
	.page-num-current {
		background-color: #1890ff;
		color: white !important;
	}

	.news-title a {
		color: #0066cc;
	}

	.news-cont {
		width: 80%;
	}

	.product-controls {
		display: flex;
		justify-content: space-between;
		align-items: center;
		flex-wrap: wrap;
		gap: 20px;
		margin-bottom: 30px;
		padding: 15px;
		background-color: #fff;
		border-radius: 8px;
		box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
	}

	.search-box {
		display: flex;
		flex: 1;
		min-width: 250px;
	}

	.search-box input {
		flex: 1;
		padding: 10px 15px;
		border: 1px solid #ddd;
		border-radius: 4px 0 0 4px;
		font-size: 1rem;
	}

	.search-box button {
		padding: 10px 20px;
		background-color: #3498db;
		color: white;
		border: none;
		border-radius: 0 4px 4px 0;
		cursor: pointer;
		transition: background-color 0.3s;
	}

	.search-box button:hover {
		background-color: #2980b9;
	}

	.filter-options {
		display: flex;
		gap: 15px;
		flex-wrap: wrap;
	}

	.filter-options select {
		padding: 10px;
		border: 1px solid #ddd;
		border-radius: 4px;
		font-size: 0.9rem;
		background-color: #fff;
		cursor: pointer;
	}

	/* 产品列表 */
	.product-list {
		display: grid;
		grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
		gap: 25px;
		margin-bottom: 40px;
	}

	.product-card {
		background-color: #fff;
		border-radius: 8px;
		overflow: hidden;
		box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
		transition: transform 0.3s, box-shadow 0.3s;
	}

	.product-card:hover {
		transform: translateY(-5px);
		box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	}

	.product-image {
		position: relative;
		height: 200px;
		overflow: hidden;
	}

	.product-image img {
		width: 100%;
		height: 100%;
		object-fit: cover;
		transition: transform 0.3s;
	}

	.product-card:hover .product-image img {
		transform: scale(1.05);
	}

	.tag {
		position: absolute;
		top: 10px;
		right: 10px;
		padding: 5px 10px;
		border-radius: 4px;
		font-size: 0.8rem;
		font-weight: bold;
		color: white;
	}

	.tag.new {
		background-color: #2ecc71;
	}

	.tag.sale {
		background-color: #e74c3c;
	}

	.tag.bestseller {
		background-color: #f39c12;
	}

	.product-info {
		padding: 20px;
	}

	.product-info h3 {
		margin: 0 0 10px;
		font-size: 1.2rem;
		color: #2c3e50;
	}

	.description {
		color: #7f8c8d;
		font-size: 0.9rem;
		margin: 0 0 15px;
		height: 40px;
		overflow: hidden;
		display: -webkit-box;
		-webkit-line-clamp: 2;
		-webkit-box-orient: vertical;
	}

	.prodate {
		font-size: 1.2rem;
		font-weight: bold;
		color: #e74c3c;
		margin: 10px 0;
	}

	.original-price {
		font-size: 0.9rem;
		color: #95a5a6;
		text-decoration: line-through;
		margin-left: 8px;
	}

	.rating {
		color: #f39c12;
		font-size: 0.9rem;
		margin: 8px 0;
	}

	.review-count {
		color: #95a5a6;
	}

	.more {
		width: 100%;
		padding: 10px;
		background-color: #3498db;
		color: white;
		border: none;
		border-radius: 4px;
		font-size: 1rem;
		cursor: pointer;
		transition: background-color 0.3s;
		margin-top: 10px;
	}

	.more:hover {
		background-color: #2980b9;
	}


	/* 分页 */
	.pagination {
		display: flex;
		justify-content: center;
		gap: 10px;
		margin-bottom: 40px;
	}

	.pagination button {
		padding: 8px 15px;
		border: 1px solid #ddd;
		background-color: #fff;
		border-radius: 4px;
		cursor: pointer;
		transition: all 0.3s;
	}

	.pagination button:hover {
		background-color: #f5f5f5;
	}

	.pagination button.active {
		background-color: #3498db;
		color: white;
		border-color: #3498db;
	}

	.ellipsis {
		display: flex;
		align-items: center;
		padding: 0 5px;
	}

	/* 页脚 */
	.page-footer {
		text-align: center;
		padding: 20px 0;
		color: #7f8c8d;
		font-size: 0.9rem;
		border-top: 1px solid #eee;
	}

	.text-center {
		text-align: center;
	}

	.cont_head {
		padding: 15px;
	}

	.lh-2 p {
		display: inline-block;
		color: #444;
		padding: 40px 0;
	}

	.lh-2 p a {
		color: #444;
	}

	.morenext {
		float: right;
	}

	.new_jj {
		background-color: #f0f0f0;
		border-radius: 0.625rem;
		padding: 10px;
	}

	.shengming {
		width: 70%;
		margin-left: 15%;
		background: #fff;
		border-radius: 8px;
		box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
		padding: 25px;
		margin-bottom: 20px;
	}

	.shengming p,
	.shengming span {
		display: inline;
	}

	.shengming button {
		display: inline-block;
		background-color: #0066cc;
		color: white !important;
		padding: 10px 20px;
		border-radius: 4px;
		outline: inherit;
		border: none;
	}

	.shengming input {
		width: 30%;
		padding: 8px;
		border: 1px solid #ddd;
		border-radius: 4px;
		font-size: 1rem;
	}

	.container_bottom {
		/* width: 70%; */
		padding: 0 15%;
		display: grid;
		grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
		gap: 30px;
	}

	.likelist,
	.hotlist {
		background: #fff;
		border-radius: 8px;
		box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
		padding: 25px;
		margin-bottom: 20px;
		position: relative;
		overflow: hidden;
	}

	.likelist button,
	.hotlist button {
		background-color: #0066cc;
		color: white;
		padding: 10px 20px;
		border-radius: 4px;
		outline: inherit;
		border: none;
		margin-top: 20px;
	}

	.likelist button a,
	.hotlist button a {
		color: white;
	}

	.likelist ul li,
	.hotlist ul li {
		display: block;
		padding: 10px 0;
		border-bottom: 1px solid #ddd;
	}

	.likelist ul li a,
	.hotlist ul li a {
		color: #444;
	}

	.likelist ul li a:hover,
	.hotlist ul li a:hover {
		color: #0066cc;
	}

	.fa-clock-o {
		float: right;
	}

	.container nav {
		display: flex;
		justify-content: space-between;
		align-items: center;
		padding: 15px 0;
		position: relative;
	}

	/* PC端导航链接样式 */
	.nav-links {
		display: flex;
		list-style: none;
		margin: 0;
		padding: 0;
	}

	.nav-links li {
		margin-left: 30px;
	}

	.nav-links a {
		text-decoration: none;
		color: #333;
		font-weight: 500;
		transition: color 0.3s;
	}


	/* 汉堡菜单按钮（默认隐藏） */
	.mobile-menu-toggle,
	.hamburger {
		display: none;
	}

	@media (max-width: 480px) {
		.product-list {
			grid-template-columns: 1fr;
		}
	}

	/* 响应式设计 */
	@media (max-width: 768px) {
		.hamburger {
			display: flex;
			flex-direction: column;
			justify-content: space-between;
			width: 30px;
			height: 21px;
			cursor: pointer;
			z-index: 1001;
		}

		.bar {
			height: 3px;
			width: 100%;
			background-color: #333;
			transition: all 0.3s ease;
		}

		/* 隐藏PC导航 */
		.nav-links {
			position: fixed;
			top: 0;
			right: -100%;
			width: 70%;
			height: 100vh;
			background-color: white;
			flex-direction: column;
			align-items: flex-start;
			padding: 80px 30px 30px;
			box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
			transition: right 0.3s ease;
			z-index: 1000;
		}

		.nav-links li {
			margin: 0 0 20px 0;
			width: 100%;
		}

		.nav-links a {
			display: block;
			padding: 10px 0;
			font-size: 1.1rem;
			text-align: center;
		}

		.mfzx {
			display: inline-block;
			margin-top: 20px;
		}

		/* 菜单激活状态 */
		.mobile-menu-toggle:checked~.nav-links {
			right: 0;
		}

		.mobile-menu-toggle:checked~.hamburger .bar:nth-child(1) {
			transform: translateY(9px) rotate(45deg);
		}

		.mobile-menu-toggle:checked~.hamburger .bar:nth-child(2) {
			opacity: 0;
		}

		.mobile-menu-toggle:checked~.hamburger .bar:nth-child(3) {
			transform: translateY(-9px) rotate(-45deg);
		}

		.banner h1 {
			font-size: 32px;
		}

		.banner p {
			font-size: 16px;
		}

		.banner .bannerwechat {
			width: 100%;
		}

		.banner img {
			width: 80%;
			margin: 0;
			margin-left: 10%;
			margin-right: 10%;
		}

		.news-item {
			flex-direction: column;
		}

		.news-thumb {
			width: 100%;
			height: 120px;
			margin-top: 10px;
			order: 2;
		}

		.news-item-content {
			padding-right: 0;
		}

		.contact-container {
			flex-direction: column;
		}

		.page-header h1 {
			font-size: 2rem;
		}

		.page-item,
		.page-num {
			margin: 0px 1px;
			padding: 10px;
			border-radius: 5px;
			font-size: 12px;
		}

		.page-pre,
		.page-next {
			display: none;
		}

		.news-cont {
			width: 100%;
		}

		.product-controls {
			flex-direction: column;
			align-items: stretch;
		}

		.search-box {
			width: 100%;
		}

		.filter-options {
			width: 100%;
		}

		.filter-options select {
			flex: 1;
		}

		.product-list {
			grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
		}

		.contact_box,
		.shengming,
		.contact-container {
			width: 90%;
			margin-left: 5%;
		}

		.container_new {
			max-width: 90%;
		}

		.container_bottom {
			padding: 0 5%;
		}

		.shengming input {
			width: 50%;
		}

		.like-ul-extra li a p,
		.hotlist ul li a p {
			display: block;
			float: none;
			padding-top: 5px;
		}
	}