123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156 |
- page {
- background: #f5f5f5;
- }
- .list-warpper {
- position: absolute;
- width: 100%;
- height: 100%;
- box-sizing: border-box;
- }
- .list-scroll {
- width: 100%;
- height: 100%;
- box-sizing: border-box;
- }
- .list-scroll.top {
- padding-top: 90rpx;
- }
- /* 样式控制 */
- .list-title {
- color: #666;
- font-size: 26rpx;
- padding-left: 24rpx;
- height: 60rpx;
- line-height: 60rpx;
- }
- .list-name {
- position: relative;
- font-size: 28rpx;
- padding-left: 24rpx;
- color: #999;
- height: 80rpx;
- line-height: 80rpx;
- background: #fff;
- }
- .list-name.border::after {
- content: "";
- position: absolute;
- left: 0rpx;
- right: 0;
- top: 0;
- height: 1px;
- background: #f5f5f5;
- }
- .list-right-wrapper {
- position: absolute;
- top: 50%;
- right: 20rpx;
- padding: 10rpx 0;
- border-radius: 20rpx;
- z-index: 2;
- margin-top: -480rpx;
- background: #fff;
- }
- .right-item {
- display: flex;
- justify-content: center;
- align-items: center;
- padding: 5rpx 20rpx;
- font-size: 26rpx;
- }
- .list-search {
- position: absolute;
- top: 0;
- left: 0;
- display: flex;
- align-items: center;
- width: 100%;
- height: 90rpx;
- box-sizing: border-box;
- z-index: 20;
- }
- .search-title {
- flex-shrink: 0;
- font-size: 28rpx;
- padding-right: 10rpx;
- }
- .list-search-box {
- display: flex;
- align-items: center;
- padding: 0 26rpx;
- width: 100%;
- height: 54rpx;
- background: #fff;
- border-radius: 27rpx;
- font-size: 24rpx;
- box-sizing: border-box;
- margin-left: 42rpx;
- margin-right: 28rpx;
- }
- .list-search-box input {
- width: 100%;
- padding-left: 10rpx;
- height: 100%;
- font-size: 24rpx;
- color: #9d9d9d;
- }
- .search-button {
- width: 80rpx;
- font-size: 26rpx;
- margin-right: 42rpx;
- }
- /* 热门城市横排显示样式 */
- .list-horizontal {
- display: flex;
- flex-wrap: wrap;
- padding-left: 24rpx;
- height: 56rpx;
- line-height: 56rpx;
- margin-top: 16rpx;
- padding-right: 50rpx;
- }
- .list-horizontal .list-name {
- background: #fff;
- font-size: 26rpx;
- border-radius: 4rpx;
- flex: 1;
- margin-right: 28rpx;
- padding: 0;
- text-align: center;
- height: 56rpx !important;
- line-height: 56rpx !important;
- }
- /* 无数据 */
- .nodata {
- padding-top: 200rpx;
- text-align: center;
- font-size: 32rpx;
- color: #ddd;
- }
- .none {
- background: #f5f5f5 !important;
- }
- .bottomborder {
- border-bottom: 1rpx solid #e6e6e6;
- }
|