.umShow{background-color: #fff6d3;padding:6px 8px;border: 1px dashed #fbcd7a;color: #ff9208;margin: 10px 0;text-align: center;}
.umShow.adminShow{background-color: #e5f9e7;border: 1px dashed #ABE1B0;color: #42b76a;}
.umHidden{background: #f9fafc; padding:35px 20px 10px 20px;border: 1px dashed rgba(227,229,236,.4); margin:8px 0 8px 0; position: relative;}
body .umHidden p{ padding: 10px 0; margin: 0;}
.umHidden .tips{ height: 30px; line-height: 30px; text-align: center; position: absolute; top: 0; right: 0px; font-size: 14px; padding: 0 10px 0 20px; background-color: rgba(227,229,236,.4); border-bottom-left-radius: 30px;color: #50555a9c;}
.umHidden .tips:before{
    content: '';
    display: inline-block;
    width: 17px;
    height: 17px;
    background-color: #42b76a;  /* 图标颜色，可自由更改 */
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M19 10H20C20.5523 10 21 10.4477 21 11V21C21 21.5523 20.5523 22 20 22H4C3.44772 22 3 21.5523 3 21V11C3 10.4477 3.44772 10 4 10H5V9C5 5.13401 8.13401 2 12 2C15.866 2 19 5.13401 19 9V10ZM5 12V20H19V12H5ZM11 14H13V18H11V14ZM17 10V9C17 6.23858 14.7614 4 12 4C9.23858 4 7 6.23858 7 9V10H17Z'%3E%3C/path%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: 5px;
    vertical-align: -3px;
}

.umshow-admin {
	max-width: 1100px;
	margin: 0 auto;
	padding: 8px 0 24px;
}
.umshow-panel {
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 8px;
	padding: 20px;
	box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}
.umshow-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
}
.umshow-card {
	padding: 16px;
	border: 1px solid #eef2f7;
	border-radius: 8px;
	background: #f9fafb;
}
.umshow-card h2 {
	margin: 0 0 6px;
	font-size: 16px;
	line-height: 1.4;
}
.umshow-card .desc {
	margin: 0;
	color: #6b7280;
	font-size: 13px;
	line-height: 1.7;
}
.umshow-switches {
	display: grid;
	gap: 12px;
	margin-top: 14px;
}
.umshow-switch {
	display: flex;
	gap: 12px;
	align-items: flex-start;
	padding: 12px 14px;
	border: 1px solid #e5e7eb;
	border-radius: 8px;
	background: #fff;
}
.umshow-switch input {
	margin-top: 3px;
	width: 16px;
	height: 16px;
}
.umshow-switch strong {
	display: block;
	font-size: 14px;
	line-height: 1.5;
}
.umshow-switch span {
	display: block;
	margin-top: 4px;
	color: #6b7280;
	font-size: 13px;
	line-height: 1.6;
}
.umshow-field {
	margin-top: 14px;
}
.umshow-field label {
	display: block;
	margin-bottom: 8px;
	font-weight: 600;
	color: #1f2937;
}
.umshow-field textarea {
	width: 100%;
	min-height: 120px;
	resize: vertical;
	box-sizing: border-box;
	border-radius: 8px;
	border: 1px solid #d1d5db;
	padding: 10px 12px;
	font-size: 14px;
	line-height: 1.6;
	background: #fff;
}
.umshow-field textarea:focus,
.umshow-switch input:focus {
	outline: none;
	border-color: #409eff;
	box-shadow: 0 0 0 3px rgba(64, 158, 255, 0.12);
}
.umshow-help {
	margin-top: 8px;
	color: #6b7280;
	font-size: 13px;
	line-height: 1.6;
}
.umshow-actions {
	display: flex;
	justify-content: flex-end;
	margin-top: 20px;
}
.umshow-actions .button-primary {
	min-width: 120px;
}
@media (max-width: 860px) {
	.umshow-grid {
		grid-template-columns: 1fr;
	}
	.umshow-actions {
		justify-content: stretch;
	}
	.umshow-actions .button-primary {
		width: 100%;
	}
}
