    /* 搜索框容器样式 */
    input[type="text"] {
      background-color: rgba(255, 255, 255, 0.9);
      border: 1px solid #8b0000; /* 深红色边框 */
      border-radius: 4px 0 0 4px;
      padding: 6px 12px;
      height: 32px;
      width: 200px;
      color: #333;
      font-size: 14px;
      box-shadow: inset 0 1px 3px rgba(139, 0, 0, 0.1);
      transition: all 0.3s ease;
      box-sizing: border-box;}
    
    /* 输入框聚焦效果 */
    input[type="text"]:focus {
      outline: none;
      border-color: #b22222;
      box-shadow: 0 0 0 2px rgba(178, 34, 34, 0.2);
      background-color: #fff;}
    
    /* 搜索按钮样式 */
    button[type="submit"] {
      background: linear-gradient(to bottom, #8b0000, #a52a2a);
      border-left: none;
      border-radius: 0 4px 4px 0;
      color: white;
      padding: 6px 15px;
      height: 32px;
      font-size: 14px;
      cursor: pointer;
      transition: all 0.3s ease;
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
      box-sizing: border-box;
      display:flex;
      align-items:center;}
/**组件样式**/
.vsbcontent-table-container-outer { position: relative;}
.vsbcontent-table-container
{
    width: 98%;
    overflow-y: auto;
    _overflow: auto;
    margin: 2px;}
.vsbcontent-table-container::-webkit-scrollbar
{
    -webkit-appearance: none;
    width: 14px;
    height: 14px;}
.vsbcontent-table-container::-webkit-scrollbar-thumb
{
    border-radius: 8px;
    border: 3px solid #fff;
    background-color: rgba(0, 0, 0, .3);}
.vsbcontent-table-container-fade
{
    position: absolute;
    right: 0;
    width: 5px;
    height: 100%;
    background-image: -webkit-linear-gradient(0deg, rgba(255,255,255,.5), #fff);
    background-image: -moz-linear-gradient(0deg, rgba(255,255,255,.5), #fff);
    background-image: -ms-linear-gradient(0deg, rgba(255,255,255,.5), #fff);
    background-image: -o-linear-gradient(0deg, rgba(255,255,255,.5), #fff);
    background-image: linear-gradient(0deg, rgba(255,255,255,.5), #fff);}
