解决方法,webkit内核前后加上这段代码
/*! autoprefixer: off */
background: -webkit-linear-gradient(top, #6f9fe7 0%, #3e4dda 100%) ;
/* autoprefixer: on */
background:-moz-linear-gradient(top, #6f9fe7 0%, #3e4dda 100%);
background:-o-linear-gradient(top, #6f9fe7 0%, #3e4dda 100%);
background:linear-gradient(top, #6f9fe7 0%, #3e4dda 100%);```