35 lines
630 B
SCSS
35 lines
630 B
SCSS
// 会议卡片
|
|
.public-meeting-card + .public-meeting-card {
|
|
margin-top: 32rpx;
|
|
}
|
|
|
|
.public-meeting-card {
|
|
display: flex;
|
|
align-items: center;
|
|
.left-img {
|
|
width: 320rpx;
|
|
height: 192rpx;
|
|
border-radius: 16rpx;
|
|
flex-shrink: 0;
|
|
margin-right: 32rpx;
|
|
}
|
|
.right-box {
|
|
display: flex;
|
|
flex-direction: column;
|
|
font-family: PingFang SC, PingFang SC;
|
|
font-weight: 500;
|
|
|
|
font-style: normal;
|
|
text-transform: none;
|
|
text {
|
|
font-size: 32rpx;
|
|
color: #333333;
|
|
&:last-child {
|
|
margin-top: 32rpx;
|
|
font-size: 28rpx;
|
|
color: #999999;
|
|
}
|
|
}
|
|
}
|
|
}
|