.confirm-order-risk {
  display: flex;
  flex-direction: column;
  padding: 15px;
  padding-top: 0;
  margin-bottom: 10px;
  margin-top: -28px;

  >.title {
    display: flex;

    >.right {
      font-size: 15px;
      font-family: PingFangSC-Semibold, PingFang SC;
      font-weight: 600;
      color: rgba(70, 70, 70, 1);
      line-height: 42px;
      margin-left: 5px;
    }
  }

  .riskItem {
    .riskName {
      display: flex;
      width: 100%;
      margin-bottom: 8px;

      .right {
        flex: 1;
        text-align: right;

        .icon {
          margin-left: 6px;
          display: inline-block;
          position: relative;
          height: 10px;
          width: 10px;
          border: 2px solid #fff;
          border-left: 2px solid #ccc;
          border-top: 2px solid #ccc;

          &.up {
            transform: rotate(45deg);
            top: 2px;
          }

          &.down {
            transform: rotate(225deg);
            top: -2px;
          }

          // &::after {
          //   content: '';

          // }
        }
      }
    }
  }

  >.content {
    background: rgba(249, 249, 249, 1);
    padding: 0 13px 13px;

    .item {
      display: flex;
      margin-bottom: 8px;
      font-size: 13px;
      font-family: PingFangSC-Regular, PingFang SC;
      font-weight: 400;
      color: rgba(153, 153, 153, 1);

      &.first {
        font-weight: 500;
        color: rgba(102, 102, 102, 1);
      }

      >.left {
        white-space: nowrap;
      }

      >.right {
        white-space: normal !important;
        word-break: break-all;
        margin-left: 5px;
        flex: 1;
      }
    }
  }
}

// .orderInfo{
//   margin-top: 10px;
// }
