123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119 |
- /* pages/city/city.wxss */
- .storeContent {
- width: 100%;
- height: 90rpx;
- padding: 0 32rpx;
- box-sizing: border-box;
- display: flex;
- align-items: center;
- justify-content: center;
- position: fixed;
- top: 0;
- left: 0;
- background: #fff;
- z-index: 100;
- }
- .storeSearch {
- width: 614rpx;
- height: 64rpx;
- background: #F6F6F6;
- border-radius: 32rpx;
- display: flex;
- align-items: center;
- justify-content: flex-start;
- padding: 0 32rpx;
- box-sizing: border-box;
- margin-right: 10rpx;
- }
- .storeSearch image {
- width: 24rpx;
- height: 24rpx;
- }
- .storeSearch input {
- font-size: 24rpx;
- color: #333;
- margin-left: 8rpx;
- width: 80%;
- }
- .storeSearch .placeholderStyle {
- font-size: 24rpx;
- color: #B2B2B2;
- }
- .searchBtn {
- color: #0075DC;
- font-size: 28rpx;
- width: 60rpx;
- }
- .resulst {
- padding: 10rpx 32rpx;
- box-sizing: border-box;
- }
- page {
- height: 100%;
- background: #F6F6F6;
- }
- .scrollBox {
- height: calc(100vh - 74rpx);
- }
- .btn_jump {
- position: fixed;
- z-index: 9;
- top: 40%;
- right: 10rpx;
- transform: translateY(-50%);
- }
- .btn_jump .btn_item {
- font-size: 20rpx;
- color: #666666;
- margin: 10rpx 0;
- }
- .btn_jump .btn_item.active {
- color: #0075DC;
- }
- .jump_list {
- position: relative;
- height: 100%;
- }
- .list_item {
- height: 80rpx;
- }
- .list_item:nth-of-type(even) {
- background: #f8f8f8;
- }
- .cityTitle {
- background: #F6F6F6;
- color: #666666;
- font-size: 24rpx;
- height: 64rpx;
- padding: 0 32rpx;
- box-sizing: border-box;
- display: flex;
- align-items: center;
- }
- .cityItem {
- background: #fff;
- color: #333333;
- font-size: 28rpx;
- height: 88rpx;
- padding: 0 32rpx;
- box-sizing: border-box;
- display: flex;
- align-items: center;
- border-bottom: 2rpx solid #EDEDED;
- }
|