1234567891011121314151617181920212223242526272829303132333435 |
- .list {
- padding: 20px;
- &__item {
- display: flex;
- flex-direction: row;
- justify-content: space-between;
- background: #FFFFFF;
- padding: 20px;
- font-size: 28px;
- border-radius: 10px;
- margin-bottom: 17px;
- &__left {
- width: 80%;
- display: flex;
- flex-direction: column;
- overflow: hidden;
- &-line {
- color: #9A9A9A;
- white-space: nowrap;
- overflow: hidden;
- text-overflow: ellipsis;
- }
- }
- &__right {
- font-size: 28px;
- }
- }
- }
|