@charset "UTF-8";
@import '../setting';
.goods-sort{
  @include flex-ss;
  @include gap(4);
  line-height: 24px;
  font-size: 13px;
  white-space: nowrap;
  .goods-sort-title{
    font-size: 15px;
    font-weight: bold;
    color: $primary-color;
  }
  .goods-sort-item{
    @include flex-cc;
    @include gap(2);
  }
  .search-prize{
    @include flex-ss;
    @include gap(2);
    .price-input{
      box-sizing: border-box;
      width: 90px;
      height: 24px;
      line-height: 24px;
      background-color: $color-gray-2;
      @include p(2);
      @include rounded(2);
    }
  }
  .search-prize-submit-btn{
    height: 24px;
    line-height: 24px;
    font-size: 12px;
    color: #fff;
    background-color: $primary-color;
    @include px(2);
    @include rounded(2);
  }
  .global-goods-tool-btn{
    font-size: 13px;
    background-color: $primary-color;
    @include rounded(2);
  }
}

.sort-icon{
  position: relative;
  width: 14px;
  height: 14px;
  &:before,&:after{
    content: '';
    width: 0;
    height: 0;
    border: 6px solid transparent;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
  &:before{
    top: -6px;
    border-bottom-color: $color-gray-6;
  }
  &:after{
    bottom: -6px;
    border-top-color: $color-gray-6;
  }

  &.desc:after{
    border-top-color: $primary-color;
  }
  &.asc:before{
    border-bottom-color: $primary-color;
  }
}
