123456789101112131415161718192021222324252627282930313233343536 |
- .content {
- display: flex;
- flex-direction: column;
- box-sizing: border-box;
- width: 100vw;
- height: 100vh;
- }
- .content .info {
- width: 100vw;
- height: 92vh;
- overflow: auto;
- }
- .content .foot {
- position: absolute;
- bottom: 0;
- width: 100vw;
- height: 8vh;
- overflow: hidden;
- background-color: var(--rgb161);
- color: var(--rgbfff);
- display: flex;
- flex-direction: row;
- justify-content: space-around;
- }
- .content .foot .list {
- padding: 1vw 0;
- text-align: center;
- }
- .content .foot .list .image {
- width: 7vw;
- height: 6vw;
- }
- .content .foot .list .name {
- font-size: 12px;
- }
|