12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- @import "~@less/variables.less";
- .search-box {
- .contentZIndex1;
- position: absolute;
- top: 20px;
- width: 316px;
- // box-shadow: 0 6px 20px 0 #989DA3;
- background: #fff;
- margin-bottom: 80px;
-
- }
- // .search {
- // width: 100%;
- // position: relative;
- // height: 44px;
- // padding: 10px 0px 0px 0px;
- // }
- // .search-input {
- // width: 300px;
- // height: 34px;
- // line-height: 34px;
- // position: relative;
- // padding: 0 30px;
- // }
- // .search-btn {
- // position: absolute;
- // right: 0;
- // }
- // .search-close {
- // position: absolute;
- // top: 17px;
- // right: 5px;
- // cursor: pointer;
-
- // }
- // .search-img {
- // position: absolute;
- // top: 17px;
- // left: 5px;
- // cursor: pointer;
- // }
- .search-result {
- /*overflow-y: auto;
- max-height: 225px;*/
- // min-height: 80px;
- }
- .search-result-item {
- padding: 0 30px;
- height: 36px;
- line-height: 36px;
- cursor: pointer;
- }
- .search-result-item:hover {
- border: 1px solid @blue;
- }
|