| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222 |
- .query_top {
- background-color: var(--color);
- position: relative;
- height: 120rpx;
- }
- .query_top_img1 {
- position: absolute;
- width: 366rpx;
- height: 38rpx;
- top: 24rpx;
- left: 32rpx;
- }
- .query_top_img2 {
- position: absolute;
- width: 352rpx;
- height: 130rpx;
- top: 20rpx;
- right: 0;
- z-index: 1;
- }
- /* .query_top_hu::before{ content: ""; display: block; width: 1500rpx; height: 750rpx;} */
- .worker_search {
- height: 180rpx;
- position: relative;
- z-index: 1;
- padding: 16rpx 0 0 0;
- box-sizing: border-box;
- box-shadow: 0 4rpx 16rpx 0 rgba(0, 0, 0, 0.03);
- border-radius: 20rpx 20rpx 0 0;
- background: #ffffff;
- }
- .worker_search_con {
- display: flex;
- justify-content: space-between;
- align-items: center;
- padding: 0 30rpx;
- margin: 0 30rpx;
- border-radius: 80rpx;
- background: #F2F5F9;
- }
- .worker_search_con input {
- flex: auto;
- width: 100%;
- background: none;
- border: none;
- height: 78rpx;
- }
- .worker_search_con view {
- flex: none;
- width: 100rpx;
- display: inline-block;
- line-height: 60rpx;
- font-size: 26rpx;
- }
- .worker_search_con view text {
- margin-right: 10rpx;
- font-size: 30rpx;
- }
- .query_list {
- padding: 20rpx 20rpx 20rpx 20rpx;
- }
- .query_item {
- background-color: #ffffff;
- line-height: 34rpx;
- color: #333333;
- font-size: 24rpx;
- border-radius: 16rpx;
- position: relative;
- margin-bottom: 20rpx;
- padding: 0 22rpx;
- }
- .query_item_txt {
- padding: 20rpx 0;
- display: flex;
- }
- .query_item_txt view{
- display: block;
- white-space: nowrap; overflow: hidden;text-overflow: ellipsis;
- }
- .query_item_label {
- width: auto; flex: none;
- color: #999999;
- }
- .query_zc {
- color: #18BC33;
- }
- .query_jb {
- color: #F58329;
- }
- .query_wx {
- color: #F22424;
- }
- .query_btn {
- border-radius: 100rpx;
- width: 158rpx;
- height: 58rpx;
- line-height: 58rpx;
- color: var(--color);
- text-align: center;
- font-size: 24rpx;
- position: absolute;
- bottom: 20rpx;
- right: 22rpx;
- background: rgba(45, 89, 230, 0.15);
- }
- .no_data {
- width: 100%;
- height: 500rpx;
- display: flex;
- justify-content: center;
- flex-direction: column;
- align-items: center;
- text-align: center;
- border-radius: 16rpx;
- }
- .no_data cover-image {
- width: 442rpx;
- height: 194rpx;
- flex: none;
- }
- .no_data image {
- width: 442rpx;
- height: 194rpx;
- flex: none;
- }
- .no_data_txt {
- font-size: 26rpx;
- line-height: 36rpx;
- flex: none;
- padding-top: 10rpx;
- color: #999999;
- }
- .tabs{
- display: flex;
- justify-content: flex-start;
- margin-top: 20rpx;
- padding: 0 30rpx;
- position: relative;
- z-index: 101;
- }
- .tabs > view{
- background: #F1F1F1;
- font-size: 24rpx;
- display: flex;
- align-items: center;
- cursor: pointer;
- justify-content: space-between;
- padding: 5rpx 20rpx;
- border-radius: 50rpx;
- margin-right: 40rpx;
- }
- .tabs > view > view{
- /* color: #333333; */
- }
- .tabs > view> image{
- width: 40rpx;
- height: 35rpx;
- }
- .selectTab{
- background:#F8F8F8;
- padding: 20rpx 30rpx;
- margin-top: 20rpx;
- position: relative;
- z-index: 101;
- }
- .tabText{
- display: flex;
- justify-content: space-between;
- color: #333333;
- }
- .tabBut{
- margin-top: 30rpx;
- text-align: center;
- display: flex;
- justify-content: center;
- }
- .tabBut .cancel{
- display: block;
- background: #FFF;
- width: 35%;
- padding: 20rpx;
- color: #1476FE;
- }
- .tabBut .query{
- display: block;
- background: #2D59E6;
- width: 35%;
- color: #FFF;
- padding: 20rpx;
- }
- .isActive{
- color: #2D59E6;
- }
- .cha_win {
- position: fixed;
- left: 0;
- right: 0;
- bottom: 0;
- top: 0;
- background: rgba(0, 0, 0, 0.3);
- /* z-index: 99; */
- }
|