123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162 |
- .container {
- background-color: #F7F7F7;
- // 倒计时
- .timer {
- background-color: #BA9D6E;
- width: 100%;
- height: 60rpx;
- font-size: 14px;
- text-align: center;
- line-height: 60rpx;
- color: #fff;
- }
- .code-info {
- width: 100%;
- height: 390rpx;
- background-color: #fff;
- .code {
- width: 320rpx;
- height: 320rpx;
- border: 1px solid #ebeef5;
- margin: 20rpx auto;
- position: relative;
- .canvas-code {
- background-color: #fff;
- width: 280rpx;
- height: 280rpx;
- margin: 20rpx auto;
- }
- .code-text {
- text-align: center;
- margin: 30rpx auto;
- }
- .refresh{
- width: 280rpx;
- height: 280rpx;
- background-color: rgba(238, 238, 238, 0.95);
- position: absolute;
- top: 20rpx;
- left: 20rpx;
- font-size: 26px;
- text-align: center;
- color: rgb(92, 92, 92);
- line-height: 280rpx;
- }
- }
- }
- .order {
- margin-top: 20rpx;
- display: flex;
- height: 250rpx;
- background-color: #fff;
- justify-content: flex-start;
- .order-img {
- width: 200rpx;
- height: 190rpx;
- margin: 20rpx 20rpx;
- padding-top: 25rpx;
- image {
- width: 100%;
- height: 100%;
- }
- }
- .order-info {
- flex: 1;
- padding-top: 10rpx;
- padding-left: 30rpx;
- .order-id {
- height: 50rpx;
- text-align: right;
- }
- .order-title {
- height: 60rpx;
- }
- .order-price {
- height: 80rpx;
- }
- .order-date {
- height: 50rpx;
- }
- }
- }
- .shop-info {
- height: 250rpx;
- margin-top: 20rpx;
- padding: 20rpx 30rpx;
- background-color: #fff;
- .shop {
- height: 50rpx;
- line-height: 50rpx;
- }
- .address,
- .tel {
- height: 30rpx;
- line-height: 30rpx;
- margin: 20rpx;
- position: relative;
- image {
- width: 40rpx;
- height: 40rpx;
- position: absolute;
- right: 0;
- bottom: 0;
- }
- }
- }
- .order-btn {
- position: fixed;
- bottom: 0;
- left: 0;
- width: 100%;
- height: 100rpx;
- display: flex;
- justify-content: flex-end;
- align-items: center;
- border-top: 1rpx solid #ECECEC;
- .confirm-btn,
- .pay-btn {
- background-color: #BA9D6E;
- width: 180rpx;
- height: 50rpx;
- font-size: 14px;
- text-align: center;
- line-height: 50rpx;
- border-radius: 25rpx;
- color: #fff;
- margin-right: 20rpx;
- }
- .delete-btn {
- width: 180rpx;
- height: 50rpx;
- font-size: 14px;
- text-align: center;
- line-height: 50rpx;
- border-radius: 25rpx;
- color: #999;
- border: 1rpx solid #999;
- margin: 0 20rpx;
- }
- }
- }
|