Skip to content
verify.scss 1.58 KiB
Newer Older
wangqinghua's avatar
wangqinghua committed
page-verify {
  //新闻区
  .main-news {
    padding: 0 1rem;
    text-align: left;

    .news-item {
      padding: .8rem 0;

      .news-left {
        display: flex;
        flex-flow: row wrap;
        min-height: 100%;

        .news-title {
          align-self: flex-start;
          font-weight: bold;
          width: 100%;
          margin-bottom: .6rem;
          color: #333333;
          font-size: 1.6rem;
          font-family: SourceHanSans-Bold;
          position: relative;

          .icon-fire {
            position: absolute;
            top: 3px;
            left: -14px;
            font-size: 1.5rem;
            color: #e42417;
          }
        }

        .news-end {
          color: #989898;
wangqinghua's avatar
wangqinghua committed
          width: 100%;
wangqinghua's avatar
wangqinghua committed
        }
      }

      .news-right {
        text-align: center;

        img {
          border-radius: .5rem;
          height: 60px;
        }
      }
    }

    .news-item + .news-item {
      border-top: 1px solid #eeeeee;
    }
  }
wangqinghua's avatar
wangqinghua committed

  .duty{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    height: 36px;
    background-color: #fff;
  }
  .duty div{
    width: 50%;
    text-align: center;
    position: relative;
  }
  .duty-title{
    position: relative;
    color: #e42417;
  }
  .duty-title::after{
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #e42417;
    bottom: -10px;
    left: 0px;
  }
wangqinghua's avatar
wangqinghua committed
  .recall{
    font-size: 1.5rem;
    color: #e42417;
    border: 1px solid #e42417;
    padding: 1px 4px;
    border-radius: 4px;
    margin-top: -2px;
  }
wangqinghua's avatar
wangqinghua committed
}