
@page-background-color: #F0F0F5;

.commonlyVoucher {
  background: @page-background-color;
  position: absolute;
  top: 45px;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: auto;

  .t-empty-center{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30%;
    svg{
        font-size: 150px;
    }
    .t-text{
        text-align: center;
        font-size: 16px;
        color: #999;
    }
  }

  .content{
    padding: 10px;
    border-bottom: 1px solid #eee;
    background: white;
    .title{
      font-size: 15px;
      color: #000000;
      margin-bottom: 8px;
      word-break: break-all;
    }
    .row{
      display: flex;
      >div{
        flex: 1;
        font-size: 15px;
        color: #000000;
        margin-bottom: 8px;
        word-break: break-all;
        
        span{
          font-size:14px;
          color: #666;
        }
        span:last-child{
          color: #000;
          padding-left: 5px;
        }
      }
      >div:last-child{
        padding-left: 5px;
      }
    }
  }

}


