@import '../variable';

// 右侧内容栏样式
.hx-main {
  height: 100%;
  display: inline-block;
  float: left;
  position: relative;
  width: calc(100% - #{$width-sidebar}); // 180px 对应 
}

@media screen and (max-width: 640px) {
  .hx-main {
    width: 100%!important;
    left: 0;
  }
}