//主页部分
.main-box{
  padding: 0;
  .row{
    margin:0;
  }
  @media (min-width: $screen-sm-min){
    padding-left: $navbarSize;
  }
} 
.main-content{
  width: 100%;
  padding-top: 50px;
  min-height: 400px;
  
  @media (min-width: $screen-sm-min){
    padding-top: 10px;
    padding-left: 35px;
  }
  @media (min-width:$screen-sm-min) and (max-width: $screen-md-max){
      max-width:75%;
  }
  @media (min-width: $screen-lg-min){
      max-width: 1000px;
  }

  //文章列表
  @at-root .article-list {
    margin-top: 35px;
    .article-item {
      display: list-item;
      float: left;
      width: 100%;
      padding-right: 2px;
      padding-bottom: 17px;
      margin-bottom: 17px;
      border-bottom:{
        width: 1px;
        style: dashed;
      }
      @include box-sizing(border-box);
      word-wrap: break-word;
      line-height: 1.5em;
    }
    .no-content{
      font-size: 2em;padding-top:2em;text-align: center;
    }
    //有图片时
    .have-img>div {
      padding-right: 110px;
    }
    .have-img .wrap-img {
      float: right;
      width: 100px;
      height: 100px;
      img {
        width:100%;
        height: 100%;
        @include border-radius(4px);
        border:{
          width:1px;
          style:solid;
        }
        @include box-sizing(border-box);
      }
    }

    .list-top {
      margin: 8px 0;
      font-size: $font-size-small;
    }
    .title {
      margin-right:10px;
      font-size: $font-size-large;
      font-weight: bold;
      line-height: 1.5;
    }
    .list-footer {
      font-size: $font-size-small;
      line-height: 1.5;
    }

  }

  //标签
  @at-root ul.sort-tags{
    padding-top: 13px;
    li{
      display: list-item;
      float: left;
      margin: 10px 15px 5px 0;
      line-height: 1.5em;
      a{
        padding: 5px 10px;
        border: {
          width:1px;
          style: solid 
        };
        @include border-radius(14px);
        @include box-sizing(border-box);
        font-size: $font-size-small;
        line-height: 1.5em;
      }
    }
    .loader-tiny {
      width: 17px;
    }
  }
  .load-more {
    margin-bottom: 30px;
    text-align: center;
    .ladda-button {
      background: $navActiveColor;
      border-color: $navActiveColor;
      padding: 14px 18px;
      font-size: 1.2em;
      cursor: pointer;
      color: white;
      border: 1px solid transparent;
      @include border-radius(2px);
    }
  }
}



