12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- @import "~@less/variables.less";
- .search {
- .contentZIndex1;
- width: 316px;
- padding: 8px;
- box-sizing: border-box;
- position: absolute;
- top: 30px;
- background-color: #fff;
- // margin-bottom: 80px;
- .llStyle;
- .autoList {
- // max-height: 225px;
- // min-height: 80px;
- // overflow-y: auto;
- }
- input {
- width: 100%;
- height: 34px;
- line-height: 34px;
- padding: 0 32px;
- box-sizing: border-box;
- border: 1px solid #979797;
- }
- .border {
- border: 1px solid @blue;
- }
- .borderNone {
- border: 1px solid #979797;
- }
- img {
- position: absolute;
- top: 15px;
- }
- .searchVal {
- left: 18px;
- }
- .clearVal{
- cursor: pointer;
- right: 18px;
- }
- }
- .show {
- display:block;
- }
- .hide {
- display: none;
- }
|