::-webkit-scrollbar {
    width: 4px;
    height: 8px;
}

::-webkit-scrollbar-thumb {
    height: 50px;
    background-color: #ccc;
    outline-offset: -2px;
    border: 2px solid #ccc;
}

::-webkit-scrollbar-track {
    background: #f8f8f8;
}

::-webkit-scrollbar-track-piece {
    border-radius: 0;
    -webkit-border-radius: 0;
}


@font-face {
  font-family: "iconfont"; /* Project id 4597532 */
  src: url('//at.alicdn.com/t/c/font_4597532_9wdvpxxneaj.woff2?t=1722405853637') format('woff2'),
       url('//at.alicdn.com/t/c/font_4597532_9wdvpxxneaj.woff?t=1722405853637') format('woff'),
       url('//at.alicdn.com/t/c/font_4597532_9wdvpxxneaj.ttf?t=1722405853637') format('truetype');
}

.iconfont {
  font-family: "iconfont" !important;
  font-size: 16px;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}



.sorticon {
    font-family: "iconfont" !important;
    font-size: 16px;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.totalcount {
    color:#e64c62;
    padding:0 5px;
}

.icon-up:before {
    content: "\e600";
}

.icon-down:before {
    content: "\e601";
}


.iconfont {
    font-size: 16px;
}

.icon-left:before {
    content: "\e67e";
  }
  
  .icon-right:before {
    content: "\e602";
  }

  .icon-sort:before {
    content: "\e613";
  }


  .icon-you:before {
    content: "\e630";
  }

  /* switch box  */
.switch {
    position: relative;
    display: inline-block;
    width: 30px;
    height: 15px;
  }
  
  /* 隐藏默认 checkbox */
  .switch input {
    opacity: 0;
    width: 0;
    height: 0;
  }
  
  /* 开关 */
  .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
  /* 过渡 */
    -webkit-transition: .4s;
    transition: .4s;
  }
  
  .slider:before {
    position: absolute;
    content: "";
    height: 11px;
    width: 11px;
    left: 2px;
    bottom: 2px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
  }
  /* 改变颜色 */
  input:checked + .slider {
    background-color: #2196F3;
  }
  
  input:focus + .slider {
    box-shadow: 0 0 1px #2196F3;
  }
  /* 中心原点运动 */
  input:checked + .slider:before {
    -webkit-transform: translateX(15px);
    -ms-transform: translateX(15px);
    transform: translateX(15px);
  }
  
  /* 圆角 */
  .slider.round {
    border-radius: 17px;
  }
  
  .slider.round:before {
    border-radius: 50%;
  }

  .kline {cursor: pointer;}