* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    
}

/* 头尾各个页面相同的共享 */
.wrapper {
  margin: 0 auto;
  width: 1200px;
}

a {
    all: unset;
    cursor: pointer;
}

input {
    /* all: unset; */
}

textarea {
    all: unset;
}

.dot1 {
    
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dot2 {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

/* 定义滚动条的宽度 */
::-webkit-scrollbar {
    width: 6px; /* 水平滚动条的宽度 */
    height: 6px; /* 垂直滚动条的高度 */
  }
  
  /* 定义滚动条的轨道 */
  ::-webkit-scrollbar-track {
    background: #f1f1f1; /* 轨道的颜色 */
  }
  
  /* 定义滚动条的滑块 */
  ::-webkit-scrollbar-thumb {
    background: #bfbfbf; /* 滑块的颜色 */
    border-radius: 6px; /* 滑块的圆角 */
  }
  
  /* 定义滚动条滑块的悬停样式 */
  ::-webkit-scrollbar-thumb:hover {
    background: #999; /* 悬停时滑块的颜色 */
  }

  /* 面包屑 */
  .pages-crumbs-on{
    width: 1200px;
    height: 30px;
    margin: 0 auto;
    display: flex;
    align-items: flex-end;
  }
  .pages-crumbs-on a{
    font-size: 12px;
    color: #666;
  }
  .pages-crumbs-on a:hover{
    color: #326ee7;
  }
  
  .pages-crumbs-on span{
    font-size: 12px;
    color: #666;
    margin: 0 6px;
  }
  
