121 lines
No EOL
2.2 KiB
Text
121 lines
No EOL
2.2 KiB
Text
/* pages/info/info.wxss */
|
|
page {
|
|
background: #f5f5f5;
|
|
}
|
|
.mine{
|
|
z-index: 0;
|
|
}
|
|
.top-bg{
|
|
z-index: -1;
|
|
position: fixed;
|
|
top:0;
|
|
width: 100%;
|
|
height: 550rpx;
|
|
background: #f8f9fa;
|
|
background-image: -webkit-radial-gradient(top, circle cover, #ffffff 0%, #f8f9fa 80%);
|
|
background-image: -moz-radial-gradient(top, circle cover, #ffffff 0%, #f8f9fa 80%);
|
|
background-image: -o-radial-gradient(top, circle cover, #ffffff 0%, #f8f9fa 80%);
|
|
background-image: radial-gradient(top, circle cover, #ffffff 0%, #f8f9fa 80%);
|
|
}
|
|
.user-bg {
|
|
height: 550rpx;
|
|
display: flex;
|
|
justify-content: center;
|
|
padding-top: 40rpx;
|
|
overflow: hidden;
|
|
position: relative;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
color: #333;
|
|
font-weight: 400;
|
|
text-shadow: 0 0 3px rgba(255, 255, 255, 0.3);
|
|
}
|
|
.userinfo {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
margin-top: 20rpx;
|
|
}
|
|
.userinfo-avatar {
|
|
width: 150rpx;
|
|
height: 150rpx;
|
|
border-radius: 50%;
|
|
overflow: hidden;
|
|
margin: 20rpx auto;
|
|
justify-content: center;
|
|
}
|
|
|
|
.userinfo-nickname {
|
|
color: #666;
|
|
text-align: center;
|
|
background-color: transparent;
|
|
}
|
|
|
|
.avatar-wrapper {
|
|
padding: 0;
|
|
width: 150rpx !important;
|
|
height: 150rpx !important;
|
|
border-radius: 50%;
|
|
background-color: transparent;
|
|
margin: 20rpx auto;
|
|
}
|
|
|
|
.avatar-wrapper::after {
|
|
border: none;
|
|
}
|
|
|
|
.login-btn {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
background-color: transparent;
|
|
padding: 0;
|
|
margin: 0;
|
|
line-height: normal;
|
|
}
|
|
|
|
.login-btn::after {
|
|
border: none;
|
|
}
|
|
|
|
input.userinfo-nickname {
|
|
width: 200rpx;
|
|
border-bottom: 1px solid rgba(102, 102, 102, 0.5);
|
|
padding: 5rpx 10rpx;
|
|
margin-top: 10rpx;
|
|
}
|
|
|
|
.user-bg text {
|
|
opacity: 0.9;
|
|
}
|
|
|
|
.user-bg image {
|
|
width: 400rpx;
|
|
height: 200rpx;
|
|
}
|
|
.btns{
|
|
z-index: 10;
|
|
position: relative;
|
|
}
|
|
.btn{
|
|
z-index: 10;
|
|
margin: 1rem;
|
|
border-radius: 100px;
|
|
background: #ffffff;
|
|
color: #ff9c10;
|
|
border: 2px solid #e8e8e8;
|
|
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
|
|
}
|
|
.btn[disabled]:not([type]){
|
|
background: #ffffff;
|
|
color: #ff9c10;
|
|
}
|
|
.footer{
|
|
position: absolute;
|
|
bottom: 20px;
|
|
margin-top: 10rem;
|
|
font-size: 12px;
|
|
text-align: center;
|
|
width: 100%;
|
|
color: #999;
|
|
} |