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.

47 lines
448 B

3 years ago
/*每个页面公共css */
.page {
box-sizing: border-box;
width: 100vw;
height: 100vh;
background: #efefef;
overflow: auto;
color: #100F19;
}
checkbox{
border: #4963F4;
}
3 years ago
button[type='primary'] {
background-color: #327AFE;
color: #fff;
}
button[type='default'] {
background-color: #FFFFFF;
border: 1px solid rgba(0,0,0,0.15);
color: rgba(0,0,0,0.65);
}
.buttons{
display: flex;
}
.button button{
margin: 0 6rpx;
}
3 years ago