123456789101112131415161718192021222324252627282930313233343536 |
- /* pages/city/city.wxss */
- .cityList {
- padding: 56rpx;
- }
- .city-title {
- font-size: 36rpx;
- font-weight: 500;
- line-height: 36rpx;
- margin-bottom: 56rpx;
- }
- .city-list {
- display: flex;
- justify-content: space-between;
- flex-wrap: wrap;
- }
- .city-list:after {
- content: '';
- display: block;
- height: 0;
- width: 200rpx;
- }
- .cityObj {
- background: #F6F6F6;
- width: 200rpx;
- height: 64rpx;
- line-height: 64rpx;
- text-align: center;
- border-radius: 10rpx;
- margin-bottom: 16rpx;
- }
|