emoticon_xcx/pages/login/authorize-avatar-name/index.wxss
2023-10-28 19:02:56 +08:00

62 lines
882 B
Plaintext

/* pages/login/authorize-avatar-name/index.wxss */
.mainContainer {
width: 85%;
margin: 0 auto;
}
/* 头部头像盒子 */
.top-avatar-box {
margin-top: 50rpx;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.avatar-img-box {
width: 180rpx;
height: 180rpx;
border-radius: 50%;
overflow: hidden;
padding: 5rpx;
box-shadow: 0 0 15rpx 5rpx #e8e8e8;
}
.avatar-img {
width: 100%;
height: 100%;
object-fit: cover;
}
.avatar-line {
width: 100%;
height: 1px;
background-color: #e3e3e3;
margin-top: 50rpx;
}
/* 权限文字盒子 */
.authorize-content-box {
margin: 80rpx 0;
}
.authorize-content-title {
font-size: 35rpx;
margin-bottom:40rpx;
color: #585858;
}
.authorize-content-text{
font-size:30rpx;
color: #888888;
}
/* 授权按钮盒子 */
.authorize-btn{
margin-bottom: 25rpx;
}