| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 | /* Eservice/agent/billCanUseProduct/index.wxss */page {	position: relative;	height: 100vh;	overflow: hidden;}.footer {	display: flex;	justify-content: space-between;	padding: 0 30rpx;	position: fixed;	width: 100vw;	height: 130rpx;	background: #FFFFFF;	box-shadow: 0px -4rpx 16rpx 2rpx rgba(150, 157, 165, 0.16);	bottom: 0;	box-sizing: border-box;	z-index: 9999;	padding-top: 10rpx;	.count {		height: 90rpx;		line-height: 90rpx;		font-size: 32rpx;		font-weight: bold;		color: var(--error);	}	.but-box {		.but {			min-width: 156rpx;			height: 90rpx;			background: #3874F6;			border-radius: 8rpx;			font-size: 28rpx;			font-family: PingFang SC-Bold, PingFang SC;			font-weight: bold;			color: #FFFFFF;			margin-left: 8rpx;		}		.delete {			background: var(--warning);		}	}}
 |