@charset "UTF-8";
/*!
Author: the Wbolt team
Author URI: http://www.wbolt.com
*/
/*上下细边框定义*/
.wb-demo-panel {
  position: fixed;
  top: 50%;
  left: 0;
  min-width: 36px;
  min-height: 36px;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  background-color: #fff;
  z-index: 9999;
  border-radius: 3px;
  -webkit-transform: translate3d(0, -50%, 0);
          transform: translate3d(0, -50%, 0); }
  .wb-demo-panel .wdp-inner {
    width: 100px;
    padding: 20px;
    display: none; }
  .wb-demo-panel h3 {
    font-size: 16px;
    line-height: 20px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 10px; }
  .wb-demo-panel .wdp-item {
    display: block;
    line-height: 24px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 3px;
    text-align: center;
    font-size: 14px;
    margin: 5px 0; }
    .wb-demo-panel .wdp-item:hover {
      border-color: var(--mainColor, #0060FF);
      color: var(--mainColor, #0060FF); }
    .wb-demo-panel .wdp-item.active {
      border-color: var(--mainColor, #0060FF);
      color: #fff;
      background-color: var(--mainColor, #0060FF); }
  .wb-demo-panel .wdp-close {
    padding: 10px;
    position: absolute;
    width: 16px;
    height: 16px;
    line-height: 16px;
    top: 0;
    right: 0;
    z-index: 2; }
  .wb-demo-panel .icon-menu {
    position: relative;
    display: inline-block;
    width: 9px;
    height: 2px;
    border-radius: 1px;
    background-color: var(--wbBfc, #666);
    -webkit-transition: background-color 0.3s;
    transition: background-color 0.3s;
    vertical-align: middle;
     }
    .wb-demo-panel .icon-menu::before, .wb-demo-panel .icon-menu::after {
      content: '';
      width: 16px;
      height: 2px;
      border-radius: 1px;
      background-color: var(--wbBfc, #666);
      position: absolute;
      -webkit-transition: -webkit-transform 0.3s;
      transition: -webkit-transform 0.3s;
      transition: transform 0.3s;
      transition: transform 0.3s, -webkit-transform 0.3s; }
    .wb-demo-panel .icon-menu::before {
      top: -6px; }
    .wb-demo-panel .icon-menu::after {
      top: 6px; }
  .wb-demo-panel.unfold .wdp-inner {
    display: block; }
  .wb-demo-panel.unfold .icon-menu {
    background-color: transparent; }
    .wb-demo-panel.unfold .icon-menu::before {
      -webkit-transform: rotate(45deg);
          -ms-transform: rotate(45deg);
              transform: rotate(45deg);
      -webkit-transform-origin: center;
          -ms-transform-origin: center;
              transform-origin: center;
      top: 0; }
    .wb-demo-panel.unfold .icon-menu::after {
      -webkit-transform: rotate(-45deg);
          -ms-transform: rotate(-45deg);
              transform: rotate(-45deg);
      -webkit-transform-origin: center;
          -ms-transform-origin: center;
              transform-origin: center;
      top: 0; }
