84 lines
963 B
Plaintext
84 lines
963 B
Plaintext
.page {
|
|
width: 100%;
|
|
height: 100%;
|
|
background-color: #000;
|
|
color: #fff;
|
|
}
|
|
|
|
.nav-bar {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
z-index: 1000;
|
|
background-color: #000;
|
|
}
|
|
|
|
.nav-content {
|
|
display: flex;
|
|
align-items: center;
|
|
padding: 0 12px;
|
|
}
|
|
|
|
.nav-back {
|
|
width: 40rpx;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
.back-arrow {
|
|
font-size: 32rpx;
|
|
}
|
|
|
|
.nav-title {
|
|
flex: 1;
|
|
text-align: center;
|
|
}
|
|
|
|
.nav-title-text {
|
|
font-size: 28rpx;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.nav-actions {
|
|
min-width: 120rpx;
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
}
|
|
|
|
.copy-btn {
|
|
padding: 6rpx 10rpx;
|
|
border-radius: 999rpx;
|
|
border: 1px solid #444;
|
|
}
|
|
|
|
.copy-text {
|
|
font-size: 22rpx;
|
|
color: #ccc;
|
|
}
|
|
|
|
.nav-placeholder {
|
|
width: 100%;
|
|
}
|
|
|
|
.webview-wrap {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
web-view {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
.empty-wrap {
|
|
padding: 40rpx;
|
|
text-align: center;
|
|
color: #888;
|
|
}
|
|
|
|
.empty-text {
|
|
font-size: 26rpx;
|
|
}
|
|
|