/* 图片剪裁模块样式 */
.crop-content-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    padding: 30px;
    max-width: 900px;
}

.crop-form-group {
    margin-bottom: 20px;
}

.crop-label {
    display: block;
    margin-bottom: 12px;
    font-weight: bold;
    color: #333;
}

.crop-hint {
    font-size: 12px;
    color: #666;
    margin-top: 5px;
}

/* 剪裁容器限制高度 */
.img-container {
    max-height: 500px;
    overflow: hidden;
    background-color: #f7f7f7;
    border: 1px solid #ddd;
    border-radius: 4px;
}

#crop-btn-start {
    background-color: #27ae60;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
}

#crop-btn-start:hover {
    background-color: #219150;
}

.crop-error-msg {
    color: #e74c3c;
    font-size: 14px;
    margin-top: 10px;
    display: none;
}