| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- .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: 168px;
- overflow: hidden;
- overflow-y: auto;
- }
- .footer {
- width: 100%;
- height: 60px;
- background-color: #fff;
- position: absolute;
- right: 0;
- bottom: 60px;
- padding-left: 18px;
- z-index: 100;
- }
- }
|