/* pages/index/scanResult/selectPage/index.wxss */
|
.container {
|
width: 100vw;
|
height: 100%;
|
position: relative;
|
}
|
|
|
.refresh-container {
|
display: block;
|
width: 100vw;
|
}
|
|
.loading {
|
display: block;
|
width: 100%;
|
height: 180rpx;
|
display: flex;
|
justify-content: center;
|
align-items: center;
|
}
|
|
.bottom-loading {
|
width: 100vw;
|
display: flex;
|
justify-content: center;
|
align-items: center;
|
height: 100rpx;
|
}
|
|
.content {
|
height: calc(100vh - env(safe-area-inset-bottom) - 100rpx);
|
box-sizing: border-box;
|
}
|
|
.empyt {
|
width: 100%;
|
height: 100%;
|
display: flex;
|
justify-content: center;
|
align-items: center;
|
padding: 20rpx;
|
margin: auto;
|
box-sizing: border-box;
|
}
|
|
.oldPrice {
|
text-decoration: line-through;
|
font-size: 20rpx;
|
color: #999;
|
}
|
|
.price {
|
color: red !important;
|
}
|
|
.freePrice {
|
color: rgb(49, 231, 43) !important;
|
font-size: 26rpx;
|
}
|
|
.card {
|
position: relative;
|
margin: 32rpx;
|
border-radius: 12rpx;
|
overflow: hidden;
|
box-sizing: border-box;
|
border: 3rpx solid #eee;
|
}
|
|
.card--active {
|
border-color: #0052d9;
|
}
|
|
.card--active::after {
|
content: '';
|
display: block;
|
position: absolute;
|
left: 0;
|
top: 0;
|
width: 0;
|
border: 14px solid #0052d9;
|
border-bottom-color: transparent;
|
border-right-color: transparent;
|
}
|
|
.card__icon {
|
color: #fff;
|
position: absolute;
|
left: 1.5px;
|
top: 1.5px;
|
z-index: 1;
|
}
|
|
.iconStyle {
|
width: 100%;
|
}
|
|
.select_tabbar {
|
width: 100vw;
|
height: 100rpx;
|
background-color: #fff;
|
display: flex;
|
justify-content: space-between;
|
align-items: center;
|
font-size: 24rpx;
|
position: fixed;
|
left: 0;
|
bottom: 0;
|
padding-bottom: env(safe-area-inset-bottom);
|
border-top: 1rpx solid #eee;
|
}
|
|
.select_tabbar .cssPublic {
|
display: flex;
|
justify-content: space-between;
|
align-items: center;
|
}
|
|
.select_tabbar .tabItams {
|
font-size: 28rpx;
|
margin-left: 30rpx;
|
}
|
|
.select_tabbar .activeCode {
|
display: flex;
|
align-items: center;
|
justify-content: center;
|
width: 200rpx;
|
height: 100rpx;
|
background-color: #d54941;
|
color: #fff;
|
font-size: 28rpx;
|
}
|
|
.t-back-top--fixed {
|
bottom: 15vh !important;
|
}
|