12345678910111213141516171819202122232425262728293031323334353637 |
- .content {
- display: flex;
- flex-direction: column;
- box-sizing: border-box;
- width: 100vw;
- height: 100vh;
- }
- .main {
- background-color: var(--rgb000);
- display: flex;
- flex-direction: column;
- width: 100vw;
- height: 92vh;
- }
- .main .one {
- padding: 8px;
- display: flex;
- flex-wrap: wrap;
- justify-content: space-between;
- background-color: var(--rgb000);
- }
- .main .one .list {
- width: 18%;
- margin: 0 0 10px 0;
- }
- .main .one .list .image {
- width: 100%;
- height: 62px;
- overflow: hidden;
- border-radius: 5px;
- }
- .main .one .list .name {
- font-size: 12px;
- color: var(--rgbfff);
- text-align: center;
- }
|