mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-05 19:41:45 +08:00
49 lines
690 B
CSS
49 lines
690 B
CSS
@import '../common/style/var.css';
|
|
|
|
.van-submit-bar {
|
|
z-index: 100;
|
|
position: fixed;
|
|
bottom: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
user-select: none;
|
|
|
|
&__tip {
|
|
padding: 10px;
|
|
background-color: #fff7cc;
|
|
color: $orange;
|
|
font-size: 12px;
|
|
line-height: 18px;
|
|
}
|
|
|
|
&__bar {
|
|
display: flex;
|
|
align-items: center;
|
|
height: 50px;
|
|
background-color: $white;
|
|
font-size: 14px;
|
|
}
|
|
|
|
&__text {
|
|
flex: 1;
|
|
color: $text-color;
|
|
font-weight: 500;
|
|
text-align: right;
|
|
}
|
|
|
|
&__price {
|
|
padding-right: 12px;
|
|
color: $red;
|
|
}
|
|
|
|
&__button {
|
|
button {
|
|
width: 110px;
|
|
}
|
|
|
|
&--disabled button {
|
|
border: none !important;
|
|
}
|
|
}
|
|
}
|