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

body {
	font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Helvetica Neue", "Microsoft YaHei", sans-serif;
	background: #f7f7f7;
	color: #333;
	line-height: 1.7;
}

.audit-page {
	max-width: 720px;
	margin: 0 auto;
	background: #fff;
	min-height: 100vh;
	padding-bottom: 40px;
}

header {
	background: linear-gradient(135deg, #2b8a3e 0%, #40c057 100%);
	color: #fff;
	padding: 30px 20px;
	text-align: center;
}

header h1 {
	font-size: 26px;
	margin-bottom: 8px;
	letter-spacing: 1px;
}

header p {
	font-size: 15px;
	opacity: 0.95;
}

.product-info {
	padding: 25px 20px;
}

.product-info h2 {
	font-size: 22px;
	color: #222;
	margin-bottom: 12px;
}

.tag-list {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 20px;
}

.tag {
	background: #e7f5e8;
	color: #2b8a3e;
	font-size: 13px;
	padding: 4px 10px;
	border-radius: 20px;
}

.intro {
	font-size: 16px;
	color: #555;
	margin-bottom: 25px;
}

.gallery {
	padding: 0 20px;
}

.gallery img {
	width: 100%;
	display: block;
	border-radius: 12px;
	margin-bottom: 18px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.features {
	padding: 25px 20px;
	background: #fafafa;
}

.features h3 {
	font-size: 18px;
	margin-bottom: 15px;
	color: #222;
}

.features ul {
	list-style: none;
}

.features li {
	position: relative;
	padding-left: 24px;
	margin-bottom: 12px;
	font-size: 15px;
	color: #444;
}

.features li::before {
	content: "✓";
	position: absolute;
	left: 0;
	top: 0;
	color: #2b8a3e;
	font-weight: bold;
}

/* 主要原料 */
.ingredients {
	padding: 25px 20px;
	background: #fafafa;
}

.ingredients h3 {
	font-size: 18px;
	margin-bottom: 15px;
	color: #222;
}

.ingredients ul {
	list-style: none;
}

.ingredients li {
	font-size: 15px;
	color: #555;
	margin-bottom: 10px;
	padding-left: 14px;
	border-left: 3px solid #40c057;
	line-height: 1.7;
}

.ingredients li strong {
	color: #2b8a3e;
}

/* 表单 */
.order-form {
	padding: 25px 20px;
	background: #fff;
}

.order-form h3 {
	font-size: 19px;
	color: #222;
	margin-bottom: 18px;
	text-align: center;
}

.form-item {
	margin-bottom: 15px;
}

.form-item label {
	display: block;
	font-size: 14px;
	color: #555;
	margin-bottom: 6px;
}

.form-item input {
	width: 100%;
	height: 44px;
	line-height: 44px;
	padding: 0 12px;
	font-size: 16px;
	color: #333;
	border: 1px solid #ddd;
	border-radius: 6px;
	background: #fafafa;
	outline: none;
	-webkit-appearance: none;
	appearance: none;
}

.form-item input:focus {
	border-color: #40c057;
	background: #fff;
}

.submit-btn {
	display: block;
	width: 100%;
	height: 48px;
	margin-top: 22px;
	border: 0;
	border-radius: 24px;
	background: linear-gradient(135deg, #2b8a3e 0%, #40c057 100%);
	color: #fff;
	font-size: 18px;
	font-weight: bold;
	letter-spacing: 2px;
	cursor: pointer;
	-webkit-appearance: none;
	appearance: none;
}

.submit-btn:active {
	opacity: 0.85;
}

footer {
	padding: 20px;
	text-align: center;
	font-size: 13px;
	color: #999;
}

@media (max-width: 375px) {
	header h1 {
		font-size: 22px;
	}

	.product-info h2 {
		font-size: 20px;
	}
}
