41 lines
701 B
SCSS
41 lines
701 B
SCSS
.data-summary-page {
|
|
display: flex;
|
|
flex-direction: column;
|
|
height: 100%;
|
|
.search {
|
|
height: 120rpx;
|
|
background-color: #ffffff;
|
|
}
|
|
.scroll {
|
|
flex: 1;
|
|
min-height: 0;
|
|
padding: 20rpx 20rpx 40rpx 20rpx;
|
|
.scroll-view {
|
|
height: 100%;
|
|
.card {
|
|
border-radius: 20rpx;
|
|
background-color: #ffffff;
|
|
padding: 0 24rpx 24rpx 24rpx;
|
|
.header {
|
|
height: 80rpx;
|
|
font-size: 32rpx;
|
|
font-weight: 600;
|
|
}
|
|
.card-item {
|
|
border-radius: 10rpx;
|
|
.con {
|
|
padding: 20rpx;
|
|
background-color: #f5faff;
|
|
border-radius: 20rpx;
|
|
margin-top: 16rpx;
|
|
.con-title {
|
|
color: #9a9da8;
|
|
font-size: 28rpx;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|