| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103 |
- .worker_search {
- width: 702rpx;
- height: 110rpx;
- margin: 12rpx auto auto auto;
- padding: 16rpx 30rpx 0 30rpx;
- box-sizing: border-box;
- box-shadow: 0 4rpx 16rpx 0 rgba(0, 0, 0, 0.03);
- border-radius: 20rpx;
- background: #ffffff;
- }
- .worker_search_con {
- display: flex;
- justify-content: space-between;
- align-items: center;
- padding: 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;
- }
- .worker_list {
- padding: 24rpx;
- }
- .worker_item {
- border-radius: 12rpx;
- background-color: #ffffff;
- padding: 0 24rpx 10rpx 24rpx;
- margin-bottom: 24rpx;
- }
- .worker_item_tit {
- display: flex;
- align-items: center;
- justify-content: space-between;
- border-bottom: 1px solid #F5F5F5;
- line-height: 82rpx;
- padding: 0 0 0 8rpx
- }
- .worker_item_tit view {
- font-size: 30rpx;
- color: #333333;
- flex: auto;
- }
- .worker_item_btn {
- padding: 0 30rpx;
- line-height: 58rpx;
- font-size: 24rpx;
- color: var(--color);
- flex: none;
- background: rgba(45, 89, 230, 0.15);
- border-radius: 38rpx;
- }
- .worker_item_txt {
- font-size: 24rpx;
- color: #666666;
- line-height: 34rpx;
- padding: 8rpx;
- }
- .worker_item_txt view {
- padding: 8rpx 0;
- display: flex;
- align-items: center;
- }
- .worker_item_label {
- width: 6em;
- height: 34rpx;
- display: inline-block;
- text-align: justify;
- text-align-last: justify;
- }
- .worker_item_label::after {
- width: 100%;
- display: inline-block;
- content: '';
- }
|