| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- /* module/article/components/science-card/science-card.wxss */
- .list-card-item {
- position: relative;
- display: flex;
- flex-direction: row;
- align-items: center;
- min-height: 125px;
- padding: 12px 0;
- box-sizing: border-box;
- .cover {
- flex: none;
- width: 100px;
- height: 100px;
- margin-right: 16px;
- border-radius: 12px;
- }
- .content {
- flex: auto;
- display: flex;
- flex-direction: column;
- height: 100px;
- justify-content: space-evenly;
- }
- .title {
- font-size: 16px;
- // color: #fff;
- color:#191919 ;
- }
- .description {
- font-size: 14px;
- color: #A2AFB2;
- &-2 {
- font-size: 12px;
- // color: #34A76B;
- color: #8C8C8C;
- }
- }
- .border-gradient {
- position: absolute;
- top: 0;
- left: 0;
- width: 100%;
- height: 1px;
- transform: translateY(-1px);
- background: linear-gradient(90deg, rgba(15, 34, 38, 0) 0%, var(--primary-color, #E7E7E7) 50%, rgba(15, 34, 38, 0) 100%);
- }
- }
|