/*
* @Author: huyingjun
* @Date:   2019-03-28 19:55:29
* @Last Modified by:   huyingjun
* @Last Modified time: 2019-03-28 19:58:47
*/

.flex1 {
    flex: 1;
  }
  
  .is-right {
    align-items: flex-end;
  }
  
  .is-end {
    justify-content: flex-end;
  }
  
  .is-left {
    align-items: flex-start;
  }
  
  .is-start {
      justify-content: flex-start;
  }
  
  .is-center {
      align-items: center;
  }
  
  .is-center--h {
      justify-content: center;
  }
  
  .is-vertical {
      flex-direction: column;
  }
  
  .is-horizontal {
      flex-direction: row;
  }
  
  .is-middle {
      justify-content: center;
    align-items: center;
  }
  
  .custom-text {
      color: white;
      font-size: 24px;
  }
  
  .custom-line {
      height: 1px;
      background-color: rgba(151, 151, 151, 0.5);
  }
  
  .bottom-border {
      border-bottom-width: 1px;
      border-bottom-color:  rgba(151, 151, 151, 0.5);
  }
  
  .custom-container {
    width: 750px;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }
  
  .custom-pageInner {
    padding-left: 50px;
    padding-right: 50px;
  }
  
  .custom-title {
    color: white;
    font-size: 36px;
  }
  
  .custom-tag {
    background-color: #FF485B;
    border-radius: 6px;
    padding-left: 12px;
    padding-right: 12px;
    padding-top: 2px;
    padding-bottom: 2px;
  }
  
  .custom-hide {
    width: 0;
    height: 0;
    overflow: hidden;
  }
  
  .custom-loadmore {
    height: 100px;
    justify-content: center;
    align-items: center;
  }
  
  .container-absolute {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }