审查视图

pages/select-address/select-address.wxss 3.4 KB
倪静楠 authored
1
/* pages/select-address/select-address.wxss */
倪静楠 authored
2 3 4
page{
  background-color: #f1f2f4;
}
倪静楠 authored
5 6
.container {
  width: 750rpx;
倪静楠 authored
7
 
倪静楠 authored
8
  border-top: 1rpx solid #f2f2f2;
倪静楠 authored
9
  padding-bottom:140rpx;
倪静楠 authored
10 11 12 13 14 15
}

.addressBox {
  display: flex;
  justify-content: space-between;
  background-color: #ffffff;
倪静楠 authored
16
  align-items: center;
倪静楠 authored
17
  margin-bottom: 20rpx;
倪静楠 authored
18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
}

.left {
  width: 616rpx;
  display: flex;
  flex-direction: column;
  padding-top: 40rpx;
  padding-bottom: 32rpx;
  padding-left: 38rpx;
  box-sizing: border-box;
}

.userInfo {
  display: flex;
  flex-direction: row;
倪静楠 authored
33
  align-items: center;
倪静楠 authored
34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 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
}

.name {
  font-size: 28rpx;
  font-weight: 500;
  text-align: left;
  color: #333333;
  line-height: 40rpx;
  margin-right: 10rpx;
}

.tell {
  font-size: 24rpx;
  font-weight: 500;
  text-align: left;
  color: #7d7e80;
  line-height: -20rpx;
}

.lable {
  width: 82rpx;
  height: 34rpx;
  background: #ff893f;
  border-radius: 18rpx;
  font-size: 24rpx;
  font-weight: 400;
  text-align: left;
  color: #ffffff;
  line-height: 34rpx;
  margin-left: 24rpx;
  display: flex;
  justify-content: center;
  align-items: center;
}

.address {
  width: 430rpx;
  font-size: 24rpx;
  font-weight: 400;
  text-align: left;
  color: #6f6f6f;
  line-height: 34rpx;
  margin-top: 16rpx;
}

/* 默认状态 */
.selectDefault {
  width: 136rpx;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 16rpx;
}

.defaultPic,
.undefaultPic {
  width: 24rpx;
  height: 24rpx;
  display: flex;
  align-items: center;
}

.defaultPic image {
  width: 24rpx;
  height: 24rpx;
}

.unDefaultPic image {
  width: 24rpx;
  height: 24rpx;
}

.defaultText,
.unDefaultText {
  font-size: 24rpx;
  font-weight: 400;
  text-align: left;
  color: #365fff;
  line-height: 34rpx;
}

.unDefaultText {
  color: #333333;
}



/* 编辑 删除 */
.right {
  width: 160rpx;
倪静楠 authored
124 125
  height: 116rpx;
  border-left: 2rpx solid #eeeeee;
倪静楠 authored
126 127 128 129 130
}

.edit,
.del {
  width: 100rpx;
倪静楠 authored
131
  height: 50%;
倪静楠 authored
132 133
  display: flex;
  justify-content: space-between;
倪静楠 authored
134
  /* align-items: center; */
倪静楠 authored
135 136 137 138 139
  margin: 0 auto;
}

.editIcon,
.delIcon {
倪静楠 authored
140 141 142 143
  width: 36rpx;
  height: 40rpx;
  display: flex;
    align-items: center;
倪静楠 authored
144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183
}

.editIcon image {
  width: 28rpx;
  height: 28rpx;
}

.delIcon image {
  width: 28rpx;
  height: 28rpx;
}

.editText,
.delText {
  font-size: 28rpx;
  font-weight: 400;
  text-align: left;
  color: #333333;
  line-height: 40rpx;
}

/* 超出配送范围 */
.exceedText {
  height: 36rpx;
  margin-top: 32rpx;
  margin-bottom: 24rpx;
  font-size: 32rpx;
  font-weight: 500;
  text-align: left;
  color: #333333;
  line-height: 22rpx;
  padding-left: 32rpx;
  box-sizing: border-box;
}

/* 新增地址 */
.bottom {
  width: 750rpx;
  position: fixed;
  bottom: 0;
倪静楠 authored
184 185 186
  left: 0;
  background-color: #fff;
  padding: 28rpx 0;
倪静楠 authored
187 188 189 190 191 192 193 194 195 196 197 198 199 200
}

.addAdress {
  margin: 0 auto;
  width: 622rpx;
  height: 88rpx;
  background: linear-gradient(270deg, #fb7900 -100%, #ff4903);
  border-radius: 44rpx;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 32rpx;
  font-weight: 400;
  color: #ffffff;
倪静楠 authored
201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231
}
.noData{
  width: 100%;
  height: 100%;
  margin-top: 300rpx;
}
.noDataPic{
  width: 200rpx;
  height: 200rpx;
  margin: 0 auto;
}
.noDataPic image{
  width: 200rpx;
  height: 200rpx;
}
.noDataTop{
  width: 100%;
  font-size: 30rpx;
  display: flex;
  /* align-items: center; */
  color: #323233;
  justify-content: center;
  font-weight: 500;
}
.noDataBottom{
  width: 100%;
  font-size: 24rpx;
  color: #7d7e80;
  display: flex;
  justify-content: center;
  margin-top: 10rpx;
倪静楠 authored
232
}