|
@@ -15,16 +15,20 @@ onMounted(() => {
|
|
|
|
|
|
<template>
|
|
|
<div class="send-ask">
|
|
|
- <!-- <div id="scene" class="3d-scene"></div> -->
|
|
|
<RouterLink class="send-ask-button" to="/answer" :data-time="dataTime">输入您的问题或需求</RouterLink>
|
|
|
</div>
|
|
|
</template>
|
|
|
|
|
|
<style scoped lang="scss">
|
|
|
.send-ask {
|
|
|
- margin: 0 2rem;
|
|
|
position: relative;
|
|
|
+ display: flex;
|
|
|
+ flex-flow: column;
|
|
|
+ align-items: center;
|
|
|
+ justify-content: flex-end;
|
|
|
height: 100%;
|
|
|
+ padding-bottom: 20px;
|
|
|
+ margin: 0 20px;
|
|
|
|
|
|
#scene {
|
|
|
position: absolute;
|
|
@@ -37,7 +41,7 @@ onMounted(() => {
|
|
|
}
|
|
|
|
|
|
&-button {
|
|
|
- position: absolute;
|
|
|
+ // position: absolute;
|
|
|
width: 100%;
|
|
|
height: 60px;
|
|
|
border-radius: 8px;
|
|
@@ -49,7 +53,7 @@ onMounted(() => {
|
|
|
align-items: center;
|
|
|
justify-content: space-between;
|
|
|
padding: 0 17px 0 34px;
|
|
|
- bottom: 20px;
|
|
|
+ // bottom: 20px;
|
|
|
z-index: 2;
|
|
|
|
|
|
&::before {
|
|
@@ -57,7 +61,7 @@ onMounted(() => {
|
|
|
display: block;
|
|
|
position: absolute;
|
|
|
right: 0;
|
|
|
- bottom: 68px;
|
|
|
+ bottom: 90px;
|
|
|
color: #9E9E9E;
|
|
|
font-size: 12px;
|
|
|
}
|