 /* 产品展示区 */
.section {
	padding: 100px 0;
}

.section-header {
	text-align: center;
	margin-bottom: 60px;
}

.section-header h2 {
	font-size: 2.5rem;
	color: var(--text);
	margin-bottom: 15px;
	position: relative;
	display: inline-block;
}

.section-header h2:after {
	content: '';
	position: absolute;
	width: 70px;
	height: 4px;
	background: var(--gradient);
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	border-radius: 2px;
}

.section-header p {
	color: var(--text-light);
	max-width: 600px;
	margin: 25px auto 0;
	font-size: 1.1rem;
}

.products {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 30px;
}

.product-card {
	background: white;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0,0,0,0.08);
	transition: all 0.4s ease;
	max-width: 380px;
	width: 100%;
	position: relative;
}

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

.product-badge {
	position: absolute;
	top: 20px;
	right: 20px;
	background: var(--accent);
	color: white;
	padding: 5px 15px;
	border-radius: 20px;
	font-size: 0.8rem;
	font-weight: 600;
}

.product-image {
	height: 200px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 3rem;
}

.product-image.erp {
	background: linear-gradient(135deg, #7209b7, #3a0ca3);
}

.product-image.inventory {
	background: linear-gradient(135deg, #4cc9f0, #4361ee);
}

.product-content {
	padding: 20px;
}

.product-content h3 {
	font-size: 1.5rem;
	margin-bottom: 15px;
	color: var(--text);
}

.product-content p {
	color: var(--text-light);
	margin-bottom: 20px;
}

.product-features {
	margin: 25px 0;
	list-style: none;
}

.product-features li {
	margin-bottom: 12px;
	display: flex;
	align-items: flex-start;
}

.product-features li i {
	color: var(--success);
	margin-right: 10px;
	margin-top: 3px;
}

/* 教程和资讯 */
.resources {
	background-color: var(--light);
	position: relative;
}

/*.resources:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 5px;
	background: var(--gradient);
}*/

.resource-tabs {
	display: flex;
	justify-content: center;
	margin-bottom: 40px;
	border-bottom: 1px solid #e9ecef;
	padding-bottom: 10px;
}

.tab-button {
	background: none;
	border: none;
	padding: 12px 20px;
	font-size: 1rem;
	font-weight: 600;
	color: var(--text-light);
	cursor: pointer;
	transition: all 0.3s;
	position: relative;
}

.tab-button.active {
	color: var(--primary);
}

.tab-button.active:after {
	content: '';
	position: absolute;
	width: 100%;
	height: 3px;
	background: var(--primary);
	bottom: -11px;
	left: 0;
	border-radius: 3px 3px 0 0;
}

.tab-content {
	display: none;
}

.tab-content.active {
	display: block;
	animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
	from { opacity: 0; transform: translateY(10px); }
	to { opacity: 1; transform: translateY(0); }
}

.resource-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 25px;
}

.resource-item {
	background: white;
	border-radius: 10px;
	padding: 25px;
	box-shadow: 0 5px 15px rgba(0,0,0,0.05);
	transition: all 0.3s ease;
	border-left: 4px solid var(--primary);
}

.resource-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.resource-item h3 {
	font-size: 1.2rem;
	margin-bottom: 10px;
	color: var(--text);
}

.resource-item p {
	color: var(--text-light);
	margin-bottom: 15px;
	font-size: 0.95rem;
}

.resource-meta {
	display: flex;
	justify-content: space-between;
	color: var(--text-light);
	font-size: 0.85rem;
	margin-top: 15px;
}

.resource-link {
	color: var(--primary);
	text-decoration: none;
	font-weight: 600;
	display: inline-flex;
	align-items: center;
	transition: all 0.3s;
}

.resource-link i {
	margin-left: 5px;
	transition: transform 0.3s;
}

.resource-link:hover i {
	transform: translateX(5px);
}

/* 关于我们 */
.about {
	background-color: var(--light);
}

.about-content {
	display: flex;
	align-items: center;
	gap: 50px;
}

.about-text {
	flex: 1;
}

.about-image {
	flex: 1;
	height: 400px;
	background-color: #e2e8f0;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--secondary);
}
.section-title {
	text-align: center;
	margin-bottom: 50px;
	
}

.section-title h2 {
	font-size: 2rem;
	color: var(--dark);
	margin-bottom: 15px;
	
}

.section-title p {
	color: var(--dark);
	max-width: 600px;
	margin: 0 auto;
}
/* 联系表单 */
.contact-form {
	max-width: 600px;
	margin: 0 auto;
}

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

.form-group label {
	display: block;
	margin-bottom: 8px;
	font-weight: 500;
}

.form-control {
	width: 100%;
	padding: 12px 15px;
	border: 1px solid #ddd;
	border-radius: 5px;
	font-size: 1rem;
}

textarea.form-control {
	min-height: 150px;
	resize: vertical;
}
.btn {
	display: inline-block;
	padding: 12px 30px;
	background-color: white;
	color: var(--primary);
	border-radius: 5px;
	font-weight: 600;
	transition: all 0.3s;
}

.btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-primary {
	background-color: var(--primary-dark);
	color: white;
}
/* 响应式设计 */
@media (max-width: 768px) {
	.about-content {
		flex-direction: column;
	}
}