You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
62 lines
730 B
62 lines
730 B
/**app.wxss**/
|
|
|
|
/* 全局样式重置 */
|
|
page {
|
|
height: 100%;
|
|
background-color: #f8f8f8;
|
|
font-family: -apple-system, BlinkMacSystemFont, Helvetica, Arial, sans-serif;
|
|
}
|
|
|
|
/* 通用容器 */
|
|
.container {
|
|
height: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
/* 通用文本样式 */
|
|
.text-primary {
|
|
color: #1296db;
|
|
}
|
|
|
|
.text-secondary {
|
|
color: #666;
|
|
}
|
|
|
|
.text-muted {
|
|
color: #999;
|
|
}
|
|
|
|
.text-danger {
|
|
color: #ff4757;
|
|
}
|
|
|
|
.text-success {
|
|
color: #2ed573;
|
|
}
|
|
|
|
/* 通用布局 */
|
|
.flex {
|
|
display: flex;
|
|
}
|
|
|
|
.flex-col {
|
|
flex-direction: column;
|
|
}
|
|
|
|
.items-center {
|
|
align-items: center;
|
|
}
|
|
|
|
.justify-center {
|
|
justify-content: center;
|
|
}
|
|
|
|
.justify-between {
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.flex-1 {
|
|
flex: 1;
|
|
}
|