| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- /* pages/nav/pages/tabs/index.wxss */
- .search-w {
- border: 2rpx solid #E5E5E5;
- border-radius: 8rpx;
- width: 658rpx;
- display: flex;
- height: 80rpx;
- line-height: 80rpx;
- justify-content: space-between;
- align-items: center;
- margin: 18rpx auto 18rpx auto;
- }
- .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;
- }
- .coustomer-list {
- border-top: 1px solid #e5e5e5;
- padding-left: 40rpx;
- }
- .coustomer-item {
- display: flex;
- height: 130rpx;
- align-items: center;
- border-bottom: 1px solid #e5e5e5;
- padding-right: 40rpx;
- font-size: 30rpx;
- }
- .nickname {
- font-weight: bold;
- color: #111;
- margin-right: 8rpx;
- }
- .rate {
- color: #F56C6C;
- font-size: 20rpx;
- }
- .create_time {
- flex: 1;
- text-align: right;
- color: #A3A4A5;
- font-size: 22rpx;
- }
|