12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- .preview_table {
- display: flex;
- gap: 10px;
- .preview_content {
- width: 100px;
- height: 60px;
- background-color: #ececec;
- border-radius: 8px;
- position: relative;
- display: flex;
- justify-content: center;
- align-items: center;
- transition: all 0.2s;
- overflow: hidden;
- .coverImg {
- max-width: 100%;
- max-height: 100%;
- }
- .playr {
- position: absolute;
- width: 35px;
- height: 35px;
- top: 50%;
- left: 50%;
- transform: translate(-50%, -50%);
- >img {
- width: 100%;
- height: 100%;
- }
- }
- }
- .body {
- display: flex;
- flex-direction: column;
- gap: 1px;
- width: calc(100% - 110px);
- >div {
- display: flex;
- justify-content: space-between;
- align-items: center;
- }
- }
- }
|