123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191 |
- 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;
- }
- .other-height {
- height: 180rpx !important;
- }
- .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 {
- display: flex;
- align-items: center;
- font-size: 34rpx;
- color: #A7A7A7;
- }
- .back-icon {
- width: 18rpx;
- margin-left: 16rpx;
- }
- .left-sidebar {
- display: flex;
- align-items: center;
- }
- .user-img {
- width: 128rpx;
- height: 128rpx;
- border-radius: 50%;
- margin-right: 24rpx;
- }
- .user-name {
- color: #333333;
- font-size: 34rpx;
- font-weight: bold;
- }
- .btn-box {
- width: 100%;
- display: flex;
- justify-content: center;
- align-items: center;
- padding: 48rpx 0;
- }
- .btn-box button {
- width: 100%;
- height: 90rpx;
- line-height: 90rpx;
- display: flex;
- align-items: center;
- justify-content: center;
- background-color: #fff;
- color: #202020;
- font-size: 28rpx;
- border-radius: 100rpx;
- }
- .mask {
- position: fixed;
- left: 0;
- right: 0;
- top: 0;
- height: 100vh;
- background-color: rgba(0, 0, 0, 0.38);
- z-index: 9998;
- }
- .window {
- position: fixed;
- width: calc(100% - 240rpx);
- top: 50%;
- left: 50%;
- transform: translate(-50%, -50%);
- border-radius: 20rpx;
- overflow: hidden;
- background-color: #fff;
- z-index: 9999;
- display: flex;
- flex-direction: column;
- }
- .window-top {
- width: 100%;
- min-height: 128rpx;
- color: #202020;
- font-size: 32rpx;
- display: flex;
- justify-content: center;
- align-items: center;
- }
- .window-bottom {
- width: 100%;
- display: flex;
- align-items: center;
- border-top: 1px solid #E2E6E9;
- box-sizing: border-box;
- }
- .window-bottom button {
- width: 50%;
- height: 98rpx;
- line-height: 98rpx;
- display: flex;
- justify-content: center;
- align-items: center;
- color: #202020;
- font-size: 30rpx;
- border-radius: initial;
- border-right: 1px solid #E2E6E9;
- background-color: #fff;
- }
- .window-bottom button:last-child {
- border-right: none;
- color: #F2501A;
- }
|