.bind-card-container {
  display: flex;
  flex-direction: column;
  border-radius: 16rpx;
  // box-shadow: 0px 4px 15px 0px rgba(224, 224, 224, 1);
  width: 642rpx;
  box-sizing: border-box;
  margin:0 auto;
  margin-bottom: 24rpx;

  .content {
    display: flex;
    padding: 30rpx 70rpx 14rpx 70rpx;
    flex-direction: column;
    align-items: center;
    background-color: rgba(255, 255, 255, 1);
    border-top-left-radius: 16rpx;
    border-top-right-radius: 16rpx;


    .avatars {
      display: flex;
      flex-direction: row;
      align-items: center;

        .doctor-avatar {
          width: 88rpx;
          height: 88rpx;
          border-radius: 44rpx;
          border: 4rpx solid white;
          box-shadow: 0px 0px 8rpx 6rpx rgba(0,173,120,0.17);
          box-sizing: border-box;
        }

      .link {
        width: 202rpx;
        height: 56rpx;
        margin: 0 12rpx;
      }

      .user {
        width: 120rpx;
        height: 120rpx;
      }
    }

    .title {
      color: rgba(34, 34, 34, 100);
      font-size: 32rpx;
      text-align: center;
      font-family: PingFangSC-Medium;
      margin-top: 24rpx;
    }
    .text {
      color: rgba(102, 102, 102, 100);
      font-size: 24rpx;
      text-align: left;
      font-family: PingFangSC-Regular;
      margin-top: 8rpx;
    }
  }

  .separator {
    width: 642rpx;
    height: 46rpx;
    display: block;
  }

  .bottom {
    padding-bottom: 30rpx;
    background: white;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    border-bottom-left-radius: 16rpx;
    border-bottom-right-radius: 16rpx;

    .subtitile {
      text-align: center;
      color: rgba(0, 173, 120, 100);
      font-size: 24rpx;
      font-family: PingFangSC-Regular;
    }

    .question {
      width: 24rpx;
      height: 26rpx;
      margin-left: 8rpx;
    }
  }
}