.comic {
    width: 1000px;
    margin: 20px auto;
    display: flex;
    flex-wrap: wrap;
  }
  .comic-item {
    width: 50%;
    padding: 10px;
    box-sizing: border-box;
  }
  .comic-item img {
    width: 100%;
  }
  .imgView{
      visibility: hidden;
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0, 0, 0, .7);
      display: flex;
      align-items: center;
      justify-content: center;
  }
  .imgView-center{
      width: 500px;
  }
  .imgView-center img{
      width: 100%;
  }
  .imgView-close{
      position: fixed;
      top: 100px;
      right: 100px;
      background: #999;
      color: #fff;
      width: 50px;
      height: 50px;
      text-align: center;
      line-height: 45px;
      font-size: 30px;
      border-radius: 50%;
      cursor: pointer;
  }
  .imgView-left{
      position: fixed;
      top: 50%;
      left: 10px;
      background: rgba(0, 0, 0, .3);
      color: #fff;
      width: 50px;
      height: 50px;
      text-align: center;
      line-height: 45px;
      font-size: 30px;
      border-radius: 50%;
      cursor: pointer;
      margin-top: -25px;
  }
  .imgView-right{
      position: fixed;
      top: 50%;
      right: 10px;
      background: rgba(0, 0, 0, .3);
      color: #fff;
      width: 50px;
      height: 50px;
      text-align: center;
      line-height: 45px;
      font-size: 30px;
      border-radius: 50%;
      cursor: pointer;
      margin-top: -25px;
  }
  