css代码 js { box-sizing: border-box; padding: 0; margin: 0; font-family: BlenderProBold, "PingFang SC", "Microsoft Yahei", sans-serif; } main { background: hsl(55, 100%, 65%); width: 100vw; height: 100vh; display: flex; align-items: center; justify-content: center; } .button { width: 300px; height: 80px; background: none; display: flex; align-items: center; justify-content: center; position: relative; cursor: pointer; } .button::after, .button::before, .glitch { content: ""; display: block; position: absolute; top: 0; left: 0; width: 100%; height: 100%; clip-path: polygon( 0 0, 100% 0, 100% 100%, calc(100% 25px) 100%, calc(100% 25px) calc(100% 10px), cal
