﻿.banners-pc {
	clear: both;
	height: 500px;
}

.banners-pc .frame {
	height: 500px;
	background: no-repeat center center;
	background-size: cover;
}

.banners-mb {
	display: none;
	clear: both;
	height: 700px;
}

.banners-mb div {
	height: 100%;
}

.banners-mb .frame {
	height: 100%;
	background: no-repeat center center;
	background-size: cover;
}

@media (max-width: 1024px) {
	.banners-pc {
		display: none;
	}

	.banners-mb {
		display: block;
	}
}

@media (max-width: 1024px) {
	.c_nav .list>li {
		width: 33.33%;
	}
}

.honor {
	margin-top: 80px;
	margin-bottom: 100px;
}

.honor .offset .list {
	margin-left: -37px;
	margin-bottom: -39px;
	overflow: hidden;
}

.honor .offset .list>li {
	float: left;
	width: 25%;
	padding-left: 37px;
	padding-bottom: 39px;
}

.honor .offset .list>li .pic {
	border: 1px solid #e4e4e4;
	padding: 8px;
}

.honor .offset .list>li .pic img {
	display: block;
	width: 100%;
}

@media (max-width: 1024px) {
	.honor .offset .list>li {
		width: 33.33%;
	}
}

@media (max-width: 600px) {
	.honor .offset .list>li {
		width: 50%;
	}
}

@media (max-width: 500px) {
	.honor .offset .list>li {
		width: 100%;
	}
}

/* 联系我们表单样式 */
	.contact-form-section {
		margin-top: 40px;
		padding: 30px;
		background: #f8f9fa;
		border-radius: 8px;
		border: 1px solid #e9ecef;
	}
	
	.contact-title {
		color: #333;
		margin-bottom: 25px;
		font-size: 24px;
		font-weight: bold;
		text-align: center;
		border-bottom: 2px solid #007bff;
		padding-bottom: 10px;
	}
	
	.contact-form {
		max-width: 800px;
		margin: 0 auto;
	}
	
	.form-row {
		display: flex;
		gap: 20px;
		margin-bottom: 20px;
	}
	
	.form-group {
		flex: 1;
		margin-bottom: 20px;
	}
	
	.form-group.full-width {
		flex: none;
		width: 100%;
	}
	
	.form-group label {
		display: block;
		margin-bottom: 8px;
		color: #333;
		font-weight: 600;
		font-size: 14px;
	}
	
	.form-group input,
	.form-group textarea {
		width: 100%;
		padding: 12px 15px;
		border: 1px solid #ddd;
		border-radius: 5px;
		font-size: 14px;
		transition: all 0.3s ease;
		box-sizing: border-box;
		background: white;
	}
	
	.form-group input:focus,
	.form-group textarea:focus {
		outline: none;
		border-color: #007bff;
		box-shadow: 0 0 8px rgba(0, 123, 255, 0.2);
		transform: translateY(-1px);
	}
	
	.form-group textarea {
		resize: vertical;
		min-height: 120px;
		font-family: inherit;
	}
	
	.contact-submit-btn {
		background: linear-gradient(135deg, #007bff, #0056b3);
		color: white;
		padding: 15px 40px;
		border: none;
		border-radius: 5px;
		font-size: 16px;
		font-weight: 600;
		cursor: pointer;
		transition: all 0.3s ease;
		width: 100%;
		max-width: 200px;
		display: block;
		margin: 0 auto;
	}
	
	.contact-submit-btn:hover {
		background: linear-gradient(135deg, #0056b3, #004085);
		transform: translateY(-2px);
		box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
	}
	
	.contact-submit-btn:active {
		transform: translateY(0);
	}
	
	/* 响应式设计 */
	@media (max-width: 768px) {
		.contact-form-section {
			padding: 20px 15px;
			margin-top: 20px;
		}
		
		.form-row {
			flex-direction: column;
			gap: 0;
		}
		
		.contact-title {
			font-size: 20px;
		}
		
		.contact-submit-btn {
			max-width: 100%;
		}
	}
	
	@media (max-width: 480px) {
		.contact-form-section {
			padding: 15px 10px;
		}
		
		.form-group input,
		.form-group textarea {
			padding: 10px 12px;
		}
	}