.date-picker-action-bar {
  display: flex;
  .date-picker-action-bar-left {
    width: 192px;
    border-right: 1px solid rgba(0, 0, 0, 0.12);
  }
  .date-picker-action-bar-right {
    flex: 1;
    display: flex;
    justify-content: end !important;
    padding: 16px;
    border-top: 1px solid rgba(0, 0, 0, 0.12);
    gap: 16px;
  }
}

.date-picker-action-bar-time-picker-popup {
  z-index: 1400;
}

.date-picker-action-time {
  display: flex;
  gap: 24px;
  padding: 16px;
  .date-picker-action-time-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
    .date-picker-time-wrapper {
      position: relative;
      width: 100%;
      min-width: 160px;

      .date-picker-time-display {
        display: flex;
        align-items: center;
        height: 40px;
        padding: 0 11px;
        background: #ffffff;
        border: 1px solid #D0D5DD;
        border-radius: 8px;
        font-size: 16px;
        color: rgba(0, 0, 0, 0.88);
        pointer-events: none;
      }

      .date-picker-input-time-native {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 0;
        cursor: pointer;
        -webkit-appearance: none;
        appearance: none;
        border: none;
        padding: 0;
        margin: 0;
        font-size: 16px; // 防止 iOS focus 时页面缩放
      }
    }
    .date-picker-action-time-item-label {
      color: var(--Gray-700, #344054);
      font-size: 14px;
      font-weight: 600;
      line-height: 20px; /* 142.857% */
    }
  }
}