| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189 |
- /* pages/person/person.wxss */
- page {
- background: #f0f1f2;
- }
- .container {
- margin-bottom: 110rpx;
- }
- /* .userinfo {
- width: 750rpx;
- height: 400rpx;
- background: #fff;
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- }
- .avatar {
- height: 160rpx;
- width: 160rpx;
- position: relative;
- }
- .avatar-pic {
- height: 100%;
- width: 100%;
- border-radius: 100%;
- }
- .setting {
- height: 42rpx;
- width: 42rpx;
- position: absolute;
- right: 0;
- bottom: 0;
- }
- .cell-grounp {
- margin-top: 20rpx;
- }
- .cell {
- width: 750rpx;
- height: 148rpx;
- color: #31364c;
- font-size: 28rpx;
- background: #fff;
- padding: 0 30rpx;
- box-sizing: border-box;
- display: flex;
- align-items: center;
- justify-content: space-between;
- margin-bottom: 2rpx;
- }
- .cell .content {
- display: flex;
- align-items: center;
- justify-content: space-between;
- }
- .cell-pic {
- width: 68rpx;
- height: 68rpx;
- margin-right: 30rpx;
- }
- .right {
- width: 18rpx;
- height: 30rpx;
- }
- .quit {
- height: 100rpx;
- font-size: 32rpx;
- color: #31364c;
- text-align: center;
- line-height: 100rpx;
- background: #fff;
- margin-top: 20rpx;
- } */
- .user-info {
- width: 750rpx;
- height: 232rpx;
- background: #ffffff;
- padding: 52rpx 40rpx;
- box-sizing: border-box;
- display: flex;
- align-items: center;
- justify-content: space-between;
- margin-bottom: 1rpx;
- }
- .info {
- display: flex;
- align-items: center;
- }
- .avatar {
- height: 128rpx;
- width: 128rpx;
- overflow: hidden;
- }
- .avatar image {
- height: 100%;
- width: 100%;
- border-radius: 8rpx;
- }
- .info-detail {
- margin-left: 40rpx;
- }
- .right {
- width: 14rpx;
- height: 26rpx;
- }
- .name {
- font-size: 38rpx;
- font-family: PingFangSC-Medium, PingFang SC;
- font-weight: 500;
- color: #000000;
- margin-bottom: 13rpx;
- }
- .sign {
- width: 152rpx;
- height: 48rpx;
- background: #e6f7ff;
- border-radius: 24px;
- font-size: 24rpx;
- font-family: PingFangSC-Medium, PingFang SC;
- font-weight: 500;
- color: #1890ff;
- padding: 0 24rpx;
- box-sizing: border-box;
- display: flex;
- align-items: center;
- justify-content: space-between;
- }
- view.no-sign {
- background: #f3f3f3;
- color: rgba(0, 0, 0, 0.25);
- }
- .sign image {
- height: 24rpx;
- width: 21rpx;
- }
- .group-list {
- margin-bottom: 20rpx;
- }
- .group-item {
- width: 750prx;
- height: 112rpx;
- padding: 37rpx 37rpx 37rpx 43rpx;
- box-sizing: border-box;
- background: #ffffff;
- display: flex;
- align-items: center;
- justify-content: space-between;
- margin-bottom: 1rpx;
- }
- .group-item-content {
- font-size: 34rpx;
- font-family: PingFangSC-Regular, PingFang SC;
- font-weight: 400;
- color: #000000;
- display: flex;
- align-items: center;
- }
- .group-item-content image {
- width: 48rpx;
- height: 48rpx;
- margin-right: 35rpx;
- }
|