123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112 |
- .itemWrap {
- background: #ffffff;
- border-radius: 10px;
- padding: 12px;
- margin: 0 0 12px;
- .itemTop {
- display: flex;
- flex-direction: row;
- justify-content: space-between;
- align-items: center;
- border-bottom: 1px solid #f2f2f2;
- padding-bottom: 12px;
- .itemTopLeft {
- .nameSection {
- display: flex;
- align-items: center;
- margin-bottom: 6px;
- }
- .itemTopMain {
- height: 22px;
- font-size: 16px;
- font-weight: 500;
- color: #333333;
- line-height: 22px;
- max-width: 130px;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- }
- .tagWork {
- font-weight: 500;
- font-size: 12px;
- color: #2eaafe;
- border-radius: 3px;
- border: 1px solid rgba(46, 170, 254, 0.37);
- padding: 0 4px;
- margin-left: 4px;
- }
- .itemTopSub {
- font-size: 12px !important;
- font-weight: 400;
- color: #777777;
- line-height: 17px;
- }
- }
- .itemTopRight {
- display: flex;
- flex-direction: row;
- align-items: center;
- .imgWrap {
- width: 98px;
- height: 29px;
- background: #e9e3ff;
- border-radius: 19px;
- img {
- width: 100%;
- height: 100%;
- }
- }
- .imgIcon {
- font-size: 14px;
- color: #d8d8d8;
- font-weight: bold;
- margin-left: 6px;
- }
- }
- }
- .itemBottom {
- margin-top: 15px;
- display: flex;
- flex-direction: row;
- align-items: center;
- justify-content: space-around;
- text-align: center;
- .itemBottomDot {
- width: 25%;
- .dotMain {
- font-size: 22px;
- color: #333333;
- line-height: 30px;
- margin-bottom: 4px;
- font-family: 'DIN';
- // font-weight: bold;
- span {
- margin-left: 1px;
- font-size: 12px;
- font-weight: 400;
- color: #333333;
- line-height: 17px;
- }
- }
- .dotSub {
- font-size: 12px;
- font-weight: 400;
- color: #777777;
- line-height: 17px;
- }
- }
- }
- }
|