33 lines
616 B
Plaintext
33 lines
616 B
Plaintext
|
/* pages/evaluation/evaluation.wxss */
|
||
|
.evalution_wrap{
|
||
|
width: 100%;
|
||
|
height: 100vh;
|
||
|
box-sizing: border-box;
|
||
|
padding: 10px;
|
||
|
overflow-y: auto;
|
||
|
}
|
||
|
.evalution_content{
|
||
|
display: flex;
|
||
|
flex-direction: row;
|
||
|
flex-wrap: wrap;
|
||
|
}
|
||
|
.evalution_item_row{
|
||
|
width: 30%;
|
||
|
border: 1px solid #5199ff;
|
||
|
box-sizing: border-box;
|
||
|
border-radius: 10px;
|
||
|
font-size: 30rpx;
|
||
|
margin: 10px 5px;
|
||
|
padding: 10px 0;
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
align-items: center;
|
||
|
}
|
||
|
.item_label{
|
||
|
margin-top: 5px;
|
||
|
text-align: center;
|
||
|
}
|
||
|
.item_img{
|
||
|
width: 50%;
|
||
|
height: 50px;
|
||
|
}
|