.zhiboC{
	position:relative;
	top:0px;
	left:0px;
	width: 120px;
  	height: 120px;
}
.zhibo_avatar {
  width: 80px;
  height: 80px;
  border: 1px solid #C3C3C3;
  border-radius: 50%;
  animation: zhibo_avatar_enlarge 2s infinite;
  position: absolute;
  left: 10px;
  top: 10px;
}
.zhibo_img_box{	
  width: 80px;
  height: 80px;
  border-radius: 50%;
  position: absolute;
  left: 10px;
  top: 10px;
}
.zhibo_liangzai{
  position: absolute;
    left: 6px;
    font-size: 12px;
    color: #fff;
    background: red;
    width: 60px;
    height: 22px;
    bottom: -12px;
    text-align: center;
    line-height: 22px;
    border-radius: 3px;
    background-image: url(../images/ads/zhibo/tooltip.png);
    background-size: 18px 18px;
    background-repeat: no-repeat;
    background-position: 3px 2px;
    padding-left: 15px;
}
.zhibo_name{
  position: absolute;
    left: 0px;
    font-size: 14px;
    color: black;
    width: 80px;
    height: 20px;
    bottom: -36px;
    text-align: center;
    line-height: 20px;
}
.zhibo_box{
  width: 80px;
  height: 80px;
  border: 1px solid #C6DDF7;
  position: absolute;
  left: 10px;
  top: 10px;
  border-radius: 50%;
}
.zhibo_img{
  width: 70px;
  height: 70px;
  border-radius: 50%;
  animation: zhibo_img_scaleAnimation 4s infinite alternate ease-in-out;
  position: absolute;
  left: 8%;
  top: 8%;
}
@keyframes zhibo_avatar_enlarge {
  0% {
    transform: scale(1);/* 动画开始时的大小 */
  }
  100% {
    transform: scale(1.2); /* 动画结束时的大小（这里是放大2倍大小） */
  }
}
@keyframes zhibo_img_scaleAnimation {
  0% {
    transform: scale(1);
  }
  25% {
    transform: scale(1.1);
  }
  50% {
    transform: scale(1);
  }
  75% {
    transform: scale(1.1);
  }
}

.zhibo_ads{
	position: absolute;
	left: 0px;
	bottom: -35px;
    font-size: 14px;
    color: #9999FF;
    width: 80px;
    height: 20px;
    text-align: center;
    line-height: 20px;
}