// 项目通用样式
.cl-gray {
    color: #a1a4b3;
    //   color: gray;
  }
  .cl-orange {
    color: #ec6e1c;
  }
  .cl-green {
    color: #0dbf60;
  }
  .cl-red{
    color:#FA4518;
  }
  // font
  .ftb {
    font-weight: 600;
  }
  .f18 {
    font-size: 18px;
  }
  .f14 {
    font-size: 14px;
  }
  .f12 {
    font-size: 12px;
  }
  .bold{
    font-weight:600;
  }
  // margin
  .mb20 {
    margin-bottom: 20px;
  }
  .cp {
    cursor: pointer;
  }
  .flex {
    display: flex;
  }
  .flex-center{
    align-items: center;
  }
  .flex-between{
    justify-content: space-between;
  }
  .flex-right{
    justify-content: flex-end;
  }
  .justify-center{
    justify-content: center;
  }
  .fc {
    display: flex;
    flex-direction: column;
  }
  .no-shrink{
    flex-shrink: 0;
  }
  .pc {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .f1 {
    flex: 1;
  }
  .pre {
    white-space: pre-wrap;
  }
  .tc {
    text-align: center;
  }
  .tl {
    text-align: left;
  }
  .preventScroll {
    height: 100%;
    overflow-y: auto;
  }
  .break {
    word-break: break-all;
    white-space: pre-wrap;
  }
  .lh15{
    line-height: 1.5;
  }
  .fade-enter-active,
  .fade-leave-active {
    transition: opacity 0.5s;
  }
  .fade-enter, .fade-leave-to /* .fade-leave-active below version 2.1.8 */ {
    opacity: 0;
  }
  
  .pd-16{
    padding:16px;
  }
  
  
  
  