123456789101112131415161718192021222324252627282930313233 |
- /**app.wxss**/
-
- .container {
- width: 100%;
- height: 100%;
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: space-between;
- box-sizing: border-box;
- }
-
- .text-center {
- text-align: center;
- }
-
- .fl{
- float: left;
- }
- .fr{
- float: right;
- }
- .not-data {
- text-align: center;
- padding-top: 70rpx;
- }
- .not-data .not-data-img{
- width: 295rpx;
- height: 240rpx;
- }
- .not-data .not-info{
- color: #b3bfcb;
- }
|