12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- .style {
- display: flex;
- flex-flow: column wrap;
- align-content: space-between;
- padding: 0 14px;
- // column-count: 2;
- // column-gap: 8px;
- }
- .styleItem {
- width: 168px;
- overflow: hidden;
- box-shadow: 0px 2px 10px 0px rgba(229, 229, 229, 0.1);
- border-radius: 8px;
- background-color: #fff;
- margin-bottom: 12px;
- .styleImg {
- position: relative;
- }
- .img {
- width: 168px;
- height: 168px;
- &.first {
- height: 222px;
- }
- }
- .userInfo {
- padding: 14px 10px;
- }
- .userInfo,
- .user {
- display: flex;
- align-items: center;
- justify-content: space-between;
- }
- .user {
- .userImg {
- width: 16px;
- height: 16px;
- border-radius: 50%;
- overflow: hidden;
- margin-right: 5px;
- }
- span {
- font-size: 12px;
- color: #333333;
- line-height: 17px;
- max-width: 70px;
- overflow: hidden;
- white-space: nowrap;
- text-overflow: ellipsis;
- }
- }
- .lookNum {
- font-size: 12px;
- color: #999999;
- line-height: 17px;
- }
- }
|