1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- .videoItem {
- border-radius: 10px;
- background-color: #fff;
- overflow: hidden;
- width: 100%;
- margin-bottom: 12px;
- padding: 12px;
- display: flex;
- align-items: center;
- .viCover {
- height: 94px;
- width: 100%;
- border-radius: 6px;
- vertical-align: middle;
- overflow: hidden;
- }
- .viSection {
- margin-left: 10px;
- flex: 1 auto;
- }
- .viTitle {
- font-weight: 600;
- font-size: 15px;
- color: #131415;
- line-height: 21px;
- }
- .viUserNum {
- padding-top: 4px;
- color: #ff802c;
- font-size: 12px;
- background: rgba(255, 246, 240, 1);
- border-radius: 2px;
- padding: 3px 4px 2px;
- }
- .viPrice {
- display: flex;
- align-items: center;
- justify-content: space-between;
- font-size: 14px;
- color: #999;
- .priceNum {
- color: #F44541;
- font-size: 16px;
- font-weight: bold;
- i {
- font-size: 14px;
- font-style: normal;
- }
- }
-
- }
- .tags {
- padding: 8px 0;
- .label {
- margin-right: 4px;
- background: #F5F6FA;
- border-radius: 3px;
- font-size: 11px;
- color: #777777;
- line-height: 16px;
- padding: 1px 6px;
- display: inline-block;
- }
- }
- .subjectName {
- position: absolute;
- top: 4px;
- left: 4px;
- font-size: 10px;
- padding: 3px 5px 2px;
- color: #ffffff;
- line-height: 1;
- background: rgba(0,0,0,0.4);
- border-radius: 3px;
- }
- }
|