1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- page {
- background-color: #F2F2F2;
- }
- .wrap {
- width: 100%;
- display: flex;
- flex-direction: column;
- padding: 20rpx 24rpx;
- box-sizing: border-box;
- }
- .module {
- width: 100%;
- display: flex;
- flex-direction: column;
- background-color: #fff;
- border-radius: 16rpx;
- margin-bottom: 20rpx;
- }
- .row-between {
- width: 100%;
- height: 130rpx;
- display: flex;
- justify-content: space-between;
- align-items: center;
- padding: 0 20rpx;
- box-sizing: border-box;
- border-bottom: 1px solid #F6F6F6;
- }
- .row-between:last-child {
- border-bottom: none;
- }
- .label {
- color: #202020;
- font-size: 34rpx;
- }
- .photo-box {
- width: 106rpx;
- height: 106rpx;
- position: relative;
- }
- .photo {
- width: 106rpx;
- height: 106rpx;
- border-radius: 50%;
- }
- .replace {
- width: 100%;
- height: 50%;
- line-height: 50%;
- border-radius: 0 0 200rpx 200rpx;
- background: rgb(51, 51, 51, 0.63);
- position: absolute;
- bottom: 0;
- left: 0;
- color: #FFFFFF;
- font-size: 28rpx;
- display: flex;
- justify-content: center;
- align-items: center;
- }
- .input {
- flex: 1;
- text-align: right;
- color: #202020;
- font-size: 34rpx;
- }
- .right-sidebar {
- flex: 1;
- display: flex;
- justify-content: flex-end;
- align-items: center;
- font-size: 34rpx;
- color: #202020;
- }
- .right-sidebar picker{
- width: 100%;
- height: 130rpx;
- line-height: 130rpx;
- text-align: right;
- }
- .back-icon {
- width: 18rpx;
- margin-left: 14rpx;
- }
|