/* components/info-card/index.wxss */
|
.info-card {
|
padding: 8px 16px;
|
position: relative;
|
display: flex;
|
align-items: flex-start;
|
height: 80px;
|
background-color: var(--td-white-color-1);
|
}
|
|
.info-card:active {
|
background-color: var(--td-gray-color-1);
|
}
|
|
.info-card .info-card__hd {
|
width: 120px;
|
height: 80px;
|
border-radius: 2px;
|
/* background-color: greenyellow; */
|
}
|
|
.info-card .info-card__hd .info-card__hd_image {
|
width: 120px;
|
height: 80px;
|
}
|
|
.info-card .info-card__bd {
|
display: flex;
|
flex-direction: column;
|
justify-content: space-between;
|
/* background-color: hotpink; */
|
height: 100%;
|
-webkit-box-flex: 1;
|
-webkit-flex: 1;
|
flex: 1;
|
padding: 0 8px;
|
}
|
|
.info-card .info-card__bd .info-card__content {
|
color: var(--td-text-color-primary);
|
font-size: 14px;
|
}
|
|
.info-card .info-card__bd .info-card__tag {
|
color: var(--td-text-color-secondary);
|
font-size: 12px;
|
display: flex;
|
justify-content: space-between;
|
align-items: center;
|
}
|
|
.info-card .info-card__bd .info-card__tag .info-card__browse {
|
display: flex;
|
justify-content: space-between;
|
align-items: center;
|
}
|