.container {
  width: 100%;
  height: 100%;
  padding: 40px 24px;
  box-sizing: border-box;
  color: #fff;

  .header {
    .areaName {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      // 选择框样式调整
      :global {
        .ant-select {
          width: calc(100% - 60px);
          height: 40px;
          font-size: 32px;
          font-weight: 700;
          color: #fff;
          background: transparent;
          z-index: 0;
          .ant-select-selector {
            height: 100%;
            padding: 0;
            background: inherit;
            border: none;
            z-index: 0;
            .ant-select-selection-search {
              left: 0;
              width: 100%;
            }
            .ant-select-selection-item {
              width: 100%;
              line-height: 40px;
              text-align: left;
            }
          }
          .ant-select-arrow {
            z-index: -1;
            & > span {
              position: absolute;
              left: 50%;
              top: 50%;
              transform: translate(-50%, -50%);
            }
          }
        }

      }

      img {
        width: 40px;
        height: 40px;
      }
    }
    .timeRange {
      margin-top: 16px;
      :global {
        .ant-calendar-picker {
          width: 100%;
          background: transparent;
          .ant-calendar-picker-input.ant-input {
            background: #4d5166;
            color: #fff;
            input {
              color: #fff;
              &::placeholder {
                color: #fff;
              }
            }
          }
          .ant-calendar-picker-clear {
            background: #4d5166;
          }
          .ant-calendar-picker-icon {
            color: #fff;
          }
        }
      }
    }
  }
}