| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146 |
- /* pages/user-info/user-info.wxss */
- page {
- background: #f5f5f5;
- }
- .extra {
- width: 100%;
- height: 176rpx;
- padding: 0 30rpx;
- box-sizing: border-box;
- background: #fff;
- display: flex;
- justify-content: space-between;
- align-items: center;
- margin-top: 20rpx;
- border: 2rpx solid #f5f5f5;
- }
- .avatar-content {
- display: flex;
- align-items: center;
- justify-content: flex-end;
- }
- .avatar {
- width: 102rpx;
- height: 102rpx;
- border-radius: 50%;
- margin-right: 30rpx;
- }
- .default {
- width: 64rpx;
- height: 67rpx;
- }
- .extra text {
- font-size: 30rpx;
- font-family: SourceHanSansCN-Regular;
- font-weight: 400;
- color: #333333;
- padding-top: 36rpx;
- }
- /* 输入框部分 */
- .list {
- height: 116rpx;
- width: 100%;
- font-family: SourceHanSansCN-Regular;
- padding: 0 30rpx;
- box-sizing: border-box;
- background: #fff;
- display: flex;
- flex-direction: row;
- justify-content: space-between;
- align-items: center;
- border-bottom: 2rpx solid #f5f5f5;
- }
- .list text {
- font-size: 30rpx;
- font-weight: 400;
- color: #666666;
- }
- .list-content {
- flex: 1;
- height: 100%;
- color: #000;
- text-align: right;
- font-size: 30rpx;
- font-weight: 400;
- display: flex;
- align-items: center;
- justify-content: flex-end;
- }
- .tips {
- font-size: 30rpx !important;
- color: #AAAAAA;
- }
- .list-content input {
- width: 100%;
- height: 100%;
- }
- picker {
- width: 100%;
- height: 100%;
- display: flex;
- align-items: center;
- justify-content: flex-end;
- }
- .picker {
- height: 100%;
- width: 100%;
- display: flex;
- align-items: center;
- justify-content: flex-end;
- }
- .picker .picker-view {
- width: 300rpx;
- height: 116rpx;
- color: #000;
- text-align: right;
- line-height: 116rpx;
- }
- .arrow {
- width: 17rpx;
- height: 29rpx;
- margin-left: 15rpx;
- }
- /* btn */
- .fixed-footer {
- width: 100%;
- }
- .btn-group {
- background: #fff;
- padding: 20rpx;
- box-sizing: border-box;
- }
- .selfBtn {
- display: flex;
- height: 88rpx;
- line-height: 88rpx;
- align-items: center;
- /* box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.1); */
- background: #0177FF;
- border-radius: 10rpx;
- justify-content: center;
- font-size: 34rpx;
- font-family: SourceHanSansCN-Normal;
- font-weight: 400;
- color: rgba(255, 254, 254, 1);
- }
|