index.scss 2.32 KB
Newer Older
wangshuo committed
1 2 3
.test_container {
  background: #fff;
  padding-top: 30px;
wangshuo committed
4
  padding-bottom: 44px;
wangshuo committed
5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51

  .title {
    font-size: 22px;
    line-height: 22px;
    font-weight: 600;
    color: rgba(0, 153, 255, 1);
    text-align: center;
    text-align-last: center;
  }
  .sub_title {
    font-size: 12px;
    line-height: 12px;
    font-weight: 300;
    color: rgba(0, 153, 255, 1);
    margin: 12px auto 24px;
    text-align: center;
    text-align-last: center;
  }

  .table_container {
    width: 358px;
    margin: 0 auto;

    .table_head {
      background: #ffd667;
      height: 32px;
      display: flex;
      justify-content: center;
      align-items: center;
      border-radius: 4px 4px 0 0;

      span {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 50px;
        height: 32px;

        &:last-child {
          width: 308px;
          border-left: 1px solid #0099ff;
        }
      }
    }

    .table_body {
      background: #34AFFF;
FE committed
52 53 54 55
      .stage-item {
        border-bottom: 1px solid #0099FF;
      }

wangshuo committed
56 57 58 59 60 61 62 63 64 65
      .stage {
        height: 38px;
        font-size: 14px;
        line-height: 14px;
        font-weight: 500;
        color: rgba(255, 255, 255, 1);
        display: flex;
        justify-content: center;
        align-items: center;
      }
FE committed
66

wangshuo committed
67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117
      .line {
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 36px;
        border-top: 1px solid #0099FF;
        color: #FFF;
        font-size: 12px;
        span {
          display: flex;
          justify-content: center;
          align-items: center;
          width: 50px;
        }
        .test_name {
          width: 308px;
          display: flex;
          justify-content: flex-start;
          align-items: center;
          border-left: 1px solid #0099FF;
          height: 36px;
          img {
            width: 20px;
            height: 20px;
            border-radius: 5px;
            margin: 0 10px;
          }
        }

      }
    }

    .table_bottom {
      height: 36px;
      background: #3DB1FF;
      div {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 36px;
        color: #FFF;
        font-size: 12px;
      }
      img {
        width: 9px;
        height: 9px;
        margin-left: 6px;
      }
    }
  }
}