addressPicker.wxss 1.68 KB

.wx-mask{
  position: fixed;
    z-index: 1000;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
}

.picker-view{
    position: fixed;
    z-index: 1200;
    width:100%;
    height: 780rpx;
    left:0;
    bottom: 0;
    background-color: white;
}

.header {
  width: 100%;
  height: 98rpx;
  display: flex;
  justify-content: center;
  align-items: center;
}

.header .headerText {
  font-family: PingFang-SC-Regular;
  font-size: 34rpx;
  color: #444444;
  letter-spacing: -0.41px;
  text-align: center;
}

.cancelButtonView {
  position: fixed;
  z-index: 1210;
  right: 26rpx;
  bottom: 710rpx;
  width:50rpx;
  height: 50rpx;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cancelButtonView .cancelButton {
  width:26rpx;
  height: 26rpx;
}

.fliter {
  width: 100%;
  height: 50rpx;
  display: flex;
  flex-direction: row;
  border-bottom: 1rpx solid #e0e0e0;
}

.fliter .fliterItemView{
  height: 50rpx; 
  display: flex;
  align-items: flex-end;
  margin-left: 30rpx;
  width: 150rpx;
}

.fliter .fliterItemView .fliterItem {
  font-family: PingFang-SC-Regular;
  font-size: 28rpx;
  color: #444444;
  letter-spacing: 0;
  height: 45rpx;
  text-align: left;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.picker-view .scrollView {
  background: white;
}

.picker-view .scrollView .cell {
  width: 100%;
  height: 90rpx;
  display: flex;
  align-items: center;
}

.picker-view .scrollView .cell .title {
  font-family: PingFang-SC-Regular;
  font-size: 28rpx;
  color: #444444;
  letter-spacing: 0;
  margin-left: 30rpx;
}

.picker-view .scrollView .cell .selectIcon {
  width: 24rpx;
  height: 18rpx;
  margin-left: 10rpx;
}