38 lines
618 B
Plaintext
38 lines
618 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;
|
|
box-sizing: border-box;
|
|
align-items: stretch;
|
|
background-color: @oak-bg-color-page;
|
|
.safe-area-inset-bottom();
|
|
}
|
|
|
|
.container {
|
|
flex: 1;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.container2 {
|
|
flex-direction: row;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.card {
|
|
min-width: 480rpx;
|
|
text-align: center;
|
|
}
|
|
|
|
.list {
|
|
background-color: #fff;
|
|
margin-top: 20rpx;
|
|
padding: 0 20rpx;
|
|
|
|
} |