123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- @import '@css/mixin.scss';
- .l-scroll-view {
- height: calc(100vh);
- box-sizing: border-box;
- }
- .scoped-list {
- .sl-wrap {
- display: flex;
- padding: 20px;
- border-bottom: 1PX solid #f2f2f2;
- position: relative;
- }
- .sl-img {
- width: 120px;
- height: 120px;
- .img {
- width: 120px;
- height: 120px;
- }
- }
- .sl-right {
- flex: 1;
- padding-left: 20px;
- }
- .sl-p1 {
- color: #313131;
- font-size: 30px;
- font-weight: bold;
- padding-bottom: 10px;
- padding-top: 10px;
- }
- .sl-p2 {
- color: #666;
- font-size: 26px;
- @include textOverflows();
- }
- .sl-p3 {
- color: $dangerColor;
- font-size: 24px;
- }
- .sl-r1 {
- position: absolute;
- top: 30px;
- right: 20px;
- color: #999;
- font-size: 26px;
- }
- }
|