.main {
  width: 100%;
  background: url("../images/bg.jpg") repeat;
  background-size: auto auto;
  overflow: hidden;
  min-width: 1200px;
  min-height: 100vh; }
  .main .top {
    width: 1100px;
    margin: 0 auto; }
  .main .lists {
    margin: 30px auto;
    width: 1100px;
    background: #f8f8f8;
    padding: 50px; }
    .main .lists .list {
      display: block;
      background-color: #fff;
      overflow: hidden;
      padding: 20px 30px;
      border-radius: 12px;
      box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
      margin-bottom: 30px;
      display: flex; }
      .main .lists .list:hover {
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
        transform: translateY(-1px); }
      .main .lists .list .list-left {
        height: 100%;
        width: 40%;
        flex: none; }
      .main .lists .list .list-right {
        flex: 1;
        height: 100%;
        margin-left: 30px;
        position: relative; }
        .main .lists .list .list-right .title {
          font-size: 1.5em;
          color: #222;
          line-height: 1.4;
          text-overflow: -o-ellipsis-lastline;
          overflow: hidden;
          text-overflow: ellipsis;
          display: -webkit-box;
          -webkit-line-clamp: 2;
          line-clamp: 2;
          -webkit-box-orient: vertical; }
        .main .lists .list .list-right .summary {
          color: #666;
          font-size: 1.1em;
          margin-top: 20px;
          line-height: 1.8;
          text-overflow: -o-ellipsis-lastline;
          overflow: hidden;
          text-overflow: ellipsis;
          display: -webkit-box;
          -webkit-line-clamp: 3;
          line-clamp: 3;
          -webkit-box-orient: vertical; }
          .main .lists .list .list-right .summary .zhaiyao {
            background: url(../images/book_ico.jpg) no-repeat;
            background-size: 100% auto;
            width: 90px;
            height: 30px;
            line-height: 30px;
            display: inline-block;
            color: #FFF;
            padding-left: 10px;
            margin-right: 10px; }
        .main .lists .list .list-right .time {
          color: #999;
          width: 100%;
          font-size: 1em;
          text-align: right;
          margin-top: 5px; }
