1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- page{
- background: #f5f5f5;
-
- }
- .top {
- width: 100%;
- height: 240rpx;
-
-
- background: linear-gradient(90deg, #005033 0%, #11774e 100%);
- background-size: 100%;
- display: flex;
- align-items: center;
- font-size: 32rpx;
- font-weight: 400;
- color: rgba(255, 255, 255, 1);
- }
- .avatar {
- margin-left: 40rpx;
- margin-right: 32rpx;
- width: 112rpx;
- height: 112rpx;
- border-radius: 50%;
- overflow: hidden;
- }
- .list-item{
- width: 100%;
- height: 90rpx;
- display: flex;
- align-items: center;
- justify-content: space-between;
- padding: 0 40rpx;
- box-sizing: border-box;
- background: #fff;
- border-bottom: 2rpx solid #f5f5f5;
- line-height: 48rpx;
- }
- .li-icon{
- margin-right: 30rpx;
- width: 48rpx;
- height: 48rpx;
- }
- .li-left{
- display: flex;
- align-items: center;
- }
- .li-arrow{
- width: 14rpx;
- height: 24rpx;
- }
- .line{
- width: 100%;
- height: 10rpx;
- }
- .footer{
- width: 100%;
- position: fixed;
- bottom: 0;
- }
|