123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127 |
- /* pages/user/user.wxss */
- page {
- background: #F7F7F7;
- }
- .photo {
- background-color: #fff;
- padding: 30rpx 0 24rpx;
- text-align: center;
- }
- .userinfo-avatar {
- width: 80px;
- height: 80px;
- border: 1px solid rgba(0,0,0,0.1);
- border-radius: 50%;
- overflow: hidden;
- margin: 0 auto;
- background-size: 80px 80px;
- }
- .userinfo-nickname {
- text-align: center;
- display: block;
- font-size: 22rpx;
- color: rgba(19, 29, 52, 1);
- margin-top: 14rpx;
- }
- .info {
- margin-top: 20rpx;
- background-color: #fff;
- padding: 0 46rpx;
- }
- .info .item {
- border-bottom: 1px solid rgba(0,0,0,0.1);
- padding: 28rpx 0;
- display: flex;
- align-items: center;
- }
- .info .item:last-child {
- border-bottom: none;
- }
- .info .item > text {
- font-size: 30rpx;
- flex: 0 0 auto;
- color: #131D34;
- font-weight: 400;
- margin-right: 10px;
- }
- .info .item > .ir {
- flex: 1;
- }
- .ipname {
- width: 100%;
- text-align: right;
- font-size: 26rpx;
- color: #131D34;
- }
- .checkbox{
- padding-left: 80rpx;
- font-size: 26rpx;
- color: #131D34;
- position: relative;
- }
- .checkbox image {
- width: 34rpx;
- height: 34rpx;
- position: absolute;
- top: 50%;
- transform: translateY(-50%);
- left: 26rpx;
- }
- .radio {
- display: flex;
- align-items: center;
- justify-content: flex-end;
- }
- .picker-date {
- text-align: right;
- font-size: 26rpx;
- color: #131D34;
- }
- .picker-date image {
- width: 10rpx;
- height: 20rpx;
- margin-left: 20rpx;
- }
- .save {
- position: fixed;
- bottom: 0;
- left: 0;
- right: 0;
- padding: 28rpx 46rpx 64rpx;
- background-color: #fff;
- }
- .save button {
- height: 96rpx;
- background: #0075DC;
- color: #fff;
- font-size: 34rpx;
- line-height: 96rpx;
- }
- .getPhone {
- background: none;
- width: 100%;
- padding: 0;
- font-size: 26rpx;
- color: #131D34;
- text-align: right;
- }
|