user-order.acss 1.7 KB
Newer Older
D
v1.2.0  
devil_gong 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
/*
 * 导航
 */
.nav {
  background: #eee;
  height: 80rpx;
  line-height: 80rpx;
}
.nav .item {
  width: 16.66%;
}

/*
 * 列表
 */
.scroll-box{
    height: calc(100vh - 80rpx);
}
.goods-base {
  min-height: 160rpx;
G
gongfuxiang 已提交
21
  margin-left: 180rpx;
D
Devil 已提交
22
  position: relative;
D
v1.2.0  
devil_gong 已提交
23 24 25 26
}
.goods-title {
    line-height: 36rpx;
}
D
devil_gong 已提交
27
.list-item .goods-item:last-child {
D
v1.2.0  
devil_gong 已提交
28 29 30 31 32
    border-bottom: 1px dashed #efefef;
}
.goods-item {
    padding: 20rpx 10rpx;
}
G
gongfuxiang 已提交
33
.goods-title, .goods-spec {
D
v1.2.0  
devil_gong 已提交
34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50
    margin-bottom: 10rpx;
}
.goods-image {
    width: 160rpx;
    height: 160rpx;
    margin-right: 20rpx;
}
.goods-price {
    position: relative;
    margin-top: 10rpx;
}
.buy-number {
    position: absolute;
    right: 0;
    bottom: 0;
}
.item-base, .item-describe, .item-operation {
D
Devil 已提交
51
    padding: 20rpx 10rpx 20rpx 10rpx;
D
v1.2.0  
devil_gong 已提交
52
}
D
Devil 已提交
53
.warehouse-group-icon {
D
Devil 已提交
54 55
  width: 30rpx;
  height: 30rpx;
D
Devil 已提交
56
}
D
v1.2.0  
devil_gong 已提交
57 58 59 60 61 62 63 64 65 66
.submit-cancel {
    border: 1px solid #f7c3b3;
    color: #f7c3b3;
}
.item-operation button:not(:first-child) {
    margin-left: 20rpx;
}
.item-operation button {
    padding: 0 35rpx;
}
D
Devil 已提交
67 68 69 70 71 72
.orderaftersale-btn-text {
  position: absolute;
  right: 0;
  bottom: 0;
  color: #4d7fa7;
}
D
v1.2.0  
devil_gong 已提交
73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91

/**
 * 支付方式
 */
.payment-list {
  padding: 40rpx 0;
}
.payment-list .item {
  width: 50%;
}
.payment-list .item-content {
  margin: 20rpx;
  padding: 20rpx 10rpx;
}
.payment-list .item-content image {
  width: 50rpx;
  height: 50rpx !important;
  vertical-align: middle;
  margin-right: 10rpx;
D
devil 已提交
92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108
}

/**
 * 选择
 */
 .selected .icon {
  width: 35rpx;
  height: 35rpx !important;
  margin: 0 20rpx 0 10rpx;
  vertical-align: middle;
}

/**
 * 合并支付按钮
 */
.pay-merge-submit {
  width: 220rpx;
D
devil 已提交
109 110
  height: 70rpx !important;
  line-height: 74rpx !important;
D
devil 已提交
111 112
  left: calc(50% - 110rpx);
  bottom: 50rpx;
D
v1.2.0  
devil_gong 已提交
113
}