|
@@ -282,6 +282,16 @@
|
|
|
height: 100%;
|
|
height: 100%;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
+.chat-body::before {
|
|
|
|
|
+ content: "";
|
|
|
|
|
+ position: absolute;
|
|
|
|
|
+ top: 0;
|
|
|
|
|
+ left: 0;
|
|
|
|
|
+ right: 0;
|
|
|
|
|
+ bottom: 0;
|
|
|
|
|
+ background-color: rgba(0, 0, 0, 0.3);
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
.chat-body {
|
|
.chat-body {
|
|
|
flex: 1;
|
|
flex: 1;
|
|
|
overflow: auto;
|
|
overflow: auto;
|
|
@@ -291,8 +301,9 @@
|
|
|
position: relative;
|
|
position: relative;
|
|
|
overscroll-behavior: none;
|
|
overscroll-behavior: none;
|
|
|
background-image: url("../../public/bg_w.png");
|
|
background-image: url("../../public/bg_w.png");
|
|
|
- background-size: cover;
|
|
|
|
|
- background-position: left;
|
|
|
|
|
|
|
+ background-size: cover; /* 使背景图片按比例填充容器 */
|
|
|
|
|
+ background-position: center; /* 居中显示背景图片 */
|
|
|
|
|
+ background-repeat: no-repeat; /* 避免重复 */
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
.chat-body-main-title {
|
|
.chat-body-main-title {
|