文字渐变
background: -webkit-linear-gradient(270deg, #F23B3F 0%, #E55074 94%);
-webkit-background-clip text
-webkit-text-fill-color transparent
边框渐变且有圆角
border: solid 2px transparent;
border-radius: 14px;
//第一个背景色是容器的背景色,第二个背景色是容器边框的渐变色
background-image: linear-gradient(90deg, #315AE8 0%, #72A2E4 100%, #D8264A 100%);,linear-gradient(270deg, #F23B3F 0%, #E55074 94%);
background-origin: border-box;
background-clip: content-box, border-box;