44 lines
728 B
Plaintext
44 lines
728 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: @bg-color-block;
|
|
box-sizing: border-box;
|
|
.safe-area-inset-bottom();
|
|
}
|
|
|
|
.item-container {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: flex-start;
|
|
margin: @spacer;
|
|
padding: @spacer;
|
|
margin-bottom: 0rpx;
|
|
background-color: #fff;
|
|
}
|
|
|
|
.phone {
|
|
size: @font-size-base;
|
|
margin-left: @spacer;
|
|
}
|
|
.area {
|
|
margin-left: @spacer;
|
|
color:@text-level-3-color;
|
|
}
|
|
|
|
.row {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.btn-view {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|