style(ebiz): 调整身份证扫描组件背景色和相机图标位置

- 将背景色从 #fff8f7 更改为 #f5f7fa
- 调整相机图标垂直位置从 50% 上移至 40%
This commit is contained in:
hz
2025-11-17 14:39:41 +08:00
parent 105e42b8b8
commit 8dedcc80f6

View File

@@ -235,7 +235,8 @@ export default {
<style lang="scss" scoped>
.identitycard-scan-container {
background: #fff8f7;
//background: #fff8f7;
background: #f5f7fa;
.identitycard-scan-content {
//// 身份证信息显示样式
//.identitycard-scan-info {
@@ -266,7 +267,7 @@ export default {
.camera-icon {
position: absolute;
top: 50%;
top: 40%;
left: 50%;
transform: translate(-50%, -50%);
}