:root {
    --primary-color: #667eea;
    --secondary-color: #764ba2;
    --error-color: #ff4757;
    --success-color: #2ed573;
    --warning-color: #ffa502;
    --text-color: #333;
    --text-light-color: #555;
    --text-lighter-color: #666;
    --border-color: #ddd;
    --bg-color: #f5f7fa;
    --white: #ffffff;
    --shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    --shadow-hover: 0 5px 15px rgba(102, 126, 234, 0.4);
    --border-radius: 6px;
    --transition: all 0.3s ease;
}

/* 错误信息样式 */
.error-message {
    color: var(--error-color);
    font-size: 13px;
    margin-top: 5px;
    padding: 8px;
    background: #ffe0e3;
    border-radius: var(--border-radius);
}

.error-field {
    border: 1px solid #ff0000 !important;
    background-color: #fff8f8 !important;
}

/* 上传文件样式 */
.dropzone .dz-remove {
    position: absolute;
    top: 5px;
    right: 5px;
    background: #ff4757;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 4px;
    cursor: pointer;
    z-index: 10;
}