// @import '../font/font.scss';

.message-send-panel {
  border-top: 1rpx solid #eee;
  background-color: #fff;

  .input-text-panel {
    min-height: 80rpx;
    display: flex;
    align-items: center;
    padding: 20rpx 20rpx 0;
  }

  .send-btn {
    font-size: 28rpx;
    text-align: center;
    height: 70rpx;
    line-height: 70rpx;
    color: #fff;
    width: 110rpx;
    font-weight: 500;
    background-color: #1890FF;
    border-radius: 35rpx;
    border: 1rpx solid #1890FF;
    box-sizing: border-box;
  }

  .send-btn.grey {
    background-color: #fff;
    border-color: #ccc;
    color: #999;
  }

  .message-send-textarea {
    flex: 1;
    border-radius: 40rpx;
    margin-right: 20rpx;
    border: none;
    font-size: 28rpx;
    color: #333;
    background-color: #F7F7FA;
    padding: 10px 15px;
    max-height: 48px;
    text-align: left;

    &.ios {
      padding: 4px 10px;
    }
  }

  .input-text-placeholder {
    font-size: 28rpx;
    color: #C8C8C8;
  }
}
