123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164 |
- /* pages/confirmOrder/confirmOrder.wxss */
- .check_order {
- padding-bottom: 134rpx;
- }
- .address_wrap {
- display: -webkit-flex;
- display: flex;
- align-items: center;
- height: 148rpx;
- font-size: 24rpx;
- color: #333;
- background: #fff;
- }
- .address_none {
- display: -webkit-flex;
- display: flex;
- align-items: center;
- justify-content: center;
- color:#EB4E4F;
- padding: 50rpx 0;
- background: #fff;
- font-size: 26rpx;
- }
- .adress-icon {
- display: block;
- width: 34rpx;
- height: 47rpx;
- margin: 0 56rpx 0 40rpx;
- }
- .payment_method {
- display: -webkit-flex;
- display: flex;
- align-items: center;
- justify-content: space-between;
- font-size: 28rpx;
- padding: 25rpx 40rpx;
- background: #fff;
- }
- .payment-1px-b {
- position: relative;
- }
- .payment-1px-b::after {
- content: " ";
- position: absolute;
- left: 40rpx;
- bottom: 0;
- right: 0;
- height: 1px;
- border-bottom: 1px solid #d9d9d9;
- color: #d9d9d9;
- -webkit-transform-origin: 0 100%;
- transform-origin: 0 100%;
- -webkit-transform: scaleY(0.5);
- transform: scaleY(0.5);
- }
- .order_goods_content {
- display: -webkit-flex;
- display: flex;
- align-items: center;
- padding: 30rpx;
- }
- .order_content_img {
- display: block;
- -webkit-flex: 0 0 33.3333%;
- flex: 0 0 33.3333%;
- width: 175rpx;
- }
- .order_content_middle {
- -webkit-flex: 0 0 50%;
- flex: 0 0 50%;
- padding-left: 25rpx;
- font-size: 24rpx;
- }
- .order_letter_pro {
- margin: 20rpx 0 40rpx;
- color: #a7a7a7;
- }
- .order_content_nums {
- -webkit-flex: 1;
- flex: 1;
- color: #a7a7a7;
- font-size: 24rpx;
- text-align: right;
- }
- .packet_price-tips {
- padding: 20rpx 0 20rpx 30rpx;
- color: #a7a7a7;
- font-size: 24rpx;
- }
- .order_entry {
- padding: 30rpx;
- background: #fff;
- font-size: 24rpx;
- }
- .expenses_info {
- display: -webkit-flex;
- display: flex;
- align-items: center;
- justify-content: space-between;
- height: 50rpx;
- }
- .bonus_bg {
- background: #f2bb11;
- padding: 5rpx;
- margin-right: 5rpx;
- }
- .bonus_rate {
- border: 1px dashed #fff;
- }
- .order_pay {
- position: fixed;
- bottom: 0;
- left: 0;
- right: 0;
- z-index: 99;
- }
- .default_address {
- font-size: 18rpx;
- background: #ffeab8;
- color: #f2bc73;
- height: 40rpx;
- line-height: 40rpx;
- padding-left: 30rpx;
- }
- .just_buy {
- display: -webkit-flex;
- display: flex;
- align-items: center;
- justify-content: center;
- text-align: center;
- line-height: 94rpx;
- font-size: 30rpx;
- background: #fff;
- }
- .just_buy_left {
- -webkit-flex: 0 0 67%;
- flex: 0 0 67%;
- font-size: 30rpx;
- }
- .just_buy_right {
- -webkit-flex: 0 0 33%;
- flex: 0 0 33%;
- font-size: 32rpx;
- color: #fff;
- background: rgb(235, 78, 79);
- }
|