/* 时间表 */
.aside-count .content {
    padding: 5px;
    font-family: Orbitron
  }
  
  .aside-count .content .item {
    margin-bottom: 3px
  }
  
  .aside-count .content .item:last-child {
    margin-bottom: 0
  }
  
  .aside-count .content .item .title {
    width: 100%;
    font-size: 16px;
    font-weight: 500;
    color: var(--minor);
    line-height: 30px;
    margin-bottom: 5px;
    display: flex;
    color: #696969;
    align-items: center

    @media only screen and (max-width: $tablet) {
        max-width: 100%;
      }
  }
  
  .aside-count .content .item .title span {
    color: var(--theme);
    font-weight: 500;
    font-size: 23px;
    margin: 0 5px
  }
  
  .aside-count .content .item .progress {
    display: flex;
    align-items: center
  }
  
  .aside-count .content .item .progress .progress-bar {
    height: 15px;
    border-radius: 9px;
    overflow: hidden;
    background: var(--classC);
    width: 0;
    min-width: 0;
    flex: 1;
    margin-right: 5px
  }
  @keyframes progress {
    0% {
        background-position: 0 0
    }
  
    100% {
        background-position: 30px 0
    }
  }
  .aside-count .content .item .progress .progress-bar .progress-inner {
    width: 0;
    height: 100%;
    border-radius: 5px;
    transition: width 0.55s;
    -webkit-animation: progress 1050ms linear infinite;
    animation: progress 1050ms linear infinite
  }
  
  .aside-count .content .item .progress .progress-bar .progress-inner-4 {
    background: #bde6ff;
    background-image: linear-gradient(135deg, #50bfff 25%, transparent 25%, transparent 50%, #50bfff 50%, #50bfff 75%, transparent 75%, transparent 100%);
    background-size: 30px 30px
  }
  
  .aside-count .content .item .progress .progress-bar .progress-inner-3 {
    background: #ffd980;
    background-image: linear-gradient(135deg, #f7ba2a 25%, transparent 25%, transparent 50%, #f7ba2a 50%, #f7ba2a 75%, transparent 75%, transparent 100%);
    background-size: 30px 30px
  }
  
  .aside-count .content .item .progress .progress-bar .progress-inner-2 {
    background: #f708e3e8;
    background-image: linear-gradient(135deg, #fa80fa 25%, transparent 25%, transparent 50%, #fa80fa 50%, #fa80fa 75%, transparent 75%, transparent 100%);
    background-size: 30px 30px
  }
  
  .aside-count .content .item .progress .progress-bar .progress-inner-1 {
    background: #00ff6d;
    background-image: linear-gradient(135deg, #92c27a 25%, transparent 25%, transparent 50%, #92c27a 50%, #92c27a 75%, transparent 75%, transparent 100%);
    background-size: 30px 30px
  }
  
  .aside-count .content .item .progress .progress-percentage {
    color: var(--info)
  }