mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
51 lines
740 B
Plaintext
51 lines
740 B
Plaintext
@import '../common/style/var.less';
|
|
|
|
.van-search {
|
|
display: flex;
|
|
padding: 10px 16px;
|
|
align-items: center;
|
|
box-sizing: border-box;
|
|
|
|
&__content {
|
|
display: flex;
|
|
padding-left: 10px;
|
|
background-color: @search-background-color;
|
|
border-radius: 2px;
|
|
flex: 1;
|
|
|
|
&--round {
|
|
border-radius: 17px;
|
|
}
|
|
}
|
|
|
|
&__label {
|
|
padding: 0 5px;
|
|
font-size: 14px;
|
|
line-height: 34px;
|
|
color: @text-color;
|
|
}
|
|
|
|
&__field {
|
|
flex: 1;
|
|
|
|
&__left-icon {
|
|
color: @gray-dark;
|
|
}
|
|
}
|
|
|
|
&--withaction {
|
|
padding-right: 0;
|
|
}
|
|
|
|
&__action {
|
|
padding: 0 10px;
|
|
font-size: 14px;
|
|
line-height: 34px;
|
|
color: @text-color;
|
|
|
|
&--hover {
|
|
background-color: @active-color;
|
|
}
|
|
}
|
|
}
|