123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- @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;
- }
- .search-result-noItem{
- span{
- // position: relative;
- color: #bfbfbf;
- margin-top: -8px;
- margin-left: 30px;
- // top: 8px;
- // left: 27px;
- height: 50px;
- display: inline-block;
- line-height: 50px;
- }
- }
|