12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- /* components/w-search/index.wxss */
- .searchList {
- margin: 0;
- padding: 0 !important;
- height: 70rpx !important;
- border-radius: 35rpx !important;
- border: 1rpx solid #ffffff !important;
- &.white {
- background: #fff !important;
- .van-search__content {
- background: #fff !important;
- }
- }
- &.gray {
- background: #f8f8f8 !important;
- .van-search__content {
- background: #f8f8f8 !important;
- }
- }
- .icon-search {
- width: 32rpx;
- height: 32rpx;
- margin: auto 10rpx auto auto;
- }
- .van-search__content {
- border-top-left-radius: 35rpx !important;
- border-bottom-left-radius: 35rpx !important;
- }
- .van-cell {
- font-size: 26rpx !important;
- }
- .searchBtn {
- width: 112rpx;
- line-height: 54rpx !important;
- padding: 0 !important;
- text-align: center;
- background-color: #1cacf1;
- font-weight: 500;
- font-size: 28rpx;
- color: #ffffff;
- line-height: 40rpx;
- border-radius: 40rpx;
- margin-right: 6rpx;
- }
- }
|