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.
 

65 lines
1.1 KiB

/**app.wxss**/
button {
background: initial;
}
button:focus{
outline: 0;
}
button::after{
border: none;
}
textarea {
min-height: 50px !important;
}
page {
background: #ededed;
display: flex;
flex-direction: column;
justify-content: flex-start;
color: #333;
font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Helvetica,
Segoe UI, Arial, Roboto, 'PingFang SC', 'miui', 'Hiragino Sans GB', 'Microsoft Yahei',
sans-serif;
--primary-color: #184DCF;
--tabs-bottom-bar-color: var(--primary-color);
--tab-active-text-color: var(--primary-color);
--button-primary-background-color: var(--primary-color);
--button-primary-border-color: var(--primary-color);
--radio-label-margin: 4px;
}
.van-radio--horizontal {
margin-right: 8px !important;
}
.text-center {
text-align: center;
}
.flex {
display: flex;
}
.flex.between {
justify-content: space-between;
}
.flex.end {
justify-content: flex-end;
}
.flex.center {
justify-content: center;
}
.flex.v-center {
align-items: center;
}
.flex.gap-12 {
gap: 12px;
}
.flex.gap-16 {
gap: 16px;
}
.mb-6 {
margin-bottom: 6px;
}