123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106 |
- /* pages/Components/city/city.wxss */
- .container{
- padding: 0;
- margin: 0;
- }
- image{
- width: 40rpx;
- height: 40rpx;
- }
- .localView{
- display: flex;
- width: 700rpx;
- margin: 0 25rpx;
- color: #999;
- font-size: 28rpx;
- height: 80rpx;
- line-height: 80rpx;
- }
- .localView image{
- padding-top: 20rpx;
- margin-right: 10rpx;
- }
- .localName{
- margin-left: 20rpx;
- color: #333 !important;
- font-size: 36rpx;
- width: 500rpx;
- overflow: hidden;
- white-space: nowrap;
- text-overflow: ellipsis;
- }
- .middle-title{
- height: 100rpx;
- line-height: 100rpx;
- width: 750rpx;
- background: #f1f1f1;
- text-indent: 25rpx;
- margin-top: 20rpx;
- color: #666;
- }
- .hot-view{
- display: grid;
- justify-content: space-between;
- grid-template-columns: repeat(auto-fill, 150rpx);
- grid-gap: 10px;
- width: 700rpx;
- margin: 20rpx 25rpx;
- height: 160rpx;
- }
- .hot-list{
- width: 148rpx;
- height: 58rpx;
- line-height: 60rpx;
- text-align: center;
- border: 1rpx solid #999 ;
- color: #999;
- align-items: space-around;
- border-radius: 10rpx;
- font-size: 24rpx;
- margin-bottom: 20rpx;
- }
- .city-title{
- width: 750rpx;
-
- }
- .city-title-view{
- background: #f1f1f1;
- height: 60rpx;
- line-height: 60rpx;
- color: #999;
- font-size: 24rpx;
- text-indent: 25rpx;
- }
- .city-name-view{
- height: 100rpx;
- line-height: 100rpx;
- font-size: 32rpx;
- border-bottom: 1px solid #eee;
- width: 725rpx;
- margin-left: 25rpx;
- }
- .select-view{
- position: fixed;
- right: 20rpx;
- top: 25%;
- font-size: 24rpx;
- text-align: center;
- height: 40rpx;
- line-height: 40rpx;
- /* color: #EC3A4E; */
- color: #cc6031;
- }
- .tip-view{
- position: fixed;
- height: 100rpx;
- width: 100rpx;
- top: 50%;
- margin-top: -50rpx;
- left: 50%;
- margin-left: -50rpx;
- font-size: 80rpx;
- }
- .tip-view-hide{
- opacity: 0;
- }
|