40 lines
770 B
Plaintext
40 lines
770 B
Plaintext
/**app.wxss**/
|
|
.container {
|
|
height: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
padding: 200rpx 0;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
/* 全局样式 */
|
|
page {
|
|
background-color: #f5f5f5;
|
|
font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Helvetica, 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', SimSun, sans-serif;
|
|
}
|
|
|
|
/* 通用按钮样式 */
|
|
.btn {
|
|
border-radius: 8rpx;
|
|
font-size: 28rpx;
|
|
padding: 20rpx 40rpx;
|
|
}
|
|
|
|
/* 卡片样式 */
|
|
.card {
|
|
background-color: #ffffff;
|
|
border-radius: 12rpx;
|
|
box-shadow: 0 2rpx 8rpx rgba(0, 0, 0, 0.1);
|
|
margin: 20rpx;
|
|
padding: 30rpx;
|
|
}
|
|
|
|
/* 分割线样式 */
|
|
.divider {
|
|
height: 2rpx;
|
|
background-color: #e0e0e0;
|
|
margin: 20rpx 0;
|
|
}
|