index.scss 2.36 KB
Newer Older
xuzhenghua committed
1 2 3 4 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 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 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 118 119 120 121 122 123 124 125 126 127
html, body, #root {
  height: 100% !important;
}

.ai-test-help {
  width: 100%;
  height: 100%;
  text-align: center;
  letter-spacing: 1px;

  .banner {
    width: 100%;
    height: 282px;
    background-image: url("https://julyedu-cdn.oss-cn-beijing.aliyuncs.com/ai-test/m/help-banner.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    padding-top: 60px;

    img {
      height: 18px;
    }

    span {
      font-size: 25px;
      font-weight: 400;
      color: #FFCA28;
      margin: 0 9px;
    }
  }

  .tip-s {
    margin-top: 10px;
    font-weight: 400;
    font-size: 12px;
    color: #FF5F83;
  }

  .tip-m {
    margin-top: 30px;
    color: #525C65;
    font-weight: 400;
    font-size: 14px;
  }

  .tip-l {
    margin-top: 30px;
    color: #FF5F83;
    font-weight: 500;
    font-size: 18px;
  }

  .tip-num {
    margin-top: 15px;
    color: #09f;
    font-weight: 600;
    font-size: 20px;

    &:before, &:after {
      width: 13px;
      height: 12px;
      display: inline-block;
      content: '';
      background-repeat: no-repeat;
      background-position: center;
      background-size: contain;
      vertical-align: text-top;
      margin: 0 20px;
    }

    &:before {
      background-image: url("https://julyedu-cdn.oss-cn-beijing.aliyuncs.com/ai-test/m/mark_icon_l.png");
    }

    &:after {
      background-image: url("https://julyedu-cdn.oss-cn-beijing.aliyuncs.com/ai-test/m/mark_icon_r.png");
    }
  }

  .share-btn {
    height: 40px;
    line-height: 40px;
    border-radius: 5px;
    position: fixed;
    right: 10px;
    left: 10px;
    bottom: 5px;
    background-color: #FFAE00;
    color: #fff;
    font-size: 18px;
    font-weight: 400;
    text-align: center;
  }

  .share {
    position: fixed;
    right: 0;
    left: 0;
    bottom: 0;
    top: 0;
    background: rgba(0, 0, 0, .6);
    color: #fff;

    .content {
      position: relative;
      height: 100px;
      padding-top: 36px;
      box-sizing: border-box;
      font-size: 16px;

      .iconfont {
        position: absolute;
        top: 10px;
        right: 40px;
        font-size: 38px;
        color: #fff;
        width: 50px;
        height: 38px;
        background: url('https://julyedu-cdn.oss-cn-beijing.aliyuncs.com/pythonCourse/h5/share_arrow.png') center center no-repeat;
        background-size: 100% 100%;
      }
    }
  }
}