123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599 |
- page {
- height: 100%;
- }
- .chatInterface {
- height: 100%;
- background-color: #F1F1F1;
- }
- .chatInterface .scroll-view {
- padding-left: 20rpx;
- padding-right: 20rpx;
- -webkit-overflow-scrolling: touch;
- padding-bottom: 150rpx;
- background-color: #F1F1F1;
- }
- .chatInterface .scroll-view .history-loaded {
- font-size: 34rpx;
- height: 60rpx;
- line-height: 60rpx;
- width: 100%;
- text-align: center;
- color: #cccccc;
- }
- .chatInterface .scroll-view .load {
- font-size: 34rpx;
- height: 60rpx;
- line-height: 60rpx;
- width: 100%;
- text-align: center;
- color: #d02129;
- }
- .chatInterface .scroll-view .message-item {
- display: flex;
- margin: 20rpx 0;
- }
- .chatInterface .scroll-view .message-item .message-item-checkbox {
- height: 80rpx;
- display: flex;
- align-items: center;
- }
- .chatInterface .scroll-view .message-item .message-item-content {
- flex: 1;
- overflow: hidden;
- display: flex;
- }
- .chatInterface .scroll-view .message-item .message-item-content.self {
- overflow: hidden;
- display: flex;
- justify-content: flex-start;
- flex-direction: row-reverse;
- }
- .chatInterface .scroll-view .message-item .avatar {
- width: 80rpx;
- height: 80rpx;
- flex-shrink: 0;
- flex-grow: 0;
- }
- .chatInterface .scroll-view .message-item .avatar image {
- width: 100%;
- height: 100%;
- }
- .chatInterface .scroll-view .content {
- font-size: 34rpx;
- line-height: 44rpx;
- margin: 0 20rpx;
- max-width: 520rpx;
- }
- .chatInterface .scroll-view .content .message-payload {
- display: flex;
- align-items: center;
- }
- .chatInterface .scroll-view .content .image-content {
- border-radius: 12rpx;
- max-height: 200px;
- }
- .chatInterface .scroll-view .content .text-content {
- padding: 16rpx;
- border-radius: 12rpx;
- color: #000000;
- background: #FFFFFF;
- word-break: break-all;
- text-align: left;
- vertical-align: center;
- display: block;
- }
- .chatInterface .scroll-view .content .text-content img {
- width: 50rpx;
- height: 50rpx;
- }
- .chatInterface .scroll-view .content .file-content {
- width: 560rpx;
- height: 152rpx;
- font-size: 34rpx;
- background: white;
- display: flex;
- align-items: center;
- border-radius: 10rpx;
- padding: 0 20rpx;
- }
- .chatInterface .scroll-view .content .file-content .file-info {
- width: 386rpx;
- height: 132rpx;
- }
- .chatInterface .scroll-view .content .file-content .file-info .file-name {
- width: 400rpx;
- margin-top: 15rpx;
- font-size: 34rpx;
- text-overflow: ellipsis;
- overflow: hidden;
- display: -webkit-box;
- word-break: break-all;
- -webkit-line-clamp: 2;
- -webkit-box-orient: vertical;
- }
- .chatInterface .scroll-view .content .file-content .file-info .file-size {
- width: 200rpx;
- font-size: 34rpx;
- color: #ccc;
- }
- .chatInterface .scroll-view .content .file-content .file-img {
- width: 100rpx;
- height: 100rpx;
- }
- .chatInterface .scroll-view .content .pending {
- background: url(".~@/static/images/pending.gif") no-repeat center;
- background-size: 30rpx;
- width: 30rpx;
- height: 30rpx;
- margin-right: 10rpx;
- }
- .chatInterface .scroll-view .content .send-fail {
- background: url(".~@/static/images/failed.png") no-repeat center;
- background-size: 30rpx;
- width: 30rpx;
- height: 30rpx;
- margin-right: 10rpx;
- }
- .action-box {
- display: flex;
- backdrop-filter: blur(0.27rpx);
- width: 100%;
- position: fixed;
- bottom: 0;
- left: 0;
- flex-direction: column;
- background-color: #F1F1F1;
- }
- .action-top {
- display: flex;
- align-items: center;
- box-sizing: border-box;
- background: #F6F6F6;
- backdrop-filter: blur(27.1828px);
- border-top: 1px solid #ECECEC;
- padding: 0 20rpx;
- margin-bottom: 20rpx;
- }
- .consult-input {
- flex: 1;
- height: 80rpx;
- padding-left: 20rpx;
- margin: 20rpx;
- margin-left: 0;
- border: none;
- outline: none;
- border-radius: 6px;
- background: #FFFFFF;
- font-size: 34rpx;
- }
- .more {
- width: 62rpx;
- height: 62rpx;
- margin-right: 10rpx;
- display: flex;
- }
- .send-btn-box {
- display: flex;
- align-items: center;
- justify-content: center;
- width: 110rpx;
- height: 60rpx;
- border-radius: 10rpx;
- background: #D02129;
- }
- .send-btn-box .btn {
- color: #FFFFFF;
- font-size: 34rpx;
- }
- .action-bottom {
- height: 300rpx;
- width: 100%;
- padding: 20rpx;
- display: flex;
- }
- .action-bottom-emoji {
- justify-content: space-around;
- }
- .action-bottom image {
- width: 100rpx;
- height: 100rpx;
- }
- .action-box .action-bottom .more-icon {
- display: flex;
- align-items: center;
- flex-direction: column;
- padding: 0 30rpx;
- }
- .action-box .action-bottom .operation-icon {
- width: 60rpx;
- height: 60rpx;
- padding: 30rpx;
- border-radius: 30rpx;
- background: #FFFFFF;
- }
- .action-box .action-bottom .operation-title {
- margin-top: 10rpx;
- font-size: 26rpx;
- line-height: 50rpx;
- color: #82868E;
- }
- .action-box .action-top .record-input {
- flex: 1;
- width: 480rpx;
- height: 80rpx;
- line-height: 80rpx;
- padding-left: 20rpx;
- margin: 20rpx;
- margin-left: 0;
- border: none;
- outline: none;
- border-radius: 6px;
- background: #cccccc;
- color: #FFFFFF;
- font-size: 34rpx;
- text-align: center;
- }
- .chatInterface .messageSelector-box {
- display: flex;
- justify-content: center;
- align-items: center;
- backdrop-filter: blur(0.27rpx);
- width: 100%;
- position: fixed;
- bottom: 0;
- left: 0;
- border-radius: 12rpx;
- background: #F6F6F6;
- height: 150rpx;
- padding: 20rpx 0;
- font-size: 34rpx;
- }
- .chatInterface .messageSelector-box .messageSelector-btn {
- width: 60rpx;
- height: 60rpx;
- }
- uni-checkbox:not([disabled]) .uni-checkbox-input:hover {
- border-color: #d1d1d1 !important;
- }
- uni-checkbox .uni-checkbox-input {
- border-radius: 50% !important;
- }
- /* #ifdef MP-WEIXIN */
- checkbox .wx-checkbox-input {
- border-radius: 50% !important;
- }
- checkbox .wx-checkbox-input.wx-checkbox-input-checked {
- color: #007aff !important;
- }
- /* #endif */
- .chatInterface .action-popup {
- position: fixed;
- top: 0;
- left: 0;
- right: 0;
- bottom: 0;
- display: flex;
- justify-content: center;
- align-items: center;
- }
- .chatInterface .action-popup .layer {
- position: fixed;
- top: 0;
- left: 0;
- right: 0;
- bottom: 0;
- background: rgba(51, 51, 51, 0.5);
- z-index: 999;
- }
- .chatInterface .action-popup .action-list {
- width: 350rpx;
- background: #434343;
- position: relative;
- z-index: 1000;
- border-radius: 20rpx;
- overflow: hidden;
- }
- .chatInterface .action-popup .action-item {
- text-align: center;
- height: 100rpx;
- line-height: 100rpx;
- font-size: 34rpx;
- color: #ffffff;
- border-bottom: 1px solid #EFEFEF;
- }
- .chatInterface .action-popup .action-item:last-child {
- border: none;
- }
- .chatInterface .record-loading {
- position: fixed;
- top: 50%;
- left: 50%;
- width: 300rpx;
- height: 300rpx;
- margin: -150rpx -150rpx;
- background: #262628;
- background: url(".~@/static/images/recording-loading.gif") no-repeat center;
- background-size: 100%;
- border-radius: 40rpx;
- }
- .chatInterface .img-layer {
- position: absolute;
- top: 0;
- left: 0;
- right: 0;
- bottom: 0;
- background: #000000;
- z-index: 9999;
- padding: 6rpx;
- display: flex;
- justify-content: center;
- align-items: center;
- }
- .chatInterface .img-layer uni-image {
- height: 100% !important;
- }
- .chatInterface .img-layer {
- height: 100% !important;
- width: 100% !important;
- }
- .order-list {
- position: fixed;
- top: 0;
- bottom: 0;
- z-index: 10;
- width: 100vw;
- height: 100vh;
- background: rgba(0, 0, 0, 0.5);
- }
- .orders-content {
- position: absolute;
- width: 100%;
- bottom: 0;
- background: #F1F1F1;
- z-index: 200;
- }
- .title {
- font-weight: 600;
- font-size: 34rpx;
- color: #000000;
- margin-left: 20rpx;
- margin-right: 20rpx;
- display: flex;
- justify-content: space-between;
- align-items: center;
- }
- .close {
- font-size: 50rpx;
- }
- .order-item {
- padding: 20rpx;
- background: #FFFFFF;
- margin: 20rpx;
- border-radius: 20rpx;
- }
- .order-id {
- font-size: 34rpx;
- color: #666666;
- margin-bottom: 10rpx;
- }
- .order-body {
- display: flex;
- font-size: 34rpx;
- }
- .order-img {
- width: 120rpx;
- height: 120rpx;
- border-radius: 10rpx;
- }
- .order-name {
- margin-left: 20rpx;
- width: 270rpx;
- }
- .order-right {
- flex: 1;
- display: flex;
- flex-direction: column;
- align-items: center;
- }
- .order-price {
- font-weight: bold;
- }
- .order-count {
- font-size: 34rpx;
- color: #666666;
- }
- .chatInterface .video-snapshot {
- position: relative;
- }
- .chatInterface .video-snapshot video {
- max-height: 300rpx;
- max-width: 400rpx;
- }
- .chatInterface .video-snapshot .video-play-icon {
- position: absolute;
- width: 40rpx;
- height: 40rpx;
- border-radius: 20rpx;
- background: url(".~@/static/images/play.png") no-repeat center;
- background-size: 100%;
- top: 50%;
- left: 50%;
- margin: -20rpx;
- }
- .chatInterface .group-icon {
- right: 20rpx;
- width: 60rpx;
- height: 60rpx;
- top: 14rpx;
- position: fixed;
- right: 20rpx;
- top: 120rpx;
- background-color: #C4C4C4;
- z-index: 2;
- border-radius: 60rpx;
- }
- .uni-toast {
- background-color: #ffffff !important;
- }
- .time-lag {
- font-size: 34rpx;
- text-align: center;
- }
- .chatInterface .audio-content {
- height: 86rpx;
- -webkit-tap-highlight-color:rgba(0,0,0,0);
- }
- .chatInterface .audio-facade{
- min-width: 20rpx;
- padding: 6rpx 10rpx;
- line-height: 72rpx;
- background: #FFFFFF;
- font-size: 34rpx;
- border-radius: 14rpx;
- color: #000000;
- display: flex;
- }
- .chatInterface .audio-facade-bg{
- background: url("/static/images/voice.png") no-repeat center;
- background-size: 30rpx;
- width: 40rpx;
- }
- .chatInterface .audio-facade-bg.play-icon{
- background: url("/static/images/play.gif") no-repeat center;
- background-size: 30rpx;
- }
- .chatInterface .order-content {
- border-radius: 20rpx;
- background: #FFFFFF;
- padding: 16rpx;
- display: flex;
- flex-direction: column;
- }
- .scroll-view .content .order-id {
- color: #333333;
- }
- .scroll-view .content .order-body {
- padding: 10rpx;
- }
- .scroll-view .content .order-name {
- font-weight: normal;
- }
- .scroll-view .content .order-info {
- display: flex;
- justify-content: space-between;
- padding: 10rpx;
- }
- .scroll-view .content .order-info .order-price {
- font-weight: normal;
- }
- .message-read {
- color: grey;
- font-size: 32rpx;
- text-align: end;
- }
- .message-unread {
- color: #d02129;
- font-size: 32rpx;
- text-align: end;
- }
- .message-recalled {
- display: flex;
- align-items: center;
- justify-content: center;
- line-height: 56rpx;
- font-size: 34rpx;
- text-align: center;
- color: grey;
- }
- .message-recalled .message-recalled-self {
- display: flex;
- }
- .message-recalled .message-recalled-self span {
- margin-left: 10rpx;
- color: #d02129;
- }
|