| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131 |
- /* pages/nav/pages/tabs/index.wxss */
- .search-w {
- border: 2rpx solid #E5E5E5;
- border-radius: 8rpx;
- width: 658rpx;
- margin: 0 auto;
- display: flex;
- height: 80rpx;
- line-height: 80rpx;
- margin-bottom: 66rpx;
- justify-content: space-between;
- align-items: center;
- }
- .search-w-left {
- display: flex;
- }
- .search-w-left .cuIcon-search {
- width: 54rpx;
- text-align: right;
- margin-right: 12rpx;
- }
- .search-input {
- height: 80rpx;
- line-height: 80rpx;
- width: 470rpx;
- position: relative;
- margin-left: 26rpx;
- }
- .search-input::after {
- content: '';
- display: block;
- height: 36rpx;
- width: 2rpx;
- background: #e5e5e5;
- position: absolute;
- right: 0;
- top: 22rpx;
- }
- .action {
- padding-right: 36rpx;
- display: flex;
- align-items: center;
- }
- .action .iconfont{
- font-size: 32rpx;
- margin-right: 12rpx;
- color: #1FE4DC;
- }
- .location-icon {
- width: 26rpx;
- height: 30rpx;
- margin-right: 10rpx;
- }
- .icon-list{
- display: flex;
- box-sizing: border-box;
- flex-direction: row;
- background: #fff;
- z-index: 1111;
- width: 100%;
- margin: 0 0 8px;
- align-items: flex-end;
- box-shadow:0px 8px 8px #F5F5F5;
- position: relative;
- padding: 0 40rpx 20rpx;
- }
- .icon-list .iconfont{
- font-size: 18rpx;
- color: rgba(0, 0, 0, .3);
- margin-left: 10rpx;
- }
- .icon-list .iconhose_arrow_active{
- color: #1FE4DC;
- }
- .icon-item{
- display: flex;
- font-size: 28rpx;
- margin-right: 50rpx;
- position: relative;
- line-height: 42rpx;
- align-items: center;
- justify-content: space-between;
- }
- .icon-item image {
- width: 16rpx;
- height: 10rpx;
- margin-left: 10rpx;
- flex-shrink: 0;
- }
- .fixed {
- position: fixed;
- top: 0;
- }
- .house-list {
- padding: 0 48rpx 0 44rpx;
- background: #fff;
- }
- .hover-icon{
- position: fixed;
- right: 10rpx;
- bottom: 100rpx;
- font-size: 160rpx;
- color: #1FE4DC;
- }
- .dp-con{
- position: absolute;
- left: 0;
- top: 74rpx;
- width: 100%;
- background-color: rgba(0, 0, 0, .3);
- overflow: hidden;
- transition: all ease .3s;
- z-index: -1;
- height:calc(100vh - 290rpx);
- pointer-events: none;
- opacity: 0;
- }
- .dp-active{
- pointer-events: auto;
- opacity: 1;
- /* height:calc(100vh - 290rpx); */
- }
|