123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162 |
- .container {
- background-color: #F7F7F7;
- }
- .container .timer {
- background-color: #DF3361;
- width: 100%;
- height: 60rpx;
- font-size: 14px;
- text-align: center;
- line-height: 60rpx;
- color: #fff;
- }
- .container .code-info {
- width: 100%;
- height: 390rpx;
- background-color: #fff;
- }
- .container .code-info .code {
- width: 320rpx;
- height: 320rpx;
- border: 1px solid #ebeef5;
- margin: 20rpx auto;
- position: relative;
- }
- .container .code-info .code .canvas-code {
- background-color: #fff;
- width: 280rpx;
- height: 280rpx;
- margin: 20rpx auto;
- }
- .container .code-info .code .code-text {
- text-align: center;
- margin: 30rpx auto;
- }
- .container .code-info .code .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: #5c5c5c;
- line-height: 280rpx;
- }
- .container .order {
- margin-top: 20rpx;
- display: flex;
- height: 250rpx;
- background-color: #fff;
- justify-content: flex-start;
- }
- .container .order .order-img {
- width: 200rpx;
- height: 190rpx;
- margin: 20rpx 20rpx;
- padding-top: 25rpx;
- }
- .container .order .order-img image {
- width: 100%;
- height: 100%;
- }
- .container .order .order-info {
- flex: 1;
- padding-top: 10rpx;
- padding-left: 30rpx;
- }
- .container .order .order-info .order-id {
- height: 50rpx;
- text-align: right;
- }
- .container .order .order-info .order-title {
- height: 60rpx;
- }
- .container .order .order-info .order-price {
- height: 80rpx;
- }
- .container .order .order-info .order-date {
- height: 50rpx;
- }
- .container .shop-info {
- height: 250rpx;
- margin-top: 20rpx;
- padding: 20rpx 30rpx;
- background-color: #fff;
- }
- .container .shop-info .shop {
- height: 50rpx;
- line-height: 50rpx;
- }
- .container .shop-info .address,
- .container .shop-info .tel {
- height: 30rpx;
- line-height: 30rpx;
- margin: 20rpx;
- position: relative;
- }
- .container .shop-info .address image,
- .container .shop-info .tel image {
- width: 40rpx;
- height: 40rpx;
- position: absolute;
- right: 0;
- bottom: 0;
- }
- .container .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;
- }
- .container .order-btn .confirm-btn,
- .container .order-btn .pay-btn {
- background-color: #DF3361;
- width: 180rpx;
- height: 50rpx;
- font-size: 14px;
- text-align: center;
- line-height: 50rpx;
- border-radius: 25rpx;
- color: #fff;
- margin-right: 20rpx;
- }
- .container .order-btn .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;
- }
|