Files
bw-mini-app/src/components/ImageResultViewer/index.css
imeepos 52b4786459 fix: 修复界面组件布局和显示问题
- 修复LoadingOverlay组件文本布局,确保两行显示
- 为ImageResultViewer头部添加精致分割线
- 修复DownloadSection按钮显示问题,调整布局层级
- 优化组件间距和视觉效果
2025-09-01 18:23:12 +08:00

92 lines
1.6 KiB
CSS

.fullscreen-container {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: black;
z-index: 999;
display: flex;
flex-direction: column;
}
.fullscreen-header {
display: flex;
justify-content: space-between;
align-items: center;
padding: 40rpx;
background: transparent;
color: white;
position: absolute;
top: 0;
left: 0;
right: 0;
z-index: 10;
border-bottom: 2rpx solid rgba(255, 255, 255, 0.1);
}
.fullscreen-title {
font-size: 36rpx;
font-weight: bold;
}
.close-btn {
width: 80rpx;
height: 80rpx;
background: rgba(255, 255, 255, 0.2);
color: white;
border: none;
border-radius: 40rpx;
font-size: 48rpx;
line-height: 80rpx;
text-align: center;
}
.fullscreen-image-container {
flex: 1;
width: 100%;
position: relative;
overflow: hidden;
display: flex;
}
.backdrop-blur {
width: 100%;
height: 100%;
backdrop-filter: blur(10px);
-webkit-backdrop-filter: blur(10px);
background: rgba(0, 0, 0, 0.3);
display: flex;
justify-content: center;
align-items: center;
position: relative;
}
/* 添加磨砂玻璃渐变遮罩层,增强高级感 */
.backdrop-blur::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: linear-gradient(
135deg,
rgba(255, 255, 255, 0.1) 0%,
rgba(255, 255, 255, 0.05) 50%,
rgba(0, 0, 0, 0.1) 100%
);
pointer-events: none;
z-index: 1;
}
.fullscreen-image {
max-width: 100%;
max-height: 100%;
width: 100%;
height: 100%;
z-index: 2;
position: relative;
border-radius: 0rpx;
box-shadow: 0 20rpx 60rpx rgba(0, 0, 0, 0.3);
}