.desc-container {
  display: flex;
  flex-wrap: wrap;
  .item {
    width: 50%;
    flex-basis: 50%;
    &.block {
      width: 100%;
      flex-basis: 100%;
    }
  }
  &.col {
    .item {
      flex-direction: column;
      .t {
        flex-basis: auto;
        margin-bottom: 5px;
      }
    }
  }
}
.detail-desc {
  // width: 80%;
  padding: 0.01px;
  .item {
    // display: flex;
    margin-bottom: 0;
    padding: 8px 10px;
    clear: both;
    display: flex;
    .t {
      // text-align: right;
      // float: left;
      width: 120px;
      flex-basis: 120px;
      color: #555;
      // padding-left: 20px;
      font-weight: bold;
    }
    .c {
      // clear: left;
      // margin-left: 140px;
      color: #777;
      word-break: break-all;
      flex: 1;
      &:after {
        visibility: hidden;
      	display: block;
      	font-size: 0;
      	content: " ";
      	clear: both;
      	height: 0;
      }
    }
    &.odd {
      background-color: #f7f7f7;
    }
  }
}
