41 lines
798 B
CSS
41 lines
798 B
CSS
page {
|
|
background: #fbfbfb;
|
|
}
|
|
.open-setting-view {
|
|
background: hsla(0, 0%, 0%, 0.1);
|
|
position: fixed;
|
|
top: 0;
|
|
/* #ifdef H5 */
|
|
top: calc(88rpx + env(safe-area-inset-top));
|
|
/* #endif */
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
text-align: center;
|
|
z-index: 1000000;
|
|
}
|
|
.open-setting-view .content {
|
|
margin: 0 auto;
|
|
width: 360rpx;
|
|
height: 200rpx;
|
|
padding: 50rpx;
|
|
border-radius: 12rpx;
|
|
margin-top: 70%;
|
|
position: relative;
|
|
}
|
|
.open-setting-view .content button {
|
|
margin-top: 15rpx;
|
|
}
|
|
.open-setting-view .content .value {
|
|
margin-top: 5rpx;
|
|
}
|
|
.open-setting-view .content .value text {
|
|
font-weight: 500;
|
|
color: #333;
|
|
}
|
|
.open-setting-loding {
|
|
padding-top: 35%;
|
|
}
|
|
.open-setting-loding image {
|
|
margin: 0 auto;
|
|
} |