/* 物流打包 — /service/packing/ */

.spk-page {
	padding: 0 0 72px;
	--spk-blue: #1d5198;
	--spk-border: rgba(29, 81, 152, 0.18);
	--spk-accent: #e8f0fb;
}

.spk-hero {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: space-between;
	gap: 24px 32px;
	margin: 36px 0 28px;
	padding: 28px 30px;
	border: 1px solid #dce4ee;
	border-radius: 8px;
	background: linear-gradient(135deg, #f8fafc 0%, #eef3fa 100%);
}

.spk-hero > div:first-child {
	flex: 1 1 280px;
	min-width: 0;
}

.spk-hero__lead {
	margin: 0 0 14px;
	font-size: 16px;
	line-height: 1.8;
	color: #495057;
}

.spk-hero__note {
	margin: 0 0 14px;
	font-size: 13px;
	line-height: 1.65;
	color: #6c757d;
}

.spk-hero__links {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 18px;
	margin: 0;
	font-size: 14px;
}

.spk-hero__links a {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-weight: 600;
	color: var(--spk-blue);
	text-decoration: none;
}

.spk-stats {
	display: grid;
	grid-template-columns: repeat(3, minmax(88px, 1fr));
	gap: 12px;
	flex: 0 1 auto;
	min-width: min(100%, 320px);
	margin: 0;
	padding: 0;
	list-style: none;
}

.spk-stats li {
	padding: 16px 14px;
	border: 1px solid var(--spk-border);
	border-radius: 8px;
	background: #fff;
	text-align: center;
}

.spk-stats strong {
	display: block;
	margin-bottom: 4px;
	font-size: 24px;
	line-height: 1.1;
	color: var(--spk-blue);
}

.spk-stats span {
	font-size: 12px;
	line-height: 1.45;
	color: #6c757d;
}

.spk-section-title {
	margin: 0 0 12px;
	font-size: 22px;
	font-weight: 700;
	color: #212529;
}

.spk-section-desc {
	margin: 0 0 20px;
	max-width: 44rem;
	font-size: 15px;
	line-height: 1.75;
	color: #6c757d;
}

.spk-guide {
	margin-bottom: 40px;
}

.spk-guide__grid {
	display: grid;
	gap: 18px;
}

@media (min-width: 640px) {
	.spk-guide__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (min-width: 1024px) {
	.spk-guide__grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}

.spk-guide__card {
	display: flex;
	flex-direction: column;
	height: 100%;
	border: 1px solid #dce4ee;
	border-radius: 8px;
	background: #fff;
	overflow: hidden;
}

.spk-guide__media {
	display: block;
	aspect-ratio: 16 / 10;
	background: #eef1f6;
}

.spk-guide__media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.spk-guide__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	gap: 8px;
	padding: 16px 16px 18px;
}

.spk-guide__body h3 {
	margin: 0;
	font-size: 16px;
	font-weight: 700;
	color: #212529;
}

.spk-guide__body p {
	margin: 0;
	font-size: 13px;
	line-height: 1.65;
	color: #6c757d;
}

.spk-process {
	margin-bottom: 40px;
}

.spk-table-wrap {
	overflow-x: auto;
	border: 1px solid #dce4ee;
	border-radius: 8px;
	background: #fff;
}

.spk-table {
	width: 100%;
	min-width: 640px;
	border-collapse: collapse;
	font-size: 14px;
}

.spk-table th,
.spk-table td {
	padding: 14px 16px;
	border-bottom: 1px solid #e9ecef;
	text-align: left;
	vertical-align: top;
}

.spk-table th {
	background: #f8fafc;
	font-weight: 700;
	color: #343a40;
}

.spk-table tbody tr:last-child td {
	border-bottom: 0;
}

.spk-table td:first-child {
	width: 3rem;
	color: var(--spk-blue);
	font-weight: 700;
}

.spk-table a {
	font-weight: 600;
	color: var(--spk-blue);
	text-decoration: none;
}

.spk-table-note {
	margin: 12px 0 0;
	max-width: 44rem;
	font-size: 13px;
	line-height: 1.65;
	color: #6c757d;
}

.spk-catalog {
	scroll-margin-top: 6rem;
}

.spk-advanced-filters {
	display: grid;
	gap: 16px;
	margin-bottom: 24px;
}

.spk-filter-row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px 16px;
}

.spk-filters {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.spk-filter {
	padding: 8px 14px;
	border: 1px solid #ced4da;
	border-radius: 3px;
	background: #fff;
	font-size: 13px;
	font-weight: 600;
	color: #495057;
	cursor: pointer;
	white-space: nowrap;
}

.spk-filter.is-active {
	border-color: var(--spk-blue);
	background: var(--spk-accent);
	color: var(--spk-blue);
}

.spk-filter-reset {
	padding: 8px 12px;
	border: 0;
	border-radius: 3px;
	background: transparent;
	font-size: 13px;
	font-weight: 600;
	color: var(--spk-blue);
	cursor: pointer;
	white-space: nowrap;
}

.spk-filter-reset[hidden] {
	display: none;
}

.spk-product-filter {
	display: inline-flex;
	flex-wrap: nowrap;
	align-items: center;
	gap: 10px;
	margin-left: auto;
	flex: 0 1 auto;
}

.spk-filter-row__label {
	font-size: 13px;
	font-weight: 600;
	color: #495057;
	white-space: nowrap;
}

.spk-product-select {
	width: min(18rem, 100%);
	min-width: 10rem;
	padding: 8px 36px 8px 12px;
	border: 1px solid #ced4da;
	border-radius: 3px;
	font-size: 14px;
	color: #212529;
	background-color: #fff;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%231d5198' d='M2.5 4.5 6 8l3.5-3.5'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 12px center;
	background-size: 12px;
	appearance: none;
	-webkit-appearance: none;
	cursor: pointer;
}

.spk-product-select:focus {
	outline: none;
	border-color: var(--spk-blue);
	box-shadow: 0 0 0 3px rgba(29, 81, 152, 0.12);
}

.spk-group {
	margin-bottom: 32px;
	scroll-margin-top: 6rem;
}

.spk-group[hidden] {
	display: none;
}

.spk-group-title {
	margin: 0 0 14px;
	font-size: 18px;
	font-weight: 700;
	color: #212529;
}

.spk-grid {
	display: grid;
	gap: 16px;
}

@media (min-width: 768px) {
	.spk-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

.spk-card {
	padding: 18px;
	border: 1px solid #dce4ee;
	border-radius: 8px;
	background: #fff;
}

.spk-card[hidden] {
	display: none;
}

.spk-card__head {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: space-between;
	gap: 10px 16px;
	margin-bottom: 14px;
}

.spk-card__sku {
	margin: 0 0 4px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #868e96;
}

.spk-card__head h4 {
	margin: 0;
	font-size: 16px;
	font-weight: 700;
	color: #212529;
}

.spk-card__link {
	font-size: 13px;
	font-weight: 600;
	color: var(--spk-blue);
	text-decoration: none;
	white-space: nowrap;
}

.spk-logistics {
	display: grid;
	gap: 8px;
	margin: 0;
}

.spk-logistics div {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
	gap: 10px;
	padding: 10px 12px;
	border-radius: 6px;
	background: #f8fafc;
}

.spk-logistics dt {
	margin: 0;
	font-size: 12px;
	font-weight: 600;
	color: #6c757d;
}

.spk-logistics dd {
	margin: 0;
	font-size: 13px;
	font-weight: 600;
	color: #212529;
}

.spk-empty {
	margin: 0;
	padding: 28px 16px;
	border: 1px dashed #ced4da;
	border-radius: 8px;
	text-align: center;
	color: #6c757d;
}

.spk-empty[hidden] {
	display: none;
}

.spk-cta {
	margin-top: 36px;
	padding: 28px 30px;
	border: 1px solid #dce4ee;
	border-radius: 8px;
	background: linear-gradient(135deg, #f8fafc 0%, #eef3fa 100%);
}

.spk-cta h3 {
	margin: 0 0 10px;
	font-size: 20px;
	font-weight: 700;
	color: #212529;
}

.spk-cta p {
	margin: 0 0 16px;
	max-width: 44rem;
	font-size: 15px;
	line-height: 1.75;
	color: #495057;
}

.spk-cta__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: fit-content;
	max-width: 100%;
	padding: 12px 22px;
	border-radius: 3px;
	background: var(--spk-blue);
	font-size: 14px;
	font-weight: 700;
	line-height: 1.25;
	color: #fff;
	text-decoration: none;
	white-space: nowrap;
}

.spk-cta__btn .pp-eng-btn__icon {
	display: block;
	flex-shrink: 0;
	width: 16px;
	height: 16px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

@media (max-width: 767px) {
	.spk-hero,
	.spk-cta {
		padding: 22px 18px;
	}

	.spk-product-filter {
		margin-left: 0;
		width: 100%;
	}

	.spk-product-select {
		flex: 1 1 auto;
		width: auto;
		max-width: 100%;
	}
}
