123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164 |
- @charset "UTF-8";
- /**
- * 这里是uni-app内置的常用样式变量
- *
- * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
- * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
- *
- */
- /**
- * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
- *
- * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
- */
- /* 颜色变量 */
- /* 行为相关颜色 */
- /* 文字基本颜色 */
- /* 背景颜色 */
- /* 边框颜色 */
- /* 尺寸变量 */
- /* 文字尺寸 */
- /* 图片尺寸 */
- /* Border Radius */
- /* 水平间距 */
- /* 垂直间距 */
- /* 透明度 */
- /* 文章场景相关 */
- .empty.data-v-64343b3a {
- display: flex;
- flex-direction: row;
- align-items: center;
- justify-content: center;
- padding: 24rpx 50rpx;
- color: #999999;
- }
- .listbox.data-v-64343b3a {
- white-space: pre-wrap;
- letter-spacing: 1px;
- margin-bottom: 16rpx;
- }
- .list-name.data-v-64343b3a {
- flex-shrink: 0;
- font-family: PingFang SC, PingFang SC;
- font-weight: 600;
- font-size: 28rpx;
- color: #222222;
- margin-right: 16rpx;
- }
- .my.data-v-64343b3a {
- color: #FF5C03;
- }
- .list-con.data-v-64343b3a {
- font-family: PingFang SC, PingFang SC;
- font-size: 28rpx;
- color: #222222;
- }
- .nav-bar.data-v-64343b3a {
- position: fixed;
- z-index: 9999;
- top: 0;
- left: 0;
- width: 100%;
- overflow: hidden;
- }
- .nav-bar .nav-bg.data-v-64343b3a {
- width: 100%;
- height: 100%;
- position: absolute;
- left: 0;
- top: 0;
- z-index: 1;
- background-color: #fff;
- }
- .nav-bar-box.data-v-64343b3a {
- position: relative;
- padding: 0 24rpx;
- display: flex;
- flex-direction: row;
- align-items: center;
- justify-content: flex-start;
- height: 88rpx;
- box-sizing: border-box;
- z-index: 3;
- }
- .nav-bar-left.data-v-64343b3a {
- width: 100%;
- display: flex;
- flex-direction: row;
- align-items: center;
- justify-content: flex-start;
- overflow: hidden;
- }
- .nav-bar-left image.data-v-64343b3a {
- flex-shrink: 0;
- width: 64rpx;
- height: 64rpx;
- border-radius: 12rpx 12rpx 12rpx 12rpx;
- }
- .nav-bar-name.data-v-64343b3a {
- font-family: PingFang SC, PingFang SC;
- font-weight: 600;
- font-size: 28rpx;
- color: #222222;
- }
- .nav-bar-head.data-v-64343b3a {
- flex: 1;
- overflow: hidden;
- margin-left: 22rpx;
- margin-right: 22rpx;
- font-family: PingFang SC, PingFang SC;
- font-weight: 400;
- font-size: 23rpx;
- color: #999999;
- }
- .page-bg.data-v-64343b3a {
- position: absolute;
- top: 0;
- left: 0;
- }
- .container-body.data-v-64343b3a {
- padding: 32rpx 30rpx;
- box-sizing: border-box;
- }
- .TUI-message-list.data-v-64343b3a {
- width: 100%;
- box-sizing: border-box;
- }
- .chatinput.data-v-64343b3a {
- position: fixed;
- left: 32rpx;
- right: 32rpx;
- z-index: 999;
- bottom: calc(0px + 24rpx);
- height: 96rpx;
- background-color: green;
- background: #FFFFFF;
- box-shadow: 0rpx 8rpx 21rpx 0rpx rgba(0, 0, 0, 0.1);
- border-radius: 24rpx 24rpx 24rpx 24rpx;
- display: flex;
- flex-direction: row;
- align-items: center;
- justify-content: center;
- padding: 0 24rpx;
- box-sizing: border-box;
- }
- .chatinput .uni-input.data-v-64343b3a {
- flex: 1;
- margin-right: 32rpx;
- font-size: 30rpx;
- }
- .chatinput .send.data-v-64343b3a {
- font-family: PingFang SC, PingFang SC;
- font-weight: 400;
- font-size: 28rpx;
- color: #FFFFFF !important;
- flex-shrink: 0;
- padding: 0 20rpx;
- height: 72rpx;
- background: #FF5C03 !important;
- border-radius: 8rpx 8rpx 8rpx 8rpx;
- }
- .chatinput .send.data-v-64343b3a::after {
- border: none;
- }
|