    .shaixuan_container {
      padding: 15px;
	  margin: 0px 0px 0px 180px; /* 上 右 下 左 */
    }

    .shaixuan_header {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 20px;
      cursor: pointer;
      font-size: 18px;
      color: #FFF;

    }

    .shaixuan_header i {
      color: #FFF;
	  font-weight: bold;
	  margin: 2px 0px 0px 0px; /* 上 右 下 左 */

    }

    .shaixuan_category {
      margin-bottom: 15px;
      display: flex;
      flex-direction: column;
    }

    .shaixuan_options {
      display: flex;
      overflow-x: auto;
      white-space: nowrap;
      -webkit-overflow-scrolling: touch; /* iOS 手势滚动优化 */
      scrollbar-width: none; /* 隐藏滚动条 */
      -ms-overflow-style: none;
      -webkit-user-select: none; /* Safari */
      -moz-user-select: none; /* Firefox */
      -ms-user-select: none; /* IE10+/Edge */
      user-select: none; /* 标准语法 */
    }

    .shaixuan_options::-webkit-scrollbar {
      display: none;
    }

    .shaixuan_option {
      padding: 4px 8px;
      font-size: 14px;
      color: #cccccc;
      border-radius: 4px;
      margin-right: 8px;
      cursor: pointer;
      transition: all 0.2s ease;
      -webkit-user-select: none; /* Safari */
      -moz-user-select: none; /* Firefox */
      -ms-user-select: none; /* IE10+/Edge */
      user-select: none; /* 标准语法 */
    }

    .shaixuan_option:hover {
		color: #fff;
		font-weight: bold;
    }

    .shaixuan_option.active {
		color: #eaeaea;
		font-weight: 500;
		border-radius: 5px;
		text-align: center;
		border: 0.5px solid rgba(255,255,255,.15);
		background: rgba(255,255,255,.12);
		font-size: 15px;
		padding: 3px 8px 5px 8px; /* 上 右 下 左 */
    }

    .shaixuan_option.active::after {
      content: '';
      position: absolute;
      bottom: -5px;
      left: 0;
      width: 100%;
      height: 2px;
      /* background-color: #00c7ff; 添加底部蓝色下划线 */
    }

    /* 分类标题颜色差异化（如果需要可以保留） */
    .shaixuan_category .shaixuan_category_title { /* 修正：原代码中分类标题样式未定义，这里保持原样或可以添加 */
      /* 可以添加具体样式 */
    }