123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107 |
- /* 用户头部 */
- .user_header {
- width: 100%;
- padding: 0 16rpx;
- box-sizing: border-box;
- }
- .user_header_msg {
- display: flex;
- width: 100%;
- height: 130rpx;
- padding: 0 24rpx;
- margin-bottom: 40rpx;
- box-sizing: border-box;
- }
- /* 头像 */
- .user_headPortrait {
- width: 130rpx;
- height: 100%;
- border-radius: 50%;
- margin-right: 30rpx;
- }
- .user_headPortrait>image {
- width: 100%;
- height: 100%;
- border-radius: 50%;
- box-shadow: 0px 0px 20rpx 0px rgba(0, 0, 0, 0.1);
- }
- /* 文本信息 */
- .user_message {
- display: flex;
- flex-direction: column;
- justify-content: space-around;
- flex: 1;
- height: 100%;
- }
- .user_name {
- font-family: PingFangSC-Medium, PingFang SC;
- width: 350rpx;
- font-size: 36rpx;
- font-weight: 500;
- color: #000000;
- }
- .user_name>text {
- display: inline-block;
- height: 42rpx;
- line-height: 42rpx;
- font-size: 28rpx;
- color: #FFFFFF;
- border-radius: 15rpx;
- background-color: #4BBECF;
- margin-left: 20rpx;
- padding: 0 26rpx;
- }
- .user_nubmer {
- font-size: 32rpx;
- color: #000000;
- }
- /* 箭头 */
- .user_arrows {
- display: flex;
- align-items: center;
- }
- /* 宫格样式 */
- .grid_box {
- width: 100%;
- padding: 0 30rpx;
- box-sizing: border-box;
- margin-top: 5rpx;
- }
- .grid_text-class {
- height: 40rpx;
- font-size: 28rpx !important;
- font-family: PingFangSC-Regular, PingFang SC;
- color: #333333 !important;
- line-height: 40rpx;
- padding-top: 12rpx;
- opacity: .9 !important;
- }
- /* 退出登录 */
- .logout {
- width: 240rpx;
- height: 88rpx;
- border-radius: 44rpx;
- box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
- border: 2rpx solid #4BBECF;
- margin: 60rpx auto 0;
- box-sizing: border-box;
- }
- .custom-class {
- width: 100% !important;
- font-size: 32rpx !important;
- color: #4BBECF !important;
- font-family: PingFangSC-Medium, PingFang SC !important;
- font-weight: 500 !important;
- }
|