1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- .records {
- padding: 10px 15px;
- &-list {
- &-item {
- background-color: #fff;
- border-radius: 5px;
- margin-bottom: 10px;
- padding: 16px 15px;
- &-top {
- display: flex;
- justify-content: space-between;
- align-items: center;
- .rlit-left {
- width: calc(100% - 20px);
- &-item {
- margin-bottom: 20px;
- font-size: 15px;
- color: #999999;
- font-weight: 500;
- font-family: PingFangSC;
- width: 100%;
- white-space: nowrap;
- overflow: hidden;
- text-overflow: ellipsis;
- word-break: break-all;
- text {
- font-size: 16px;
- color: #171717;
- }
- }
- }
- }
- &-bottom {
- display: flex;
- justify-content: space-between;
- align-items: center;
- font-size: 12px;
- font-family: PingFangSC;
- color: #999999;
- .rlib-right {
- background-color: #edf3ff;
- border-radius: 8px;
- padding: 2px 8px;
- color: #1767f2;
- font-size: 11px;
- }
- }
- }
- }
- }
|