98 lines
2.0 KiB
SCSS
98 lines
2.0 KiB
SCSS
/* pages/dataRecords/dataRecords.wxss */
|
|
.dataRecords-page {
|
|
padding: 39rpx 46rpx 160rpx 89rpx;
|
|
|
|
.dataName {
|
|
font-size: 36rpx;
|
|
font-family: PingFang SC;
|
|
font-weight: bold;
|
|
color: #333333;
|
|
}
|
|
|
|
.dataRecords {
|
|
.dataRecord {
|
|
border-bottom: 1px solid #F3F5F8;
|
|
padding: 0 0 42rpx 0;
|
|
margin-bottom: 50rpx;
|
|
position: relative;
|
|
|
|
&:not(:first-child) {
|
|
&::before {
|
|
content: '';
|
|
border-left: 2rpx solid #F3F5F8;
|
|
position: absolute;
|
|
left: -27rpx;
|
|
height: 118%;
|
|
top: -222rpx;
|
|
}
|
|
}
|
|
|
|
.row1 {
|
|
font-size: 33rpx;
|
|
font-family: PingFang SC;
|
|
font-weight: bold;
|
|
color: #494949;
|
|
position: relative;
|
|
margin-bottom: 38rpx;
|
|
word-break: break-all;
|
|
|
|
&::before {
|
|
content: '';
|
|
width: 22rpx;
|
|
height: 22rpx;
|
|
background: #EDEDED;
|
|
border-radius: 50%;
|
|
position: absolute;
|
|
left: -35rpx;
|
|
top: 12rpx;
|
|
}
|
|
}
|
|
|
|
.row2 {
|
|
font-size: 28rpx;
|
|
font-family: PingFang SC;
|
|
font-weight: 400;
|
|
color: #838383;
|
|
margin-bottom: 33rpx;
|
|
word-break: break-all;
|
|
&:last-child{
|
|
margin-bottom: 23rpx;
|
|
}
|
|
}
|
|
}
|
|
|
|
.current {
|
|
.row1 {
|
|
font-size: 33rpx;
|
|
font-family: PingFang SC;
|
|
font-weight: bold;
|
|
color: #494949;
|
|
position: relative;
|
|
|
|
&::before {
|
|
content: '';
|
|
width: 16rpx;
|
|
height: 16rpx;
|
|
background: #3A61B1;
|
|
border-radius: 50%;
|
|
position: absolute;
|
|
left: -35rpx;
|
|
top: 12rpx;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.submitLayout {
|
|
position: fixed;
|
|
left: 0;
|
|
bottom: 0;
|
|
width: 100%;
|
|
background: #fff;
|
|
height: 160rpx;
|
|
display: flex;
|
|
justify-content: space-evenly;
|
|
align-items: center;
|
|
box-shadow: 0px 0px 18rpx 0rpx #CCCCCC;
|
|
}
|
|
} |