.mn-form-item {
    width: 100%;
}

.mn-form-item-label {
    margin: 0 0 5px;
}

.number-input-container {
    margin-bottom: 25px;
}

.number-input-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #34495e;
    font-size: 16px;
}

.input-with-buttons {
    display: flex;
    align-items: center;
    position: relative;
}

.number-input {
    flex: 1;
    height: 40px;
    border: 1px solid rgb(224, 224, 230);
    border-radius: 3px;
    color: #2c3e50;
    transition: all 0.3s ease;
    padding: 0 10px;
}

.number-input:focus {
    border-color: #6548c2ff;
    /* box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2); */
    outline: none;
}

.number-btn {
    width: 40px;
    height: 38px;
    color: #666;
    background: #fff;
    border: none;
    font-size: 24px;
    cursor: pointer;
    /* margin: 0 8px; */
    transition: all 0.2s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 1px;
    right: 40px;
    border-left: 1px solid rgb(224, 224, 230);
    -webkit-user-select: none; /* Safari */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* IE10+/Edge */
    user-select: none; /* Standard */
}

.number-btn:disabled {
    background: #bdc3c7;
    cursor: not-allowed;
    transform: none;
}

.decrement-btn {
    right: 1px;
}

.decrement-btn:hover {
}

.upload-area {
    border: 1px dashed #ddd;
    border-radius: 12px;
    padding: 30px 40px;
    text-align: center;
    transition: all 0.3s ease;
    background: #fff;
    cursor: pointer;
    position: relative;
}

.upload-area:hover,
.upload-area.dragover {
    border-color: #6548c2ff;
}

.upload-input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.upload-icon {
    font-size: 50px;
    color: #3498db;
    margin-bottom: 15px;
}

.upload-img img {
    width: 40px;
    margin: 0 0 5px;
}

.upload-title {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #2c3e50;
}

.upload-desc {
    color: #7f8c8d;
    margin-bottom: 20px;
    word-wrap: break-word;
    word-break: break-all;
    overflow-wrap: break-word;
    line-height: 1.5;
    max-width: 100%;
}

.file-info {
    margin-bottom: 25px;
}

.file-info-title {
    font-weight: 600;
    margin-bottom: 10px;
    color: #2c3e50;
}

.file-types {
    color: #7f8c8d;
    margin-bottom: 15px;
}

.file-count {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    border-radius: 8px;
    display: none;
    margin-top: 15px;
}

.count-text {
    color: #7f8c8d;
}

.count-number {
    color: #7f8c8d;
    font-weight: 600;
}

.file-list {
    margin-top: 15px;
}

.file-item {
    display: flex;
    align-items: center;
    padding: 10px;
    border: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 10px;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.file-item:hover {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    /* transform: translateY(-2px); */
}

.file-icon {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    margin-right: 15px;
    color: #3498db;
    font-size: 20px;
}

.file-icon img {
    max-width: 30px;
    max-height: 40px;
}

.file-details {
    flex: 1;
}

.file-name {
    font-weight: 500;
    margin-bottom: 0px;
    color: #2c3e50;
}

.file-size {
    color: #7f8c8d;
    font-size: 12px;
}

.file-remove {
    color: #e74c3c;
    cursor: pointer;
    font-size: 18px;
    padding: 5px;
    transition: all 0.2s ease;
}

.file-remove img {
    width: 22px;
}

.progress-bar {
    height: 5px;
    background: #ecf0f1;
    border-radius: 3px;
    margin-top: 10px;
    overflow: hidden;
}

.progress {
    height: 100%;
    background: #2ecc71;
    width: 0%;
    transition: width 0.3s ease;
}

.hidden {
    display: none;
}

.error-message {
    color: #e74c3c;
    text-align: center;
    margin-top: 5px;
    /* font-weight: 500; */
    font-size: 12px;
}

/* 文件状态样式 */
.file-status {
    font-size: 12px;
    margin-top: 2px;
}

.file-status.status-uploading {
    color: #3498db;
}

.file-status.status-success {
    color: #27ae60;
}

.file-status.status-error {
    color: #e74c3c;
}


.multi-select-list, .single-select-list {
    /* display: flex;
    flex-wrap: wrap; */
}

.select-item {
    background: #fff;
    cursor: pointer;
    padding: 10px 15px;
    border-radius: 6px;
    margin: 0 10px 10px 0;
}

.select-item.active {
    background: #4262D7;
    color:#fff;
}