ai-c/pages/webview/webview.wxss
2026-02-02 18:21:32 +08:00

59 lines
983 B
Plaintext

.page-container {
min-height: 100vh;
background: #f5f5f5;
}
.unified-header {
position: fixed;
top: 0;
left: 0;
right: 0;
height: 88rpx;
padding-top: var(--status-bar-height, 44rpx);
background: linear-gradient(135deg, #B06AB3 0%, #9B59B6 100%);
display: flex;
align-items: center;
justify-content: space-between;
padding-left: 30rpx;
padding-right: 30rpx;
z-index: 1000;
}
.unified-header-left {
display: flex;
align-items: center;
min-width: 120rpx;
}
.unified-back-icon {
width: 48rpx;
height: 48rpx;
}
.unified-back-text {
color: #fff;
font-size: 28rpx;
margin-left: 8rpx;
}
.unified-header-title {
color: #fff;
font-size: 34rpx;
font-weight: 500;
flex: 1;
text-align: center;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.unified-header-right {
min-width: 120rpx;
}
web-view {
width: 100%;
height: calc(100vh - 88rpx);
margin-top: calc(88rpx + var(--status-bar-height, 44rpx));
}