1234567891011121314151617181920212223242526 |
- .img {
- width: 100%;
- height: 100%;
- }
- .type {
- padding: 5px;
- font-size: 22rpx;
- color: #fff;
- letter-spacing: 3px;
- writing-mode: vertical-lr;
- background: #4F7BFD;
- border-radius: 3px;
- margin-right: 5px;
- }
- .flex-align-center {
- position: relative;
- .leader {
- position: absolute;
- top: -2rpx;
- right: 0;
- background: blue;
- }
- }
|