33 lines
517 B
Plaintext
33 lines
517 B
Plaintext
|
|
/* pages/selectDepartment/selectDepartment.wxss */
|
||
|
|
.main{
|
||
|
|
margin: 30rpx 0;
|
||
|
|
height: 100vh;
|
||
|
|
width: 750rpx;
|
||
|
|
}
|
||
|
|
.container{
|
||
|
|
height: 100%;
|
||
|
|
width: 100%;
|
||
|
|
}
|
||
|
|
.item{
|
||
|
|
height: 120rpx;
|
||
|
|
width: 100%;
|
||
|
|
line-height: 120rpx;
|
||
|
|
border-bottom: 2rpx solid #e2dcdc;
|
||
|
|
display: flex;
|
||
|
|
justify-content: space-between;
|
||
|
|
}
|
||
|
|
.name{
|
||
|
|
height: 120rpx;
|
||
|
|
width: 300rpx;
|
||
|
|
padding-left: 30rpx;
|
||
|
|
font-size: 34rpx;
|
||
|
|
color: #444;
|
||
|
|
}
|
||
|
|
.icon{
|
||
|
|
height: 120rpx;
|
||
|
|
width: 150rpx;
|
||
|
|
text-align: center;
|
||
|
|
color: #e2e2e2;
|
||
|
|
font-size: 35rpx;
|
||
|
|
}
|