1234567891011121314151617181920212223242526272829303132333435 |
- @import '/app.wxss';
- .content .info {
- width: 100vw;
- height: 92vh;
- overflow: auto;
- background-color: #f1f1f1;
- }
- .content .foot {
- position: absolute;
- bottom: 0;
- width: 100vw;
- height: 8vh;
- overflow: hidden;
- background-color: #ffffff;
- color: #cdcdcd;
- display: flex;
- flex-direction: row;
- justify-content: space-around;
- }
- .content .foot .list {
- padding: 1vw 0;
- text-align: center;
- }
- .content .foot .list .image {
- width: 6vw;
- height: 6vw;
- }
- .content .foot .list .name {
- font-size: 12px;
- }
|