@import '/static/iconfont/fonts.wxss';
|
.navBarBox .navBar {
|
background-color:#fff;
|
height: 50px;
|
display: flex;
|
flex-direction: row;
|
justify-content: center;
|
align-items: center;
|
box-shadow: 0 3px 12px rgba(0,0,0,0.05);
|
}
|
|
.fix {
|
position: sticky;
|
top: 0;
|
left: 0;
|
right: 0;
|
width: 100%;
|
z-index: 9999;
|
}
|
|
.statusBar {
|
background-color:lightgrey;
|
}
|
|
.barText {
|
font-size: 16px;
|
font-weight: 600;
|
flex: 2;
|
text-align: center;
|
}
|
|
.u-input {
|
display: flex;
|
align-items: center;
|
border: 1px solid #f5f7fa;
|
border-radius: 99px;
|
background: #f5f7fa;
|
box-shadow: 0px -6px 10px rgba(255, 255, 255, 1), 0px 4px 15px rgba(0, 0, 0, 0.1),0px 3px 6px rgba(0, 0, 0, 0.1) inset;
|
transition: box-shadow .1s ease;
|
padding: 10px;
|
}
|
|
.u-input input {
|
flex: 1;
|
margin: 0 10px;
|
}
|
|
.searchBtn {
|
border: 1px solid #fff;
|
background:#2979ff !important;
|
border-radius: 99px;
|
padding: 0 30rpx;
|
box-shadow: 0px -6px 10px rgba(255, 255, 255, 1), 0px 4px 15px rgba(0, 0, 0, 0.15) !important;
|
}
|
|
.m-p-15 {
|
width: 100%;
|
padding: 0 15px;
|
margin-top: 20px;
|
box-sizing: border-box;
|
}
|
|
.searchBar {
|
position: -webkit-sticky;
|
position: sticky;
|
top: 50px;
|
left: 0;
|
right: 0;
|
z-index: 9998;
|
}
|
|
.productCard {
|
width: 100%;
|
background: #fff;
|
border-radius: 20px;
|
padding: 15px;
|
margin: 15px auto;
|
box-sizing: border-box;
|
box-shadow: 4px 4px 12px rgba(150,150,150,.05);
|
}
|
|
.productCard > view > view {
|
width: 100%;
|
font-size: 28rpx;
|
font-weight: bold;
|
margin-bottom: 10rpx;
|
}
|
|
.productCard > view > view:last-of-type {
|
margin-bottom: 0;
|
}
|
|
.cardList {
|
width: 100%;
|
box-sizing: border-box;
|
margin-top: 15px;
|
box-shadow: 4px 4px 12px rgba(150,150,150,.05);
|
padding-bottom: 75px;
|
}
|
|
.card-i {
|
width: 100%;
|
background: #fff;
|
border-radius: 12px;
|
padding: 20px 15px;
|
box-sizing: border-box;
|
margin: 0 auto;
|
display: flex;
|
justify-content: space-between;
|
align-items: center;
|
border-bottom: 1px dashed #ccc;
|
}
|
|
.card-i:first-of-type {
|
border-radius: 20px 20px 12px 12px;
|
}
|
|
.card-i:last-of-type {
|
margin-bottom: 0;
|
border-bottom: none;
|
border-radius: 12px 12px 20px 20px;
|
}
|
|
.card-i-l {
|
height: 100%;
|
width: 75%;
|
display: flex;
|
flex-direction: column;
|
align-items: flex-start;
|
justify-content: space-between;
|
}
|
|
.card-i-l > view {
|
font-size: 30rpx;
|
font-weight: bold;
|
margin-bottom: 15rpx;
|
}
|
|
.card-i-l > view > view {
|
width: 100%;
|
overflow: hidden;
|
text-overflow: ellipsis;
|
display: -webkit-box;
|
-webkit-line-clamp: 2;
|
-webkit-box-orient: vertical;
|
}
|
|
.card-i-r {
|
height: 100%;
|
width: 25%;
|
text-align: right;
|
font-size: 32rpx;
|
font-weight: bolder;
|
}
|
|
.green {
|
color: #5fb734;
|
}
|
|
.red {
|
color: #ed6464;
|
}
|