/* pages/addressBook/addressBook.wxss */ .search-box { width: 100%; padding: 8px 10px; box-sizing: border-box; background: #fff; // position: fixed; // top: 0; // z-index: 2; >.search { width: 100%; height: 36px; padding: 8px 10px; box-sizing: border-box; border-radius: 4px; border: 1px solid #E6EAF2; display: flex; align-items: center; .icon { width: 20px; height: 20px; margin-right: 8px; image { width: 100%; height: 100%; } } input { flex: 1; font-size: 14px; } } } .list { // padding: 50px 0 120px; padding-bottom: 120px; min-height: calc(100vh - 170px); background: #EFF1F4; position: relative; .van-index-anchor--active { font-weight: bold; // top: 50px !important; } .item { padding: 24rpx 24rpx 0; background: #fff; .row { margin-bottom: 8px; color: #2E3A4F; display: flex; justify-content: space-between; align-items: center; .title { font-size: 15px; font-weight: bold; } .tel { font-size: 15px; } .label { color: #858CA0; font-size: 14px; } .val { font-size: 14px; } } .row:last-child { margin-bottom: 0; } .line { width: 100%; height: 2rpx; background: #E6EAF2; } } .total { padding: 6px 0; color: #858CA0; font-size: 16px; text-align: center; } }