Skip to content
verify.scss 968 B
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;
        }
      }

      .news-right {
        text-align: center;

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

    .news-item + .news-item {
      border-top: 1px solid #eeeeee;
    }
  }
}