.votepageresultcard {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-radius: 8px;

  .content {
    display: flex;
    width: 80%;
    background: #fff;
    position: relative;
    flex-direction: column;
    border-radius: 10px;
    .icon {
      position: absolute;
      left: 50%;
      top: 30px;
      transform: translateX(-50%);
      width: 100px;
      height: 100px;
      .iconimgae {
        position: absolute;
        z-index: 10;
        width: 100px;
        height: 100px;
      }
      .icontext {
        position: absolute;
        z-index: 100;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        color: #fff;
        font-size: 20px;
      }
    }

    .bgimage {
      width: 100%;
      height: 150px;
    }

    .title {
      margin-top: 15px;
      text-align: center;
      width: 100%;
      color: red;
      font-size: 20px;
    }

    .detail {
      z-index: 100;
      margin-top: 35px;
      padding: 8px;
      width: 100%;
      word-break: break-all;
      overflow: hidden;
      word-wrap: break-word;
    }
    .bottom {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 40px;
      margin-left: 16px;
      margin-right: 16px;
      margin-top: 8px;
      .buttomitem {
        border-radius: 16px;
        height: 32px;
        width: 120px;
        background-color: red;
        text-align: center;
        line-height: 32px;
        color: #fff;
        font-size: 14px;
      }
    }
  }

  .closeimage {
    width: 20px;
    height: 20px;
    margin-top: 30px;
  }
}