| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- .real-view {
- width: 100%;
- height: 100%;
- position: absolute;
- top: 0;
- left: 0;
- z-index: 99;
- background-color: #f7f7f9;
- .header {
- height: 48px;
- display: flex;
- align-items: center;
- padding-left: 18px;
- background-color: #fff;
- .back-button {
- display: flex;
- align-items: center;
- cursor: pointer;
- }
- }
- .tabs {
- width: 100%;
- height: 45px;
- background-color: #fff;
- padding-left: 10px;
- }
- .real-view-content {
- width: 100%;
- height: 100%;
- padding: 18px;
- padding-bottom: 138px;
- overflow: hidden;
- overflow-y: auto;
- }
- .footer {
- width: 100%;
- height: 60px;
- background-color: #fff;
- position: absolute;
- right: 0;
- bottom: 0;
- padding-left: 18px;
- }
- }
|