index.scss 1.23 KB
Newer Older
FE 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
.college-page__contact {
  margin: 5px 0 0;
  font-size: 12px;
  color: #0099FF;
  text-align: center;
  line-height: 22px;
}

.college-page__section {
  margin: 0 15px 10px;
  border: 1px solid #ECECEC;
  border-radius: 1px;

  .section__icon {
    float: left;
    width: 30px;
    height: 34px;
    margin: 13px 0 0 15px;
    background-size: 100% auto;
    background-position: center;
    background-repeat: no-repeat;
  }

  .section__body {
    margin-left: 60px;
    padding: 8px 0;
  }

  .section__title {
    margin: 0 0 4px;
    font-size: 14px;
    font-weight: 400;
    color: #0099FF;
    line-height: 1;
  }

  .section__desc {
    margin: 0;
    font-size: 12px;
    color: #333;
    line-height: 15px;
  }
}

.college-page__college {
FE committed
46 47
  // display: flex;
  // flex-wrap: wrap;
FE committed
48 49 50
  padding: 4px 10px 0;

  .college__item {
FE committed
51
    // width: 166px;
52
    margin: 0 5px 10px;
FE committed
53 54 55 56 57 58 59 60
    cursor: pointer;
  }

  .college__iamge {
    display: block;
    height: 60px;
    border: 1px solid #ECECEC;
    border-radius: 1px;
FE committed
61
    background-size: auto 95%;
FE committed
62 63 64 65 66
    background-position: center;
    background-repeat: no-repeat;
  }

  .college__name {
67
    margin: 6px 0 0;;
FE committed
68 69 70
    font-size: 12px;
    color: #525C65;
    text-align: center;
71
    line-height: 16px;
FE committed
72 73
  }
}