/* 图片改尺寸模块样式 */
.resize-content-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    padding: 30px;
    max-width: 800px;
}

.resize-form-group {
    margin-bottom: 20px;
}

.resize-label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #333;
}

.resize-input-text {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 14px;
}

.resize-input-text:focus {
    border-color: #4a90e2;
    outline: none;
}

.resize-hint {
    font-size: 12px;
    color: #666;
    margin-top: 5px;
}

.resize-mode-box {
    background: #f9f9f9;
    padding: 15px;
    border-radius: 4px;
    border: 1px dashed #ccc;
    display: none; /* 默认隐藏，只有宽高都有值才显示 */
}

.resize-select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: #fff;
}

.resize-radio-group {
    display: flex;
    gap: 20px;
    margin-top: 10px;
}

.resize-radio-item {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

#resize-btn-start {
    background-color: #4a90e2;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
}

#resize-btn-start:hover {
    background-color: #357abd;
}

.resize-error-msg {
    color: #e74c3c;
    font-size: 14px;
    margin-top: 10px;
    display: none;
}