You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
50 lines
602 B
50 lines
602 B
/* pages/record/record.wxss */
|
|
.bg {
|
|
width: 100%;
|
|
height: 100vh;
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
z-index: -1;
|
|
}
|
|
|
|
.bg image {
|
|
width: 100%;
|
|
height: 100%;
|
|
object-fit: cover;
|
|
}
|
|
|
|
.container {
|
|
width: 100%;
|
|
height: 100vh;
|
|
display: flex;
|
|
flex-direction: column;
|
|
padding: 0 0;
|
|
position: relative;
|
|
}
|
|
|
|
.title {
|
|
font-size: 80rpx;
|
|
font-weight: bold;
|
|
margin: 80rpx;
|
|
}
|
|
|
|
.stu_list {
|
|
font-size: 50rpx;
|
|
}
|
|
.stu_list .id {
|
|
position: relative;
|
|
left: 50rpx;
|
|
}
|
|
|
|
.stu_list .name {
|
|
position: relative;
|
|
left: 120rpx;
|
|
}
|
|
|
|
.stu_list .point {
|
|
position: absolute;
|
|
left: 450rpx;
|
|
}
|
|
|