@@ -0,0 +1,32 @@
+<template>
+ <div class="ai-btn">
+ <img src="~@/assets/image/cyyd/send.png" />
+ </div>
+</template>
+
+<script>
+export default {
+ name: "AIBtn",
+};
+</script>
+<style lang='scss' scoped>
+.ai-btn {
+ width: 40px;
+ height: 40px;
+ position: absolute;
+ right: 17px;
+ cursor: pointer;
+ bottom: 14px;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ background: linear-gradient(124deg, #505DFF 0%, #418CFF 100%);
+ border-radius: 10px 10px 10px 10px;
+ img {
+ width: 20px;
+ height: 20px;
+ }
+}
+</style>