index.scss 1.58 KB
Newer Older
zhanghaozhe committed
1 2 3 4 5 6 7 8 9 10
.assist {
  padding-top: 59px;
  padding-bottom: 60px;

  .detail-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
zhanghaozhe committed
11
    border-bottom: 1px solid #ddd;
zhanghaozhe committed
12 13 14 15 16 17 18
  }

  .btns {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
zhanghaozhe committed
19
    //height: 60px;
zhanghaozhe committed
20 21 22 23 24 25 26 27 28
    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%;
zhanghaozhe committed
29
      height: 40px;
zhanghaozhe committed
30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48
      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 {
zhanghaozhe committed
49
        background-color: #ffae00;
zhanghaozhe committed
50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81
      }
    }
  }

  .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;
    }
zhanghaozhe committed
82
    .analysis-content {
zhanghaozhe committed
83 84 85 86 87 88 89 90 91 92
      font-size: 14px;
    }
  }

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

    &.success {
zhanghaozhe committed
93
      color: #29c8a0;
zhanghaozhe committed
94 95 96
    }

    &.error {
zhanghaozhe committed
97
      color: #ff5a5a;
zhanghaozhe committed
98 99 100 101 102 103
    }

    &.end {
      color: #666;
    }
  }
zhanghaozhe committed
104
}