1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- .theMusicGrid {
- :global {
- .van-grid {
- margin: 0 -4px;
- }
- .van-grid-item {
- width: calc(100% / 3);
- }
- .van-grid-item__content {
- display: block;
- padding: 0 8px;
- background-color: transparent;
- }
- }
- .item {
- margin-bottom: 14px;
- .title {
- font-size: 14px;
- color: #333;
- line-height: 20px;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- margin-bottom: 2px;
- }
- .des {
- font-size: 12px;
- color: #999;
- line-height: 16px;
- }
- }
- .imgWrap {
- position: relative;
- height: 104px;
- // height: calc((100vw - 28px) / 3);
- border-radius: 10px;
- overflow: hidden;
- margin-bottom: 6px;
- .albumType {
- position: absolute;
- left: 0;
- top: 0;
- background: linear-gradient(180deg, #ff8900 0%, #ff5100 100%);
- box-shadow: 0px 1px 2px 0px rgba(150, 13, 0, 0.11);
- border-radius: 10px 0px 10px 0px;
- font-size: 12px;
- padding: 0 6px;
- line-height: 20px;
- color: #ffffff;
- z-index: 9;
- }
- .model {
- position: absolute;
- left: 4px;
- bottom: 4px;
- background: rgba(67, 67, 67, 0.6);
- backdrop-filter: blur(20px);
- -webkit-backdrop-filter: blur(20px);
- display: flex;
- align-items: center;
- padding: 4px 6px;
- border-radius: 20px;
- font-size: 12px;
- color: #fff;
- transform: scale(0.9);
- }
- .num {
- margin-left: 3px;
- }
- }
- }
|