123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106 |
- .style {
- padding: 0 14px;
- }
- .lineContainer {
- display: flex;
- flex-flow: wrap;
- justify-content: space-between;
- }
- .line {
- width: 168px;
- }
- .styleItem {
- position: relative;
- 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;
- }
- }
- .iconVideoPlay {
- position: absolute;
- top: 8px;
- right: 8px;
- width: 24px;
- height: 24px;
- }
- .living {
- position: absolute;
- top: 15px;
- right: 0;
- line-height: 24px;
- background: rgba(0, 0, 0, 0.2);
- border-radius: 13px 0px 0px 13px;
- display: flex;
- align-items: center;
- .animationContainer {
- width: 24px;
- height: 24px;
- background: linear-gradient(180deg, #ff6e6e 0%, #ff3b3b 100%);
- border-radius: 50%;
- display: flex;
- align-items: center;
- justify-content: center;
- }
- .animation {
- width: 11px;
- height: 10px;
- }
- span {
- font-size: 12px;
- color: #ffffff;
- line-height: 17px;
- padding: 0 7px 0 5px;
- }
- }
- .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;
- }
- }
|