Skip to content
appraisals.scss 907 B
Newer Older
wangqinghua's avatar
wangqinghua committed
page-appraisals {
wangqinghua's avatar
wangqinghua committed
  .appraisals{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    height: 36px;
    background-color: #fff;
  }
  .appraisals div{
    width: 50%;
    text-align: center;
    position: relative;
  }
  .appraisalsItem > div{
    margin-bottom: 10px;
  }
  .appraisals-title{
    position: relative;
    color: #e42417;
  }
  .appraisals-title::after{
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #e42417;
    bottom: -10px;
    left: 0px;
  }
  .top-row{
    color: #577ab9;
    font-size: 1.6rem;
  }
  .top-col{
    background-color: #fff;
    margin: .5rem;
    height: 3rem;
    line-height: 2rem;
    font-size: 1.5rem;
    border-radius: 4px;
    [col-2]{
      display: flex;
      align-items: center;
      justify-content: center;
    }
    img{
      width: 2rem;
    }
  }
wangqinghua's avatar
wangqinghua committed
}