.QianmoYunDialogC {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    background: white;
    border-radius: 12px;
    padding: 20px;
    width: 80%;
    max-width: 720px;
    max-height: 90vh;
    box-shadow: 0 4px 16px rgba(0,0,0,0.3);
    flex-direction: column;
    overflow-y: auto;
    z-index: 1000;
}


.QianmoYunDialogHeaderC {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 12px;
}

.QianmoYunDialogHeaderC h3 {
	margin: 0;
}

.QianmoYunDialogCloseC {
	font-size: 18px;
	cursor: pointer;
	color: #666;
}

.QianmoYunDialogUploadAreaC {
	margin-bottom: 16px;
}

input[type="file"] {
	display: none;
}

.custom-file-label {
	display: inline-block;
	padding: 10px 16px;
	background: #28a745;
	color: white;
	border-radius: 6px;
	cursor: pointer;
	font-size: 15px;
	transition: background 0.3s;
}

.custom-file-label:hover {
	background: #218838;
}

.QianmoYunDialogDividerC {
	border-top: 1px solid #ddd;
	margin: 16px 0;
}

.QianmoYunImageAreaC {
	flex: 1;
	border: 1px solid #ccc;
	border-radius: 8px;
	padding: 12px;
	overflow-y: auto;
	max-height: 400px;
	background-color: #fafafa;
	pointer-events: auto;
}

.QianmoYunImageAreaC.disabled {
	pointer-events: none;
	opacity: 0.5;
}

.QianmoYunImageGridC {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 12px;
}

.QianmoYunImageItemC {
	position: relative;
	border: 2px solid transparent;
	border-radius: 8px;
	overflow: hidden;
	transition: border 0.2s ease;
	cursor: pointer;
}

.QianmoYunImageItemC.selected {
	border-color: #007bff;
}

.QianmoYunImageItemC img {
	width: 100%;
	height: 100px;
	object-fit: cover;
	display: block;
}

.QianmoYunImageDeleteBtC {
	position: absolute;
	top: 6px;
	right: 6px;
	background: rgba(255,255,255,0.8);
	border: none;
	border-radius: 50%;
	padding: 4px;
	cursor: pointer;
}

.QianmoYunImageDeleteBtC i {
	color: #ff4d4f;
}

.QianmoYunProgressContainerC {
	margin-top: 10px;
	display: none;
	align-items: center;
	gap: 10px;
}

.QianmoYunProgressBarC {
	flex: 1;
	height: 10px;
	background-color: #e9ecef;
	border-radius: 5px;
	overflow: hidden;
}

.QianmoYunProgressFillC {
	height: 100%;
	background-color: #17a2b8;
	width: 0%;
	transition: width 0.2s ease;
}

.QianmoYunProgressPercentC {
	width: 40px;
	text-align: right;
	font-size: 14px;
}