| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152 |
- /* pages/search/index.wxss */
- page {
- background: #f5f5f5;
- }
- /* 顶部 */
- .app-header {
- display: flex;
- align-items: center;
- justify-content: space-between;
- height: 114rpx;
- /* box-shadow: 0 0 10rpx 10rpx #eaeaea; *//* border-top: 1rpx solid #f5f5f5; */
- padding: 0 30rpx;
- box-sizing: border-box;
- background: #fff;
- }
- .map {
- display: flex;
- align-items: center;
- /* white-space: nowrap; */
- font-size: 28rpx;
- /* padding: 0 10rpx 0 20rpx; */
- color: #999;
- margin-right: 15rpx;
- padding-left: 26rpx;
- box-sizing: border-box;
- }
- .location {
- width: 28rpx;
- height: 34rpx;
- padding-right: 10rpx;
- }
- .location image {
- width: 100%;
- height: 100%;
- }
- .map .cityname {
- color: #006be7;
- font-size: 36rpx;
- max-width: 120rpx;
- -webkit-line-clamp: 1;
- overflow: hidden;
- text-overflow: ellipsis;
- -webkit-box-orient: vertical;
- word-break: break-all;
- }
- .arrow-down {
- transform: rotate(90deg);
- margin-left: 10rpx;
- }
- .search {
- width: 500rpx;
- height: 74rpx;
- font-size: 24rpx;
- color: #aaa;
- padding-left: 20rpx;
- box-sizing: border-box;
- border: 4rpx solid #0177ff;
- border-radius: 37rpx;
- display: flex;
- align-items: center;
- justify-content: space-between;
- }
- .search-content {
- font-size: 28rpx;
- flex: 1;
- display: flex;
- align-items: center;
- justify-content: space-between;
- }
- .search .i_search {
- width: 29rpx;
- height: 29rpx;
- display: flex;
- align-items: center;
- }
- .search .i_search image {
- width: 100%;
- height: 100%;
- }
- .search-input {
- flex: 1;
- margin-left: 15rpx;
- color: #aaa;
- }
- .btn-search {
- height: 66rpx;
- width: 128rpx;
- color: #fff;
- font-size: 28rpx;
- text-align: center;
- line-height: 66rpx;
- background: #0177ff;
- border-radius: 34rpx;
- margin-left: 15rpx;
- }
- /* 搜索历史 */
- .topic {
- padding: 0 30rpx;
- color: #333;
- font-size: 28rpx;
- margin-top: 60rpx;
- box-sizing: border-box;
- }
- .topic .topic-header {
- display: flex;
- justify-content: space-between;
- align-items: center;
- height: 80rpx;
- }
- .topic-header .history-title {
- font-family: SourceHanSansCN-Normal;
- font-weight: 400;
- color: #333;
- font-size: 28rpx;
- }
- .topic-header image {
- width: 27rpx;
- height: 39rpx;
- }
- .record {
- display: inline-block;
- height: 65rpx;
- line-height: 65rpx;
- text-align: center;
- padding: 0 20rpx;
- margin-right: 20rpx;
- margin-bottom: 20rpx;
- font-size: 28rpx;
- color: #666;
- background-color: #ebebeb;
- border-radius: 6rpx;
- }
|