12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- /* pages/home/location/location.wxss */
- page {
- height: 100%;
- }
- .list-city {
- -webkit-overflow-scrolling: touch;
- width: 100%;
- height: 100%;
- position: relative;
- overflow-y: auto;
- background: #fff;
- }
- .city-py {
- position: fixed;
- top: 50%;
- right: 0;
- margin-top: -360rpx;
- }
- .city-py view {
- font-size: 26rpx;
- width: 60rpx;
- height: 14px;
- line-height: 14px;
- text-align: center;
- color: #555;
- }
- .showPy {
- width: 150rpx;
- height: 150rpx;
- background: #fff;
- border-radius: 15rpx;
- line-height: 150rpx;
- text-align: center;
- font-size: 80rpx;
- margin: auto;
- position: absolute;
- top: 0;
- left: 0;
- bottom: 0;
- right: 0;
- z-index: 3;
- color: #333;
- box-shadow: 0 0 150rpx rgba(0, 0, 0, 0.35);
- }
- .py {
- box-sizing: border-box;
- background: #F5F5F5;
- font-size: 26rpx;
- color: #aaa;
- padding: 10rpx 25rpx;
- }
- .fullname {
- box-sizing: border-box;
- font-size: 34rpx;
- color: #333333;
- padding: 25rpx;
- border-bottom: 1rpx solid #eee;
- }
- .hot-city {
- padding: 10rpx 30rpx;
- border: 1rpx solid #eee;
- color: #333333;
- background: #FFF;
- display: inline-block;
- box-sizing: border-box;
- margin: 25rpx 0 0 25rpx;
- font-size: 28rpx;
- border-radius: 4px;
- }
- .item:nth-child(1),
- .item:nth-child(2){
- background: #F5F5F5;
- }
|