console
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Gradient Trapezoid</title>
<style>
.trapezoid {
width: 150px;
height: 40px;
background: linear-gradient(to top, #1b72ff, #14244b), linear-gradient(to right, #0d1b3a, #1e3d73),linear-gradient(to top, #1b72ff, #14244b);
clip-path: polygon(10% 0%, 90% 0%, 100% 100%, 0% 100%);
display: flex;
justify-content: center;
align-items: center;
color: white;
font-weight: bold;
position: relative;
}
.trapezoid::after {
display: block;
width: 80%;
height: 20px;
background: linear-gradient(to right, #204074, #14244b);
background: linear-gradient(to top, #1b72ff, #14244b);
border-radius: 5px;
position: absolute;
bottom: 0px;
}
</style>
</head>
<body>
<div class="trapezoid">
IT 云
</div>
</body>
</html>