37 lines
628 B
Plaintext
37 lines
628 B
Plaintext
/** index.wxss **/
|
|
@import "../../../../config/styles/mp/index.less";
|
|
@import "../../../../config/styles/mp/mixins.less";
|
|
|
|
.page-body {
|
|
height: 100vh;
|
|
display: flex;
|
|
flex: 1;
|
|
flex-direction: column;
|
|
background-color: @oak-bg-color-page;
|
|
box-sizing: border-box;
|
|
.safe-area-inset-bottom();
|
|
}
|
|
|
|
.col {
|
|
display: flex;
|
|
flex-direction: column;
|
|
background-color: #fff;
|
|
}
|
|
.pannel-item {
|
|
display: flex;
|
|
align-items: center;
|
|
height: 96rpx;
|
|
padding: 0 32rpx;
|
|
font-size: 32rpx;
|
|
background-color: #fff;
|
|
}
|
|
|
|
.pannel-label {
|
|
width: 160rpx;
|
|
margin-right: 32rpx;
|
|
}
|
|
|
|
.pannel-text {
|
|
flex: 1;
|
|
opacity: 0.9;
|
|
} |