SearchPage.wxss 1.46 KB
  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
@import "../../utils/util_UI.wxss";

.searchBar_bg {
background: #48C17B;
width: 100%;
height: 38px;
position: fixed;
top: 0;
}
.searchBar_bar {
background: white;
height: 32px;
margin-left: 15px;
margin-right: 52px;
display: flex;
align-items: center;
border-radius: 4px;
}
.searchBar_icon {
height: 22px;
width: 22px;
margin-left: 2px;
}
.searchBar_input {
height: 32px;
width: 90%;
margin-left: 2px;
font-size: 14px;
color: #999999;
line-height: 14px;
}
.searchBar_clear {
float: right;
height: 18px;
width: 18px;
transform: translateX(-6px);
}

.searchBar_bar_cancle {
color: white;
font-size: 14px;
letter-spacing: 0;
float: right;
margin-right: 15px;
transform: translateY(-26px);
}

.history_list {
background: white;
margin-top: 40px;
min-height: 288px;
display: flex;
flex-direction: column;
justify-content: space-between;
}

.history_list_cell {
height: 40px;
display: flex;
align-items: center;
width: 100%;
}

.history_list_cell_clock {
height: 19px;
width: 22px;
display: inline-block;
margin-left: 15px;
}

.history_list_cell_text {
font-size: 14px;
color: #333333;
letter-spacing: 0;
margin-right: 20px;
margin-left: 7px;
width: 90%;
}

.history_list_cell_dele {
height: 13px;
width: 12px;
margin-right: 15px;
}

.history_list_clearAll {
font-size: 12px;
color: #999999;
letter-spacing: 0;
width: 100%;
text-align: center;
height: 40px;
line-height: 40px;
}