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