chat.wxss 2.4 KB
/* pages/main/smartchat/chat.wxss */

/* 遮罩层 */

.mask {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: #000;
  opacity: 0.7;
}

.modal_lg {
  width: 72%;
  position: fixed;
  top: 120px;
  left: 0;
  right: 0;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 7px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.text_title {
  font-family: PingFangSC-Regular;
  font-size: 15px;
  color: #000;
  letter-spacing: 0;
  text-align: center;
  line-height: 45rpx;
  margin: 42rpx 42rpx 30rpx 42rpx;
}

.icon_choosed {
  width: 24rpx;
  height: 26rpx;
  margin-top: 30rpx;
  margin-right: 20rpx;
  float: right;
}

.text_item_blue {
  font-family: PingFangSC-Regular;
  font-size: 16px;
  color: #108ee9;
  letter-spacing: 0;
  line-height: 18px;
  padding: 30rpx;
}

.text_item_black {
  font-family: PingFangSC-Regular;
  font-size: 16px;
  color: #333;
  letter-spacing: 0;
  line-height: 18px;
  padding: 30rpx;
}

.text_cancel {
  font-family: PingFangSC-Regular;
  font-size: 36rpx;
  color: #999;
  letter-spacing: 0;
  text-align: center;
  line-height: 100rpx;
  flex: 1;
}

.text_confirm {
  font-family: PingFangSC-Regular;
  font-size: 36rpx;
  color: #108ee9;
  letter-spacing: 0;
  text-align: center;
  line-height: 100rpx;
  flex: 1;
}

/* 聊天页面 */

.bottom_wrap {
  width: 100%;
  height: 120rpx;
  position: fixed;
  display: flex;
  flex-direction: row;
  bottom: 0rpx;
  background: #fcfcfc;
}

.btn_send_wrap {
  background: #6db1ff;
  border-radius: 4px;
  height: auto;
  width: 86px;
  float: right;
  margin-top: 20rpx;
  margin-bottom: 20rpx;
  margin-right: 30rpx;
    color: #fff;
  font-size: 32rpx;
  text-align: center;
  line-height: 80rpx;
}

.input_wrap {
  background: #fff;
  width: 486rpx;
  height: 40px;
  float: left;
  margin: 24rpx 30rpx;
  padding: 0 20rpx;
  border: 1px solid #e7e7e7;
  border-radius: 4px;
}

.receive_bg {
  border: 1px solid #e7e7e7;
  border-radius: 8px;
  padding: 24rpx 28rpx;
  margin-left: 28rpx;
}

.text_receive_wrap {
  font-family: PingFangSC-Regular;
  font-size: 14px;
  color: #4a4a4a;
  letter-spacing: 0;
}

.send_bg {
  background: #6db1ff;
  border-radius: 8px;
  padding: 24rpx 28rpx;
  margin-right: 28rpx;
}

.text_send_wrap {
  font-family: PingFangSC-Regular;
  font-size: 14px;
  color: #4a4a4a;
  letter-spacing: 0;
}

.input_placeholder_wrap {
  font-family: PingFangSC-Regular;
  font-size: 15px;
  color: #999;
  letter-spacing: 0;
}