2024-12-12 04:14:09 +00:00
|
|
|
/* template/xg-bottom/xg-bottom.wxss */
|
|
|
|
.bottom {
|
|
|
|
width: 660rpx;
|
|
|
|
height: 99rpx;
|
|
|
|
background-color: #f6f6bd;
|
|
|
|
border: 1rpx solid #ccd003;
|
|
|
|
border-radius: 237rpx;
|
|
|
|
-moz-box-shadow: 0 0 4.5rpx rgba(0, 0, 0, 0.07058824);
|
|
|
|
-webkit-box-shadow: 0 0 4.5rpx rgba(0, 0, 0, 0.07058824);
|
|
|
|
box-shadow: 0 0 4.5rpx rgba(0, 0, 0, 0.07058824);
|
|
|
|
position: fixed;
|
|
|
|
left: 45rpx;
|
|
|
|
bottom: 60rpx;
|
|
|
|
padding: 7.5rpx;
|
|
|
|
z-index: 3;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
|
|
|
.bottom .search {
|
|
|
|
width: 346.5rpx;
|
|
|
|
height: 84rpx;
|
|
|
|
background-color: #ffffff;
|
|
|
|
border-radius: 237rpx 100rpx 100rpx 237rpx;
|
|
|
|
border: 1rpx solid rgba(215, 215, 215, 0.8);
|
|
|
|
padding-left: 24rpx;
|
|
|
|
font-size: 24rpx;
|
|
|
|
color: #AAAAAA;
|
|
|
|
margin-right: 7.5rpx;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
.bottom .search .icon {
|
|
|
|
width: 39rpx;
|
|
|
|
height: 39rpx;
|
|
|
|
margin-right: 15rpx;
|
|
|
|
}
|
|
|
|
.bottom .contrast {
|
|
|
|
border-radius: 100rpx 237rpx 237rpx 100rpx;
|
|
|
|
height: 84rpx;
|
|
|
|
background-color: #ffffff;
|
|
|
|
border: 1rpx solid rgba(215, 215, 215, 0.8);
|
|
|
|
width: 291rpx;
|
|
|
|
font-size: 27rpx;
|
|
|
|
color: #333333;
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
align-items: center;
|
|
|
|
padding: 0 30rpx;
|
|
|
|
}
|
|
|
|
.bottom .contrast .text {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
|
|
|
.bottom .contrast .icon {
|
|
|
|
width: 45rpx;
|
|
|
|
height: 33rpx;
|
|
|
|
margin-right: 15rpx;
|
|
|
|
}
|
|
|
|
.bottom .contrast .amount {
|
|
|
|
height: 33rpx;
|
2024-12-27 10:49:31 +00:00
|
|
|
line-height: 33rx;
|
2024-12-12 04:14:09 +00:00
|
|
|
font-size: 21rpx;
|
|
|
|
color: #F95D5D;
|
|
|
|
padding: 0 12.75rpx;
|
|
|
|
background-color: #fdf3f5;
|
|
|
|
border: 1rpx solid #f4cfda;
|
|
|
|
border-radius: 225rpx;
|
|
|
|
margin-left: 15rpx;
|
|
|
|
}
|
|
|
|
.dot {
|
|
|
|
position: fixed;
|
|
|
|
width: 15rpx;
|
|
|
|
height: 15rpx;
|
|
|
|
background-color: red;
|
|
|
|
border-radius: 50%;
|
|
|
|
top: -5%;
|
|
|
|
left: -5%;
|
|
|
|
z-index: 99;
|
|
|
|
transition: left 0.3s linear, top 0.3s cubic-bezier(0.5, -0.5, 1, 1);
|
|
|
|
}
|