user-order-detail.wxss 1.4 KB
Newer Older
D
devil_gong 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53
.address {
    padding: 10rpx;
}
.address-base, .address-detail {
    padding: 10rpx 35rpx 10rpx 10rpx;
}
.address-detail .icon {
    width: 35rpx;
    height: 35rpx !important;
}
.address-detail .text {
    width: calc(100% - 40rpx);
}
.address-divider {
    height: 4px;
    background-image: url("/images/buy-address-divider.png");
    background-repeat-y: no-repeat;
}
.address-detail .text, .goods-title {
    line-height: 36rpx;
}
.no-address {
    height: 85rpx;
    line-height: 85rpx;
}

.goods-base {
  min-height: 160rpx;
  margin-left: 180rpx;
}
.goods .goods-item:not(:last-child) {
    border-bottom: 1px dashed #efefef;
}
.goods-item {
    padding: 20rpx 10rpx;
}
.goods-title, .goods-attribute {
    margin-bottom: 10rpx;
}
.goods-image {
    width: 160rpx;
    height: 160rpx;
    margin-right: 20rpx;
}
.goods-price {
    position: relative;
}
.buy-number {
    position: absolute;
    right: 0;
    bottom: 0;
}

D
Devil 已提交
54 55 56
/*
 * 基础信息
 */
D
devil_gong 已提交
57 58 59 60 61 62 63 64
.detail-list {
    padding: 0 10rpx;
}
.detail-list .item {
    padding: 20rpx 0;
}
.detail-list .item .title {
    width: 25%;
D
Devil 已提交
65
    padding-left: 20rpx;
D
devil_gong 已提交
66 67
}
.detail-list .item .content {
D
Devil 已提交
68 69 70
    width: calc(75% - 50rpx);
    padding-left: 20rpx;
    min-height: 46rpx;
D
devil_gong 已提交
71 72 73
}
.detail-list .item view {
    line-height: 46rpx;
D
Devil 已提交
74 75 76 77 78 79 80 81 82 83 84 85 86
}

/*
 * 扩展数据
 */
.extension-list .item {
  padding: 20rpx 30rpx;
}
.extension-list .item .title {
  padding-right: 20rpx;
}
.extension-list .item .content {
  padding-left: 20rpx;
D
devil_gong 已提交
87
}