index.scss 6.74 KB
Newer Older
zhanghaozhe committed
1 2
#intelligent-recommend {
  background: linear-gradient(to right, #F1F0F6, #EBF4F9);
zhanghaozhe committed
3
  padding: 59px 10px 18px;
zhanghaozhe committed
4
  min-height: 100%;
zhanghaozhe 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 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75

  .clearfix {
    &::after {
      content: ".";
      visibility: hidden;
      display: block;
      height: 0;
      clear: both;
    }
  }

  .head {
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 44px;
    padding: 0 15px;
    background: #fff;
    z-index: 100;

    & > div {
      display: flex;
      align-items: center;
    }

    .iconfont {
      font-size: 16px;
      color: #222;
      font-weight: 600;
    }

    .title {
      margin-left: 10px;
      font-size: 15px;
      color: #2b2b2b;
    }

    button {
      width: 84px;
      height: 30px;
      border: 1px solid #09f;
      border-radius: 15px;
      color: #09f;
      font-size: 13px;
      outline: 0;
      background-color: transparent;
      -webkit-appearance: none;
    }
  }

  .dialog-box {
    padding: 20px 15px 20px;
    margin-bottom: 20px;
    background: rgba(242, 247, 250, 1);
    border: 1px solid #5CF9FF;
    border-radius: 8px;

    .analyzing {
      color: #4f5c66;
      font-size: 12px;
      line-height: 48px;
      text-align: center;
    }
  }

  .message {
    .avatar {
zhanghaozhe committed
76
      width: 10%;
zhanghaozhe committed
77 78 79 80 81 82 83 84 85 86 87
      display: inline-block;
      margin-right: 14px;

      img {
        width: 30px;
        height: 30px;
        border-radius: 50%;
      }
    }

    .text {
zhanghaozhe committed
88
      max-width: 85%;
zhanghaozhe committed
89
      position: relative;
zhanghaozhe committed
90
      padding: 13px 16px;
zhanghaozhe committed
91 92 93 94 95
      display: inline-block;
      background: rgba(255, 255, 255, 1);
      border-radius: 4px;
      font-size: 16px;
      color: #333;
zhanghaozhe committed
96 97
      text-align: left;
      line-height: 24px;
zhanghaozhe committed
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
    }

    $angleSize: 8px;
    @mixin pseudo {
      content: '';
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      display: block;
      border-color: transparent;
      border-top: 6px solid transparent;
      border-bottom: 6px solid transparent;
    }


    &.system {
      .text::before {
        @include pseudo;
        left: -$angleSize;
        border-right: $angleSize solid #fff;
      }
    }

    &.user {
      .avatar {
        float: right;
zhanghaozhe committed
124
        margin-right: 0;
zhanghaozhe committed
125 126 127 128 129
      }

      .text {
        float: right;
        margin-right: 15px;
zhanghaozhe committed
130
        background-color:rgba(0, 54, 255, .7);
zhanghaozhe committed
131 132 133 134 135
        color: #fff;

        &::after {
          @include pseudo;
          right: -$angleSize;
zhanghaozhe committed
136 137
          top: 18px;
          border-left: $angleSize solid rgba(0, 54, 255, .7);
zhanghaozhe committed
138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164
        }
      }
    }

  }

  .message + .message {
    margin-top: 30px;
  }

  .options {
    position: relative;
    padding-top: 18px;
    margin-top: 15px;

    &::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 8px;
      background: url("./images/options-divide-line.png") no-repeat;
      background-size: contain;
    }

    li {
zhanghaozhe committed
165
      margin-bottom: 15px;
zhanghaozhe committed
166
      text-align: center;
zhanghaozhe committed
167 168

      button {
zhanghaozhe committed
169
        padding: 7px 30px;
zhanghaozhe committed
170 171
        box-sizing: border-box;
        background: linear-gradient(90deg, rgba(0, 153, 255, 1) 0%, rgba(77, 184, 255, 1) 100%);
zhanghaozhe committed
172
        border-radius: 4em;
zhanghaozhe committed
173
        font-size: 16px;
zhanghaozhe committed
174
        line-height: 24px;
zhanghaozhe committed
175
        color: #fff;
zhanghaozhe committed
176
        text-align: left;
zhanghaozhe committed
177 178 179 180 181
        -webkit-appearance: none;
        outline: none;
        border: none;
      }

zhanghaozhe committed
182 183 184 185
    }
  }

  .result {
zhanghaozhe committed
186
    padding: 0 15px 30px;
zhanghaozhe committed
187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211
    background: rgba(255, 255, 255, 1);
    border: 1px solid rgba(0, 153, 255, 1);
    border-radius: 8px;
    color: #333;

    & > .title {
      position: relative;
      color: #09f;
      font-size: 16px;
      text-align: center;
      line-height: 62px;
      @mixin pseudo {
        content: '';
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        display: block;
        width: 11px;
        height: 11px;
        background: url("./images/title-decorator.png") no-repeat;
        background-size: contain;
      }

      &::before {
        @include pseudo;
zhanghaozhe committed
212
        left: 5%;
zhanghaozhe committed
213 214 215 216
      }

      &::after {
        @include pseudo;
zhanghaozhe committed
217
        right: 5%;
zhanghaozhe committed
218 219 220 221 222
        transform: translateY(-50%) scale(-1);
      }
    }

    .subtitle {
zhanghaozhe committed
223 224
      font-size: 18px;
      font-weight: 600;
zhanghaozhe committed
225 226 227
    }

    .skill {
zhanghaozhe committed
228
      font-size: 12px;
zhanghaozhe committed
229
      line-height: 36px;
zhanghaozhe committed
230
      white-space: pre-line;
zhanghaozhe committed
231 232 233 234

      &.project {
        font-size: 14px;
      }
zhanghaozhe committed
235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273
    }

    .salary {
      font-size: 18px;
      line-height: 2em;
      font-weight: 500;
      color: #FF2A00;
    }

    .obtained {
      margin-bottom: 20px;
    }

    .salary-section {
      margin-bottom: 20px;
    }

    .recommends {
      & > div:nth-child(1) {
        margin-bottom: 12px;
        font-size: 12px;
        color: #09f;
      }

      .cover {
        flex: 0 0 auto;
        width: 125px;
        height: 90px;
        margin-right: 10px;

        img {
          width: 100%;
          height: 100%;
        }
      }

      .course {
        display: flex;
        justify-content: space-between;
zhanghaozhe committed
274
        margin-bottom: 20px;
zhanghaozhe committed
275 276 277

        .info {
          flex: 1 1 auto;
zhanghaozhe committed
278
          position: relative;
zhanghaozhe committed
279 280 281
        }

        .title {
zhanghaozhe committed
282
          width: 190px;
zhanghaozhe committed
283 284 285
          white-space: nowrap;
          overflow: hidden;
          text-overflow: ellipsis;
zhanghaozhe committed
286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304
          margin-bottom: 8px;
          font-size: 16px;
          line-height: 16px;
          font-weight: 500;
          color: #333;
        }

        .des {
          display: -webkit-box;
          /* autoprefixer: ignore next */
          -webkit-box-orient: vertical;
          -webkit-line-clamp: 2;
          margin-bottom: 5px;
          overflow: hidden;
          font-size: 11px;
          color: #4F5C66;
        }

        .bar {
zhanghaozhe committed
305 306 307
          position: absolute;
          left: 0;
          bottom: 0;
zhanghaozhe committed
308 309 310
          display: flex;
          justify-content: space-between;
          align-items: center;
zhanghaozhe committed
311
          width: 100%;
zhanghaozhe committed
312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347
          height: 24px;
          font-size: 0;

          a {
            display: inline-block;
            box-sizing: border-box;
            padding: 6px 14px;
            text-align: center;
            font-size: 12px;
            line-height: 12px;
            border-radius: 12px;
          }

          .contact {
            color: #fff;
            background-color: #09f;
            margin-right: 6px;
          }

          .register {
            color: #FF0000;
            border: 1px solid #FF0000;
          }

          .price {
            font-size: 15px;
            color: #FF2121;
            margin-right: 5px;
          }

          .old-price {
            font-size: 11px;
            color: #999;
            text-decoration: line-through;
          }

zhanghaozhe committed
348
          .study {
zhanghaozhe committed
349 350 351 352 353 354 355 356 357
            background-color: #09f;
            color: #fff;
            font-size: 12px;
          }
        }
      }
    }
  }
}