cart.acss 1.9 KB
Newer Older
G
cart  
gongfuxiang 已提交
1 2 3
/**
 * 商品列表
 */
D
cart  
devil_gong 已提交
4 5
 .page {
  padding-bottom: 120rpx;
G
cart  
gongfuxiang 已提交
6 7 8 9 10
}
.goods-item {
    padding: 20rpx 10rpx;
    position: relative;
}
D
cart  
devil_gong 已提交
11 12 13
.goods-title {
    line-height: 36rpx;
}
G
cart  
gongfuxiang 已提交
14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
.goods-item:not(:last-child) {
  border-bottom: 1px solid #eee;
}
.goods-title, .goods-attribute {
    margin-bottom: 10rpx;
}
.goods-image {
    width: 160rpx;
    height: 160rpx;
    margin-right: 20rpx;
}
.goods-base {
  min-height: 160rpx;
}
.goods-price {
    position: relative;
}
.buy-number {
    margin-left: 20rpx;
}
D
cart  
devil_gong 已提交
34 35 36 37 38 39
.goods-item .items {
  padding-left: 80rpx;
}
.goods-item .selected {
  margin-top: 60rpx;
}
G
cart  
gongfuxiang 已提交
40 41 42 43 44 45 46

/**
 * 数量操作
 */
.number-content {
    position: absolute;
    right: 20rpx;
D
cart  
devil_gong 已提交
47
    top: 100rpx;
D
优化  
devil_gong 已提交
48 49 50
    background: #eee;
    border-radius: 2px;
    border: 1px solid #eee;
G
cart  
gongfuxiang 已提交
51
}
D
优化  
devil_gong 已提交
52
.number-content .number-submit
G
cart  
gongfuxiang 已提交
53
{
D
优化  
devil_gong 已提交
54
    width: 80rpx;
G
cart  
gongfuxiang 已提交
55 56 57 58 59
    font-weight: bold;
}
.number-content input {
    width: 50px;
}
D
优化  
devil_gong 已提交
60
.number-content .number-submit,
G
cart  
gongfuxiang 已提交
61 62 63
.number-content input
{
    padding: 0;
D
优化  
devil_gong 已提交
64 65 66
    vertical-align: middle;
    height: 60rpx;
    line-height: 60rpx;
D
cart  
devil_gong 已提交
67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129
}

/**
 * 空购物车
 */
.no-data-box {
  padding: 30% 0 0 0;
}
.no-data-box image {
    width: 160rpx;
    margin-bottom: 20rpx;
}
.no-data-box .no-data-tips {
    font-size: 28rpx;
    color: #a6a6a6;
}
.no-data-box button {
  margin: 0 auto;
  width: 220rpx;
  height: 60rpx;
  line-height: 60rpx;
  font-size: 28rpx;
  margin-top: 30rpx;
}

/**
 * 操作导航
 */
.buy-nav {
    position: fixed;
    left: 0;
    bottom: 0;
}
.buy-nav, .nav-base, .nav-submit button {
    height: 100rpx;
}
.nav-base, .nav-submit button {
    line-height: 100rpx;
}
.nav-base {
    width: calc(75% - 20rpx);
    padding: 0 10rpx;
}
.nav-submit {
    width: 25%;
}
.nav-submit button {
    border-radius: 0;
}
.page {
    padding-bottom: 120rpx;
}
.selected .icon {
    width: 50rpx;
    height: 50rpx !important;
    margin: 0 10rpx;
    vertical-align: middle;
}
.buy-nav .price {
  width: calc(100% - 140rpx);
}
.buy-nav .sales-price {
  max-width: calc(100% - 40px);
G
cart  
gongfuxiang 已提交
130
}