* {
  padding: 0;
  margin: 0;
}
.kfcenter {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.kfcenter .kfheader {
  background-color: #ff0000;
  padding: 0 4vw;
  height: 12vw;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 14px;
  color: #fff;
}
.kfbody {
  background-color: #fff;
  width: 100vw;
}
.kfbody .kfli {
  padding: 4vw 4vw 0 4vw;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
.kfbody .kfli span {
  width: 16vw;
  height: 16vw;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
  margin-right: 4vw;
  background-color: #f2f2f2;
}
.kfbody .kfli span img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.kfbody .kfli p {
  background-color: #e4e4e4;
  font-size: 14px;
  padding: 4vw;
  max-width: 72vw;
  border-radius: 0 2vw 2vw  2vw;
}
.kfbody .userLi {
  padding: 4vw 0 0 0;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  box-sizing: border-box;
}
.kfbody .userLi p {
  background-color: #999;
  font-size: 14px;
  border-radius: 15px 0 15px 15px;
  padding: 20px;
  box-sizing: border-box;
  color: #ffffff;
  word-wrap: break-word;
  max-width: 72vw;
  margin-left: 24vw;
  margin-right: 4vw;
}
.kfbody {
  height: calc(100vh - 42vw - 48px);
  width: 100vw;
  overflow-y: auto;
  overflow-x: hidden;
  background-color: #f2f2f2;
}
.kffooter {
  height: calc(30vw + 48px);
  width: 100vw;
  padding: 0;
  box-sizing: border-box;
  box-shadow: 0 1px 3vw rgba(158, 158, 158, 0.72);
  background-color: #f2f2f2;
}
.kffooter textarea {
  width: 100vw;
  border: none;
  height: 15vw;
  padding: 4vw;
  font-size: 14px;
  outline: none;
  color: #666;
  resize: none;
  font-family: Arial, Helvetica, sans-serif;
  box-sizing: border-box;
}
.kffooter .sent {
  display: flex;
  background-color: #f2f2f2;
  align-items: flex-start;
  justify-content: space-between;
  height: 15vw;
  box-sizing: border-box;
  padding: 4vw 4vw 0;
}
.kffooter .number {
  height: 8vw;
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #999;
}
.kffooter .number span {
  color: #ff0000;
}
#kfsent,
#kfsentenable {
  width: 30vw;
  height: 8vw;
  border: none;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  color: #fff;
}
#kfsent {
  background-color: #000000;
}
#kfsentenable {
  background-color: #999;
  display: none;
}
#kfloading em,
#loadingHtml em {
  padding-left: 5px;
}
#kfloading em i,
#loadingHtml em i {
  width: 2px;
  height: 2px;
  margin-left: 3px;
  border-radius: 50%;
  background-color: #006fb9;
  display: inline-block;
}
#kfloading em i.bs1,
#loadingHtml em i.bs1 {
  animation: opc 1s infinite;
}
#kfloading em i.bs2,
#loadingHtml em i.bs2 {
  animation: opc 2s infinite;
}
#kfloading em i.bs3,
#loadingHtml em i.bs3 {
  animation: opc 3s infinite;
}
@keyframes opc {
  0% {
    opacity: 0.1;
    width: 3px;
    height: 3px;
  }
  50% {
    opacity: 1;
    width: 3px;
    height: 3px;
  }
  100% {
    opacity: 0.5;
    width: 3px;
    height: 3px;
  }
}
#getTelBox {
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9;
  background-color: rgba(0, 0, 0, 0.7);
}
#getTelBox .getTelCenter {
  background-color: #fff;
  padding: 4vw;
  display: flex;
  flex-direction: column;
}
#getTelBox .getTelCenter .header {
  display: flex;
  font-size: 14px;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4vw;
  color: #999;
  user-select: none;
}
#getTelBox .getTelCenter .header span {
  padding-left: 4vw;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  cursor: pointer;
}
#getTelBox .getTelCenter input {
  width: 80vw;
  height: 12vw;
  box-sizing: border-box;
  padding: 2vw;
  margin-bottom: 4vw;
  border: 1px solid #ddd;
  font-size: 14px;
  outline: none;
}
#getTelBox .getTelCenter input:focus {
  border: 1px solid #006fb9;
}
#getTelBox .getTelCenter button {
  width: 80vw;
  height: 12vw;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 3px;
  background-color: #000000;
  color: #fff;
  border: none;
  cursor: pointer;
}
#getTelBox .getTelCenter button:active {
  opacity: 0.75;
}
