12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- .itemWrap {
- background-color: #ffffff;
- padding: 18px 0px 0 13px;
- display: flex;
- flex-direction: row;
- align-items: center;
- justify-content: space-between;
- &:nth-last-child(1) {
- .itemRight {
- border-bottom: none !important;
- }
- }
- .itemLeft {
- display: flex;
- flex-direction: row;
- align-items: center;
- padding-bottom: 18px;
- .headerWrap {
- width: 48px;
- height: 48px;
- border-radius: 50%;
- margin-right: 10px;
- overflow: hidden;
- img {
- width: 100%;
- height: 100%;
- }
- }
- }
- .itemRight {
- height: 48px;
- display: flex;
- flex-direction: row;
- align-items: center;
- justify-content: space-between;
- border-bottom: 1px solid #f2f2f2;
- padding-bottom: 18px;
- padding-right: 13px;
- width: 302px;
- .infoWrap {
- p {
- font-size: 16px;
- font-weight: 500;
- color: #333333;
- line-height: 22px;
- }
- .statusTag {
- width: 48px;
- height: 20px;
- border-radius: 4px;
- font-size: 14px;
- font-weight: 500;
- line-height: 20px;
- color: #ffffff;
- text-align: center;
- }
- .LATE {
- background-color: #8f80ff;
- }
- .LEAVE {
- background-color: #64a9ff;
- }
- .TRUANCY {
- background-color: #ff5c5f;
- }
- }
- .msgIcon {
- width: 24px;
- height: 24px;
- }
- }
- }
|