123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114 |
- /* pages/my/cashier/cashier.wxss */
- page {
- width: 750rpx;
- min-height: 100vh;
- background: #F6F6F6;
- }
- .back{
- position: fixed !important;
- top: 30px;
- left: 20rpx;
- z-index: 999;
- }
- .topBox {
- flex-direction: column;
- width: 750rpx;
- height: 316rpx;
- background: #FFFFFF;
- }
- .topBox .num {
- font-size: 80rpx;
- font-weight: 500;
- color: #191C27;
- }
- .topBox .tips {
- font-size: 28rpx;
- color: #FF663D;
- }
- .centerBox {
- width: 750rpx;
- background: #FFFFFF;
- padding: 32rpx;
- }
- .centerBox .tit {
- font-size: 32rpx;
- font-weight: 500;
- color: #191C27;
- margin-bottom: 32rpx;
- }
- .centerBox .message {
- margin-bottom: 88rpx;
- }
- .centerBox .message .le {
- font-size: 30rpx;
- color: #191C27;
- }
- .centerBox .message .icon {
- width: 48rpx;
- height: 48rpx;
- }
- .centerBox .message .active {
- width: 46rpx;
- height: 46rpx;
- }
- .centerBox .content{
- margin-bottom: 60rpx;
- }
- .centerBox .content .items {
- width: 207rpx;
- height: 154rpx;
- background: #FFFFFF;
- box-shadow: 0px 10rpx 10rpx 0px rgba(188, 188, 188, 0.15);
- border-radius: 8rpx;
- margin-right: 32rpx;
- flex-direction: column;
- position: relative;
- }
- .centerBox .content .items .icon{
- width: 40rpx;
- height: 40rpx;
- position: absolute;
- right: 0;
- bottom: 0;
- z-index: 10;
- }
- .centerBox .content .items .name {
- font-size: 32rpx;
- color: #191C27;
- }
- .centerBox .content .items .val {
- font-size: 24rpx;
- color: #FF663D;
- }
- .footerNav {
- position: fixed;
- left: 0;
- bottom: 0;
- width: 750rpx;
- height: 162rpx;
- background: #FFFFFF;
- }
- .footerNav .btn {
- width: 686rpx;
- height: 98rpx;
- line-height: 98rpx;
- box-shadow: 0px 10rpx 20rpx 0px rgba(35, 107, 248, 0.2);
- border-radius: 49rpx;
- font-size: 32rpx;
- font-weight: 500;
- color: #FFFFFF;
- }
|