30 lines
515 B
Plaintext
30 lines
515 B
Plaintext
/* pages/agreeList/agreeList.wxss */
|
|
.page{
|
|
overflow: hidden;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
.dcellbox{
|
|
flex:1;
|
|
overflow: scroll;
|
|
-webkit-overflow-scrolling: touch;
|
|
margin-top: 172rpx;
|
|
}
|
|
.dcell {
|
|
width: 100%;
|
|
border-bottom: 1px solid #E3E4E5;
|
|
box-sizing: border-box;
|
|
padding: 0 37rpx 0 20rpx;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
height: 112rpx;
|
|
background: #FFFFFF;
|
|
border-radius: 10rpx;
|
|
}
|
|
.righticon {
|
|
width: 24rpx;
|
|
height: 48rpx;
|
|
}
|
|
|