2024-12-27 17:08:36 +08:00
|
|
|
/**app.wxss**/
|
2025-01-07 16:21:18 +08:00
|
|
|
/**app.wxss**/
|
|
|
|
page {
|
|
|
|
background-color: #f7f8fa;
|
|
|
|
font-size: 28rpx;
|
|
|
|
color: #333;
|
|
|
|
font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Helvetica, Arial, sans-serif;
|
|
|
|
line-height: 1.6;
|
|
|
|
height: 100vh;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
|
|
|
|
|
|
|
::-webkit-scrollbar {
|
|
|
|
display: none;
|
|
|
|
width: 0;
|
|
|
|
height: 0;
|
|
|
|
color: transparent;
|
|
|
|
}
|
|
|
|
|
2024-12-27 17:08:36 +08:00
|
|
|
.container {
|
2025-01-07 16:21:18 +08:00
|
|
|
width: 100vw;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: flex-start;
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mt-10 {
|
|
|
|
margin-top: 10rpx;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mr-10 {
|
|
|
|
margin-right: 10rpx;
|
|
|
|
}
|
|
|
|
|
|
|
|
.ml-10 {
|
|
|
|
margin-left: 10rpx;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mb-10 {
|
|
|
|
margin-bottom: 10rpx;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mg {
|
|
|
|
margin: 10rpx;
|
2025-01-02 17:31:12 +08:00
|
|
|
}
|
2025-01-07 16:21:18 +08:00
|
|
|
|
|
|
|
.pd {
|
|
|
|
padding: 10rpx;
|
|
|
|
}
|