123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- @import "../../../common/common.scss";
- .fui-wrap {
- width: 100%;
- height: 100%;
- display: flex;
- flex-direction: column;
- justify-content: top;
- background-color: #79797938;
- .user-info-bg {
- width: 100%;
- height: 100rpx;
- background-color: #005598;
- }
- .ctl-container {
- margin-top: -70rpx;
- z-index: 1;
- display: flex;
- flex-direction: column;
- justify-content: flex-start;
- align-items: center;
- >view{
- width: 90%;
- padding: 20rpx 20rpx;
- background-color: #fefefe;
- box-sizing: border-box;
- border-radius: 20rpx;
- &:not(:first-child){
- margin-top: 40rpx;
- }
- }
- .user-info-content {
- height: 200rpx;
- display: flex;
- align-items: center;
- justify-content: flex-start;
- .user-info{
- height: 100%;
- display: flex;
- flex-direction: column;
- align-items: flex-start;
- justify-content: space-around;
- margin-left: 20rpx;
- }
- }
- .ctl-panel{
- height: auto;
- }
- }
- }
- page {
- height: 100%;
- }
|