You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
@import "../form-item-common.wxss";
|
|
|
|
.form-item>.value.none{
|
|
|
|
color: dimgray;
|
|
|
|
}
|
|
|
|
.profile, page {
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
.sticky{
|
|
|
|
top: 0;
|
|
|
|
position: sticky;
|
|
|
|
z-index: 10000;
|
|
|
|
}
|
|
|
|
.header {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: space-between;
|
|
|
|
background: #00b0f0;
|
|
|
|
color: white;
|
|
|
|
padding: 0 8px 0 16px;
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
|
|
|
.header>.error {
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
bottom: 0;
|
|
|
|
right: 0;
|
|
|
|
transition: 0.72s all ease;
|
|
|
|
background: #fa5151;
|
|
|
|
color: white;
|
|
|
|
padding: 0 20px;
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
z-index: -1;
|
|
|
|
opacity: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.error.show {
|
|
|
|
opacity: 1;
|
|
|
|
z-index: 100;
|
|
|
|
}
|
|
|
|
|
|
|
|
.header>button {
|
|
|
|
margin: 2px 0;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gap {
|
|
|
|
height: 3px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.avatar {
|
|
|
|
border-radius: 50%;
|
|
|
|
height: 30px;
|
|
|
|
width: 30px;
|
|
|
|
margin: 0 14px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.footer {
|
|
|
|
font-size: 24rpx;
|
|
|
|
text-align: center;
|
|
|
|
margin: 12px 0;
|
|
|
|
color: grey;
|
|
|
|
}
|