1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- .backlog {
- margin-right: 6px;
- margin-bottom: 40px;
- overflow-y: auto;
- height: 100%;
- color: #3b3b3b;
- .item {
- padding: 8px 0;
- width: 100%;
- font-size: 24px;
- margin-bottom: 20px;
- line-height: 50px;
- position: relative;
- background: #fff;
- padding-right: 24px;
- &.order {
- .point,
- .btn {
- background-color: #2576f5;
- }
- }
- &.task {
- .point,
- .btn {
- background-color: #ff8400;
- }
- }
- }
- .titleCon {
- display: flex;
- align-items: center;
- }
- .point {
- display: inline-block;
- width: 12px;
- position: absolute;
- left: 0;
- top: 0;
- height: 100%;
- }
- .createTime {
- float: right;
- }
- .titleText {
- font-size: 24px;
- margin: 0 20px;
- margin-left: 24px;
- font-family: Source Han Sans, Source Han Sans;
- }
- .bottomCon {
- margin-left: 24px;
- font-size: 20px;
- line-height: 36px;
- word-wrap: break-word;
- font-family: Source Han Sans, Source Han Sans;
- display: flex;
- align-items: center;
- justify-content: space-between;
- .btn {
- flex-shrink: 0;
- padding: 6px 20px;
- border-radius: 12px;
- font-size: 24px;
- color: #fff;
- margin-left: 20px;
- }
- }
- }
|