| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135 |
- /* pages/user/info/info.wxss */
- page {
- background: linear-gradient(180deg, #FFFFFF 24%, #F8F8F8 37%);
- }
- .userInfo {
- height: 100%;
- background-image: url('http://voms.cdn.bosind.com/upload/c61952fac9fd4536bc53634508e5394f.png');
- background-size: contain;
- background-repeat: no-repeat;
- padding: 76rpx 24rpx 24rpx 24rpx;
- }
- .user {
- position: relative;
- background: #FFFFFF;
- padding: 30rpx 36rpx;
- display: flex;
- flex-flow: row;
- align-items: center;
- justify-content: space-between;
- border-radius: 8rpx;
- }
- .user image {
- width: 120rpx;
- height: 120rpx;
- background: #D9D9D9;
- border-radius: 50%;
- border: 1px solid #D9D9D9;
- }
- .userName {
- flex: 1;
- padding: 0 26rpx;
- }
- .userName view:first-child {
- font-weight: 500;
- font-size: 32rpx;
- color: #000000;
- line-height: 1.5;
- }
- .userName view:last-child {
- font-weight: 400;
- font-size: 24rpx;
- color: #A2A2A2;
- line-height: 1.5;
- }
- .bianjiziliao {
- position: absolute;
- top: 30rpx;
- right: 36rpx;
- font-weight: 400;
- font-size: 20rpx;
- color: #373737;
- line-height: 22rpx;
- }
- .bianjiziliao::before {
- font-size: 24rpx;
- }
- .loginBtn {
- font-weight: 500;
- font-size: 24rpx;
- color: #FFFFFF;
- line-height: 22rpx;
- background: #353739;
- border-radius: 44rpx;
- padding: 20rpx 23rpx;
- }
- .menu {
- padding: 24rpx;
- background: #FFFFFF;
- margin: 20rpx 0;
- border-radius: 8rpx;
- }
- .title {
- font-weight: 500;
- font-size: 28rpx;
- color: #000000;
- line-height: 1.5;
- }
- .status {
- display: flex;
- flex-flow: row;
- justify-content: space-between;
- align-items: center;
- margin-top: 50rpx;
- }
- .item {
- flex: 1;
- text-align: center;
- }
- .item view:first-child {
- font-size: 56rpx;
- }
- .item view:last-child {
- font-weight: 400;
- font-size: 24rpx;
- color: #000000;
- line-height: 2;
- }
- .abelCell {
- padding: 24rpx 20rpx;
- background: #FFFFFF;
- border-radius: 8rpx;
- }
- .abelCellItem {
- position: relative;
- line-height: 80rpx;
- /* text-align: justify; */
- /* text-justify: distribute-all-line; */
- }
- .abelCellItem::after {
- content: "\e615";
- position: absolute;
- right: 0;
- color: #A2A2A2;
- }
|