@import '../mixins/mixins.less';

.b('ap-download', {
    &-wrapper {
      text-wrap: nowrap;
      display: inline-block;
    }
   
    &-inner-wrapper {
      display: inline-block;
      color: var(--download-main-color);
      cursor: pointer;
      display: flex;
      align-items: center;
      .spin{
        margin-right:5px;
      }
      .icon{
        position: relative;
        font-size:18px;
        margin-right:5px;
      }
      .text{
        color: var(--download-main-color);
      }
      &:hover{
        color: var(--download-main-color-opacity);
      }
      &--large {
        line-height: 26px;
        height: 28px;
        font-size: 16px;
      }
     
      &--middle {
        line-height: 22px;
        height: 24px;
        font-size: 14px;
      }
      &--small {
        line-height: 19px;
        height: 20px;
        font-size: 12px;
      }
      &--disabled {
    
        color: #8896b0;
        cursor: not-allowed;
        &:hover{
            color: #8896b0;
          }
      }
      &--disabled-admin {
        cursor: not-allowed;
        color: #999;
        &:hover{
            color: #999;
          }
      }
    }
});
