107 lines
1.6 KiB
Plaintext
107 lines
1.6 KiB
Plaintext
/* subpackage/teacher/check-student/check-student.wxss */
|
|
|
|
.pad{
|
|
padding: 0 30rpx ;
|
|
padding-bottom: 180rpx;
|
|
}
|
|
|
|
.title{
|
|
font-weight: bold;
|
|
margin-top: 30rpx;
|
|
margin-bottom: 26rpx;
|
|
}
|
|
|
|
.tab{
|
|
display: flex;
|
|
padding: 16rpx;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.tab-item{
|
|
border-radius: 20rpx;
|
|
width: 30%;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
font-size: 26rpx;
|
|
height: 80rpx;
|
|
color:#333333;
|
|
}
|
|
|
|
.active{
|
|
background-color: #0082FF;
|
|
font-weight: bold;
|
|
color: #fff;
|
|
}
|
|
|
|
.card{
|
|
background-color: #fff;
|
|
box-shadow: 0 0 10rpx rgb(223, 222, 222);
|
|
border-radius: 20rpx;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.student{
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
margin-top: 40rpx;
|
|
flex-wrap: wrap;
|
|
padding-bottom: 100rpx;
|
|
}
|
|
|
|
.student-item{
|
|
background-color: #fff;
|
|
border-radius: 20rpx;
|
|
width: 47%;
|
|
height: 120rpx;
|
|
font-size: 26rpx;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
padding: 0 30rpx;
|
|
box-sizing: border-box;
|
|
margin-bottom: 30rpx;
|
|
align-items: center;
|
|
}
|
|
|
|
.left{
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.student-item image{
|
|
width: 68rpx;
|
|
height: 68rpx;
|
|
margin-right: 18rpx;
|
|
border-radius: 50%;
|
|
}
|
|
|
|
|
|
.close{
|
|
background-color: #45a1f7;
|
|
color: #fff;
|
|
}
|
|
|
|
.btn{
|
|
position: fixed;
|
|
bottom: 0;
|
|
width: 100%;
|
|
left: 0;
|
|
height: 190rpx;
|
|
box-sizing: border-box;
|
|
padding-top: 40rpx;
|
|
background-color: #fff;
|
|
}
|
|
|
|
.sure{
|
|
width: 80%;
|
|
background-color: #0082FF;
|
|
height: 80rpx;
|
|
border-radius: 80rpx;
|
|
color: #fff;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
font-size: 30rpx;
|
|
margin: auto;
|
|
} |