123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109 |
- @charset "UTF-8";
- .mine-area {
- height: 100vh;
- position: relative;
- overflow: hidden;
- }
- .big-circle {
- width: 937px;
- height: 937px;
- background-color: white;
- border-radius: 50%;
- position: absolute;
- top: 25%;
- left: 50%;
- -webkit-transform: translate(-50%, 0);
- transform: translate(-50%, 0);
- z-index: 5;
- }
- .avatar-area {
- position: absolute;
- top: 25%;
- left: 20%;
- -webkit-transform: translateY(-50%);
- transform: translateY(-50%);
- }
- .z10 {
- z-index: 10;
- }
- .menu-area {
- height: 65%;
- width: 100%;
- position: absolute;
- bottom: 0;
- padding: 0 64rpx;
- box-sizing: border-box;
- }
- .menu-list {
- display: flex;
- align-items: center;
- font-size: 30rpx;
- padding: 20rpx 0;
- color: #323538;
- }
- .menu-list .iconfont {
- font-size: 65rpx;
- padding-right: 20rpx;
- }
- .basic-msg {
- display: flex;
- margin-bottom: 40rpx;
- flex-direction: column;
- }
- .basic-msg .basic-name {
- font-size: 32rpx;
- line-height: 150%;
- }
- .basic-msg .basic-amount {
- color: gray;
- font-size: 26rpx;
- line-height: 150%;
- }
- .popup-area {
- height: 500rpx;
- box-sizing: border-box;
- padding: 0 30rpx;
- }
- .popup-area .form-area {
- display: flex;
- align-items: center;
- margin-top: 100rpx;
- }
- .popup-area .form-area .form-label {
- display: inline-block;
- width: 140rpx;
- text-align: left;
- }
- .popup-area .pwd-btn {
- display: flex;
- padding-top: 50rpx;
- }
- .popup-area .pwd-btn .u-button {
- margin: 30rpx;
- }
|