------
## 最终结论
```python
def float_sort(input_list):
    return sorted(input_list, key=lambda x: float(x[1]), reverse=True)
```