/* pages/mConsult/consultsearch/consultsearch.wxss */
|
.page__hd {
|
/* background-color: white; */
|
padding: 10px;
|
display: flex;
|
align-items: center;
|
}
|
|
.page__bd {
|
padding-left: 10px;
|
padding-right: 10px;
|
font-size: 14px;
|
}
|
|
.search-bar {
|
flex: 1;
|
position: relative;
|
min-width: 50vw;
|
padding: 6px 8px;
|
font-size: 12px;
|
line-height: 24px;
|
color: var(--fyui-text-color_2);
|
text-align: left;
|
background-color: white;
|
border-radius: 20px;
|
border: 2px solid #57E4CB;
|
display: flex;
|
align-items: center;
|
}
|
|
.search-bar .weui-icon-clear {
|
/* position: absolute;
|
top: 50%;
|
right: 0;
|
margin-top: -16px; */
|
padding-left: 8px;
|
width: 16px;
|
height: 16px;
|
-webkit-mask-size: 16px;
|
mask-size: 16px;
|
/* display: block; */
|
}
|
|
.search-bar .search-bar__input {
|
width: 100%;
|
border: 0;
|
font-size: 14px;
|
line-height: 20px;
|
box-sizing: content-box;
|
background: transparent;
|
caret-color: var(--weui-BRAND);
|
color: var(--weui-FG-0);
|
}
|
|
.btn {
|
border-radius: 20px;
|
line-height: 20px;
|
font-size: 14px;
|
width: 70px;
|
background: linear-gradient(to top right, #42E4D5, #94DBF2);
|
padding: 4px 2px;
|
text-align: center;
|
color: white;
|
margin-left: 4px;
|
}
|
|
.history-record {
|
display: flex;
|
flex-wrap: wrap;
|
margin-bottom: 16px;
|
}
|
|
.history-record>text {
|
white-space: nowrap;
|
background-color: rgb(255, 255, 255);
|
margin-right: 8px;
|
margin-bottom: 4px;
|
padding: 2px 6px;
|
color: var(--fyui-text-color_2);
|
border-radius: 8px;
|
/* border: 1px solid var(--fyui-text-color_3); */
|
}
|
|
.hot-topic {
|
background-color: white;
|
position: relative;
|
overflow: hidden;
|
border-radius: 8px;
|
padding: 8px;
|
}
|
|
.hot-topic .hot-topic__item {
|
display: flex;
|
margin-bottom: 8px;
|
}
|
|
.hot-topic .hot-topic__hot{
|
background-color: rgba(255, 0, 0, 0.692);
|
width: 20px;
|
height: 20px;
|
text-align: center;
|
color: white;
|
}
|
|
.hot-topic .hot-topic__normal{
|
background-color: rgba(255, 166, 0, 0.692);
|
width: 20px;
|
height: 20px;
|
text-align: center;
|
color: white;
|
}
|
|
.hot-topic .hot-topic__name{
|
width: 100%;
|
margin-left: 8px;
|
white-space: nowrap;
|
overflow: hidden;
|
text-overflow: ellipsis;
|
/* background-color: orange; */
|
}
|
|
.hot-topic .hot-topic__name:active{
|
background-color: var(--fyui-BG-COLOR-ACTIVE);
|
}
|