98 lines
1.5 KiB
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;
}
button {
color: #ffffff !important;
background-color: #01ae42!important;
}
/* 禁止点击 */
.i-pointer-events{
pointer-events: none;
}
.i-background-color{
background-color: #01ae42 !important;
}
.i-background-color-t{
background-color: #01ae4210 !important;
}
.i-color{
color: #01ae42 !important;
}
.i-border-c-s{
border: 2rpx solid #01ae42 !important;
}
.i-border-color{
border: 2rpx solid #01ae42 !important;
}
.i-border-color-left{
border-left: 15rpx solid #01ae42;
}
.i-border-bottom{
border-bottom: 8rpx solid #01ae42;
}
.i-transparent-color{
background: #01ae4220;
}
/* 小众的颜色 */
.i-yellow-background-color{
background: #ffb565 !important;
}
.i-yellow-border-color{
border: 2rpx solid #ffb565 !important;
}
.i-yellow-color{
color: #ffb565 !important;
}
.i-white{
color: white;
}
.i-red{
color: red;
}
.i-green{
color: #48d848;
}
.i-yellow{
color: #ffa726;
}
.i-blue{
color: #01ae42;
}
.card{
width: calc(100% - 60rpx);
margin: auto;
background-color: #ffffff;
border-radius: 20rpx;
}
.i-flex-a{
display: flex;
align-items: center;
}
.i-flex-j{
display: flex;
justify-content: space-between;
}
.i-flex-j-a{
display: flex;
justify-content: space-between;
align-items: center;
}
.i-hide{
display: none !important;
}
/* 定位 */
.i-screen-positioning{
position: fixed;
bottom: 0;
}