/* 双飞翼布局，这里是参考圣杯布局写的 */
.base-double-wing-container {
  height: 100%;

  // padding-right: 220px;
  // padding-left: 140px; // 内边距需要和左右盒子宽度一致
  .column {
    position: relative;
    float: left;
  }

  .center {
    width: 100%;
    height: 100%;
    // background-color: rgb(239, 238, 238);
  }

  .left {
    // right: 140px;
    // width: 140px;
    height: 100%;
    margin-left: -100%;
    // background-color: rgb(238, 245, 145);
  }

  .right {
    // width: 220px;
    height: 100%;
    // margin-right: -220px;
    // background-color: rgb(249, 249, 13);
  }
}
