.assist {
  padding-top: 59px;
  padding-bottom: 60px;

  .detail-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    border-bottom: 1px solid #ddd;
  }

  .btns {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    //height: 60px;
    padding: 10px;
    background-color: #fff;
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.05);

    .submit {
      background-color: #09f;
      color: #fff;
      font-size: 18px;
      width: 100%;
      height: 40px;
      border: 0;
      outline: 0;
      -webkit-appearance: none;
    }

    a {
      display: block;
      width: 100%;
      height: 100%;
      font-size: 18px;
      line-height: 40px;
      color: #fff;
      text-align: center;

      &.home {
        background-color: #09f;
      }

      &.test {
        background-color: #ffae00;
      }
    }
  }

  .head {
    display: flex;
    align-items: center;
    margin-bottom: 15px;

    .icon {
      display: block;
      width: 16px;
      height: 16px;
      margin-right: 5px;
      background: url("../analysis/analysis.png") no-repeat;
      background-size: contain;
    }

    span {
      font-size: 14px;
      color: #09f;
    }
  }

  .content {
    padding: 15px 17px;

    .info {
      color: #333;
      font-size: 14px;
      margin-bottom: 15px;
    }
    .analysis-content {
      font-size: 14px;
    }
  }

  .status {
    font-size: 14px;
    text-align: center;
    color: #333;

    &.success {
      color: #29c8a0;
    }

    &.error {
      color: #ff5a5a;
    }

    &.end {
      color: #666;
    }
  }
}