.config {
  text-align: left;

  .backButton {
    display: inline-flex;
    align-items: center;
    margin-top: 16px;
    cursor: pointer;

    &:hover {
      opacity: 0.8;
    }

    img {
      height: 18px;
      margin-right: 10px;
    }
    span {
      font-size: 16px;
      font-weight: 400;
      line-height: 16px;
      color: #6e7389;
    }
  }

  .headline {
    font-size: 24px;
    line-height: 24px;
    margin-top: 16px;
  }

  .roadSelect {
    margin-top: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    :global {
      .ant-select {
        width: 100%;
        height: 40px;
        font-size: 18px;
        font-weight: 700;
        color: #fff;
  
        .ant-select-selector {
          height: 100%;
          padding: 0 20px;
          background: #4d5166;
          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 {
          font-size: 18px;
          color: #6e7389;
          right: 13px;
          & > span {
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
          }
        }
      }
    }
    
  }

  .controlPanel {
    display: flex;
    align-items: center;
    flex-direction: column;
    .item {
      margin-top: 16px;
      display: flex;
      align-items: center;
      width: 100%;
      justify-content: space-between;
      & > div {
        &:first-child {
          width: 44%;
        }
        &:last-child {
          width: 50%;
        }

        &.diff {
          height: 120px;
          & .percent {
            font-size: 14px;
            font-weight: bold;
            margin-left: 5px;
            &.up {
              color: #aad827;
            }
            &.down {
              color: #f65252;
            }
          }
        }

        .title {
          color: #7b8197;
          font-size: 18px;
        }
        & > .content {
          .count {
            font-size: 44px;
            color: #ffffff;
            font-weight: 700;
          }
          .unit {
            margin-left: 5px;
            font-size: 18px;
            color: #ffffff;
            font-weight: 400;
          }
          
        }
      }

      & > img {
        position: relative;
        top: 10px;
      }
      :global {
        div.ant-slider {
          width: 100%;
          .ant-slider-mark-text {
            color: #4c5166;
          }
          .ant-slider-dot {
            background: #2b2d45;
            border-color: #4c5166;
          }
          .ant-slider-handle {
            border: 3px solid #44a1f8;
            background: #2b2d45;
          }
          .ant-slider-track {
            background: transparent;
          }
          .ant-slider-rail {
            background: #4c5166;
          }
        }
      }
      
    }
  }
}