@include b(container) {
  //background-color: $container-bg-color;
  padding: $margin-bottom;
  & + & {
    padding-top:0;
  }
  &:before,&:after{
    display: block;
    content: ' ';
    height: 1px;
    overflow: hidden;
    clear: both;
  }
  @include e(title) {
    color: $title-text-color;
    display: inline-block;
    font-size: 12px;
    padding-left: 2px;
    margin-bottom: 14px;
  }
  @include e(tips) {
    color:$warning-color;
    text-indent: $size-base;
    margin-top: 8px;
  }
  @include e(pop-tips) {
    width: 100px;
    height: 50px;
    background-color: #2a3d2a;
  }
  @include e(slot) {
    @include when(center){
      text-align: center;
    }
    @include when(right){
      text-align: right;
    }
  }

}