index.less 2.23 KB
Newer Older
duanledexianxianxian's avatar
sync  
duanledexianxianxian 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
.root {
  height: 100%;
  font-size: 16px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  .content {
    .title {
      color: #202030;
      font-weight: 600;
      line-height: 1.5;
    }

    .paper {
      padding: 32px 0 48px;
      :global {
        .am-list-item {
          padding-left: 0;
        }
        .am-list-line {
          padding-right: 0;
        }
        .am-input-control {
          height: 44px;
          background: rgba(250, 250, 250, 1);
          border-radius: 4px;
        }
      }

      .input {
        input {
          line-height: 44px;
          padding-left: 16px;
        }
      }

      .textarea {
        textarea {
          background: rgba(250, 250, 250, 1);
          border-radius: 4px;
          padding-top: 8px;
          padding-left: 16px;
        }
      }
    }

    .submit {
      :global {
        .am-button {
          line-height: 40px;
          font-size: 16px;
          width: 105px;
          height: 40px;
          background: linear-gradient(270deg, rgba(23, 106, 254, 1) 0%, rgba(97, 159, 255, 1) 100%);
          border-radius: 20px;
        }
      }
    }

    .answer {
      .rightAnswer {
        margin-bottom: 16px;
        color: #3dc484;
      }
      .analysis {
        margin-bottom: 16px;
        font-size: 14px;
        color: #202030;
        line-height: 1.5;
        span {
          font-weight: 600;
        }
      }
      .goAnalysis {
        text-align: right;
        color: #176aff;
      }
    }
  }
  .action {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    .pre {
      width: 72px;
      height: 32px;
      background: #f9f9f9;
      border-radius: 16px;
      color: #cccccc;
      font-weight: 600;
      line-height: 32px;
      text-align: center;
    }
    .input {
      input {
        width: 36px;
        height: 26px;
        border-radius: 4px;
        border: 1px solid #eff4fe;
        color: #176aff;
        font-weight: 500;
        margin: 0 12px;
      }
    }
    .next {
      width: 72px;
      height: 32px;
      line-height: 32px;
      background: #e3edfe;
      border-radius: 16px;
      color: #176aff;
      font-weight: 600;
      text-align: center;
    }
  }
}