1234567891011121314151617181920212223242526272829303132333435 |
- .components.TransactedCustomer {
- position: relative;
- overflow: hidden;
- width: 100%;
- height: 100%;
- >scroll-view {
- width: 100%;
- height: 100%;
- position: relative;
- .PageContent {
- position: relative;
- overflow: hidden;
- >.List {
- padding: 0 36px;
- position: relative;
- overflow: hidden;
- >view {
- margin-top: 20px;
- }
- }
- > .PageBottom {
- text-align: center;
- font-size: 0;
- white-space: nowrap;
- > text {
- display: inline-block;
- font-size: 28px;
- color: #666;
- line-height: 40px;
- margin: 20px auto;
- }
- }
- }
- }
- }
|