123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141 |
- .user-box {
- width: 750rpx;
- background-color: var(--bgColor);
- padding: 30rpx;
- box-sizing: border-box;
- color: #FFFFFF;
- font-family: PingFang SC-Regular, PingFang SC;
- /* 用户展示内容 */
- .user-con {
- display: flex;
- height: 128rpx;
- align-items: center;
- background: none;
- .v-img {
- margin-top: 5rpx;
- }
- .user-msg {
- flex: 1;
- height: 100%;
- margin-left: 30rpx;
- .user-name {
- width: 450rpx;
- height: 50rpx;
- font-size: 36rpx;
- font-weight: bold;
- margin-top: 16rpx;
- text {
- display: inline-block;
- height: 40rpx;
- font-size: 28rpx;
- margin-left: 40rpx;
- }
- }
- .user-phone {
- height: 38rpx;
- font-size: 24rpx;
- font-family: PingFang SC-Regular, PingFang SC;
- line-height: 38rpx;
- margin-top: 10rpx;
- }
- }
- }
- }
- .operating {
- width: 690rpx;
- margin: 0 auto;
- background-color: #fff;
- margin-top: 40rpx;
- border-radius: 16rpx;
- overflow: hidden;
- .item {
- width: 100%;
- .con {
- display: flex;
- justify-content: space-between;
- width: calc(100% - 30rpx);
- height: 90rpx;
- line-height: 90rpx;
- border-bottom: 1rpx solid #eeeeee;
- margin-left: 30rpx;
- padding-right: 20rpx;
- box-sizing: border-box;
- .label {
- display: flex;
- align-items: center;
- font-size: 28rpx;
- font-family: PingFang SC-Medium, PingFang SC;
- font-weight: 500;
- color: #333333;
- text {
- font-size: 50rpx;
- margin-right: 10rpx;
- }
- .bd-wechat {
- width: 90rpx;
- height: 36rpx;
- line-height: 36rpx;
- text-align: center;
- border-radius: 4rpx;
- border: 1rpx solid #CCCCCC;
- font-size: 20rpx;
- font-family: PingFangSC-Regular-, PingFangSC-Regular;
- font-weight: normal;
- color: #999999;
- margin-left: 10rpx;
- }
- }
- }
- }
- .item:last-child .con {
- border-bottom: 0;
- }
- .item-right {
- display: flex;
- align-items: center;
- line-height: 20rpx;
- .user-img {
- width: 58rpx;
- height: 58rpx;
- border-radius: 50%;
- margin-right: 20rpx;
- }
- }
- .tips {
- font-size: 24rpx !important;
- margin-top: -4rpx;
- margin-right: 10rpx;
- color: #333333;
- }
- .right-false {
- color: var(--error);
- }
- }
- /* 退出登录 */
- .out-login {
- width: 500rpx;
- height: 90rpx;
- border-radius: 90rpx !important;
- font-size: 28rpx;
- font-family: PingFang SC-Regular, PingFang SC;
- color: #333333 !important;
- }
|