123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596 |
- .cell {
- padding: 13px 12px;
- .top {
- display: flex;
- align-items: center;
- justify-content: space-between;
- }
- .timer {
- display: flex;
- align-items: center;
- font-size: 13px;
- color: #666666;
- line-height: 18px;
- img {
- width: 16px;
- height: 16px;
- margin-right: 6px;
- }
- }
- .userInfo {
- display: flex;
- align-items: flex-end;
- img {
- width: 20px;
- height: 20px;
- border-radius: 20px;
- margin-left: 4px;
- }
- .name {
- font-size: 13px;
- color: #333333;
- line-height: 18px;
- max-width: 60px;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- }
- }
- .content {
- display: flex;
- // align-items: center;
- padding-top: 12px;
- }
- .cover {
- width: 90px;
- height: 51px;
- border-radius: 4px;
- overflow: hidden;
- flex-shrink: 0;
- margin-right: 10px;
- }
- .cover1 {
- width: 51px;
- }
- .info {
- // flex: 1;
- display: flex;
- flex-direction: column;
- justify-content: space-between;
- padding: 1px 0;
- .iTitle {
- font-weight: 600;
- font-size: 14px;
- color: #333333;
- line-height: 17px;
- // width: 100%;
- max-width: 220px;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- }
- .iPrice {
- font-size: 13px;
- color: #777777;
- line-height: 17px;
- display: flex;
- align-items: center;
- .price {
- font-family: DIN;
- font-weight: bold;
- font-size: 18px;
- color: #ff5a56;
- line-height: 16px;
- i {
- font-style: normal;
- font-size: 14px;
- }
- }
- }
- }
- }
|