diff --git a/public/css/woff/fontFamily.css b/public/css/woff/fontFamily.css
index db4b235..e6a53fc 100644
--- a/public/css/woff/fontFamily.css
+++ b/public/css/woff/fontFamily.css
@@ -34,6 +34,13 @@
src: url("./Roboto/Roboto-Bold.ttf") format('woff2');
/* unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; */
}
+@font-face {
+ font-family: 'robotoRegular';
+ font-style: italic;
+ font-weight: 700;
+ src: url("./Roboto/Roboto-Regular.ttf") format('woff2');
+ /* unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; */
+}
@font-face {
font-family: 'boskaRegular';
font-style: italic;
diff --git a/src/assets/css/style.less b/src/assets/css/style.less
index 5e6617f..448580c 100644
--- a/src/assets/css/style.less
+++ b/src/assets/css/style.less
@@ -101,4 +101,4 @@ button.general,
line-height: 7.4rem;
width: 3.4rem;
}
-}
\ No newline at end of file
+}
diff --git a/src/assets/icons/modelSelected.svg b/src/assets/icons/modelSelected.svg
index 7056127..031ac2e 100644
--- a/src/assets/icons/modelSelected.svg
+++ b/src/assets/icons/modelSelected.svg
@@ -1,9 +1,10 @@
diff --git a/src/assets/icons/send.svg b/src/assets/icons/send.svg
index fa13feb..8f70a26 100644
--- a/src/assets/icons/send.svg
+++ b/src/assets/icons/send.svg
@@ -1,3 +1,3 @@
-
-
@@ -91,10 +91,14 @@
justify-content: center;
bottom: 19.7rem;
> button {
- width: 40rem;
+ width: 35rem;
height: 8.3rem;
+ box-sizing: border-box;
border-radius: 0.7rem;
margin: 0 1.8rem;
+ &.sandblasted-blurred {
+ border-width: 0.2rem;
+ }
}
}
}
diff --git a/src/views/asistant/components/InputArea.vue b/src/views/asistant/components/InputArea.vue
index 2cc5612..670ca10 100644
--- a/src/views/asistant/components/InputArea.vue
+++ b/src/views/asistant/components/InputArea.vue
@@ -296,7 +296,7 @@ const stopRecording = () => {
.shortcut-item {
font-size: 4.2rem;
width: fit-content;
- font-family: 'robotoBold';
+ font-family: 'robotoRegular';
white-space: nowrap;
height: 8.1rem;
line-height: 8.1rem;
@@ -351,7 +351,7 @@ const stopRecording = () => {
outline: none;
background: transparent;
font-size: 4rem;
- font-family: 'robotoBold';
+ font-family: 'robotoRegular';
font-weight: 400;
line-height: 4.8rem; /* 设置行高等于实际渲染高度,实现垂直居中 */
padding: 0;
@@ -362,7 +362,7 @@ const stopRecording = () => {
color: #888;
letter-spacing: -0.01em;
font-weight: 400;
- font-family: 'robotoBold';
+ font-family: 'robotoRegular';
word-spacing: -5px;
line-height: 4.8rem;
}
@@ -405,7 +405,7 @@ const stopRecording = () => {
}
.recording-text {
- font-family: 'robotoBold';
+ font-family: 'robotoRegular';
font-size: 2.8rem;
color: #6d6868;
letter-spacing: 0.02em;
diff --git a/src/views/asistant/components/NoticeItem.vue b/src/views/asistant/components/NoticeItem.vue
index 91666a4..d133f14 100644
--- a/src/views/asistant/components/NoticeItem.vue
+++ b/src/views/asistant/components/NoticeItem.vue
@@ -97,11 +97,11 @@ const actionList: ActionItem[] = [
align-items: flex-start;
.message-text {
font-size: 4.2rem;
- font-family: 'robotoBold';
+ font-family: 'robotoRegular';
line-height: 121%;
font-weight: 400;
background-color: #efefef;
- padding: 4.95rem 3.95rem;
+ padding: 3.43rem 4.35rem;
}
&.user-message {
diff --git a/src/views/asistant/index.vue b/src/views/asistant/index.vue
index 4981c47..91dbaa2 100644
--- a/src/views/asistant/index.vue
+++ b/src/views/asistant/index.vue
@@ -17,8 +17,8 @@