addressPicker.wxss 1.77 KB

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

.cancelButtonView {
  position: fixed;
  z-index: 1200;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 554rpx;
}

.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-Medium;
  font-size: 34rpx;
  font-weight: 500;
  color: #000000;
  letter-spacing: -0.41px;
  text-align: center;
}

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

.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: #999999;
  letter-spacing: 0;
  height: 45rpx;
  text-align: left;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.fliter .fliterItemView .selected {
  color: #000000;
  border-bottom: 4rpx solid #000000;
}

.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: #999999;
  letter-spacing: 0;
  margin-left: 30rpx;
}

.picker-view .scrollView .cell .selected {
  font-family: PingFang-SC-Medium;
  color: #000000;
  font-size: 36rpx;
  font-weight: 500;
}

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