| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- /* 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: 10px 0;
- box-sizing: border-box;
- padding-left: 10px;
- .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;
- font-weight: bold;
- // margin-bottom: 10px;
- }
- .description {
- font-size: 14px;
- color: #A2AFB2;
- &-2 {
- font-size: 14px;
- // color: #34A76B;
- // color: #8C8C8C;
- color: #333333;
- }
- }
- .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%);
- background: linear-gradient(90deg, rgba(15, 34, 38, 0) 0%, #E7E7E7 50%, rgba(15, 34, 38, 0) 100%);
- }
- }
|