/* 云仓首页样式 */

/* 内容区域（云仓首页特殊处理） */
.page .content {
	padding-top: 100px; /* 为固定顶部导航栏留出空间 */
	padding-left: 16px;
	padding-right: 16px;
	padding-bottom: 100px; /* 为固定底部导航栏留出空间（导航栏高度约60-70px，额外30px间距） */
	box-sizing: border-box;
}

/* 顶部导航栏 */
.warehouse-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	height: 80px;
	background: linear-gradient(135deg, #1966FF 0%, #4C8AFF 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 1000;
	box-shadow: 0 2px 10px rgba(25, 102, 255, 0.2);
	padding: 0 16px;
}

.header-back {
	position: absolute;
	left: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 6px 12px;
	background: rgba(255, 255, 255, 0.4);
	border-radius: 15px;
	backdrop-filter: blur(10px);
	cursor: pointer;
	transition: opacity 0.2s;
}

.header-back:hover {
	opacity: 0.8;
}

.back-text {
	font-size: 14px;
	color: #FFFFFF;
	font-weight: 500;
	white-space: nowrap;
}

.header-title {
	font-size: 18px;
	font-weight: bold;
	color: #FFFFFF;
	letter-spacing: 1px;
	text-align: center;
}

.header-actions {
	position: absolute;
	right: 16px;
	display: flex;
	align-items: center;
	gap: 12px;
}

.action-icon {
	font-size: 20px;
	color: #FFFFFF;
	cursor: pointer;
	opacity: 0.9;
}

.action-icon:hover {
	opacity: 1;
}

/* 管理按钮 */
.admin-btn {
	padding: 6px 16px;
	background: rgba(255, 255, 255, 0.2);
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-radius: 16px;
	color: #FFFFFF;
	font-size: 14px;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.2s;
	backdrop-filter: blur(10px);
}

.admin-btn:hover {
	background: rgba(255, 255, 255, 0.3);
	border-color: rgba(255, 255, 255, 0.5);
	opacity: 1;
}

.admin-btn:active {
	background: rgba(255, 255, 255, 0.25);
	transform: scale(0.98);
}

/* 登录卡片 */
.login-card {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	background: #FFFFFF;
	border-radius: 12px;
	padding: 16px;
	margin: 16px 0;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.login-card-left {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: flex-start;
	flex: 1;
	gap: 12px;
	cursor: pointer;
}

.login-avatar {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	border: 2px solid rgba(25, 102, 255, 0.2);
	background: #F5F5F5;
	flex-shrink: 0;
	object-fit: cover;
}

.login-nickname {
	font-size: 16px;
	color: #333333;
	font-weight: 500;
}

.login-card-right {
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

/* 四个选项区域 */
.options-section {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	gap: 12px;
	margin: 16px 0;
	padding: 16px;
	background: #FFFFFF;
	border-radius: 12px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.option-item {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-width: 0;
	padding: 0 8px;
	cursor: pointer;
	transition: transform 0.2s;
}

.option-item:active {
	transform: scale(0.95);
	opacity: 0.9;
}

.option-icon {
	width: 56px;
	height: 56px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 28px;
	margin-bottom: 8px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
	transition: all 0.3s ease;
}

.option-title {
	font-size: 10px;
	color: #333333;
	text-align: center;
	line-height: 1.4;
	font-weight: 500;
}

/* 顶部横幅 */
.banner-section {
	position: relative;
	background: linear-gradient(135deg, #1966FF 0%, #4C8AFF 100%);
	border-radius: 16px;
	padding: 32px 24px;
	margin: 16px 0;
	overflow: hidden;
	box-shadow: 0 4px 16px rgba(25, 102, 255, 0.3);
}

.banner-section::before {
	content: '';
	position: absolute;
	right: -30px;
	top: -30px;
	width: 120px;
	height: 120px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
}

.banner-title {
	font-size: 18px;
	font-weight: bold;
	color: #FFFFFF;
	line-height: 1.6;
	margin-bottom: 20px;
	position: relative;
	z-index: 1;
	letter-spacing: 0.5px;
	text-align: center;
}

.banner-stats {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	gap: 12px;
	position: relative;
	z-index: 1;
}

.stat-item {
	flex: 1;
	background: rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(10px);
	border-radius: 12px;
	padding: 16px;
	min-width: 0;
	display: flex;
	flex-direction: column;
}

.stat-label {
	display: block;
	font-size: 10px;
	color: rgba(255, 255, 255, 0.95);
	margin-bottom: 6px;
	font-weight: 500;
}

.stat-value {
	display: block;
	font-size: 10px;
	color: #FFFFFF;
	line-height: 1.4;
}

.stat-number {
	font-size: 32px;
	font-weight: bold;
	color: #FFD700;
	margin: 0 4px;
	line-height: 1;
}

.banner-icon {
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 80px;
	opacity: 0.3;
	z-index: 0;
}

/* 三步流程 */
.workflow-section {
	background: #FFFFFF;
	border-radius: 12px;
	padding: 24px 20px;
	margin: 16px 0;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.workflow-steps {
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	justify-content: space-between;
	gap: 12px;
}

.step-item {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	min-width: 0;
}

.step-icon {
	width: 70px;
	height: 70px;
	background: linear-gradient(135deg, #1966FF 0%, #4C8AFF 100%);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 36px;
	margin-bottom: 12px;
	box-shadow: 0 4px 12px rgba(25, 102, 255, 0.35);
	transition: all 0.3s ease;
}

.step-icon:active {
	transform: scale(0.95);
	box-shadow: 0 2px 8px rgba(25, 102, 255, 0.25);
}

.step-title {
	font-size: 16px;
	font-weight: bold;
	color: #333333;
	margin-bottom: 8px;
	text-align: center;
}

.step-desc {
	font-size: 10px;
	color: #666666;
	line-height: 1.6;
	text-align: center;
	word-break: break-all;
}

.step-arrow {
	font-size: 24px;
	color: #1966FF;
	margin-top: 35px;
	font-weight: bold;
	flex-shrink: 0;
	align-self: flex-start;
}

/* 对比区域 */
.comparison-section {
	margin: 16px 0;
}

.comparison-row {
	display: flex;
	flex-direction: row;
	gap: 12px;
	align-items: stretch;
}

.advantage-box,
.painpoint-box {
	flex: 1;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	min-width: 0;
	display: flex;
	flex-direction: column;
	overflow: hidden;
	border-radius: 12px;
}

.advantage-box {
	background: #F0FDF4;
}

.painpoint-box {
	background: #FEF2F2;
}

.box-header {
	margin-bottom: 0;
	flex-shrink: 0;
	background: linear-gradient(135deg, #1966FF 0%, #4C8AFF 100%);
	padding: 12px 14px;
}

.box-title {
	display: block;
	font-size: 16px;
	font-weight: bold;
	color: #FFFFFF;
	margin-bottom: 4px;
	line-height: 1.4;
}

.box-subtitle {
	display: block;
	font-size: 10px;
	color: rgba(255, 255, 255, 0.9);
	line-height: 1.4;
}

.advantage-list,
.painpoint-list {
	display: flex;
	flex-direction: column;
	gap: 12px;
	flex: 1;
	padding: 16px 14px;
}

.advantage-item,
.painpoint-item {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	min-height: 24px;
}

.check-icon {
	width: 20px;
	height: 20px;
	background: linear-gradient(135deg, #10B981 0%, #34D399 100%);
	border-radius: 50%;
	color: #FFFFFF;
	font-size: 12px;
	font-weight: bold;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	box-shadow: 0 1px 4px rgba(16, 185, 129, 0.3);
	order: 2;
}

.cross-icon {
	width: 20px;
	height: 20px;
	background: linear-gradient(135deg, #EF4444 0%, #F87171 100%);
	border-radius: 50%;
	color: #FFFFFF;
	font-size: 12px;
	font-weight: bold;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	box-shadow: 0 1px 4px rgba(239, 68, 68, 0.3);
	order: 2;
}

.advantage-text,
.painpoint-text {
	flex: 1;
	font-size: 10px;
	color: #333333;
	line-height: 1.6;
	text-align: left;
	word-break: break-all;
	order: 1;
}

.painpoint-text {
	color: #666666;
}

/* 平台渠道区域 */
.platforms-section {
	background: #FFFFFF;
	border-radius: 12px;
	padding: 20px 16px;
	margin: 16px 0;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	width: 100%;
	box-sizing: border-box;
}

.platforms-title {
	font-size: 18px;
	font-weight: bold;
	color: #333333;
	text-align: center;
	margin-bottom: 20px;
}

.platforms-list {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	gap: 12px;
}

.platform-item {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-width: 0;
}

.platform-icon {
	width: 56px;
	height: 56px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 28px;
	margin-bottom: 8px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.platform-name {
	font-size: 14px;
	color: #333333;
	text-align: center;
	font-weight: 500;
}

/* 操作区域（首页开通服务卡片） */
.page .content .action-section {
	margin: 16px 0 40px;
	width: 100%;
	box-sizing: border-box;
}

.page .content .action-card {
	background: #FFFFFF;
	border-radius: 12px;
	padding: 20px 16px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	width: 100%;
	box-sizing: border-box;
}

.activate-btn {
	width: 100%;
	height: 56px;
	background: linear-gradient(135deg, #1966FF 0%, #4C8AFF 100%);
	border: none;
	border-radius: 28px;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 6px 20px rgba(25, 102, 255, 0.45);
	margin-bottom: 12px;
	position: relative;
	overflow: hidden;
	transition: all 0.3s ease;
	cursor: pointer;
}

.activate-btn:active {
	transform: scale(0.97);
	box-shadow: 0 4px 12px rgba(25, 102, 255, 0.35);
}

.btn-text {
	font-size: 18px;
	font-weight: bold;
	color: #FFFFFF;
	letter-spacing: 1px;
}

.trial-info {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	margin-bottom: 10px;
	gap: 0;
}

.trial-text {
	font-size: 14px;
	color: #666666;
}

.trial-link {
	font-size: 14px;
	color: #1966FF;
	text-decoration: underline;
	cursor: pointer;
}

.trial-link:hover {
	opacity: 0.8;
}

.service-info {
	text-align: center;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	gap: 4px;
}

.info-text {
	font-size: 12px;
	color: #999999;
}

.info-link {
	font-size: 12px;
	color: #1966FF;
	text-decoration: underline;
	cursor: pointer;
}

.info-link:hover {
	opacity: 0.8;
}

/* 底部导航栏图标图片 */
.nav-icon-img {
	width: 24px !important;
	height: 24px !important;
	display: block !important;
	flex-shrink: 0;
	object-fit: contain;
}

/* ==================== 我的页面特殊样式 ==================== */

/* 欢迎和余额模块 */
.welcome-section {
	background: linear-gradient(135deg, #1966FF 0%, #4C8AFF 100%);
	border-radius: 12px;
	padding: 20px;
	margin: 16px 0;
	color: white;
	box-shadow: 0 4px 16px rgba(25, 102, 255, 0.3);
}

.welcome-title {
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 16px;
}

.welcome-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 12px;
}

.balance-info {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.balance-label {
	font-size: 12px;
	opacity: 0.9;
}

.balance-value {
	font-size: 24px;
	font-weight: bold;
}

.recharge-btn {
	padding: 10px 20px;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 8px;
	cursor: pointer;
	transition: background 0.2s;
	backdrop-filter: blur(10px);
}

.recharge-btn:hover {
	background: rgba(255, 255, 255, 0.3);
}

.recharge-btn:active {
	opacity: 0.8;
}

.recharge-text {
	font-size: 14px;
	font-weight: 500;
}

.welcome-footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 12px;
	opacity: 0.9;
	cursor: pointer;
	padding-top: 12px;
	border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-text {
	flex: 1;
}

.footer-arrow {
	font-size: 14px;
	font-weight: 500;
}

/* 渠道绑定 */
.channel-section {
	margin: 16px 0;
}

.channel-title {
	font-size: 14px;
	color: #6B7280;
	margin-bottom: 12px;
	padding: 0 4px;
}

.channel-list {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.channel-item {
	background: white;
	border-radius: 12px;
	padding: 16px;
	display: flex;
	align-items: center;
	gap: 12px;
	cursor: pointer;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	transition: transform 0.2s;
}

.channel-item:hover {
	transform: translateX(4px);
}

.channel-item:active {
	transform: scale(0.98);
}

.channel-icon {
	width: 40px;
	height: 40px;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	margin-right: 12px;
	flex-shrink: 0;
}

.channel-name {
	flex: 1;
	font-size: 16px;
	color: #333333;
	font-weight: 500;
}

.channel-arrow {
	font-size: 16px;
	color: #999999;
	margin-left: 12px;
}

.channel-arrow.bound {
	color: #1966FF;
	font-weight: 500;
}

/* 功能卡片模块 */
.function-cards-section {
	margin: 16px 0 40px;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.function-card {
	width: 100%;
	background: linear-gradient(135deg, #1966FF 0%, #4C8AFF 100%);
	border-radius: 12px;
	padding: 20px 24px;
	box-shadow: 0 4px 12px rgba(25, 102, 255, 0.3);
	transition: all 0.3s ease;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: flex-start;
	gap: 12px;
	cursor: pointer;
}

.function-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(25, 102, 255, 0.4);
}

.function-card:active {
	transform: scale(0.98);
	box-shadow: 0 2px 8px rgba(25, 102, 255, 0.25);
}

.function-icon {
	font-size: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 36px;
	height: 36px;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 8px;
	backdrop-filter: blur(10px);
}

/* ==================== 入库详情页面样式 ==================== */

/* 页面基础样式 */
#app {
	width: 100%;
	min-height: 100vh;
	background: linear-gradient(180deg, #F0F4FF 0%, #E8F0FF 50%, #FFFFFF 100%);
}

/* 顶部导航栏 */
.page .header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	height: 80px;
	background: linear-gradient(135deg, #1966FF 0%, #4C8AFF 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 1000;
	box-shadow: 0 2px 10px rgba(25, 102, 255, 0.2);
}

.page .header-back {
	position: absolute;
	left: 20px;
	top: 50%;
	transform: translateY(-50%);
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}

.page .back-icon {
	font-size: 20px;
	color: #FFFFFF;
	font-weight: bold;
}

.page .header-title {
	font-size: 18px;
	font-weight: bold;
	color: #FFFFFF;
	letter-spacing: 1px;
	text-align: center;
}

/* 内容包装器 */
.content-wrapper {
	position: fixed;
	top: 80px;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 0 15px;
	padding-bottom: 120px; /* 为底部操作按钮留出空间 */
	overflow-y: auto;
	box-sizing: border-box;
	max-width: 750px;
	margin: 0 auto;
	-webkit-overflow-scrolling: touch; /* iOS 平滑滚动 */
}

@media (max-width: 480px) {
	.content-wrapper {
		padding: 0 8px;
		padding-bottom: 90px; /* 手机端底部按钮区域较小 */
		top: 60px; /* 手机端头部可能更小 */
	}
}

/* 电子面单区域 */
.waybill-section {
	background: #FFFFFF;
	border-radius: 20px;
	padding: 15px;
	margin: 15px 0;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

@media (max-width: 480px) {
	.waybill-section {
		padding: 10px;
		margin: 10px 0;
		border-radius: 12px;
	}
}

.waybill-title {
	font-size: 14px;
	font-weight: bold;
	color: #333333;
	text-align: center;
	margin-bottom: 12px;
	padding-bottom: 8px;
	border-bottom: 1px solid #EEEEEE;
}

@media (max-width: 480px) {
	.waybill-title {
		font-size: 12px;
		margin-bottom: 10px;
		padding-bottom: 6px;
	}
}

/* 顶部信息区（绿色卡片） */
.waybill-header-section {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-bottom: 15px;
	padding: 12px;
	background: linear-gradient(135deg, #10B981 0%, #34D399 100%);
	border-radius: 12px;
	border: none;
	box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
}

@media (max-width: 480px) {
	.waybill-header-section {
		padding: 10px;
		gap: 8px;
		margin-bottom: 12px;
	}
}

.header-row {
	display: flex;
	flex-direction: row;
	gap: 8px;
	flex-wrap: wrap; /* 允许换行 */
}

@media (max-width: 480px) {
	.header-row {
		flex-direction: row; /* 保持横向布局，但允许换行 */
		gap: 6px;
	}
	
	.header-item {
		flex: 1 1 calc(50% - 3px); /* 每行两个，考虑gap */
		min-width: 0;
	}
	
	.header-item:only-child {
		flex: 1 1 100%; /* 单独一个时占满整行 */
	}
}

.header-item {
	flex: 1;
	display: flex;
	flex-direction: row;
	align-items: center;
}

.header-item .header-label {
	font-size: 10px;
	color: rgba(255, 255, 255, 0.9);
	margin-right: 4px;
	min-width: 50px;
	flex-shrink: 0; /* 标签不缩小 */
}

.header-item .header-value {
	font-size: 10px;
	color: #FFFFFF;
	flex: 1;
}

.header-item .header-value.auto-fill {
	color: rgba(255, 255, 255, 0.7);
}

.header-item .header-value.auto-generate {
	color: #FFFFFF;
	font-weight: 500;
}

/* 申请时间字体 10px */
.header-item .apply-time-text {
	font-size: 10px;
}

/* 顶部信息输入框统一使用 10px 字号 */
.header-item .header-input {
	flex: 1;
	height: 26px;
	background: rgba(255, 255, 255, 0.9);
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-radius: 4px;
	padding: 0 6px;
	font-size: 10px;
	color: #333333;
	outline: none;
	min-width: 0; /* 允许输入框缩小 */
	box-sizing: border-box;
}

@media (max-width: 480px) {
	.header-item .header-input {
		height: 24px;
		padding: 0 4px;
	}
}

.header-item .header-input:focus {
	background: #FFFFFF;
	border-color: rgba(255, 255, 255, 0.6);
}

/* 货物信息区 */
.goods-info-section {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin-bottom: 12px;
	padding: 10px;
	background: #F8F9FA;
	border-radius: 6px;
	border: 1px solid #EEEEEE;
}

@media (max-width: 480px) {
	.goods-info-section {
		padding: 8px;
		gap: 6px;
		margin-bottom: 10px;
	}
}

.goods-row {
	display: flex;
	flex-direction: row;
	gap: 8px;
	flex-wrap: wrap; /* 允许换行 */
}

@media (max-width: 480px) {
	.goods-row {
		flex-direction: row; /* 保持横向布局，但允许换行 */
		gap: 6px;
	}
	
	.goods-item {
		flex: 1 1 calc(50% - 3px); /* 每行两个，考虑gap */
		min-width: 0;
	}
}

.goods-item {
	flex: 1;
	display: flex;
	flex-direction: row;
	align-items: center;
}

.goods-item.full-width {
	width: 100%;
	flex-direction: column;
	align-items: flex-start;
}

.goods-item .goods-label {
	font-size: 10px;
	color: #666666;
	margin-right: 4px;
	min-width: 50px;
	flex-shrink: 0; /* 标签不缩小 */
}

@media (max-width: 480px) {
	.goods-item .goods-label {
		min-width: 45px;
		margin-right: 3px;
	}
}

.goods-item.full-width .goods-label {
	margin-right: 0;
	margin-bottom: 12px;
	min-width: auto;
}

.goods-item .goods-input {
	flex: 1;
	height: 26px;
	background: #FFFFFF;
	border: 1px solid #DDDDDD;
	border-radius: 4px;
	padding: 0 6px;
	font-size: 10px;
	color: #333333;
	outline: none;
	box-sizing: border-box;
	min-width: 0; /* 允许输入框缩小 */
}

@media (max-width: 480px) {
	.goods-item .goods-input {
		height: 24px;
		padding: 0 4px;
	}
}

.goods-item .goods-input:focus {
	border-color: #1966FF;
}

.goods-item .goods-input[readonly] {
	background: #F5F5F5;
	color: #999999;
	cursor: not-allowed;
}

.goods-item .goods-value {
	font-size: 10px;
	color: #333333;
	flex: 1;
}

.goods-item .goods-value.auto-fill {
	color: #1966FF;
}

.goods-item .goods-value.auto-generate {
	color: #1966FF;
	font-weight: bold;
}

/* 位置按钮标签区域（三个按钮：蓝色、绿色、红色） */
.location-buttons-section {
	margin: 20px 0;
	padding: 0;
	width: 100%;
	display: block;
}

.location-buttons-row {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	gap: 10px;
	width: 100%;
}

@media (max-width: 480px) {
	.location-buttons-row {
		gap: 8px;
		flex-wrap: wrap; /* 允许换行 */
	}
}

.location-button {
	flex: 1;
	border-radius: 12px;
	padding: 15px 10px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	min-height: 80px;
	cursor: pointer;
	min-width: 0; /* 允许按钮缩小 */
	box-sizing: border-box;
	/* 背景色和阴影通过内联样式动态设置 */
}

@media (max-width: 480px) {
	.location-button {
		min-width: calc(33.333% - 6px); /* 三个按钮一行，考虑gap */
		min-height: 70px;
		padding: 12px 8px;
	}
}

.location-button:active {
	transform: scale(0.95);
	opacity: 0.9;
}

.location-button-text-top {
	font-size: 10px;
	color: #FFFFFF;
	font-weight: 500;
	margin-bottom: 8px;
	text-align: center;
	line-height: 1.2;
}

.location-button-text-bottom {
	font-size: 10px;
	color: #FFFFFF;
	text-align: center;
	line-height: 1.2;
}

/* 增加表单按钮 */
.add-goods-btn {
	width: 100%;
	height: 40px;
	background: #FFA500; /* 橙黄色 */
	border-radius: 4px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 15px;
	cursor: pointer;
	transition: all 0.3s ease;
	transition: opacity 0.2s;
}

.add-goods-btn:hover {
	opacity: 0.9;
}

.add-goods-btn:active {
	opacity: 0.8;
}

.add-goods-btn-text {
	color: #FFFFFF;
	font-size: 10px;
	font-weight: 500;
}

/* 底部操作按钮区域（入库详情页面专用） */
.content-wrapper .action-section {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	max-width: 750px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 12px;
	padding: 12px 15px;
	background: #FFFFFF;
	border-top: 1px solid #E5E7EB;
	box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
	z-index: 999;
	box-sizing: border-box;
}

@media (max-width: 480px) {
	.content-wrapper .action-section {
		padding: 10px;
		gap: 8px;
	}
	
	.action-btn-group {
		gap: 8px;
	}
	
	.action-btn-group .action-btn {
		height: 44px;
		font-size: 13px;
	}
	
	.action-section > .submit-btn {
		height: 44px;
	}
}

.action-section > .submit-btn {
	width: 100%;
	height: 50px;
	background: #10B981 !important; /* 绿色，与入库单号颜色一致 */
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	min-width: auto;
	box-shadow: none;
	border: none;
	transition: opacity 0.2s;
}

.action-section > .submit-btn:hover {
	opacity: 0.9;
}

.action-section > .submit-btn:active {
	opacity: 0.8;
}

.action-section > .submit-btn .btn-text {
	color: #FFFFFF !important;
	font-size: 10px !important;
	font-weight: normal;
}

.action-btn-group {
	display: flex;
	flex-direction: row;
	gap: 20px;
	width: 100%;
	justify-content: center;
}

.action-btn-group .action-btn {
	flex: 1;
	min-width: 0; /* 允许按钮在小屏幕上缩小 */
	height: 50px;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	cursor: pointer;
	border: none;
	transition: opacity 0.2s;
}

.action-btn-group .action-btn:hover {
	opacity: 0.9;
}

.action-btn-group .action-btn:active {
	opacity: 0.8;
}

.action-btn-group .action-btn.submit-btn {
	background: #1966FF;
}

.action-btn-group .action-btn.accept-btn {
	background: #10B981;
}

.action-btn-group .action-btn.edit-btn {
	background: #F59E0B;
}

.action-btn-group .action-btn.save-btn {
	background: #3B82F6;
}

.action-btn-group .action-btn.cancel-btn {
	background: #6B7280;
}

.action-btn-group .action-btn.disabled {
	background: #D1D5DB;
	cursor: not-allowed;
	opacity: 0.6;
}

.action-btn-group .action-btn .btn-text {
	color: #FFFFFF;
	font-size: 10px;
	font-weight: 500;
}

.function-text {
	font-size: 18px;
	color: #FFFFFF;
	font-weight: 600;
	letter-spacing: 1px;
	flex: 1;
}

/* ==================== 创建入库单按钮样式 ==================== */

.create-btn-section {
	margin: 16px 0;
}

.create-btn {
	width: 100%;
	background: linear-gradient(135deg, #1966FF 0%, #4C8AFF 100%);
	border-radius: 10px;
	padding: 16px 20px;
	box-shadow: 0 3px 10px rgba(25, 102, 255, 0.3);
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	gap: 8px;
	transition: all 0.3s ease;
	cursor: pointer;
	border: none;
}

.create-btn:active {
	transform: scale(0.98);
	box-shadow: 0 2px 8px rgba(25, 102, 255, 0.25);
}

.create-btn-icon {
	font-size: 18px;
	color: #FFFFFF;
}

.create-btn-text {
	font-size: 10px;
	color: #FFFFFF;
	font-weight: 600;
	letter-spacing: 1px;
}

/* ==================== 入库单列表样式 ==================== */

.receipt-list-section {
	margin: 16px 0;
}

.section-title {
	font-size: 18px;
	font-weight: bold;
	color: #333333;
	margin-bottom: 16px;
}

.filter-section {
	display: flex;
	flex-direction: row;
	gap: 12px;
	margin-bottom: 16px;
}

.filter-item {
	flex: 1;
	background: #F5F5F5;
	border-radius: 8px;
	padding: 10px 16px;
	text-align: center;
	cursor: pointer;
	transition: all 0.3s ease;
}

.filter-item span {
	font-size: 14px;
	color: #666666;
}

.filter-item.active {
	background: #1966FF;
}

.filter-item.active span {
	color: #FFFFFF;
	font-weight: 500;
}

.receipt-card {
	background: #FFFFFF;
	border-radius: 12px;
	padding: 16px;
	margin-bottom: 12px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	cursor: pointer;
	transition: all 0.3s ease;
}

.receipt-card:active {
	transform: scale(0.98);
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

.receipt-header {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 12px;
	padding-bottom: 12px;
	border-bottom: 1px solid #F0F0F0;
}

.receipt-no {
	font-size: 16px;
	font-weight: bold;
	color: #333333;
	flex: 1;
}

.receipt-status {
	font-size: 14px;
	padding: 4px 12px;
	border-radius: 12px;
	font-weight: 500;
}

.receipt-status.status-pending {
	background: #FFF3E0;
	color: #F57C00;
}

.receipt-status.status-received {
	background: #E8F5E9;
	color: #2E7D32;
}

.receipt-status.status-cancelled {
	background: #FFEBEE;
	color: #C62828;
}

.receipt-details {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.detail-row {
	display: flex;
	flex-direction: row;
	align-items: center;
}

.detail-label {
	font-size: 14px;
	color: #666666;
	margin-right: 8px;
	min-width: 80px;
}

.detail-value {
	font-size: 14px;
	color: #333333;
	flex: 1;
}

.empty-tip {
	text-align: center;
	padding: 40px 20px;
	color: #999999;
	font-size: 10px;
}

/* 库存管理按钮 */
.inventory-btn-section {
	margin: 15px 0;
}

.inventory-btn {
	width: 100%;
	background: linear-gradient(135deg, #EF4444 0%, #F87171 100%);
	border-radius: 10px;
	padding: 16px 20px;
	box-shadow: 0 3px 10px rgba(239, 68, 68, 0.3);
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	transition: all 0.3s ease;
	cursor: pointer;
}

.inventory-btn:active {
	transform: scale(0.98);
	box-shadow: 0 2px 8px rgba(239, 68, 68, 0.25);
}

.inventory-btn-icon {
	font-size: 20px;
	margin-right: 10px;
}

.inventory-btn-text {
	flex: 1;
	font-size: 10px;
	color: #FFFFFF;
	font-weight: 600;
	letter-spacing: 1px;
}

.inventory-btn-arrow {
	font-size: 12px;
	color: #FFFFFF;
	transition: transform 0.3s ease;
}

.inventory-btn-arrow.expanded {
	transform: rotate(180deg);
}

/* 库存管理面板样式 */
.inventory-panel {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
}

.inventory-panel.show {
	max-height: 3000px;
}

.inventory-panel-title {
	padding: 15px 0 10px;
	text-align: center;
	border-bottom: 1px solid #EEEEEE;
	margin-bottom: 10px;
}

.inventory-panel-title .title-text {
	font-size: 14px;
	font-weight: bold;
	color: #333333;
}

/* 入库单标签卡片 */
.receipt-tags-section {
	margin-bottom: 15px;
	padding: 12px;
	background: #FFFFFF;
	border-radius: 8px;
	border: none;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}

.receipt-tags-row {
	display: flex;
	flex-direction: row;
	gap: 8px;
	margin-bottom: 8px;
}

.receipt-tags-row:last-child {
	margin-bottom: 0;
}

.receipt-tag {
	flex: 1;
	min-width: 0;
	height: 30px;
	background: linear-gradient(135deg, #E8F5E9 0%, #C8E6C9 100%);
	border: none;
	border-radius: 6px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 6px;
	box-shadow: 0 1px 4px rgba(76, 175, 80, 0.15);
	transition: all 0.3s ease;
	cursor: pointer;
}

.receipt-tag-text {
	font-size: 12px;
	color: #2E7D32;
	font-weight: 500;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.receipt-tag:active {
	background: linear-gradient(135deg, #C8E6C9 0%, #A5D6A7 100%);
	transform: scale(0.98);
	box-shadow: 0 0.5px 2px rgba(76, 175, 80, 0.25);
}

/* SKU汇总卡片 */
.sku-summary-section {
	margin-bottom: 15px;
	padding: 12px;
	background: #FFFFFF;
	border-radius: 8px;
	border: none;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}

.sku-summary-table {
	width: 100%;
	margin-bottom: 12px;
}

.sku-summary-row {
	display: flex;
	flex-direction: row;
	border-bottom: 0.5px solid #F0F0F0;
}

.sku-summary-row:last-child {
	border-bottom: none;
}

.sku-summary-row.sku-summary-header {
	background: #F8F9FA;
	font-weight: 500;
}

.sku-summary-label-cell {
	width: 70px;
	min-width: 70px;
	padding: 8px 6px;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	border-right: 0.5px solid #F0F0F0;
}

.sku-summary-label {
	font-size: 12px;
	color: #666666;
}

.sku-select-btn {
	display: flex;
	align-items: center;
	gap: 4px;
	cursor: pointer;
}

.sku-select-text {
	font-size: 12px;
	color: #1966FF;
	font-weight: 500;
}

.sku-select-arrow {
	font-size: 12px;
	color: #1966FF;
}

.sku-summary-data-cell {
	flex: 1;
	min-width: 0;
	padding: 8px 6px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-right: 0.5px solid #F0F0F0;
}

.sku-summary-data-cell:last-child {
	border-right: none;
}

.sku-summary-sku-code {
	font-size: 12px;
	color: #1966FF;
	font-weight: 500;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.sku-summary-value {
	font-size: 12px;
	color: #333333;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.sku-summary-value.stock-danger-text {
	color: #FF4D4F;
	font-weight: 600;
}

/* 总计卡片（绿色边框） */
.sku-summary-totals {
	display: flex;
	flex-direction: row;
	gap: 8px;
	padding: 10px;
	background: #FFFFFF;
	border: 1px solid #4CAF50;
	border-radius: 6px;
}

.summary-total-item {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 4px;
}

.summary-total-label {
	font-size: 12px;
	color: #666666;
}

.summary-total-value {
	font-size: 12px;
	color: #2E7D32;
	font-weight: 600;
}

.inventory-signature-section {
	margin: 10px 0;
	padding: 12px;
	background: linear-gradient(135deg, #FFA500 0%, #FFB84D 100%);
	border-radius: 8px;
	border: none;
	box-shadow: 0 2px 6px rgba(255, 165, 0, 0.2);
}

.inventory-signature-row {
	display: flex;
	flex-direction: row;
	justify-content: space-around;
}

.inventory-signature-item {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 4px;
	flex: 1;
}

.inventory-signature-name-row {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 6px;
}

.inventory-signature-label {
	font-size: 13px;
	color: #000000;
	white-space: nowrap;
}

.inventory-signature-value {
	font-size: 14px;
	color: #1966FF;
	font-weight: normal;
	border-bottom: 0.5px solid rgba(25, 102, 255, 0.4);
	padding-bottom: 2px;
	min-width: 40px;
}

.inventory-signature-phone {
	font-size: 12px;
	color: #1966FF;
	white-space: nowrap;
}

.inventory-action-section {
	margin: 15px 0 30px;
}

.inventory-action-btn {
	width: 100%;
	height: 40px;
	border-radius: 6px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}

.inventory-action-btn.submit-btn {
	background: #1966FF;
}

.inventory-action-btn-text {
	font-size: 14px;
	font-weight: 500;
	color: #FFFFFF;
}

.inventory-tip {
	padding: 12px;
	background: #E8F5E9;
	border-radius: 6px;
	border: 0.5px solid #4CAF50;
	text-align: center;
}

.inventory-tip .tip-text {
	font-size: 13px;
	color: #2E7D32;
	line-height: 1.6;
}

/* SKU选择弹窗 */
.modal-mask {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.5);
	z-index: 2000;
	display: flex;
	align-items: center;
	justify-content: center;
}

.modal-content {
	width: 90%;
	max-width: 300px;
	background: #FFFFFF;
	border-radius: 12px;
	overflow: hidden;
}

.modal-content.sku-modal {
	max-height: 80vh;
	display: flex;
	flex-direction: column;
}

.modal-header {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	padding: 15px;
	border-bottom: 0.5px solid #EEEEEE;
}

.modal-title {
	font-size: 16px;
	font-weight: bold;
	color: #333333;
}

.modal-close {
	width: 24px;
	height: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	color: #999999;
	cursor: pointer;
}

.modal-body {
	flex: 1;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	padding: 15px;
}

.modal-body .search-input {
	width: 100%;
	height: 40px;
	background: #F8F9FA;
	border: 0.5px solid #EEEEEE;
	border-radius: 6px;
	padding: 0 12px;
	font-size: 14px;
	margin-bottom: 10px;
	box-sizing: border-box;
}

.modal-body .sku-list {
	flex: 1;
	overflow-y: auto;
}

.modal-body .sku-item {
	padding: 12px;
	border-bottom: 0.5px solid #EEEEEE;
	display: flex;
	flex-direction: column;
	gap: 4px;
	cursor: pointer;
}

.modal-body .sku-item:last-child {
	border-bottom: none;
}

.modal-body .sku-item:active {
	background: #F8F9FA;
}

.modal-body .sku-code {
	font-size: 14px;
	font-weight: bold;
	color: #333333;
}

.modal-body .sku-name {
	font-size: 12px;
	color: #666666;
}

/* 财务管理按钮 */
.finance-btn-section {
	margin: 15px 0;
}

.finance-btn {
	width: 100%;
	background: linear-gradient(135deg, #1966FF 0%, #4C8AFF 100%);
	border-radius: 10px;
	padding: 16px 20px;
	box-shadow: 0 3px 10px rgba(25, 102, 255, 0.3);
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	transition: all 0.3s ease;
	cursor: pointer;
}

.finance-btn:active {
	transform: scale(0.98);
	box-shadow: 0 2px 8px rgba(25, 102, 255, 0.25);
}

.finance-btn-icon {
	font-size: 20px;
	margin-right: 10px;
}

.finance-btn-text {
	flex: 1;
	font-size: 10px;
	color: #FFFFFF;
	font-weight: 600;
	letter-spacing: 1px;
}

.finance-btn-arrow {
	font-size: 12px;
	color: #FFFFFF;
	transition: transform 0.3s ease;
}

.finance-btn-arrow.expanded {
	transform: rotate(180deg);
}

/* 财务管理面板 */
.finance-panel {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
}

.finance-panel.show {
	max-height: 3000px;
}

.finance-panel-title {
	padding: 15px 0 10px;
	text-align: center;
	border-bottom: 1px solid #EEEEEE;
	margin-bottom: 10px;
}

.finance-panel-title .title-text {
	font-size: 14px;
	font-weight: bold;
	color: #333333;
}

/* 财务表格区域 */
.finance-table-section {
	margin: 10px 0;
	border: 1px solid #DDDDDD;
	border-radius: 6px;
	overflow: hidden;
	background: #FFFFFF;
}

.finance-table-header {
	display: flex;
	flex-direction: row;
	background: #F0F0F0;
	border-bottom: 1px solid #DDDDDD;
}

.finance-table-header .finance-table-cell {
	flex: 1;
	padding: 8px 4px;
	font-size: 12px;
	font-weight: bold;
	color: #333333;
	text-align: center;
	border-right: 1px solid #DDDDDD;
}

.finance-table-header .finance-table-cell:last-child {
	border-right: none;
}

.finance-table-body {
	max-height: 300px;
	overflow-y: auto;
}

.finance-table-row {
	display: flex;
	flex-direction: row;
	border-bottom: 1px solid #EEEEEE;
}

.finance-table-row:last-child {
	border-bottom: none;
}

.finance-table-row.empty-row {
	min-height: 30px;
}

.finance-table-row .finance-table-cell {
	flex: 1;
	padding: 8px 4px;
	font-size: 11px;
	color: #333333;
	text-align: center;
	border-right: 1px solid #EEEEEE;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 30px;
}

.finance-table-row .finance-table-cell:last-child {
	border-right: none;
}

/* 充值提现操作按钮区域 */
.finance-action-section {
	display: flex;
	flex-direction: row;
	gap: 10px;
	margin: 15px 0;
	padding: 0 15px;
}

.finance-action-btn {
	flex: 1;
	height: 44px;
	border-radius: 8px;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	gap: 6px;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	cursor: pointer;
}

.finance-action-btn:active {
	transform: scale(0.98);
	opacity: 0.9;
}

.finance-action-icon {
	font-size: 18px;
}

.finance-action-text {
	font-size: 14px;
	font-weight: 600;
	color: #FFFFFF;
}

.recharge-action-btn {
	background: linear-gradient(135deg, #1966FF 0%, #4C8AFF 100%);
}

.withdraw-action-btn {
	background: linear-gradient(135deg, #EF4444 0%, #F87171 100%);
}

/* 底部统计按钮区域 */
.finance-summary-section {
	display: flex;
	flex-direction: row;
	margin: 15px 0 30px;
	gap: 6px;
}

.finance-summary-btn {
	flex: 1;
	min-width: 0;
	padding: 10px 6px;
	border-radius: 6px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(255, 255, 255, 0.3);
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	cursor: pointer;
}

.finance-summary-btn:active {
	transform: scale(0.95);
	opacity: 0.9;
}

.finance-summary-label {
	font-size: 12px;
	color: #FFFFFF;
	margin-bottom: 6px;
	font-weight: 500;
	white-space: nowrap;
}

.finance-summary-value {
	font-size: 16px;
	color: #FFFFFF;
	font-weight: 600;
	line-height: 1.2;
}

.finance-summary-btn.recharge-btn {
	background: linear-gradient(135deg, #1966FF 0%, #4C8AFF 100%);
}

.finance-summary-btn.fee-btn {
	background: linear-gradient(135deg, #FFA500 0%, #FFB84D 100%);
}

.finance-summary-btn.other-btn {
	background: linear-gradient(135deg, #10B981 0%, #34D399 100%);
}

.finance-summary-btn.balance-btn {
	background: linear-gradient(135deg, #8B5CF6 0%, #A78BFA 100%);
}

/* 拼多多绑定区域 */
.pdd-binding-section {
	background: #FFFFFF;
	border-radius: 12px;
	padding: 16px;
	margin: 16px 0;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.binding-header {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 12px;
}

.binding-title {
	font-size: 16px;
	color: #333333;
	font-weight: 600;
}

.binding-status {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 6px;
	padding: 6px 12px;
	border-radius: 15px;
	background: #F5F5F5;
}

.binding-status.bound {
	background: #E8F5E9;
}

.status-text {
	font-size: 12px;
	color: #666666;
}

.binding-status.bound .status-text {
	color: #10B981;
}

.status-icon {
	font-size: 12px;
	color: #999999;
}

.binding-status.bound .status-icon {
	color: #10B981;
}

.binding-info {
	display: flex;
	flex-direction: column;
	gap: 6px;
	margin-bottom: 12px;
	padding: 12px;
	background: #F8F9FA;
	border-radius: 8px;
}

.info-text {
	font-size: 12px;
	color: #666666;
}

.binding-actions {
	display: flex;
	flex-direction: row;
	gap: 10px;
	margin-bottom: 10px;
}

.action-btn {
	flex: 1;
	padding: 12px;
	border-radius: 8px;
	text-align: center;
	transition: all 0.3s ease;
	cursor: pointer;
}

.bind-btn {
	background: linear-gradient(135deg, #E02E24 0%, #FF6B6B 100%);
}

.sync-btn {
	background: linear-gradient(135deg, #1966FF 0%, #4C8AFF 100%);
}

.sync-btn.loading {
	opacity: 0.6;
}

.unbind-btn {
	background: #F5F5F5;
}

.btn-text {
	font-size: 14px;
	color: #FFFFFF;
	font-weight: 500;
}

.unbind-btn .btn-text {
	color: #666666;
}

.sync-info {
	text-align: center;
	padding-top: 10px;
	border-top: 1px solid #EEEEEE;
}

.sync-text {
	font-size: 11px;
	color: #999999;
}

/* 订单管理按钮 */
.orders-btn-section {
	margin: 15px 0;
}

.orders-btn {
	width: 100%;
	background: linear-gradient(135deg, #10B981 0%, #34D399 100%);
	border-radius: 10px;
	padding: 16px 20px;
	box-shadow: 0 3px 10px rgba(16, 185, 129, 0.3);
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	transition: all 0.3s ease;
	cursor: pointer;
}

.orders-btn:active {
	transform: scale(0.98);
	box-shadow: 0 2px 8px rgba(16, 185, 129, 0.25);
}

.orders-btn-icon {
	font-size: 20px;
	margin-right: 10px;
	color: #FFFFFF;
}

.orders-btn-text {
	flex: 1;
	font-size: 10px;
	color: #FFFFFF;
	font-weight: 600;
	letter-spacing: 1px;
}

.orders-btn-arrow {
	font-size: 12px;
	color: #FFFFFF;
	transition: transform 0.3s ease;
}

.orders-btn-arrow.expanded {
	transform: rotate(180deg);
}

/* 订单管理面板 */
.orders-panel {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
}

.orders-panel.show {
	max-height: 2000px;
}

.orders-panel-title {
	padding: 15px 0 10px;
	text-align: center;
	border-bottom: 1px solid #EEEEEE;
	margin-bottom: 10px;
}

.orders-panel-title .title-text {
	font-size: 14px;
	font-weight: bold;
	color: #333333;
}

/* 订单管理面板内的顶部信息区（橙色渐变） */
.orders-panel .waybill-header-section {
	background: linear-gradient(135deg, #F59E0B 0%, #FBBF24 100%);
	box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.orders-panel .header-item .header-label {
	color: #1F2937;
}

.orders-panel .header-item .header-value {
	color: #111827;
}

.orders-panel .header-item .header-value.auto-fill {
	color: #111827;
}

.orders-panel .header-item .header-value.auto-generate {
	color: #111827;
}

.orders-panel .apply-time-text {
	font-size: 10px;
}

/* 订单表格 */
.orders-table-section {
	margin: 10px 0;
	border: 0.5px solid #DDDDDD;
	border-radius: 6px;
	overflow: hidden;
	background: #FFFFFF;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}

.orders-table-header {
	display: flex;
	flex-direction: row;
	background: #F0F0F0;
	border-bottom: 1px solid #DDDDDD;
}

.orders-table-header .orders-table-cell {
	flex: 1;
	padding: 8px 4px;
	font-size: 12px;
	font-weight: bold;
	color: #333333;
	text-align: center;
	border-right: 0.5px solid #DDDDDD;
}

.orders-table-header .orders-table-cell:last-child {
	border-right: none;
}

.orders-table-body {
	max-height: 300px;
	overflow-y: auto;
}

.orders-table-row {
	display: flex;
	flex-direction: row;
	border-bottom: 0.5px solid #EEEEEE;
}

.orders-table-row:last-child {
	border-bottom: none;
}

.orders-table-row.empty-row {
	min-height: 30px;
}

.orders-table-row .orders-table-cell {
	flex: 1;
	padding: 8px 4px;
	font-size: 11px;
	color: #333333;
	text-align: center;
	border-right: 0.5px solid #EEEEEE;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 30px;
}

.orders-table-row .orders-table-cell:last-child {
	border-right: none;
}

/* SKU按钮区域 */
.sku-buttons-section {
	margin: 15px 0;
	padding: 0;
}

.sku-buttons-row {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	gap: 10px;
	margin-bottom: 10px;
}

.sku-buttons-row:last-child {
	margin-bottom: 0;
}

.sku-button {
	flex: 1;
	border-radius: 8px;
	padding: 12px 8px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	min-height: 60px;
	cursor: pointer;
}

.sku-button:active {
	transform: scale(0.95);
	opacity: 0.9;
}

.sku-button-text-top {
	font-size: 12px;
	color: #FFFFFF;
	font-weight: 500;
	margin-bottom: 6px;
	text-align: center;
	line-height: 1.2;
}

.sku-button-text-bottom {
	font-size: 11px;
	color: #FFFFFF;
	text-align: center;
	line-height: 1.2;
}

/* 发货管理按钮 */
.shipment-btn-section {
	margin: 15px 0;
}

.shipment-btn {
	width: 100%;
	background: linear-gradient(135deg, #F59E0B 0%, #FBBF24 100%);
	border-radius: 10px;
	padding: 16px 20px;
	box-shadow: 0 3px 10px rgba(245, 158, 11, 0.3);
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	transition: all 0.3s ease;
	cursor: pointer;
}

.shipment-btn:active {
	transform: scale(0.98);
	box-shadow: 0 2px 8px rgba(245, 158, 11, 0.25);
}

.shipment-btn-icon {
	font-size: 20px;
	margin-right: 10px;
	color: #FFFFFF;
}

.shipment-btn-text {
	flex: 1;
	font-size: 10px;
	color: #FFFFFF;
	font-weight: 600;
	letter-spacing: 1px;
}

.shipment-btn-arrow {
	font-size: 12px;
	color: #FFFFFF;
	transition: transform 0.3s ease;
}

.shipment-btn-arrow.expanded {
	transform: rotate(180deg);
}

/* 发货管理面板 */
.shipment-panel {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
}

.shipment-panel.show {
	max-height: 2000px;
}

.shipment-panel-title {
	padding: 15px 0 10px;
	text-align: center;
	border-bottom: 1px solid #EEEEEE;
	margin-bottom: 10px;
}

.shipment-panel-title .title-text {
	font-size: 14px;
	font-weight: bold;
	color: #333333;
}

/* 发货管理面板内的顶部信息区（橙色渐变） */
.shipment-panel .waybill-header-section {
	background: linear-gradient(135deg, #F59E0B 0%, #FBBF24 100%);
	box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.shipment-panel .header-item .header-label {
	color: #1F2937;
}

.shipment-panel .header-item .header-value {
	color: #111827;
}

.shipment-panel .header-item .header-value.auto-fill {
	color: #111827;
}

.shipment-panel .header-item .header-value.auto-generate {
	color: #111827;
}

.shipment-panel .apply-time-text {
	font-size: 10px;
}

/* 发货表格 */
.shipment-table-section {
	margin: 10px 0;
	border: 0.5px solid #DDDDDD;
	border-radius: 6px;
	overflow: hidden;
	background: #FFFFFF;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}

.shipment-table-header {
	display: flex;
	flex-direction: row;
	background: #F0F0F0;
	border-bottom: 1px solid #DDDDDD;
}

.shipment-table-header .shipment-table-cell {
	flex: 1;
	padding: 8px 4px;
	font-size: 12px;
	font-weight: bold;
	color: #333333;
	text-align: center;
	border-right: 0.5px solid #DDDDDD;
}

.shipment-table-header .shipment-table-cell:last-child {
	border-right: none;
}

.shipment-table-body {
	max-height: 300px;
	overflow-y: auto;
}

.shipment-table-row {
	display: flex;
	flex-direction: row;
	border-bottom: 0.5px solid #EEEEEE;
}

.shipment-table-row:last-child {
	border-bottom: none;
}

.shipment-table-row.empty-row {
	min-height: 30px;
}

.shipment-table-row .shipment-table-cell {
	flex: 1;
	padding: 8px 4px;
	font-size: 11px;
	color: #333333;
	text-align: center;
	border-right: 0.5px solid #EEEEEE;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 30px;
}

.shipment-table-row .shipment-table-cell:last-child {
	border-right: none;
}

/* 快递公司图标区域 */
.express-companies-icons {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	gap: 10px;
	margin-top: 12px;
}

.express-company-icon {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}

.express-icon-wrapper {
	width: 100%;
	aspect-ratio: 1;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
	transition: all 0.3s ease;
	overflow: hidden;
	background: #FFFFFF;
}

.express-company-icon:active .express-icon-wrapper {
	transform: scale(0.95);
	opacity: 0.9;
}

.express-icon-img {
	width: 100%;
	height: 100%;
	border-radius: 8px;
	object-fit: cover;
}

/* 快递管理面板内的顶部信息区（绿色渐变） */
.orders-panel .waybill-header-section {
	background: linear-gradient(135deg, #10B981 0%, #34D399 100%);
	box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.orders-panel .header-item .header-label {
	color: rgba(255, 255, 255, 0.9);
}

.orders-panel .header-item .header-value {
	color: #FFFFFF;
}

.orders-panel .header-item .header-value.auto-fill {
	color: #FFFFFF;
}

.orders-panel .header-item .header-value.auto-generate {
	color: #FFFFFF;
}
