.banner-pc {
  position: relative;
  cursor: pointer;

  .top {
    height: 24px;
    padding-right: 10px;
    border-radius: 4px;
    background: #F4F5F9;
    display: inline-flex;
    align-items: center;

    .call-icon {
      margin: 4px 4px 4px 8px;
    }

    .text {
      font-weight: 400;
      font-size: 12px;
      line-height: 16px;
      color: #666666;
    }
  }

  .content {
    width: 220px;
    margin-top: 8px;
    padding: 10px 18px 6px 18px;
    box-shadow: 0px 0px 24px rgba(22, 30, 39, 0.2);
    background-color: #ffffff;
    border-radius: 10px;

    position: absolute;
    z-index: 10;

    display: flex;
    display: -webkit-flex;
    flex-direction: column;
    align-items: center;

    .content-arrows {
      width: 12px;
      height: 12px;
      border-radius: 2px;
      background-color: #ffffff;
      transform: rotate(45deg);
      position: absolute;
      top: -5px;
      left: 80px;
    }

    .avatar-box {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
    }

    .avatar {
      margin: 6px;
      display: flex;
      border-radius: 4px;
    }

    .btn{
      margin: 10px 0;
      width: 97px;
      height: 30px;
      background: #F2F5FC;
      border-radius: 4px;
    
      display: flex;
      justify-content: center;
      align-items: center;
    
      font-size: 12px;
      color: #1C66E5;
      cursor: pointer;
    }
  }
}