/* 管理员商品/服务上架申请页样式 */

.radio-group {
    display: flex;
    gap: 20px;
    padding: 10px 0;
}

.radio-item {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.radio-item input[type="radio"] {
    width: 18px;
    height: 18px;
    margin-right: 8px;
    cursor: pointer;
}

.radio-text {
    font-size: 14px;
    color: #333;
}

.upload-area {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 10px 0;
}

.upload-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.upload-item {
    position: relative;
    width: 100px;
    height: 100px;
    border-radius: 8px;
    overflow: hidden;
}

.upload-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.upload-item-delete {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 20px;
    height: 20px;
    background-color: #FF4D4F;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 12px;
    cursor: pointer;
}

.upload-btn {
    width: 100px;
    height: 100px;
    border: 1px dashed #ddd;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background-color: #fafafa;
}

.upload-btn:active {
    background-color: #f0f0f0;
}

.upload-icon {
    font-size: 24px;
    color: #999;
    margin-bottom: 4px;
}

.upload-text {
    font-size: 12px;
    color: #999;
    text-align: center;
    padding: 0 4px;
}

.required {
    color: #FF4D4F;
}

/* 底部操作 */
.bottom-action {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 750px;
    padding: 15px;
    background-color: #fff;
    border-top: 1px solid #eee;
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.05);
}

