SearchPage.wxss 1.74 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
  95
  96
  97
  98
  99
 100
 101
 102
 103
 104
 105
 106
 107
 108
 109
 110
 111
 112
@import "../childcare_knowledge/childcare_knowledge.wxss";

.searchBar_bg {
background: #48C17B;
width: 100%;
height: 38px;
position: fixed;
top: 0;
z-index: 1;
}
.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;
}

/* 结果列表 */
.search_detail {
margin-top: 40px;
}


.content_title {
display: inline-block;
overflow: hidden;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-line-clamp: 1;
}