/*全局属性*/
html,
body {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.loading img {
  position: absolute;
  width: 800px;
  height: 480px;
  top: 50%;
  left: 50%;
  margin-left: -400px;
  margin-top: -240px;
}

.loading .l-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #242424;
}

/*话机框*/
#callPanel{
  position: fixed;
  right:2px;
  top:40%;
  display: flex;
  flex-direction: column;
  width: 240px;
  height: 240px;
  margin-top: -120px;
  border: 1px solid #ebeef5;
  box-sizing: border-box;
  border-radius: 4px;
  padding: 10px;
  background: #fff;
  box-shadow: 0 2px 12px 0 rgba(0,0,0,.1);
  visibility: hidden;
}
.p-header{
  position: relative;
  box-sizing: border-box;
  padding: 12px 20px;
  border-bottom: 1px solid #ebeef5;
}
.p-h-title{
  text-align: center;
  color: #303133;
  font-size:18px ;
}
.p-header span{
  position: absolute;
  right: 20px;
  top: 50%;
  margin-top: -15px;
  width: 40px;
  height: 30px;
  text-align: right;
  line-height: 30px;
  cursor: pointer;
}
.p-body{
  flex:1;
  display: flex;
  padding: 20px;
  flex-direction: column;
}
#callStatus{
  flex: 1;
  font-size: 16px;
}
#toolBar{
  height: 42px;
  display: flex;
  flex-direction: row;
  /*justify-content: space-between;*/
  align-items: center;
}
#toolBar div{
  text-align: center;
  box-sizing: border-box;
  margin-right: 20px;

}
#toolBar div span{
  display: inline-block;

  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  background: #fff;
  border: 1px solid #dcdfe6;
  color: #606266;
  -webkit-appearance: none;
  text-align: center;
  box-sizing: border-box;
  outline: none;
  margin: 0;
  transition: .1s;
  font-weight: 500;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  padding: 12px 20px;
  font-size: 14px;
  border-radius: 4px;
}

#showBtn{
  position: fixed;
  top:40%;
  right:0;
  margin-top: -40px;
  width: 30px;
  height: 60px;
  background: #007fff;
  color: #fff;
  letter-spacing: 4px;
  text-align: center;
  box-sizing: border-box;
  padding: 10px 0;
  cursor: pointer;
  display: none;
}
