.container {
|
padding: 5rpx 20rpx;
|
background-color: #fff;
|
width: 100%;
|
height: 100vh;
|
display: flex;
|
flex-direction: column;
|
overflow: hidden;
|
}
|
|
.tabs {
|
display: flex;
|
justify-content: space-around;
|
width: 100%;
|
border-bottom: 1px solid #eee;
|
}
|
|
.tab {
|
font-size: 16px;
|
padding: 10px;
|
width: 50%;
|
text-align: center;
|
position: relative;
|
}
|
|
.list-container {
|
flex: 1;
|
overflow-y: auto;
|
z-index: 0;
|
display: flex;
|
flex-direction: column;
|
padding-bottom: 20rpx; /* 增加底部填充 */
|
}
|
|
.item {
|
display: flex;
|
align-items: center;
|
justify-content: space-between;
|
padding: 15px 20rpx;
|
border-bottom: 1px solid #eee;
|
}
|
|
.item-left {
|
display: flex;
|
align-items: center;
|
}
|
|
.item-left text{
|
font-size: 40rpx;
|
min-width: 150rpx;
|
}
|
|
.item-img {
|
width: 40rpx;
|
height: 40rpx;
|
margin-left: 20rpx;
|
}
|
|
.item-button {
|
display: flex;
|
height: 80rpx;
|
padding: 0 60rpx;
|
background-color: #1890FF;
|
color: white;
|
border: none;
|
border-radius: 20rpx;
|
font-size: 30rpx;
|
align-items: center;
|
justify-content: center;
|
}
|
.item-button:active {
|
background-color: #7c7c7c; /* Change to a darker color when pressed */
|
}
|
.indicator {
|
width: 100%;
|
height: 3px;
|
background-color: #1890FF;
|
position: absolute;
|
bottom: 0;
|
left: 0;
|
}
|
|
.noMore-View {
|
display: flex;
|
justify-content: center;
|
align-items: center;
|
height: 100%;
|
text-align: center;
|
flex-direction: column;
|
}
|
|
.noMore-img {
|
width: 300rpx;
|
height: 300rpx;
|
}
|
|
.noMore-text {
|
color: #969494;
|
}
|
|
.search-container {
|
display: flex;
|
align-items: center;
|
padding: 10rpx;
|
border-bottom: 1px solid #eee;
|
}
|
|
.search-input {
|
flex: 1;
|
height: 80rpx;
|
padding: 0 20rpx;
|
border: 1px solid #ccc;
|
border-radius: 20rpx;
|
font-size: 30rpx;
|
}
|
|
.search-button {
|
margin-left: 10rpx;
|
height: 60rpx;
|
background-color: #1890FF;
|
color: white;
|
border: none;
|
border-radius: 20rpx;
|
font-size: 30rpx;
|
text-align: center;
|
display: flex;
|
align-items: center;
|
justify-content: center;
|
}
|
|
.all-waterIntake {
|
width: 100%;
|
flex: 1;
|
overflow-y: auto;
|
z-index: 0;
|
display: flex;
|
flex-direction: column;
|
padding-bottom: 10rpx; /* 增加底部填充 */
|
}
|
.dialog{
|
--td-dialog-content-font-size:40rpx;
|
--td-dialog-content-line-height:50rpx
|
}
|
|
.error-dialog{
|
--td-dialog-title-color:red;
|
--td-dialog-title-font-size:45rpx;
|
}
|
|
.search-results {
|
position: absolute;
|
top: 100rpx; /* 根据搜索框的高度调整 */
|
left: 30rpx;
|
right: 30rpx;
|
bottom: 0;
|
background-color: rgba(255, 255, 255, 0.90); /* 设置白色背景 */
|
z-index: 1;
|
overflow-y: auto;
|
}
|
|
.result-item {
|
padding: 20rpx;
|
border-bottom: 1px solid #eaeaea;
|
}
|
|
.item-img-left {
|
width: 40rpx;
|
/* 根据需要调整图标大小 */
|
height: 40rpx;
|
/* 根据需要调整图标大小 */
|
|
}
|
|
.item-img {
|
width: 40rpx;
|
height: 40rpx;
|
margin-left: 20rpx;
|
}
|
.water-intake-name {
|
font-size: 50rpx !important;
|
margin-left: 15rpx;
|
}
|