@charset "utf-8";

.balloon-left {
  position: relative;
  display: inline-block;
  /*margin: 1.5em 0 1.5em 15px;*/
  padding: 7px 10px;
  min-width: 120px;
  max-width: 100%;
  color: rgba(255,255,255,.9);
  font-size: 16px;
  background: rgba(0,0,0,0.8);
  border: solid 3px rgba(255,255,255,.9);
  border-radius: 10px;
  box-sizing: border-box;
}

.balloon-left:before{
  content: "";
  position: absolute;
  top: 75%;
  left: -24px;
  margin-top: -12px;
  border: 12px solid transparent;
  border-right: 12px solid rgba(0,0,0,0.8);
  z-index: 2;
}

.balloon-left:after{
  content: "";
  position: absolute;
  top: 75%;
  left: -30px;
  margin-top: -14px;
  border: 14px solid transparent;
  border-right: 14px solid rgba(255,255,255,.9);
  z-index: 1;
}

.balloon-left p {
  margin: 0;
  padding: 0;
}

.balloon {
  position: absolute;
  display: block;
  bottom: 0;
  width: 1024px;
  height: 108px;
  background: rgba(0,0,0,0.6);
}

.balloon p {
  overflow: hidden;
  padding: 15px 10px 10px 30px;
  color: #fff;
}

.balloon i,
.balloon i:before,
.balloon i:after,
.balloon:before,
.balloon:after {
  content: "";
  position: absolute;
  display: block;
}

.balloon:before {
  left: 0;
  top: 0;
  width: 234px;
  border: 0;
  border-top: 2px solid #fff;
}

.balloon:after {
  right: 0;
  top: 0;
  width: 744px;
  border-top: 2px solid #fff;
}

.balloon i {
  line-height: 0;
  font-size: 0;
  top: -14px;
  left: 238px;
  display: block;
}

.balloon i:before {
  top: -30px;
  left: -2px;
  border: 22px solid transparent;
  border-top: 22px solid rgba(0,0,0,0.6);
  transform: rotate(180deg);
}

.balloon i:after {
  top: -3px;
  left: 2px;
  width: 32px;
  height: 32px;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  transform: rotate(45deg);
}

.balloon p {
  overflow: hidden;
}

.balloon span {
  display: block;
  overflow: hidden;
  /*animation: marquee 10s linear 0s infinite;*/
}