| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- .practiceItem {
- margin: 10px 14px 0;
- padding: 15px 12px;
- width: auto !important;
- border-radius: 8px;
- .piCoverContainer {
- position: relative;
- width: 70px;
- height: 70px;
- border-radius: 50%;
- margin-right: 14px;
- .tag {
- position: absolute;
- bottom: 0;
- left: 50%;
- transform: translateX(-50%);
- width: 54px;
- height: 16px;
- }
- }
- .piCover {
- width: inherit;
- height: inherit;
- border-radius: 50%;
- overflow: hidden;
- }
- .piTitle {
- display: flex;
- align-items: center;
- justify-content: space-between;
- .piName {
- font-size: 16px;
- font-weight: 600;
- color: #333333;
- line-height: 22px;
- }
- .subject {
- margin-left: 5px;
- background: #fff1de;
- border-radius: 4px;
- font-size: 12px;
- color: #ff8c00;
- line-height: 16px;
- padding: 0px 4px;
- }
- }
- .piNameSubject {
- display: flex;
- align-items: center;
- }
- .piContent {
- padding-top: 6px;
- line-height: 1.3;
- i {
- font-style: normal;
- }
- :global {
- .van-icon {
- display: flex;
- align-items: center;
- }
- }
- .edu {
- display: flex;
- font-size: 12px;
- color: #6a6a6a;
- }
- .courseInfo {
- display: flex;
- align-items: center;
- justify-content: space-between;
- font-size: 12px;
- color: #999999;
- }
- .classNum i {
- color: #ff8400;
- padding: 0 3px;
- }
- .priceTime i {
- color: #fa6400;
- font-size: 14px;
- }
- }
- }
|