eventInfo.m.scss 711 字节
Newer Older
J
jinlong12 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
.info {
    background: #FFFFFF;
    border-radius: 4px;
    padding: 40px;
  }
  
  .gl {
    word-break: break-all;
    border-right: 1px solid #DFE1EA;
    border-bottom: 1px solid #DFE1EA;
    margin-top: -1px;
  
    div {
      min-height: 56px;
      border-left: 1px solid #DFE1EA;
      border-top: 1px solid #DFE1EA;
      display: flex;
      align-items: center;
      padding: 0 10px;
    }
  
    div:nth-child(odd) {
      background: #FAFAFA;
      color: #7E8697;
    }
  
    div:nth-child(even) {
      color: #354259;
    }
  }
  
  h3 {
    font-size: 20px;
    color: #374159;
    line-height: 20px;
    margin: 40px 0 24px 0;
J
jinlong12 已提交
37 38 39 40 41
  }

  .pointer {
    cursor: pointer;
    color: #1890ff;
J
jinlong12 已提交
42
  }