.inlineIcon {
  display: inline-block;
  width: 22px;
  height: 22px;
}



#ECER_CHAT_WRAP {
  position: fixed;
  bottom: 10px;
  right: 10px;
  z-index: 99999999;
  /* width: 450px; */
  /* height: 540px; */
  width: calc(60vh * 45 / 54);
  height: 60vh;
  max-width: 450px;
  max-height: 540px;
  min-width: 380px;
  min-height: 400px;
  padding: 0;
  margin: 0;
  background-color: #fff;
  box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.32);
  border-radius: 8px;
  transition: all .3s;
  transform: translateY(1000px);
  font-family: 'PingFang SC', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, 'Hiragino Sans GB', 'Microsoft YaHei', 'Helvetica Neue', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
}

.wrapMask {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0);
  z-index: 9999999;
}

.headerWrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 44px;
  background: #018069;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  padding: 0 8px 0 15px;
  box-shadow: 0 2px 8px rgba(0, 18, 34, .12);
  position: relative;
  z-index: 10;
}

.headUserInfo {
  flex: 1;
  display: flex;
  align-items: center;
  overflow-x: hidden;
  font-family: 'PingFang SC', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, 'Hiragino Sans GB', 'Microsoft YaHei', 'Helvetica Neue', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
}

.headerAvatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  margin-right: 5px;
}

.headUserInfo .userInfo {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: #fff;
  overflow-x: hidden;
}

.headUserInfo .userInfo .nameRow {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
}

.headUserInfo .userInfo .companyRow {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  height: 20px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 12px;
  color: rgba(255, 255, 255, .8);
  display: none;
}


.headUserInfo .userInfo .userName {
  max-width: 90%;
  margin-right: 10px;
  line-height: 42px;
  color: white;
  font-size: 18px;
  font-weight: 700;
  text-overflow: ellipsis;
  overflow: hidden;
  word-break: keep-all;
  white-space: nowrap;
}

.headUserInfo .userInfo .isTyping {
  font-size: 14px;
  transform: translateY(4px);
  display: none;
}

.headUserInfo .userInfo .isTyping:after {
  content: "is Typing ...";
  animation: typing 1s linear infinite;
}

@keyframes typing {
  0% {
    content: "is Typing .";
  }

  50% {
    content: "is Typing ..";
  }

  100% {
    content: "is Typing ...";
  }
}

.headerActions {
  display: flex;
  align-items: center;
}

#ECER_BACK_CHAT {
  display: flex;
  align-items: center;
  justify-content: center;
  float: left;
  width: 36px;
  height: 36px;
  line-height: 36px;
  font-size: 20px;
  text-align: center;
  margin: 4px;
  color: #fff;
  display: none;
}

#ECER_HEADER_USERINFO {
  display: none;
  margin: 4px;
}

#ECER_HEADER_USERINFO svg {
  padding: 8px;
}

#ECER_USERINFO_MASK {
  position: fixed;
  width: 100%;
  top: 43px;
  left: 0;
  right: 0;
  bottom: 0;
  box-sizing: border-box;
  padding: 40px;
  color: #111;
  background: #fff;
  overflow: auto;
  transition: all .7s;
  transform: translateY(150%);
  z-index: 1;
}

#ECER_USERINFO_MASK>div {
  display: flex;
  justify-content: center;
}

#ECER_USERINFO_MASK>p {
  font-size: 24px;
  font-weight: 700;
  text-align: center;
}

#ECER_USERINFO_MASK>i {
  border-top: 1px solid #ddd;
  margin: 20px 0;
  display: block;
}

#ECER_USERINFO_MASK>ul {
  list-style: none;
  padding: 0;
}

#ECER_USERINFO_MASK>ul>li {
  display: flex;
  font-size: 14px;
  font-weight: 400;
  line-height: 32px;
}

#ECER_USERINFO_MASK>ul>li>span:first-child {
  color: #777;
  width: 80px;
}

#ECER_USERINFO_MASK>ul>li>span:last-child {
  flex: 1;
  word-break: break-word;
}

#ECER_ECER_USERINFO_HIDDEN {
  position: absolute;
  bottom: 6px;
  left: 0;
  right: 0;
  text-align: center;
  padding: 40px 0;
  animation: heart 1.3s ease-in-out 2.7s infinite alternate;
}

@keyframes heart {
  from {
    transform: translate(0, 0)
  }

  to {
    transform: translate(0, 6px)
  }
}


#ECER_MIN_CHAT,
#ECER_X_CHAT {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

#ECER_MIN_CHAT img,
#ECER_X_CHAT img {
  position: relative;
  width: 22px;
  height: 22px;
  font-size: 20px;
  float: left;
  color: #fff;
  line-height: 36px;
  text-align: center;
  margin: 4px 0;
  cursor: pointer;
}

#ECER_CHAT_IFRAME_CONTAINER {
  position: absolute;
  left: 0px;
  bottom: 0;
  top: 44px;
  right: 0;
  z-index: 20;
  background-color: #fff;
  border-radius: 0 0 8px 8px;
  overflow: hidden;
}

#ECER_CHAT_IFRAME {
  display: none;
  border: none;
  width: 100%;
  height: 100%;
}

#ECER_LOADING {
  font-size: 32px;
  color: #69c1b7;
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

#ECER_LOADING svg {
  -webkit-animation: loadingCircle 1s infinite linear;
  animation: loadingCircle 1s infinite linear;
}

@-webkit-keyframes loadingCircle {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

#ECER_AV_WRAP {
  display: none;
  position: fixed;
  width: 0;
  height: 0;
  top: 0;
  overflow: visible;
  z-index: 99999999;
}

#ECER_ZHEZHAO {
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 9999;
  position: absolute;
  top: 0;
  left: 0;
  display: none;
}

#ECER_CONTAINER {
  width: 840px;
  height: 740px;

  position: fixed;
  left: 50%;
  top: 50%;
  background: #000;
  box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.4);
  border-radius: 8px;

}

#ECER_AV_IFRAME_WRAP {
  display: flex;
  flex-direction: column;
  position: relative;
  width: 100%;
  height: 100%;
  background-color: #000;
  color: #fff;
  border-radius: 8px;
}

#ECER_CONTAINER_WRAP {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}

#ECER_AV_IFRAME_WRAP>video[data-active='1'] {
  position: absolute;
  width: 100%;
  height: 100%;
  transform: rotateY(180deg);
  z-index: 1;
  background: #000;
}

#ECER_AV_IFRAME_WRAP>video[data-active='0'] {
  position: absolute;
  width: 150px;
  height: 90px;
  top: 58px;
  right: 4%;
  background-color: #333;
  z-index: 2;
}

#ECER_DRAG_NW {
  z-index: 3;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  position: absolute;
  right: 0px;
  bottom: 0px;
  width: 15px;
  height: 15px;
  cursor: nw-resize;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

#ECER_DRAG_RIGHT {
  width: 15px;
  float: right;
  position: absolute;
  right: 0;
  top: 28px;
  bottom: 15px;
  cursor: e-resize;
  overflow: hidden;
  opacity: 0;
  z-index: 1;
}

#ECER_DRAG_BOTTOM {
  height: 15px;
  position: absolute;
  left: 0;
  bottom: 0;
  right: 15px;
  cursor: n-resize;
  overflow: hidden;
  opacity: 0;
  z-index: 1;
}

#ECER_DRAG_TOP {
  display: flex;
  position: absolute;
  width: 100%;
  height: 25px;
  line-height: 25px;
  font-size: 14px;
  color: #FFFFFF;
  text-indent: 15px;
  overflow: hidden;
  z-index: 2;
}

#ECER_DRAG_TOP_AREA {
  flex: 1;
  cursor: move;
  word-break: keep-all;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 12px;
  line-height: 25px;
  white-space: nowrap
}

#ECER_DRAG_TOP_AREA span {
  padding-right: 15px;
}

#ECER_M,
#ECER_F,
#ECER_C {
  width: 28px;
  height: 28px;
  font-size: 18px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
}

#ECER_M svg:hover,
#ECER_F svg:hover,
#ECER_C svg:hover {
  background-color: rgba(214, 214, 214, 0.4);
}

#ECER_M .on,
#ECER_F .on,
#ECER_C .on {
  display: block;
}

#ECER_M .off,
#ECER_F .off,
#ECER_C .off {
  display: none;
}

#ECER_MIN_BAR {
  position: fixed;
  bottom: 0;
  right: 30px;
  z-index: 19891013;
  width: 280px;
  height: 44px;
  padding: 0 15px;
  transform: translateY(1000px);
  transition: 0.6s;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  text-align: center;
  cursor: pointer;
  text-decoration: none;
  background: #018069;
  border-radius: 8px 8px 0px 0px;
  display: flex;
  align-items: center;
}

#ECER_MIN_BAR .im-up {
  margin-right: 10px;
  display: flex;
  align-items: center;
}

#ECER_MIN_BAR #ECER_MIN_BAR_TEXT {
  text-align: left;
}

#ECER_MIN_BAR_ICON {
  display: block;
  float: left;
  width: 40px;
  height: 40px;
  border: 0;
  background-position: 5px center;
  background-size: 35px;
  background-repeat: no-repeat;
}

#ECER_MIN_BAR_LINE {
  display: block;
  float: left;
  width: 1px;
  height: 100%;
  background-color: rgba(0, 0, 0, .08);
  padding: 0;
  margin: 0;
  border: 0;
}

#ECER_MIN_BAR_TEXT {
  flex: 1;
  float: left;
  height: 44px;
  line-height: 44px;
  overflow-y: hidden;
  font-size: 14px;
  /* padding-left: 15px; */
  color: #fff;
}

#ECER_AV_RECE_HEADER {
  color: #fff;
  flex: 1;
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: distribute;
  justify-content: center;
  flex-direction: column;
  border-radius: 8px;
}

#ECER_AV_RECE_HEADER h1 {
  font-size: 24px;
  line-height: 28px;
  margin: 10px auto;
  color: #fff;
}

#ECER_AV_RECE_TOOL {
  position: relative;
  color: #fff;
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  margin-bottom: 40px;
}

#ECER_DATE {
  color: #fff;
  font-size: 12px;
  position: absolute;
  top: -35px;
  display: block;
  text-align: center;
  width: 100%;
}

#ECER_AV_REJECT,
#ECER_AV_OK {
  width: 64px;
  height: 64px;
}

#ECER_AV_REJECT svg,
#ECER_AV_OK svg {
  width: 60px !important;
  height: 60px !important;
}

#ECER_ZYY-WRAP {
  position: relative;
}

#ECER_AV_TOAUDIO {
  position: relative;
  top: -100px;
  right: -57px;
}

/*////// icons CSS start ////////////////////////*/
#ECER_ICONS {
  width: 250px;
  display: none;
  justify-content: space-between;
  bottom: 40px;
  left: 50%;
  position: absolute;
  z-index: 99;
  margin-left: -125px;
}

/* on icons are hidden by default */
#ECER_ICONS path.on {
  display: none;
}


/* off icons are displayed by default */
#ECER_ICONS path.off {
  display: block;
}

/* on icons are displayed when parent svg has class 'on' */
#ECER_ICONS svg.on path.on {
  display: block;
}

/* off icons are hidden when parent svg has class 'on' */
#ECER_ICONS svg.on path.off {
  display: none;
}

#ECER_ICONS>div {
  transform: translateY(120px);
  transition-timing-function: ease-in-out;
}

#ECER_ICONS>#ECER_DATE {
  transform: translateY(180px);
  transition-timing-function: ease-in-out;
}

#ECER_ICONS.active div {
  transform: translateY(0);
}

#ECER_ICONS.active #ECER_DATE {
  transform: translateY(0);
}

#ECER_DATE {
  transition: 360ms;
}

#ECER_BTN_MUTE {
  transition: 40ms;
}

#ECER_BTN_CAMERA {
  transition: 280ms;
}

#ECER_BTN_HANGUP {
  transition: 120ms;
}

#ECER_BTN_HANGUP svg {
  width: 60px;
  height: 60px;
}

#ECER_BTN_HANGUP svg circle {
  fill: #ef4f4f;
  fill-opacity: 1;
}

/*////// icons CSS end /////////////////////////*/

#ECER_DIALOG {
  display: none;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

#ECER_DIALOG_WRAP {
  background-color: white;
  font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  padding: 17px;
  border-radius: 5px;
  overflow: hidden;
  display: none;
  z-index: 99999;
  width: 80%;
  height: 60%;
  max-height: 250px;
}

.ECER_DIALOG_MSG_SHOW {
  -webkit-animation: ECER_DIALOG_MSG_SHOW 0.3s;
  animation: ECER_DIALOG_MSG_SHOW 0.3s;
}

.ECER_DIALOG_MSG_HIDDEN {
  -webkit-animation: ECER_DIALOG_MSG_HIDDEN 0.2s;
  animation: ECER_DIALOG_MSG_HIDDEN 0.2s;
}

/*
 * Animations
 */
@-webkit-keyframes ECER_DIALOG_MSG_SHOW {
  0% {
    transform: scale(0.7);
    -webkit-transform: scale(0.7);
  }

  45% {
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
  }

  80% {
    transform: scale(0.95);
    -webkit-transform: scale(0.95);
  }

  100% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
}

@keyframes ECER_DIALOG_MSG_SHOW {
  0% {
    transform: scale(0.7);
    -webkit-transform: scale(0.7);
  }

  45% {
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
  }

  80% {
    transform: scale(0.95);
    -webkit-transform: scale(0.95);
  }

  100% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
}

@-webkit-keyframes ECER_DIALOG_MSG_HIDDEN {
  0% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }

  45% {
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
  }

  80% {
    transform: scale(0.5);
    -webkit-transform: scale(0.5);
  }

  100% {
    transform: scale(0.01);
    -webkit-transform: scale(0.01);
  }
}

@keyframes ECER_DIALOG_MSG_HIDDEN {
  0% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }

  45% {
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
  }

  80% {
    transform: scale(0.5);
    -webkit-transform: scale(0.5);
  }

  100% {
    transform: scale(0.01);
    -webkit-transform: scale(0.01);
  }
}

#ECER_SOUND_IFRAME {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.ECER-HIDDEN-VIDEO video {
  display: none;
}

#ECER_PHONE_M {
  display: none;
  position: absolute;
  top: 32px;
  left: 20px;
  z-index: 9;
}

#ECER_ICONS .svgIcon[data-show="off"] {
  display: none;
}

#ECER_INFO {
  display: none;
}

.ECER_AV_RECE_NAME {
  font-size: 24px;
  font-weight: bold;
  margin: 28px 0 10px;
  color: #fff;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
  text-align: center;
  white-space: nowrap;
  box-sizing: border-box;
  padding: 0 20px;
}

.ECER_AV_RECE_H3 {
  font-size: 20px;
  font-weight: bold;
  color: rgb(255, 255, 255);
  text-align: center;
  margin-top: 52px;
  padding: 0 40px;
  line-height: 1.5em;
}

.ECER_AV_RECE_P {
  font-size: 12px;
  color: rgb(255, 255, 255);
  opacity: 0.6;
  text-align: center;
  box-sizing: border-box;
  padding: 0 40px;
  line-height: 18px;
}

.ECER_BLACK_DRAG_TOP {
  background: #000;
  border-radius: 8px;
  height: 40px !important;
}

.ECER_AVATAR {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  text-align: center;
  line-height: 80px;
  font-size: 38px;
  color: #3CA860;
  background-color: #fff;
  overflow: hidden;
}

.ECER_AVATAR img {
  object-fit: cover;
  min-width: 80px;
  min-height: 80px;
  width: 100%;
  height: 100%;
}

#ECER_HEADER_ICONCHAT {
  float: left;
  line-height: 36px;
  width: 36px;
  font-size: 22px;
  height: 36px;
  margin: 4px;
  color: #fff;
  text-align: center;
}

.ECER_MIN_BAR_ICONCHAT {
  float: left;
  width: 48px;
  height: 48px;
  line-height: 48px;
  font-size: 22px;
  margin: 4px;
  outline: none;
  position: relative;
  display: none;
}

.ECER_MIN_BAR_ICONCHAT .num {
  position: absolute;
  right: -10px;
  top: -10px;
  padding: 0 3px;
  min-width: 17px;
  height: 18px;
  line-height: 19px;
  text-align: center;
  border-radius: 9px;
  background-color: #EF4F4F;
  font-size: 12px;
  font-weight: normal;
  color: #fff;
  font-style: normal;
  display: none;
}

.ECER_MIN_BAR_ICONCHAT svg {
  width: 48px;
  height: 48px;
  line-height: 48px;
  font-size: 22px;
}

.headerAvWrap {
  float: right;
  color: #fff;
  text-align: center;
  width: 78px;
  height: 34px;
  border-radius: 4px;
  background-color: rgba(255, 255, 255, .18);
  box-shadow: 0px 1px 2px rgba(0, 0, 0, .1);
  overflow: hidden;
  display: flex;
  align-items: center;
}

.headerAvWrap>div {
  position: relative;
}

.headerAvWrap>div:after {
  content: '';
  display: inline-block;
  width: 1px;
  height: 20px;
  background-color: rgba(255, 255, 255, .2);
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.headerAvWrap>div:last-child::after {
  display: none;
}

.headerAvWrap .ECERIM_CIRCLE {
  transition: all 0.2s;
}

.headerAvWrap .ECERIM_CIRCLE:hover {
  background-color: rgba(255, 255, 255, 0.3);
}

.h5_headerAvWrap {
  display: none;
}

#ECER_H5_MIN_BAR_SELECT {
  width: 40px;
  text-align: center;
  display: inline-block;
  padding: 4px 0;
  height: 36px;
}

#ECER_H5_MIN_BAR_SELECT svg {
  padding: 4px 0;
}

#ECER_H5_MIN_BAR_SELECT svg[data-on="false"] {
  display: none;
}

.ECER_H5_HEADER_ICON_AV,
.ECER_H5_HEADER_ICON_MSG {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  background-size: 28px 28px;
  background-repeat: no-repeat;
  background-position: center;
  margin: 4px 0;
  font-size: 22px;
  color: #fff;
}

.ECER_H5_HEADER_ICON_MSG {
  margin-right: 10px;
}

.ECER_H5_HEADER_ICON_MSG>svg {
  width: 26px;
  height: 26px;
}

.ECER_H5_HEADER_ICON_MSG .num {
  position: absolute;
  right: -6px;
  top: -2px;
  padding: 0 3px;
  min-width: 17px;
  height: 16px;
  line-height: 17px;
  text-align: center;
  border-radius: 9px;
  background-color: #EF4F4F;
  font-size: 12px;
  color: #fff;
  font-style: normal;
  display: none;
}

.ECER_H5_HEADER_ICON_A {
  background-image: url(/liteSource/image/h5_header_audio.png);
}

.ECER_H5_HEADER_ICON_V {
  background-image: url(/liteSource/image/h5_header_video.png);
}

.ECER_MIN_BAR_AUDIO,
.ECER_MIN_BAR_VIDEO,
.ECER_MIN_BAR_MSG {
  position: relative;
  float: left;
  width: 39px;
  height: 34px;
  font-size: 20px;
  margin: 4px 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ECER_MIN_BAR_MSG {
  margin-right: 15px;
}

.ECER_MIN_BAR_MSG>svg {
  width: 26px;
  height: 26px;
}

.ECER_MIN_BAR_MSG .num {
  position: absolute;
  right: -5px;
  top: -2px;
  padding: 0 3px;
  min-width: 17px;
  height: 16px;
  line-height: 17px;
  text-align: center;
  border-radius: 9px;
  background-color: #EF4F4F;
  font-size: 12px;
  font-weight: normal;
  color: #fff;
  font-style: normal;
  display: none;
}


.ECERIM_CIRCLE {
  transition: all 0.2s;
}

.ECERIM_CIRCLE:hover {
  background-color: rgba(255, 255, 255, 0.3);
}

.ECER_AV_ICON_LOADING {
  font-size: 0;
  color: transparent;
  position: relative;
}

.ECER_AV_ICON_LOADING:before {
  content: "";
  width: 24px;
  height: 24px;
  background: url(./image/loading.png) center center no-repeat;
  -webkit-animation: ECER_AV_ICON_LOADING 1s infinite linear;
  animation: ECER_AV_ICON_LOADING 1s infinite linear;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  transform-origin: 0 0;
}

.ECER_AV_ICON_LOADING i {
  display: none;
}

@-webkit-keyframes ECER_AV_ICON_LOADING {
  from {
    transform: rotate(0deg) translateX(-50%) translateY(-50%);
  }

  to {
    transform: rotate(360deg) translateX(-50%) translateY(-50%);
  }
}

#ECERIM_CONNECTING {
  font-size: 16px;
  margin: 0;
  padding: 0;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

/* 消息提示模块 start --- */
#ECER_CHAT_MSG_WRAP {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  width: 100vw;
  /* height: 140px; */
  padding-bottom: 4px;
  background: url('./image/msgTipBg.jpeg') 0 0 no-repeat;
  background-size: cover;
  box-shadow: 0 -10px 10px rgba(0, 0, 0, 0.2);
  border-radius: 10px 10px 0 0;
  overflow: hidden;
  transition: all 0.3s;
  transform: translateY(0);
}

#ECER_CHAT_MSG_WRAP * {
  box-sizing: border-box;
}

#ECER_CHAT_MSG_WRAP.hide {
  transform: translateY(120%);
}

#ECER_CHAT_MSG_AREA.active .chat-msg-sildebar .icon {
  background-color: #018069;
}

#ECER_CHAT_MSG_AREA.active .chat-msg-sildebar::before {
  background-color: #018069;
}

.chat-typing-wrap {
  position: absolute;
  left: 50%;
  bottom: 60px;
  z-index: 10;
  transform: translateX(-50%);
  display: none;
}

.chat-typing-wrap .is-typing {
  width: 120px;
  height: 24px;
  line-height: 24px;
  text-indent: 12px;
  color: #fff;
  font-size: 14px;
  transform: translateY(4px);
  border-radius: 10px;
  background-color: rgba(0, 0, 0, .6);
}

.chat-typing-wrap .is-typing:after {
  content: " is Typing ...";
  animation: typing 1s linear infinite;
}

@keyframes typing {
  0% {
    content: " is Typing .";
  }

  50% {
    content: " is Typing ..";
  }

  100% {
    content: " is Typing ...";
  }
}

.chat-msg-sildebar {
  height: 16px;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.chat-msg-sildebar:before {
  content: " ";
  display: inline-block;
  width: 26px;
  height: 2px;
  border-radius: 4px;
  background-color: #a6a6a6;
  transition: all .3s;
  margin-bottom: 2px;
}

.chat-msg-sildebar .icon {
  display: inline-block;
  width: 26px;
  height: 2px;
  border-radius: 4px;
  background-color: #a6a6a6;
  transition: all .3s;
}

.chat-msg-content {
  display: flex;
  align-items: flex-start;
  padding: 10px 10px 8px 10px;
}

.chat-msg-content .chat-msg-avator {
  width: 28px;
  height: 28px;
  margin-right: 10px;
  border-radius: 50%;
  overflow: hidden;
}

.chat-msg-content .chat-msg-avator img {
  width: 28px;
  height: 28px;
  object-fit: cover;
}

.chat-msg-content .chat-msg {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1;
  overflow: hidden;
}

.chat-msg-content .chat-msg .chat-msg-t {
  display: flex;
  align-items: center;
  font-size: 12px;
  height: 16px;
  line-height: 16px;
  margin-bottom: 3px;
}

.chat-msg-content .chat-msg .chat-msg-t.skeleton {
  width: 80px;
  border-radius: 4px;
}

.chat-msg-content .chat-msg .chat-msg-t .name {
  display: inline-block;
  color: #1D2129;
  margin-right: 8px;
}

.chat-msg-content .chat-msg .chat-msg-t .time {
  color: #86909C;
  margin-right: 8px;
}

.chat-msg-content .chat-msg .chat-msg-b {
  height: 50px;
  padding: 6px 8px;
  border-radius: 8px;
  border-top-left-radius: 0;
  background-color: #8cdcb2;
  box-shadow: 0 1px 3px rgba(0, 0, 0, .1);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.chat-msg-content .chat-msg .chat-msg-b.skeleton {
  width: 80%;
  box-shadow: none;
}

@keyframes skeletonLoading {
  0% {
    background-size: 300% 100%;
    background-image: linear-gradient(100deg, #ddd 35%, #fff 50%, #ddd 65%);
    background-position: 100% 50%;
  }

  100% {
    background-size: 300% 100%;
    background-image: linear-gradient(100deg, #ddd 35%, #fff 50%, #ddd 65%);
    background-position: 0 50%;
  }
}

.chat-msg-content .chat-msg .chat-msg-b p {
  line-height: 20px;
  font-size: 13px;
  font-weight: 600;
  max-height: 40px;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
}

.chat-msg-content .chat-msg.my-chat-msg {
  align-items: flex-end;
}

.chat-msg-content .chat-msg.my-chat-msg .chat-msg-t {
  flex-direction: row-reverse;
}

.chat-msg-content .chat-msg.my-chat-msg .chat-msg-t .name {
  margin: 0;
}


.chat-msg-content .chat-msg.my-chat-msg .chat-msg-b {
  border-radius: 8px;
  border-top-right-radius: 0;
  background-color: #d9fdd3;
}

.chat-msg-actions {
  height: 40px;
  padding: 0 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.chat-msg-actions .chat-msg-input {
  flex: 1;
  display: flex;
  align-items: center;
  overflow: hidden;
  height: 35px;
  border-radius: 26px;
  background: #fff url('./image/edit.png') 14px center no-repeat;
  background-size: 16px;
  padding: 0 20px;
  margin-right: 5px;
}

.chat-msg-actions .chat-msg-input input {
  margin-left: 20px;
  line-height: 20px;
  border: none;
  outline: none;
  flex: 1;
  overflow: hidden;
}

.chat-msg-actions .send-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background-color: #aaa;
  border-radius: 50%;
  overflow: hidden;
  transition: all .3s;
}

.chat-msg-actions.active .send-btn {
  background-color: #018069;
}

.chat-msg-actions .send-btn .icon {
  display: inline-block;
  width: 16px;
  height: 16px;
  background: url('./image/sendMsg.svg') 0 0 no-repeat;
  background-size: contain;
  margin-left: 4px;
}

.skeleton {
  background-color: #fff;
  position: relative;
}

.skeleton .skeletLoading {
  display: flex;
}

.skeletLoading {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: flex;
  justify-content: center;
  display: none;
}

.skeletLoading>i {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin: 0 2px;
}

.skeletLoading>i:nth-of-type(1) {
  animation: skeletonLoadAni1 1s ease infinite;
}

.skeletLoading>i:nth-of-type(2) {
  animation: skeletonLoadAni2 1s ease infinite;
}

.skeletLoading>i:nth-of-type(3) {
  animation: skeletonLoadAni3 1s ease infinite;
}

.skeletLoading>i:nth-of-type(4) {
  animation: skeletonLoadAni4 1s ease infinite;
}

.skeletLoading>i:nth-of-type(5) {
  animation: skeletonLoadAni5 1s ease infinite;
}

@keyframes skeletonLoadAni1 {
  0% {
    background-color: #B4FFC6;
  }

  25% {
    background-color: #84EED5;
  }

  50% {
    background-color: #5EDFE4;
  }

  75% {
    background-color: #32CEF0;
  }

  100% {
    background-color: #0DC0FF;
  }
}

@keyframes skeletonLoadAni2 {
  0% {
    background-color: #0DC0FF;
  }

  25% {
    background-color: #B4FFC6;
  }

  50% {
    background-color: #84EED5;
  }

  75% {
    background-color: #5EDFE4;
  }

  100% {
    background-color: #32CEF0;
  }
}

@keyframes skeletonLoadAni3 {
  0% {
    background-color: #32CEF0;
  }

  25% {
    background-color: #0DC0FF;
  }

  50% {
    background-color: #B4FFC6;
  }

  75% {
    background-color: #84EED5;
  }

  100% {
    background-color: #5EDFE4;
  }
}

@keyframes skeletonLoadAni4 {
  0% {
    background-color: #5EDFE4;
  }

  25% {
    background-color: #32CEF0;
  }

  50% {
    background-color: #0DC0FF;
  }

  75% {
    background-color: #B4FFC6;
  }

  100% {
    background-color: #84EED5;
  }
}

@keyframes skeletonLoadAni5 {
  0% {
    background-color: #84EED5;
  }

  25% {
    background-color: #5EDFE4;
  }

  50% {
    background-color: #32CEF0;
  }

  75% {
    background-color: #0DC0FF;
  }

  100% {
    background-color: #B4FFC6;
  }
}

/* 消息提示模块 end --- */
/* --------------------------------------------------------------------------------------------------- */

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 750px) {
  #ECER_CHAT_IFRAME_CONTAINER {
    border-radius: 0;
  }

  #ECER_MIN_BAR {
    width: 62px;
    height: 62px;
    padding: 0;
    border-radius: 50%;
    bottom: 160px;
    right: 15px;
    transition: 0s;
    background-color: #01a884;
    justify-content: center;
  }

  .headerAvatar {
    display: none;
  }

  #ECER_MIN_BAR .im-up {
    display: none;
  }

  .ECER_MIN_BAR_ICONCHAT {
    display: flex;
    align-items: center;
    width: 40px;
    height: 40px;
    font-size: 36px;
  }

  #ECER_MIN_BAR .headerAvWrap,
  #ECER_HEADER_MSG {
    display: none;
  }

  .ECER_ICON_WX {
    border-radius: 50%;
    width: 49px;
    height: 49px;
    border: 1px solid rgba(46, 188, 79, 1);
  }

  #ECER_MIN_BAR_ICON {
    background-position: center center;
    background-size: 30px;
  }

  #ECER_MIN_BAR_LINE {
    display: none;
  }

  #ECER_MIN_BAR_TEXT {
    display: none;
  }

  #ECER_CHAT_WRAP {
    max-width: 100%;
    max-height: 70vh;
    min-width: 100%;
    min-height: 70vh;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 70vh;
    border-radius: 0;
  }

  #ECER_CHAT_WRAP.FROM_APP {
    height: 100vh;
    max-height: 100vh;
  }

  .headerWrap {
    padding: 0;
    border-radius: 0px;
    background-color: #018069;
  }

  #ECER_MIN_CHAT,
  #ECER_X_CHAT {
    display: none;
  }

  #ECER_AV_WRAP {
    width: 100%;
    height: 100%;
    left: 0;
  }

  #ECER_CONTAINER {
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    border-radius: 0px !important;
  }

  #ECER_M,
  #ECER_F,
  #ECER_C {
    display: none;
  }

  #ECER_PHONE_M {
    display: block;
  }

  #ECER_ROOMID,
  #ECER_DRAG_RIGHT,
  #ECER_DRAG_NW,
  #ECER_DRAG_BOTTOM {
    display: none;
  }

  #ECER_ICONS svg {
    transform: translateY(0);
  }

  #ECER_ICONS div {
    transform: translateY(0);
  }

  #ECER_ICONS #ECER_DATE {
    transform: translateY(0);
  }

  .headUserInfo .userInfo .userName {
    display: block;
    background-image: none;
    padding-left: 0px;
    color: #fff;
  }

  #ECER_BACK_CHAT {
    display: flex;
  }

  #ECER_HEADER_USERINFO {
    display: inline-block;
  }

  #ECER_HEADER_ICONCHAT {
    display: none;
  }

  .ECER_MIN_BAR_AUDIO,
  .ECER_MIN_BAR_VIDEO,
  .ECERIM_CIRCLE:hover {
    display: none;
  }

  .headerAvWrap,
  #ECER_MIN_BAR_MSG {
    display: none;
  }

  .h5_headerAvWrap {
    display: inline-flex;
    margin-right: 12px;
  }

  .h5_headerAvWrap>.ECER_ACTION_ICON {
    margin-right: 4px;
  }

  .h5_headerAvWrap>.ECER_ACTION_ICON:last-child {
    margin-right: 0;
  }

  #ECER_MIN_CHAT {
    display: none;
  }

  #ECER_X_CHAT {
    display: none;
  }

  #ECER_DRAG_TOP {
    display: none;
  }
}