33 lines
635 B
Plaintext
33 lines
635 B
Plaintext
/* components/searchBar/index.wxss */
|
|
.homeSearch{
|
|
width: 100%;
|
|
border-radius: 100rpx;
|
|
height: 55rpx;
|
|
line-height: 55rpx;
|
|
background-color: rgba(255,255,255,.6);
|
|
text-align: center;
|
|
}
|
|
.homeSearch .icon{
|
|
display: inline-block;
|
|
font-size: 30rpx;
|
|
}
|
|
.homeSearch .placeholder{
|
|
font-size: 26rpx;
|
|
color: rgba(0,0,0,.6);
|
|
}
|
|
.professionSearch{
|
|
width: 100%;
|
|
border-radius: 100rpx;
|
|
height: 70rpx;
|
|
line-height: 70rpx;
|
|
background-color: rgba(255,255,255,1);
|
|
text-align: center;
|
|
}
|
|
.homeSearch .icon{
|
|
display: inline-block;
|
|
font-size: 30rpx;
|
|
}
|
|
.professionSearch .placeholder{
|
|
font-size: 26rpx;
|
|
color: #a3a3a3;
|
|
} |