| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195 | /* pages/editAddress/editAddress.wxss */page {  background: #fff;}/* input列表 */.input-box {  margin-bottom: 100rpx;  background: #fff;  padding: 0 20rpx;}.input-box .section {  display: flex;  align-items: center;  width: 100%;  font-size: 30rpx;  padding: 30rpx 0;  line-height: 48rpx;  height: 100%;  box-sizing: border-box;  border-bottom: 2rpx solid #e5e5e5;}.input-box .section text {  width: 20%;}.input-box .section input {  width: 70%;  padding: 0 20rpx;}.input-box .section picker {  width: 70%;  padding: 0 30rpx;}.input-box .section .pca {  width: 70%;  padding: 0 10rpx;}.input-box .section .pca .address-name {  overflow: hidden;  white-space: nowrap;  text-overflow: ellipsis;  font-size: 28rpx;}.input-box .section .pca .sel-addres {  overflow: hidden;  white-space: nowrap;  text-overflow: ellipsis;  font-weight: normal;  font-size: 24rpx;  color: #AAAAAA;}.input-box .section .arrow {  width: 28rpx;  height: 28rpx;}.input-box .section .arrow image {  width: 100%;  height: 100%;  vertical-align: top;}/* end input列表 *//* 功能按钮 */.btn-box {  padding: 5px 0;  width: 100%;  text-align: center;  margin: auto;}.btn-box text {  font-size: 30rpx;}.btn-box .clear.btn,.keep.btn {  width: 60%;  height: 80rpx;  line-height: 80rpx;  margin: auto;  text-align: center;  border: 1rpx solid #006CE8;  border-radius: 50rpx;  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 1px 0 rgba(255, 255, 255, 0.3);}.btn-box .keep {  color: #fff;  background-color: #006CE8;}.btn-box .clear.btn {  margin-top: 40rpx;  color: #006CE8;}/* end 功能按钮 */.infoText {  margin-top: 20rpx;  text-align: center;  width: 100%;  justify-content: center;}picker-view {  background-color: white;  padding: 0;  width: 100%;  height: 380rpx;  bottom: 0;  position: fixed;}picker-view-column view {  vertical-align: middle;  font-size: 30rpx;  line-height: 30rpx;  height: 100%;  display: flex;  align-items: center;  justify-content: center;}.animation-element-wrapper {  display: flex;  position: fixed;  left: 0;  top: 0;  height: 100%;  width: 100%;  background-color: rgba(0, 0, 0, 0.6);  z-index: 999;}.animation-element {  display: flex;  position: fixed;  width: 100%;  height: 530rpx;  bottom: 0;  background-color: rgba(255, 255, 255, 1);}.animation-button {  top: 20rpx;  width: 290rpx;  height: 100rpx;  align-items: center;}picker-view text {  color: #999;  display: inline-flex;  position: fixed;  margin-top: 20rpx;  height: 50rpx;  text-align: center;  line-height: 50rpx;  font-size: 34rpx;  font-family: Arial, Helvetica, sans-serif;}.left-bt {  left: 30rpx;}.right-bt {  right: 20rpx;  top: 20rpx;  position: absolute;  width: 80rpx !important;}.line {  display: block;  position: fixed;  height: 2rpx;  width: 100%;  margin-top: 89rpx;  background-color: #eee;}
 |