123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125 |
- /* pages/search-page/search-page.wxss */
- /* 搜索栏 */
- .search-bar {
- width: 100%;
- position: fixed;
- top: 0;
- left: 0;
- color: #777;
- background: #fff;
- box-shadow: 0 2rpx 6rpx rgba(0, 0, 0, 0.07);
- z-index: 3;
- }
- .search-bar .search-box {
- position: relative;
- height: 60rpx;
- background: #f7f7f7;
- z-index: 999;
- width: 80%;
- margin-left: 70rpx;
- border-radius: 50rpx;
- margin: 20rpx 0 20rpx 20rpx;
- }
- .sear-input {
- height: 60rpx;
- border-radius: 50rpx;
- border: 0;
- margin: 0 30rpx 0 64rpx;
- line-height: 48rpx;
- vertical-align: top;
- background: #f7f7f7;
- font-size: 28rpx;
- }
- .search-bar .search-hint {
- font-size: 28rpx;
- position: absolute;
- right: 30rpx;
- top: 31rpx;
- color: #eb2444;
- }
- .search-bar .search-box .search-img {
- width: 32rpx;
- height: 32rpx;
- position: absolute;
- left: 20rpx;
- top: 14rpx;
- display: block;
- }
- /* 热门搜索&搜索历史 */
- .search-display {
- background: #fff;
- padding: 20rpx;
- margin-top: 100rpx;
- }
- .search-display .title-text {
- padding: 30rpx 0;
- font-size: 30rpx;
- color: #666;
- }
- .hot-search .hot-search-tags {
- overflow: hidden;
- font-size: 26rpx;
- text-align: center;
- padding-bottom: 30rpx;
- }
- .hot-search .hot-search-tags .tags {
- display: block;
- max-width: 100%;
- overflow: hidden;
- float: left;
- border-radius: 50rpx;
- white-space: nowrap;
- text-overflow: ellipsis;
- background-color: #f2f2f2;
- box-sizing: border-box;
- margin-right: 20rpx;
- margin-bottom: 20rpx;
- padding: 10rpx 30rpx;
- }
- /* 搜索历史 */
- .history-search .title-text.history-line {
- position: relative;
- border-top: 2rpx solid #e1e1e1;
- }
- .history-search .his-search-tags {
- overflow: hidden;
- font-size: 26rpx;
- text-align: center;
- display: inline-block;
- }
- .history-search .his-search-tags .tags {
- max-width: 300rpx;
- overflow: hidden;
- float: left;
- border-radius: 50rpx;
- white-space: nowrap;
- text-overflow: ellipsis;
- background-color: #f2f2f2;
- box-sizing: border-box;
- margin-right: 20rpx;
- margin-bottom: 20rpx;
- padding: 10rpx 30rpx;
- }
- .clear-history image {
- width: 32rpx;
- height: 32rpx;
- position: absolute;
- right: 10rpx;
- top: 30rpx;
- }
|