Skip to content
my-publish.scss 1.4 KiB
Newer Older
page-my-publish {
wangqinghua's avatar
wangqinghua committed
  //新闻区
  .main-news {
    padding: 0 1rem;
    text-align: left;
    .news-item {
wangqinghua's avatar
wangqinghua committed
      padding: .2rem 0;
wangqinghua's avatar
wangqinghua committed
      .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;
    }
  }
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;
  }