.product-list {
  .container {

    .item {
      overflow: hidden;
    }
    /**
    * 一行一个
    */
    &.small {
      overflow: hidden;
      .item {
        float: left;
        width: 50%;
      }
    }

    /**
    * 一行三列
    */
    &.three {
       overflow: hidden;
      .item {
        float: left;
        width: 33.33%;
      }
    }

    /**
 * 横向滑动
 */
    &.swipe {
      overflow-x: auto;
      overflow-y: hidden;
      display: -webkit-box;
      display: -webkit-flex;
      display: -moz-box;
      display: flex;
      -webkit-flex-wrap: nowrap;
      flex-wrap: nowrap;
      -webkit-overflow-scrolling: touch;
      padding-bottom: 10px;
      margin-bottom: -10px;

      /**
 * 横向滑动
 */
      .pmore--6, .item {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 30%;
        -moz-box-flex: 0;
        flex: 0 0 30%;
        width: 30%;
        float: none;
      }
    }

    &.hybrid {
      .item:nth-child(3n + 1) {
        width: 100%;
      }
      .item {
        float: left;
      }

      .item:nth-child(3n),
      .item:nth-child(3n + 2) {
        width: 50%;
      }
    }
  }
}
